From 6ba0bf0131c9fb261df76b7a1d8ba7e86a329623 Mon Sep 17 00:00:00 2001 From: balladaniel <96133731+balladaniel@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:19:18 +0100 Subject: [PATCH 1/9] normalization by another field - test --- examples/polygons_c.html | 9 +++--- leaflet-dataclassification.js | 54 +++++++++++++++++++++++++++-------- 2 files changed, 47 insertions(+), 16 deletions(-) diff --git a/examples/polygons_c.html b/examples/polygons_c.html index aa8b0ab..25db3a6 100644 --- a/examples/polygons_c.html +++ b/examples/polygons_c.html @@ -77,11 +77,11 @@ map.attributionControl.setPrefix('Leaflet ' + L.version + ''); var layerControl = L.control.layers(baseMaps, null, {collapsed: false}).addTo(map); - // Polygon features example. Attribute to test with: 'density2022' + // Polygon features example. Attribute to test with: 'population2022', 'areakm2', 'density2022' fetch('data/polygons_nz_regions.geojson').then(r => r.json()).then(d => { function tooltip(feature, layer) { - if (feature.properties.name_1 && feature.properties.density2022) { - layer.bindTooltip('' + feature.properties.name_1 + '
' + String(feature.properties.density2022)+' pop/km²'); + if (feature.properties.name_1 && feature.properties.population2022) { + layer.bindTooltip('' + feature.properties.name_1 + '
' + String(Math.round(feature.properties.population2022/feature.properties.areakm2 * 100)/100)+' pop/km²'); layer.on('mousemove',e=>{ e.target.getTooltip().setLatLng(e.latlng); }); @@ -92,7 +92,8 @@ style: {color: "white"}, mode: 'jenks', classes: 5, - field: 'density2022', + field: 'population2022', + normalizeByField: 'areakm2', colorRamp: 'Greens', classRounding: 2, legendTitle: 'Population density
(pop/km²)', diff --git a/leaflet-dataclassification.js b/leaflet-dataclassification.js index 01302fc..7b5b306 100644 --- a/leaflet-dataclassification.js +++ b/leaflet-dataclassification.js @@ -76,6 +76,7 @@ L.DataClassification = L.GeoJSON.extend({ _pointMarkers: [], _unitMod: {}, _field: '', + _normalizeByField: '', _pointShape: '', _linecolor: '', _lineweight: '', @@ -779,8 +780,8 @@ L.DataClassification = L.GeoJSON.extend({ legend.id = this._leaflet_id; this._legends.push(legend); - console.debug('Legend generated:', title); legend.addTo(map); + console.debug('Legend generated:', title); // move nodata row to the bottom after legend reversal (in ascending mode) if (asc) { @@ -794,17 +795,20 @@ L.DataClassification = L.GeoJSON.extend({ console.debug('L.dataClassification: Classifying...') console.debug('L.dataClassification: options:', this.options) this._field=this.options.field + this._normalizeByField=this.options.normalizeByField L.GeoJSON.prototype.onAdd.call(this, map); this._classify(map); }, _classify(map) { _field=this.options.field; + _normalizeByField=this.options.normalizeByField; _nodata=this._noDataFound; _nodataignore=this.options.noDataIgnore; var features_info = { Point: 0, MultiPoint: 0, LineString: 0, MultiLineString: 0, Polygon: 0, MultiPolygon: 0}; var typeOfFeatures = 'unknown'; values = []; + features = []; this.eachLayer(function (layer) { // gather info feature types in geojson switch (layer.feature.geometry.type) { @@ -834,19 +838,41 @@ L.DataClassification = L.GeoJSON.extend({ console.error('Attribute field "'+this._field+'" does not exist in given GeoJSON. Please note that attribute field input is case-sensitve. Available attribute fields: '+JSON.stringify(layer.feature.properties)); return; } + if (this._normalizeByField != null && !layer.feature.properties.hasOwnProperty(this._normalizeByField)) { + console.error('Normalization attribute field "'+this._normalizeByField+'" does not exist in given GeoJSON. Please note that attribute field input is case-sensitve. Either choose one of the available fields, or omit the option `normalizeByField`. Available attribute fields: '+JSON.stringify(layer.feature.properties)); + return; + } + /*if (typeof layer.feature.properties[this._field] != 'number') { + console.error('Attribute field "'+this._field+'" does not contain quantitative values in given GeoJSON. Please note that attribute field input is case-sensitve. Available attribute fields: '+JSON.stringify(layer.feature.properties)); + return; + } */ if (layer.feature.properties[this._field] != null) { - values.push(layer.feature.properties[this._field]); + //values.push(layer.feature.properties[this._field]); + features.push(layer.feature.properties); } else { - _nodata = true; + _nodata = true; // flag for generateLegend() later if (!_nodataignore) { // we add null values to main array - values.push(layer.feature.properties[this._field]); + //values.push(layer.feature.properties[this._field]); + features.push(layer.feature.properties); } console.warn('A feature has NULL as attribute field "'+this._field+'" in given GeoJSON. If this is a valid nodata attribute, ignore this warning, the plugin will handle nodata features as a separate symbol class. Null found in feature: ', layer.feature) }; }) + + features.forEach((arrayItem, index) => { + if (this._normalizeByField != null && arrayItem[this._field] != null && arrayItem[this._normalizeByField] != null) { + arrayItem.finalvalue = arrayItem[this._field]/arrayItem[this._normalizeByField]; + } else { + arrayItem.finalvalue = arrayItem[this._field]; + } + + console.log(arrayItem); + }); + this._noDataFound = _nodata; this._values = values; + this._features = features; console.debug('Loaded values from GeoJSON (field: '+this._field+'):', this._values); console.debug('Feature types in GeoJSON:', features_info) typeOfFeatures = Object.keys(features_info).reduce((a, b) => features_info[a] > features_info[b] ? a : b); @@ -937,7 +963,8 @@ L.DataClassification = L.GeoJSON.extend({ return; } } - if (classnum > 2 && classnum < this._values.length) { + if (classnum > 2 && classnum < this._features.length) { + values = features.map(a => a.finalvalue); switch (mode) { case 'jenks': classes = ss.jenks(values.filter((value) => value != null), classnum); @@ -1126,6 +1153,8 @@ L.DataClassification = L.GeoJSON.extend({ currentmarker = null; + var n = 0; + // apply symbology to features this.eachLayer(function(layer) { if (layer.feature.properties[this._field] == null && nodataignore) { @@ -1134,7 +1163,7 @@ L.DataClassification = L.GeoJSON.extend({ switch (layer.feature.geometry.type) { case "Point": var coords = layer.feature.geometry.coordinates; - var style = (mode_point == "color" ? stylePoint_color(layer.feature.properties[this._field]) : stylePoint_size(layer.feature.properties[this._field], this.options)) + var style = (mode_point == "color" ? stylePoint_color(features[n].finalvalue) : stylePoint_size(features[n].finalvalue, this.options)) style.shape = ps; const svgIcon = L.divIcon({ @@ -1146,7 +1175,7 @@ L.DataClassification = L.GeoJSON.extend({ layer.setIcon(svgIcon); break; case "MultiPoint": - var style = (mode_point == "color" ? stylePoint_color(layer.feature.properties[this._field]) : stylePoint_size(layer.feature.properties[this._field], this.options)) + var style = (mode_point == "color" ? stylePoint_color(features[n].finalvalue) : stylePoint_size(features[n].finalvalue, this.options)) var mpfeatures = layer._layers; for (const property in mpfeatures) { mpfeatures[property].setIcon(L.divIcon({ @@ -1159,22 +1188,23 @@ L.DataClassification = L.GeoJSON.extend({ break; case "LineString": case "MultiLineString": - layer.setStyle((mode_line == "width" ? styleLine_width(layer.feature.properties[this._field]) : styleLine_color(layer.feature.properties[this._field])))/*.addTo(map)*/; + layer.setStyle((mode_line == "width" ? styleLine_width(features[n].finalvalue) : styleLine_color(features[n].finalvalue)))/*.addTo(map)*/; break; case "Polygon": case "MultiPolygon": if (mode_polygon == "hatch") { - layer._path.style['fill'] = stylePolygon_hatch(layer.feature.properties[this._field], this.options); // this messy workaround is needed due to Leaflet ignoring `className` in layer.setStyle(). See https://github.com/leaflet/leaflet/issues/2662. + layer._path.style['fill'] = stylePolygon_hatch(features[n].finalvalue, this.options); // this messy workaround is needed due to Leaflet ignoring `className` in layer.setStyle(). See https://github.com/leaflet/leaflet/issues/2662. layer._path.style['fill-opacity'] = (options.style.fillOpacity != null ? options.style.fillOpacity : 0.7); } else { - layer.setStyle(stylePolygon_color(layer.feature.properties[this._field], this.options))/*.addTo(map)*/; + layer.setStyle(stylePolygon_color(features[n].finalvalue, this.options))/*.addTo(map)*/; } break; default: console.error('Error: Unknown feature type: ', layer.feature.geometry.type, layer.feature) break; } - } + } + n += 1; }); // count nodata features (= all values - validFeatures). For use in legend ("no data" class). @@ -1182,7 +1212,7 @@ L.DataClassification = L.GeoJSON.extend({ classes.forEach((element, idx) => { validFeatures += element.featureCount; }); - classes.nodataFeatureCount = values.length-validFeatures; + classes.nodataFeatureCount = features.length-validFeatures; //this._convertClassesToObjects(); From dfa95d082bfd3f1bbc764f64764a984a82cf14ef Mon Sep 17 00:00:00 2001 From: balladaniel <96133731+balladaniel@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:52:51 +0100 Subject: [PATCH 2/9] normalizeByField refinement --- README.md | 2 +- examples/data/lines_c_wsdot_aadt.geojson | 9758 ++++++++--------- .../data/origdata/lines_c_wsdot_aadt.geojson | 4886 +++++++++ examples/data/origdata/points_gas.geojson | 98 + .../data/origdata/points_lux_pop_osm.geojson | 478 + .../polygons_hatch_eu_lifeexp_2018.geojson | 341 + .../data/origdata/polygons_nz_regions.geojson | 23 + examples/data/origdata/rivers.geojson | 116 + examples/data/origdata/rivers_yukon.geojson | 17 + .../data/origdata/us-state-capitals.geojson | 57 + examples/data/origdata/us-states.geojson | 58 + examples/data/points_gas.geojson | 184 +- examples/data/points_lux_pop_osm.geojson | 942 +- .../polygons_hatch_eu_lifeexp_2018.geojson | 668 +- examples/data/polygons_nz_regions.geojson | 2 +- examples/data/rivers.geojson | 218 +- examples/data/rivers_yukon.geojson | 4 +- examples/data/us-state-capitals.geojson | 100 +- examples/data/us-states.geojson | 104 +- examples/polygons_c.html | 2 +- leaflet-dataclassification.js | 14 +- 21 files changed, 12074 insertions(+), 5998 deletions(-) create mode 100644 examples/data/origdata/lines_c_wsdot_aadt.geojson create mode 100644 examples/data/origdata/points_gas.geojson create mode 100644 examples/data/origdata/points_lux_pop_osm.geojson create mode 100644 examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson create mode 100644 examples/data/origdata/polygons_nz_regions.geojson create mode 100644 examples/data/origdata/rivers.geojson create mode 100644 examples/data/origdata/rivers_yukon.geojson create mode 100644 examples/data/origdata/us-state-capitals.geojson create mode 100644 examples/data/origdata/us-states.geojson diff --git a/README.md b/README.md index 4a7b469..c7a4029 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ const layer = L.dataClassification(data, { classRounding: 2, legendTitle: 'Density (pop/km²)', legendPosition: 'bottomleft', - legendRowGap: 5, + legendRowGap: 5, legendAscending: false, legendTemplate: { highest: '{low} and above [{count}]', diff --git a/examples/data/lines_c_wsdot_aadt.geojson b/examples/data/lines_c_wsdot_aadt.geojson index b425e2c..f17fb3d 100644 --- a/examples/data/lines_c_wsdot_aadt.geojson +++ b/examples/data/lines_c_wsdot_aadt.geojson @@ -3,4884 +3,4884 @@ "name": "lines_c_wsdot_aadt2", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1922237193, 47.3773145311 ], [ -120.1403017666, 47.3713844944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209227556, 45.5721542335 ], [ -122.29949512, 45.571607305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.3260483397, 47.6867923802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2673512221, 47.2007333641 ], [ -122.2604202074, 47.2012176284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832090078, 47.3836367426 ], [ -119.4832316128, 47.3884806862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940086764, 47.2249092263 ], [ -122.293850203, 47.2500481115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.1254917575 ], [ -119.2815617176, 47.1297537126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555936398, 47.8589452723 ], [ -117.3577112718, 47.8814244662 ], [ -117.3523268647, 47.8961954425 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8752641023, 46.5473525241 ], [ -122.8650512546, 46.5465667665 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2105622712, 47.4554072848 ], [ -123.2127462556, 47.4576868663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0687629907, 46.3226150928 ], [ -120.0440296636, 46.3075497622 ], [ -120.0285168926, 46.3059630059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2219122891, 47.6270557243 ], [ -120.2084267507, 47.6265613257 ], [ -120.1950551418, 47.6327544789 ], [ -120.1809857702, 47.6313450664 ], [ -120.1479862888, 47.6503824795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1193130939, 48.0535474274 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3005913938, 47.4765744345 ], [ -120.2973152366, 47.5006578675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1084617824, 47.8738712824 ], [ -120.1019008002, 47.8648083629 ], [ -120.0721004876, 47.859499395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0894657528, 46.2734887506 ], [ -119.0934185999, 46.2851671356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2217568694, 47.194537858 ], [ -122.212761856, 47.1970266396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799148927, 47.5984958939 ], [ -122.1862318775, 47.6058898709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.4051129342 ], [ -119.5213520361, 48.4038791845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1265910273, 47.2001121701 ], [ -123.1018056421, 47.1837746945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.1813621929 ], [ -120.8081625673, 47.19291613 ], [ -120.7730682265, 47.1959969886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3325641688, 48.8145942815 ], [ -122.327035238, 48.8181848035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045734555, 47.6490440633 ], [ -122.3036135383, 47.6515712549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5884939945, 46.6478136609 ], [ -118.5565118981, 46.6435530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9202563007, 47.8731183295 ], [ -119.9168716778, 47.8830195848 ], [ -119.9175688105, 47.9042347352 ], [ -119.888689271, 47.925649692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3181975005, 47.8175907621 ], [ -122.3150855528, 47.8211917901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339339028, 47.4005463581 ], [ -117.7937991559, 47.4331327858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3920677701, 47.6528570613 ], [ -117.3930264257, 47.6536012073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616900184, 48.0042963392 ], [ -122.4676875773, 48.0079051908 ], [ -122.531073695, 48.0085360069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2789804626, 47.867386825 ], [ -122.2756369244, 47.8708807894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5609895827, 46.3647132472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3260483397, 47.6867923802 ], [ -122.32907164, 47.6943145242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4710716591, 47.2737539701 ], [ -119.4826447809, 47.3232113182 ], [ -119.4756411869, 47.3509675109 ], [ -119.4791481927, 47.3691228237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6882400113, 47.6692766526 ], [ -122.6900708232, 47.6742545713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3773305642, 48.5155613349 ], [ -122.3786436215, 48.5169464302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4817145594, 47.7503088944 ], [ -118.4711275269, 47.7344847908 ], [ -118.3936449799, 47.6932837218 ], [ -118.3442644432, 47.6573447006 ], [ -118.3165261274, 47.6448669186 ], [ -118.2186138675, 47.6426665493 ], [ -118.1788708956, 47.6503359058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.2074211012 ], [ -121.9888740579, 47.2031602024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5299932781, 47.9150697025 ], [ -124.5344288985, 47.9127912202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8042667838, 47.4677635998 ], [ -122.7922032406, 47.476414011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4611233972, 47.2285063751 ], [ -122.46060986, 47.2297520929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.0718480284 ], [ -122.1116525558, 48.0918800123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6286423009, 48.325690041 ], [ -122.6303344465, 48.3337416853 ], [ -122.6260671635, 48.3402015788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2311497101, 47.1220696502 ], [ -117.235609286, 47.1247339542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0309120554, 46.7587001203 ], [ -121.9814105695, 46.7572813912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135449594, 48.7213796222 ], [ -117.4135771849, 48.7285818258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4059782511, 47.8001660961 ], [ -117.4074639212, 47.8123509195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3365632968, 47.2450397981 ], [ -122.3353775602, 47.2512222204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.2534933593 ], [ -122.4363679452, 47.2544445506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0933468628, 46.1991336316 ], [ -119.1012238708, 46.2052016642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1911483543, 47.5183415887 ], [ -117.1974475198, 47.5227002331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7397102898, 46.7012896138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959583754, 47.4506600917 ], [ -122.2916171614, 47.4596862569 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397118795, 47.6707021684 ], [ -117.2396318808, 47.6716727121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933744977, 46.4150549766 ], [ -120.3959492409, 46.4169433277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6734966352, 46.3612844656 ], [ -122.650489049, 46.3557399918 ], [ -122.6382937487, 46.3654953749 ], [ -122.6200459422, 46.3718240773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2765740876, 47.8734029921 ], [ -122.2777737236, 47.879481564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2143023696, 46.4117358872 ], [ -117.2060959145, 46.4151094256 ], [ -117.1848415097, 46.4126701464 ], [ -117.1634328434, 46.4240635088 ], [ -117.1438680931, 46.4278013383 ], [ -117.0874609685, 46.4153003586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6334221513, 45.6184980719 ], [ -122.6266798027, 45.6184887446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0436033456, 46.3778943675 ], [ -123.0368091721, 46.3974067466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0250689519, 47.8360845439 ], [ -120.0239885328, 47.836037193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499497496, 45.7806466337 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.4527245935 ], [ -122.8201543029, 47.4545979618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832088344, 47.3835435175 ], [ -119.4832090078, 47.3836367426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2346365429, 48.3169213007 ], [ -122.2366632871, 48.3204677227 ], [ -122.2321815344, 48.32047636 ], [ -122.2326302599, 48.3235497417 ], [ -122.2091366451, 48.3331360287 ], [ -122.20310466, 48.3476787003 ], [ -122.2067256114, 48.3642645921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.0085360069 ], [ -122.5339872909, 48.0097622963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0547386882, 46.9253808035 ], [ -117.0395144382, 46.9302931184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.3543537474 ], [ -123.7157590122, 46.3489750762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.6837937197, 47.1293370288 ], [ -120.7051341774, 47.1629714624 ], [ -120.7023177917, 47.1754533511 ], [ -120.7067796881, 47.1840974012 ], [ -120.7080243736, 47.2036487713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958194243, 47.3530329299 ], [ -122.2946343778, 47.3643588625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6177931336, 47.3660514733 ], [ -122.6156699298, 47.3867506969 ], [ -122.624274168, 47.4020537577 ], [ -122.624470827, 47.4111862674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5325801467, 47.7818048655 ], [ -117.5272372278, 47.7876435363 ], [ -117.5354467442, 47.7978975469 ], [ -117.5536352201, 47.8043838824 ], [ -117.5553559852, 47.8104238423 ], [ -117.5692400943, 47.8125064907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0395375143, 48.1839762284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0905398888, 46.8217373497 ], [ -123.0798684236, 46.8216532259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2715285544, 48.9748696672 ], [ -122.2650050712, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3370917545, 47.4657444174 ], [ -120.3384219874, 47.4671390718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1844675978, 48.0584615787 ], [ -122.1847688223, 48.0681379541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1030345042, 47.677801453 ], [ -117.0542260413, 47.6939743273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.0903093008 ], [ -122.6305634117, 47.0911974641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -118.9998507933, 47.9597933478 ], [ -119.0016246215, 47.9560020349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4171863107, 48.1123263385 ], [ -123.404306887, 48.1071331596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7066290132, 47.5247891631 ], [ -122.6974328926, 47.5290055297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930223395, 47.1364690107 ], [ -122.2929693831, 47.1402423696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.9794731965 ], [ -122.1697766801, 47.9782340718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2010578056, 47.8100663059 ], [ -122.1943284707, 47.8116126602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0258249511, 46.1766934283 ], [ -123.0304642178, 46.1645370289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.1738772879, 47.1121270494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -119.0018417526, 47.9714245764 ], [ -118.98586136, 47.9716814731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2255548441, 48.5141869713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1262630128, 46.6018315229 ], [ -123.0966056992, 46.6268683975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2662889573, 47.055615833 ], [ -123.2652259391, 47.0556339624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0614923955, 46.8642889165 ], [ -124.0521133187, 46.8710825521 ], [ -124.0439366003, 46.8923982723 ], [ -124.0040591243, 46.8921353893 ], [ -123.9890755509, 46.9098779782 ], [ -123.9365577148, 46.9230494022 ], [ -123.9197831063, 46.931113491 ], [ -123.8673289312, 46.9433556183 ], [ -123.8480154625, 46.9435702245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969102286, 47.5026900234 ], [ -122.1949845235, 47.5021417776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7534494161, 45.9236451726 ], [ -122.7604926179, 45.9331454264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.5344542826 ], [ -122.5170315735, 46.5330350165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2776857935, 48.8435345933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159492661, 47.2571623867 ], [ -122.5159507876, 47.2584346491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7078176969, 48.1979655963 ], [ -117.7153794817, 48.2082318736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3290774024, 47.5942483647 ], [ -122.3297505745, 47.5932743791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018126834, 45.8933986585 ], [ -122.4525420007, 45.8955411657 ], [ -122.4519709732, 45.9059295423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2866459043, 47.0557293212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8857507292, 46.5838092047 ], [ -122.8838617499, 46.5838405084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.7802658991 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0929136587, 48.0727563835 ], [ -123.0602108175, 48.0644077043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055508584, 45.5906041586 ], [ -122.4001255166, 45.5869987019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.8236282381, 45.6963748835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6889327532, 47.3381121478 ], [ -118.6995142736, 47.3563618481 ], [ -118.6991242989, 47.3709132653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.6683085988, 48.2948724981 ], [ -119.626284036, 48.3081932192 ], [ -119.6069922762, 48.3197133157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.2322639062 ], [ -123.9454549934, 47.2361778754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578697003, 48.2871805041 ], [ -122.6578563225, 48.2883491403 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5178867416, 47.8084398669 ], [ -122.5036732886, 47.8027461252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6622739757, 45.6359541769 ], [ -122.6617032151, 45.6433830491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9144562174, 46.3202165297 ], [ -122.9095978806, 46.3282371415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7834183624, 47.4410207892 ], [ -117.6947330224, 47.501473805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349389318, 47.2327862223 ], [ -122.4231498311, 47.236217271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351426952, 48.421566968 ], [ -122.3410552917, 48.4313110136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8899669956, 47.507262303 ], [ -121.8642395904, 47.5111841759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9560547959, 47.9246186729 ], [ -118.9422723546, 47.9168139511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8535287712, 47.1322250265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0376452727, 47.2410571348 ], [ -121.0465852827, 47.2442852642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3851698428, 47.4416448647 ], [ -117.3846465219, 47.4488701305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0391231637, 46.4202563296 ], [ -117.0389677607, 46.4202679171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3025873431, 47.4686065666 ], [ -120.2997979412, 47.4682860937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7663244649, 47.4942350849 ], [ -122.7350085187, 47.5157381772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4004321611, 45.9963687794 ], [ -122.4160233566, 45.9925843034 ], [ -122.4240462352, 45.9831575594 ], [ -122.4609396952, 45.9952678398 ], [ -122.5034799431, 45.9983583464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0501760455, 46.4755815152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4028330225, 47.1110883316 ], [ -118.3796443329, 47.1117747241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.0951016391, 47.4382498075 ], [ -117.0779731302, 47.442965311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3023056898, 46.2676765369 ], [ -119.2905873773, 46.2611443687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3815863213, 47.8032716419 ], [ -122.3832557827, 47.8034144615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1514985886, 47.5062570131 ], [ -122.1429848329, 47.5057588479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095625837, 47.0558186162 ], [ -123.0065316221, 47.0552123027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844861848, 47.2982208758 ], [ -122.2721730722, 47.3039622013 ], [ -122.2563579686, 47.3028065567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.6585103049, 48.1402801323 ], [ -117.6860630929, 48.148122845 ], [ -117.7037053316, 48.1707366815 ], [ -117.7005163888, 48.1889954329 ], [ -117.7078176969, 48.1979655963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3435956074, 47.6246542116 ], [ -122.3436176395, 47.6252248523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1273008596, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6257721122, 47.4000022997 ], [ -122.6242524897, 47.402892309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5666907268, 48.114021332 ], [ -123.561617171, 48.1030684118 ], [ -123.5537509538, 48.0996615302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6849142545, 46.0415021587 ], [ -118.6692405052, 46.0403350228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2137802603, 47.9942207425 ], [ -122.2138635159, 47.9989436144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7457821436, 46.6828253187 ], [ -123.7367980221, 46.6805525735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0563552656, 47.9153765852 ], [ -119.0380002259, 47.9325544575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.2402395389 ], [ -119.0854605595, 46.245260658 ], [ -119.0823565056, 46.2482752943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1375909505, 48.9171432802 ], [ -122.1322464977, 48.9173156398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8455160853, 47.415535475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3939306113, 48.2869815122 ], [ -124.3487894025, 48.2702583288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340520373, 47.2230930942 ], [ -122.4250777648, 47.2230824389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1137494257, 47.8050106332 ], [ -122.1118699043, 47.8049010687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8883863985, 46.9801777553 ], [ -123.8874051323, 46.9794818062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802579386, 47.804112396 ], [ -122.3815863213, 47.8032716419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0277101274, 47.8474213611 ], [ -120.0202611393, 47.8413912452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4744048469, 48.9644201365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356457951, 47.2494493698 ], [ -122.436113822, 47.2534933593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856871492, 48.8695370939 ], [ -122.4856549623, 48.8698410399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7622997913, 46.31964321 ], [ -122.7323106527, 46.3245338278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8640137768, 47.2332276959 ], [ -119.8587943416, 47.2333342522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7770276759, 48.649473503 ], [ -118.7391181737, 48.6476256888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9823417916, 47.8127801291 ], [ -121.970995859, 47.8259643642 ], [ -121.9694473416, 47.8430757428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1766955576, 47.5724700872 ], [ -122.174140027, 47.5778363862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2268964445, 47.8867919049 ], [ -122.2159243491, 47.8953256029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.1421956268 ], [ -122.0564566441, 47.1405104825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.0572059596 ], [ -123.9287037815, 47.0601524957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2280903322, 47.9083247357 ], [ -122.2233288919, 47.9095861548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4105333679, 47.412298435 ], [ -121.4002907153, 47.3993957355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9656135911, 47.858227985 ], [ -121.9638147974, 47.8578165968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340284894, 45.6462602442 ], [ -122.6163705941, 45.6478697622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.9187733832 ], [ -122.7404887482, 45.9171006476 ], [ -122.741223238, 45.913180857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3513796962, 45.9446481587 ], [ -119.3350044738, 45.9455289592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.9810452868 ], [ -123.9062715578, 46.9810823154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0215352259, 46.3175795065 ], [ -124.0286534428, 46.311088406 ], [ -124.0415185162, 46.3088525506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2754372301, 47.0555807313 ], [ -123.2662889573, 47.055615833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2439880813, 47.3740667238 ], [ -122.2442490763, 47.3856159218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3174867795, 48.4356661942 ], [ -122.3133909339, 48.4356182605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.9818766144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.1033095374 ], [ -118.3877812751, 47.1104919463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.7023795423 ], [ -119.4186609734, 48.6884346356 ], [ -119.3587578096, 48.6725327308 ], [ -119.3466152635, 48.6636563193 ], [ -119.3303173221, 48.6585990657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7931037677, 46.617894857 ], [ -117.8115600109, 46.6379634079 ], [ -117.8063279649, 46.6553619757 ], [ -117.7983218662, 46.6661079567 ], [ -117.8154114815, 46.6748014633 ], [ -117.8035001513, 46.6863405276 ], [ -117.7939941091, 46.689334233 ], [ -117.7839885351, 46.7092148338 ], [ -117.7533189568, 46.7361703665 ], [ -117.7312634359, 46.7380609644 ], [ -117.7294282626, 46.7486084104 ], [ -117.7158828796, 46.7583207914 ], [ -117.7043255452, 46.7738226067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8466345144, 47.0432987731 ], [ -122.8322700503, 47.0459335687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2337989939, 47.1915311175 ], [ -122.2217568694, 47.194537858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7651140331, 47.0629504411 ], [ -122.7648711374, 47.0612918893 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.8311196925, 46.7198868797 ], [ -123.846375426, 46.71976203 ], [ -123.8573903297, 46.7294966365 ], [ -123.875915207, 46.7307655351 ], [ -123.8845152186, 46.7436092547 ], [ -123.8841812425, 46.749824761 ], [ -123.8906555633, 46.7520952605 ], [ -123.9166124942, 46.7438549649 ], [ -123.9263452217, 46.7256804588 ], [ -123.9472489197, 46.7258811772 ], [ -123.9742906306, 46.7404871457 ], [ -123.9900095006, 46.7320277366 ], [ -124.0203997477, 46.7246504747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2973152366, 47.5006578675 ], [ -120.2970255151, 47.5111002228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8906915475, 46.5450662647 ], [ -117.8745068603, 46.5453492398 ], [ -117.8562732625, 46.5369650839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6957500975, 47.3044682452 ], [ -120.6919262643, 47.3189008424 ], [ -120.6706596611, 47.3260826644 ], [ -120.6285638874, 47.3350952018 ], [ -120.6108972417, 47.3314579592 ], [ -120.5922999578, 47.3366776893 ], [ -120.5808735402, 47.3353309836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0454972488, 47.103424531 ], [ -122.0470850116, 47.1062792018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2862401307, 46.308479073 ], [ -119.2975114504, 46.3001018541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3989176751, 46.3702741916 ], [ -119.346211276, 46.3415217482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1080928359, 48.0132540479 ], [ -122.1099317298, 48.0262394664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9099882327, 47.8113401111 ], [ -122.918842027, 47.8022660378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2969810046, 47.4206856987 ], [ -120.2947757571, 47.4153242228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.4859844964, 46.5456788983 ], [ -122.4858227533, 46.5364298713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.7266981663 ], [ -120.7921152532, 46.7356473477 ], [ -120.7884944778, 46.7483083341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9894375686, 48.5890571016 ], [ -118.0155804532, 48.600051746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832316128, 47.3884806862 ], [ -119.483234393, 47.3893726474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929693831, 47.1402423696 ], [ -122.2929747612, 47.1553108605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4077199663, 45.6106168272 ], [ -122.4071070263, 45.6049828823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3831477693, 46.998968611 ], [ -123.3765852382, 46.990906447 ], [ -123.3417045343, 46.9717882087 ], [ -123.3294181035, 46.960126358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269502017, 47.4085571911 ], [ -122.3327432015, 47.408543256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1318940785, 46.233167577 ], [ -119.1277899267, 46.2435755653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.5397640332 ], [ -117.5783005683, 48.5448469139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1099088867, 46.9701523567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6654874391, 45.6200688002 ], [ -122.6581170517, 45.6185588654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6032429154, 47.7771222102 ], [ -122.5869526009, 47.7962217258 ], [ -122.5733355827, 47.8027671644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3029610908, 47.4095632747 ], [ -120.3035547655, 47.410929097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6904808118, 45.8157027044 ], [ -122.6873276483, 45.815867042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.3544077565 ], [ -122.6174730359, 47.3653428749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.4747937676 ], [ -117.5560127138, 46.4751416428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4716805803, 46.5315434526 ], [ -120.4693962361, 46.5221425225 ], [ -120.4558097511, 46.5163581409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9728133998, 47.3032197247 ], [ -117.9722788914, 47.3073278653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8657551158, 46.4709082251 ], [ -122.8491311695, 46.4661882079 ], [ -122.8425140234, 46.4589718006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067680743, 48.8981282277 ], [ -122.6369094129, 48.9223479428 ], [ -122.6562396315, 48.9328552001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1118699043, 47.8049010687 ], [ -122.1116803023, 47.8021510795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2163760183, 47.8727847101 ], [ -122.2148947405, 47.8742828444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3464591984, 46.0510569216 ], [ -118.3460982766, 46.053273733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.4028330225, 47.1110883316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9542721665, 46.5167411946 ], [ -121.9544576073, 46.5216015582 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2077141546, 47.8063531965 ], [ -122.2076567487, 47.8095958449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3844324012, 47.6538454237 ], [ -117.3812522854, 47.6538559571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7360398713, 48.9865050839 ], [ -122.7349383438, 48.9890983509 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7396338722, 47.8911395035 ], [ -122.7323375199, 47.8898968676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8449429934, 47.1094620687 ], [ -119.8324499347, 47.1042259268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487788952, 46.3406500803 ], [ -117.0501999692, 46.3407700726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6934989729, 47.5042678567 ], [ -117.7071635421, 47.5067188922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2745076704, 48.4947462696 ], [ -122.269198387, 48.4967354264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3764731907, 46.0716522784 ], [ -118.3592834167, 46.069578111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876098497, 46.1378429021 ], [ -122.9772037818, 46.1314750359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9699337226, 47.859195632 ], [ -121.9656135911, 47.858227985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0557206222, 47.1388187332 ], [ -122.0562728458, 47.1405796821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0465852827, 47.2442852642 ], [ -121.0567745234, 47.2489122397 ], [ -121.0584176535, 47.257382574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0203997477, 46.7246504747 ], [ -124.0529293689, 46.7278782014 ], [ -124.0776344175, 46.7398991912 ], [ -124.0803644861, 46.7452804885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8764960512, 46.187636732 ], [ -119.8533745816, 46.1859133588 ], [ -119.7720886189, 46.1957457749 ], [ -119.7518491007, 46.203691501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6833369779, 45.6328269221 ], [ -122.6914263595, 45.6358581387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5930897565, 47.6429188126 ], [ -117.5905461616, 47.6429198089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9627838072, 46.122637066 ], [ -122.9506147609, 46.1164898023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2069786865, 47.8783103437 ], [ -122.2066756596, 47.8885941556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.2613892962 ], [ -119.4819452858, 46.2520832532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1010693917, 47.9456237913 ], [ -122.1014661015, 47.9532966926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.1016300232, 48.1547517197 ], [ -117.0626629459, 48.1752916443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4352497488, 47.247047007 ], [ -122.4356457951, 47.2494493698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4491781665, 48.7760427514 ], [ -122.4452973982, 48.7767299988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282535153, 47.6874070809 ], [ -122.1216151872, 47.6765956856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5320368544, 47.6720530531 ], [ -122.5393560124, 47.6795086708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.5086822913 ], [ -120.6306952505, 47.5117651765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078625453, 46.9528052372 ], [ -122.9142238248, 46.952800067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1702535399, 46.7278386224 ], [ -117.1676525064, 46.7262385037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9694473416, 47.8430757428 ], [ -121.9701538655, 47.8449608786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8281981659, 46.3913609219 ], [ -123.8208903441, 46.382916336 ], [ -123.8026031248, 46.3760022496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0867515262, 46.2655755624 ], [ -119.0894657528, 46.2734887506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2933970337, 47.9108132967 ], [ -122.2974847948, 47.9152081943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422944621, 47.3856092016 ], [ -118.8779127198, 47.3299221964 ], [ -118.8574529391, 47.3194821919 ], [ -118.8085220192, 47.3154321744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3873706387, 46.4670041855 ], [ -120.3487396874, 46.4448370306 ], [ -120.3388625978, 46.4245692837 ], [ -120.3200293789, 46.4169522648 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.9328552001 ], [ -122.6717054661, 48.9414820309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2855990411, 47.2943430614 ], [ -121.2804778056, 47.2793125532 ], [ -121.2700379923, 47.2712377268 ], [ -121.2354555076, 47.2675076438 ], [ -121.1938148872, 47.2533046274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3938232704, 47.1581372397 ], [ -122.3637186054, 47.1582777108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7482397955, 48.9864873577 ], [ -122.7514620424, 48.9886011741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3057217067, 48.3394359548 ], [ -122.2954733672, 48.3369797762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2149004639, 48.1767680441 ], [ -124.2030181472, 48.1804550312 ], [ -124.1958320085, 48.1776212387 ], [ -124.1651364154, 48.1913499188 ], [ -124.1568931216, 48.1895403281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9161184136, 46.92713066 ], [ -121.963812764, 46.9377729595 ], [ -121.9797784534, 46.9518926584 ], [ -121.9921794341, 46.953076988 ], [ -122.0038358385, 46.9609913498 ], [ -122.0181933196, 46.9787080824 ], [ -122.0159365761, 46.9942734533 ], [ -122.0378595927, 47.0138315263 ], [ -122.0395446219, 47.033662887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2471159221, 48.9855358738 ], [ -122.2478579965, 48.9927289918 ], [ -122.2628122677, 48.9927495948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1906863712, 47.8382800486 ], [ -117.1758197528, 47.8346000768 ], [ -117.1685156881, 47.8473257512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329141514, 47.5710682046 ], [ -122.6329070414, 47.5726953913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1768999971, 47.2389448117 ], [ -121.1674102459, 47.2309146691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904031135, 47.7736472661 ], [ -122.1954185124, 47.784730909 ], [ -122.2064752256, 47.7910831404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2501056872, 47.4783678971 ], [ -118.2546693813, 47.479786644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9232462415, 46.7732075734 ], [ -122.9104250154, 46.7795778822 ], [ -122.8948463321, 46.7986803418 ], [ -122.8750274612, 46.7955222634 ], [ -122.8635507845, 46.8063295169 ], [ -122.8615475437, 46.8501099194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049767143, 48.8323888064 ], [ -122.296485317, 48.8400447632 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.2157321624, 47.8782642533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8071947642, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2999619988, 47.6603776807 ], [ -122.298324518, 47.6610600414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219018806, 47.3326977386 ], [ -122.3177802121, 47.3354233521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6583512026, 47.8711608541 ], [ -122.6392561156, 47.8677305236 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5563050504, 45.6167350271 ], [ -122.5630189407, 45.6418660754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7608305412, 48.1125877254 ], [ -122.7602906483, 48.11202882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205696751, 48.8842446664 ], [ -122.3205534208, 48.891030585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1788708956, 47.6503359058 ], [ -118.16241258, 47.6536361132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2913576024, 47.8992527084 ], [ -122.2929510336, 47.905080688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2359630516, 47.0980998127 ], [ -119.1774124503, 47.0928575254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5604385799, 47.2858209621 ], [ -122.5695221755, 47.2976027952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1449657103, 47.7821349681 ], [ -122.1440770168, 47.7838492646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.0517882972 ], [ -122.1592829547, 48.0537110655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1876596894, 47.7659065312 ], [ -122.1904031135, 47.7736472661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9572975987, 46.5353534207 ], [ -121.90788364, 46.5340788266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9031806451, 48.0520592106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446131424, 47.3498974886 ], [ -122.2445299041, 47.3611482288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.4846758275 ], [ -122.2525911983, 47.4840343924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0915871421, 47.1407602078 ], [ -122.077350334, 47.1390929944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3895048351, 46.0116896783 ], [ -118.3888808965, 46.0238641947 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9785905771, 46.3125656122 ], [ -119.9791440454, 46.3170643063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7003253167, 47.7576668992 ], [ -118.6135280944, 47.7578991582 ], [ -118.547873384, 47.7633985376 ], [ -118.5164209056, 47.7586626614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3176595662, 47.4302249495 ], [ -120.319453417, 47.432412369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.41797883, 48.1138577083 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.5747409161 ], [ -122.1068419882, 47.5689365485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3673481617, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.7789719928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.4721425859 ], [ -120.3235459955, 47.4769045316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1511179931, 47.883422456 ], [ -120.1295906216, 47.8811242831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3352211475, 47.7132173725 ], [ -121.290688, 47.7127258764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8855586956, 46.2431363274 ], [ -122.8844965185, 46.2561969531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6668848781, 47.0903196406 ], [ -118.6669042924, 47.0988351268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9318997964, 48.2706730135 ], [ -121.9062086717, 48.2750002287 ], [ -121.8887436919, 48.2715237891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0740899923, 47.2211975001 ], [ -117.0730012011, 47.2221634757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2443021409, 47.3027122504 ], [ -122.2329381771, 47.3035228844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9076435518, 46.2769325247 ], [ -122.9056916194, 46.2824568896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.6490400174 ], [ -121.1552091714, 45.6491568269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.9987590553 ], [ -119.6579299947, 47.9994661851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2185549591, 45.5661709399 ], [ -122.2012990567, 45.5698716059 ], [ -122.1952852836, 45.5744734955 ], [ -122.1926793172, 45.5847363585 ], [ -122.1788052048, 45.588814009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2043471222, 47.9819297636 ], [ -122.2057386717, 47.9819494434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5684177308, 46.7947224844 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.3444983864, 47.6942136653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9157314952, 46.1667895778 ], [ -122.9119035401, 46.1765920328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0373692153, 45.6641740956 ], [ -120.9810776369, 45.663863346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5915790813, 46.4740027276 ], [ -117.564276224, 46.4747937676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0677060263, 47.3008399269 ], [ -120.0660840825, 47.2782486825 ], [ -120.0772210514, 47.2539372425 ], [ -120.0729382811, 47.2433041563 ], [ -120.0578994726, 47.236158248 ], [ -120.0352275188, 47.2371715429 ], [ -119.9991848792, 47.2312647073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2229369627, 47.5343029792 ], [ -124.2731333424, 47.5407820544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241882947, 46.1498712277 ], [ -119.0298502289, 46.1536456355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434428667, 48.9313503294 ], [ -122.1515895973, 48.9460909964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135246441, 47.2896891115 ], [ -122.3006527009, 47.2899013547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7448931286, 45.8153696587 ], [ -122.7319332222, 45.815377897 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135712365, 47.2861343941 ], [ -122.3135246441, 47.2896891115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9972196495, 45.8575744394 ], [ -120.9526232876, 45.8609528341 ], [ -120.9521625359, 45.8499382636 ], [ -120.9420523635, 45.8461706302 ], [ -120.9368329014, 45.8325800913 ], [ -120.90654952, 45.8319001408 ], [ -120.9044761844, 45.8247380049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2515257215, 46.0417663171 ], [ -117.2441804807, 46.0447999212 ], [ -117.2380954947, 46.0571340349 ], [ -117.2390964135, 46.0506182014 ], [ -117.2352747181, 46.0504150878 ], [ -117.2398123566, 46.0452544415 ], [ -117.2301501473, 46.0513421257 ], [ -117.2303844377, 46.054464388 ], [ -117.2342914445, 46.0534318514 ], [ -117.2289228871, 46.0662303226 ], [ -117.2172844158, 46.0720892771 ], [ -117.2090263073, 46.0707833675 ], [ -117.2102099243, 46.0742553436 ], [ -117.1872269675, 46.0799763775 ], [ -117.1775707316, 46.0877797821 ], [ -117.1594657515, 46.0904525526 ], [ -117.14576963, 46.0998598289 ], [ -117.1354669642, 46.1156767211 ], [ -117.130739594, 46.1379000516 ], [ -117.1217205642, 46.148960802 ], [ -117.0817036198, 46.1745074608 ], [ -117.0792404746, 46.1865400964 ], [ -117.0715404689, 46.1959222812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.5343812278 ], [ -117.9055307646, 48.5363629877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9261218499, 46.1229717137 ], [ -122.925898762, 46.1234239447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9564753528, 46.7112869506 ], [ -122.9543423418, 46.7162401177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.3060765495 ], [ -119.9685280902, 46.3037202391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.6696013323 ], [ -122.4690215411, 45.664782696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6564062372, 47.0966738492 ], [ -118.6234748412, 47.0969147261 ], [ -118.5703483961, 47.1108950532 ], [ -118.5001739334, 47.110755101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4390078118, 47.6240624799 ], [ -117.4447329829, 47.6326990173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4890479152, 47.5280979623 ], [ -120.45450523, 47.5207872011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9097237692, 47.1901067626 ], [ -120.9213159644, 47.1927732879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.5499497496, 45.7806466337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2668970833, 48.0067931754 ], [ -118.2476233983, 48.0127941378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0772800593, 48.924155999 ], [ -122.0656513713, 48.9198042616 ], [ -122.0549081457, 48.9213240413 ], [ -122.0474169625, 48.9277221033 ], [ -122.0340311094, 48.9278686212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5082944355, 48.9920259516 ], [ -118.5037558939, 48.9999434555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8155297756, 48.0684125491 ], [ -122.8179486123, 48.0711563886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8167074126, 46.9748418645 ], [ -123.8249346802, 46.9706520307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1737083937, 46.8115310782 ], [ -119.1548022107, 46.8115761702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.4711363705 ], [ -122.3357219408, 48.4717196536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8895694243, 46.4396122337 ], [ -122.8882041537, 46.4395283256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.8306336416 ], [ -122.1260566825, 47.8338193781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2012261125, 47.8744218608 ], [ -120.1658245577, 47.8601832667 ], [ -120.1525821693, 47.8602012466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1232845443, 46.2486626016 ], [ -119.1105630412, 46.2485229568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4899695301, 45.724018802 ], [ -121.4828848568, 45.7225399831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1698660388, 46.3410315909 ], [ -120.0848828452, 46.3284729616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6909098997, 47.2757797492 ], [ -118.6904101142, 47.3214220899 ], [ -118.6860954235, 47.326048138 ], [ -118.692493076, 47.3283444103 ], [ -118.6922988122, 47.3324960837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9536791305, 47.233042477 ], [ -119.8966827506, 47.2327403563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1532476863, 46.2701348718 ], [ -118.1407187037, 46.2701649585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350638939, 48.0308244206 ], [ -122.7299573082, 48.0326119562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.7586626614 ], [ -118.5054795183, 47.7584305503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.0828527406 ], [ -118.6922772053, 48.0944969963 ], [ -118.7002081377, 48.1040161548 ], [ -118.6925905066, 48.1252812428 ], [ -118.6930351509, 48.1439533664 ], [ -118.7042337673, 48.1595006242 ], [ -118.7142740466, 48.2007014546 ], [ -118.7047677202, 48.2260732932 ], [ -118.6947159096, 48.2401285718 ], [ -118.6915026711, 48.2554038828 ], [ -118.6928620869, 48.2644862877 ], [ -118.7038407746, 48.2693058531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8880335642, 47.567584502 ], [ -121.8864441288, 47.5692233555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3704124175, 45.9461267079 ], [ -122.3622749788, 45.9559140373 ], [ -122.375570848, 45.9643347144 ], [ -122.3700050613, 45.9690659156 ], [ -122.3692999752, 45.9768294479 ], [ -122.3556390004, 45.9892331664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.4190994152 ], [ -122.2952486802, 47.4309838514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.3936027263 ], [ -122.2931085242, 47.392427434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380752869, 47.5786572039 ], [ -122.123054938, 47.5747409161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1810983468, 47.5797602872 ], [ -122.1760994752, 47.580180733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.9733591072 ], [ -123.5933186815, 46.9783764391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9829989628, 47.3264978242 ], [ -117.9837168125, 47.3338037132 ], [ -118.0012065196, 47.3339439117 ], [ -118.0053352606, 47.3422313462 ], [ -118.0190380245, 47.3455605705 ], [ -118.0413344485, 47.3583260637 ], [ -118.0859824317, 47.347843428 ], [ -118.1009161358, 47.3524254021 ], [ -118.1185016502, 47.3749703003 ], [ -118.1665050068, 47.402760537 ], [ -118.1827089763, 47.4201325168 ], [ -118.1889749684, 47.4362694977 ], [ -118.1843817029, 47.4682192357 ], [ -118.1928794609, 47.4781166157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9111972398, 46.6100100981 ], [ -122.9277931611, 46.6221965746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8344085442, 47.6126434109 ], [ -119.8131962319, 47.6126343481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.9704790806 ], [ -120.4029149867, 46.9715198957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0540259825, 47.8553267629 ], [ -120.0474672026, 47.8548480152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2604202074, 47.2012176284 ], [ -122.2488000931, 47.2053582695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1860840265, 48.0219150499 ], [ -122.1816312316, 48.0344874481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3546879112, 47.2034961093 ], [ -117.361690039, 47.2108541009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7219238918, 47.7633244454 ], [ -118.7225935085, 47.7708524695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6994969166, 45.8454016677 ], [ -122.7050754567, 45.8579274145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0434763305, 47.5508843024 ], [ -123.0407865476, 47.5395798157 ], [ -123.0503575134, 47.5292062176 ], [ -123.059297623, 47.5024290745 ], [ -123.0741604248, 47.4897900635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2157321624, 47.8782642533 ], [ -122.2111007099, 47.8781842656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1852889074, 47.6742929009 ], [ -122.1825622133, 47.6861532736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0332571479, 46.5053645236 ], [ -124.0289352268, 46.5118174067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3085183423, 46.2931233698 ], [ -119.3047423528, 46.2930973531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7604926179, 45.9331454264 ], [ -122.8049500418, 45.9609747813 ], [ -122.8209479482, 45.9765215085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3718777273, 48.1048682436 ], [ -123.3627497487, 48.1085599202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1770255475, 48.0518456949 ], [ -122.167626886, 48.0517882972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929566067, 47.408097835 ], [ -120.2929172872, 47.4079531918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2875761547, 47.8581507051 ], [ -122.2819653483, 47.864172748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3478885514, 47.157627397 ], [ -122.3150421028, 47.158578655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9162646971, 46.1456053501 ], [ -122.9147539076, 46.1502452965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7319332222, 45.815377897 ], [ -122.7270084609, 45.8156734191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.8668025285 ], [ -121.530549912, 46.869005372 ], [ -121.5227950438, 46.8649612608 ], [ -121.5289737696, 46.8698663514 ], [ -121.537161806, 46.86858299 ], [ -121.5294841863, 46.8711959296 ], [ -121.51710234, 46.8670852256 ], [ -121.5147529922, 46.8700968832 ], [ -121.5176596887, 46.8761957247 ], [ -121.5056293677, 46.8858544739 ], [ -121.480660576, 46.8939282214 ], [ -121.443504086, 46.8983759382 ], [ -121.4203948955, 46.9081166471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1751735539, 47.7677948795 ], [ -120.1859282772, 47.7676205033 ], [ -120.1840587587, 47.7828993523 ], [ -120.1996439306, 47.8048599228 ], [ -120.2093058833, 47.8268858662 ], [ -120.2023545245, 47.8407813167 ], [ -120.2104188578, 47.8533002068 ], [ -120.2028039844, 47.8632306636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.7777824155 ], [ -122.3353283591, 47.7777753423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1110123877, 46.9040127541 ], [ -124.1131838766, 46.9081888251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6142357749, 46.6544908714 ], [ -120.5943463684, 46.6386317502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6064394101, 47.3438463019 ], [ -118.5961167767, 47.3476217659 ], [ -118.5548000261, 47.3482337313 ], [ -118.5135806024, 47.3580620657 ], [ -118.4970061344, 47.3574102392 ], [ -118.4533036906, 47.3686689059 ], [ -118.3408593623, 47.4302279947 ], [ -118.2960394269, 47.4682522462 ], [ -118.2560871516, 47.4838568514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.3318236437 ], [ -122.3292431802, 47.3317433744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.2867891323 ], [ -122.8965761025, 46.2893166225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6716912752, 45.622917794 ], [ -122.6679722011, 45.6264046411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8782146319, 47.8269872076 ], [ -122.8756714308, 47.8241423181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.9990395411 ], [ -119.1601933723, 47.0283986473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3355466203, 47.469450059 ], [ -120.3195807175, 47.4716032095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829774552, 47.9869383211 ], [ -122.1829331211, 47.9885511027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1796695496, 47.6992447918 ], [ -122.1820573236, 47.7095901821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.3269502017, 47.4085571911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5110835333, 47.2895128669 ], [ -119.4703245021, 47.2726086288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3993131644, 47.6520356027 ], [ -117.3844324012, 47.6538454237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3303084037, 48.2396939589 ], [ -122.2809503607, 48.235572681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8383635311, 47.4109223756 ], [ -122.8295443158, 47.4127748773 ], [ -122.8203461375, 47.4070484463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5258992491, 46.6579574794 ], [ -120.5234705645, 46.6619857363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862032678, 47.7229006915 ], [ -121.9858303482, 47.7426828709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7868478019, 48.101573517 ], [ -119.7811517034, 48.1041817295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2071762297, 47.460991061 ], [ -122.2078807653, 47.466571782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0491706107, 48.1875683679 ], [ -117.0481554077, 48.1858130018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9270653363, 47.8558599343 ], [ -121.861666793, 47.8510041835 ], [ -121.8309651195, 47.8579919705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933243152, 46.5563517375 ], [ -120.385569175, 46.5499987592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5687127572, 46.732258391 ], [ -121.560456892, 46.7384901278 ], [ -121.556831556, 46.7546910576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2753035387, 46.5534563356 ], [ -122.2751954315, 46.5570314235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7257805786, 48.1562291862 ], [ -117.7227122233, 48.1685422116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9083860539, 46.9811017411 ], [ -123.9179703845, 46.9819334325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9222411132, 46.1464872396 ], [ -122.9218919138, 46.1466343189 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842574706, 47.200949296 ], [ -121.9813954636, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961885635, 47.4452613117 ], [ -122.2959583754, 47.4506600917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.190960133, 47.9817746745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2768149357, 47.8726630238 ], [ -122.2765740876, 47.8734029921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7486010675, 46.2060790676 ], [ -119.7475393038, 46.2094125334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5565118981, 46.6435530173 ], [ -118.5525513618, 46.6447887503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2066756596, 47.8885941556 ], [ -122.2022600424, 47.894649631 ], [ -122.2067906493, 47.8972009127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3336059484, 48.4174954237 ], [ -122.3330250741, 48.4174912688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2840598213, 46.5529035395 ], [ -122.2762378173, 46.5520130021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6274333676, 47.5344924995 ], [ -122.6237320393, 47.533996747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135602609, 48.7325006416 ], [ -117.4174728874, 48.7462831433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132785951, 46.9750588263 ], [ -123.8135123607, 46.9752656303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9384162966, 47.3734102727 ], [ -117.9150398251, 47.3982504993 ], [ -117.9034889508, 47.4225618796 ], [ -117.9043202925, 47.4371792471 ], [ -117.9110794237, 47.4456090228 ], [ -117.9222234569, 47.4504912849 ], [ -117.9478029623, 47.4527573229 ], [ -117.9564098516, 47.4576787359 ], [ -117.9495399132, 47.4703719079 ], [ -117.9510454936, 47.5055460418 ], [ -117.919069388, 47.5252624271 ], [ -117.9206461927, 47.5432700986 ], [ -117.9259768603, 47.5533776645 ], [ -117.9203852472, 47.5627460837 ], [ -117.9406277688, 47.5777330683 ], [ -117.9378384893, 47.6579307436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1336820514, 47.3186667549 ], [ -123.1117610605, 47.3369062558 ], [ -123.1048433653, 47.3569623887 ], [ -123.074686488, 47.3527052163 ], [ -123.0732200773, 47.347496595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6125603258, 48.3338920433 ], [ -119.6077631646, 48.3498164453 ], [ -119.6024268764, 48.353805119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7809433235, 48.1019970336 ], [ -119.7811517034, 48.1041817295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1978814184, 46.2296948397 ], [ -119.1815164346, 46.226705456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6300911575, 47.828750694 ], [ -122.6097297047, 47.8515622785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2426005336, 47.0979189769 ], [ -119.2452308425, 47.1004128397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0436242083, 47.9056634606 ], [ -122.0367508916, 47.9006838682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2752434827, 46.5583246063 ], [ -122.2684521921, 46.5680335119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3831772587, 47.8031153818 ], [ -122.3776962209, 47.7986124147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9543101229, 46.7193545946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3696991532, 47.6539119327 ], [ -117.3664685234, 47.6539039945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3554512716, 47.1039652908 ], [ -119.3375995228, 47.1039064442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1108326729, 48.0500968067 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0668149366, 46.1268888879 ], [ -119.0454576014, 46.1224768114 ], [ -119.0330840552, 46.1382539413 ], [ -119.0162894195, 46.1394401375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770770356, 45.6326630802 ], [ -122.6738336898, 45.6318598942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6528625036, 47.482823007 ], [ -120.6499715907, 47.4876669203 ], [ -120.6333359953, 47.4949227596 ], [ -120.632703036, 47.5086822913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218919138, 46.1466343189 ], [ -122.9196173248, 46.147218448 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0308034821, 48.0385584263 ], [ -123.0044486257, 48.0205093633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2748522475, 47.8718113531 ], [ -122.2643165436, 47.8830950253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294537729, 46.6833756482 ], [ -123.7294448552, 46.6856170888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.071549412, 47.2268141567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5662058166, 47.642947503 ], [ -117.5608436626, 47.6428844249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939240773, 47.0800385113 ], [ -122.2937941925, 47.0829397886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7727025488, 48.5378235193 ], [ -121.7384627186, 48.5359258924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1219053901, 47.5005304078 ], [ -122.1121053337, 47.4972949224 ], [ -122.0977227603, 47.4988510864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9100284707, 46.215109501 ], [ -118.8769717239, 46.2152642916 ], [ -118.8462077967, 46.2312973119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1250035992, 48.6915473174 ], [ -118.1273843782, 48.6998160022 ], [ -118.1247088043, 48.7064325745 ], [ -118.1342768103, 48.7155462694 ], [ -118.1294134431, 48.7293164293 ], [ -118.1345781821, 48.7396855259 ], [ -118.1345342849, 48.7548742848 ], [ -118.1428018792, 48.7736597705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8593818839, 47.0403533748 ], [ -122.8466345144, 47.0432987731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255213817, 47.3019724752 ], [ -122.2174597214, 47.2971248747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9893266233, 47.8585504619 ], [ -121.9830239836, 47.8630432638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5427971587, 47.2623098139 ], [ -122.558955585, 47.2752600707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6418257139, 47.8341761604 ], [ -121.6207818793, 47.8353149584 ], [ -121.6173127355, 47.831729195 ], [ -121.6193646638, 47.8263548695 ], [ -121.611657277, 47.8196693372 ], [ -121.5798641373, 47.8122645365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1121601288, 47.2429315526 ], [ -122.1007898491, 47.2257041538 ], [ -122.0797946249, 47.2106178422 ], [ -122.0162359001, 47.2074211012 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.8477254195 ], [ -120.0906203728, 47.8396989688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2194720778, 47.4795067364 ], [ -122.2164680874, 47.4797552701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970568676, 47.4134071531 ], [ -122.197055607, 47.4196716079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976527666, 47.5284479262 ], [ -122.1956583824, 47.5351014559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.1108326729, 48.0500968067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.1769776673 ], [ -122.1838778814, 47.174736546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1210814025, 46.1900650322 ], [ -123.0254965582, 46.1765544591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9675307628, 46.7105506649 ], [ -122.9598608634, 46.7119804203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2452308425, 47.1004128397 ], [ -119.246720142, 47.1017760996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1977655229, 48.6613912396 ], [ -119.1755997273, 48.6644654674 ], [ -119.1707426962, 48.6669353976 ], [ -119.1709386262, 48.671956166 ], [ -119.1204415479, 48.6865746062 ], [ -119.1188143741, 48.7011238243 ], [ -119.0889645499, 48.714240826 ], [ -119.0173992596, 48.7251477101 ], [ -118.9956785762, 48.7322627102 ], [ -118.9864492298, 48.7210608245 ], [ -118.9733997716, 48.7226160113 ], [ -118.9658249069, 48.727845524 ], [ -118.9595941027, 48.7262226534 ], [ -118.9531841576, 48.7185782551 ], [ -118.9576035534, 48.7002983598 ], [ -118.9345969622, 48.6878700965 ], [ -118.8688363405, 48.6711250883 ], [ -118.8512041774, 48.6595871231 ], [ -118.8252356977, 48.6617094795 ], [ -118.7864369592, 48.651103998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.7707983028 ], [ -120.1432870731, 47.7795609484 ], [ -120.1351383039, 47.7887442363 ], [ -120.1287074183, 47.8197182574 ], [ -120.1038792438, 47.8410163455 ], [ -120.0930271133, 47.8390930772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0127832253, 47.8398059908 ], [ -120.0023636712, 47.8395520304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.5009103404 ], [ -122.6448015914, 47.5019616092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6076963808, 46.9425842125 ], [ -122.6065410768, 46.9419413133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559678999, 46.3418155618 ], [ -117.0639903277, 46.3515891074 ], [ -117.063194802, 46.3682043768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6849124897, 47.7012407269 ], [ -122.6827030778, 47.7012362102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523152371, 47.7871149729 ], [ -117.3512461081, 47.7870908551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8450444219, 47.3928212867 ], [ -117.8339339028, 47.4005463581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4044843472, 47.7691968077 ], [ -117.4025141886, 47.775377664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7262847571, 48.1762204765 ], [ -117.733773391, 48.1904773749 ], [ -117.7430272449, 48.1962049437 ], [ -117.7153794817, 48.2082318736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078807653, 47.466571782 ], [ -122.2079397277, 47.469068922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8899260404, 47.7887506445 ], [ -117.8929652387, 47.8103146594 ], [ -117.8688908212, 47.8392864583 ], [ -117.8530743045, 47.8375252203 ], [ -117.8559886683, 47.847262528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3447339385, 47.7065541178 ], [ -122.3450935078, 47.7322891749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3969871323, 47.2375843118 ], [ -122.3891779095, 47.2344452702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6087560562, 48.2553398746 ], [ -121.6017358428, 48.2552691488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.1759897639 ], [ -117.0453814357, 48.1774974633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0367919974, 46.8025443825 ], [ -123.0122863976, 46.8024280456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8269220429, 47.4513256561 ], [ -122.82404435, 47.4527245935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5357945169, 46.9156045355 ], [ -121.5448085614, 46.8957961512 ], [ -121.5392794958, 46.879268564 ], [ -121.539784148, 46.8668025285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146069423, 46.4038122596 ], [ -120.3146053499, 46.3930477992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1182479552, 46.824068652 ], [ -123.0970384228, 46.8218084668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111934872, 47.6661553637 ], [ -117.4111842305, 47.6640841682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7163662119, 47.8813080117 ], [ -122.6836020665, 47.8694778736 ], [ -122.6583512026, 47.8711608541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3871932194, 47.6619140206 ], [ -117.3797163114, 47.6619387511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9072875101, 48.5485390558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5474855069, 45.7852017578 ], [ -122.5472358647, 45.8117200378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.9072893217 ], [ -122.2070289838, 47.914243946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1144319865, 47.165563315 ], [ -122.0430468348, 47.1585051205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1947276042, 47.0577047606 ], [ -119.2152583563, 47.0751224812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134370239, 47.6535198038 ], [ -117.4134270225, 47.6531107382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2128675498, 48.6558774574 ], [ -122.2086782434, 48.6715402953 ], [ -122.1928310355, 48.6906540805 ], [ -122.2024134231, 48.7062719744 ], [ -122.2034031763, 48.7206992742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9762326912, 46.3216955439 ], [ -117.9727960208, 46.3237819677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4674230818, 48.7381587883 ], [ -122.4637974094, 48.749722479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924335271, 45.5795236375 ], [ -122.3693035949, 45.5791952308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.7853119491 ], [ -117.9163777996, 46.7845299182 ], [ -117.9028685233, 46.7882975717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.9820295137 ], [ -122.2143033169, 47.9820481244 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5815429294, 48.4637620468 ], [ -122.6018087989, 48.4912904705 ], [ -122.6096344556, 48.4932908483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146053499, 46.3930477992 ], [ -120.3146803025, 46.3895637812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.9114449779 ], [ -117.0799320523, 46.9114350689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310669107, 47.3816510809 ], [ -122.231080053, 47.3833072606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108149261, 48.3083495968 ], [ -122.2259636127, 48.3101151653 ], [ -122.2343676861, 48.3157860192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1440770168, 47.7838492646 ], [ -122.1434566593, 47.7903443739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2935392549, 47.0986145276 ], [ -122.2932262899, 47.1183648911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5556609589, 46.9361969309 ], [ -122.5540510049, 46.9380208301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6950836877, 46.6690700815 ], [ -123.6839292354, 46.6556063635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.1564220776 ], [ -122.036347956, 47.1580428725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2518435554, 46.3315396164 ], [ -120.2461650816, 46.3276930204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178776034, 47.4696365374 ], [ -122.2178365864, 47.4708583363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6074412346, 47.5945732999 ], [ -117.5691788837, 47.5946199775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.7653809106 ], [ -118.6468785968, 48.7737685937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078782799, 46.9473039393 ], [ -122.9078625453, 46.9528052372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7095800286, 46.8824221446 ], [ -123.7147238013, 46.8904667022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519714718, 48.9646510378 ], [ -122.4413239323, 48.96428992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667035384, 46.8634865679 ], [ -122.2667172316, 46.8655192861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9008694447, 47.1862212903 ], [ -120.8999613431, 47.1877127316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6598639151, 46.9705949371 ], [ -118.6639343919, 46.9743066653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.4264986925, 46.9955304106 ], [ -123.4082967559, 46.9999448152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133300405, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5001739334, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736376931, 48.7183214397 ], [ -122.4736865914, 48.7254915984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537625763, 46.7353817521 ], [ -122.9537824167, 46.7366928914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1531482322, 47.0433503074 ], [ -124.1580458631, 47.0446019994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3782208966, 47.7726334374 ], [ -117.3567064191, 47.7812867521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871980092, 47.7384984553 ], [ -122.1857415687, 47.7548599981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2312668834, 47.1532457302 ], [ -117.2052304992, 47.1675404896 ], [ -117.1992324539, 47.1773708328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3693035949, 45.5791952308 ], [ -122.3561483502, 45.5765439754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1548022107, 46.8115761702 ], [ -119.1335402589, 46.81166858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.7360195936 ], [ -120.7368808365, 47.7219030152 ], [ -120.7458505381, 47.6979837814 ], [ -120.737315796, 47.6895337324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.8258098296 ], [ -123.1182479552, 46.824068652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.7413459926 ], [ -117.2421417151, 46.7585806572 ], [ -117.2617325097, 46.7597945743 ], [ -117.2772565713, 46.772497546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281213808, 47.6241276789 ], [ -120.228042091, 47.6277888618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0025596088, 46.8100089469 ], [ -122.9724799034, 46.8603980407 ], [ -122.9600984345, 46.8984631507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8874051323, 46.9794818062 ], [ -123.8839143851, 46.9770579066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2438389364, 47.4568632492 ], [ -122.245609145, 47.4638125801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.3205770833 ], [ -124.0058226032, 46.3220376768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2229100098, 47.5730667428 ], [ -117.2247355074, 47.5862739437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938700472, 47.204398406 ], [ -122.2938536061, 47.2051808084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2256349011, 47.3030417103 ], [ -122.2255213817, 47.3019724752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2096237746, 47.6717228675 ], [ -117.1794448564, 47.6657680173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3880478769, 48.8570115349 ], [ -117.3766074887, 48.8656644561 ], [ -117.3725290396, 48.86403205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5538347685, 46.9524134967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.9391322618 ], [ -122.4853467091, 48.9460567842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3545679756, 48.6174704326 ], [ -122.3571398555, 48.6273196202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.3394444319 ], [ -122.3123636673, 47.3477991611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565626099, 47.5703304581 ], [ -122.6533156313, 47.5673798823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9910016143, 47.0450336894 ], [ -122.9602028302, 47.0399823411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6378486297, 47.5421872915 ], [ -122.6362542655, 47.5417260081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2448313626, 47.6887168246 ], [ -117.2397125029, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1785138343, 46.6444383578 ], [ -121.1697638253, 46.6471084885 ], [ -121.1517819412, 46.644685082 ], [ -121.1319390984, 46.6545385663 ], [ -121.1263725089, 46.6648692441 ], [ -121.1203640782, 46.6650711504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5707855947, 47.7139681507 ], [ -122.5923337529, 47.7058043179 ], [ -122.6145007274, 47.7154775691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853470894, 48.891721005 ], [ -122.485340099, 48.9066976691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376928426, 47.9781939272 ], [ -122.1376542721, 47.9813261844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6134262665, 47.471353912 ], [ -117.6076139263, 47.472278094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3033441932, 46.5641172674 ], [ -122.2966216811, 46.5642108312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7071635421, 47.5067188922 ], [ -117.7148151118, 47.5148547914 ], [ -117.7149288118, 47.5306603385 ], [ -117.7044776202, 47.5482634566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4440605013, 47.158268456 ], [ -122.4276134438, 47.1581515823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9065683519, 47.1025224633 ], [ -123.8958319744, 47.1107626992 ], [ -123.897945931, 47.1182162564 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.1348926086 ], [ -123.8889929685, 47.1441925406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133909339, 48.4356182605 ], [ -122.3079784055, 48.4355954608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4073092626, 48.6901697434 ], [ -122.4496748915, 48.6936253155 ], [ -122.4745576952, 48.7036461741 ], [ -122.4754001915, 48.7114461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6545494275, 45.7173002417 ], [ -122.6569907612, 45.7325461642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.0543832543 ], [ -117.6205066365, 48.0600760065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3512395456, 46.0690998662 ], [ -118.3564774846, 46.0688842599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7179594226, 48.2854700064 ], [ -117.8191660399, 48.3201502053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924586232, 47.7337786904 ], [ -122.2924416665, 47.7355851423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2261409872, 48.5282544504 ], [ -122.226018055, 48.5375786595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111842305, 47.6640841682 ], [ -117.4110973876, 47.6862388811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293015421, 47.1806601772 ], [ -122.2292841665, 47.1772685985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3322816003, 47.4672044794 ], [ -122.3299629869, 47.4748414789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1126921303, 48.0002111444 ], [ -122.1063179106, 48.002878399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1432040179, 48.9173881457 ], [ -122.1434428667, 48.9313503294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1778352269, 48.046828316 ], [ -122.1770255475, 48.0518456949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6112069286, 47.5946127869 ], [ -117.6074412346, 47.5945732999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8965761025, 46.2893166225 ], [ -122.8907960803, 46.3012804426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.4284900867 ], [ -122.6225935687, 47.4383788471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0761547764, 46.8206396917 ], [ -123.0705784959, 46.818061401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8744708695, 45.824429695 ], [ -120.8597476834, 45.8244297002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5235622768, 47.9784884907 ], [ -117.5514961681, 47.9936326927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3901248718, 47.3932302588 ], [ -121.3796397397, 47.3867119172 ], [ -121.3634004667, 47.3422967233 ], [ -121.3518474114, 47.3394404515 ], [ -121.3434489443, 47.3304987742 ], [ -121.328788046, 47.3253104992 ], [ -121.3099371955, 47.3075733984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9086394896, 46.8991466854 ], [ -122.9057776023, 46.9081293834 ], [ -122.9079204529, 46.9326825401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3821019742, 46.204770148 ], [ -123.3662844632, 46.1972420441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2636763312, 46.2591722166 ], [ -119.2563379619, 46.2519667264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.8041008656 ], [ -122.3771647615, 48.8041341038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9106353482, 46.2675619431 ], [ -119.8846884522, 46.2587169246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8123515795, 46.9758626922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854508575, 47.9541150576 ], [ -124.3895298763, 47.9579786515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6135193095, 46.3732221214 ], [ -122.599339156, 46.3782404871 ], [ -122.5923185497, 46.3641421043 ], [ -122.5756309118, 46.3701554294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0767913963, 48.6302280828 ], [ -118.0809250713, 48.6335690008 ], [ -118.0804223265, 48.6458515708 ], [ -118.0855460386, 48.6566126356 ], [ -118.0761182705, 48.6620174812 ], [ -118.0528192146, 48.6655590546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7319104687, 48.0271486285 ], [ -117.7414326397, 48.0453413833 ], [ -117.7414617067, 48.0549272619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151578787, 47.6670962794 ], [ -122.1070992757, 47.6699542428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5548980955, 47.3064820526 ], [ -119.5404648362, 47.3016571328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5439564153, 47.7770043475 ], [ -117.5325801467, 47.7818048655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0033924307, 47.3087018731 ], [ -122.0036329276, 47.3094647022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0771113094, 47.7623555736 ], [ -120.0346940871, 47.7744610553 ], [ -119.9928066299, 47.7795776217 ], [ -119.9707179801, 47.8103117805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7247120976, 47.0145460302 ], [ -122.7155207845, 47.0124624929 ], [ -122.7042482107, 47.0166113384 ], [ -122.6929086258, 47.0122908625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5630189407, 45.6418660754 ], [ -122.56552133, 45.6483088559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.5838225286 ], [ -122.4432829491, 45.5785312538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3213046678, 47.6798999296 ], [ -122.3216245794, 47.6809784815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4043216331, 45.615225457 ], [ -122.4080084386, 45.6115840369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984327789, 47.1898992789 ], [ -123.0982494153, 47.1952116239 ], [ -123.0921869405, 47.1998399079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7520415456, 48.9961053398 ], [ -122.7523454393, 48.9971567896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2978040809, 47.8210601157 ], [ -122.2924065553, 47.8209731507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2328452333, 47.2083784844 ], [ -118.2153325712, 47.2145095436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4439027276, 48.4460211348 ], [ -122.4313388534, 48.4462873107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1114113863, 46.2830723014 ], [ -118.0900087478, 46.2892459717 ], [ -118.0360986622, 46.2883262956 ], [ -118.0037700013, 46.3053205372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966056992, 46.6268683975 ], [ -123.0813867451, 46.6270365528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4466273692, 47.2301579669 ], [ -122.4349389318, 47.2327862223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1863524437, 46.8303419645 ], [ -123.1603852076, 46.8270351021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3572304808, 48.8661780923 ], [ -117.3521889436, 48.8735003742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349079042, 47.0993004058 ], [ -122.4347516102, 47.1123943169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838617499, 46.5838405084 ], [ -122.8398740601, 46.5760326545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.3956087457 ], [ -121.3973426889, 47.3964612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3694769065, 47.0202996688 ], [ -122.3734287129, 47.0252556279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.0107162595 ], [ -123.3522406493, 47.0176847454 ], [ -123.3329685473, 47.0373540007 ], [ -123.315836318, 47.0439992941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2652259391, 47.0556339624 ], [ -123.2689243165, 47.0679844678 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396887191, 47.6862002896 ], [ -117.2397125029, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860047444, 48.7952060269 ], [ -122.4860125357, 48.8005515797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2104399855, 48.5159581466 ], [ -122.1940156325, 48.5236742491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157647305, 47.2798223974 ], [ -122.5157587458, 47.281707768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006527009, 47.2899013547 ], [ -122.2986045804, 47.2906745073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269686691, 47.5636496207 ], [ -122.6253076514, 47.5621957885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1610621477, 48.8013491924 ], [ -118.172585386, 48.8281521503 ], [ -118.1995279913, 48.8413471764 ], [ -118.2049625221, 48.8611827903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975722229, 46.1692293994 ], [ -119.17625049, 46.1849328401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.2312973119 ], [ -118.7205257744, 46.2975520842 ], [ -118.5843394707, 46.2961931387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9452303834, 47.3491519572 ], [ -117.9386854224, 47.3624234377 ], [ -117.9384162966, 47.3734102727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8360991743, 45.6760241273 ], [ -120.8350369221, 45.6826649603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.0274510129 ], [ -118.3805172543, 46.0318115343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1685156881, 47.8473257512 ], [ -117.1588691801, 47.8695608359 ], [ -117.1312550979, 47.8859764839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1238524112, 46.2737500843 ], [ -118.1114113863, 46.2830723014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6418945651, 47.3795057214 ], [ -122.6261095677, 47.3846980617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8990911424, 46.7940102212 ], [ -118.75567632, 46.7921007504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474225905, 47.3852649438 ], [ -122.2474311421, 47.3867136062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.4199191264 ], [ -117.0586800059, 46.4199262615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5353377768, 48.098941472 ], [ -123.5146878293, 48.1016682747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6731435739, 47.568179933 ], [ -122.6676487456, 47.5684242426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6933366335, 46.5767605568 ], [ -122.6709557367, 46.5825511103 ], [ -122.6483864791, 46.6019238366 ], [ -122.6345508551, 46.6084601212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6345508551, 46.6084601212 ], [ -122.6262508407, 46.6119235505 ], [ -122.5929781534, 46.6127772252 ], [ -122.540197422, 46.6050020592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.6430053975 ], [ -117.5071454103, 47.6430669681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783005683, 48.5448469139 ], [ -117.5647490904, 48.5514119056 ], [ -117.5555575339, 48.5619672181 ], [ -117.5534548978, 48.5736906307 ], [ -117.5588224911, 48.5802438479 ], [ -117.5597059922, 48.5938921832 ], [ -117.5501711452, 48.6052632129 ], [ -117.5430075734, 48.630926416 ], [ -117.5192715494, 48.6413464304 ], [ -117.5134714498, 48.6474798721 ], [ -117.4974757778, 48.6538530694 ], [ -117.4889613951, 48.6516692447 ], [ -117.4778840213, 48.657428848 ], [ -117.4698108774, 48.6734268292 ], [ -117.4561399366, 48.6724766869 ], [ -117.4533799294, 48.684483503 ], [ -117.4343065363, 48.6796702092 ], [ -117.4316067501, 48.6833095812 ], [ -117.4293099535, 48.6813858247 ], [ -117.4275049687, 48.6892106346 ], [ -117.4108409752, 48.6851321517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.6318665894 ], [ -122.6704405811, 45.6318535726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.7789719928 ], [ -117.402735532, 47.7811795472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1721144093, 48.4502822246 ], [ -118.1782434256, 48.4548284749 ], [ -118.1804322233, 48.4635712207 ], [ -118.1695615682, 48.4738348488 ], [ -118.1731326389, 48.4834075634 ], [ -118.1369993742, 48.5254134037 ], [ -118.1205170275, 48.5599252228 ], [ -118.1099304251, 48.5699168788 ], [ -118.090171582, 48.5709116932 ], [ -118.0736411623, 48.581071736 ], [ -118.0733925966, 48.5848754338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288682299, 47.6213371579 ], [ -122.6289013941, 47.6322348249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2202318761, 46.2679666309 ], [ -118.1693615258, 46.2688128518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2023511627, 46.1347113914 ], [ -119.203612629, 46.1162661213 ], [ -119.2234040886, 46.0911748268 ], [ -119.224889202, 46.0317308992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2972233483, 47.5139558554 ], [ -120.2808637485, 47.5339796242 ], [ -120.2543857869, 47.5488977505 ], [ -120.2543935669, 47.5573199872 ], [ -120.2309336771, 47.5917195302 ], [ -120.2261852446, 47.6053632481 ], [ -120.2282190803, 47.6193373774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1196487386, 48.6350042505 ], [ -118.1129200454, 48.6442737397 ], [ -118.1136451712, 48.6614121482 ], [ -118.1250035992, 48.6915473174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059632705, 45.6819748617 ], [ -122.5059582917, 45.6758268864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726772266, 45.6325544336 ], [ -122.6738387769, 45.6325598997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9784909888, 46.6723810975 ], [ -122.9715754997, 46.6806806366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3946951929, 47.7570939377 ], [ -117.3849909341, 47.7667352841 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5216611447, 48.408142504 ], [ -119.5217331431, 48.4069900346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.8971476949, 47.186874414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3043819814, 46.0811339747 ], [ -118.2939892909, 46.0823692123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5509551438, 47.3216616972 ], [ -119.5469623321, 47.3271872736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3042127815, 47.6440954441 ], [ -122.3045144925, 47.6452852227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2816435896, 47.4911976441 ], [ -122.2842343808, 47.4966458915 ], [ -122.2948243841, 47.4982893333 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2539138096, 47.5892523535 ], [ -122.2398779598, 47.5908053835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7726340053, 46.9572131386 ], [ -123.7868512068, 46.9671019999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.3797829152 ], [ -117.1742498954, 47.3867659672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4959840812, 47.795839855 ], [ -122.4955876896, 47.7975252491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2196536686, 47.6737301547 ], [ -117.2096237746, 47.6717228675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4653744706, 45.7143933277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5359529209, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2629302431, 47.4619229895 ], [ -122.2576809614, 47.4624296733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3272024219, 47.4854072542 ], [ -122.3249301321, 47.4940508534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4725322952, 47.1701115828 ], [ -122.4665031792, 47.1763219389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1877595188, 47.0819384727 ], [ -122.1770751295, 47.0821558053 ], [ -122.1579355704, 47.0914690106 ], [ -122.1444230859, 47.1117933341 ], [ -122.133641732, 47.1203784468 ], [ -122.1343129645, 47.127974281 ], [ -122.127858372, 47.1309639391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3619718598, 48.4277546105 ], [ -122.348619877, 48.42175299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1011620507, 47.2072125648 ], [ -123.1009905679, 47.208217873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8935451035, 47.2124822553 ], [ -117.9133733487, 47.2329689301 ], [ -117.9189588547, 47.2455284974 ], [ -117.9303066387, 47.2535026311 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.2980321898 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0052660577, 47.9449095756 ], [ -119.007361139, 47.9433157516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8150974014, 48.097207949 ], [ -122.8132595013, 48.1004014814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9772544823, 47.8608534091 ], [ -121.9699337226, 47.859195632 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.9220918299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.3566645336, 48.4657611597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6040527531, 48.8920780487 ], [ -122.6174443607, 48.891747907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135126494, 47.2840032145 ], [ -122.3135712365, 47.2861343941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8119261196, 46.9521234492 ], [ -123.8046484797, 46.9587267173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4082967559, 46.9999448152 ], [ -123.3960419117, 47.002634929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0397518102, 46.4800616688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647059706, 47.5011897492 ], [ -117.5646817112, 47.503963135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.3582053906 ], [ -119.0437777328, 46.4172753716 ], [ -119.0282684938, 46.4252472577 ], [ -119.0246904637, 46.4313046328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764209525, 46.7675625649 ], [ -119.1764829488, 46.7754696717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0621815719, 47.6491753159 ], [ -120.0464865713, 47.6446019575 ], [ -120.027698695, 47.6241158901 ], [ -120.0044221119, 47.6210429111 ], [ -119.9971912665, 47.6127377431 ], [ -119.8344085442, 47.6126434109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.9998165576 ], [ -118.6629076467, 47.0795552087 ], [ -118.6668848781, 47.0903196406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020400669, 48.2595802573 ], [ -121.5970165475, 48.2728794129 ], [ -121.5736815995, 48.2846737532 ], [ -121.5561827695, 48.3013178631 ], [ -121.5551539066, 48.3113332029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.6154441079, 47.5048209466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124883705, 47.5167348211 ], [ -122.32119741, 47.52336099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2493486901, 47.3976177556 ], [ -122.2494308353, 47.4122081687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8502977234, 47.1752256328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2125640998, 47.9215909937 ], [ -122.2084243459, 47.9195131157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8262913588, 46.7574551866 ], [ -120.8127305308, 46.7506838345 ], [ -120.7884944778, 46.7483083341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.1885742414, 47.9807304066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.2230431561 ], [ -117.0730024916, 47.2240691944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855374224, 45.5797321231 ], [ -122.3776958201, 45.5806227602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6356948558, 47.5650400988 ], [ -122.6329293436, 47.5650333624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153057722, 47.4499572937 ], [ -122.2178750419, 47.4671156335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9336567593, 48.052435164 ], [ -119.9457986845, 48.0554741634 ], [ -119.9596133683, 48.0757671252 ], [ -120.0069122484, 48.074198118 ], [ -120.0232808716, 48.0973889327 ], [ -120.0101725262, 48.1079613687 ], [ -120.0111466448, 48.1252859785 ], [ -120.004345499, 48.130411721 ], [ -120.0082609418, 48.1366210454 ], [ -120.0423875397, 48.14314282 ], [ -120.0664995986, 48.1555692556 ], [ -120.0933996402, 48.1811071167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4839534054, 46.7954711602 ], [ -118.3944003164, 46.7948578097 ], [ -118.3777369137, 46.7780423397 ], [ -118.3635301736, 46.7762257383 ], [ -118.3189412156, 46.7588639349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9251619366, 48.557993926 ], [ -117.9365504311, 48.5667945753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2089308735, 47.8094374485 ], [ -122.2072319883, 47.8094477645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9083233112, 46.1444373825 ], [ -122.9075601174, 46.1465486719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6891411882, 47.6839322136 ], [ -122.6869120748, 47.6932883974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3104348324, 46.7563777105 ], [ -118.3084452289, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395375143, 48.1839762284 ], [ -117.0395528608, 48.1829538969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3686788882, 47.1150041492 ], [ -118.3602316649, 47.1201988782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.5340788266 ], [ -121.778499806, 46.5338365408 ], [ -121.7578493233, 46.5388804234 ], [ -121.7354912874, 46.5526532482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339668077, 47.2064012989 ], [ -122.4339726068, 47.2074131032 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0487109157, 46.7291966819 ], [ -119.0868227043, 46.7395693677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.0550657238 ], [ -119.857595908, 48.0732144226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2844096141, 48.3059359445 ], [ -117.2839019256, 48.3051822196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1741648142, 46.7379128734 ], [ -117.1727879342, 46.7397697342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9747908435, 47.8173888452 ], [ -119.9580569245, 47.85237627 ], [ -119.9329792614, 47.8584852058 ], [ -119.9202563007, 47.8731183295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1410473188, 47.6647648556 ], [ -118.1411272552, 47.7032509231 ], [ -118.1502785502, 47.7110758636 ], [ -118.1524287124, 47.7227234463 ], [ -118.1703775752, 47.7449382474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2566876381, 47.112363657 ], [ -119.2567131133, 47.1164713022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3235519617, 47.1618045752 ], [ -119.3298805519, 47.1732555069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2423008133, 48.2388120168 ], [ -122.2407774423, 48.2388106439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7018643165, 48.078607276 ], [ -122.7016186118, 48.0859624396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3413276695, 47.8214509801 ], [ -122.3358813394, 47.8214508721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3033025513, 47.1598935483 ], [ -118.292877678, 47.1671440586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7380298017, 47.1620255285 ], [ -119.7255609263, 47.1697949724 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.3706285622 ], [ -124.053203924, 46.3755642012 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.4004321611, 45.9963687794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2488000931, 47.2053582695 ], [ -122.2470351952, 47.2239142549 ], [ -122.2546724797, 47.2425035856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.6896630119, 48.0306013366 ], [ -122.691035371, 48.0512475527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2639807772, 47.6750826193 ], [ -122.2635673336, 47.6757343946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9142227785, 46.0565756326 ], [ -118.9075966187, 46.0562013963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.1138577083 ], [ -123.4200144031, 48.1146846853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6443296317, 48.5973721967 ], [ -118.6314431515, 48.5960235156 ], [ -118.5679108258, 48.6153465501 ], [ -118.565952585, 48.6122317883 ], [ -118.5445438821, 48.6115078332 ], [ -118.5275917915, 48.597047814 ], [ -118.5137119104, 48.595243222 ], [ -118.509752482, 48.5970623776 ], [ -118.5155459269, 48.599558024 ], [ -118.512743502, 48.6032967468 ], [ -118.4782741505, 48.6072204311 ], [ -118.4585509256, 48.6047398165 ], [ -118.4660973772, 48.6082207338 ], [ -118.4661888943, 48.6121179319 ], [ -118.4444583552, 48.6113077339 ], [ -118.4417651532, 48.6299366699 ], [ -118.4328701141, 48.6218299941 ], [ -118.4198597385, 48.6246827606 ], [ -118.4036719089, 48.6210805405 ], [ -118.3464920198, 48.5973425143 ], [ -118.3089665113, 48.5891488571 ], [ -118.2932680389, 48.5791723325 ], [ -118.2487912527, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410746428, 48.435897211 ], [ -122.339797739, 48.4358920299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2757674785, 47.0538122933 ], [ -123.2617004672, 47.0447459023 ], [ -123.2512032791, 47.0452823163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843394707, 46.2961931387 ], [ -118.5642291766, 46.2961229496 ], [ -118.5526503645, 46.2885666946 ], [ -118.5338227757, 46.2908205864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1520827446, 47.701179935 ], [ -117.1332932554, 47.7045387135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.7232723565 ], [ -117.144376428, 46.7217073773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496454526, 48.0068914762 ], [ -117.3496648896, 48.0177222579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018408354, 45.6721275722 ], [ -122.4885992861, 45.6718340343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3726222715, 46.147436197 ], [ -118.3843361092, 46.1731924444 ], [ -118.381582691, 46.1978440693 ], [ -118.3932511954, 46.2165714643 ], [ -118.3695963283, 46.2371507033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654507751, 46.8691413663 ], [ -122.2741213173, 46.8768699817 ], [ -122.2978283667, 46.8740061708 ], [ -122.3026544634, 46.8782016749 ], [ -122.3006964497, 46.8856559346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6936997501, 48.906634052 ], [ -121.6959320726, 48.9034555044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7303182124, 46.6823391023 ], [ -123.7294537729, 46.6833756482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2251116552, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.2328415573, 48.6030299836 ], [ -122.2181484826, 48.6264669174 ], [ -122.2129746455, 48.6527134381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070072355, 47.9049606299 ], [ -122.207060034, 47.9072893217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2593033654, 47.2570246683 ], [ -122.2607429983, 47.2688990575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534565369, 47.1904786655 ], [ -119.8534105031, 47.2194487082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8856837159, 47.9870204643 ], [ -122.8847738398, 47.9855759007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7097773434, 47.6324886961 ], [ -122.7050597877, 47.6433614356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0109218044, 46.1691434983 ], [ -123.0047956327, 46.1661237024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525552477, 45.6778313417 ], [ -122.5521517487, 45.68208727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0368091721, 46.3974067466 ], [ -123.0273681586, 46.4021888563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6108296856, 47.0345615907 ], [ -120.608500123, 47.0374844302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7646365596, 47.0522855716 ], [ -122.7649510613, 47.0430902917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.6531948538 ], [ -118.1576684527, 47.6540467209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2985045151, 47.39547624 ], [ -122.2947389534, 47.3936027263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1009905679, 47.208217873 ], [ -123.1002782834, 47.2119732363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.2590728745, 45.5598753251 ], [ -122.2313535428, 45.5611000545 ], [ -122.2185549591, 45.5661709399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9073058758, 46.275376903 ], [ -122.9076435518, 46.2769325247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.4347156331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.7339077039 ], [ -120.2227951042, 45.7429753339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4150175631, 48.0010609611 ], [ -122.4394163697, 48.0042427956 ], [ -122.4541097954, 47.9996108269 ], [ -122.4616900184, 48.0042963392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2059069062, 46.7337520183 ], [ -117.2010536613, 46.7337602693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350543494, 47.0839448876 ], [ -122.434931526, 47.0973144524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564774846, 46.0688842599 ], [ -118.3564578154, 46.074867789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9537625763, 46.7353817521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8530540341, 47.5118709577 ], [ -121.8359319626, 47.5137466225 ], [ -121.8134961044, 47.4952951892 ], [ -121.8021513026, 47.4912692217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1942019738, 46.765336616 ], [ -122.2539355099, 46.7853850827 ], [ -122.2754741187, 46.7999623833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118922418, 46.6260641185 ], [ -120.5118923903, 46.626211773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9012940427, 46.1535561469 ], [ -122.9030469817, 46.1632969984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1937212048, 46.7334218163 ], [ -117.1864957616, 46.7314771721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4740104061, 48.6441487529 ], [ -119.4680874186, 48.6526355103 ], [ -119.4720016489, 48.658440658 ], [ -119.4702383791, 48.6728249756 ], [ -119.4503868347, 48.6949331433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4326700109, 47.2980606258 ], [ -122.434434259, 47.2999575945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132040823, 46.9766495807 ], [ -123.8143955605, 46.9760348973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3291037047, 47.7469054111 ], [ -122.329330637, 47.7502820303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.4588398216, 46.5422963318 ], [ -122.4431205175, 46.5426184535 ], [ -122.3866181203, 46.5326301989 ], [ -122.3663394868, 46.5419551196 ], [ -122.3433527114, 46.5461871073 ], [ -122.3277084896, 46.5447206472 ], [ -122.304327892, 46.5536935513 ], [ -122.2840598213, 46.5529035395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8165310712, 47.861761082 ], [ -121.7973817559, 47.8650366901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6664314526, 45.6289361692 ], [ -122.6622739757, 45.6359541769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4722955548, 47.7620355267 ], [ -121.447920831, 47.7462461048 ], [ -121.3976461043, 47.7270429682 ], [ -121.373545979, 47.7118393097 ], [ -121.3610242433, 47.7115372115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2633718554, 47.6383063062 ], [ -119.2733755435, 47.6743245668 ], [ -119.2615943148, 47.7149291881 ], [ -119.2230942334, 47.7501735046 ], [ -119.1843733363, 47.7994133674 ], [ -119.1377770394, 47.8249299577 ], [ -119.0926019856, 47.8681495864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663296776, 47.4869149652 ], [ -122.2648660903, 47.4917032502 ], [ -122.2781342919, 47.5038105301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860458418, 48.8077759805 ], [ -122.4860064346, 48.8115322114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.2794901631, 47.7171874221 ], [ -121.2684273833, 47.7146504801 ], [ -121.2314445716, 47.7181510912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455119005, 46.4058071413 ], [ -117.0455562905, 46.4072575118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.5472933615, 46.8097314034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8856775734, 47.4568668079 ], [ -123.9115962269, 47.4593804445 ], [ -123.923859645, 47.4691766915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4885992861, 45.6718340343 ], [ -122.4838115389, 45.6696013323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.8798283082 ], [ -118.6029610598, 48.8836806589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1686131052, 48.5922259084 ], [ -118.1487240923, 48.5881794827 ], [ -118.1385473345, 48.6058850636 ], [ -118.1381575659, 48.6167843871 ], [ -118.1227222823, 48.6274371967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.3682043768 ], [ -117.0559008398, 46.3750297198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3268233106, 47.4554520402 ], [ -122.3312487114, 47.4630152497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.6996424338 ], [ -119.8134933014, 47.7033989052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984000405, 47.810449784 ], [ -122.2824397667, 47.8189715088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6349019011, 47.5414235496 ], [ -122.6312757821, 47.5427369679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4280346059, 47.2286568082 ], [ -122.4318700022, 47.2324653952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217057205, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.3713384075 ], [ -120.3200450577, 46.3702712669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.1030129375 ], [ -123.3473359023, 48.1065914367 ], [ -123.3235990471, 48.0975676978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6839292354, 46.6556063635 ], [ -123.6823651856, 46.6537194229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353139183, 48.3777532366 ], [ -122.3304605047, 48.3953989959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2503978849, 47.4892081022 ], [ -118.2012989355, 47.5308199337 ], [ -118.1653892826, 47.5731302322 ], [ -118.1625335373, 47.628203114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1895522829, 47.9817536396 ], [ -122.1880265207, 47.9816960822 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9908694542, 46.3149359546 ], [ -117.9762326912, 46.3216955439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0063294763, 46.5974626974 ], [ -119.0062862284, 46.6650492947 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0706839733, 47.6560836936 ], [ -122.0626914872, 47.6565133547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.5216015582 ], [ -121.9561002594, 46.5266704559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2999170842, 46.5700274981 ], [ -123.2987829945, 46.5700375755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0481554077, 48.1858130018 ], [ -117.0468216405, 48.1843343896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.5924775695 ], [ -122.6291767301, 47.6025424022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709358838, 45.6080222232 ], [ -122.5675237104, 45.6073013401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6844389648, 47.5695855201 ], [ -122.6834705983, 47.5695963871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3109574982, 47.8036768463 ], [ -122.2984000405, 47.810449784 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7547026936, 49.0004770596 ], [ -122.7560316167, 49.0021057869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6231476737, 46.2473883891 ], [ -119.5619880902, 46.2669256695 ], [ -119.5430046419, 46.2654844556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9642066552, 46.1752198269 ], [ -118.9444220241, 46.1607549293 ], [ -118.9380954914, 46.1457035998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8874051323, 46.9794818062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.1513553719 ], [ -122.9664209143, 46.1480268532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5806705958, 46.8856606496 ], [ -119.4960377839, 46.8670870363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2283833788, 48.5104834855 ], [ -122.2257076367, 48.5104740686 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2344986468, 47.8819300694 ], [ -122.2317004486, 47.8819477141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987829945, 46.5700375755 ], [ -123.2976491615, 46.57004764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1592829547, 48.0537110655 ], [ -122.1430161763, 48.0536913707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6029610598, 48.8836806589 ], [ -118.5960578667, 48.8929230529 ], [ -118.5702542261, 48.9081474453 ], [ -118.5656033639, 48.9182463274 ], [ -118.5670170403, 48.9268359292 ], [ -118.5544641317, 48.9452340889 ], [ -118.5477800803, 48.9528978326 ], [ -118.5357075896, 48.9566891396 ], [ -118.5353160505, 48.9627204264 ], [ -118.5278088476, 48.96466224 ], [ -118.5270148193, 48.9792705723 ], [ -118.5082944355, 48.9920259516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8939276953, 46.9931418107 ], [ -123.89576752, 46.9948947943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0271462337, 46.2187179874 ], [ -119.0051151642, 46.203549009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.1991468956 ], [ -121.9599282089, 47.199071826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6588479006, 47.0844194177 ], [ -122.648398392, 47.0870048504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8313657266, 47.5369638292 ], [ -121.8182402683, 47.5195028025 ], [ -121.7847660346, 47.4978692597 ], [ -121.7872865838, 47.4951204522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667172316, 46.8655192861 ], [ -122.2654432539, 46.8668033464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1403335938, 47.4070557775 ], [ -123.1406582023, 47.4063958443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1696146509, 47.1148944779 ], [ -124.1701797505, 47.1175620554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9850301584, 47.9620801186 ], [ -118.9795868328, 47.9655777499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0842561584, 48.2705971119 ], [ -120.0543811291, 48.3022164989 ], [ -120.0523324287, 48.3111175595 ], [ -120.0541593021, 48.3183004848 ], [ -120.0735179834, 48.3417951846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1068419882, 47.5689365485 ], [ -122.0890281054, 47.5593389769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.3067016972 ], [ -122.0033924307, 47.3087018731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5404648362, 47.3016571328 ], [ -119.5110835333, 47.2895128669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6888669105, 47.8504476194 ], [ -121.6851132626, 47.8485151937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9970626639, 47.8392820634 ], [ -119.988693195, 47.8318583594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7196952232, 46.9185306009 ], [ -123.7199263398, 46.929127072 ], [ -123.7255969446, 46.9340666372 ], [ -123.7341821694, 46.9344876708 ], [ -123.7656400398, 46.9512725149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.1927344595 ], [ -122.2337989939, 47.1915311175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.5680335119 ], [ -122.2518294677, 46.5763541165 ], [ -122.2421710444, 46.589172878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4011678238, 47.5746894483 ], [ -117.403113814, 47.5873771825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3744668125, 47.6129385181 ], [ -124.3875850933, 47.6583279196 ], [ -124.3993841644, 47.6751810229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3968245294, 47.5274308586 ], [ -117.4004674284, 47.5364053504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228862469, 47.8212957342 ], [ -122.3176863857, 47.8212139394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9002465055, 46.2807315191 ], [ -122.9067208674, 46.2922496265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.4111842305, 47.6640841682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1203640782, 46.6650711504 ], [ -121.0946876862, 46.6671149014 ], [ -121.0695247091, 46.6770302874 ], [ -121.0312749766, 46.6723519543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2895900621, 47.4060388964 ], [ -120.287327632, 47.3995120011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.0455743548, 46.418180045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2191991764, 47.4676990124 ], [ -122.204514745, 47.471240198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759360238, 47.659448765 ], [ -122.6795231234, 47.662857905 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2815617176, 47.1297537126 ], [ -119.279016421, 47.1310325774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5812917606, 48.852425293 ], [ -122.5841213566, 48.8552680454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8398740601, 46.5760326545 ], [ -122.7836319133, 46.5772503018 ], [ -122.7404835765, 46.5712006701 ], [ -122.7194158446, 46.5756303426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8140314886, 46.4381206875 ], [ -122.8037680338, 46.4381163639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4740346798, 46.5317789409 ], [ -120.4736324891, 46.5393860319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.9088899283, 46.24591744 ], [ -123.9230833697, 46.2536596942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6837381984, 47.566162133 ], [ -117.6826564308, 47.5676722178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0055307618, 46.3309327743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6587450787, 46.0394084907 ], [ -118.6183764468, 46.0524276018 ], [ -118.5903183471, 46.0567683361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2740001981, 47.1335512955 ], [ -119.2682387314, 47.1364387388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3680598924, 46.3027624934 ], [ -119.3592158745, 46.3038389416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284561857, 48.4123674853 ], [ -119.5138464975, 48.416820343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8766375645, 47.6695099085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3803488731, 47.8097254242 ], [ -122.3802638858, 47.8059839555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202094806, 47.6795440304 ], [ -122.3197480792, 47.6816333663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852398362, 48.6680694691 ], [ -122.4879877343, 48.6747508138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149961011, 46.3824800478 ], [ -120.3150062176, 46.3807401139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.5428151022 ], [ -122.3343590195, 47.548548451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8587943416, 47.2333342522 ], [ -119.8548278199, 47.23342187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.9489550287, 46.8453769887 ], [ -120.9198054238, 46.8088624381 ], [ -120.8730896808, 46.7911106338 ], [ -120.852016458, 46.7729537418 ], [ -120.8280101158, 46.7646641629 ], [ -120.8296238449, 46.7598306382 ], [ -120.8262913588, 46.7574551866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0894814698, 46.794082912 ], [ -124.0910571193, 46.7988293856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509906905, 45.6012653728 ], [ -122.5528157131, 45.6121505059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1254159669, 47.3580621765 ], [ -122.1199550793, 47.3581151088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3138098088, 47.2044681618 ], [ -122.3082844841, 47.2024103912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.7503923932 ], [ -124.3181176136, 47.7587161676 ], [ -124.2855580029, 47.7726923141 ], [ -124.2759947825, 47.7820982488 ], [ -124.2530151923, 47.7822663141 ], [ -124.2495130066, 47.7881392179 ], [ -124.2521475758, 47.7981298006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.3453645423 ], [ -124.0547617311, 46.345935959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442671142, 46.4171675734 ], [ -117.0418061778, 46.4188762721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0433824839, 46.311738539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0986362805, 47.712113508 ], [ -117.0689280259, 47.7241616056 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1231539266, 48.0732680847 ], [ -123.1086623321, 48.0731296075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.6744466654 ], [ -122.12152933, 47.6738932335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7177993581, 47.8557884326 ], [ -118.7244772311, 47.8657256228 ], [ -118.7262988872, 47.8616518102 ], [ -118.7266656923, 47.866288751 ], [ -118.7193816343, 47.8729650037 ], [ -118.708130171, 47.8753570306 ], [ -118.7187904488, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.6952783466, 47.904651593 ], [ -118.6974620996, 47.9153870731 ], [ -118.689698978, 47.9188318309 ], [ -118.6896573662, 47.926800027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938536061, 47.2051808084 ], [ -122.2939107442, 47.2065716074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9357957557, 46.1384811775 ], [ -118.9299651984, 46.1234412496 ], [ -118.9125576769, 46.0999090238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6615401387, 47.5961287953 ], [ -120.6572408493, 47.5983589324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923996871, 47.7318031538 ], [ -122.2924586232, 47.7337786904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0751751165, 47.9197652005 ], [ -122.0661637707, 47.9143207671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9752113547, 46.7336230278 ], [ -123.0096321933, 46.7929903915 ], [ -123.0095031858, 46.7983597125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2352752464, 48.510504468 ], [ -122.2339586384, 48.510507948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4080084386, 45.6115840369 ], [ -122.4077199663, 45.6106168272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2421710444, 46.589172878 ], [ -122.2342561239, 46.5991023786 ], [ -122.2289134311, 46.6195560146 ], [ -122.2123686575, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.1960275134, 46.6788309729 ], [ -122.1994759487, 46.7042746461 ], [ -122.2193180607, 46.7251006266 ], [ -122.2079538886, 46.7335435597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6924466276, 47.8522943399 ], [ -121.6888669105, 47.8504476194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9750403018, 46.4047023004 ], [ -122.9698911237, 46.4019382554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8934297223, 46.5484187108 ], [ -123.9161773153, 46.5735129812 ], [ -123.9193768639, 46.5990484863 ], [ -123.9142185013, 46.6143994929 ], [ -123.9231640027, 46.6264718255 ], [ -123.9195012753, 46.6405634658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4595741397, 48.1100676892 ], [ -123.4449923396, 48.1224985775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353775602, 47.2512222204 ], [ -122.3355225852, 47.2647220072 ], [ -122.322068257, 47.2826226664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4398134853, 48.7045718994 ], [ -119.4389284985, 48.705561124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.1322797485 ], [ -117.2430200919, 47.1351050773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0868475896, 46.7892994633 ], [ -124.0894814698, 46.794082912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.3061625069, 47.1007526268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1217698707, 47.9948572706 ], [ -122.1126921303, 48.0002111444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1414184657, 47.5061993756 ], [ -122.1248280167, 47.5008402591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1351290082, 47.640071799 ], [ -122.1377401447, 47.6538823653 ], [ -122.134945908, 47.6610541746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9712249078, 46.5098672609 ], [ -117.9486341254, 46.5101973652 ], [ -117.9333783642, 46.5226592223 ], [ -117.8906915475, 46.5450662647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.5309639916 ], [ -121.9719468032, 47.5356190389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5816396399, 47.9176697804 ], [ -124.5903548008, 47.917783212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3526072751, 46.656816854 ], [ -121.341432663, 46.6594134737 ], [ -121.3385969386, 46.6559459214 ], [ -121.3092733459, 46.6569028996 ], [ -121.2807737226, 46.6507323213 ], [ -121.2720903746, 46.6447841556 ], [ -121.1785138343, 46.6444383578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6999410067, 45.923000308 ], [ -120.6965690225, 45.9324842549 ], [ -120.6583470417, 45.9562641417 ], [ -120.6537674636, 45.9641209952 ], [ -120.6538196253, 45.9965615172 ], [ -120.6409423299, 46.0067409664 ], [ -120.6402471596, 46.0159231899 ], [ -120.6224996657, 46.0271360717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954198113, 47.4345568351 ], [ -122.2958516184, 47.4404648377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4761902468, 46.2572390375 ], [ -119.4871230724, 46.2579063443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5889958565, 47.5568399451 ], [ -120.5877830321, 47.5561469233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.3588356337 ], [ -124.4481794241, 48.3163709433 ], [ -124.441553728, 48.3087450645 ], [ -124.4170379921, 48.3016446894 ], [ -124.3939306113, 48.2869815122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947627706, 47.0592610847 ], [ -122.2940652218, 47.0777178732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2017909519, 47.8734177394 ], [ -120.2012261125, 47.8744218608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6492690844, 46.9444965174 ], [ -123.6192593546, 46.9465973928 ], [ -123.6032357017, 46.9588877342 ], [ -123.6041613497, 46.9661133917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3206709228, 47.4319777068 ], [ -120.3128299563, 47.4225323717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7366031924, 45.6987633896 ], [ -121.7054052114, 45.6992145937 ], [ -121.6759438831, 45.7099755879 ], [ -121.6604109342, 45.7097319074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3830261382, 46.2040132418 ], [ -123.3821019742, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3470322877, 47.6426862378 ], [ -122.3473316285, 47.6527710843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1554043069, 47.8843452114 ], [ -120.1511179931, 47.883422456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362799721, 48.9485573498 ], [ -119.4366735302, 48.9489071813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959770656, 47.1610814791 ], [ -122.297846414, 47.1614508102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7153794817, 48.2082318736 ], [ -117.7154506529, 48.2699984918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5450441479, 47.7703887266 ], [ -117.5439564153, 47.7770043475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3592158745, 46.3038389416 ], [ -119.3472771984, 46.3003841931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847277876, 48.0959977763 ], [ -122.1847725776, 48.1059122858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5468406356, 47.1039007809 ], [ -119.4559455385, 47.1039759554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2027047002, 46.7090131164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.5527655447, 45.7037149254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.2858307257 ], [ -122.8997031408, 46.2867891323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.2902358871 ], [ -124.0560465833, 46.2891258681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853465728, 46.5342767318 ], [ -122.475498549, 46.5361010556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7094384198, 46.6776841454 ], [ -123.7038991686, 46.6750455817 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8614321809, 46.652330978 ], [ -118.8524014486, 46.6510749802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6927958127, 47.661573015 ], [ -122.6880316431, 47.664446406 ], [ -122.6882400113, 47.6692766526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6669042924, 47.0988351268 ], [ -118.6653004485, 47.1161677624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759314616, 47.5414115006 ], [ -122.6748917772, 47.5440202547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3016866652, 47.3019511926 ], [ -121.2916134708, 47.299067816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.4446581265 ], [ -122.8478646508, 46.4428982556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1781385805, 46.7289018557 ], [ -117.1769047974, 46.729513769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9550394088, 46.881056224 ], [ -119.9465333306, 46.9123858241 ], [ -119.9569337464, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6035425582, 46.5285458674 ], [ -122.5955693857, 46.5253458249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2236011158, 47.8003896824 ], [ -122.2315021263, 47.8140192332 ], [ -122.2564077395, 47.8281388084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.8214634366 ], [ -122.3413276695, 47.8214509801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9163495454, 47.639117271 ], [ -121.9102593964, 47.6591206418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0525359155, 46.466597142 ], [ -124.0524708108, 46.4681772505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9707726081, 47.8570932647 ], [ -121.970344695, 47.8592876727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3565494361, 47.7225769388 ], [ -117.3549235161, 47.7296515994 ], [ -117.3606738137, 47.7392386451 ], [ -117.3591982992, 47.7502754755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1328213855, 47.4183288429 ], [ -119.1069520778, 47.4029037206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3472771984, 46.3003841931 ], [ -119.3370276268, 46.2969163285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9614934821, 48.0502939774 ], [ -122.9507202106, 48.050275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3633339712, 46.1950290192 ], [ -123.3544482975, 46.1872368309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2560871516, 47.4838568514 ], [ -118.2546862005, 47.4856106964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3590945902, 46.9323858894 ], [ -121.3058304988, 46.9520915888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9651128936, 48.5240655431 ], [ -121.9301268685, 48.5264239752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9768718108, 46.656330602 ], [ -122.9799410614, 46.666273563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0345305238, 46.549222742 ], [ -124.0378003229, 46.5491873736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2928419495, 47.6157241973 ], [ -119.2882313209, 47.6170498652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2290446727, 47.8020950345 ], [ -117.2128688346, 47.8047418564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216193183, 47.6754410608 ], [ -122.121605019, 47.6744466654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5071454103, 47.6430669681 ], [ -117.4899748205, 47.6377977945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0155186397, 46.1714070706 ], [ -123.0109218044, 46.1691434983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3234409469, 48.9201959718 ], [ -122.3219125052, 48.9201922455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0741604248, 47.4897900635 ], [ -123.0798887479, 47.4834193437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.5142285605, 45.8854969434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989188555, 47.1501796155 ], [ -122.4839759446, 47.158948731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4532860957, 46.8561637408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8302534091, 47.4465115389 ], [ -122.8269220429, 47.4513256561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0483767272, 47.6956888561 ], [ -117.0417025967, 47.6966317895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.4108536601, 47.7513199125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6248994904, 47.8447512634 ], [ -117.641565621, 47.8531276258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4637974094, 48.749722479 ], [ -122.4622122897, 48.7536867617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024048555, 47.3748567353 ], [ -122.2022086866, 47.3993044634 ], [ -122.1971702632, 47.4033636901 ], [ -122.1970568676, 47.4134071531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1928665076, 45.6576560325 ], [ -121.1823283839, 45.6490400174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3673070896, 47.8179585281 ], [ -122.3663582961, 47.8214821079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9931524128, 47.222746832 ], [ -120.9940435568, 47.2237272029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.7148245953 ], [ -122.4751894509, 48.7143961658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1774124503, 47.0928575254 ], [ -119.16309152, 47.0915688757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.4806846506 ], [ -122.3354436719, 48.4902753934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8245858874, 45.6986339731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0751698208, 48.6068991662 ], [ -118.0783937232, 48.6149269177 ], [ -118.0719817894, 48.6214498763 ], [ -118.0767913963, 48.6302280828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0338926368, 46.4915291514 ], [ -124.0337063992, 46.4929517328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9823239969, 47.8274002482 ], [ -119.9786186226, 47.8263733091 ], [ -119.9835503921, 47.8126666885 ], [ -119.9808716374, 47.8137027141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7408549752, 45.9111701973 ], [ -122.7402748344, 45.9071079053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9990847026, 46.3019803085 ], [ -119.9781878444, 46.3023441821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1335402589, 46.81166858 ], [ -119.0482198121, 46.7995487771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5985546782, 47.2518971615 ], [ -119.5802254795, 47.2715449725 ], [ -119.5798147835, 47.2816012149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.2287970334, 46.322331888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.9425126462 ], [ -122.6292421446, 45.941283986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0103610919, 47.6398424818 ], [ -121.9982651856, 47.6313971171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619693815, 47.5476213035 ], [ -122.0609313135, 47.5488637513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3320839174, 47.4704214925 ], [ -122.3286086093, 47.4699818296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9291735447, 47.4763535553 ], [ -123.9337629187, 47.4801114863 ], [ -123.9589950413, 47.4802520054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0523623815, 46.336389697 ], [ -117.0487379362, 46.3397717715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.9948947943 ], [ -123.899165273, 46.997061728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8562732625, 46.5369650839 ], [ -117.8217992709, 46.5244556466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9600984345, 46.8984631507 ], [ -122.9467593344, 46.9213451432 ], [ -122.9389895243, 46.9474951907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7730682265, 47.1959969886 ], [ -120.7607234225, 47.1917861928 ], [ -120.7332273936, 47.2005102162 ], [ -120.7189725743, 47.1993671783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2580730119, 47.8098225751 ], [ -124.2638042622, 47.8258077379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7934879339, 46.6650978736 ], [ -123.7831803897, 46.6698379874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1974475198, 47.5227002331 ], [ -117.2106226505, 47.5366364133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8261026875, 46.9700612141 ], [ -123.8158546232, 46.9740606365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.1712861629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244049035, 45.6505489649 ], [ -122.4244634331, 45.6433255811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1027698079, 46.9174522008 ], [ -117.0865946222, 46.9166932633 ], [ -117.0875131805, 46.9125608238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.7724672092 ], [ -122.6032429154, 47.7771222102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.7292158488 ], [ -121.5209883629, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.8122546849 ], [ -122.3807347134, 47.8118396427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7350013936, 46.2109623873 ], [ -119.7134341801, 46.2195650238 ], [ -119.6746905035, 46.2230812429 ], [ -119.6647884113, 46.2316909296 ], [ -119.6378671733, 46.2418590791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418061778, 46.4188762721 ], [ -117.0398979045, 46.4201869144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6009036248, 46.9747491231 ], [ -123.6009001718, 46.9756350054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1001117785, 47.2128066209 ], [ -123.0984506931, 47.2150788727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.5437706657 ], [ -117.3939754864, 47.5534212221 ], [ -117.4011678238, 47.5746894483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329885436, 47.1517472612 ], [ -122.2366664186, 47.1398909033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349579061, 48.9905390378 ], [ -122.7349574112, 48.9939874349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1998425884, 48.0838545215 ], [ -123.1729427957, 48.0794522238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8950160535, 46.1910097955 ], [ -122.8878973615, 46.2290248549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8543075131, 46.8986913821 ], [ -119.7477078919, 46.8989696084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6515427568, 47.7916136315 ], [ -122.6494078234, 47.8021122484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2845197408, 47.9244871101 ], [ -122.275846758, 47.922028224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067906493, 47.8972009127 ], [ -122.2068183241, 47.898121112 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1254705822, 47.6666303079 ], [ -117.1119679946, 47.6701905633 ], [ -117.1030345042, 47.677801453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343073841, 46.7823988651 ], [ -119.1342855473, 46.7970731587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965893904, 47.1697800021 ], [ -122.2966981396, 47.1766290629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444365005, 47.6869595926 ], [ -122.344449168, 47.6905617273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3463687355, 46.0605179899 ], [ -118.3470868548, 46.0613934646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133341775, 47.6416718327 ], [ -122.2093039324, 47.6428078098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1547729075, 46.2701299684 ], [ -118.1532476863, 46.2701348718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0246904637, 46.4313046328 ], [ -119.0241669698, 46.4325560871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645242594, 45.6843405722 ], [ -122.6633194815, 45.6889511168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093581645, 47.7588250331 ], [ -122.2074296103, 47.7589886736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0718667587, 47.0910580253 ], [ -123.0326707223, 47.0850835188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.2322064702 ], [ -119.0389832338, 46.2269143007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1433040389, 47.6655064295 ], [ -117.1254705822, 47.6666303079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.1314750359 ], [ -122.9708431325, 46.1276076543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9437335833, 46.1159145 ], [ -122.9300694121, 46.1160931581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527655447, 45.7037149254 ], [ -122.5526401143, 45.7079886815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3461737894, 47.4701826048 ], [ -120.3405862296, 47.4683902338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468216405, 48.1843343896 ], [ -117.0454478886, 48.1840423049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6653004485, 47.1161677624 ], [ -118.6650951427, 47.1307627649 ], [ -118.6865288265, 47.1310840591 ], [ -118.6868873255, 47.1525952933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0705784959, 46.818061401 ], [ -123.0445647319, 46.8032170817 ], [ -123.0367919974, 46.8025443825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329554592, 47.5769885266 ], [ -122.6311588032, 47.5832738305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3891779095, 47.2344452702 ], [ -122.3464829935, 47.2161092989 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.6781103544, 45.9394909444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2572398494, 47.8906887228 ], [ -122.2484756693, 47.9000726144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3895677666, 47.4250017467 ], [ -117.3851698428, 47.4416448647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.4168080215 ], [ -119.5086232761, 48.4167726734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5588936409, 47.1038824628 ], [ -119.5468406356, 47.1039007809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.6504520462 ], [ -121.2687683916, 48.6735745065 ], [ -121.2428911629, 48.6747734043 ], [ -121.2417871323, 48.6848232358 ], [ -121.2133872234, 48.6996238392 ], [ -121.1788562676, 48.7047805918 ], [ -121.1615462137, 48.7118489675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1415565005, 47.4513001292 ], [ -117.150006285, 47.4715006436 ], [ -117.1473710049, 47.490110618 ], [ -117.1534210243, 47.4954564889 ], [ -117.1543496781, 47.5050294883 ], [ -117.1729346647, 47.5083302931 ], [ -117.1911483543, 47.5183415887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3218213184, 47.7696559418 ], [ -122.3161178049, 47.7897600047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9726679277, 47.3094719647 ], [ -117.9743483399, 47.316068813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8422504198, 46.4113220356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0306794602, 46.5320120219 ], [ -124.0311381455, 46.5464572368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4283589995, 48.4448569455 ], [ -122.4220672954, 48.4427374565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1919909484, 47.9726739009 ], [ -122.1903760819, 47.9768936616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2564077395, 47.8281388084 ], [ -122.2615653431, 47.8313484071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0389677607, 46.4202679171 ], [ -117.0359439377, 46.4204504282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4199297039, 47.2443571022 ], [ -122.3998093609, 47.2472450781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3061625069, 47.1007526268 ], [ -119.2760112984, 47.102681285 ], [ -119.2359630516, 47.0980998127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6513721365, 47.7650327884 ], [ -122.6507363437, 47.7695891636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3794534635, 47.2749697278 ], [ -122.3873073485, 47.2789522223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3386717842, 47.467239294 ], [ -120.337752153, 47.4679946321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3506178988, 47.9432704768 ], [ -117.3495747173, 47.9706537304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8239536487, 47.1032398754 ], [ -119.7595545426, 47.1034506094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4973048928, 47.4245366123 ], [ -119.5139073632, 47.4582590092 ], [ -119.5147481213, 47.4841570152 ], [ -119.4959565531, 47.5262188898 ], [ -119.4877526805, 47.534625173 ], [ -119.4698317487, 47.5426197192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5941205276, 47.5625995288 ], [ -117.5935764168, 47.5639483159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2866459043, 47.0557293212 ], [ -123.2754372301, 47.0555807313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.9627633161 ], [ -118.564368032, 46.9784278916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5436645551, 46.6226773126 ], [ -120.5384276031, 46.6224575094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5607434503, 47.285298956 ], [ -122.5598601931, 47.2754181914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4875027306, 45.727786525 ], [ -121.5060798331, 45.7309675268 ], [ -121.5123870647, 45.7354852032 ], [ -121.5138862172, 45.7429041091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8982557871, 46.1444215752 ], [ -122.897437776, 46.1447077289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1108347849, 46.868530839 ], [ -124.111600125, 46.8850832339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1977866952, 47.2037633126 ], [ -124.1981225594, 47.2096549901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092045302, 48.9638603752 ], [ -122.2884988914, 48.963997296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223014031, 47.4387746189 ], [ -122.3204263512, 47.4439375555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4685078514, 47.6390299187 ], [ -117.4478142216, 47.6480936772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.7903443739 ], [ -122.1434306209, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141387154, 47.305285326 ], [ -122.5141532261, 47.305786013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049498032, 47.6441648565 ], [ -122.2886549992, 47.644785095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0528192146, 48.6655590546 ], [ -118.0248355209, 48.673690401 ], [ -118.0156324089, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.0246739855, 48.714996295 ], [ -118.0424279281, 48.7258692143 ], [ -118.0490326374, 48.7359093653 ], [ -118.0449313771, 48.7513776852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4409541321, 48.1081108568 ], [ -123.4325841603, 48.1173198234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217483631, 48.934759017 ], [ -122.3209191677, 48.9438094983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1637086417, 47.1693190408 ], [ -122.1591468798, 47.1688389452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.3726813295 ], [ -123.0436033456, 46.3778943675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1934957289, 46.7573170831 ], [ -122.1920445113, 46.7631482149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.4391963694 ], [ -122.3222272004, 47.4388851786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4325841603, 48.1173198234 ], [ -123.4317237119, 48.1182747731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7703914682, 46.9553073045 ], [ -123.7726340053, 46.9572131386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.9715394508 ], [ -123.8046532988, 46.9702958878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4559455385, 47.1039759554 ], [ -119.4399901193, 47.1039813699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2027047002, 46.7090131164 ], [ -117.1944912719, 46.7123163464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.4589718006 ], [ -122.8432117884, 46.4565616045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3055000322, 47.6975803085 ], [ -122.3004396604, 47.7105219184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2414121493, 48.5104075699 ], [ -122.238568264, 48.5105092144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9417957659, 46.8489960363 ], [ -119.9564385558, 46.870475719 ], [ -119.9550394088, 46.881056224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1199550793, 47.3581151088 ], [ -122.1183933229, 47.358083689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2917893864, 48.3357459775 ], [ -122.2346365429, 48.3169213007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826802298, 47.5728704065 ], [ -117.6822629215, 47.5797908647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966216811, 46.5642108312 ], [ -122.2876908004, 46.5629051119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260701767, 47.9948236433 ], [ -117.7319104687, 48.0271486285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.9673328212 ], [ -122.1791586732, 48.976749001 ], [ -122.2244279928, 48.9635543174 ], [ -122.2383116691, 48.9818595874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1654679307, 47.0715130267 ], [ -124.1655918294, 47.0723702608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4763407681, 47.0248252936 ], [ -118.4422043734, 47.0465468351 ], [ -118.4141103189, 47.0591967856 ], [ -118.4096531682, 47.0680228106 ], [ -118.4070751366, 47.1033095374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.6895337324 ], [ -120.7340804093, 47.6761871917 ], [ -120.736360708, 47.6653111621 ], [ -120.7293898748, 47.659802408 ], [ -120.7200561919, 47.6404036194 ], [ -120.7278030171, 47.6305660868 ], [ -120.7121110083, 47.5936110768 ], [ -120.701765463, 47.584174099 ], [ -120.6752481496, 47.5885745711 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9015325687, 45.6823424191 ], [ -121.8860713061, 45.6924749788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3849909341, 47.7667352841 ], [ -117.3782208966, 47.7726334374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9075601174, 46.1465486719 ], [ -122.9085060615, 46.1467022322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3720613135, 47.6630728307 ], [ -117.3625630309, 47.6667062903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0524708108, 46.4681772505 ], [ -124.050056982, 46.4906407097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6552199252, 47.5591158808 ], [ -122.6532972455, 47.5655345715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7393994237, 47.7563801327 ], [ -120.7384906148, 47.7360195936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6020428046, 47.8547635857 ], [ -122.5840564696, 47.8521537918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.4722955548, 47.7620355267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2297404096, 47.0873925614 ], [ -119.2426005336, 47.0979189769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.0970846899 ], [ -122.434931526, 47.0973144524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156562553, 47.2992775357 ], [ -122.5156424716, 47.3005954736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.3885347527 ], [ -122.6768545821, 46.3788408723 ], [ -122.6734966352, 46.3612844656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4858227533, 46.5364298713 ], [ -122.4853465728, 46.5342767318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6707784483, 46.9375606362 ], [ -123.6492690844, 46.9444965174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.0283986473 ], [ -119.1947276042, 47.0577047606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1627542467, 47.0173831144 ], [ -124.1550212915, 47.0173446802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.1115839277, 47.2323900431 ], [ -117.1304728709, 47.2420790028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.6497792928 ], [ -121.6020091618, 46.6572102746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0035439323, 48.8008410224 ], [ -118.0000524199, 48.8073878339 ], [ -117.9839914901, 48.8137933308 ], [ -117.9732159238, 48.8153725474 ], [ -117.9487392461, 48.8094853403 ], [ -117.9292546465, 48.8147409952 ], [ -117.911425089, 48.8271070325 ], [ -117.8959484464, 48.8508702474 ], [ -117.881274636, 48.8536526446 ], [ -117.8721976377, 48.8648540321 ], [ -117.8535989042, 48.873679994 ], [ -117.8412727199, 48.8719526263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564482172, 46.0758820358 ], [ -118.356443458, 46.0771858995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1880265207, 47.9816960822 ], [ -122.1866738723, 47.9816878379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8521750453, 46.9760733389 ], [ -123.8539819045, 46.9760751104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4854380467, 45.7986174954 ], [ -121.4907851352, 45.8072105905 ], [ -121.4897114476, 45.8238193301 ], [ -121.5095189303, 45.8498089062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0439333142, 48.1840295652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535479607, 47.1032529839 ], [ -119.853533075, 47.1177226749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0859358901, 47.3580748666 ], [ -122.0740512207, 47.3581005334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976360012, 47.9682783923 ], [ -122.1919909484, 47.9726739009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5393560124, 47.6795086708 ], [ -122.5509605497, 47.690504212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.1095610147 ], [ -119.7180337732, 48.1023785656 ], [ -119.6987076385, 48.1034031892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1098271088, 47.8752954587 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3566645336, 48.4657611597 ], [ -122.3471628144, 48.4689593505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4987396272, 48.4522633023 ], [ -122.4439027276, 48.4460211348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8615475437, 46.8501099194 ], [ -122.8619828359, 46.8516552572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.0000254737 ], [ -122.2636151475, 49.0023365971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3189412156, 46.7588639349 ], [ -118.3084452289, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923358096, 47.816111394 ], [ -122.2923089488, 47.8137046002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546862005, 47.4856106964 ], [ -118.2503978849, 47.4892081022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5170629867, 46.6712561513 ], [ -120.5090316719, 46.6767027963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7906979157, 47.4363324322 ], [ -117.788774298, 47.4352395576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5417481504, 46.93783701 ], [ -122.5283321717, 46.937764175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1133617704, 47.671528366 ], [ -122.1035997262, 47.668444842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.3101897606 ], [ -124.0611205915, 46.3133462133 ], [ -124.0646455872, 46.3095588922 ], [ -124.0606528839, 46.3056504572 ], [ -124.0631995935, 46.2983588775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561926794, 47.9788192594 ], [ -122.3709598621, 47.979159491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245858874, 45.6986339731 ], [ -120.8245348679, 45.6980196603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.6959989375 ], [ -121.2896666816, 45.6971356795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7038407746, 48.2693058531 ], [ -118.7118079936, 48.2717401758 ], [ -118.7347455537, 48.2990724352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.5487710681 ], [ -120.2917105696, 46.5347459334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9982651856, 47.6313971171 ], [ -121.9874606417, 47.6279947984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9512089429, 46.1157614264 ], [ -122.9506147609, 46.1164898023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3807347134, 47.8118396427 ], [ -122.3796065351, 47.8114284518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6421804262, 48.4953349997 ], [ -121.6266579644, 48.4887808077 ], [ -121.5961697621, 48.4872753789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4620882803, 47.1970495358 ], [ -122.4616630283, 47.2001928833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9715754997, 46.6806806366 ], [ -122.9696916332, 46.6933543645 ], [ -122.9726938016, 46.7033062755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0586800059, 46.4199262615 ], [ -117.0574168065, 46.4199273309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6896573662, 47.926800027 ], [ -118.6899360795, 47.9292182705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4972510691, 47.3702850298 ], [ -119.4904926467, 47.3759248116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4005142886, 47.0558581985 ], [ -122.4284944729, 47.078773705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7394916541, 47.7565110441 ], [ -120.730179083, 47.7636832556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9995278053, 46.2401318028 ], [ -119.9992119183, 46.2864963221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3229788958, 46.3718043346 ], [ -120.3295269338, 46.375119312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547456263, 46.346612471 ], [ -124.0545804856, 46.3501186151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.7091478999, 47.7594544328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.4971895169 ], [ -119.529422804, 48.5261884807 ], [ -119.5433994788, 48.5588067811 ], [ -119.5428821789, 48.5652457761 ], [ -119.5336093333, 48.5756042234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1150336799, 47.4621474593 ], [ -123.1115804388, 47.4591212378 ], [ -123.1135516316, 47.4532319373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4817162701, 47.9308967011 ], [ -124.5299932781, 47.9150697025 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.0973144524 ], [ -122.4349079042, 47.0993004058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0489497271, 46.7350588091 ], [ -117.0399457046, 46.7324070437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.1446137165 ], [ -122.9084925335, 46.1444678361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0398979045, 46.4201869144 ], [ -117.0391231637, 46.4202563296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891839532, 48.1557176379 ], [ -122.2864988953, 48.1556958232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3759552613, 48.1048555471 ], [ -123.3718777273, 48.1048682436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5827190303, 48.4888446329 ], [ -121.5545003505, 48.4913049652 ], [ -121.4881327998, 48.508950098 ], [ -121.4721422642, 48.5088437362 ], [ -121.4623455844, 48.5215887624 ], [ -121.4499029188, 48.52736977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3601556874, 47.9337662856 ], [ -119.3421710669, 47.9339530573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.6954679099 ], [ -121.5460838145, 46.6830305932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046532988, 46.9702958878 ], [ -123.8110700669, 46.9732623777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0538459389, 47.8359849929 ], [ -120.0523540333, 47.8358056633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.9953117488 ], [ -119.4617807765, 49.0000868106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1240043387, 47.8375143859 ], [ -122.110117861, 47.8606661748 ], [ -122.1098271088, 47.8752954587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6719854785, 47.5475493235 ], [ -122.6673528658, 47.5490597613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3606111002, 46.0686802253 ], [ -118.3620580135, 46.0686467543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.5164951013 ], [ -120.4801991599, 46.5222228139 ], [ -120.4740346798, 46.5317789409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3257332902, 48.4357585766 ], [ -122.3228133919, 48.4357262199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526964173, 47.1210261719 ], [ -122.5479047169, 47.1238498878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617020964, 45.6446264754 ], [ -122.662431148, 45.6521906297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4341705298, 47.1628256566 ], [ -122.4339661209, 47.2054048624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1507870886, 48.1520523663 ], [ -122.1406082627, 48.151913289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.8204635395 ], [ -122.9030126575, 47.8171105151 ], [ -122.9099882327, 47.8113401111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0450833502, 47.3945353699 ], [ -122.0402216819, 47.4051375238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5649359725, 45.6591474533 ], [ -122.5527645121, 45.6654147454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.0711563886 ], [ -122.8179559351, 48.0780690922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982863362, 47.5159647484 ], [ -122.1981171515, 47.5215347846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.6526577026 ], [ -117.4040031937, 47.6521238544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0836074304, 46.2194354617 ], [ -119.0802022582, 46.218655692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.3836725936, 48.891377649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4299729836, 48.1175659952 ], [ -123.4189331528, 48.1130399131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245348679, 45.6980196603 ], [ -120.8239311827, 45.699442413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.0068490189 ], [ -123.370724874, 47.0107162595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070364986, 47.4594077387 ], [ -122.2071762297, 47.460991061 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981325832, 48.8071844986 ], [ -122.2025348229, 48.816156561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143033169, 47.9820481244 ], [ -122.2137802603, 47.9942207425 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.5900304239, 46.9331912019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1457324057, 46.2175957254 ], [ -119.139733927, 46.2168054788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.6533510839 ], [ -121.9052657624, 45.6630172635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7946033875, 46.6644384378 ], [ -123.7934879339, 46.6650978736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9302808397, 47.0618284552 ], [ -123.9291952045, 47.0698220314 ], [ -123.9053497947, 47.0862378881 ], [ -123.9065683519, 47.1025224633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.1600802384 ], [ -123.3772473125, 46.1712612786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0171493711, 47.533899271 ], [ -122.0078975272, 47.536442657 ], [ -121.9862702466, 47.5309639916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6860494601, 47.1944007257 ], [ -119.6058982049, 47.2443593024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347269484, 47.5378318312 ], [ -122.334116065, 47.5428151022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1407808762, 45.6112782291 ], [ -121.1458871745, 45.6207464818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5082283693, 48.4171152484 ], [ -119.4957046659, 48.4279752811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1924069122, 47.866359942 ], [ -120.2017909519, 47.8734177394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929172872, 47.4079531918 ], [ -120.2924574784, 47.4062158074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124253164, 48.3052893759 ], [ -122.3220553649, 48.3133080082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1913304565, 47.7557202808 ], [ -122.1719789948, 47.757621596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888093798, 47.6646633668 ], [ -122.6923069088, 47.6636431264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9289732825, 46.9527927439 ], [ -122.9342408253, 46.9527666325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.6413721887 ], [ -121.9750135429, 45.6406654273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7147238013, 46.8904667022 ], [ -123.7196952232, 46.9185306009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8318672716, 45.8230595037 ], [ -120.8246818019, 45.8230059935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.4940653907 ], [ -121.7947532586, 47.4893941273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3303173221, 48.6585990657 ], [ -119.300956592, 48.6532912771 ], [ -119.2320083598, 48.6707268101 ], [ -119.2170761455, 48.6694219752 ], [ -119.1977655229, 48.6613912396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4256225729, 47.223122782 ], [ -122.4262909226, 47.225964252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8502977234, 47.1752256328 ], [ -120.835010601, 47.1813621929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202363813, 48.949281296 ], [ -122.309466058, 48.9557928338 ], [ -122.3092045302, 48.9638603752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0627483977, 47.5457057767 ], [ -122.0619693815, 47.5476213035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6380760967, 47.8121912953 ], [ -119.636809987, 47.8116079214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650029443, 48.993579316 ], [ -122.2649877502, 48.9991015764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0453893577, 47.3903330933 ], [ -122.0450833502, 47.3945353699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9862005621, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129746455, 48.6527134381 ], [ -122.2128675498, 48.6558774574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.5650234096 ], [ -122.626945866, 47.5650153276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1979386219, 47.5094150608 ], [ -122.1982863362, 47.5159647484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8864441288, 47.5692233555 ], [ -121.8714099605, 47.5666180383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3012698346, 47.3733093484 ], [ -122.2963791173, 47.3865201952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.2402668908 ], [ -122.3761260037, 47.2404869197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3368309639, 45.5742854262 ], [ -122.3209227556, 45.5721542335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0733925966, 48.5848754338 ], [ -118.0753761557, 48.5902114462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826777243, 47.5721438687 ], [ -117.6826802298, 47.5728704065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4233116711, 47.3170469005 ], [ -122.3933590552, 47.3223798088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.6521906297 ], [ -122.6641643838, 45.6564855831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2859448482, 47.6619893558 ], [ -122.2731213214, 47.6686054126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9084925335, 46.1444678361 ], [ -122.9074799263, 46.1442853545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8860713061, 45.6924749788 ], [ -121.8853526517, 45.6928459455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.6807839356 ], [ -120.4770208515, 46.690052266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5173391489, 47.1402583462 ], [ -122.5087171766, 47.1447737983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844136914, 47.5118003255 ], [ -122.2959916607, 47.5348589719 ], [ -122.3052567416, 47.5434675701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3114493708, 47.3915360181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.6743020858 ], [ -117.1949668666, 46.6792475821 ], [ -117.2041283286, 46.690852856 ], [ -117.2043379911, 46.7058457651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9601733292, 47.2820553805 ], [ -122.9476214148, 47.2843120228 ], [ -122.9072628203, 47.3196228278 ], [ -122.8804463364, 47.3319204562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8996061797, 46.3980707203 ], [ -122.8901249197, 46.4071066469 ], [ -122.8903778041, 46.415684535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9079763288, 46.6939358446 ], [ -120.9004508404, 46.6954723221 ], [ -120.8993401827, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.1970266396 ], [ -122.2014569021, 47.1941769535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9191199125, 48.7058888906 ], [ -120.9018788234, 48.6993047307 ], [ -120.8869329514, 48.6878706293 ], [ -120.8730632183, 48.6662149503 ], [ -120.860204576, 48.6580196228 ], [ -120.8570944966, 48.6471093566 ], [ -120.8396554817, 48.6236676701 ], [ -120.8052610988, 48.5968427615 ], [ -120.7910556031, 48.5753448227 ], [ -120.7719880724, 48.5619204268 ], [ -120.7559189364, 48.5360943197 ], [ -120.735353297, 48.5237714938 ], [ -120.7300186258, 48.5053914965 ], [ -120.7047351948, 48.5014054647 ], [ -120.6742675651, 48.5197397944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.7502820303 ], [ -122.329647234, 47.751023302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1686914859, 48.4567062705 ], [ -120.1641201079, 48.4482031158 ], [ -120.162657037, 48.4277004159 ], [ -120.1427507914, 48.4096480739 ], [ -120.1394581142, 48.3955959557 ], [ -120.1224530293, 48.3673427778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5903662442, 47.4195793911 ], [ -121.5776035522, 47.4100021272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152583563, 47.0751224812 ], [ -119.2297404096, 47.0873925614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6550097756, 48.2961690914 ], [ -122.6459065292, 48.3044536381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.3479609208 ], [ -122.6144392443, 48.3571507648 ], [ -122.6376502047, 48.35872899 ], [ -122.6481358695, 48.3629663488 ], [ -122.6529393278, 48.3694852783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.2363292108 ], [ -122.0527912833, 48.2449618787 ], [ -122.0422700836, 48.2472730431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5109061448, 46.6442084502 ], [ -120.523724998, 46.6377396167 ], [ -120.5176792513, 46.6312271302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2460880266, 47.4822140792 ], [ -122.2262812506, 47.4777333495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6063379125, 48.8732863748 ], [ -118.6042284774, 48.8798283082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1155512302, 47.4448279782 ], [ -123.1250572733, 47.4302399209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8889879118, 46.4359167363 ], [ -122.8874838161, 46.4465601034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3302489185, 47.653713239 ], [ -117.3059533997, 47.6666196591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5100857559, 46.9261498028 ], [ -120.4979769108, 46.9262182292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1935312742, 47.3693743374 ], [ -122.1892028116, 47.3678526781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5798147835, 47.2816012149 ], [ -119.5666738127, 47.2998586553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1705524126, 46.261830974 ], [ -119.1232845443, 46.2486626016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.2675770829 ], [ -122.9002465055, 46.2807315191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356442883, 47.5965279925 ], [ -122.3366115131, 47.6017705053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4984055596, 47.7996307337 ], [ -122.4980484153, 47.7985063825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328642069, 47.5666355148 ], [ -122.6329469401, 47.5673326833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2138635159, 47.9989436144 ], [ -122.2139005694, 48.0088660673 ], [ -122.2066792685, 48.0166928257 ], [ -122.194138329, 48.0143287806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2658705764, 47.8207446489 ], [ -122.2603550037, 47.8200633469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5178051863, 46.8292156508 ], [ -117.5056679509, 46.8329591528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126146998, 48.512615782 ], [ -122.6158073359, 48.5126368227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6811544626, 47.5662461986 ], [ -122.6872359291, 47.5754584422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.5049651039 ], [ -122.2441256362, 48.5062952131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501999692, 46.3407700726 ], [ -117.0544483353, 46.341189423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5568485792, 46.6355163281 ], [ -118.5524895136, 46.6414946812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0341737891, 46.1565283618 ], [ -119.0404861073, 46.1612119681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2087469564, 46.519219156 ], [ -120.187902884, 46.5060599518 ], [ -120.1512170077, 46.5057690001 ], [ -120.1348556679, 46.5011777327 ], [ -120.0122059948, 46.5197458542 ], [ -119.9692099003, 46.519651668 ], [ -119.9107885567, 46.5364205054 ], [ -119.8800763033, 46.5339933138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8767342334, 47.9058643793 ], [ -122.8695985586, 47.8935341078 ], [ -122.8767758264, 47.8864421761 ], [ -122.8788699014, 47.8660279857 ], [ -122.8891886293, 47.8487536576 ], [ -122.8869762632, 47.8341940965 ], [ -122.8782146319, 47.8269872076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6827030778, 47.7012362102 ], [ -122.6601620541, 47.7045647028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9552434055, 46.1471068295 ], [ -122.9517110134, 46.1469021572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856549623, 48.8698410399 ], [ -122.4853470894, 48.891721005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922988122, 47.3324960837 ], [ -118.6922310931, 47.3333156666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4712654383, 46.5394142128 ], [ -120.4716805803, 46.5315434526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4568888894, 47.7154157955 ], [ -117.4586693868, 47.7154118844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0917467448, 46.2503035218 ], [ -119.0719934512, 46.2494836918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.2268141567 ], [ -117.0426450193, 47.2398211593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2504477979, 46.5248889015 ], [ -120.2087469564, 46.519219156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2613682363, 47.6314977852 ], [ -119.2620674833, 47.6387927373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0494766974, 46.168670079 ], [ -119.0547323353, 46.1734065603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5841213566, 48.8552680454 ], [ -122.5884452443, 48.8674825234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0032812985, 47.947389362 ], [ -119.0052660577, 47.9449095756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4503868347, 48.6949331433 ], [ -119.4426701243, 48.701328551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753566144, 48.5985793743 ], [ -118.0751698208, 48.6068991662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2257453992, 46.7363553939 ], [ -117.2088606428, 46.7337475063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3359326659, 48.3471746589 ], [ -122.3353139183, 48.3777532366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.7916254829 ], [ -118.735554338, 46.7937508078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1223453784, 47.6671817737 ], [ -122.1151578787, 47.6670962794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4176648406, 46.2468890125 ], [ -120.4107130626, 46.2554072697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8756714308, 47.8241423181 ], [ -122.8784338391, 47.8213945565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4105237126, 47.7523163592 ], [ -117.4066398664, 47.7632226212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650050712, 48.9927318071 ], [ -122.2650029443, 48.993579316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2693756681, 47.4848401945 ], [ -122.271537638, 47.4774623884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8631442072, 47.4386387656 ], [ -122.8510893599, 47.4467178579 ], [ -122.8432290715, 47.4472414198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3337342412, 46.9675559139 ], [ -119.3209799294, 46.9653642782 ], [ -119.2905893437, 46.9819785317 ], [ -119.2546464371, 46.9816911587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8823688809, 47.6904307157 ], [ -117.8721214923, 47.7133784629 ], [ -117.8705301943, 47.7320770346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2920566884, 47.4105282137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4801819768, 47.1632148502 ], [ -122.4736786558, 47.1615792122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5836844979, 47.8135870398 ], [ -122.575679242, 47.8083982974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1709978885, 48.2679601252 ], [ -122.2108149261, 48.3083495968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.5933681002 ], [ -117.564917202, 47.5916927028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847688223, 48.0681379541 ], [ -122.1846880578, 48.0816069517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3712410754, 46.1000850053 ], [ -118.3752602576, 46.1297165624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9976415411, 47.6844844298 ], [ -118.9853528685, 47.684966131 ], [ -118.9278071982, 47.7098400514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1795081855, 47.5879075274 ], [ -122.1799148927, 47.5984958939 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4071070263, 45.6049828823 ], [ -122.4068708389, 45.6018672646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4904926467, 47.3759248116 ], [ -119.4885964173, 47.3774858912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859651634, 48.8333491544 ], [ -122.4859682883, 48.8551455389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.0661116568 ], [ -124.1277743569, 48.0610891429 ], [ -124.0856497531, 48.0682445214 ], [ -124.0376981686, 48.0703874967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.8132799743 ], [ -121.5578566858, 47.8076375665 ], [ -121.540417972, 47.8101587782 ], [ -121.5174716436, 47.8040718423 ], [ -121.5124008767, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6612770989, 45.7464677187 ], [ -122.6644148519, 45.7566399081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1355017102, 47.9728688256 ], [ -122.1147445638, 47.9546186275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2980615002, 47.4097420223 ], [ -120.3006072071, 47.4096540761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473526853, 47.3779583767 ], [ -122.2473765563, 47.3813544414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442388387, 46.5318795567 ], [ -122.6340930823, 46.5322486745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.2226311076, 46.7258475583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4001255166, 45.5869987019 ], [ -122.4026413273, 45.5856862701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937875847, 47.2001491986 ], [ -122.2938700472, 47.204398406 ], [ -122.2900662647, 47.2038050564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068844997, 47.1589588837 ], [ -122.3938232704, 47.1581372397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3709598621, 47.979159491 ], [ -122.3858313632, 47.9827480539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938144583, 47.1988803768 ], [ -122.2937875847, 47.2001491986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.6490423139 ], [ -122.6555581763, 47.650535837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738336898, 45.6318598942 ], [ -122.6726646061, 45.6318665894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9122848657, 46.0569707003 ], [ -118.9099471422, 46.0583086547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4742083499, 46.700892472 ], [ -120.4658299611, 46.7110974278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3776962209, 47.7986124147 ], [ -122.3736956575, 47.7951965131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961576193, 48.435565171 ], [ -122.2918401179, 48.4355506598 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885119703, 47.6116238629 ], [ -122.188529648, 47.6167655089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6533156313, 47.5673798823 ], [ -122.6532972455, 47.5655345715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9165979703, 46.1447449432 ], [ -122.9162646971, 46.1456053501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0285168926, 46.3059630059 ], [ -120.0130934852, 46.3059829046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205534208, 48.891030585 ], [ -122.3207228659, 48.9128299651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0389832338, 46.2269143007 ], [ -119.0271462337, 46.2187179874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5282531262, 46.6540390188 ], [ -120.5271133231, 46.6559435532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1182659294, 47.2502870454 ], [ -122.1121601288, 47.2429315526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7937991559, 47.4331327858 ], [ -117.7834183624, 47.4410207892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939939147, 47.3262355559 ], [ -122.2926147175, 47.3445454758 ], [ -122.2958194243, 47.3530329299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6208507752, 47.3727205294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104239582, 47.7407128065 ], [ -117.4070872362, 47.7441952253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3995222327, 48.7939812329 ], [ -119.4010786247, 48.8149632644 ], [ -119.4098917758, 48.8417212767 ], [ -119.4075491533, 48.8590815563 ], [ -119.4237602533, 48.8850520385 ], [ -119.4267945588, 48.8988015987 ], [ -119.420443464, 48.9195242197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6214626929, 46.3469762238 ], [ -123.6093516169, 46.3560125261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030769375, 46.2842542837 ], [ -122.9017000705, 46.2852760142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446706564, 47.9041485453 ], [ -122.24100502, 47.9048928592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3192746176, 47.5777213746 ], [ -122.3189900834, 47.5793697605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3326182621, 48.3411594036 ], [ -122.3223136019, 48.340974526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2175661581, 47.8496908765 ], [ -122.2180791238, 47.8520936404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0626914872, 47.6565133547 ], [ -122.0246598026, 47.644263262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2111007099, 47.8781842656 ], [ -122.2064495037, 47.8781807663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6038968536, 47.6429304571 ], [ -117.5930897565, 47.6429188126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6883954382, 45.8215294532 ], [ -122.6994969166, 45.8454016677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5142285605, 45.8854969434 ], [ -122.5141163677, 45.8882670084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4127871024, 47.4225424219 ], [ -121.4125086133, 47.4188575024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0670005531, 48.0311344173 ], [ -122.0515149974, 48.0347413646 ], [ -122.0154120928, 48.0674017673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.0478652505 ], [ -122.8677373906, 46.0662316544 ], [ -122.8667316652, 46.0815539497 ], [ -122.8766472391, 46.1027391181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.6610600414 ], [ -122.2923848001, 47.661192848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7288442607, 46.3273755528 ], [ -122.7096040658, 46.3413062589 ], [ -122.705966832, 46.3506258111 ], [ -122.6957643354, 46.3590260443 ], [ -122.6794982425, 46.3616185155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1260566825, 47.8338193781 ], [ -122.1240043387, 47.8375143859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0449313771, 48.7513776852 ], [ -118.0341098319, 48.763627811 ], [ -118.0029204082, 48.7817155245 ], [ -117.9984594154, 48.7930237893 ], [ -118.0035439323, 48.8008410224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.7060084758, 48.282630412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004841678, 46.8873929159 ], [ -122.2956838746, 46.9101470708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159443381, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.4755009726, 47.7154054601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9487451622, 47.3816100186 ], [ -122.9147576786, 47.3880434547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5973616913, 47.8288659688 ], [ -117.6086838618, 47.8395393993 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938851325, 47.1496369098 ], [ -119.2942188172, 47.1497279489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1696161125, 47.8778286457 ], [ -122.1659527236, 47.8777990754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0802022582, 46.218655692 ], [ -119.0767280097, 46.2265908318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.632862566, 47.5657555269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0037700013, 46.3053205372 ], [ -117.9916818783, 46.3128548734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0447131335, 46.331198202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0311381455, 46.5464572368 ], [ -124.0345305238, 46.549222742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2905265819, 47.6724838661 ], [ -117.2740595055, 47.6747650499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2068183241, 47.898121112 ], [ -122.2070072355, 47.9049606299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2819653483, 47.864172748 ], [ -122.2804789478, 47.865772013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1493385256, 45.627246477 ], [ -121.1535252294, 45.6362913178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8878973615, 46.2290248549 ], [ -122.8855586956, 46.2431363274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2916134708, 47.299067816 ], [ -121.2855990411, 47.2943430614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7300920583, 45.9194293595 ], [ -122.7339030885, 45.9187733832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0795201794, 46.2322979284 ], [ -119.0800536366, 46.2333845599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393673303, 47.0263156043 ], [ -119.865717202, 47.0813852641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5851724439, 47.0928828595 ], [ -117.5970369922, 47.0955432506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.8650299972 ], [ -118.214404576, 48.874449448 ], [ -118.2191997319, 48.8911689414 ], [ -118.2184898942, 48.8962055128 ], [ -118.2049135992, 48.9088799037 ], [ -118.2224810046, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.2231937044, 48.9714536855 ], [ -118.2244399208, 48.9981157805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0565323603, 47.1958256105 ], [ -121.0467690066, 47.1906721316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159983682, 47.4737702544 ], [ -122.2162633519, 47.4784706076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.9560020349 ], [ -119.0023772267, 47.9485330892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433824839, 46.311738539 ], [ -124.0446066182, 46.3179898662 ], [ -124.0547726708, 46.3234251581 ], [ -124.0549477321, 46.3302467729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2341478641, 46.3874544653 ], [ -120.2006801889, 46.3575732877 ], [ -120.182959056, 46.3492095996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4110973876, 47.6862388811 ], [ -117.4111019043, 47.687150654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5826104882, 47.642912863 ], [ -117.5772145701, 47.6429329048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6439469399, 47.5027845218 ], [ -122.6342473786, 47.5049271741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1475130648, 47.3390747692 ], [ -122.1437673624, 47.3450660019 ], [ -122.1282072982, 47.3535748936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6508855836, 47.5374447335 ], [ -122.6378486297, 47.5421872915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4958895454, 48.7835005491 ], [ -122.4978200864, 48.7835877334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.1825112217, 46.7290233594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646334439, 47.5135895893 ], [ -117.5670476974, 47.526881555 ], [ -117.5936292327, 47.5547380914 ], [ -117.5941205276, 47.5625995288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1595614502, 47.2522250859 ], [ -123.1457654709, 47.2521210376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3035133121, 47.1100072069 ], [ -119.2942457468, 47.1191324392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6158073359, 48.5126368227 ], [ -122.6361324861, 48.5127555405 ], [ -122.6579787417, 48.5069926006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6689386318, 48.0733486098 ], [ -123.598965558, 48.0638062914 ], [ -123.5830787762, 48.0658416901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2871149715, 47.8209339215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7462246084, 48.1373562819 ], [ -123.7455869752, 48.1372852387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4626535561, 48.1066210145 ], [ -123.4625406534, 48.1078996274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6685724818, 47.8943422934 ], [ -117.6861862014, 47.8907180121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4410919266, 48.7031509182 ], [ -119.4398134853, 48.7045718994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.2883683977 ], [ -122.1779414139, 47.2881307235 ], [ -122.1548282244, 47.2749677214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9500747094, 47.8613131638 ], [ -119.930668758, 47.8631043834 ], [ -119.9204424478, 47.8725821754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3241499511, 46.9733140337 ], [ -117.3499111171, 46.9874191495 ], [ -117.354064457, 47.0058824451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.3964616362, 48.6672895858 ], [ -117.3713854649, 48.6388347877 ], [ -117.3629222732, 48.6033481158 ], [ -117.3526555573, 48.5904367859 ], [ -117.3546444992, 48.5669664902 ], [ -117.3455588826, 48.5553675301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510483527, 47.7829431864 ], [ -122.3487077695, 47.7814262958 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.3333178275 ], [ -118.69367346, 47.3333652583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0476765238, 47.7333586658 ], [ -117.0419553671, 47.7358000914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654432539, 46.8668033464 ], [ -122.2654507751, 46.8691413663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0536764297, 47.3579952591 ], [ -122.0435504851, 47.3579738218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7096706618, 47.4632751617 ], [ -121.696592014, 47.4467696564 ], [ -121.6749565537, 47.443251501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.7323152241 ], [ -122.6370754284, 47.7334671319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1250572733, 47.4302399209 ], [ -123.1403335938, 47.4070557775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7624088379, 47.1468189921 ], [ -119.7380298017, 47.1620255285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0239885328, 47.836037193 ], [ -120.0148836023, 47.8388580147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3642787688, 47.8215067044 ], [ -122.3617083091, 47.8214854076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.6441332225 ], [ -122.3678919314, 48.6545170814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9809250496, 47.2078375727 ], [ -120.9825252207, 47.2092344825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738387769, 45.6325598997 ], [ -122.6770752412, 45.6327721391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8110700669, 46.9732623777 ], [ -123.8132785951, 46.9750588263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9356420479, 47.5224107728 ], [ -121.9034935566, 47.5065417758 ], [ -121.8899669956, 47.507262303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1693615258, 46.2688128518 ], [ -118.1599270282, 46.2701832514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.3612124716 ], [ -120.1178922765, 48.3599953038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1794448564, 47.6657680173 ], [ -117.1433040389, 47.6655064295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.5270485575 ], [ -122.6680239887, 47.5318789785 ], [ -122.6620910392, 47.5392820916 ], [ -122.6508855836, 47.5374447335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8910176347, 46.421545267 ], [ -122.8889879118, 46.4359167363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2986045804, 47.2906745073 ], [ -122.2844861848, 47.2982208758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0654021951, 46.5056331844 ], [ -118.109757182, 46.5129212108 ], [ -118.1404188433, 46.5276658723 ], [ -118.1547520035, 46.5394792517 ], [ -118.1780336772, 46.5472938895 ], [ -118.1787324832, 46.5582109589 ], [ -118.2175509794, 46.5840153341 ], [ -118.2223022809, 46.5981111151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7226222255, 45.9280008842 ], [ -122.7255915614, 45.9205289409 ], [ -122.7300920583, 45.9194293595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3331696319, 46.3769677074 ], [ -120.3597576147, 46.3905484679 ], [ -120.3933744977, 46.4150549766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.9060034469, 47.0215459655 ], [ -122.8983905827, 47.0254310319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6251575619, 46.6007463777 ], [ -123.6187441805, 46.5926082182 ], [ -123.6185028529, 46.5642568928 ], [ -123.6111780751, 46.555555809 ], [ -123.6035760875, 46.5548361522 ], [ -123.5879273803, 46.5630859685 ], [ -123.5746576675, 46.5626246259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6752481496, 47.5885745711 ], [ -120.67150803, 47.5902637122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8891124761, 46.5836691379 ], [ -122.8857507292, 46.5838092047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7787592741, 48.9171693044 ], [ -117.7772882632, 48.9177594411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9615435138, 47.60154051 ], [ -121.9532472828, 47.5883720957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1147445638, 47.9546186275 ], [ -122.1063789003, 47.9520311616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7293771219, 46.6866295208 ], [ -123.7300519299, 46.6888584117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5176792513, 46.6312271302 ], [ -120.5135770418, 46.6284896582 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1825112217, 46.7290233594 ], [ -117.1800952459, 46.7289180943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3051164258, 47.5266969435 ], [ -120.2930920819, 47.5434095413 ], [ -120.262078237, 47.5688721141 ], [ -120.2491764405, 47.5869624313 ], [ -120.2392421914, 47.6211257043 ], [ -120.2414203985, 47.6309835125 ], [ -120.2282667897, 47.6502596506 ], [ -120.2245455295, 47.6632648417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.5712733617 ], [ -121.8880335642, 47.567584502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3792847178, 48.2409791825 ], [ -122.3706721348, 48.2410706967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0858231048, 46.1966150682 ], [ -119.0933468628, 46.1991336316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1525821693, 47.8602012466 ], [ -120.114481517, 47.8477254195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9716062284, 46.5097445742 ], [ -117.977840654, 46.5125790079 ], [ -118.0295588988, 46.5029503931 ], [ -118.050008143, 46.5072926137 ], [ -118.0654021951, 46.5056331844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6399785669, 47.7561660923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5947129537, 47.504905792 ], [ -122.5927942323, 47.5049278803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0528218155, 47.1410552733 ], [ -122.036341396, 47.1564220776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2043379911, 46.7058457651 ], [ -117.2035165481, 46.708001321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.9428804513 ], [ -117.4815523866, 47.9470052096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1413008619, 47.4050125018 ], [ -123.1477743844, 47.3845206777 ], [ -123.159376622, 47.3704053086 ], [ -123.1611162657, 47.3406418157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5551539066, 48.3113332029 ], [ -121.5543923163, 48.3214625286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8191660399, 48.3201502053 ], [ -117.8266708398, 48.3271469455 ], [ -117.8339867358, 48.3531223429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3298290597, 47.7041346347 ], [ -122.3299521063, 47.7048820072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1548282244, 47.2749677214 ], [ -122.1526290082, 47.2744486003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8383635311, 47.4109223756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854821185, 47.9460570961 ], [ -124.3854576502, 47.9480859363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1611162657, 47.3406418157 ], [ -123.1613235363, 47.333867098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8605402927, 47.4233280775 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0279928055, 47.3596803479 ], [ -122.0209265407, 47.3613941171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3752602576, 46.1297165624 ], [ -118.3726222715, 46.147436197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525923868, 45.6672693746 ], [ -122.5525552477, 45.6778313417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1371263893, 46.2216194455 ], [ -119.134005824, 46.2288412929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3482490253, 48.4942122629 ], [ -122.3773305642, 48.5155613349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5095189303, 45.8498089062 ], [ -121.5108648914, 45.8655058663 ], [ -121.5212328319, 45.8847480557 ], [ -121.4996741979, 45.915317054 ], [ -121.489450713, 45.9608115296 ], [ -121.4935352823, 45.9684352892 ], [ -121.5252103086, 45.9957998151 ], [ -121.5337335651, 45.9984030688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7944730895, 48.0983151568 ], [ -119.7901966083, 48.1001446551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.4457098369 ], [ -122.5823712081, 48.4544018047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7996236578, 48.0504853323 ], [ -122.8155297756, 48.0684125491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6641643838, 45.6564855831 ], [ -122.6669203097, 45.6632919305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.3341920495, 47.5902797808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454920241, 47.7526354194 ], [ -122.345920634, 47.7708341637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6738118915, 48.6504316995 ], [ -118.6706352632, 48.6541388326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2287970334, 46.322331888 ], [ -120.1173782267, 46.2487258708 ], [ -120.0419262876, 46.2219914931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843966097, 46.5334326776 ], [ -118.5651606624, 46.537428166 ], [ -118.534825247, 46.5721567274 ], [ -118.5611540342, 46.6273261384 ], [ -118.5568485792, 46.6355163281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2464336415, 46.0556053087 ], [ -122.2456091349, 46.0556807198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2628122677, 48.9927495948 ], [ -122.2650050712, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.4839534054, 46.7954711602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.4967354264 ], [ -122.2527825057, 48.5028862443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0562083367, 48.7288096268 ], [ -121.0248123581, 48.7241331 ], [ -120.9683186319, 48.7052249613 ], [ -120.9191199125, 48.7058888906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7880909112, 46.967896691 ], [ -123.801005869, 46.9715394508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126265866, 48.4934511275 ], [ -122.6128336455, 48.4963987197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6377513794, 48.0630093485 ], [ -117.6367704982, 48.0627193371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9545771246, 48.0754505177 ], [ -123.9167844502, 48.067797845 ], [ -123.8588524092, 48.0494599267 ], [ -123.8267789051, 48.0522912919 ], [ -123.8076778624, 48.0488636487 ], [ -123.7799058231, 48.0601192625 ], [ -123.7697626403, 48.0758388116 ], [ -123.7358376193, 48.0813231124 ], [ -123.7306682808, 48.0861363728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.6483088559 ], [ -122.5794120249, 45.6676715094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3759701159, 47.2469906191 ], [ -122.3730388085, 47.247348751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.0861911278 ], [ -119.8628433861, 47.0896867872 ], [ -119.8540034289, 47.093700135 ], [ -119.8535479607, 47.1032529839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0803644861, 46.7452804885 ], [ -124.0824521881, 46.7544029188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0609392727, 46.1762466146 ], [ -119.0745599425, 46.1865269366 ], [ -119.077331005, 46.1940733709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.4305793587 ], [ -122.8763595467, 47.4318329878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.4968769556, 47.7970409839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1688952325, 47.7523661354 ], [ -122.1611915713, 47.7452096371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5666738127, 47.2998586553 ], [ -119.561131671, 47.3075520766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1445158196, 48.2276178924 ], [ -117.1147080098, 48.2225207152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929937518, 47.1566288415 ], [ -122.2940695704, 47.1604934513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2714942577, 47.3774662501 ], [ -122.24684628, 47.3779642912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617016336, 45.7795054863 ], [ -122.6565486135, 45.7796107255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3949918933, 47.6575846328 ], [ -117.3965543236, 47.6618427629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2016705042, 47.7214958149 ], [ -120.1970669834, 47.7355209682 ], [ -120.1884165074, 47.7450718323 ], [ -120.1489577681, 47.7627227749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2838095032, 47.7600084566 ], [ -122.2805998666, 47.756565837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4004187802, 46.4742779497 ], [ -120.3873706387, 46.4670041855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7547734432, 46.6823312222 ], [ -123.7457821436, 46.6828253187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646472962, 47.5079585085 ], [ -117.5646334439, 47.5135895893 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.1034506094 ], [ -119.5588936409, 47.1038824628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3147914885, 47.7977880413 ], [ -122.3109574982, 47.8036768463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0162894195, 46.1394401375 ], [ -119.0136095347, 46.1478903111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7975638125, 46.2245562959 ], [ -119.7793761782, 46.2212051746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485845591, 47.8886416262 ], [ -122.144284589, 47.8911732556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2576809614, 47.4624296733 ], [ -122.2538113908, 47.4617511143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511977801, 48.3765935554 ], [ -122.6469511117, 48.3911357861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899748205, 47.6377977945 ], [ -117.4834194345, 47.6349163355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694634271, 48.2806289911 ], [ -122.6686935469, 48.2839223474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2883400594, 47.3993847963 ], [ -120.2863393433, 47.3982856502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.7338069071 ], [ -122.2965384457, 47.7337970814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.1429892693 ], [ -123.0963235193, 47.1342723946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.9813954636, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0728624554, 48.6070846621 ], [ -118.0754032266, 48.6062200924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455562905, 46.4072575118 ], [ -117.0455667913, 46.4144864199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.4199328277 ], [ -117.0418858195, 46.4199930726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7811517034, 48.1041817295 ], [ -119.7756848413, 48.1086426578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9203722024, 48.5548430412 ], [ -117.9251619366, 48.557993926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8974973541, 46.4793963978 ], [ -122.881749481, 46.4752593869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3632090748, 47.2405896685 ], [ -122.3444902745, 47.2410622326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1502609571, 46.1420400459 ], [ -118.1326510755, 46.1574552913 ], [ -118.1306968579, 46.1654154745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.2057419837 ], [ -122.909567729, 46.2331832879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.8868591474 ], [ -124.1042307641, 46.8878717782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.9195242197 ], [ -119.4341632669, 48.9323868359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3857593028, 47.9408546394 ], [ -124.3855106235, 47.9441729563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9380954914, 46.1457035998 ], [ -118.9357957557, 46.1384811775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5615375286, 47.710001753 ], [ -122.5707855947, 47.7139681507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3232041563, 47.5929897168 ], [ -122.3156584943, 47.5948454186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764136146, 46.7968582865 ], [ -119.1766968441, 46.8046382853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3643429172, 46.8885261173 ], [ -117.3642482346, 46.8895898765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2731333424, 47.5407820544 ], [ -124.287584452, 47.5365770819 ], [ -124.3198478847, 47.5165241792 ], [ -124.3334309825, 47.5191415285 ], [ -124.3376247694, 47.5271647394 ], [ -124.3334713323, 47.5382230035 ], [ -124.3564280609, 47.5540059408 ], [ -124.3744668125, 47.6129385181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.4652569769 ], [ -122.2191991764, 47.4676990124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6873276483, 45.815867042 ], [ -122.6854710172, 45.8159186028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282072982, 47.3535748936 ], [ -122.1105727106, 47.3639441595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.0565323603, 47.1958256105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5792543891, 45.780262944 ], [ -122.5632686852, 45.7805094295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3446807868, 47.6717289639 ], [ -117.3419659665, 47.6723961843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.8505614694, 46.6606108889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295211986, 48.3202909794 ], [ -122.6286423009, 48.325690041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5798641373, 47.8122645365 ], [ -121.570503455, 47.8132799743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4600900511, 47.1585657847 ], [ -122.4440605013, 47.158268456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931688795, 47.8504172566 ], [ -122.2875761547, 47.8581507051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1895522829, 47.9817536396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526476236, 47.8049830492 ], [ -122.1434306209, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9067208674, 46.2922496265 ], [ -122.9144562174, 46.3202165297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1949845235, 47.5021417776 ], [ -122.1871847394, 47.5018573254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1299980522, 48.2057570202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8714099605, 47.5666180383 ], [ -121.8655443332, 47.5625960148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6823651856, 46.6537194229 ], [ -123.6623988407, 46.6469519661 ], [ -123.6542600354, 46.633500722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002077406, 47.1262326925 ], [ -123.102377983, 47.1126716861 ], [ -123.09520306, 47.1066616235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4851566888, 48.9933456178 ], [ -122.48508877, 49.0005739703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4746332727, 47.3939164723 ], [ -121.4469739493, 47.3982243324 ], [ -121.4312142261, 47.4244614737 ], [ -121.4223417195, 47.4282688783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266798027, 45.6184887446 ], [ -122.5989397766, 45.6129740168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.8116126602 ], [ -122.1921188204, 47.8129694111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001156286, 47.9185854039 ], [ -122.3001742723, 47.9219962025 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.6304436393, 47.5650259077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111371057, 47.6944973222 ], [ -117.4111387601, 47.6953642106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6392561156, 47.8677305236 ], [ -122.6090544172, 47.8521256366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495866356, 47.9814746809 ], [ -117.3496454526, 48.0068914762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.7437352957, 48.0253259826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1255239767, 47.4635158088 ], [ -122.1376219385, 47.4652954001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4174728874, 48.7462831433 ], [ -117.4146881423, 48.7566267665 ], [ -117.402437726, 48.7676671259 ], [ -117.4076382091, 48.7764590477 ], [ -117.4220851353, 48.7827080731 ], [ -117.4232350107, 48.7883712057 ], [ -117.3946339612, 48.8268190888 ], [ -117.3880478769, 48.8570115349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.6963748835 ], [ -120.8245348679, 45.6980196603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7238512322, 47.772533091 ], [ -118.7225935085, 47.7708524695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.8293869076, 47.1408764113 ], [ -117.8448910097, 47.1542913283 ], [ -117.8710413696, 47.1578138772 ], [ -117.8713875973, 47.1878396227 ], [ -117.8903636196, 47.2092221227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7936594895, 48.0437626987 ], [ -122.7996236578, 48.0504853323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.4915532327 ], [ -122.9103335991, 46.482928058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4960377839, 46.8670870363 ], [ -119.4753373648, 46.862537997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347023936, 47.5375284994 ], [ -122.3347269484, 47.5378318312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0560803608, 46.3250305409 ], [ -117.0639679546, 46.3288210403 ], [ -117.0533201894, 46.3352565084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9698911237, 46.4019382554 ], [ -122.9615212742, 46.401988221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455667913, 46.4144864199 ], [ -117.0451921636, 46.416527455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393652388, 47.5748709959 ], [ -122.3363467181, 47.5916540334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7062185932, 46.8779876268 ], [ -123.7095800286, 46.8824221446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.4651180339, 46.2822112261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1823923289, 46.7153301884 ], [ -117.184576053, 46.7209092456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3613918472, 46.5494638956 ], [ -120.335129764, 46.5487710681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.8810185511 ], [ -117.3643429172, 46.8885261173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7695997378, 46.9546351666 ], [ -123.7703914682, 46.9553073045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024622981, 47.0953255419 ], [ -122.1877595188, 47.0819384727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1986940231, 47.2401706315 ], [ -123.1912428882, 47.2429358128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0976103078, 45.8260671911 ], [ -121.0775669185, 45.8369135892 ], [ -121.0642894236, 45.8376125847 ], [ -121.0608960245, 45.8431779335 ], [ -121.0440024936, 45.8433714611 ], [ -121.042019508, 45.8485283308 ], [ -121.0374313104, 45.8410607376 ], [ -121.0154166753, 45.8413818742 ], [ -121.0043878428, 45.8462946752 ], [ -121.0038482918, 45.8572379269 ], [ -120.9972196495, 45.8575744394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2339586384, 48.510507948 ], [ -122.2323979204, 48.5104945464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174730359, 47.3653428749 ], [ -122.6177931336, 47.3660514733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4964887302, 47.7981317254 ], [ -122.4975542478, 47.7988312911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8236282381, 45.6963748835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304207056, 46.6430874404 ], [ -120.5304211479, 46.6486735819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370754284, 47.7334671319 ], [ -122.6377776889, 47.7367740872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873059636, 46.0008733795 ], [ -118.3895048351, 46.0116896783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.1863524437, 46.8303419645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5710608079, 46.9700238316 ], [ -118.5888210566, 46.9701558628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8131962319, 47.6126343481 ], [ -119.755706339, 47.6121641933 ], [ -119.7378232275, 47.6051578842 ], [ -119.7207218172, 47.5911027894 ], [ -119.6946295812, 47.5841828284 ], [ -119.6697674526, 47.5997916763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2430570827, 47.378057579 ], [ -122.2373624055, 47.3779147052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3617083091, 47.8214854076 ], [ -122.3518259847, 47.821404826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1932937046, 47.6371487563 ], [ -122.1881596197, 47.6322979443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3155342499, 47.1016304023 ], [ -119.312911608, 47.1034589548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1601671048, 47.6539518845 ], [ -118.1576684527, 47.6540467209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.9706138586 ], [ -123.8023146967, 46.9715050749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714795546, 47.648195998 ], [ -120.0714484595, 47.6491744077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3470868548, 46.0613934646 ], [ -118.3484813064, 46.0630851666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3291013409, 47.7873237723 ], [ -117.303824325, 47.7875196843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.1976527666, 47.5284479262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4322202216, 47.2386425935 ], [ -122.4330740998, 47.2403048183 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984506931, 47.2150788727 ], [ -123.0827870167, 47.2167787857 ], [ -123.0541037369, 47.2368676818 ], [ -123.0463421603, 47.2472806543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0542260413, 47.6939743273 ], [ -117.0483767272, 47.6956888561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9169607763, 46.7378528943 ], [ -119.9181387188, 46.7453195258 ], [ -119.9303833583, 46.7566116646 ], [ -119.9250609686, 46.7992595246 ], [ -119.9194676679, 46.8134191374 ], [ -119.9295645603, 46.8257316077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422256352, 46.9696837609 ], [ -119.0406007171, 46.9696767228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9594136168, 46.8965445916 ], [ -122.9504462358, 46.8962553703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5901063759, 48.4885682085 ], [ -121.5827190303, 48.4888446329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0740512207, 47.3581005334 ], [ -122.056859545, 47.3579998249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1552091714, 45.6491568269 ], [ -121.1043883879, 45.6485914606 ], [ -121.0817415229, 45.6584905199 ], [ -121.0373692153, 45.6641740956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.3040619068 ], [ -122.5141387154, 47.305285326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947521893, 47.3943368889 ], [ -122.2966747787, 47.399436909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3314940653, 48.4135964059 ], [ -122.3351426952, 48.421566968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0312749766, 46.6723519543 ], [ -120.9751255601, 46.6711716406 ], [ -120.9539742197, 46.6836791847 ], [ -120.9423362381, 46.6834592118 ], [ -120.9236598936, 46.6901898346 ], [ -120.919967452, 46.6953639912 ], [ -120.9079763288, 46.6939358446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8793107352, 46.9778455486 ], [ -123.8823509757, 46.9792200862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4755009726, 47.7154054601 ], [ -117.4775864514, 47.7155036924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9615212742, 46.401988221 ], [ -122.9490131702, 46.4020849219 ], [ -122.9279330238, 46.4116100688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6701869958, 45.7753317642 ], [ -122.6742471673, 45.7884633898 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5695221755, 47.2976027952 ], [ -122.5728475744, 47.3013604296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6656137967, 46.8138014312 ], [ -117.6550649229, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207228659, 48.9128299651 ], [ -122.3206641784, 48.920195997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9183274849, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.0530641068 ], [ -122.2947627706, 47.0592610847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0517810734, 46.3795878122 ], [ -117.0448176781, 46.3941409901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1825622133, 47.6861532736 ], [ -122.1796695496, 47.6992447918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216151872, 47.6765956856 ], [ -122.1216193183, 47.6754410608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006964497, 46.8856559346 ], [ -122.3004841678, 46.8873929159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5192085128, 46.0499502566 ], [ -118.480204124, 46.0490486428 ], [ -118.4380859373, 46.0577292113 ], [ -118.4150633113, 46.0706784483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410552917, 48.4313110136 ], [ -122.3410260439, 48.4420756317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2536978763, 46.7208346039 ], [ -117.2226311076, 46.7258475583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3636245159, 46.8909558494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1790908365, 48.0404147216 ], [ -122.1778352269, 48.046828316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5739759223, 47.6429386574 ], [ -117.5662058166, 47.642947503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.9142967877, 47.0151102563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1915989356, 48.0125732298 ], [ -122.190360403, 48.0112588295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4949520588, 45.7249743594 ], [ -121.4899695301, 45.724018802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3750456098, 46.5493985238 ], [ -120.3613918472, 46.5494638956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6224996657, 46.0271360717 ], [ -120.5755323972, 46.0394288913 ], [ -120.5347510985, 46.1239501497 ], [ -120.5155304936, 46.1430933666 ], [ -120.5037936831, 46.1723589628 ], [ -120.4878548002, 46.1971162847 ], [ -120.4797089864, 46.2036499179 ], [ -120.4298698764, 46.2228395437 ], [ -120.419279593, 46.2335193656 ], [ -120.4176648406, 46.2468890125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3460982766, 46.053273733 ], [ -118.3463687355, 46.0605179899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2917105696, 46.5347459334 ], [ -120.2504477979, 46.5248889015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6692405052, 46.0403350228 ], [ -118.6587450787, 46.0394084907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3384306266, 47.7875972066 ], [ -117.3291013409, 47.7873237723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6960888319, 47.5248350158 ], [ -122.6971089618, 47.524879573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.2842547986 ], [ -122.3028757982, 47.3000530138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1811585184, 47.3649772586 ], [ -122.1761180844, 47.3631667878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8090468875, 46.9772106863 ], [ -123.8132040823, 46.9766495807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7307102829, 46.6823557798 ], [ -123.7094384198, 46.6776841454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2447763261, 47.3180985045 ], [ -122.2446858124, 47.3297219858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3037605642, 47.5106094253 ], [ -122.3124883705, 47.5167348211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0400651005, 47.2403316548 ], [ -117.0398725383, 47.2402750621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4627470202, 47.2159591708 ], [ -122.4615526157, 47.2287362725 ], [ -122.4466273692, 47.2301579669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3248627173, 47.6754104751 ], [ -117.2827858737, 47.6810526384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4189331528, 48.1130399131 ], [ -123.4171863107, 48.1123263385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245604481, 47.4752697078 ], [ -122.642332524, 47.4978831795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3035547655, 47.410929097 ], [ -120.3041069002, 47.4122978378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0453814357, 48.1774974633 ], [ -117.0441181005, 48.1780553435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3236068716, 47.7340600888 ], [ -122.3127959962, 47.7339766531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872965039, 48.1444384712 ], [ -122.1900214152, 48.1598254833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.6674773757 ], [ -117.3594319704, 47.6686111382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5170315735, 46.5330350165 ], [ -122.4853465728, 46.5342767318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1954842634, 48.8206495581 ], [ -122.1716283618, 48.8323550601 ], [ -122.155341196, 48.853030999 ], [ -122.1523151666, 48.8665218931 ], [ -122.1570234366, 48.8806206725 ], [ -122.1433236191, 48.9047123737 ], [ -122.1380018087, 48.9060853167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1545590892, 47.0396761869 ], [ -117.1608612896, 47.0509546305 ], [ -117.146111612, 47.067878035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8765100174, 46.5439285548 ], [ -122.8764947699, 46.5550803084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9295645603, 46.8257316077 ], [ -119.9387815067, 46.8353151904 ], [ -119.9378634013, 46.8432344905 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0431258874, 48.3481890608 ], [ -120.0362435031, 48.3607879462 ], [ -119.9809763065, 48.371736888 ], [ -119.9321337254, 48.3695684578 ], [ -119.9141758591, 48.3742424396 ], [ -119.8984187896, 48.3889279841 ], [ -119.8882430796, 48.3877996604 ], [ -119.8648010839, 48.3969338528 ], [ -119.8235449654, 48.3808931536 ], [ -119.784579131, 48.3798347197 ], [ -119.7497426686, 48.3660865683 ], [ -119.7287666335, 48.3671066996 ], [ -119.7065630171, 48.3627406411 ], [ -119.6993334105, 48.3467648995 ], [ -119.6680924655, 48.3230367393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4284944729, 47.078773705 ], [ -122.4350543494, 47.0839448876 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2689243165, 47.0679844678 ], [ -123.2525189659, 47.0789963959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1832082778, 47.2443206311 ], [ -121.1768999971, 47.2389448117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0378003229, 46.5491873736 ], [ -124.0373317269, 46.5672415916 ], [ -124.0265521556, 46.58429985 ], [ -124.0397283027, 46.5978816985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0440853494, 47.0525732949 ], [ -124.0505531099, 47.0566292363 ], [ -124.1082174747, 47.0560237504 ], [ -124.1531482322, 47.0433503074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5510696792, 47.5051569339 ], [ -122.5298400174, 47.5049019302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7212000555, 48.2626191576 ], [ -119.7049060391, 48.2782037899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472598635, 45.7589462816 ], [ -122.5473330202, 45.7703035237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3335812302, 48.341165856 ], [ -122.3326182621, 48.3411594036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2141719319, 47.6561755599 ], [ -120.1924709331, 47.6838275242 ], [ -120.1902327501, 47.6940236402 ], [ -120.1937187948, 47.6998534485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209191677, 48.9438094983 ], [ -122.3202363813, 48.949281296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799369192, 47.8125762494 ], [ -122.1754150379, 47.811547043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9591582091, 46.3481677178 ], [ -123.9555447472, 46.3504543 ], [ -123.949867913, 46.3732697997 ], [ -123.9531883892, 46.3784215418 ], [ -123.9495211568, 46.3843983473 ], [ -123.951959767, 46.4025025126 ], [ -123.938858253, 46.4032384098 ], [ -123.9346445705, 46.4158252959 ], [ -123.9242989372, 46.4190929551 ], [ -123.9160104721, 46.4297961412 ], [ -123.9058517568, 46.4293200912 ], [ -123.9003658782, 46.4347974243 ], [ -123.8906810599, 46.4350146931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9279330238, 46.4116100688 ], [ -122.9121178886, 46.4105521332 ], [ -122.8916600156, 46.4181629111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1801941156, 46.3452788522 ], [ -120.1791144823, 46.3455191654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9915686193, 47.2044466268 ], [ -121.9910780054, 47.2049216282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1333443494, 46.8263220149 ], [ -119.1331872975, 46.8409896084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282861482, 46.5773297724 ], [ -119.7248439418, 46.5683166901 ], [ -119.6902811291, 46.5463805823 ], [ -119.6790929472, 46.5263482722 ], [ -119.6634202728, 46.5132991887 ], [ -119.6166058605, 46.5023813913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.2826226664 ], [ -122.3178488457, 47.2898411383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2752765933, 47.1325238534 ], [ -119.2740001981, 47.1335512955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3214916682, 47.561289773 ], [ -122.320109391, 47.5692199392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1587898641, 46.2094963127 ], [ -119.1588364929, 46.2122195073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2804789478, 47.865772013 ], [ -122.2789804626, 47.867386825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2029385026, 46.1652739565 ], [ -119.1975722229, 46.1692293994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111387601, 47.6953642106 ], [ -117.4111538627, 47.7133751719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4727205134, 46.9377338042 ], [ -122.4716597285, 46.9377123473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6754402986, 48.8651910486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1379808146, 48.9172113904 ], [ -122.1432040179, 48.9173881457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3961715735, 47.919272726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9799410614, 46.666273563 ], [ -122.9784909888, 46.6723810975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2522187666, 47.3034827803 ], [ -122.2536584722, 47.3012935761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.3579998249 ], [ -122.0536764297, 47.3579952591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3533511027, 47.7851161679 ], [ -122.3510483527, 47.7829431864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0689280259, 47.7241616056 ], [ -117.0476765238, 47.7333586658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9062715578, 46.9810823154 ], [ -123.9083860539, 46.9811017411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5440284191, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.2938519207, 47.2509469514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0395446219, 47.033662887 ], [ -122.0436590305, 47.0516887209 ], [ -122.0410310566, 47.0734128335 ], [ -122.0474726563, 47.0804529811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4122698552, 46.7012162608 ], [ -118.3441820755, 46.7361724356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9493878602, 47.6583110212 ], [ -117.9379417422, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5624136586, 45.6062101725 ], [ -122.5274842124, 45.5979967225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0548732503, 46.3323172772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940652218, 47.0777178732 ], [ -122.2939240773, 47.0800385113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8137272987, 47.9229521483 ], [ -122.7947100987, 47.9175473278 ], [ -122.7581000772, 47.8945415035 ], [ -122.7396338722, 47.8911395035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446210177, 47.7050638875 ], [ -122.3447339385, 47.7065541178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649931364, 46.8746110638 ], [ -117.3650011171, 46.8751003196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5521517487, 45.68208727 ], [ -122.5318979045, 45.6826849971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323106527, 46.3245338278 ], [ -122.7288442607, 46.3273755528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0340311094, 48.9278686212 ], [ -122.0227559288, 48.9270850303 ], [ -122.0075390683, 48.9193687906 ], [ -121.9849997675, 48.9008367068 ], [ -121.9450533075, 48.8896410913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7780253279, 48.1083589075 ], [ -122.7728740575, 48.109600754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3455787056, 47.7806814889 ], [ -122.3446909131, 47.7817536234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2490284682, 47.4830589416 ], [ -122.2460880266, 47.4822140792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8868033166, 47.5690968006 ], [ -121.887427285, 47.5718451267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6579787417, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8853301763, 47.9139270916 ], [ -122.8767342334, 47.9058643793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3420450241, 47.2135776972 ], [ -122.3138098088, 47.2044681618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3320582967, 47.6264826812 ], [ -119.2978771665, 47.6166084807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.5873771825 ], [ -117.4117450085, 47.6019773285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3038736838, 46.4140405564 ], [ -120.2842524512, 46.4056644379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0470850116, 47.1062792018 ], [ -122.0554197251, 47.112433828 ], [ -122.0490317008, 47.1302879626 ], [ -122.0557206222, 47.1388187332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9908494983, 47.8657174136 ], [ -121.9791204594, 47.8613218296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3064146166, 48.2617164172 ], [ -124.2647934958, 48.2531691393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8412727199, 48.8719526263 ], [ -117.827799169, 48.8882487868 ], [ -117.8136926167, 48.8971177199 ], [ -117.8009917503, 48.899088371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1836148532, 48.0518643974 ], [ -122.1822932343, 48.0518738744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.5650153276 ], [ -122.6269686691, 47.5636496207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114600933, 45.7166372424 ], [ -120.4769148344, 45.7027025383 ], [ -120.4083086691, 45.705944172 ], [ -120.3209109655, 45.7192547167 ], [ -120.2633497092, 45.7339077039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5853439854, 48.3602159749 ], [ -119.5835757391, 48.3616001759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2084243459, 47.9195131157 ], [ -122.2074382827, 47.9188560677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9775744375, 48.130752286 ], [ -118.9762561497, 48.135096529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.6483371933 ], [ -119.1237574553, 47.6846698514 ], [ -118.9976415411, 47.6844844298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169944864, 47.1654459949 ], [ -120.8108589679, 47.1638387052 ], [ -120.8043961298, 47.1513524322 ], [ -120.7835732851, 47.1325177974 ], [ -120.7268634764, 47.1248477284 ], [ -120.7165569761, 47.1159003737 ], [ -120.7145912511, 47.1089655258 ], [ -120.691960834, 47.0992611593 ], [ -120.6235085123, 47.0432551254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1170200605, 48.2084489517 ], [ -122.1043084158, 48.222137855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6399303545, 47.813732472 ], [ -119.6380760967, 47.8121912953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4842297169, 47.3934848684 ], [ -119.4973048928, 47.4245366123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1069288247, 48.0063280675 ], [ -122.1080928359, 48.0132540479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.4720497684 ], [ -122.2159983682, 47.4737702544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3419659665, 47.6723961843 ], [ -117.3283026635, 47.6754413596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7132594935, 47.5239714664 ], [ -122.7066290132, 47.5247891631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1615462137, 48.7118489675 ], [ -121.1354894847, 48.7101414512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9535543166, 46.5073208118 ], [ -121.9542721665, 46.5167411946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9790026711, 46.3316725974 ], [ -119.9790994297, 46.3654277374 ], [ -119.970594385, 46.3753130226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714484595, 47.6491744077 ], [ -120.0634672167, 47.6491812786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9346988288, 47.1921997068 ], [ -121.9113034403, 47.1660060551 ], [ -121.9032240437, 47.1642334315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3627410114, 46.0415078207 ], [ -118.3464591984, 46.0510569216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0072302557, 47.1840617967 ], [ -120.9658761326, 47.1936165169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.6777404653 ], [ -123.7547734432, 46.6823312222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2090874074, 46.5114897943 ], [ -122.1827981053, 46.5094011436 ], [ -122.1563756705, 46.5189965757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127959962, 47.7339766531 ], [ -122.3100733649, 47.7339389204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.1422545472 ], [ -119.1719528856, 46.1538172927 ], [ -119.1495477506, 46.1541704221 ], [ -119.1242140583, 46.1493404787 ], [ -119.0668149366, 46.1268888879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2313987649, 47.3961663604 ], [ -122.2214808618, 47.4035987998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405321497, 48.0270703271 ], [ -122.7350638939, 48.0308244206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1515895973, 48.9460909964 ], [ -122.1536154484, 48.9498823783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059518963, 45.815636231 ], [ -122.7026610905, 45.8155477016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.7875196843 ], [ -117.2582087731, 47.7876105753 ], [ -117.2290446727, 47.8020950345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.4370383266 ], [ -122.60172507, 48.4418166919 ], [ -122.602890707, 48.4457098369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5414842419, 48.011987346 ], [ -122.5455047346, 48.0151911959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1304728709, 47.2420790028 ], [ -117.132009721, 47.2741237154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4998793264, 48.7103012557 ], [ -122.5020729469, 48.7159651259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1676525064, 46.7262385037 ], [ -117.1648061028, 46.7232723565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.3249495062, 47.760975014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179559351, 48.0780690922 ], [ -122.8150974014, 48.097207949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0197980383, 47.1768730848 ], [ -122.016253916, 47.1784207654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4266731536, 45.5798853327 ], [ -122.4170054578, 45.5751977401 ], [ -122.3962982687, 45.5785567586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4017832625, 47.9345882869 ], [ -124.3857593028, 47.9408546394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1925948411, 47.4136830468 ], [ -123.2179596822, 47.4327965248 ], [ -123.2105622712, 47.4554072848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5867415871, 47.0023957095 ], [ -120.5555025637, 46.9769598385 ], [ -120.5309634911, 46.9718013391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.7754696717 ], [ -119.1764946499, 46.7820725916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443830084, 48.2398913159 ], [ -122.3303084037, 48.2396939589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6292421446, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9764083197, 47.306520851 ], [ -117.9640727762, 47.3120619457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3330101537, 46.3081349737 ], [ -120.321048285, 46.3210895826 ], [ -120.3205033055, 46.3313990906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5767646402, 47.4862221857 ], [ -117.5759657586, 47.4868903381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1646271104, 47.7572105358 ], [ -122.1653460578, 47.754516793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0581786213, 47.8560176572 ], [ -120.0540259825, 47.8553267629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5294843284, 47.134748182 ], [ -122.5173391489, 47.1402583462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7774669653, 47.8678385583 ], [ -121.7488390649, 47.8671786834 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1680910014, 46.1910275512 ], [ -123.1527181306, 46.1932619624 ], [ -123.1210814025, 46.1900650322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2805998666, 47.756565837 ], [ -122.2764080485, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161178049, 47.7897600047 ], [ -122.3147914885, 47.7977880413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9454549934, 47.2361778754 ], [ -123.9311452495, 47.2437964738 ], [ -123.9182891747, 47.2672889111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.3028065567 ], [ -122.2443021409, 47.3027122504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.3206709228, 47.4319777068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7044893922, 48.8921934089 ], [ -122.7263837289, 48.8921522797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2615653431, 47.8313484071 ], [ -122.263270535, 47.832397759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.2729982561, 48.1220493345 ], [ -117.3034353999, 48.1517951643 ], [ -117.3014134068, 48.1726073855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4200144031, 48.1146846853 ], [ -123.4272112907, 48.1176420477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.8551455389 ], [ -122.4859559588, 48.8624202184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249495062, 47.760975014 ], [ -122.3218213184, 47.7696559418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981579128, 47.312895011 ], [ -122.2939939147, 47.3262355559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7130750207, 47.7604898372 ], [ -118.710341624, 47.7597380108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3725290396, 48.86403205 ], [ -117.3690791376, 48.8628154536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1105727106, 47.3639441595 ], [ -122.0987142773, 47.3694924181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.7424904094 ], [ -117.1724700156, 46.747419563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2307337316, 47.8178356076 ], [ -122.2240130735, 47.8097214635 ], [ -122.2089308735, 47.8094374485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.1671440586 ], [ -118.2328452333, 47.2083784844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6996522214, 47.5252936288 ], [ -122.7009258111, 47.5254077892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527645121, 45.6654147454 ], [ -122.5525923868, 45.6672693746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4210503145, 45.9241386589 ], [ -122.3807106015, 45.9242785728 ], [ -122.3796927801, 45.9278618295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.5255219108, 46.9585895789 ], [ -121.5323324952, 46.9469316686 ], [ -121.5310753106, 46.9309435343 ], [ -121.5357945169, 46.9156045355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9839763366, 47.4320430934 ], [ -121.9672362186, 47.4364490931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3656317125, 47.112475028 ], [ -118.3656748512, 47.1169194581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444902745, 47.2410622326 ], [ -122.335050748, 47.2440622941 ], [ -122.3298337748, 47.2573665594 ], [ -122.3081914375, 47.2842547986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5524895136, 46.6414946812 ], [ -118.5525255652, 46.6422285199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2657579644, 45.7111535352 ], [ -121.2472721676, 45.7217111035 ], [ -121.244181878, 45.7277440027 ], [ -121.2298688243, 45.729292887 ], [ -121.2314235606, 45.7372612846 ], [ -121.2216216322, 45.7415590831 ], [ -121.222903344, 45.7481715948 ], [ -121.2084891518, 45.7508996878 ], [ -121.2109028554, 45.7604785601 ], [ -121.2053953573, 45.7679900328 ], [ -121.2131840999, 45.7724150705 ], [ -121.207883874, 45.779291027 ], [ -121.2055702737, 45.7925570852 ], [ -121.1946499217, 45.795047038 ], [ -121.1698278704, 45.8122766544 ], [ -121.1531193879, 45.814953813 ], [ -121.1511457837, 45.8183340264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4029149867, 46.9715198957 ], [ -120.3533610061, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.2565740747, 46.9499582027 ], [ -120.2382852234, 46.9439637651 ], [ -120.1517837822, 46.9437951339 ], [ -120.1285297362, 46.9384099074 ], [ -120.0923317195, 46.9449475663 ], [ -120.0434710898, 46.9363097921 ], [ -119.9856684909, 46.9399239995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2878185998, 47.9245144886 ], [ -122.2845197408, 47.9244871101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3352626539, 47.4160570962 ], [ -122.335244606, 47.4239544628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487379362, 46.3397717715 ], [ -117.0487788952, 46.3406500803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0136095347, 46.1478903111 ], [ -119.0241882947, 46.1498712277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.1034589548 ], [ -119.3094973132, 47.1058411746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398468351, 47.6445327832 ], [ -117.2398564282, 47.6462120527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6604109342, 45.7097319074 ], [ -121.6267665064, 45.7104802065 ], [ -121.60448404, 45.7208746315 ], [ -121.5608783461, 45.7230552598 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0826339712, 48.3485688069 ], [ -120.0782317267, 48.3464626059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3772473125, 46.1712612786 ], [ -123.3771418088, 46.1802763744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217992709, 46.5244556466 ], [ -117.7919594302, 46.5168198788 ], [ -117.7655768761, 46.4909720703 ], [ -117.738467898, 46.4823433881 ], [ -117.7038766685, 46.4643254572 ], [ -117.6880711236, 46.4627464745 ], [ -117.6625486269, 46.4746878646 ], [ -117.6287453364, 46.4780216163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9797708505, 46.6600221281 ], [ -122.978020353, 46.6605706614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126173187, 48.5117929838 ], [ -122.6126146998, 48.512615782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348569541, 47.1194809791 ], [ -122.4344162199, 47.1475294086 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.9256460771 ], [ -122.3028100586, 47.9298175191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9102593964, 47.6591206418 ], [ -121.90705395, 47.6776154772 ], [ -121.9203962911, 47.682901991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1816312316, 48.0344874481 ], [ -122.1798921353, 48.0395761426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.8363142697 ], [ -120.7921120527, 45.8483754133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5538906727, 46.3719036566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5830787762, 48.0658416901 ], [ -123.5764716685, 48.0656101736 ], [ -123.5586292146, 48.0819562696 ], [ -123.5590674702, 48.088831529 ], [ -123.542425415, 48.0963861688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2521475758, 47.7981298006 ], [ -124.2505086155, 47.804211862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3080765164, 47.2755685609 ], [ -122.3098328416, 47.2779256038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9658681376, 47.1991869215 ], [ -121.9637319287, 47.1991468956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6596669668, 48.2863597414 ], [ -122.6578697003, 48.2871805041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5953819331, 48.34623453 ], [ -119.5910782183, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6031230684, 45.9389260974 ], [ -119.6018306923, 46.1025658531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343590195, 47.548548451 ], [ -122.3393798517, 47.5620616142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.0304443672 ], [ -122.0670005531, 48.0311344173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979507857, 46.9800944856 ], [ -122.2963449954, 47.0166678167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8467102726, 46.8590457137 ], [ -122.8283708435, 46.8574846811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7690696693, 48.1396769458 ], [ -123.7462246084, 48.1373562819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3858313632, 47.9827480539 ], [ -122.3921711474, 47.9866051994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0474726563, 47.0804529811 ], [ -122.0480328101, 47.0854558399 ], [ -122.0576029409, 47.0916817763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.3580988636 ], [ -122.1070219689, 47.3580601805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3499243544, 46.069095536 ], [ -118.3512395456, 46.0690998662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3245445805, 47.4367115543 ], [ -120.3225528424, 47.434276469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4552598905, 48.240034233 ], [ -122.4474690781, 48.2419384688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8167074126, 46.9748418645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1322464977, 48.9173156398 ], [ -122.1029841609, 48.9169970403 ], [ -122.0799094982, 48.9241796486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4469167382, 45.910167278 ], [ -122.4468006629, 45.9137020329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1130354822, 48.6245416722 ], [ -118.1227222823, 48.6274371967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9600764508, 46.9404487329 ], [ -119.9569337464, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4671998581, 47.0097954879 ], [ -117.4906995248, 47.0151488088 ], [ -117.4989078005, 47.0330331256 ], [ -117.5122620252, 47.0407236956 ], [ -117.5240910538, 47.0622032228 ], [ -117.545125112, 47.08432072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.6557377147 ], [ -122.0706839733, 47.6560836936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3334887527, 46.9374674228 ], [ -117.3351658289, 46.9428080119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565486135, 45.7796107255 ], [ -122.605320177, 45.7801298015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0098989742, 48.071628269 ], [ -121.9900538253, 48.0834098562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4841720635, 46.9380070182 ], [ -122.4727205134, 46.9377338042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.4859005831 ], [ -121.5901063759, 48.4885682085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2162633519, 47.4784706076 ], [ -122.2170772731, 47.4799087614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4036573523, 47.9700998663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2525189659, 47.0789963959 ], [ -123.2330370728, 47.0832760605 ], [ -123.2217285778, 47.0961529866 ], [ -123.169892022, 47.0993233299 ], [ -123.1370118344, 47.1061275572 ], [ -123.1327675392, 47.1108867882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2753035387, 46.5534563356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1550212915, 47.0173446802 ], [ -124.1585629313, 47.0421430903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6633194815, 45.6889511168 ], [ -122.6587268784, 45.6977308437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4421245304, 48.1073235415 ], [ -123.4409541321, 48.1081108568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.9784278916 ], [ -118.5439795491, 46.9969936414 ], [ -118.4763407681, 47.0248252936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3888808965, 46.0238641947 ], [ -118.387709362, 46.0274510129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454890434, 47.7524905174 ], [ -122.3454920241, 47.7526354194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0149147028, 48.26670449 ], [ -122.0102677154, 48.2683045733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.7277580783 ], [ -121.4875027306, 45.727786525 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938519207, 47.2509469514 ], [ -122.2947362877, 47.2575680773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3307967988, 47.6088249044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9031362266, 46.3853907412 ], [ -122.8996061797, 46.3980707203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3098328416, 47.2779256038 ], [ -122.3113887255, 47.2800166221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8960512885, 46.9809985306 ], [ -123.8970765547, 46.9810040205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244634331, 45.6433255811 ], [ -122.4176943396, 45.6411075661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6513860232, 48.5041934528 ], [ -121.6421804262, 48.4953349997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2883273553, 48.8540652293 ], [ -122.2938609707, 48.8575655792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1485141514, 47.3218092821 ], [ -123.1336820514, 47.3186667549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9858303482, 47.7426828709 ], [ -121.9856625426, 47.7451686523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6232200849, 47.4699050473 ], [ -117.6134262665, 47.471353912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155515131, 48.2809311397 ], [ -117.7179594226, 48.2854700064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2556345682, 48.8390461836 ], [ -122.2395042525, 48.8318235121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075451443, 47.7371619655 ], [ -117.5075109583, 47.7416381565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9896415159, 47.2138839771 ], [ -121.9897117864, 47.2283165519 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814936102, 47.4639104191 ], [ -122.2737587614, 47.465095805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4221853179, 48.5654425158 ], [ -122.4228327812, 48.5993312853 ], [ -122.4314758594, 48.6044132215 ], [ -122.4393550103, 48.6177939656 ], [ -122.4424111234, 48.6153877975 ], [ -122.4480779306, 48.6237425278 ], [ -122.4627144951, 48.6265007902 ], [ -122.4898137335, 48.6488973023 ], [ -122.4921519068, 48.6617064112 ], [ -122.4852398362, 48.6680694691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6314890754, 47.5049287108 ], [ -122.624429651, 47.504849437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7497223484, 45.9177650679 ], [ -122.7534494161, 45.9236451726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942188172, 47.1497279489 ], [ -119.3118431702, 47.1567249837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.2007870052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924416665, 47.7355851423 ], [ -122.2802973866, 47.7520027511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.9794305969 ], [ -122.185861118, 47.9794731965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7207360254, 48.0268110537 ], [ -122.697769073, 48.018281475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8619828359, 46.8516552572 ], [ -122.8586957254, 46.8532935721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0971571723, 47.1818128402 ], [ -123.0973376697, 47.1826544128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4202576394, 46.4360420895 ], [ -117.4021567544, 46.4441973722 ], [ -117.3351453534, 46.4329973878 ], [ -117.3236818665, 46.4364355288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791170661, 47.1993968717 ], [ -121.9658681376, 47.1991869215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.6430952782 ], [ -117.6686114771, 47.6429513017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6287660452, 47.5891210126 ], [ -120.6139689585, 47.5807454549 ], [ -120.6128019629, 47.5735910457 ], [ -120.605716968, 47.5674428282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3105284378, 46.0417807035 ], [ -122.305684987, 46.0490596047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3662844632, 46.1972420441 ], [ -123.3633339712, 46.1950290192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0342099984, 47.1595496539 ], [ -122.0197980383, 47.1768730848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1205538564, 48.5260765992 ], [ -122.1053402812, 48.5269357635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7266598296, 48.9068699571 ], [ -122.7265048358, 48.9175984132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4711841566, 46.2575715157 ], [ -119.4254807685, 46.2734329699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497942054, 48.0321149063 ], [ -117.343635146, 48.0474039493 ], [ -117.3442020338, 48.061754727 ], [ -117.3241634322, 48.07997589 ], [ -117.3249905541, 48.0919186256 ], [ -117.3006048247, 48.0985048663 ], [ -117.2841686904, 48.0967467483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0044486257, 48.0205093633 ], [ -122.9958042256, 48.0240557605 ], [ -122.9785167145, 48.046585562 ], [ -122.9614934821, 48.0502939774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3627497487, 48.1085599202 ], [ -123.3601967875, 48.1093444067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023983763, 46.9678877123 ], [ -123.8023974793, 46.9687249499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.8181848035 ], [ -122.3049767143, 48.8323888064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0482198121, 46.7995487771 ], [ -119.0141231869, 46.7946592408 ], [ -118.8990911424, 46.7940102212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.2007870052 ], [ -123.0997120272, 47.2056969535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0735179834, 48.3417951846 ], [ -120.0782317267, 48.3464626059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5935764168, 47.5639483159 ], [ -117.5935996573, 47.5661401873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1838778814, 47.174736546 ], [ -122.1691805082, 47.1698966439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6926355567, 47.6632523312 ], [ -122.6929889274, 47.661397052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.8601052658 ], [ -117.6601956757, 47.887269221 ], [ -117.6600246954, 47.8932611587 ], [ -117.6685724818, 47.8943422934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693763413, 45.6325719706 ], [ -122.6704395067, 45.6325772078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.2349767545 ], [ -122.4919517544, 47.2348877891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5548980955, 47.3064820526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4631661079, 48.9646150404 ], [ -122.4519714718, 48.9646510378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1466151724, 46.2179686599 ], [ -119.1457324057, 46.2175957254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9040186992, 47.1886262402 ], [ -120.9097237692, 47.1901067626 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430545767, 47.9779093221 ], [ -122.1355017102, 47.9728688256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6822629215, 47.5797908647 ], [ -117.675621899, 47.5794106007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2630218055, 47.6371835441 ], [ -119.2633718554, 47.6383063062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7760452677, 48.928358074 ], [ -117.7722499943, 48.9449959503 ], [ -117.7903100301, 48.9444725584 ], [ -117.7934587589, 48.9555653693 ], [ -117.8035781755, 48.9610755132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.3753130226 ], [ -119.9667501531, 46.379458651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6802674022, 48.0089902272 ], [ -119.6854728087, 48.0097116078 ], [ -119.6910758978, 48.0187094102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6405403984, 46.3349412244 ], [ -123.6384906851, 46.3352078778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4310307746, 48.5268378739 ], [ -121.4239720128, 48.5491341646 ], [ -121.4107258263, 48.5644580515 ], [ -121.4024787094, 48.5831365172 ], [ -121.3759759036, 48.5918905668 ], [ -121.3623196615, 48.6062560597 ], [ -121.3610583314, 48.6145142947 ], [ -121.3232006326, 48.6329219791 ], [ -121.3028444423, 48.6504520462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2950977171, 47.0475551508 ], [ -122.294801654, 47.0530641068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.0439992941 ], [ -123.2864367852, 47.0541062901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8196628775, 48.04931957 ], [ -122.8179486123, 48.0711563886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8249346802, 46.9706520307 ], [ -123.8258142714, 46.9714747617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5632686852, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2057386717, 47.9819494434 ], [ -122.212960739, 47.9820295137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6987076385, 48.1034031892 ], [ -119.6853721482, 48.1040204491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1043084158, 48.222137855 ], [ -122.0696796026, 48.23396758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1636458554, 47.8796014922 ], [ -122.1608618478, 47.8814089364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5232713274, 47.6536299928 ], [ -122.5320368544, 47.6720530531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5213936247, 48.4084338469 ], [ -119.5232962062, 48.4094700138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339661209, 47.2054048624 ], [ -122.4339668077, 47.2064012989 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5851623994, 47.0923339805 ], [ -121.567425209, 47.0403791961 ], [ -121.5551957128, 47.0303667214 ], [ -121.5340919383, 47.0225756397 ], [ -121.5276445988, 47.0128757583 ], [ -121.5359529209, 46.980696515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.5681320318 ], [ -117.1454454815, 46.5721918556 ], [ -117.1570846795, 46.5836610466 ], [ -117.172901762, 46.5919223495 ], [ -117.1607245203, 46.616443833 ], [ -117.1875760408, 46.6478028536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.5319334082 ], [ -122.3347023936, 47.5375284994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.6174517277 ], [ -118.6526722344, 48.6000038884 ], [ -118.6443296317, 48.5973721967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9422723546, 47.9168139511 ], [ -118.9115553996, 47.9213656063 ], [ -118.8633547045, 47.9011540071 ], [ -118.8537392978, 47.8838687759 ], [ -118.7238512322, 47.772533091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1327675392, 47.1108867882 ], [ -123.1050673886, 47.1296410636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5283321717, 46.937764175 ], [ -122.4923909755, 46.9379773099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7671904335, 46.6744470342 ], [ -123.7615325079, 46.6777404653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4871230724, 46.2579063443 ], [ -119.4873304151, 46.2607553775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5530762786, 48.8225160709 ], [ -122.573687598, 48.8448314506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5234705645, 46.6619857363 ], [ -120.5197381527, 46.6681259529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3320582967, 47.6264826812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511293212, 47.5655459942 ], [ -122.6475719156, 47.5652581761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3294181035, 46.960126358 ], [ -123.3110133365, 46.9385525926 ], [ -123.2898816838, 46.9008637133 ], [ -123.2480621901, 46.8458842903 ], [ -123.2399893883, 46.8414422249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1587937139, 48.2389534668 ], [ -122.1669055996, 48.2550164627 ], [ -122.1666333463, 48.2648550145 ], [ -122.1709978885, 48.2679601252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0544043707, 46.3526539161 ], [ -124.0536804079, 46.3675828583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.7408549752, 45.9111701973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5023027759, 48.4022781572 ], [ -119.5084842224, 48.4031367389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4828848568, 45.7225399831 ], [ -121.4677352564, 45.7152835978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6621267697, 47.5713620353 ], [ -122.6565626099, 47.5703304581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7437635985, 46.7153016927 ], [ -123.7406630722, 46.7253864815 ], [ -123.7479211083, 46.7335674173 ], [ -123.7439044996, 46.7393430715 ], [ -123.7547337825, 46.760574447 ], [ -123.7406552867, 46.7781576345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.7209092456 ], [ -117.1830985465, 46.7284162635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5578353614, 46.6431253994 ], [ -118.5579970591, 46.6445599995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395528608, 48.1829538969 ], [ -117.0395862835, 48.1810552137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.6021829664 ], [ -121.668828194, 46.6101927227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674967694, 46.9781722496 ], [ -121.1273817826, 46.9810074692 ], [ -121.1143805148, 46.9870756134 ], [ -121.0946681442, 46.989267303 ], [ -121.0913821846, 46.9856181514 ], [ -121.0946111848, 46.9703427133 ], [ -121.0472905443, 46.9283246192 ], [ -121.0467429429, 46.9201906131 ], [ -121.0000086641, 46.8921406888 ], [ -120.9874184029, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6575921778, 48.2930446922 ], [ -122.6550097756, 48.2961690914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3626574045, 47.8153679549 ], [ -119.3622628388, 47.8600857655 ], [ -119.3707232114, 47.8738309699 ], [ -119.3726440441, 47.9045679707 ], [ -119.3923586085, 47.9188641837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174443607, 48.891747907 ], [ -122.6385290374, 48.8917094095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6834705983, 47.5695963871 ], [ -122.6731435739, 47.568179933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8356431118, 47.2340276704 ], [ -119.8320237301, 47.2340352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3255247068, 46.0817350589 ], [ -118.3043819814, 46.0811339747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2976491615, 46.57004764 ], [ -123.2963177918, 46.576533839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8895230263, 46.980961881 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5589351838, 47.5953615292 ], [ -117.4957532497, 47.6240627613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217148556, 46.5248555558 ], [ -117.8138228982, 46.5221815136 ], [ -117.7891868451, 46.5254691689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1974936697, 46.8114235517 ], [ -119.1737083937, 46.8115310782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2127462556, 47.4576868663 ], [ -123.2163741784, 47.4625535041 ], [ -123.2105495803, 47.4764348581 ], [ -123.2103050963, 47.4923049652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3052567416, 47.5434675701 ], [ -122.3166355729, 47.5517627468 ], [ -122.3214916682, 47.561289773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9354180565, 46.9596763245 ], [ -122.9303556413, 46.9761338415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7437352957, 48.0253259826 ], [ -122.7405321497, 48.0270703271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8857715571, 46.9892213843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966981396, 47.1766290629 ], [ -122.2848476708, 47.1815733492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730012011, 47.2221634757 ], [ -117.073000361, 47.2230431561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8792825759, 47.6694839326 ], [ -117.8779176066, 47.6694929404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501760455, 46.4755815152 ], [ -117.0698189183, 46.4861909917 ], [ -117.0774650496, 46.4977862967 ], [ -117.0874842611, 46.5393952983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8141567727, 46.974248551 ], [ -123.8110700669, 46.9732623777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8272576766, 47.106307188 ], [ -119.7624088379, 47.1468189921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.8926430173, 47.1852194677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1799080975, 46.7296299262 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3097289325, 46.3650774694 ], [ -120.2518435554, 46.3315396164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4978200864, 48.7835877334 ], [ -122.5056560072, 48.7850058356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3634161418, 47.7906222233 ], [ -122.3582161004, 47.7917297211 ], [ -122.3533511027, 47.7851161679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8889929685, 47.1441925406 ], [ -123.879496601, 47.1617156776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4019360634, 47.239469308 ], [ -122.3969871323, 47.2375843118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3567064191, 47.7812867521 ], [ -117.3531916555, 47.7872080515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7114277659, 47.3745220756 ], [ -122.6947937623, 47.381239063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3760304765, 48.891834109 ], [ -122.3745657943, 48.904788295 ], [ -122.3585353638, 48.9093392192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2772565713, 46.772497546 ], [ -117.3083636026, 46.7884099837 ], [ -117.3280662082, 46.8301233694 ], [ -117.3384016743, 46.8380692715 ], [ -117.339143604, 46.8504355115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3787722403, 47.8124279259 ], [ -122.3721262643, 47.8177762685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0878490265, 46.7317943321 ], [ -117.0573687, 46.739057813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3370509632, 48.503991479 ], [ -122.3426003903, 48.5134790031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6706352632, 48.6541388326 ], [ -118.6655296037, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.6640345732, 48.6790336908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1536154484, 48.9498823783 ], [ -122.163014477, 48.9673328212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6008744257, 45.6874395737 ], [ -122.6403863597, 45.7125037539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768951726, 46.9105822359 ], [ -117.0769824862, 46.9108621348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0155804532, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.0728624554, 48.6070846621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1895052521, 46.2676902573 ], [ -119.1705524126, 46.261830974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112982729, 47.739633774 ], [ -117.4104239582, 47.7407128065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.7699869803 ], [ -122.2838095032, 47.7600084566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4426701243, 48.701328551 ], [ -119.4421071548, 48.7019949179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6965194533, 48.0612450071 ], [ -122.7017450146, 48.0668212303 ], [ -122.7018643165, 48.078607276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753761557, 48.5902114462 ], [ -118.0753566144, 48.5985793743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1287547466, 46.6004969457 ], [ -123.1262630128, 46.6018315229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064752256, 47.7910831404 ], [ -122.2236011158, 47.8003896824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9166346542, 46.6972957966 ], [ -119.9169607763, 46.7378528943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8104269171, 46.3376105866 ], [ -123.8156493827, 46.3543833279 ], [ -123.8118111203, 46.365574241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5963933831, 47.1027062195 ], [ -122.5793216715, 47.1078928315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6205066365, 48.0600760065 ], [ -117.630503668, 48.080995459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8173067572, 46.9516445414 ], [ -123.8119261196, 46.9521234492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4231498311, 47.236217271 ], [ -122.4176442321, 47.2382129228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8122602395, 45.8229926828 ], [ -120.8081064714, 45.8245819424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.5474855069, 45.7852017578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260465116, 48.1503593139 ], [ -117.7257805786, 48.1562291862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7518491007, 46.203691501 ], [ -119.7486010675, 46.2060790676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2688269551, 48.0803462317 ], [ -124.2633119054, 48.0859667646 ], [ -124.2672293, 48.093890668 ], [ -124.2620344907, 48.1020870424 ], [ -124.2509273881, 48.1119690255 ], [ -124.2237423366, 48.1213082047 ], [ -124.2125310381, 48.1338196202 ], [ -124.2202931828, 48.1428270627 ], [ -124.2160466622, 48.1476159031 ], [ -124.2206359525, 48.1539900319 ], [ -124.2077081318, 48.1578243181 ], [ -124.2046323962, 48.1671867394 ], [ -124.2103459096, 48.1692167689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148836023, 47.8388580147 ], [ -120.0148285272, 47.8398314423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3091430991, 47.7743773963 ], [ -122.3064040791, 47.7725385808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4558097511, 46.5163581409 ], [ -120.4495337758, 46.5039654868 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7541782353, 47.0644445369 ], [ -122.7253740372, 47.0679296901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6328542511, 46.9587926513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104336223, 48.6904887705 ], [ -117.4135449594, 48.7213796222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9735363079, 47.8450645396 ], [ -119.9500747094, 47.8613131638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.5269357635 ], [ -122.0611804157, 48.5291856242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3771647615, 48.8041341038 ], [ -122.3506314591, 48.8036905292 ], [ -122.3437891671, 48.8073210548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1224530293, 48.3673427778 ], [ -120.1210178754, 48.3612124716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.0864775034 ], [ -118.2564997683, 46.0930373464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4880037429, 46.6075314018 ], [ -120.4798850922, 46.5977376972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147576786, 47.3880434547 ], [ -122.8923661472, 47.4040437156 ], [ -122.8777100282, 47.4088016187 ], [ -122.8605402927, 47.4233280775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4690438843, 47.3852988959 ], [ -119.426913667, 47.3955134929 ], [ -119.3873405431, 47.4145207367 ], [ -119.3006349454, 47.4249031098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1212539974, 47.0877998117 ], [ -119.0508055026, 47.0857677636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8883863985, 46.9801777553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.1410473188, 47.6647648556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1608618478, 47.8814089364 ], [ -122.1485845591, 47.8886416262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537824167, 46.7366928914 ], [ -122.9538231518, 46.7487811507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1331872975, 46.8409896084 ], [ -119.1331481081, 46.886685746 ], [ -119.1384722057, 46.892262265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288340771, 47.6158812787 ], [ -122.6288682299, 47.6213371579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709737986, 48.4626357523 ], [ -122.5588999199, 48.4598549429 ], [ -122.5406484136, 48.4629524261 ], [ -122.4987396272, 48.4522633023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143482637, 48.2063281505 ], [ -122.2183218859, 48.2166037115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.3814692054 ], [ -119.4690438843, 47.3852988959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.4748414789 ], [ -122.3277374047, 47.4792708197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.3049498032, 47.6441648565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5543923163, 48.3214625286 ], [ -121.5500581076, 48.3318886554 ], [ -121.5514534858, 48.3437440639 ], [ -121.540112692, 48.346215164 ], [ -121.5399069254, 48.366375817 ], [ -121.5420248636, 48.372287589 ], [ -121.5544254592, 48.3801274364 ], [ -121.5500133803, 48.3934668631 ], [ -121.5568722682, 48.4135875649 ], [ -121.566872919, 48.4288842168 ], [ -121.5917001012, 48.4513276442 ], [ -121.5855182759, 48.4609275735 ], [ -121.5934495363, 48.4859005831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7345700167, 47.1169266042 ], [ -117.7429251101, 47.1174596066 ], [ -117.7549057664, 47.1257164324 ], [ -117.8175092803, 47.1110932633 ], [ -117.8229123252, 47.1144427701 ], [ -117.8293478123, 47.1355148253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0677532163, 46.2468045298 ], [ -119.046642025, 46.2322064702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1248280167, 47.5008402591 ], [ -122.1219053901, 47.5005304078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133014011, 47.3166524228 ], [ -122.3119901397, 47.333987546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343743094, 47.5297826683 ], [ -122.334499835, 47.5319334082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9795868328, 47.9655777499 ], [ -118.9796978543, 47.9684303804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854576502, 47.9480859363 ], [ -124.3854471652, 47.9489554101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859559588, 48.8624202184 ], [ -122.4856871492, 48.8695370939 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3455588826, 48.5553675301 ], [ -117.3064321854, 48.5419409683 ], [ -117.3028045022, 48.5360504548 ], [ -117.3046502589, 48.5270311029 ], [ -117.2785248998, 48.5118456191 ], [ -117.2690246326, 48.4992561871 ], [ -117.269265238, 48.4873224193 ], [ -117.2758540173, 48.4791546803 ], [ -117.320541457, 48.4685163989 ], [ -117.3259425988, 48.4587617195 ], [ -117.3237809205, 48.4393180608 ], [ -117.3166271068, 48.4252140684 ], [ -117.3190973569, 48.4189460662 ], [ -117.3131204854, 48.4113756271 ], [ -117.3146309013, 48.3944502706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4980484153, 47.7985063825 ], [ -122.497295586, 47.7975770117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4354637214, 46.5745924593 ], [ -120.3933243152, 46.5563517375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.3953989959 ], [ -122.3309115081, 48.4060252156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6448015914, 47.5019616092 ], [ -122.6439469399, 47.5027845218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3721262643, 47.8177762685 ], [ -122.3673070896, 47.8179585281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.8777990754 ], [ -122.1636458554, 47.8796014922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4272112907, 48.1176420477 ], [ -123.4309020008, 48.1191579416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5038218235, 48.1027548736 ], [ -123.4685453921, 48.1061906064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.2399283143 ], [ -119.4710716591, 47.2737539701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2904509822, 45.6962586457 ], [ -121.2796331186, 45.6906882361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.9366422092 ], [ -122.3579343412, 46.9802243895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4955876896, 47.7975252491 ], [ -122.4964887302, 47.7981317254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9342408253, 46.9527666325 ], [ -122.9357154749, 46.9527589941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4625406534, 48.1078996274 ], [ -123.4595741397, 48.1100676892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3238832466, 47.6326989707 ], [ -122.3226285715, 47.6386200098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3367493104, 48.4846390125 ], [ -122.3385001064, 48.4862281599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.0998571166 ], [ -117.2193213409, 48.1133107789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2731213214, 47.6686054126 ], [ -122.2710615487, 47.6700439942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3610664207, 47.2534566306 ], [ -117.3705856786, 47.2680751418 ], [ -117.3612540092, 47.2908793053 ], [ -117.390138784, 47.3103620664 ], [ -117.3885977334, 47.3194727622 ], [ -117.3806624631, 47.3300797576 ], [ -117.3806731936, 47.3606575442 ], [ -117.3913392846, 47.3891157864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.4544018047 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9943545429, 46.5674942159 ], [ -119.0040609275, 46.5740844587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6659555363, 45.631898547 ], [ -122.6693763413, 45.6325719706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4657592482, 48.106460575 ], [ -123.4611381511, 48.1069352467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4999178784, 48.7176529255 ], [ -122.486331208, 48.7148245953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133672387, 48.3723792401 ], [ -122.2296735711, 48.3852564968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829723721, 48.1524164911 ], [ -122.1722962078, 48.1522897092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1670085036, 46.1917196627 ], [ -119.1591587709, 46.198638478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1570442192, 47.2803282022 ], [ -123.1457654709, 47.2521210376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1738772879, 47.1121270494 ], [ -124.1696146509, 47.1148944779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.5754644577, 47.0918016783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2484756693, 47.9000726144 ], [ -122.2446706564, 47.9041485453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329070414, 47.5726953913 ], [ -122.6329554592, 47.5769885266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356088428, 48.4755713741 ], [ -122.3355650196, 48.4778597679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6855035616, 48.6448826019 ], [ -118.667711126, 48.6174517277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9056916194, 46.2824568896 ], [ -122.9035782953, 46.2838610024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4586693868, 47.7154118844 ], [ -117.4605875174, 47.7154071362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2704255183, 46.9127594447 ], [ -117.2498341606, 46.9246457969 ], [ -117.2343310278, 46.9253099478 ], [ -117.2205297119, 46.9331066712 ], [ -117.1593520644, 46.9417057905 ], [ -117.1360809196, 46.9326332476 ], [ -117.1104760713, 46.9284629569 ], [ -117.1027698079, 46.9174522008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7009258111, 47.5254077892 ], [ -122.7045017857, 47.525661698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1508809942, 47.779603159 ], [ -122.1387763237, 47.7848706123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6910758978, 48.0187094102 ], [ -119.6976870253, 48.0311183966 ], [ -119.6937254895, 48.039290469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472711494, 47.6539867202 ], [ -122.3472698982, 47.6642399557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8753021958, 47.036689104 ], [ -122.8593818839, 47.0403533748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2527825057, 48.5028862443 ], [ -122.247228536, 48.5049651039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6250128565, 47.5624369619 ], [ -122.629614867, 47.5650234096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3358813394, 47.8214508721 ], [ -122.3250529195, 47.8213297085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8360736283, 46.4372194695 ], [ -122.8140314886, 46.4381206875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0422413047, 46.4742309777 ], [ -117.0475174649, 46.4744614231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0515162551, 47.3916599978 ], [ -122.0448319243, 47.3997061319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6587268784, 45.6977308437 ], [ -122.6529868883, 45.7094550401 ], [ -122.6545494275, 45.7173002417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3476245074, 48.0559531272 ], [ -124.3376838924, 48.0547329997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205390391, 46.3386430967 ], [ -120.3201947507, 46.3605182529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742071117, 45.781370643 ], [ -122.6672617257, 45.779820175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.7599890779 ], [ -117.1644381544, 46.7697549283 ], [ -117.1514171761, 46.7802864678 ], [ -117.147368489, 46.7904698955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0273681586, 46.4021888563 ], [ -122.9987012021, 46.4136116155 ], [ -122.9750403018, 46.4047023004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5468403017, 46.9927649775 ], [ -122.545777661, 46.9961770865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6943596205, 47.1892246234 ], [ -119.6860494601, 47.1944007257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7709004569, 45.8615514769 ], [ -120.7561380643, 45.871859525 ], [ -120.7488870427, 45.8832756597 ], [ -120.7124593609, 45.8992628538 ], [ -120.7115773862, 45.9077401324 ], [ -120.7006339016, 45.9221097398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5853439854, 48.3602159749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150855528, 47.8211917901 ], [ -122.2945690698, 47.8468435945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6115664545, 47.5340329479 ], [ -122.6096358266, 47.5340033861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.7848706123 ], [ -122.1351159494, 47.7942908882 ], [ -122.1160881425, 47.7949538411 ], [ -122.1114164195, 47.8021101024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649675878, 46.8759309573 ], [ -117.3649034503, 46.8772762302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5274842124, 45.5979967225 ], [ -122.5158228483, 45.5949143216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.0719970341, 47.4423650536 ], [ -122.0796037239, 47.4579919468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.5707549865 ], [ -122.6621267697, 47.5713620353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201947507, 46.3605182529 ], [ -120.3229788958, 46.3718043346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0721004876, 47.859499395 ], [ -120.0581786213, 47.8560176572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3248167693, 47.4409909149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3283026635, 47.6754413596 ], [ -117.3248627173, 47.6754104751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.5539369573 ], [ -122.6552199252, 47.5591158808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396318808, 47.6716727121 ], [ -117.2395845311, 47.6725795615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.9022648982 ], [ -124.1110123877, 46.9040127541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.063917083, 46.4199191264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3667991767, 47.790544377 ], [ -122.3634161418, 47.7906222233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4468006629, 45.9137020329 ], [ -122.4272617564, 45.9171272208 ], [ -122.4211179737, 45.9198035212 ], [ -122.4210503145, 45.9241386589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2777833248, 47.1316521718 ], [ -119.2752765933, 47.1325238534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.3360585763 ], [ -120.5660395573, 47.3455525678 ], [ -120.5715152011, 47.3505855892 ], [ -120.563363344, 47.3591576642 ], [ -120.5767497151, 47.3638196119 ], [ -120.5942345354, 47.3816799159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9162959671, 47.6372969855 ], [ -121.9163495454, 47.639117271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4873304151, 46.2607553775 ], [ -119.4876083086, 46.2698315286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5679132072, 47.5937450378 ], [ -117.5675988781, 47.5933681002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8039379118, 45.8264664938 ], [ -120.801473643, 45.8363142697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9949382898, 46.1422801927 ], [ -122.9876098497, 46.1378429021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443533309, 48.4699161341 ], [ -122.3407517853, 48.4711363705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3385001064, 48.4862281599 ], [ -122.3482490253, 48.4942122629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8201543029, 47.4545979618 ], [ -122.8042667838, 47.4677635998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8800763033, 46.5339933138 ], [ -119.8278954802, 46.5493399359 ], [ -119.791445814, 46.569212579 ], [ -119.7282935394, 46.5780534778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4597485486, 48.7724340267 ], [ -122.4491781665, 48.7760427514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159507876, 47.2584346491 ], [ -122.5159443381, 47.2599591042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886549992, 47.644785095 ], [ -122.2319230755, 47.6360628163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2638528237, 47.7582985129 ], [ -122.2518648885, 47.7585697854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2366664186, 47.1398909033 ], [ -122.2373000311, 47.1324526387 ], [ -122.2292381501, 47.1179506292 ], [ -122.2143535286, 47.1036076158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.6820267252 ], [ -123.7896436506, 46.6852246296 ], [ -123.8114502592, 46.6993848447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4321127257, 47.2333231589 ], [ -122.4318739382, 47.234680353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.7713428245 ], [ -122.4597485486, 48.7724340267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991152602, 47.3325467605 ], [ -118.6953209574, 47.3333178275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9796119878, 48.0909954069 ], [ -121.9615776667, 48.0935920542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6795231234, 47.662857905 ], [ -122.6888093798, 47.6646633668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8344961907, 47.4399094921 ], [ -122.8302534091, 47.4465115389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1566237324, 47.4685018085 ], [ -122.1886206387, 47.478462399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3014134068, 48.1726073855 ], [ -117.3015320727, 48.1814415097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2512032791, 47.0452823163 ], [ -123.2311640554, 47.0504387055 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.0978930871, 47.6573058522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965384457, 47.7337970814 ], [ -122.2924586232, 47.7337786904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975233079, 46.7384199394 ], [ -119.189779697, 46.7381439938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1791144823, 46.3455191654 ], [ -120.1776037055, 46.3458600603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7523454393, 48.9971567896 ], [ -122.7520472898, 48.9978652764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5090316719, 46.6767027963 ], [ -120.4872923805, 46.6801245233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.6618427629 ], [ -117.3871932194, 47.6619140206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7461434353, 45.8153622443 ], [ -122.7448931286, 45.8153696587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.6264046411 ], [ -122.6664314526, 45.6289361692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1105630412, 46.2485229568 ], [ -119.0939413826, 46.2498784583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2231765605, 47.9226576514 ], [ -122.2125640998, 47.9215909937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.4885408949 ], [ -124.1139224833, 47.4962623066 ], [ -124.1614780369, 47.506903678 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2059547126, 46.9847954432 ], [ -119.1179298675, 46.9846708775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3985480747, 45.5841573262 ], [ -122.3855189782, 45.5821082164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2688269551, 48.0803462317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8763595467, 47.4318329878 ], [ -122.8631442072, 47.4386387656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2049625221, 48.8611827903 ], [ -118.205892243, 48.8650299972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3855106235, 47.9441729563 ], [ -124.3854821185, 47.9460570961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3912683196, 47.0040697768 ], [ -123.3875067629, 47.0051795465 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.0095725516 ], [ -122.8897294603, 47.9923528191 ], [ -122.8856837159, 47.9870204643 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455904637, 47.1960629254 ], [ -122.238361396, 47.1927344595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3309115081, 48.4060252156 ], [ -122.3314940653, 48.4135964059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9910780054, 47.2049216282 ], [ -121.9896415159, 47.2138839771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4351159777, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0320320146, 45.6195630227 ], [ -122.0246218752, 45.6254040131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1390119706, 47.3580153681 ], [ -122.1340104468, 47.3579773429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.5794106007 ], [ -117.6687451729, 47.5798764344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5608783461, 45.7230552598 ], [ -121.5511752614, 45.7278450651 ], [ -121.524779511, 45.7292158488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289013941, 47.6322348249 ], [ -122.6293597294, 47.645556277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3620580135, 46.0686467543 ], [ -118.3697805104, 46.0698478744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7830173029, 47.1120217119 ], [ -120.7666038672, 47.1063778563 ], [ -120.7599445753, 47.0960137622 ], [ -120.7451378467, 47.0902835956 ], [ -120.7388834285, 47.0833211577 ], [ -120.6585157988, 47.0514934706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1722962078, 48.1522897092 ], [ -122.1616167206, 48.1521235496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8857327674, 46.9809356695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9825252207, 47.2092344825 ], [ -120.9931524128, 47.222746832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8840388543, 46.6627688809 ], [ -118.8714816681, 46.6542060226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3978963103, 48.1061923633 ], [ -123.3759552613, 48.1048555471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135771849, 48.7285818258 ], [ -117.4135602609, 48.7325006416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070289838, 47.914243946 ], [ -122.2062759693, 47.9180096463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6064434153, 48.1635594746 ], [ -122.609133392, 48.1712861629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9095592146, 47.3467924075 ], [ -123.9114875209, 47.3617916606 ], [ -123.9025771354, 47.3722950666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282727742, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2802973866, 47.7520027511 ], [ -122.2764080485, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2953114868, 47.0439310162 ], [ -122.2950977171, 47.0475551508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0994911249, 46.8588806371 ], [ -124.0614923955, 46.8642889165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.5709737986, 48.4626357523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4876083086, 46.2698315286 ], [ -119.4903066566, 46.2723445732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1227222823, 48.6274371967 ], [ -118.1196487386, 48.6350042505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078191986, 47.09966335 ], [ -122.2024622981, 47.0953255419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4036102525, 45.6993830974 ], [ -121.3949453382, 45.6982231146 ], [ -121.3829577285, 45.705115008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6937254895, 48.039290469 ], [ -119.6904472484, 48.0614812616 ], [ -119.7191866099, 48.0659006898 ], [ -119.7247200058, 48.0764391164 ], [ -119.7432426466, 48.0767810116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6107084925, 45.647880158 ], [ -122.5974622536, 45.6497283577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9375719089, 46.7539095544 ], [ -122.9232462415, 46.7732075734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6690587997, 47.7496337056 ], [ -122.6513721365, 47.7650327884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.3088525506 ], [ -124.0433848336, 46.3088545203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4499029188, 48.52736977 ], [ -121.4310307746, 48.5268378739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7149150326, 47.8093423824 ], [ -120.7169624148, 47.8114972148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1599270282, 46.2701832514 ], [ -118.1547729075, 46.2701299684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2019957815, 47.9271375522 ], [ -122.1958275845, 47.933021241 ], [ -122.1992457496, 47.9616091692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6494078234, 47.8021122484 ], [ -122.6433193726, 47.8181068479 ], [ -122.6300911575, 47.828750694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3695963283, 46.2371507033 ], [ -118.3397268843, 46.2877259981 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3579343412, 46.9802243895 ], [ -122.3592526243, 46.9990763609 ], [ -122.3689169614, 47.0093696581 ], [ -122.3694769065, 47.0202996688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430161763, 48.0536913707 ], [ -122.140842334, 48.0536557708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.1998163094, 46.3311315335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2000543534, 47.5787190739 ], [ -122.1810983468, 47.5797602872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8511888124, 46.6508402423 ], [ -118.8083617087, 46.6349016892 ], [ -118.7623864594, 46.6345593673 ], [ -118.7266393872, 46.6292584921 ], [ -118.7090644842, 46.6200739782 ], [ -118.6519632501, 46.6233243007 ], [ -118.6414940671, 46.631430572 ], [ -118.6195197634, 46.6393677099 ], [ -118.6117553593, 46.6490485607 ], [ -118.5884939945, 46.6478136609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9365504311, 48.5667945753 ], [ -117.9526076358, 48.5773917833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3154029102, 47.6847104504 ], [ -122.3151264897, 47.6852564017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8272592504, 47.454059906 ], [ -122.8269220429, 47.4513256561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.5718451267 ], [ -121.9131923547, 47.5965925443 ], [ -121.9096907598, 47.6249890342 ], [ -121.9162959671, 47.6372969855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9709937008, 47.2786751606 ], [ -122.9601733292, 47.2820553805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413735185, 48.0566594172 ], [ -117.704874261, 48.0670618915 ], [ -117.6731595914, 48.062248924 ], [ -117.6377513794, 48.0630093485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2747094226, 47.4287124851 ], [ -122.2690111833, 47.4377897666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3388800342, 47.7781146434 ], [ -122.3462274907, 47.7777955542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3161032894, 46.3779887108 ], [ -120.318493365, 46.3762548928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6990664231, 45.6412649874 ], [ -122.7041423514, 45.6445770609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0051151642, 46.203549009 ], [ -118.9642066552, 46.1752198269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.1009448607 ], [ -119.3155342499, 47.1016304023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5155441649, 47.6357793786 ], [ -122.5198277142, 47.6444797699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.5366364133 ], [ -117.2147701782, 47.5416733174 ], [ -117.2144352224, 47.561959096 ], [ -117.2229100098, 47.5730667428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.9948947943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2035861347, 47.4751805773 ], [ -122.2002742877, 47.4803239853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3623803381, 46.2440184404 ], [ -119.3531195123, 46.244832268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9259280616, 46.1463384374 ], [ -122.923520705, 46.1460689953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.3193801568, 46.2995221994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5961697621, 48.4872753789 ], [ -121.5901063759, 48.4885682085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3731501041, 45.946680716 ], [ -119.3513796962, 45.9446481587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2607429983, 47.2688990575 ], [ -122.2583295166, 47.2805652971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7784777487, 48.0301901157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903978445, 48.0112262144 ], [ -122.1860840265, 48.0219150499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4861031431, 48.7826912501 ], [ -122.4860962019, 48.7836284125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4903066566, 46.2723445732 ], [ -119.4942417879, 46.2795434721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158979379, 47.271095951 ], [ -122.5157647305, 47.2798223974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.1936544175, 46.7645544522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.4369512503, 48.9352749432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693837427, 45.6318469625 ], [ -122.6659555363, 45.631898547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987245907, 48.0961085325 ], [ -123.2912512618, 48.0954124931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8542222764, 46.9751663099 ], [ -123.8318384982, 46.9750779012 ], [ -123.8278685905, 46.9716853763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3797163114, 47.6619387511 ], [ -117.3720613135, 47.6630728307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.6446017537, 46.6167403971 ], [ -123.6251575619, 46.6007463777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1830985465, 46.7284162635 ], [ -117.1825112217, 46.7290233594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.2913280407 ], [ -122.6575921778, 48.2930446922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3049039776, 46.2928299037 ], [ -119.306688915, 46.2788022155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3894049745, 47.9191328124 ], [ -119.388810295, 47.917927027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1720418434, 47.3177075499 ], [ -123.1814871799, 47.2998745064 ], [ -123.1749055913, 47.289039031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7840000547, 47.472842312 ], [ -118.7842634529, 47.6121559913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8450829264, 46.2935798136 ], [ -122.8351070251, 46.2928789335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3573827719, 46.9297368504 ], [ -122.35740693, 46.9366422092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.8293481757, 45.7148576644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4002907153, 47.3993957355 ], [ -121.3901248718, 47.3932302588 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5195878632, 48.4074511711 ], [ -119.5216611447, 48.408142504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4532860957, 46.8561637408 ], [ -119.3464529029, 46.8107648966 ], [ -119.2569845795, 46.810235263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2842524512, 46.4056644379 ], [ -120.2682351433, 46.4011783488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0910571193, 46.7988293856 ], [ -124.1062823585, 46.8495197001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2373624055, 47.3779147052 ], [ -122.2306881417, 47.3778354946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6293597294, 47.645556277 ], [ -122.6335380628, 47.6490423139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8906810599, 46.4350146931 ], [ -123.8576433404, 46.4293681134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8350369221, 45.6826649603 ], [ -120.8176061098, 45.6914545332 ], [ -120.8153769492, 45.6979289463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9638147974, 47.8578165968 ], [ -121.9270653363, 47.8558599343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405471815, 45.9025011825 ], [ -122.7497223484, 45.9177650679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8637575163, 47.0867688468 ], [ -118.7208744803, 47.0861552891 ], [ -118.6756358928, 47.096990195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4989356807, 46.6492770518 ], [ -120.5109061448, 46.6442084502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0947304936, 47.139868914 ], [ -122.0915871421, 47.1407602078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2687488564, 47.4721785489 ], [ -122.2710239707, 47.4775799592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5338227757, 46.2908205864 ], [ -118.4933906402, 46.2879872582 ], [ -118.4287615677, 46.2992203509 ], [ -118.3562019376, 46.2999263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1748375091, 47.7679692019 ], [ -120.16517224, 47.7707983028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5074826876, 47.7443815862 ], [ -117.5203800137, 47.7582970266 ], [ -117.5472646731, 47.7659238189 ], [ -117.5450441479, 47.7703887266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3247753913, 47.4057300867 ], [ -122.3251389542, 47.4075113691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1840627382, 47.7606381882 ], [ -122.1858412261, 47.7634469513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2946343778, 47.3643588625 ], [ -122.2900428301, 47.3837562417 ], [ -122.2920536467, 47.4006698004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7270084609, 45.8156734191 ], [ -122.7059518963, 45.815636231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7360584616, 46.6468473933 ], [ -119.7073340223, 46.6539357057 ], [ -119.6862564867, 46.6685040964 ], [ -119.6817502839, 46.6750016961 ], [ -119.682116182, 46.701919444 ], [ -119.6415240103, 46.7308902277 ], [ -119.6270510219, 46.735547573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5772145701, 47.6429329048 ], [ -117.5739759223, 47.6429386574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2744143572, 47.4850652066 ], [ -122.2816435896, 47.4911976441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8964164726, 47.6985807685 ], [ -122.8979905603, 47.6935842347 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6757381114, 47.0813300502 ], [ -122.6588479006, 47.0844194177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.5286763644, 48.4060519843 ], [ -119.5284987148, 48.409540793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2963177918, 46.576533839 ], [ -123.2943647479, 46.5783948474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9316246804, 47.0277555011 ], [ -122.9281707668, 47.0261889833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7913837991, 46.6144419053 ], [ -117.7931037677, 46.617894857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468945815, 46.4199295935 ], [ -117.045583721, 46.4199358176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1924425951, 47.69589869 ], [ -117.1520827446, 47.701179935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3828654748, 47.8126422945 ], [ -122.3819741537, 47.8121145139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5153285839, 47.3019754864 ], [ -122.514518613, 47.3040619068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3538626087, 47.8381496765 ], [ -117.3555823489, 47.8588071968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3719971108, 46.837063334 ], [ -120.3539257338, 46.8125656869 ], [ -120.3617492551, 46.8021851778 ], [ -120.3587542368, 46.7928184397 ], [ -120.3728367715, 46.7819036429 ], [ -120.380605613, 46.7593890779 ], [ -120.3901167664, 46.7494451154 ], [ -120.3864596626, 46.7305671826 ], [ -120.4052961815, 46.7241356625 ], [ -120.4136797599, 46.7142727147 ], [ -120.433016451, 46.7109789933 ], [ -120.4433236404, 46.6963442824 ], [ -120.4759788061, 46.681083667 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2062759693, 47.9180096463 ], [ -122.2074382827, 47.9188560677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674102459, 47.2309146691 ], [ -121.1487724368, 47.2203984665 ], [ -121.1352981522, 47.2179205415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4353841771, 48.9477318207 ], [ -119.4362799721, 48.9485573498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3509475564, 46.221897885 ], [ -119.3418776019, 46.2095624858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2150358593, 47.6419810064 ], [ -120.2141719319, 47.6561755599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.4679946321 ], [ -120.3355466203, 47.469450059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.6990664231, 45.6412649874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.0878490265, 46.7317943321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342994903, 47.3048223444 ], [ -122.4275808374, 47.3168023421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424962708, 48.1830235936 ], [ -117.0424418871, 48.1840101705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3311899204, 48.9637972205 ], [ -122.3092045302, 48.9638603752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2193213409, 48.1133107789 ], [ -117.143191344, 48.145029846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4553319322, 46.8189351153 ], [ -120.4606744462, 46.8275834233 ], [ -120.4543648479, 46.8377527814 ], [ -120.4626117535, 46.8442414628 ], [ -120.4613240439, 46.8503228942 ], [ -120.4652792529, 46.8539700858 ], [ -120.4821044215, 46.8553247767 ], [ -120.4794449453, 46.8672769035 ], [ -120.4952645744, 46.8767882515 ], [ -120.4795790401, 46.8754558646 ], [ -120.4748174542, 46.8828844989 ], [ -120.4922204016, 46.8840899703 ], [ -120.5035033529, 46.8966105451 ], [ -120.4928844335, 46.9020156297 ], [ -120.504769142, 46.910050121 ], [ -120.5100857559, 46.9261498028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3547293908, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.3143915695, 46.0302126494 ], [ -122.3105284378, 46.0417807035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470734178, 47.3105055416 ], [ -122.2447763261, 47.3180985045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3177802121, 47.3354233521 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1680072039, 47.7574084421 ], [ -122.1598186601, 47.7602527368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.2741237154 ], [ -117.1591731962, 47.2805495454 ], [ -117.1640556864, 47.2925563208 ], [ -117.1644445088, 47.3113387619 ], [ -117.1924139288, 47.3317954981 ], [ -117.1780365249, 47.3581047791 ], [ -117.1809160774, 47.3646637735 ], [ -117.174270773, 47.3797829152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3361482633, 48.4175077145 ], [ -122.3336059484, 48.4174954237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1071132149, 46.2075458387 ], [ -119.1020141523, 46.2227420627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930833684, 47.1256521371 ], [ -122.2930223395, 47.1364690107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6524298189, 47.7572284351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9196173248, 46.147218448 ], [ -122.9103992419, 46.147036878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2099835359, 48.0853786216 ], [ -123.1998425884, 48.0838545215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9099471422, 46.0583086547 ], [ -118.9075966187, 46.0562013963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3597169341, 47.2569450563 ], [ -122.3574461631, 47.26443574 ], [ -122.3794534635, 47.2749697278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3223743924, 48.543587961 ], [ -120.3152493003, 48.5356655747 ], [ -120.2746920614, 48.5208934314 ], [ -120.2595111993, 48.5117976986 ], [ -120.2514198263, 48.501356904 ], [ -120.2272728853, 48.4882565885 ], [ -120.1928315035, 48.4779351239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2831461268, 48.0697565692 ], [ -124.2809185137, 48.0699570958 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966747787, 47.399436909 ], [ -122.2967521172, 47.4190994152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.6660998622 ], [ -122.3217057205, 47.670374577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0448176781, 46.3941409901 ], [ -117.044476644, 46.4040732772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112120534, 47.6843406722 ], [ -117.4111934872, 47.6661553637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5945415128, 48.3551234308 ], [ -119.5916519331, 48.3502168576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4957046659, 48.4279752811 ], [ -119.4793203116, 48.4427106768 ], [ -119.47455389, 48.4565074029 ], [ -119.504726913, 48.4971895169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0644490268, 46.6269757944 ], [ -123.0540392956, 46.6280909268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111435799, 47.6590755437 ], [ -117.411162631, 47.6609810366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3484813064, 46.0630851666 ], [ -118.3491644277, 46.0639266399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.3128548734 ], [ -117.9908694542, 46.3149359546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.1460797472 ], [ -119.2938851325, 47.1496369098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4474690781, 48.2419384688 ], [ -122.3792847178, 48.2409791825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2651299683, 47.4614024105 ], [ -122.2629302431, 47.4619229895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6207841642, 46.9343746994 ], [ -122.6075822125, 46.9413631902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3236818665, 46.4364355288 ], [ -117.3010762949, 46.426715932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4607123542, 46.9566297084 ], [ -119.3970757589, 46.9577736802 ], [ -119.3641548064, 46.9706876163 ], [ -119.3337342412, 46.9675559139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0696796026, 48.23396758 ], [ -122.061555391, 48.2363292108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6765472999, 48.0110069203 ], [ -119.6774926459, 48.0103631519 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8482332243, 46.8586162126 ], [ -122.8467102726, 46.8590457137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6550649229, 46.809179515 ], [ -117.6413017681, 46.8104615568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -118.9752267156, 46.6637302723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2520093383, 47.8571419291 ], [ -122.2369577595, 47.8790697395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9301268685, 48.5264239752 ], [ -121.8440165577, 48.5411010945 ], [ -121.8251820674, 48.538972313 ], [ -121.7933270019, 48.5435073143 ], [ -121.7727025488, 48.5378235193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2884988914, 48.963997296 ], [ -122.2762249884, 48.9650220251 ], [ -122.2715285544, 48.9748696672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0508055026, 47.0857677636 ], [ -119.0351635573, 47.0854260018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8021513026, 47.4912692217 ], [ -121.7916752446, 47.4832690795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9701538655, 47.8449608786 ], [ -121.9707726081, 47.8570932647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.7882975717 ], [ -117.8494574336, 46.7998322141 ], [ -117.8101743201, 46.8136488638 ], [ -117.7811267138, 46.8048818024 ], [ -117.7571242819, 46.8027239184 ], [ -117.716713311, 46.8103507878 ], [ -117.6914546669, 46.808715409 ], [ -117.6656137967, 46.8138014312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.5158418422, 47.2671438187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4497167189, 47.6443092509 ], [ -117.4516120669, 47.6469017259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0175921586, 46.4482685616 ], [ -119.0104657492, 46.4807072897 ], [ -119.0151184142, 46.4974458958 ], [ -119.0114262534, 46.514580199 ], [ -119.0147753835, 46.5330492641 ], [ -118.9959923537, 46.5612283389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2563379619, 46.2519667264 ], [ -119.2461272383, 46.2409894234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.9636327884 ], [ -122.3311899204, 48.9637972205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4798570338, 45.5857517212 ], [ -122.466151024, 45.5838225286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1591587709, 46.198638478 ], [ -119.1588244536, 46.2022230907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6673528658, 47.5490597613 ], [ -122.65895148, 47.5539369573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6377776889, 47.7367740872 ], [ -122.6391820613, 47.7464774496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114853073, 46.6260626792 ], [ -120.5069976359, 46.6257073162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6260861992, 47.428820891 ], [ -121.6131737911, 47.4285755837 ], [ -121.5903662442, 47.4195793911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5271133231, 46.6559435532 ], [ -120.5258992491, 46.6579574794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1766968441, 46.8046382853 ], [ -119.1767648181, 46.809746805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6040808647, 47.5533601555 ], [ -120.5989270885, 47.5553611869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5592550475, 46.9339839558 ], [ -122.5556609589, 46.9361969309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8650512546, 46.5465667665 ], [ -122.8011596478, 46.5439467679 ], [ -122.747421571, 46.532339046 ], [ -122.7197711644, 46.5320488595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3805172543, 46.0318115343 ], [ -118.3627410114, 46.0415078207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9134448464, 47.0253389513 ], [ -122.9094874642, 47.0217506114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3414018352, 48.4590968726 ], [ -122.3424452974, 48.4769135735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3426003903, 48.5134790031 ], [ -122.3515399574, 48.5305200558 ], [ -122.3502009691, 48.5531647768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7772882632, 48.9177594411 ], [ -117.7760452677, 48.928358074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5204986539, 45.7575928617 ], [ -121.52754616, 45.7606234938 ], [ -121.5279890656, 45.7661176923 ], [ -121.5121334624, 45.776374164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5339872909, 48.0097622963 ], [ -122.5414842419, 48.011987346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7367980221, 46.6805525735 ], [ -123.7303182124, 46.6823391023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7334805954, 47.7623342902 ], [ -118.7212439358, 47.7631466252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079523143, 47.3909890982 ], [ -122.3004124588, 47.3957738513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6872359291, 47.5754584422 ], [ -122.6901316239, 47.5798542029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.0536511041 ], [ -122.1193130939, 48.0535474274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0732200773, 47.347496595 ], [ -123.0293255922, 47.3508042021 ], [ -122.9868725272, 47.3733995692 ], [ -122.9487451622, 47.3816100186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3064040791, 47.7725385808 ], [ -122.302597486, 47.7699869803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0533201894, 46.3352565084 ], [ -117.0523623815, 46.336389697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7784777487, 48.0301901157 ], [ -122.7579724158, 48.0317552349 ], [ -122.745826823, 48.0252187014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0719934512, 46.2494836918 ], [ -119.0677532163, 46.2468045298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2359717776, 48.0661116568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3875067629, 47.0051795465 ], [ -123.382100299, 47.0068490189 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2626695043, 47.1398689271 ], [ -119.2701126525, 47.1419665364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1771557033, 46.1884708528 ], [ -123.1680910014, 46.1910275512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2311640554, 47.0504387055 ], [ -123.175467152, 47.0586866535 ], [ -123.1546990371, 47.0552496291 ], [ -123.1112802946, 47.0325956026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1020141523, 46.2227420627 ], [ -119.101122588, 46.2240920293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2369577595, 47.8790697395 ], [ -122.2268964445, 47.8867919049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8271538347, 45.8696991389 ], [ -119.7799581015, 45.8660328507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0824521881, 46.7544029188 ], [ -124.0813424614, 46.7757934066 ], [ -124.0868475896, 46.7892994633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.9782340718 ], [ -122.1430545767, 47.9779093221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0536804079, 46.3675828583 ], [ -124.053438936, 46.3706285622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9420074404, 46.8959196782 ], [ -122.9086394896, 46.8991466854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.8540700226, 47.0883824388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1767648181, 46.809746805 ], [ -119.1767815159, 46.8114994409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4227108674, 46.6969057794 ], [ -118.4122698552, 46.7012162608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1863875328, 47.6405133468 ], [ -122.1869038184, 47.6636304786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9389895243, 46.9474951907 ], [ -122.9354180565, 46.9596763245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4871781519, 46.6713847636 ], [ -120.49646088, 46.6596353982 ], [ -120.4989356807, 46.6492770518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6914263595, 45.6358581387 ], [ -122.6938570638, 45.637225155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.9765640486 ], [ -123.6272286689, 46.9765532394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111019043, 47.687150654 ], [ -117.4111371057, 47.6944973222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7831803897, 46.6698379874 ], [ -123.7671904335, 46.6744470342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4351007945, 47.7154472911 ], [ -117.4364218141, 47.7154395468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.1987611119 ], [ -122.1296885992, 48.2003311116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.1230525484 ], [ -122.5946667739, 48.1516803947 ], [ -122.6064434153, 48.1635594746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6532972455, 47.5655345715 ], [ -122.6511293212, 47.5655459942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.6101927227 ], [ -121.6663638136, 46.6141909864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5888375562, 45.9758111476 ], [ -121.6125293313, 45.9625721062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7397102898, 46.7012896138 ], [ -123.7437635985, 46.7153016927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304093084, 47.6079523826 ], [ -122.3286460195, 47.6218398679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0051653665, 47.2658148473 ], [ -123.0029655026, 47.2660406347 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588364929, 46.2122195073 ], [ -119.1509779825, 46.2148765642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.9792119734 ], [ -122.7482397955, 48.9864873577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8859488488, 46.5202816438 ], [ -123.8934297223, 46.5484187108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857699354, 46.9900928031 ], [ -123.8857527631, 46.9927676585 ], [ -123.8939276953, 46.9931418107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1898949617, 47.9790684157 ], [ -122.188666249, 47.9794305969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.5508465619 ], [ -122.4221853179, 48.5654425158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.2652637647, 49.0023331331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578488817, 48.2895410127 ], [ -122.657837721, 48.2913280407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1703775752, 47.7449382474 ], [ -118.1736598311, 47.7883685846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1625335373, 47.628203114 ], [ -118.159705125, 47.6427340926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9070616699, 46.6806375323 ], [ -119.9166346542, 46.6972957966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063789003, 47.9520311616 ], [ -122.094618564, 47.9514925058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6959320726, 48.9034555044 ], [ -121.6713565113, 48.8871755279 ], [ -121.6683746385, 48.8735964021 ], [ -121.6739808813, 48.8758038472 ], [ -121.6594897464, 48.8688630894 ], [ -121.6580262283, 48.8640419461 ], [ -121.6547619135, 48.8663081545 ], [ -121.6589172471, 48.8590433627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.9468811492 ], [ -118.6917968125, 47.9537164275 ], [ -118.7001439176, 47.9612741069 ], [ -118.7007666934, 47.9715755988 ], [ -118.6932366444, 47.9858042203 ], [ -118.6928786502, 47.9958498529 ], [ -118.6865576547, 48.0003976807 ], [ -118.6881097384, 48.0051631789 ], [ -118.6811911375, 48.013475131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7300552535, 48.6419111855 ], [ -118.7010950406, 48.6529300754 ], [ -118.6850050975, 48.6506492932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155190209, 48.2762460851 ], [ -117.7155515131, 48.2809311397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5813429939, 47.3109726485 ], [ -122.5934601063, 47.3246446179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6425828517, 46.9708731434 ], [ -118.6598639151, 46.9705949371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350299238, 47.2432097813 ], [ -122.4199297039, 47.2443571022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7849363108, 46.3717532207 ], [ -123.7567194267, 46.3556632852 ], [ -123.7347135662, 46.3543537474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3536592638, 47.6310538708 ], [ -119.3595018472, 47.6413739111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6730634499, 47.4637949376 ], [ -117.6232200849, 47.4699050473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2827858737, 47.6810526384 ], [ -117.2799050476, 47.6816356586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3041069002, 47.4122978378 ], [ -120.3055238703, 47.415408638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3405498465, 46.0739014753 ], [ -118.3255247068, 46.0817350589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6082425787, 48.4287878768 ], [ -122.6067917986, 48.4370383266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4857687926, 48.8914094656 ], [ -122.464240563, 48.891667265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8144960068, 46.9745245963 ], [ -123.8141567727, 46.974248551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924369341, 47.3216137304 ], [ -122.3903629125, 47.3216340622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9090833449, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2978771665, 47.6166084807 ], [ -119.2928419495, 47.6157241973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6661977768, 48.2841306381 ], [ -122.6596669668, 48.2863597414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5785447315, 46.6857085787 ], [ -121.5789679391, 46.6896872972 ], [ -121.562292404, 46.6954679099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3134257955, 47.2979565948 ], [ -122.3133300405, 47.303094966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742471673, 45.7884633898 ], [ -122.6813333636, 45.8063615363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3592834167, 46.069578111 ], [ -118.3538671999, 46.0696978456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.5553173378, 47.8095387896 ], [ -122.5310414126, 47.8095136583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.5091003278 ], [ -122.3329165329, 47.5234893652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1404542596, 47.7309772963 ], [ -122.1317677799, 47.7144009727 ], [ -122.1321920922, 47.6952826792 ], [ -122.1282535153, 47.6874070809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9814105695, 46.7572813912 ], [ -121.9474994672, 46.7550419284 ], [ -121.9273783017, 46.7493552016 ], [ -121.9220375425, 46.7426875865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.7937508078 ], [ -118.5684177308, 46.7947224844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5009591571, 46.6232675075 ], [ -120.4880037429, 46.6075314018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9401799875, 47.1960778907 ], [ -120.9437717492, 47.1965328965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042307641, 46.8878717782 ], [ -124.104302567, 46.8959740416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6384906851, 46.3352078778 ], [ -123.6214626929, 46.3469762238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1277899267, 46.2435755653 ], [ -119.1266194124, 46.246327603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9741828621, 46.3270182624 ], [ -117.9793951542, 46.3369573434 ], [ -117.9785387727, 46.3464638557 ], [ -117.9524909367, 46.3563728876 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8655443332, 47.5625960148 ], [ -121.8347869038, 47.5539873994 ], [ -121.8406843431, 47.5514635735 ], [ -121.8313657266, 47.5369638292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9856625426, 47.7451686523 ], [ -121.9845733907, 47.7513804106 ], [ -121.9557053136, 47.7697208879 ], [ -121.9740171693, 47.7885071981 ], [ -121.9823417916, 47.8127801291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7542359838, 46.978403612 ], [ -123.7445979677, 46.9735726358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0130934852, 46.3059829046 ], [ -119.9861758662, 46.3060765495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1251815178, 48.2002933787 ], [ -122.1236120707, 48.2002782394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4371558585, 48.7076989882 ], [ -119.4360006417, 48.7109840533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158228483, 45.5949143216 ], [ -122.5156287011, 45.5948612042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5964124559, 48.8920606997 ], [ -122.5983885994, 48.8916617976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0078653292, 47.872487544 ], [ -121.9908494983, 47.8657174136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3648165287, 46.8790297995 ], [ -117.364773078, 46.8799063068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.2348611365 ], [ -122.5100030807, 47.2490381759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.3946951929, 47.7570939377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4598946117, 45.7123396511 ], [ -121.4253522035, 45.6996005372 ], [ -121.4036102525, 45.6993830974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9598608634, 46.7119804203 ], [ -122.9564753528, 46.7112869506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.0490596047 ], [ -122.2748305032, 46.0636006917 ], [ -122.2464336415, 46.0556053087 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0654931199, 47.8179312301 ], [ -122.0562501932, 47.8299985078 ], [ -122.0295956843, 47.8298762266 ], [ -121.9992299624, 47.8523397018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1364781908, 47.6384421787 ], [ -122.1351290082, 47.640071799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5469856665, 45.8168217556 ], [ -122.5220688196, 45.8532467256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2328875048, 47.9233521925 ], [ -122.2231765605, 47.9226576514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1299980522, 48.2057570202 ], [ -122.143389182, 48.2246779017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2096024616, 48.821069883 ], [ -122.2025293491, 48.8159609661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9379417422, 47.660685361 ], [ -117.9167021499, 47.6653110039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4919517544, 47.2348877891 ], [ -122.493797523, 47.2348611365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7648711374, 47.0612918893 ], [ -122.7645455776, 47.0564842559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.0115068577 ], [ -122.6881983355, 47.0090276156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3499363576, 47.2430303348 ], [ -122.3365632968, 47.2450397981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119629623, 47.3522809023 ], [ -122.3092462539, 47.3580817971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1579964315, 46.1391116684 ], [ -118.1502609571, 46.1420400459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205033055, 46.3313990906 ], [ -120.3205390391, 46.3386430967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5808735402, 47.3353309836 ], [ -120.568278873, 47.3360585763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.3725592844 ], [ -122.2006150998, 47.3722720586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7334112553, 47.6434838531 ], [ -117.690253067, 47.6430952782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3250529195, 47.8213297085 ], [ -122.3228862469, 47.8212957342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2574451577, 47.2018821101 ], [ -122.254047685, 47.2009435128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.6141909864 ], [ -121.6577255991, 46.6239161848 ], [ -121.6160035758, 46.6478940682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9727960208, 46.3237819677 ], [ -117.9741828621, 46.3270182624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5243096729, 47.5048277184 ], [ -122.5104823423, 47.5048487373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224579886, 47.646211059 ], [ -122.322462732, 47.6496170314 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2569845795, 46.810235263 ], [ -119.2181964942, 46.8141634951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4460453581, 46.3716676172 ], [ -119.4406556774, 46.3808764649 ], [ -119.4228141497, 46.3832991036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4275808374, 47.3168023421 ], [ -122.4233116711, 47.3170469005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8577283824, 46.6939486439 ], [ -123.8431696828, 46.6984120458 ], [ -123.8153513788, 46.6707407117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0991109684, 47.18070609 ], [ -123.0971571723, 47.1818128402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8597476834, 45.8244297002 ], [ -120.8318672716, 45.8230595037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5799543409, 48.3644758133 ], [ -119.5450859846, 48.396250068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2857890361, 46.5613718886 ], [ -122.2752434827, 46.5583246063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932262899, 47.1183648911 ], [ -122.2930833684, 47.1256521371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7921120527, 45.8483754133 ], [ -120.7709004569, 45.8615514769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6811911375, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.6745338956, 48.0329393311 ], [ -118.668829663, 48.0503155854 ], [ -118.6738246026, 48.0692605239 ], [ -118.69074626, 48.0828527406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8936094988, 46.5891345777 ], [ -122.904494363, 46.6021302692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1135516316, 47.4532319373 ], [ -123.1155512302, 47.4448279782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176442321, 47.2382129228 ], [ -122.4083499421, 47.2391797955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259718026, 47.398107085 ], [ -122.6257721122, 47.4000022997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2243682744, 47.4778018949 ], [ -122.220911129, 47.4788254663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5514961681, 47.9936326927 ], [ -117.5663025103, 47.9938759436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.6999410067, 45.923000308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.9425126462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6181368996, 47.2500373035 ], [ -119.5985546782, 47.2518971615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045144925, 47.6452852227 ], [ -122.3045734555, 47.6490440633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4447329829, 47.6326990173 ], [ -117.4483713102, 47.6410080356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002782834, 47.2119732363 ], [ -123.1001117785, 47.2128066209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8844965185, 46.2561969531 ], [ -122.8921920489, 46.2675770829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3411431465, 48.4469767522 ], [ -122.3414018352, 48.4590968726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9504462358, 46.8962553703 ], [ -122.9420074404, 46.8959196782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007887846, 46.1084782427 ], [ -122.8925432587, 46.1068065797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838252738, 47.9522510714 ], [ -122.8817445196, 47.9446523903 ], [ -122.8536693945, 47.9407898169 ], [ -122.8137272987, 47.9229521483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.565213602, 46.5434407828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4968769556, 47.7970409839 ], [ -122.4959840812, 47.795839855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8132595013, 48.1004014814 ], [ -122.7885589611, 48.1029421282 ], [ -122.7831995028, 48.1070075798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397125029, 47.6897536118 ], [ -117.2184787446, 47.6944938171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4114871909, 47.7396505482 ], [ -117.411427803, 47.7408474959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395845311, 47.6725795615 ], [ -117.2395516805, 47.6729939622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6947937623, 47.381239063 ], [ -122.680812527, 47.3887654485 ], [ -122.6613065763, 47.3889764709 ], [ -122.6518676217, 47.3854416573 ], [ -122.6528510166, 47.3773323215 ], [ -122.6418945651, 47.3795057214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8008176143, 45.7117126858 ], [ -120.8080597843, 45.7199565014 ], [ -120.8144502763, 45.72130035 ], [ -120.8224992697, 45.743168923 ], [ -120.8229476469, 45.7771798533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6090544172, 47.8521256366 ], [ -122.6020428046, 47.8547635857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1699835707, 47.7530524149 ], [ -122.1688952325, 47.7523661354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4450607281, 47.0665796514 ], [ -122.4346867332, 47.0834174301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0404861073, 46.1612119681 ], [ -119.0494766974, 46.168670079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293907946, 47.1928634023 ], [ -122.22939549, 47.1916397461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7868512068, 46.9671019999 ], [ -123.7880909112, 46.967896691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114938746, 46.8624815133 ], [ -122.3309551779, 46.8686509313 ], [ -122.3461519832, 46.8646712563 ], [ -122.3485996117, 46.8698964015 ], [ -122.3412473353, 46.8783735591 ], [ -122.3590200387, 46.8898382458 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2184787446, 47.6944938171 ], [ -117.1924425951, 47.69589869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2088000662, 47.9150721941 ], [ -122.2075664829, 47.9152876806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1327070433, 48.1526864406 ], [ -122.1167643996, 48.1516314237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.8214634366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8880451706, 47.0349627247 ], [ -122.8753021958, 47.036689104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4923909755, 46.9379773099 ], [ -122.4841720635, 46.9380070182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2203529267, 47.5824516264 ], [ -122.2000543534, 47.5787190739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4694374549, 46.5065542918 ], [ -120.4796170905, 46.5164951013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754010062, 47.4873552206 ], [ -117.5647334404, 47.498272492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4676807101, 46.7023866982 ], [ -117.4672879853, 46.7034528115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1998163094, 46.3311315335 ], [ -120.1801941156, 46.3452788522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.6614633424 ], [ -122.2859448482, 47.6619893558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2756369244, 47.8708807894 ], [ -122.2748522475, 47.8718113531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299573082, 48.0326119562 ], [ -122.7207360254, 48.0268110537 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3065286882, 47.4166683919 ], [ -120.3170457721, 47.4294662441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6206863347, 46.6605003365 ], [ -120.6142357749, 46.6544908714 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3642482346, 46.8895898765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.2142916788 ], [ -122.4627470202, 47.2159591708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0448319243, 47.3997061319 ], [ -122.0393244339, 47.4079731902 ], [ -122.0050649195, 47.4194364888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4343801512, 47.1489709589 ], [ -122.434250602, 47.1554309896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2947757571, 47.4153242228 ], [ -120.2941276522, 47.4130153494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969253171, 47.4452667572 ], [ -122.1982503924, 47.4471972302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5706924506, 47.8037291147 ], [ -122.563306341, 47.80561327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2449869401, 48.1566054926 ], [ -122.2383520005, 48.1519754742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5528157131, 45.6121505059 ], [ -122.5563050504, 45.6167350271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6248931708, 45.9283298654 ], [ -119.603047109, 45.9369049065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.8423792383, 47.8397664657 ], [ -117.8553269485, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9719468032, 47.5356190389 ], [ -121.9423990512, 47.5302140606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.3633416819 ], [ -119.5799543409, 48.3644758133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1900214152, 48.1598254833 ], [ -122.1930283776, 48.176135222 ], [ -122.1994394218, 48.1842323462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.8848116859 ], [ -118.3329102877, 46.9112865847 ], [ -118.3434404794, 46.915750159 ], [ -118.3453584296, 47.002118431 ], [ -118.3523615276, 47.0106200548 ], [ -118.3478251995, 47.0405415449 ], [ -118.3651684181, 47.0601072344 ], [ -118.3656317125, 47.112475028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206620248, 47.6769065098 ], [ -122.32934455, 47.6957536487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9384153356, 47.1948996063 ], [ -120.9401799875, 47.1960778907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0926019856, 47.8681495864 ], [ -119.0928254707, 47.8804577602 ], [ -119.0773477173, 47.8901190715 ], [ -119.0641730438, 47.9058725038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543101229, 46.7193545946 ], [ -122.9555240563, 46.7165039902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922430833, 47.4941319797 ], [ -122.1953416359, 47.4994564392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1511457837, 45.8183340264 ], [ -121.1463960115, 45.8217818712 ], [ -121.1203944047, 45.8182961934 ], [ -121.1152881651, 45.8250288655 ], [ -121.1000196081, 45.8249268805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1340104468, 47.3579773429 ], [ -122.1281070641, 47.3580335124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375517758, 45.9498941429 ], [ -119.3324665654, 45.9393404761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8225853934, 48.534895129 ], [ -117.8178886082, 48.5253988774 ], [ -117.804791347, 48.5147408998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0898201478, 47.8397078467 ], [ -120.0538459389, 47.8359849929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.6124988865 ], [ -118.7206203577, 47.6136015226 ], [ -118.7216865022, 47.7565875063 ], [ -118.7101114713, 47.7579202996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7645455776, 47.0564842559 ], [ -122.7646365596, 47.0522855716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9450533075, 48.8896410913 ], [ -121.9420276289, 48.8891584197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2167143776, 47.9113439649 ], [ -122.2129385008, 47.91279953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2247355074, 47.5862739437 ], [ -117.2216074513, 47.5969812615 ], [ -117.2235791152, 47.6164555058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0154120928, 48.0674017673 ], [ -122.0098989742, 48.071628269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1509779825, 46.2148765642 ], [ -119.1411095244, 46.2154260444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7189725743, 47.1993671783 ], [ -120.7080243736, 47.2036487713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0987142773, 47.3694924181 ], [ -122.0815564766, 47.3772542241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5906026172, 45.6527948204 ], [ -122.5816054123, 45.655987363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2975114504, 46.3001018541 ], [ -119.3049039776, 46.2928299037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.1047382405 ], [ -122.9512089429, 46.1157614264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2796331186, 45.6906882361 ], [ -121.2138792304, 45.6734611598 ], [ -121.1928665076, 45.6576560325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.398065622, 47.3956087457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9770150376, 47.8170244607 ], [ -119.9747908435, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7043255452, 46.7738226067 ], [ -117.6939737271, 46.7889237158 ], [ -117.6778315328, 46.7936524449 ], [ -117.6550649229, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2579004931, 47.2918141977 ], [ -122.254118291, 47.2998428644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.7703035237 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.0143287806 ], [ -122.1915989356, 48.0125732298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8548278199, 47.23342187 ], [ -119.8533663973, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.6538234455 ], [ -117.3302489185, 47.653713239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7656400398, 46.9512725149 ], [ -123.7695997378, 46.9546351666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4512101301, 46.5770853276 ], [ -120.4354637214, 46.5745924593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -119.0058747596, 46.7008068298 ], [ -119.0098352163, 46.7101063353 ], [ -119.022009186, 46.7204224263 ], [ -119.0487109157, 46.7291966819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.9577400504 ], [ -122.619337819, 45.9439148266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4117450085, 47.6019773285 ], [ -117.4390078118, 47.6240624799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6164943357, 48.7884410173 ], [ -118.616803513, 48.7959551869 ], [ -118.6034157792, 48.8049107122 ], [ -118.5916182675, 48.8270264864 ], [ -118.5921296026, 48.8354347926 ], [ -118.6039372517, 48.8559091636 ], [ -118.6063379125, 48.8732863748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8642395904, 47.5111841759 ], [ -121.8530540341, 47.5118709577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.251298774, 48.0998571166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5832793235, 47.4818861833 ], [ -117.581932979, 47.4825221847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7004740827, 46.8819430195 ], [ -122.6888591294, 46.8883629314 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356102101, 45.5801631372 ], [ -122.4266731536, 45.5798853327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.3241654589, 47.7296158195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4698317487, 47.5426197192 ], [ -119.4532411733, 47.5665696629 ], [ -119.4362688029, 47.5726405798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471693341, 48.9195294698 ], [ -122.3234409469, 48.9201959718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0997120272, 47.2056969535 ], [ -123.1011620507, 47.2072125648 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219074037, 45.8568488308 ], [ -122.5200551004, 45.865996916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4131299621, 48.4502154271 ], [ -122.3810673208, 48.4573156123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.5417260081 ], [ -122.6349019011, 47.5414235496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9527396272, 46.720041065 ], [ -122.9522499816, 46.7274803396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3647146566, 46.8810185511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3123636673, 47.3477991611 ], [ -122.3119629623, 47.3522809023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.1848015959 ], [ -120.8977278871, 47.1804239536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9526076358, 48.5773917833 ], [ -117.9894375686, 48.5890571016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329469401, 47.5673326833 ], [ -122.6329141514, 47.5710682046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.9961770865 ], [ -122.5440284191, 47.00195264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3452527917, 47.741452447 ], [ -122.3454890434, 47.7524905174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4986984819, 47.3690721351 ], [ -119.4972510691, 47.3702850298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6572408493, 47.5983589324 ], [ -120.6540439356, 47.5990844387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156287011, 45.5948612042 ], [ -122.4943892728, 45.5890557217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1415565005, 47.4513001292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.7323956011 ], [ -117.1741648142, 46.7379128734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157587458, 47.281707768 ], [ -122.5157406775, 47.2908042195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455886366, 47.4412210855 ], [ -122.2438389364, 47.4568632492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5232962062, 48.4094700138 ], [ -119.5256803341, 48.4105086385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.8115322114 ], [ -122.4859938914, 48.8150001938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9658761326, 47.1936165169 ], [ -120.9280333907, 47.1893145679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5087171766, 47.1447737983 ], [ -122.4989188555, 47.1501796155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2635417231, 47.9221791593 ], [ -122.2510997896, 47.9232511801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.9040186992, 47.1886262402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871847394, 47.5018573254 ], [ -122.1826210947, 47.4988151232 ], [ -122.1740778642, 47.5058207686 ], [ -122.1598568622, 47.5046576599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299951107, 48.9621767777 ], [ -122.7284141787, 48.9757559926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4189635614, 47.8314948096 ], [ -117.4231431671, 47.8843518204 ], [ -117.4538503546, 47.9182613584 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7195199906, 45.6499177453 ], [ -122.7308174939, 45.655963797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.0903093008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9667501531, 46.379458651 ], [ -119.9507168728, 46.3970662882 ], [ -119.9479351658, 46.4141956254 ], [ -119.9373599037, 46.4337298932 ], [ -119.938319542, 46.4575952693 ], [ -119.9310180931, 46.4741304562 ], [ -119.9017083155, 46.497304085 ], [ -119.8843350959, 46.5050823884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9247009245, 46.1221385232 ], [ -122.9183274849, 46.1179762286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.6599920959 ], [ -117.4133229534, 47.6590747649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1523661986, 47.7330804139 ], [ -122.1404542596, 47.7309772963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044776202, 47.5482634566 ], [ -117.7044515804, 47.551027418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7888286163, 48.0414353719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8979905603, 47.6935842347 ], [ -122.9000668498, 47.6772665999 ], [ -122.9323014096, 47.6518739395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0036329276, 47.3094647022 ], [ -122.0116242643, 47.3330404711 ], [ -122.0182971717, 47.3410067723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598186601, 47.7602527368 ], [ -122.1570006357, 47.765024263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6816043754, 48.269260962 ], [ -121.6743723204, 48.2692255901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.5271301706, 47.0069958392 ], [ -122.460282873, 47.0590365811 ], [ -122.4450607281, 47.0665796514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5259931748, 48.7945741767 ], [ -122.5446847676, 48.8138630642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3070123443, 46.567981686 ], [ -123.2999170842, 46.5700274981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3197480792, 47.6816333663 ], [ -122.318091806, 47.6824319974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9051023405, 46.1847118489 ], [ -122.9070746013, 46.1900492586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1727879342, 46.7397697342 ], [ -117.1710414458, 46.7424904094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8823509757, 46.9792200862 ], [ -123.8857480999, 46.9806448411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0065316221, 47.0552123027 ], [ -122.9998190814, 47.0505006375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3235459955, 47.4769045316 ], [ -120.3207059196, 47.4808771816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7872865838, 47.4951204522 ], [ -121.788376675, 47.4940653907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.8251972811 ], [ -122.2431153196, 47.8256765678 ], [ -122.2331720885, 47.8210669673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.8829802143, 46.7127174081 ], [ -120.8736869896, 46.7122569007 ], [ -120.8457986157, 46.7214615642 ], [ -120.8187846966, 46.7194429167 ], [ -120.8111956085, 46.7266981663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5746576675, 46.5626246259 ], [ -123.5402947407, 46.5576923778 ], [ -123.5203150937, 46.5452203474 ], [ -123.494926021, 46.5410094666 ], [ -123.4164514949, 46.5508891636 ], [ -123.3938977324, 46.5443022941 ], [ -123.3746653206, 46.5519403275 ], [ -123.3387554018, 46.5498400922 ], [ -123.3181533134, 46.5537699057 ], [ -123.3070123443, 46.567981686 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7445979677, 46.9735726358 ], [ -123.7381959686, 46.9710907007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0641730438, 47.9058725038 ], [ -119.0563552656, 47.9153765852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6507363437, 47.7695891636 ], [ -122.6515427568, 47.7916136315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7477462633, 46.6933741544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616138919, 48.7607636257 ], [ -122.4622283159, 48.7681610573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8037680338, 46.4381163639 ], [ -122.7267485599, 46.4373575595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.2472806543 ], [ -123.045670011, 47.2478374662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.6090058957 ], [ -122.5709358838, 45.6080222232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538347685, 46.9524134967 ], [ -122.5468403017, 46.9927649775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525513618, 46.6447887503 ], [ -118.5495094772, 46.6453560334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2193270337, 47.30338806 ], [ -122.1869343886, 47.298301147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6581170517, 45.6185588654 ], [ -122.6334221513, 45.6184980719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8422504198, 46.4113220356 ], [ -123.8349983211, 46.3948956565 ], [ -123.8281981659, 46.3913609219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1468751595, 48.3068128255 ], [ -118.1631186706, 48.3520288123 ], [ -118.1715522275, 48.4091006331 ], [ -118.1708437963, 48.4288296254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534053473, 47.2223294365 ], [ -119.8533828874, 47.231885111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7619942648, 48.0632663696 ], [ -117.7552102892, 48.1167618601 ], [ -117.7327781122, 48.1383013951 ], [ -117.7260465116, 48.1503593139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7227122233, 48.1685422116 ], [ -117.7262847571, 48.1762204765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.5902637122 ], [ -120.6676433679, 47.5927812587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2546464371, 46.9816911587 ], [ -119.2059547126, 46.9847954432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857415687, 47.7548599981 ], [ -122.1840627382, 47.7606381882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.7801298015 ], [ -122.599982644, 45.7801453767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0957237818, 47.1572988202 ], [ -123.095106414, 47.1429892693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2755457279, 47.8209143725 ], [ -122.2658705764, 47.8207446489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.7740832951 ], [ -118.2886572256, 46.7879317008 ], [ -118.3097453971, 46.8098489829 ], [ -118.3099862619, 46.8161196557 ], [ -118.3217641545, 46.822539058 ], [ -118.3321392421, 46.8389818766 ], [ -118.3362638132, 46.8534807148 ], [ -118.334575397, 46.8848116859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876095018, 46.1576443082 ], [ -122.9833545966, 46.1555474575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9179703845, 46.9819334325 ], [ -123.92417003, 46.9825144102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.3333652583 ], [ -118.6922310931, 47.3333156666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2554591689, 47.1454962289 ], [ -117.2677060281, 47.1615080182 ], [ -117.2891774357, 47.1679524761 ], [ -117.2958452372, 47.1833254981 ], [ -117.3295786243, 47.1869824575 ], [ -117.3546879112, 47.2034961093 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8324499347, 47.1042259268 ], [ -119.8307822154, 47.1036973105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8114502592, 46.6993848447 ], [ -123.8253745361, 46.709170275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.2240920293 ], [ -119.0997711539, 46.223724902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8847738398, 47.9855759007 ], [ -122.8820241615, 47.968795396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7468893165, 47.2346362782 ], [ -119.7251709256, 47.2489121615 ], [ -119.6181368996, 47.2500373035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6613049438, 45.647498224 ], [ -122.6496497972, 45.6504231837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068708389, 45.6018672646 ], [ -122.4055026586, 45.5961003788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.7289642557 ], [ -122.9536737749, 46.7289461561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151301203, 47.6720446521 ], [ -122.1133617704, 47.671528366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3015320727, 48.1814415097 ], [ -117.3012126424, 48.191267265 ], [ -117.2897176202, 48.2065229267 ], [ -117.2914802502, 48.2273126077 ], [ -117.2830862535, 48.2366828375 ], [ -117.2845754339, 48.2812765736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3271587307, 47.7136272159 ], [ -122.3242862882, 47.7185219104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7384627186, 48.5359258924 ], [ -121.7223369447, 48.5319460862 ], [ -121.7075219149, 48.5191466035 ], [ -121.6760393017, 48.5151612873 ], [ -121.6513860232, 48.5041934528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6585157988, 47.0514934706 ], [ -120.6291812643, 47.0396007246 ], [ -120.5867415871, 47.0023957095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380018087, 48.9060853167 ], [ -122.1375909505, 48.9171432802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.3982856502 ], [ -120.2564967356, 47.3853137258 ], [ -120.1922237193, 47.3773145311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8505614694, 46.6606108889 ], [ -118.8367462093, 46.6949715887 ], [ -118.8348854358, 46.7191386362 ], [ -118.8208435355, 46.7340210389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9517110134, 46.1469021572 ], [ -122.9259280616, 46.1463384374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8566143534, 46.4366406332 ], [ -123.8714474882, 46.4476360198 ], [ -123.8740416373, 46.4591167752 ], [ -123.8878297764, 46.4791584777 ], [ -123.8859488488, 46.5202816438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4389284985, 48.705561124 ], [ -119.4373980431, 48.7072992033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7667323197, 48.110171865 ], [ -122.7608305412, 48.1125877254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6459065292, 48.3044536381 ], [ -122.6434331584, 48.3065806606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8464511089, 47.4246031872 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260927168, 47.3890549862 ], [ -122.6259718026, 47.398107085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.0525359155, 46.466597142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0967671874, 47.0341238279 ], [ -123.0754529552, 47.0405018922 ], [ -123.0577148184, 47.0409268562 ], [ -123.0223763118, 47.0580771821 ], [ -123.0124274602, 47.0563166427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9923916449, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2705939775, 46.2873405261 ], [ -122.2586933356, 46.2829628948 ], [ -122.2184077423, 46.290256532 ], [ -122.1949063653, 46.2823305403 ], [ -122.2019102926, 46.2789405654 ], [ -122.2166918782, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.2185321118, 46.2775970571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546693813, 47.479786644 ], [ -118.2546196045, 47.4837941362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8311550343, 47.1038712566 ], [ -119.8272576766, 47.106307188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8970765547, 46.9810040205 ], [ -123.902252551, 46.9810452868 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940156325, 48.5236742491 ], [ -122.149310257, 48.5311401242 ], [ -122.1205538564, 48.5260765992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2158884218, 47.8443983695 ], [ -122.2175661581, 47.8496908765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5712528402, 48.1146712556 ], [ -123.5666907268, 48.114021332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.5375786595 ], [ -122.2251116552, 48.5503306146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.8504355115 ], [ -117.3497979206, 46.8597063959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9524909367, 46.3563728876 ], [ -117.9392616292, 46.382620523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3062213119, 47.416281941 ], [ -120.3065286882, 47.4166683919 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2777737236, 47.879481564 ], [ -122.2799690003, 47.8826891954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426668622, 48.1780973091 ], [ -117.0424962708, 48.1830235936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5138862172, 45.7429041091 ], [ -121.5204986539, 45.7575928617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4478142216, 47.6480936772 ], [ -117.4195602915, 47.6526347407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3195807175, 47.4716032095 ], [ -120.3025873431, 47.4686065666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.8448314506 ], [ -122.5812917606, 48.852425293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.0317308992 ], [ -119.2267789418, 46.0180871043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1384722057, 46.892262265 ], [ -119.1444896159, 46.8984851562 ], [ -119.1363999204, 46.9111066773 ], [ -119.1279706055, 46.9485582437 ], [ -119.1186109827, 46.9595266729 ], [ -119.1179382964, 46.9701782337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0023772267, 47.9485330892 ], [ -119.0032812985, 47.947389362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0973376697, 47.1826544128 ], [ -123.0984327789, 47.1898992789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.1010693917, 47.9456237913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207560536, 47.5899474422 ], [ -122.3205050716, 47.5975079138 ], [ -122.3265267058, 47.6034433933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6168907485, 47.0952000036 ], [ -122.5963933831, 47.1027062195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1099317298, 48.0262394664 ], [ -122.1102365439, 48.0279042262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523268647, 47.8961954425 ], [ -117.3511036365, 47.903873351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.4104336223, 48.6904887705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059141852, 48.2122640442 ], [ -122.7254611419, 48.2111110539 ], [ -122.7399066254, 48.2292007745 ], [ -122.7148061182, 48.2403092978 ], [ -122.7098709231, 48.2523750469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5794120249, 45.6676715094 ], [ -122.587012075, 45.6793317854 ], [ -122.6008744257, 45.6874395737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.4788254663 ], [ -122.2194720778, 47.4795067364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6718045785, 45.623437204 ], [ -122.6654874391, 45.6200688002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.9066976691 ], [ -122.4854389282, 48.9351240348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447271345, 46.3081264556 ], [ -124.0447225968, 46.3088719536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499665548, 45.5969306355 ], [ -122.5509906905, 45.6012653728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0939413826, 46.2498784583 ], [ -119.0917467448, 46.2503035218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5220688196, 45.8532467256 ], [ -122.5219074037, 45.8568488308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3502034489, 47.9137043437 ], [ -117.3506178988, 47.9432704768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0050649195, 47.4194364888 ], [ -121.9839763366, 47.4320430934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8072496646, 45.8123784315 ], [ -120.8039379118, 45.8264664938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931738148, 47.9220879011 ], [ -122.2914374281, 47.9220287545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.9460567842 ], [ -122.4852153791, 48.9642388691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647296934, 47.4988542076 ], [ -117.5647059706, 47.5011897492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0476299632, 46.6285743251 ], [ -123.0183397646, 46.6437586626 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7225935085, 47.7708524695 ], [ -118.72180243, 47.8307542065 ], [ -118.7158171633, 47.8418244835 ], [ -118.7177993581, 47.8557884326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4220672954, 48.4427374565 ], [ -122.390445812, 48.4422989059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.9818766144 ], [ -122.2043471222, 47.9819297636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074561545, 47.7875219182 ], [ -117.4059782511, 47.8001660961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.8660328507 ], [ -119.7003175758, 45.8904645213 ], [ -119.6631819174, 45.9131840003 ], [ -119.6248931708, 45.9283298654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0561354019, 46.2902587967 ], [ -124.0480975411, 46.3020519269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2233288919, 47.9095861548 ], [ -122.2167143776, 47.9113439649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.4691766915 ], [ -123.9291735447, 47.4763535553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6987408734, 47.5866961105 ], [ -122.6986407419, 47.5960190089 ], [ -122.7047490044, 47.6007985246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8819927368, 48.5472128187 ], [ -117.8800458807, 48.5473265211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2236317238, 47.6278867921 ], [ -117.2398468351, 47.6445327832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6993155614, 48.2593609442 ], [ -122.6730425589, 48.2671633791 ], [ -122.6694634271, 48.2806289911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4223417195, 47.4282688783 ], [ -121.4110411782, 47.4243576922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.0374844302 ], [ -120.6092218493, 47.0480585921 ], [ -120.6294282804, 47.0744775232 ], [ -120.6552820758, 47.0921616821 ], [ -120.6686598398, 47.12002506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710228472, 47.4819453096 ], [ -122.2744143572, 47.4850652066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2742164355, 47.8479952638 ], [ -122.2768149357, 47.8726630238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4072691049, 47.2393529405 ], [ -122.4019360634, 47.239469308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485727781, 47.1677245225 ], [ -122.1441855248, 47.1674591072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5691788837, 47.5946199775 ], [ -117.5679132072, 47.5937450378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288644625, 47.741140359 ], [ -122.3297726533, 47.7436959378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6075822125, 46.9413631902 ], [ -122.6065410768, 46.9419413133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7728740575, 48.109600754 ], [ -122.7706871351, 48.109957957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3268526166, 46.297790684 ], [ -119.3204993439, 46.2934725609 ], [ -119.3085183423, 46.2931233698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6024268764, 48.353805119 ], [ -119.5950487686, 48.3559969968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127555504, 47.4701556709 ], [ -122.3009682136, 47.4657531835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1698418075, 47.5801249842 ], [ -122.1380752869, 47.5786572039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148285272, 47.8398314423 ], [ -120.0127832253, 47.8398059908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.7163662119, 47.8813080117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2497713089, 47.7583930838 ], [ -122.2436783372, 47.757435704 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939186583, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413820969, 48.0569482281 ], [ -117.7562347833, 48.0595083721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.3833072606 ], [ -122.22977526, 47.3833226703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473765563, 47.3813544414 ], [ -122.2474225905, 47.3852649438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.2478374662 ], [ -123.0350161303, 47.253938049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.5047904492 ], [ -122.5947129537, 47.504905792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5211794514, 48.4039684769 ], [ -119.5082283693, 48.4171152484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4341632669, 48.9323868359 ], [ -119.4351159777, 48.9331846153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832074613, 47.3815237106 ], [ -119.4832088344, 47.3835435175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.8850832339 ], [ -124.1116144402, 46.8868092337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0977227603, 47.4988510864 ], [ -122.0870325094, 47.5100083536 ], [ -122.0698540138, 47.5181410628 ], [ -122.0619448123, 47.5311845564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2485902926, 46.2609157729 ], [ -119.2279364121, 46.2727922262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1798921353, 48.0395761426 ], [ -122.1790908365, 48.0404147216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0422700836, 48.2472730431 ], [ -122.026469474, 48.2565227693 ], [ -122.0229079186, 48.2627125108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284987148, 48.409540793 ], [ -119.5284865191, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046484797, 46.9587267173 ], [ -123.8025700515, 46.9620278945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.9984489029 ], [ -117.2767589116, 46.0044012908 ], [ -117.2809410701, 45.9989894093 ], [ -117.2798172641, 46.0054474608 ], [ -117.2576613456, 46.0272223173 ], [ -117.2517268724, 46.0417290027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8107624661, 47.2341040289 ], [ -119.7681464636, 47.2343020206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -119.998439324, 46.2111215603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9919981435, 46.5668134388 ], [ -118.9943545429, 46.5674942159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.3898783885, 47.3927710931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3295269338, 46.375119312 ], [ -120.3331696319, 46.3769677074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7647638069, 47.0392228487 ], [ -122.7386443358, 47.0349276176 ], [ -122.7287961018, 47.0250540857 ], [ -122.7271458299, 47.0178712921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2865268063, 47.3906729649 ], [ -122.2793135196, 47.389970334 ], [ -122.2714942577, 47.3774662501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4226493275, 46.383209281 ], [ -119.3989176751, 46.3702741916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9033027171, 47.1830360818 ], [ -120.9008694447, 47.1862212903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8153513788, 46.6707407117 ], [ -123.8122989005, 46.6665841945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.1390929944 ], [ -122.0684124432, 47.1438395525 ], [ -122.059029398, 47.1421956268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9075966187, 46.0562013963 ], [ -118.8913479904, 46.0543459185 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509605497, 47.690504212 ], [ -122.5615375286, 47.710001753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159243491, 47.8953256029 ], [ -122.2102027734, 47.9096841492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.5767646402, 47.4862221857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5336093333, 48.5756042234 ], [ -119.5247105217, 48.5852161614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3370276268, 46.2969163285 ], [ -119.3268526166, 46.297790684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4716597285, 46.9377123473 ], [ -122.4423826497, 46.937291079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.6730634499, 47.4637949376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3156584943, 47.5948454186 ], [ -122.3087595806, 47.5900994807 ], [ -122.2940286061, 47.590082601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9833545966, 46.1555474575 ], [ -122.9811418748, 46.1544576439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4363817139, 47.23258819 ], [ -122.4304655405, 47.2333702661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2006150998, 47.3722720586 ], [ -122.1935312742, 47.3693743374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6930399694, 48.5196228035 ], [ -117.6874542357, 48.5197336235 ], [ -117.669804598, 48.503722179 ], [ -117.6364219092, 48.5278741835 ], [ -117.593606156, 48.5397640332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397947306, 47.6583760906 ], [ -117.2397118795, 47.6707021684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9900538253, 48.0834098562 ], [ -121.9904268316, 48.0866632894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1458871745, 45.6207464818 ], [ -121.1493385256, 45.627246477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.3762548928 ], [ -120.3199265565, 46.3750583048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3141855934, 46.416664953 ], [ -120.3142184025, 46.4146304102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0029655026, 47.2660406347 ], [ -122.9709937008, 47.2786751606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5310414126, 47.8095136583 ], [ -122.5178867416, 47.8084398669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4905907506, 47.3968832449 ], [ -121.4746332727, 47.3939164723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.5778363862 ], [ -122.1795081855, 47.5879075274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0036157589, 46.14714661 ], [ -122.9949382898, 46.1422801927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6590763437, 48.2086905534 ], [ -122.6671028849, 48.208880163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0540392956, 46.6280909268 ], [ -123.0476299632, 46.6285743251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.2009435128 ], [ -122.2455904637, 47.1960629254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9569337464, 46.9310727047 ], [ -119.8960760978, 46.9263943244 ], [ -119.8716336143, 46.9032686178 ], [ -119.8543075131, 46.8986913821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0827548583, 46.252250739 ], [ -119.084694014, 46.2595150494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.1553108605 ], [ -122.2929937518, 47.1566288415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0202611393, 47.8413912452 ], [ -120.0194056477, 47.8409567731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4056484865, 47.7456876175 ], [ -117.402291177, 47.749169702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.0607928531, 46.4309790988 ], [ -117.0397725467, 46.4312642493 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3351658289, 46.9428080119 ], [ -117.3342443282, 46.9502697374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8800458807, 48.5473265211 ], [ -117.8743970818, 48.5473938298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.9007887846, 46.1084782427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4344162199, 47.1475294086 ], [ -122.4343801512, 47.1489709589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5675237104, 45.6073013401 ], [ -122.5624136586, 45.6062101725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7488390649, 47.8671786834 ], [ -121.7350857122, 47.8671728801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0562728458, 47.1405796821 ], [ -122.0528218155, 47.1410552733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0009880199, 46.2136750464 ], [ -119.9996278638, 46.2207119718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2638042622, 47.8258077379 ], [ -124.2849702887, 47.8484497473 ], [ -124.3217492312, 47.8548954983 ], [ -124.3313184873, 47.8601934071 ], [ -124.3378207285, 47.8710935066 ], [ -124.3564028382, 47.8868367862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.0446019994 ], [ -124.1654679307, 47.0715130267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7271458299, 47.0178712921 ], [ -122.7247120976, 47.0145460302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3055238703, 47.415408638 ], [ -120.3062213119, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5967641772, 47.4763429271 ], [ -117.5899202161, 47.4791586755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.1315509218 ], [ -123.6671258406, 48.1191174479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2878136748, 46.2595687001 ], [ -119.2860031075, 46.2585535412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3947912458, 46.2315766109 ], [ -123.3894612533, 46.2116841789 ], [ -123.3840920127, 46.2062528444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922736805, 47.4901260728 ], [ -122.1922430833, 47.4941319797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3953437269, 47.0507021736 ], [ -122.3977887884, 47.0531477811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5945415128, 48.3551234308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141163677, 45.8882670084 ], [ -122.5115938422, 45.8889120074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.7546910576 ], [ -121.5492834565, 46.7628032231 ], [ -121.5483113382, 46.7701921391 ], [ -121.554831628, 46.7875507315 ], [ -121.5563143316, 46.8134073659 ], [ -121.5345232327, 46.8339911582 ], [ -121.5189752718, 46.8309746734 ], [ -121.5306436293, 46.8388115136 ], [ -121.5305321021, 46.8422134405 ], [ -121.514777234, 46.8543886165 ], [ -121.5282509494, 46.8561937641 ], [ -121.5302148924, 46.8635071098 ], [ -121.5399470088, 46.8668971706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5896360866, 47.0059926881 ], [ -120.5859736555, 47.0066138323 ], [ -120.5943172222, 47.0140340001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1266194124, 46.246327603 ], [ -119.1264880523, 46.2492677583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156424716, 47.3005954736 ], [ -122.5153285839, 47.3019754864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1012651236, 48.6145465613 ], [ -118.1130354822, 48.6245416722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643165436, 47.8830950253 ], [ -122.2583128195, 47.8895409718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921631348, 48.1882508645 ], [ -122.1437081841, 48.18863098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6524298189, 47.7572284351 ], [ -122.6551873979, 47.7579966203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8303255251, 45.9865466391 ], [ -122.8439980452, 46.0036486101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249389869, 47.5271305474 ], [ -122.3269269693, 47.5291188556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9095978806, 46.3282371415 ], [ -122.9058084856, 46.3540274103 ], [ -122.9078330534, 46.3671239838 ], [ -122.9031362266, 46.3853907412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1024989284, 47.9747837779 ], [ -122.1027482966, 47.978079114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3489538413, 47.8018716143 ], [ -117.3472122709, 47.8244633117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2564882876, 47.6744377468 ], [ -117.2332386303, 47.6740978586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3312487114, 47.4630152497 ], [ -122.3322816003, 47.4672044794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1352981522, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8926430173, 47.1852194677 ], [ -120.8544979241, 47.1749253538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8158546232, 46.9740606365 ], [ -123.8144960068, 46.9745245963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6086838618, 47.8395393993 ], [ -117.6248994904, 47.8447512634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050754567, 45.8579274145 ], [ -122.7086008695, 45.8700022682 ], [ -122.7304474004, 45.8859692149 ], [ -122.7405471815, 45.9025011825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2323979204, 48.5104945464 ], [ -122.2283833788, 48.5104834855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538906727, 46.3719036566 ], [ -122.5340666871, 46.3650761505 ], [ -122.5220157903, 46.3531056437 ], [ -122.5208405998, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.4600261231, 46.3341989605 ], [ -122.4436211994, 46.3327194151 ], [ -122.4239755806, 46.3243794359 ], [ -122.4116026874, 46.3288268712 ], [ -122.4065880617, 46.3248804093 ], [ -122.4105058581, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.3741708168, 46.3113203362 ], [ -122.3510605635, 46.3071011772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2245455295, 47.6632648417 ], [ -120.2234272269, 47.6648157581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471628144, 48.4689593505 ], [ -122.3443533309, 48.4699161341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4651180339, 46.2822112261 ], [ -123.4572843275, 46.2706003653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114439556, 47.4631544785 ], [ -122.1255239767, 47.4635158088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7901966083, 48.1001446551 ], [ -119.7868478019, 48.101573517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.1003946329, 46.424564911 ], [ -117.1253712638, 46.4309663929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4644208312, 46.2537605149 ], [ -119.3970004337, 46.2614856786 ], [ -119.3679545991, 46.2490442826 ], [ -119.3600450664, 46.2396584936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6172366357, 48.3298494085 ], [ -119.6125603258, 48.3338920433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5108612391, 48.7867012138 ], [ -122.5259931748, 48.7945741767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8283708435, 46.8574846811 ], [ -122.7812799701, 46.8608150774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398690039, 47.6488703847 ], [ -117.2398365744, 47.6534457073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3617197932, 48.8661339983 ], [ -117.3624241485, 48.8688400718 ], [ -117.3572304808, 48.8661780923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2764080485, 47.7535766576 ], [ -122.2638528237, 47.7582985129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7973817559, 47.8650366901 ], [ -121.7774669653, 47.8678385583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7803536315, 48.0276618969 ], [ -122.7809989146, 48.0297888001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5324173506, 47.3958007915 ], [ -121.5160199943, 47.3953842075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.1032121332 ], [ -119.322729826, 47.1025870681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5905461616, 47.6429198089 ], [ -117.5826104882, 47.642912863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6437803284, 47.5650600843 ], [ -122.6356948558, 47.5650400988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2995949834, 47.4678600276 ], [ -120.2975047463, 47.4351022237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9365744608, 47.6873896384 ], [ -121.9716304243, 47.6944719968 ], [ -121.9810154345, 47.7012895486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869343886, 47.298301147 ], [ -122.1774995641, 47.3024217933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2103050963, 47.4923049652 ], [ -123.2231492867, 47.4962089759 ], [ -123.2418846075, 47.4953345304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8351070251, 46.2928789335 ], [ -122.8112469946, 46.2969576394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0397574174, 46.474224958 ], [ -117.0422413047, 46.4742309777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5645756943, 48.3674740397 ], [ -119.5324591897, 48.3860626961 ], [ -119.5211794514, 48.4039684769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223421817, 47.6560094062 ], [ -122.321753728, 47.6660998622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622122897, 48.7536867617 ], [ -122.4616138919, 48.7607636257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2538113908, 47.4617511143 ], [ -122.2498888662, 47.4623828171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4107130626, 46.2554072697 ], [ -120.3982811706, 46.2753155879 ], [ -120.3693689354, 46.2786231674 ], [ -120.3580676477, 46.2967738517 ], [ -120.3330101537, 46.3081349737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.2513545129 ], [ -119.0827548583, 46.252250739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276587856, 47.2283207799 ], [ -122.4280346059, 47.2286568082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7194158446, 46.5756303426 ], [ -122.7173359337, 46.5756310576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0451921636, 46.416527455 ], [ -117.0442671142, 46.4171675734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5169772116, 46.6260720818 ], [ -120.5114853073, 46.6260626792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8245858874, 45.6986339731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4156991339, 48.7941935233 ], [ -122.395950267, 48.8041008656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3961715735, 47.919272726 ], [ -119.4353927693, 47.9216556451 ], [ -119.5135000122, 47.950443261 ], [ -119.5329788462, 47.9510554207 ], [ -119.5422997674, 47.9443701814 ], [ -119.564793237, 47.9428888341 ], [ -119.6371724962, 47.9520756207 ], [ -119.6479252829, 47.9603062437 ], [ -119.6534084763, 47.9721497191 ], [ -119.6485168005, 47.9848915126 ], [ -119.6506748055, 47.9912018634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4055514032, 47.6207224415 ], [ -119.3805932317, 47.6235798402 ], [ -119.3647672058, 47.6193901694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8122989005, 46.6665841945 ], [ -123.809145399, 46.6649346237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.2060951858 ], [ -119.1071132149, 46.2075458387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3362411853, 47.4550266445 ], [ -120.3360094985, 47.4608143832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730113456, 47.2256809047 ], [ -117.0730185905, 47.2267941681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289242991, 47.7341017926 ], [ -122.3236068716, 47.7340600888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0941270076, 47.7457487872 ], [ -121.0893942423, 47.7454347093 ], [ -121.0764752001, 47.7551681673 ], [ -121.0775873896, 47.7686150769 ], [ -121.0729087438, 47.773323135 ], [ -121.060451893, 47.7803801069 ], [ -121.0353893482, 47.7843056375 ], [ -121.0149919147, 47.7731379178 ], [ -120.9890649278, 47.7669597776 ], [ -120.9403149112, 47.7817991783 ], [ -120.926773205, 47.7835826432 ], [ -120.911885984, 47.7797192708 ], [ -120.8736181816, 47.7912719586 ], [ -120.8260870372, 47.777964567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8553269485, 47.8483119805 ], [ -117.8483182897, 47.8533575039 ], [ -117.838164281, 47.8740349974 ], [ -117.8385186675, 47.8839866036 ], [ -117.8160774557, 47.904185807 ], [ -117.7729376468, 47.9319295106 ], [ -117.7601643293, 47.9514802553 ], [ -117.7306706015, 47.9778797622 ], [ -117.730227038, 47.9908989454 ], [ -117.7260701767, 47.9948236433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6235085123, 47.0432551254 ], [ -120.6108296856, 47.0345615907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3360094985, 47.4608143832 ], [ -120.3370917545, 47.4657444174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9357154749, 46.9527589941 ], [ -122.9380064027, 46.9527490926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286460195, 47.6218398679 ], [ -122.3255888568, 47.6309781209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4001468865, 46.2808655483 ], [ -119.3888239449, 46.2866351388 ], [ -119.3850550864, 46.2969567513 ], [ -119.3798468993, 46.3001340733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1147080098, 48.2225207152 ], [ -117.0718319169, 48.2146041919 ], [ -117.0491706107, 48.1875683679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6640345732, 48.6790336908 ], [ -118.6592835463, 48.69353696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2343676861, 48.3157860192 ], [ -122.2346365429, 48.3169213007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2010536613, 46.7337602693 ], [ -117.1937212048, 46.7334218163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112846076, 47.6862395483 ], [ -117.4112120534, 47.6843406722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339867358, 48.3531223429 ], [ -117.854425242, 48.4239853112 ], [ -117.9008434138, 48.4812158123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0547323353, 46.1734065603 ], [ -119.0609392727, 46.1762466146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.8299990291 ], [ -117.1906863712, 47.8382800486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8839143851, 46.9770579066 ], [ -123.8824654132, 46.9762996857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3363467181, 47.5916540334 ], [ -122.3366396811, 47.6036659781 ], [ -122.3448873174, 47.6170758429 ], [ -122.3435956074, 47.6246542116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0102677154, 48.2683045733 ], [ -121.9969976219, 48.2744489921 ], [ -121.9882608553, 48.2735411001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1018056421, 47.1837746945 ], [ -123.0966058497, 47.1747523811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2601698309, 48.2506931926 ], [ -124.2595417057, 48.249031188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.4259053325 ], [ -117.2640416943, 46.4083472778 ], [ -117.2471726354, 46.4035618315 ], [ -117.2263614526, 46.4056970206 ], [ -117.2143023696, 46.4117358872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153052769, 48.1518278439 ], [ -122.1937378718, 48.1522064888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796927801, 45.9278618295 ], [ -122.3796394499, 45.9403750242 ], [ -122.3704124175, 45.9461267079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2271386392, 48.1520086536 ], [ -122.2153052769, 48.1518278439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2379325105, 48.3993275149 ], [ -122.2406467581, 48.4027244437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3874436362, 47.0046753037 ], [ -123.3831477693, 46.998968611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133077561, 47.3151824274 ], [ -122.3133014011, 47.3166524228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0229079186, 48.2627125108 ], [ -122.0149147028, 48.26670449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393798517, 47.5620616142 ], [ -122.339393127, 47.5668492127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2028039844, 47.8632306636 ], [ -120.1924069122, 47.866359942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6154441079, 47.5048209466 ], [ -122.6100956059, 47.5047904492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8030737493, 46.9773424769 ], [ -123.7745905953, 46.9816357852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.8022660378 ], [ -122.9278853234, 47.7838704693 ], [ -122.9185752836, 47.7735579364 ], [ -122.8995415369, 47.7691442355 ], [ -122.8927871706, 47.7538639977 ], [ -122.8777886746, 47.743200821 ], [ -122.8964164726, 47.6985807685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989034271, 47.8005733284 ], [ -122.4984055596, 47.7996307337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8764947699, 46.5550803084 ], [ -122.8769701281, 46.5656688487 ], [ -122.886654867, 46.5818960485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.0718480284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426450193, 47.2398211593 ], [ -117.0400651005, 47.2403316548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.5692199392 ], [ -122.3192746176, 47.5777213746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7255609263, 47.1697949724 ], [ -119.6943596205, 47.1892246234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6669203097, 45.6632919305 ], [ -122.6645970993, 45.6715670557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6468785968, 48.7737685937 ], [ -118.6164943357, 48.7884410173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1332932554, 47.7045387135 ], [ -117.0986362805, 47.712113508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2801945178, 48.4926127654 ], [ -122.2745076704, 48.4947462696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007224617, 46.1436344597 ], [ -122.8991903157, 46.1440948709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9437717492, 47.1965328965 ], [ -120.9462399136, 47.1968530327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4406634454, 48.3884548136 ], [ -119.4751978366, 48.3959072026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9072875101, 48.5485390558 ], [ -117.9122497826, 48.5496184382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.2331168365 ], [ -119.8640137768, 47.2332276959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6018306923, 46.1025658531 ], [ -119.6010199635, 46.1841411231 ], [ -119.6325132774, 46.1868027068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152365358, 46.2321748638 ], [ -119.1978814184, 46.2296948397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7065027719, 48.2686887461 ], [ -121.6816043754, 48.269260962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3312866855, 46.3333696967 ], [ -119.3168183585, 46.3257612363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.4040732772 ], [ -117.0455119005, 46.4058071413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730024916, 47.2240691944 ], [ -117.0730113456, 47.2256809047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5900304239, 46.9331912019 ], [ -122.563890205, 46.9320426175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5509551438, 47.3216616972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8916600156, 46.4181629111 ], [ -122.8895694243, 46.4396122337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1403017666, 47.3713844944 ], [ -120.1145793468, 47.3620058597 ], [ -120.091885291, 47.3467454248 ], [ -120.0759154793, 47.3283402333 ], [ -120.0718463794, 47.3150765031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266865938, 48.1904292048 ], [ -122.6268548608, 48.1963630554 ], [ -122.6340939948, 48.1993242257 ], [ -122.634532628, 48.2055146884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.7170064104 ], [ -117.4113416177, 47.7366272099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873052723, 46.0007282614 ], [ -118.3873059636, 46.0008733795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021438178, 46.1517167071 ], [ -119.2021936567, 46.1479617048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561483502, 45.5765439754 ], [ -122.3371199918, 45.5743187936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.1318940785, 46.233167577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.7904698955 ], [ -117.1171469709, 46.81324534 ], [ -117.1147380578, 46.8287560939 ], [ -117.1250730248, 46.8420876815 ], [ -117.1254311457, 46.8526895018 ], [ -117.1311720543, 46.8600078141 ], [ -117.1257662315, 46.8805636369 ], [ -117.1162608729, 46.8915969469 ], [ -117.0768183035, 46.9087074668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7380382951, 48.6477058434 ], [ -118.7340738301, 48.6404765011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3371199918, 45.5743187936 ], [ -122.3368309639, 45.5742854262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622283159, 48.7681610573 ], [ -122.468301725, 48.7760746279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643571316, 48.430063418 ], [ -122.2633531437, 48.4386943331 ], [ -122.2563532279, 48.4450517182 ], [ -122.2437846159, 48.4455328201 ], [ -122.2376759016, 48.4518050892 ], [ -122.2340372998, 48.459902027 ], [ -122.2364699855, 48.4678814769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3600916592, 46.8977782002 ], [ -117.3480763006, 46.9039214532 ], [ -117.3512048046, 46.911617455 ], [ -117.3488390721, 46.920878082 ], [ -117.3334887527, 46.9374674228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1948130997, 47.7039806698 ], [ -120.2022962075, 47.715799214 ], [ -120.2016705042, 47.7214958149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9791440454, 46.3170643063 ], [ -119.9790026711, 46.3316725974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9813954636, 47.1994152348 ], [ -121.9791170661, 47.1993968717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2977336595, 47.4242381539 ], [ -120.2969810046, 47.4206856987 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2332386303, 47.6740978586 ], [ -117.2196536686, 47.6737301547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0194056477, 47.8409567731 ], [ -120.0148285272, 47.8398314423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1886206387, 47.478462399 ], [ -122.1965538402, 47.4840107581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.2805652971 ], [ -122.2579004931, 47.2918141977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5942584951, 45.6125607215 ], [ -122.5755446732, 45.6090058957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.1597721166 ], [ -122.6377635069, 48.1650503371 ], [ -122.6372168781, 48.1706516249 ], [ -122.6311760448, 48.1709418294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3923505431, 47.9892462948 ], [ -124.390330186, 48.0234983063 ], [ -124.3861356451, 48.0343724022 ], [ -124.3771964333, 48.0428294994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9414768713, 46.633570246 ], [ -122.9550744316, 46.6440853642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2262812506, 47.4777333495 ], [ -122.2243682744, 47.4778018949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398365744, 47.6534457073 ], [ -117.2398112843, 47.6571200997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8612713575, 47.0847839089 ], [ -119.862512719, 47.0861911278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9672362186, 47.4364490931 ], [ -121.9463085291, 47.4610684243 ], [ -121.8925478736, 47.4771180887 ], [ -121.884585692, 47.504313222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9899301488, 48.0831794362 ], [ -121.9880421437, 48.0837433176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9623607954, 46.955497291 ], [ -119.9739327012, 47.0005510232 ], [ -119.9555037804, 47.0083586637 ], [ -119.9485401068, 47.0155594946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249301321, 47.4940508534 ], [ -122.325629622, 47.5091003278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6017358428, 48.2552691488 ], [ -121.6020400669, 48.2595802573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.300279957, 47.9256460771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.2111215603 ], [ -119.9393101914, 46.196885705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4672397114, 45.719390102 ], [ -121.486682184, 45.7277580783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9996278638, 46.2207119718 ], [ -119.9995278053, 46.2401318028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646817112, 47.503963135 ], [ -117.5646472962, 47.5079585085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2701126525, 47.1419665364 ], [ -119.285225107, 47.1460797472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0661637707, 47.9143207671 ], [ -122.0436242083, 47.9056634606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5056560072, 48.7850058356 ], [ -122.5108612391, 48.7867012138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.6365454184 ], [ -120.5304207056, 46.6430874404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1814065807, 48.04479845 ], [ -122.1839911758, 48.0494099826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.2214727186 ], [ -123.959008749, 47.2322639062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6056799649, 46.4748288907 ], [ -117.6041932764, 46.4748995993 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6938570638, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4819452858, 46.2520832532 ], [ -119.4644208312, 46.2537605149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2317004486, 47.8819477141 ], [ -122.2196680439, 47.8802932531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0372995865, 47.9328968903 ], [ -119.0177040011, 47.9367931061 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7681464636, 47.2343020206 ], [ -119.7468893165, 47.2346362782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.9818595874 ], [ -122.2471159221, 48.9855358738 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1417952785, 48.074895211 ], [ -123.1231539266, 48.0732680847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255548441, 48.5141869713 ], [ -122.2261409872, 48.5282544504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444983864, 47.6942136653 ], [ -122.3445897421, 47.7021703261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8208435355, 46.7340210389 ], [ -118.7557863554, 46.7871441721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0986125857, 47.6645874444 ], [ -122.0911114715, 47.6582107586 ], [ -122.078551081, 47.6557377147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9074799263, 46.1442853545 ], [ -122.9007224617, 46.1436344597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3255888568, 47.6309781209 ], [ -122.3224725894, 47.655393277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5495094772, 46.6453560334 ], [ -118.4999251675, 46.6516187698 ], [ -118.4903184729, 46.6611044962 ], [ -118.4227108674, 46.6969057794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0106509547, 47.9393125368 ], [ -118.9560547959, 47.9246186729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8277972731, 47.3865787228 ], [ -122.8288444363, 47.396432791 ], [ -122.8375622701, 47.402573245 ], [ -122.8415602841, 47.410924864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6823571827, 47.7086751463 ], [ -122.6690587997, 47.7496337056 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8903778041, 46.415684535 ], [ -122.8910176347, 46.421545267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663139585, 47.8342508992 ], [ -122.2724340167, 47.8395507144 ], [ -122.2742164355, 47.8479952638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9055307646, 48.5363629877 ], [ -117.9058230966, 48.5454377559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6869120748, 47.6932883974 ], [ -122.6823571827, 47.7086751463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1636333379, 47.4006707974 ], [ -123.1789488644, 47.4041675409 ], [ -123.1925948411, 47.4136830468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3521889436, 48.8735003742 ], [ -117.3286715777, 48.892802401 ], [ -117.3238638229, 48.9174144214 ], [ -117.3133128707, 48.9245515322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.4111862674 ], [ -122.623334611, 47.4284900867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.6957536487 ], [ -122.3295202166, 47.7043262966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9172628783, 46.1916920438 ], [ -119.8764960512, 46.187636732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.6108296856, 47.0345615907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146803025, 46.3895637812 ], [ -120.3149961011, 46.3824800478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7922032406, 47.476414011 ], [ -122.7663244649, 47.4942350849 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7347455537, 48.2990724352 ], [ -118.7493162362, 48.337391075 ], [ -118.7408226152, 48.3606961167 ], [ -118.7499280968, 48.3721707244 ], [ -118.7467825618, 48.3916586524 ], [ -118.7320955432, 48.399702401 ], [ -118.737561094, 48.4139729393 ], [ -118.7275775146, 48.4265108249 ], [ -118.7403276827, 48.4401809605 ], [ -118.7536657363, 48.4657381976 ], [ -118.7469823226, 48.4725287776 ], [ -118.7358955757, 48.4734852504 ], [ -118.7280051955, 48.4797806169 ], [ -118.7365952788, 48.4817782442 ], [ -118.7412126364, 48.4967914056 ], [ -118.7340631192, 48.5303352221 ], [ -118.7496554917, 48.5477265072 ], [ -118.7437512212, 48.5542247409 ], [ -118.7430996768, 48.5612042754 ], [ -118.7481235162, 48.5686839207 ], [ -118.7432636175, 48.5766708895 ], [ -118.7392164438, 48.6029509222 ], [ -118.7301109365, 48.6209221799 ], [ -118.7302329781, 48.6349158109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1638845081, 47.7585835533 ], [ -122.1646271104, 47.7572105358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526290082, 47.2744486003 ], [ -122.1407606558, 47.2634183904 ], [ -122.1282708819, 47.2605031318 ], [ -122.1182659294, 47.2502870454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6687451729, 47.5798764344 ], [ -117.6629212073, 47.5817195825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.5105092144 ], [ -122.2352752464, 48.510504468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.2742763685, 46.855512758 ], [ -122.2666996294, 46.8629061998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7022061254, 47.8572690469 ], [ -121.6924466276, 47.8522943399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6813768359, 48.8537575857 ], [ -121.6884690105, 48.8489003507 ], [ -121.6870544478, 48.8446393966 ], [ -121.6927461801, 48.8468788469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.6648157581 ], [ -120.2080808869, 47.675976654 ], [ -120.2072556027, 47.690389145 ], [ -120.2161904322, 47.7091769834 ], [ -120.2275722374, 47.7218054046 ], [ -120.2262456476, 47.7319503729 ], [ -120.2137503235, 47.7509668337 ], [ -120.1983417337, 47.7602672279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1411095244, 46.2154260444 ], [ -119.1371263893, 46.2216194455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5198277142, 47.6444797699 ], [ -122.5232713274, 47.6536299928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6127739583, 48.5004551192 ], [ -122.612637467, 48.5100800768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4347516102, 47.1123943169 ], [ -122.4348569541, 47.1194809791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7584799402, 47.3744092288 ], [ -122.7478911271, 47.3780569673 ], [ -122.7162522863, 47.3743552356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3464829935, 47.2161092989 ], [ -122.3420450241, 47.2135776972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8085220192, 47.3154321744 ], [ -118.7556512324, 47.3133928496 ], [ -118.6991152602, 47.3325467605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496648896, 48.0177222579 ], [ -117.3497942054, 48.0321149063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8665119074, 46.3036401573 ], [ -122.8562709135, 46.2938613758 ], [ -122.8450829264, 46.2935798136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9699877988, 46.7110483932 ], [ -122.9675307628, 46.7105506649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3798468993, 46.3001340733 ], [ -119.3680598924, 46.3027624934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6305634117, 47.0911974641 ], [ -122.6168907485, 47.0952000036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1050710923, 46.5588432113 ], [ -117.1186833573, 46.5672526465 ], [ -117.133768563, 46.5681320318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0997711539, 46.223724902 ], [ -119.0836074304, 46.2194354617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.7115319431, 47.7789042748 ], [ -120.7149150326, 47.8093423824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0367508916, 47.9006838682 ], [ -122.0166827624, 47.8768683004 ], [ -122.0078653292, 47.872487544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": 170 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.8120676338 ], [ -119.6287415959, 47.8154486037 ], [ -119.3841243851, 47.8153402952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619448123, 47.5311845564 ], [ -122.0632060501, 47.5412525635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7162522863, 47.3743552356 ], [ -122.7114277659, 47.3745220756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9531139031, 46.7191026108 ], [ -122.9527396272, 46.720041065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2754741187, 46.7999623833 ], [ -122.2907543651, 46.8008242314 ], [ -122.2999838929, 46.812840824 ], [ -122.3010136823, 46.8299402753 ], [ -122.3179158372, 46.8309769948 ], [ -122.3198113886, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3895298763, 47.9579786515 ], [ -124.4034665195, 47.9674631851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220411659, 47.6652612865 ], [ -122.3206620248, 47.6769065098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826564308, 47.5676722178 ], [ -117.6826777243, 47.5721438687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3637055225, 46.8798827877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2916171614, 47.4596862569 ], [ -122.2896393743, 47.4638618378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055405288, 45.5917612872 ], [ -122.4055508584, 45.5906041586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446909131, 47.7817536234 ], [ -122.3181975005, 47.8175907621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8130784885, 47.8092766362 ], [ -119.8071947642, 47.81403994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567735413, 47.1311262985 ], [ -119.2576559361, 47.13692103 ], [ -119.2626695043, 47.1398689271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353283591, 47.7777753423 ], [ -122.3245572303, 47.7776430656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4369512503, 48.9352749432 ], [ -119.4353841771, 48.9477318207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1407187037, 46.2701649585 ], [ -118.1377253327, 46.2707786892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.4825221847 ], [ -117.580789949, 47.4831439672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586957254, 46.8532935721 ], [ -122.8586860494, 46.8548429235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3570622964, 47.2404187331 ], [ -122.356727114, 47.2430577065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4665031792, 47.1763219389 ], [ -122.4630590407, 47.1874722949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5876777121, 48.1210599346 ], [ -122.588157825, 48.1230525484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288917189, 47.6068663319 ], [ -122.6288029427, 47.6101244229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2079538886, 46.7335435597 ], [ -122.1961396485, 46.7486771117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289448539, 47.4433692551 ], [ -122.3239010868, 47.4397926017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.3415217482 ], [ -119.3312866855, 46.3333696967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383520005, 48.1519754742 ], [ -122.2271386392, 48.1520086536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7766696657, 48.0135236739 ], [ -122.7803536315, 48.0276618969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2518648885, 47.7585697854 ], [ -122.2497713089, 47.7583930838 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3531195123, 46.244832268 ], [ -119.3263441939, 46.2473869538 ], [ -119.2942399537, 46.2575534355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2065091301, 47.3725609481 ], [ -122.2022136155, 47.3725592844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2076567487, 47.8095958449 ], [ -122.2074687841, 47.8201159821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4110411782, 47.4243576922 ], [ -121.4105333679, 47.412298435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535287712, 47.1322250265 ], [ -119.8534565369, 47.1904786655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6011440864, 46.7379133851 ], [ -119.2452761336, 46.7382468305 ], [ -119.2171199962, 46.7443848693 ], [ -119.1975233079, 46.7384199394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5888210566, 46.9701558628 ], [ -118.6425828517, 46.9708731434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6145007274, 47.7154775691 ], [ -122.6156582337, 47.7161387981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.6536361132 ], [ -118.1601671048, 47.6539518845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3189900834, 47.5793697605 ], [ -122.3207560536, 47.5899474422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3594319704, 47.6686111382 ], [ -117.3578020835, 47.6693777985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.8226983388 ], [ -118.6450781398, 46.8426071143 ], [ -118.6291145158, 46.8726381998 ], [ -118.6142343677, 46.889912435 ], [ -118.610684004, 46.9065381072 ], [ -118.5819937965, 46.9413896332 ], [ -118.571639149, 46.9627633161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1953416359, 47.4994564392 ], [ -122.1979386219, 47.5094150608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899095304, 47.721909145 ], [ -117.4957696028, 47.7261247472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4070872362, 47.7441952253 ], [ -117.4056484865, 47.7456876175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2267789418, 46.0180871043 ], [ -119.2574764079, 46.0002405136 ], [ -119.3328114294, 45.9767889078 ], [ -119.3425714208, 45.9645105136 ], [ -119.3375517758, 45.9498941429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7082095882, 46.4297795526 ], [ -122.703586609, 46.4274712477 ], [ -122.7097401995, 46.4213142088 ], [ -122.7094939136, 46.4057567359 ], [ -122.689147502, 46.3885347527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.5708280871 ], [ -117.5687388318, 47.5884737405 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6525696935, 48.0041955683 ], [ -119.676555192, 48.0264537662 ], [ -119.6600734659, 48.0750839441 ], [ -119.6601971396, 48.0871726218 ], [ -119.6677344082, 48.0980217898 ], [ -119.67945547, 48.1025546083 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.6731312949 ], [ -122.1151301203, 47.6720446521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5209883629, 45.728362545 ], [ -121.4949520588, 45.7249743594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9617770984, 46.9451030468 ], [ -119.9600764508, 46.9404487329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9781878444, 46.3023441821 ], [ -119.9783785412, 46.3052986594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395409867, 47.6757907672 ], [ -117.2396887191, 47.6862002896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3998093609, 47.2472450781 ], [ -122.3759701159, 47.2469906191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3812522854, 47.6538559571 ], [ -117.3696991532, 47.6539119327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4770208515, 46.690052266 ], [ -120.4742083499, 46.700892472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5818052442, 46.629370911 ], [ -120.5724635589, 46.6251660017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0435504851, 47.3579738218 ], [ -122.0376047767, 47.3579773831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1754150379, 47.811547043 ], [ -122.1526476236, 47.8049830492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1603852076, 46.8270351021 ], [ -123.139226139, 46.8258098296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7947532586, 47.4893941273 ], [ -121.7957761395, 47.4887865294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5446847676, 48.8138630642 ], [ -122.5530762786, 48.8225160709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0380002259, 47.9325544575 ], [ -119.0372995865, 47.9328968903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5784341072, 46.6855847693 ], [ -121.5805077567, 46.6890208076 ], [ -121.5774144898, 46.6931081642 ], [ -121.5824741364, 46.7004388608 ], [ -121.5754153801, 46.7106518512 ], [ -121.5775304787, 46.7192388112 ], [ -121.5687127572, 46.732258391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6923069088, 47.6636431264 ], [ -122.6926355567, 47.6632523312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4133229534, 47.6590747649 ], [ -117.4134370239, 47.6535198038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.4347156331 ], [ -120.3248875214, 47.4382457109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023974793, 46.9687249499 ], [ -123.8029450786, 46.9697219828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2103710587, 46.9691134856 ], [ -121.1674967694, 46.9781722496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3418776019, 46.2095624858 ], [ -119.3224569911, 46.1995501523 ], [ -119.2767500174, 46.1970146173 ], [ -119.2565858958, 46.1882981658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.4409909149 ], [ -120.3362411853, 47.4550266445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7477078919, 46.8989696084 ], [ -119.6446041548, 46.89906961 ], [ -119.6184725877, 46.8939308682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9762561497, 48.135096529 ], [ -118.9780832374, 48.1620197263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3601967875, 48.1093444067 ], [ -123.355714051, 48.1030129375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3450935078, 47.7322891749 ], [ -122.3451133369, 47.7341530585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5639273641, 46.9693979048 ], [ -118.5710608079, 46.9700238316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.0489497271, 46.7350588091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3134257955, 47.2979565948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3625630309, 47.6667062903 ], [ -117.361293531, 47.6674773757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7649510613, 47.0430902917 ], [ -122.7647638069, 47.0392228487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200293789, 46.4169522648 ], [ -120.3038736838, 46.4140405564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3113887255, 47.2800166221 ], [ -122.3135126494, 47.2840032145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6929086258, 47.0122908625 ], [ -122.691647237, 47.0115068577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4751894509, 48.7143961658 ], [ -122.4744175105, 48.7139080205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2997979412, 47.4682860937 ], [ -120.3005913938, 47.4765744345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2374372336, 48.2352708759 ], [ -122.2456895186, 48.2439992336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2231220368, 46.277953835 ], [ -118.2202318761, 46.2679666309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9991848792, 47.2312647073 ], [ -119.9790240031, 47.2432862158 ], [ -119.9536791305, 47.233042477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.6050020592 ], [ -122.4838497619, 46.6021253382 ], [ -122.4732795737, 46.6069408848 ], [ -122.4673707706, 46.6036301167 ], [ -122.4500625677, 46.6041140274 ], [ -122.4409160896, 46.6008817765 ], [ -122.4151954073, 46.5784671948 ], [ -122.4059420339, 46.576299297 ], [ -122.3424654966, 46.5855862749 ], [ -122.3033441932, 46.5641172674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3578020835, 47.6693777985 ], [ -117.3500629955, 47.6709209625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0800536366, 46.2333845599 ], [ -119.0824824346, 46.2383223812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376831738, 47.9777063656 ], [ -122.1376928426, 47.9781939272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050597877, 47.6433614356 ], [ -122.7045690526, 47.6571681504 ], [ -122.6927958127, 47.661573015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.7162401177 ], [ -122.9531139031, 46.7191026108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4975542478, 47.7988312911 ], [ -122.4984055596, 47.7996307337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0105057584, 47.9398197883 ], [ -119.0005313016, 47.9426815467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3664685234, 47.6539039945 ], [ -117.3473440936, 47.6538234455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6707470211, 47.5494494474 ], [ -122.6709875264, 47.5540420396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5417481504, 46.93783701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0801746668, 47.6417804378 ], [ -120.0767740067, 47.6417886706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1937187948, 47.6998534485 ], [ -120.1948130997, 47.7039806698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.3038957285, 46.7578975125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1354894847, 48.7101414512 ], [ -121.1220771925, 48.7109441126 ], [ -121.1150297344, 48.7073618219 ], [ -121.1093361213, 48.6954098047 ], [ -121.0998434043, 48.6894739435 ], [ -121.0945409463, 48.6918135397 ], [ -121.0962773257, 48.7095518988 ], [ -121.0828527337, 48.7097458743 ], [ -121.0780622172, 48.7166359531 ], [ -121.0562083367, 48.7288096268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9761197664, 46.7176133986 ], [ -122.9752113547, 46.7336230278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3637186054, 47.1582777108 ], [ -122.3478885514, 47.157627397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839911758, 48.0494099826 ], [ -122.1844675978, 48.0584615787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4066398664, 47.7632226212 ], [ -117.4044843472, 47.7691968077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0611804157, 48.5291856242 ], [ -121.9951021272, 48.5298846785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3151264897, 47.6852564017 ], [ -122.3059209037, 47.6920504533 ], [ -122.3055000322, 47.6975803085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.3492095996 ], [ -120.1698660388, 46.3410315909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1777008261, 47.2523092089 ], [ -123.1595614502, 47.2522250859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.6248548642 ], [ -122.5155441649, 47.6357793786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1611915713, 47.7452096371 ], [ -122.1523661986, 47.7330804139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.7870908551 ], [ -117.3384306266, 47.7875972066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1027482966, 47.978079114 ], [ -122.1055377983, 47.9978871915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.1580428725 ], [ -122.0342099984, 47.1595496539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6680924655, 48.3230367393 ], [ -119.6615285314, 48.3191457527 ], [ -119.629552896, 48.3205927715 ], [ -119.6172366357, 48.3298494085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.9501761308, 46.9833007241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4622475833, 48.9998737464 ], [ -119.4638532324, 49.0000867262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241669698, 46.4325560871 ], [ -119.0175921586, 46.4482685616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1479862888, 47.6503824795 ], [ -120.1271739213, 47.6633503955 ], [ -120.1265553381, 47.657244559 ], [ -120.1204618275, 47.6534221606 ], [ -120.0801746668, 47.6417804378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.5100800768 ], [ -122.6126173187, 48.5117929838 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0631995935, 46.2983588775 ], [ -124.0561354019, 46.2902587967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943463684, 46.6386317502 ], [ -120.5818052442, 46.629370911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802638858, 47.8059839555 ], [ -122.3802579386, 47.804112396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1563756705, 46.5189965757 ], [ -122.1144886609, 46.5370987947 ], [ -122.0753610512, 46.5476298644 ], [ -122.0066412409, 46.5359150399 ], [ -121.9865919137, 46.5386883542 ], [ -121.9572975987, 46.5353534207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260671635, 48.3402015788 ], [ -122.6126424216, 48.3479609208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.7571184025 ], [ -121.5176267241, 45.7510393509 ], [ -121.5237581372, 45.7438284052 ], [ -121.5209883629, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0445267647, 47.980223996 ], [ -119.0128652831, 47.9734162413 ], [ -119.0033625218, 47.9639235084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885742414, 47.9807304066 ], [ -122.188128621, 47.9807982931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6057120793, 46.9414897752 ], [ -122.593279583, 46.934769492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940286061, 47.590082601 ], [ -122.2539138096, 47.5892523535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0194447706, 47.3543865463 ], [ -122.0202766541, 47.3583922895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567131133, 47.1164713022 ], [ -119.2567735413, 47.1311262985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0548732503, 46.3323172772 ], [ -124.054617725, 46.3453645423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478874183, 46.4418799904 ], [ -122.8408960953, 46.4378300484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3600450664, 46.2396584936 ], [ -119.3509475564, 46.221897885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754291602, 47.8437264887 ], [ -121.6542540009, 47.8363873413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6636624539, 48.1604813241 ], [ -119.6696000423, 48.1820762782 ], [ -119.713417765, 48.2196444485 ], [ -119.7243645351, 48.2458410328 ], [ -119.7212000555, 48.2626191576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0298502289, 46.1536456355 ], [ -119.0341737891, 46.1565283618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281070641, 47.3580335124 ], [ -122.1254159669, 47.3580621765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9810154345, 47.7012895486 ], [ -121.9842126941, 47.7093339084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4638096383, 48.7709035452 ], [ -122.4626339661, 48.7713428245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7516443954, 48.9896016788 ], [ -122.7520415456, 48.9961053398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667315548, 47.4648600499 ], [ -122.2643040212, 47.455548918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3487077695, 47.7814262958 ], [ -122.338699596, 47.7777824155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9199492819, 46.1384787271 ], [ -122.9165979703, 46.1447449432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2900662647, 47.2038050564 ], [ -122.2839041915, 47.2030418132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.5604385799, 47.2858209621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074639212, 47.8123509195 ], [ -117.4189635614, 47.8314948096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.5147408998 ], [ -117.7309310756, 48.5140766628 ], [ -117.7123099829, 48.5025346103 ], [ -117.6930399694, 48.5196228035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1360883381, 48.2791408008 ], [ -118.1492755058, 48.3030819249 ], [ -118.1468751595, 48.3068128255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.1234239447 ], [ -122.9228006992, 46.1347958394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954733672, 48.3369797762 ], [ -122.2917893864, 48.3357459775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500629955, 47.6709209625 ], [ -117.3468192298, 47.6709658181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9303556413, 46.9761338415 ], [ -122.920784729, 46.9880445401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224725894, 47.655393277 ], [ -122.3220411659, 47.6652612865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6419803649, 47.815343803 ], [ -119.6399303545, 47.813732472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2911115679, 47.1240365899 ], [ -119.289772823, 47.1254917575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7090034211, 47.0697237816 ], [ -122.6757381114, 47.0813300502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.5207872011 ], [ -120.4282769273, 47.5058028204 ], [ -120.4193833846, 47.4918919015 ], [ -120.4098706126, 47.4855387729 ], [ -120.3692193944, 47.4758683659 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4026413273, 45.5856862701 ], [ -122.3997578511, 45.5841944043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0868227043, 46.7395693677 ], [ -119.1283965501, 46.7547549812 ], [ -119.1339570633, 46.7636604311 ], [ -119.1343073841, 46.7823988651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0209265407, 47.3613941171 ], [ -122.0237569069, 47.3733367643 ], [ -122.0334896745, 47.3838222996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.2158884218, 47.8443983695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2314445716, 47.7181510912 ], [ -121.1535414241, 47.7117866081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446858124, 47.3297219858 ], [ -122.2446131424, 47.3498974886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8743970818, 48.5473938298 ], [ -117.8572715742, 48.5473213018 ], [ -117.8460715424, 48.5415018691 ], [ -117.826594003, 48.539435667 ], [ -117.8225853934, 48.534895129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6025149847, 48.8920541634 ], [ -122.6040527531, 48.8920780487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.5434407828 ], [ -122.5476099457, 46.5481464139 ], [ -122.5335953997, 46.5573604122 ], [ -122.5226130373, 46.5528220874 ], [ -122.4976698793, 46.5583568324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.0771858995 ], [ -118.3569757559, 46.0850910738 ], [ -118.3672015566, 46.0864838173 ], [ -118.3712410754, 46.1000850053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -120.0009880199, 46.2136750464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.1247339542 ], [ -117.2426019261, 47.1282451493 ], [ -117.2426281993, 47.1322797485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5476135901, 45.7518906262 ], [ -122.5472598635, 45.7589462816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1437081841, 48.18863098 ], [ -122.1370320197, 48.1971826047 ], [ -122.1294755917, 48.1987611119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2145371798, 47.794421606 ], [ -122.2120593513, 47.7984747561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0356242216, 47.8496165293 ], [ -120.0277101274, 47.8474213611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8824654132, 46.9762996857 ], [ -123.8542222764, 46.9751663099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3761260037, 47.2404869197 ], [ -122.3632090748, 47.2405896685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469511117, 48.3911357861 ], [ -122.6446295806, 48.4078455473 ], [ -122.6491078895, 48.4120594291 ], [ -122.6442962662, 48.4167133772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1729427957, 48.0794522238 ], [ -123.1566785185, 48.0769008073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5472933615, 46.8097314034 ], [ -118.5469762937, 46.8696432609 ], [ -118.5691269289, 46.8875794467 ], [ -118.5671299854, 46.9387620133 ], [ -118.560421084, 46.9671994532 ], [ -118.5639273641, 46.9693979048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0029911997, 47.22593134 ], [ -121.0142157637, 47.2278486397 ], [ -121.0266377118, 47.2381146494 ], [ -121.0376452727, 47.2410571348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.2209096911 ], [ -122.4340520373, 47.2230930942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7391181737, 48.6476256888 ], [ -118.7380382951, 48.6477058434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6342473786, 47.5049271741 ], [ -122.6314890754, 47.5049287108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8957472001, 48.038517837 ], [ -119.9013270478, 48.0482824988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0541413502, 48.0609123727 ], [ -123.0317850249, 48.0444695397 ], [ -123.0308034821, 48.0385584263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1722002227, 47.1818280167 ], [ -117.1403329492, 47.1963834582 ], [ -117.1115675348, 47.1932573716 ], [ -117.097512456, 47.1960429801 ], [ -117.0740899923, 47.2211975001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217331431, 48.4069900346 ], [ -119.5217501674, 48.4051129342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9981202664, 47.8393603968 ], [ -119.9735363079, 47.8450645396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.2030418132 ], [ -122.2673512221, 47.2007333641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8983905827, 47.0254310319 ], [ -122.8880451706, 47.0349627247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1213708923, 48.2002565193 ], [ -122.1170200605, 48.2084489517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3243406744, 47.397956274 ], [ -122.3247753913, 47.4057300867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.2331134363 ], [ -119.869200631, 47.2331168365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588244536, 46.2022230907 ], [ -119.1588003107, 46.2077511977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975047463, 47.4351022237 ], [ -120.2975325983, 47.4333562129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1014661015, 47.9532966926 ], [ -122.1024989284, 47.9747837779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8766375645, 47.6695099085 ], [ -117.8632239331, 47.6690209762 ], [ -117.8204632094, 47.6577245072 ], [ -117.7893280679, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375995228, 47.1039064442 ], [ -119.325419947, 47.1032121332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.9320426175 ], [ -122.5592550475, 46.9339839558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754644577, 47.0918016783 ], [ -117.5851724439, 47.0928828595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9142967877, 47.0151102563 ], [ -123.9223395487, 47.0316557254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2364699855, 48.4678814769 ], [ -122.2465744052, 48.4914276823 ], [ -122.2470226925, 48.5030308196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4373980431, 48.7072992033 ], [ -119.4371558585, 48.7076989882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2666996294, 46.8629061998 ], [ -122.2667035384, 46.8634865679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3730388085, 47.247348751 ], [ -122.3597169341, 47.2569450563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4611381511, 48.1069352467 ], [ -123.4439905727, 48.1073916924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1761180844, 47.3631667878 ], [ -122.1654405965, 47.3580279441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.3088719536 ], [ -124.0487521206, 46.3101897606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119901397, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3933590552, 47.3223798088 ], [ -122.3924369341, 47.3216137304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3207059196, 47.4808771816 ], [ -120.3133639391, 47.4952529972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.5070572661, 46.9588101485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854064267, 47.9516809103 ], [ -124.3854508575, 47.9541150576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526401143, 45.7079886815 ], [ -122.552276004, 45.7299131095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7340738301, 48.6404765011 ], [ -118.7302441008, 48.641839496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4722108146, 47.2351167316 ], [ -122.482796616, 47.2349767545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9726938016, 46.7033062755 ], [ -122.9761197664, 46.7176133986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6260927168, 47.3890549862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6268938205, 46.9614926076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0634672167, 47.6491812786 ], [ -120.0621815719, 47.6491753159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.6738932335 ], [ -122.118861794, 47.6731312949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2740595055, 47.6747650499 ], [ -117.2564882876, 47.6744377468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2120593513, 47.7984747561 ], [ -122.2108693497, 47.8004619779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0769824862, 46.9108621348 ], [ -117.0799320523, 46.9114350689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6997242328, 47.5273550716 ], [ -122.6974328926, 47.5290055297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.3075520766 ], [ -119.5605106245, 47.308418187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6974328926, 47.5290055297 ], [ -122.6759314616, 47.5414115006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6684791314, 48.0046240362 ], [ -119.6765472999, 48.0110069203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.3616303229 ], [ -122.3012698346, 47.3733093484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0867809993, 47.0992170671 ], [ -123.0824021199, 47.0918214053 ], [ -123.0718667587, 47.0910580253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6756358928, 47.096990195 ], [ -118.6564062372, 47.0966738492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3059533997, 47.6666196591 ], [ -117.2905265819, 47.6724838661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9462399136, 47.1968530327 ], [ -120.9809250496, 47.2078375727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.6943145242 ], [ -122.3295502762, 47.7047809866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.8125064907 ], [ -117.5783351988, 47.8151367824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7706871351, 48.109957957 ], [ -122.7693087634, 48.1100024605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.1073463507 ], [ -121.5851623994, 47.0923339805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9094874642, 47.0217506114 ], [ -122.9056444809, 47.0217112789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5835757391, 48.3616001759 ], [ -119.5813873763, 48.3633416819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1413008619, 47.4050125018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7808845315, 48.0899344903 ], [ -119.7809433235, 48.1019970336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2751954315, 46.5570314235 ], [ -122.2752434827, 46.5583246063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8123515795, 46.9758626922 ], [ -123.8089625952, 46.9762253006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6624695676, 47.5269884954 ], [ -122.6824612226, 47.5278472097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6306952505, 47.5117651765 ], [ -120.6179840298, 47.5420496525 ], [ -120.6040808647, 47.5533601555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3997578511, 45.5841944043 ], [ -122.3985480747, 45.5841573262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586860494, 46.8548429235 ], [ -122.8482332243, 46.8586162126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.3150765031 ], [ -120.0677060263, 47.3008399269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860125357, 48.8005515797 ], [ -122.4860492264, 48.8043084991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6498450788, 47.5081639767 ], [ -122.6624695676, 47.5269884954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6399785669, 47.7561660923 ], [ -122.6261548579, 47.7579682585 ], [ -122.6124487235, 47.7661835383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4302739529, 48.7826189223 ], [ -122.4251466525, 48.7865571974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9783785412, 46.3052986594 ], [ -119.9785905771, 46.3125656122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.8318583594 ], [ -119.9823239969, 47.8274002482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4345227013, 47.2433241411 ], [ -122.4352497488, 47.247047007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.0858231048, 46.1966150682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2279364121, 46.2727922262 ], [ -119.2095736808, 46.2738751293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3135246441, 47.2896891115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349820374, 48.3411737625 ], [ -122.3335812302, 48.341165856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2072319883, 47.8094477645 ], [ -122.2010578056, 47.8100663059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4042122878, 46.6342410524 ], [ -121.3526072751, 46.656816854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9527847195, 46.5056599317 ], [ -121.9535543166, 46.5073208118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6166058605, 46.5023813913 ], [ -119.4960911537, 46.4454935227 ], [ -119.4508754515, 46.408809451 ], [ -119.4365304918, 46.3912099912 ], [ -119.4226493275, 46.383209281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3438028842, 47.6246441895 ], [ -122.3449275043, 47.6170721864 ], [ -122.3364121007, 47.6028461051 ], [ -122.3366560906, 47.5916921726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6391820613, 47.7464774496 ], [ -122.6456845104, 47.7518428642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311588032, 47.5832738305 ], [ -122.6298307615, 47.5875749972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063755906, 48.0032207303 ], [ -122.1069288247, 48.0063280675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8714816681, 46.6542060226 ], [ -118.8614321809, 46.652330978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.8459444194 ], [ -120.3719971108, 46.837063334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4399901193, 47.1039813699 ], [ -119.3554512716, 47.1039652908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398112843, 47.6571200997 ], [ -117.2397947306, 47.6583760906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9223395487, 47.0316557254 ], [ -123.92729038, 47.0572059596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.0184137758, 47.5633683425 ], [ -123.0326396214, 47.5528390438 ], [ -123.0434763305, 47.5508843024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770752412, 45.6327721391 ], [ -122.6833369779, 45.6328269221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2128688346, 47.8047418564 ], [ -117.2151570287, 47.8163391381 ], [ -117.2093060077, 47.8264252345 ], [ -117.202021796, 47.8299990291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8820241615, 47.968795396 ], [ -122.8828899247, 47.9544833493 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7173359337, 46.5756310576 ], [ -122.7046470526, 46.5756017902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3146309013, 48.3944502706 ], [ -117.3047886437, 48.3742846879 ], [ -117.3044608349, 48.3394634583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1285221878, 48.1877057823 ], [ -122.1294755917, 48.1987611119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1992457496, 47.9616091692 ], [ -122.1976360012, 47.9682783923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9750135429, 45.6406654273 ], [ -121.9427830991, 45.6519065923 ], [ -121.9293820456, 45.6481653356 ], [ -121.9186778089, 45.6533510839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6889327532, 47.3381121478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3774493287, 46.1875902746 ], [ -123.3857452066, 46.1923877924 ], [ -123.3830261382, 46.2040132418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.6721730664 ], [ -122.5018408354, 45.6721275722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1800952459, 46.7289180943 ], [ -117.1781385805, 46.7289018557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3548548851, 47.3236743586 ], [ -122.3473241981, 47.3305148272 ], [ -122.332027696, 47.3318236437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7438998103, 45.6694309117 ], [ -122.757700882, 45.6667941909 ], [ -122.7613328587, 45.6812652178 ], [ -122.7620622456, 45.6936966786 ], [ -122.7542852587, 45.7237947042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9793695341, 48.1656172167 ], [ -118.9854808281, 48.1713371337 ], [ -118.9892362024, 48.1913503797 ], [ -119.0154620195, 48.2099485026 ], [ -119.0346314742, 48.2143557736 ], [ -119.0414640789, 48.2225825553 ], [ -119.0821942308, 48.2357612309 ], [ -119.1250519203, 48.2387808307 ], [ -119.1361957578, 48.2445156021 ], [ -119.1441751598, 48.2720805565 ], [ -119.1341101995, 48.3012910934 ], [ -119.1526832951, 48.3146161547 ], [ -119.1529967173, 48.3254735625 ], [ -119.1585253129, 48.3325449322 ], [ -119.1751984327, 48.3392715776 ], [ -119.198188019, 48.3557743229 ], [ -119.235022948, 48.3647323247 ], [ -119.3957608493, 48.3747968182 ], [ -119.4406634454, 48.3884548136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1928315035, 48.4779351239 ], [ -120.1900642724, 48.4775740271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3472122709, 47.8244633117 ], [ -117.3538626087, 47.8381496765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1171685745, 47.1658351362 ], [ -122.1144319865, 47.165563315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6629212073, 47.5817195825 ], [ -117.6112069286, 47.5946127869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5307884494, 47.2588581959 ], [ -122.5427971587, 47.2623098139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9384879591, 47.6412968212 ], [ -122.9461661794, 47.6306520624 ], [ -122.9594204625, 47.6280408601 ], [ -122.9572422363, 47.6249005791 ], [ -122.9810519598, 47.6160578938 ], [ -122.9862005621, 47.609617512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2849614715, 47.889952125 ], [ -122.2913576024, 47.8992527084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940460846, 47.7553536407 ], [ -122.1913304565, 47.7557202808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1615500081, 47.3579926973 ], [ -122.1407097927, 47.3580025547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842126941, 47.7093339084 ], [ -121.9862032678, 47.7229006915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6200459422, 46.3718240773 ], [ -122.6135193095, 46.3732221214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7026610905, 45.8155477016 ], [ -122.6904808118, 45.8157027044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0124274602, 47.0563166427 ], [ -123.0095625837, 47.0558186162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3324665654, 45.9393404761 ], [ -119.3287580518, 45.9316181166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.5732225177 ], [ -118.9566975233, 46.5929642283 ], [ -118.9274458263, 46.6018334943 ], [ -118.856430317, 46.646165675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5460838145, 46.6830305932 ], [ -121.5156698827, 46.6719110445 ], [ -121.4883598873, 46.6693033481 ], [ -121.4496767451, 46.6361915585 ], [ -121.4443639435, 46.6247082632 ], [ -121.4042122878, 46.6342410524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1938148872, 47.2533046274 ], [ -121.1832082778, 47.2443206311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1112802946, 47.0325956026 ], [ -123.0967671874, 47.0341238279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218771342, 46.2762832574 ], [ -122.9073058758, 46.275376903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9992119183, 46.2864963221 ], [ -119.9990847026, 46.3019803085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2214808618, 47.4035987998 ], [ -122.2202025787, 47.4072374973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9904268316, 48.0866632894 ], [ -121.9801847421, 48.0911670151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1457654709, 47.2521210376 ], [ -123.1320219502, 47.2363423355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3038957285, 46.7578975125 ], [ -118.226642999, 46.7417055801 ], [ -118.2054032125, 46.7447486856 ], [ -118.1732608373, 46.756869523 ], [ -118.1532014075, 46.7691930635 ], [ -118.1296213053, 46.7680723413 ], [ -118.0927817262, 46.7803397001 ], [ -118.0482580436, 46.7753326706 ], [ -118.0239734671, 46.7645457326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3616814048, 47.0290559539 ], [ -117.3802689604, 47.0508567122 ], [ -117.3831396249, 47.0764132167 ], [ -117.378854292, 47.0964231841 ], [ -117.3800291539, 47.1741955658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2227369424, 47.6269803184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3777122398, 46.153926303 ], [ -123.3770778203, 46.155161435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8853526517, 45.6928459455 ], [ -121.8772638059, 45.6967885603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455743548, 46.418180045 ], [ -117.045583721, 46.4199358176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860962019, 48.7836284125 ], [ -122.4860786255, 48.7843780074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.3702712669 ], [ -120.3149587825, 46.3677298266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021936567, 46.1479617048 ], [ -119.2023511627, 46.1347113914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891848021, 48.4355524149 ], [ -122.2671353579, 48.4299276122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2546724797, 47.2425035856 ], [ -122.2559001868, 47.2460061029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5759657586, 47.4868903381 ], [ -117.5754010062, 47.4873552206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0786692359, 46.6270297677 ], [ -123.0644490268, 46.6269757944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9961129273, 46.1618451049 ], [ -122.9876095018, 46.1576443082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8977278871, 47.1804239536 ], [ -120.8726143169, 47.1638584395 ], [ -120.8239451755, 47.1552275616 ], [ -120.7990004612, 47.1178706255 ], [ -120.7830173029, 47.1120217119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6247422202, 48.5816115228 ], [ -120.6012081348, 48.5966187591 ], [ -120.5895452075, 48.5986625905 ], [ -120.5331599851, 48.5993765517 ], [ -120.511770525, 48.5910610484 ], [ -120.4841673108, 48.5868442115 ], [ -120.4550821729, 48.5962101881 ], [ -120.4360496304, 48.597849873 ], [ -120.3929476235, 48.5798058288 ], [ -120.3665628256, 48.5612770736 ], [ -120.3389607734, 48.5486028042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157406775, 47.2908042195 ], [ -122.5156731861, 47.2981065252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.2938084119, 46.3141920165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2845754339, 48.2812765736 ], [ -117.2839019256, 48.3051822196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0677994513, 46.9127572907 ], [ -117.0547386882, 46.9253808035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.2246779017 ], [ -122.1587937139, 48.2389534668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6041932764, 46.4748995993 ], [ -117.5915790813, 46.4740027276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.179623886, 46.7323956011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2181964942, 46.8141634951 ], [ -119.2078614274, 46.8115731743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3916711004, 47.6542957701 ], [ -117.3949918933, 47.6575846328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343129277, 46.818765882 ], [ -119.1333443494, 46.8263220149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2095736808, 46.2738751293 ], [ -119.1895052521, 46.2676902573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8143955605, 46.9760348973 ], [ -123.8155189414, 46.9754642319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.2663296776, 47.4869149652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8025700515, 46.9620278945 ], [ -123.8023983763, 46.9678877123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.538034814, 47.9138188412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.5629051119 ], [ -122.2857890361, 46.5613718886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4155325399, 47.4269333661 ], [ -121.4158570632, 47.425849765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5479047169, 47.1238498878 ], [ -122.5362836535, 47.1307921694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6367704982, 48.0627193371 ], [ -117.6217227567, 48.0596769549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2002742877, 47.4803239853 ], [ -122.1922736805, 47.4901260728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3137091087, 47.7773380757 ], [ -122.3091430991, 47.7743773963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3357219408, 48.4717196536 ], [ -122.3356088428, 48.4755713741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0215352259, 46.3175795065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5063250059, 45.6848578255 ], [ -122.5059632705, 45.6819748617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1377253327, 46.2707786892 ], [ -118.1238524112, 46.2737500843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5056679509, 46.8329591528 ], [ -117.4900970503, 46.8410354631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.1554309896 ], [ -122.4342002903, 47.1593449432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9507202106, 48.050275 ], [ -122.9489928608, 48.0502722096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0126506285, 46.2084245812 ], [ -119.0078943102, 46.2117237268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6727169645, 48.1593548477 ], [ -122.672541743, 48.1597721166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.6021302692 ], [ -122.9111972398, 46.6100100981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.8026940324 ], [ -123.0066964764, 46.8028020636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854225052, 47.9505814332 ], [ -124.3854064267, 47.9516809103 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2943489103, 47.4098769599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.8116079214 ], [ -119.63597552, 47.8120676338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3168183585, 46.3257612363 ], [ -119.302112785, 46.3183716498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5021999805, 48.71608606 ], [ -122.502234449, 48.7176604348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0261661571, 46.1622220249 ], [ -123.0182415473, 46.1554301629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3522945196, 47.9747750631 ], [ -122.3555721402, 47.978279434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957696028, 47.7261247472 ], [ -117.5075451443, 47.7371619655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828043572, 47.4234223225 ], [ -122.2747094226, 47.4287124851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6672617257, 45.779820175 ], [ -122.6617016336, 45.7795054863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.2035861347, 47.4751805773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2420963329, 46.1031326564 ], [ -118.2049176459, 46.123542948 ], [ -118.1579964315, 46.1391116684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9550744316, 46.6440853642 ], [ -122.9670970658, 46.649895724 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8960512885, 46.9809985306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.7483083341 ], [ -120.7718342941, 46.7474467101 ], [ -120.7239880846, 46.7348744488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2437055114, 48.507550046 ], [ -122.2414121493, 48.5104075699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2456895186, 48.2439992336 ], [ -122.2649177077, 48.2647143139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3610242433, 47.7115372115 ], [ -121.3542348939, 47.711904269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564578154, 46.074867789 ], [ -118.3564482172, 46.0758820358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7842634529, 47.6121559913 ], [ -118.763698451, 47.6124988865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8439980452, 46.0036486101 ], [ -122.852240996, 46.0234388073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6851289986, 47.5272359279 ], [ -122.6952180995, 47.5247783015 ], [ -122.6997242328, 47.5273550716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3148725381, 47.8211912078 ], [ -122.3121013887, 47.8211831696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3602316649, 47.1201988782 ], [ -118.3033025513, 47.1598935483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9716314101, 46.2117605619 ], [ -118.9100284707, 46.215109501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8221883958, 47.0469869506 ], [ -122.8133324553, 47.0524920951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0182415473, 46.1554301629 ], [ -123.0036157589, 46.14714661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1983417337, 47.7602672279 ], [ -120.1748375091, 47.7679692019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1653460578, 47.754516793 ], [ -122.1699835707, 47.7530524149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1786722275, 48.0518497151 ], [ -122.1770255475, 48.0518456949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0047956327, 46.1661237024 ], [ -123.0003727518, 46.1639381329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.7176604348 ], [ -122.4999178784, 48.7176529255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5070572661, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.4959893931, 46.9237521292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.3232041563, 47.5929897168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.6824319974 ], [ -122.3154029102, 47.6847104504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.1878232468 ], [ -122.2014846937, 48.1878947696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6861862014, 47.8907180121 ], [ -117.6975572419, 47.8844035353 ], [ -117.7022161214, 47.8768022172 ], [ -117.7066202358, 47.879310378 ], [ -117.7063360951, 47.8688643657 ], [ -117.7119483787, 47.8632977854 ], [ -117.7145821243, 47.8520405468 ], [ -117.74506215, 47.8401106032 ], [ -117.760735503, 47.8384094476 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0523540333, 47.8358056633 ], [ -120.0272288264, 47.8361946595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525698301, 45.6820848992 ], [ -122.5525729281, 45.6855805745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.5818960485 ], [ -122.8936094988, 46.5891345777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0208342666, 47.0780579889 ], [ -123.0127415099, 47.0564079291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.263463248, 49.0000254737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7562347833, 48.0595083721 ], [ -117.7619942648, 48.0632663696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0754032266, 48.6062200924 ], [ -118.1012651236, 48.6145465613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.9797708505, 46.6600221281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2073503784, 48.1930549968 ], [ -122.2143482637, 48.2063281505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4413167587, 48.7028924991 ], [ -119.440005912, 48.7023795423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.0005739703 ], [ -122.484170717, 49.0022047393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.7299131095 ], [ -122.5476135901, 45.7518906262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1878139945, 47.6319385932 ], [ -122.1863875328, 47.6405133468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.9880445401 ], [ -122.9090833449, 47.005153403 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5816054123, 45.655987363 ], [ -122.5649359725, 45.6591474533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9079204529, 46.9326825401 ], [ -122.9078901312, 46.9418030245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2103459096, 48.1692167689 ], [ -124.2149004639, 48.1767680441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872101016, 47.5612869027 ], [ -122.1839184276, 47.5658400246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3036135383, 47.6515712549 ], [ -122.3008871177, 47.6593020345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3405862296, 47.4683902338 ], [ -120.3385227247, 47.4670473491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044515804, 47.551027418 ], [ -117.7040622718, 47.5520049051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.7708341637 ], [ -122.3462274907, 47.7777955542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5728475744, 47.3013604296 ], [ -122.5813429939, 47.3109726485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7456908937, 46.2158646763 ], [ -119.7350013936, 46.2109623873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9127332439, 48.045239571 ], [ -119.9336567593, 48.052435164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2737587614, 47.465095805 ], [ -122.2651299683, 47.4614024105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1251815178, 48.2002933787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8887436919, 48.2715237891 ], [ -121.8794090981, 48.2691129164 ], [ -121.8393410726, 48.2773006503 ], [ -121.7712088124, 48.2788001675 ], [ -121.7475431859, 48.2765709941 ], [ -121.7257388719, 48.26881907 ], [ -121.7065027719, 48.2686887461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5065371663, 45.7819263952 ], [ -121.4854380467, 45.7986174954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.8212139394 ], [ -122.3148725381, 47.8211912078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6868873255, 47.1525952933 ], [ -118.6848539763, 47.1673793172 ], [ -118.6915299321, 47.1733521134 ], [ -118.6870124756, 47.1851546319 ], [ -118.6859186821, 47.2602317232 ], [ -118.6913794976, 47.2616081181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9743825684, 46.7068491655 ], [ -122.9732816215, 46.70702645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4775864514, 47.7155036924 ], [ -117.4828080327, 47.7179633653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7265829537, 46.6211619976 ], [ -119.7275110118, 46.6340824621 ], [ -119.7360584616, 46.6468473933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923848001, 47.661192848 ], [ -122.2869879295, 47.6614633424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2399893883, 46.8414422249 ], [ -123.2289306877, 46.8407885562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969627885, 47.4415056535 ], [ -122.1969253171, 47.4452667572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9228006992, 46.1347958394 ], [ -122.9199492819, 46.1384787271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5129709245, 47.6238643156 ], [ -122.51414874, 47.6248548642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.7081930584 ], [ -117.2536978763, 46.7208346039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9043342814, 48.5465658408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5036732886, 47.8027461252 ], [ -122.4989034271, 47.8005733284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564762608, 46.0687349432 ], [ -118.3606111002, 46.0686802253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.8553269485, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2036492399, 47.8781466533 ], [ -122.1696161125, 47.8778286457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1720418434, 47.3177075499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.1059122858 ], [ -122.1872965039, 48.1444384712 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6208329268, 47.3728531728 ], [ -122.6188217045, 47.371309362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2682387314, 47.1364387388 ], [ -119.262380566, 47.1396746477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103992419, 46.147036878 ], [ -122.9085060615, 46.1467022322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4259416139, 47.9626411024 ], [ -124.4403885401, 47.9637407852 ], [ -124.4509429615, 47.9548776677 ], [ -124.4606869786, 47.9524141752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2924574784, 47.4062158074 ], [ -120.2883400594, 47.3993847963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4432829491, 45.5785312538 ], [ -122.4356102101, 45.5801631372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3226285715, 47.6386200098 ], [ -122.3224579886, 47.646211059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4942417879, 46.2795434721 ], [ -119.4935889943, 46.301316915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6774926459, 48.0103631519 ], [ -119.6802674022, 48.0089902272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7228989931, 47.4670798095 ], [ -121.7096706618, 47.4632751617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2226311076, 46.7258475583 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.7413459926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.4199358176 ], [ -117.0442946621, 46.4199328277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2012702922, 47.4487938305 ], [ -122.2070364986, 47.4594077387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1846880578, 48.0816069517 ], [ -122.1847277876, 48.0959977763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0632060501, 47.5412525635 ], [ -122.0627483977, 47.5457057767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5256803341, 48.4105086385 ], [ -119.5284865191, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.8890619205, 47.1756198843 ], [ -123.9182389975, 47.1855844879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176943396, 45.6411075661 ], [ -122.3987238562, 45.6383313319 ], [ -122.3986727941, 45.6242774567 ], [ -122.403423195, 45.6233802439 ], [ -122.4043216331, 45.615225457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1000196081, 45.8249268805 ], [ -121.0976103078, 45.8260671911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1061717246, 48.2554318205 ], [ -120.0842561584, 48.2705971119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156731861, 47.2981065252 ], [ -122.5156562553, 47.2992775357 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4421071548, 48.7019949179 ], [ -119.4410919266, 48.7031509182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7154506529, 48.2699984918 ], [ -117.7155190209, 48.2762460851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3959492409, 46.4169433277 ], [ -120.4287975969, 46.4412917927 ], [ -120.4311662019, 46.4575378002 ], [ -120.4694374549, 46.5065542918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6551873979, 47.7579966203 ], [ -122.6566045869, 47.7584154673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0813867451, 46.6270365528 ], [ -123.0786692359, 46.6270297677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8309651195, 47.8579919705 ], [ -121.8165310712, 47.861761082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.0844287634 ], [ -119.7808845315, 48.0899344903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3502009691, 48.5531647768 ], [ -122.3476324959, 48.5639822624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1736598311, 47.7883685846 ], [ -118.1739846457, 47.8032868437 ], [ -118.1835057815, 47.8219514158 ], [ -118.2018883606, 47.8250490347 ], [ -118.2117772806, 47.8341073865 ], [ -118.2155107555, 47.8597323298 ], [ -118.26205996, 47.8659297604 ], [ -118.2670575361, 47.8760419568 ], [ -118.2644176885, 47.886536003 ], [ -118.2735123185, 47.8953985288 ], [ -118.2764458192, 47.9099818571 ], [ -118.3022156948, 47.9032411497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9707179801, 47.8103117805 ], [ -119.9747908435, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3052799217, 47.1087851264 ], [ -119.3035133121, 47.1100072069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783351988, 47.8151367824 ], [ -117.5973616913, 47.8288659688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8814721275, 47.0869161419 ], [ -118.8637575163, 47.0867688468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6069922762, 48.3197133157 ], [ -119.6017185779, 48.3403277867 ], [ -119.5953819331, 48.34623453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.1071331596 ], [ -123.40157192, 48.1066836471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9017000705, 46.2852760142 ], [ -122.900982517, 46.2858307257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3584633908, 47.2145021441 ], [ -117.3533823933, 47.2237692463 ], [ -117.3626242176, 47.2400995255 ], [ -117.3610664207, 47.2534566306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3327432015, 47.408543256 ], [ -122.3352626539, 47.4160570962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2292841665, 47.1772685985 ], [ -122.2295427682, 47.1570738062 ], [ -122.2329885436, 47.1517472612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975325983, 47.4333562129 ], [ -120.2977336595, 47.4242381539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9555240563, 46.7165039902 ], [ -122.9559416042, 46.7155463073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.6592960376, 47.4422385912 ], [ -121.6260861992, 47.428820891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.07298877, 48.0304443672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576841858, 47.6460001316 ], [ -118.1576753991, 47.6531948538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113132819, 47.7151012213 ], [ -117.4127242746, 47.7151457037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.0022066171 ], [ -122.48508877, 49.0005739703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3022156948, 47.9032411497 ], [ -118.3095884413, 47.9083492944 ], [ -118.3318773139, 47.9059107248 ], [ -118.3362657699, 47.9100541107 ], [ -118.3214853554, 47.9295013757 ], [ -118.3161620627, 47.9460652358 ], [ -118.295303866, 47.9811201405 ], [ -118.2863301117, 47.9929868084 ], [ -118.2668970833, 48.0067931754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.9175984132 ], [ -122.7261530122, 48.9551626572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2682351433, 46.4011783488 ], [ -120.2470329935, 46.3943389424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.3943389424 ], [ -120.2341478641, 46.3874544653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891754017, 48.1552836007 ], [ -122.2891839532, 48.1557176379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5010531946, 47.5121479033 ], [ -122.4973049137, 47.5119962431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.7098400514 ], [ -118.925005797, 47.7108243237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6471818385, 47.6429287965 ], [ -117.6441483202, 47.6429238878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2824397667, 47.8189715088 ], [ -122.2622221319, 47.8312276667 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.4736376931, 48.7183214397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9761773375, 46.0002961924 ], [ -118.9326857937, 46.0274987811 ], [ -118.9404675059, 46.0421843021 ], [ -118.9362682108, 46.051675932 ], [ -118.9281091224, 46.0567461789 ], [ -118.9122848657, 46.0569707003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9266228383, 46.1230578452 ], [ -122.9247009245, 46.1221385232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829331211, 47.9885511027 ], [ -122.1739059983, 47.999571344 ], [ -122.1814065807, 48.04479845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239010868, 47.4397926017 ], [ -122.3228061274, 47.4391963694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2622221319, 47.8312276667 ], [ -122.2598462586, 47.83972786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7864369592, 48.651103998 ], [ -118.7770276759, 48.649473503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6597780517, 47.3328929749 ], [ -118.6064394101, 47.3438463019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.1680072039, 47.7574084421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4721515928, 46.9484503801 ], [ -119.4749052078, 46.9528591823 ], [ -119.4607123542, 46.9566297084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3437891671, 48.8073210548 ], [ -122.3325641688, 48.8145942815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3977887884, 47.0531477811 ], [ -122.4005142886, 47.0558581985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7306682808, 48.0861363728 ], [ -123.7093296363, 48.0846676243 ], [ -123.7009703045, 48.0785930438 ], [ -123.6786220988, 48.073901581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3241654589, 47.7296158195 ], [ -122.3288644625, 47.741140359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2941276522, 47.4130153494 ], [ -120.2929566067, 47.408097835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3542348939, 47.711904269 ], [ -121.3352211475, 47.7132173725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5899202161, 47.4791586755 ], [ -117.5832793235, 47.4818861833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220553649, 48.3133080082 ], [ -122.3344939127, 48.3373547839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302441008, 48.641839496 ], [ -118.7300552535, 48.6419111855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1183933229, 47.358083689 ], [ -122.1091619452, 47.3580988636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1760994752, 47.580180733 ], [ -122.1698418075, 47.5801249842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237320393, 47.533996747 ], [ -122.6115664545, 47.5340329479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.6656995892 ], [ -122.0986125857, 47.6645874444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8320237301, 47.2340352 ], [ -119.8107624661, 47.2341040289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5793216715, 47.1078928315 ], [ -122.5623879036, 47.1153885874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2180791238, 47.8520936404 ], [ -122.2163760183, 47.8727847101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9195012753, 46.6405634658 ], [ -123.921074264, 46.6714807055 ], [ -123.9175764369, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.8848656803, 46.6854928239 ], [ -123.8753762267, 46.68435008 ], [ -123.8577283824, 46.6939486439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501498005, 46.2873666617 ], [ -117.0395127862, 46.3149805998 ], [ -117.0421390618, 46.3267145152 ], [ -117.0484351291, 46.3174465631 ], [ -117.0560803608, 46.3250305409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5989270885, 47.5553611869 ], [ -120.5927019605, 47.5589757239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6270510219, 46.735547573 ], [ -119.6011440864, 46.7379133851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2517852789, 47.1061646856 ], [ -119.2566876381, 47.112363657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0767280097, 46.2265908318 ], [ -119.0795201794, 46.2322979284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3301905624, 47.6128797259 ], [ -122.329134167, 47.615596198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2277030428, 47.6241332137 ], [ -120.2219122891, 47.6270557243 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.7760746279 ], [ -122.4832840697, 48.7824744802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147539076, 46.1502452965 ], [ -122.9157314952, 46.1667895778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.0518594289 ], [ -122.1836148532, 48.0518643974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3118431702, 47.1567249837 ], [ -119.3235519617, 47.1618045752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4203948955, 46.9081166471 ], [ -121.4074499246, 46.9139103029 ], [ -121.3738765638, 46.9171172093 ], [ -121.3590945902, 46.9323858894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9052657624, 45.6630172635 ], [ -121.9096745256, 45.6749940647 ], [ -121.9015325687, 45.6823424191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.7983597125 ], [ -123.0025596088, 46.8100089469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6225935687, 47.4383788471 ], [ -122.6237970067, 47.4635938226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1086623321, 48.0731296075 ], [ -123.0929136587, 48.0727563835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1956583824, 47.5351014559 ], [ -122.1926629037, 47.5532945477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3355650196, 48.4778597679 ], [ -122.322498894, 48.4777584669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3009682136, 47.4657531835 ], [ -122.2814936102, 47.4639104191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6686114771, 47.6429513017 ], [ -117.6471818385, 47.6429287965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2565858958, 46.1882981658 ], [ -119.2336452151, 46.1773089437 ], [ -119.2075559409, 46.1709700044 ], [ -119.2024028139, 46.1646696372 ], [ -119.2021438178, 46.1517167071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6592835463, 48.69353696 ], [ -118.6540124627, 48.7299295462 ], [ -118.6607397326, 48.7395905415 ], [ -118.6474199782, 48.7574573152 ], [ -118.6471151083, 48.7653809106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4877195547, 46.7310206754 ], [ -117.4828769965, 46.7374678823 ], [ -117.4606604412, 46.7478475633 ], [ -117.4529845524, 46.7578502771 ], [ -117.3966878381, 46.7692818303 ], [ -117.3754489745, 46.7524284104 ], [ -117.364269794, 46.7482639317 ], [ -117.3576285651, 46.7370046508 ], [ -117.3411179936, 46.7369182867 ], [ -117.3330136617, 46.7429594848 ], [ -117.3176622842, 46.7318138607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6671028849, 48.208880163 ], [ -122.6861432864, 48.2123143699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1822932343, 48.0518738744 ], [ -122.1786722275, 48.0518497151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588003107, 46.2077511977 ], [ -119.1587898641, 46.2094963127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0824824346, 46.2383223812 ], [ -119.083420541, 46.2402395389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3044461333, 47.9446172164 ], [ -122.3040566842, 47.947165397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478646508, 46.4428982556 ], [ -122.8478874183, 46.4418799904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.2123094716 ], [ -122.7059141852, 48.2122640442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4379008219, 47.7154498354 ], [ -117.4568888894, 47.7154157955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442962662, 48.4167133772 ], [ -122.620384397, 48.4202646652 ], [ -122.6082425787, 48.4287878768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.6729939622 ], [ -117.2395409867, 47.6757907672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2952486802, 47.4309838514 ], [ -122.2954198113, 47.4345568351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7878727232, 47.0597313969 ], [ -122.7541782353, 47.0644445369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963449954, 47.0166678167 ], [ -122.2955397516, 47.040162607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869038184, 47.6636304786 ], [ -122.1862142566, 47.6722701693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4413239323, 48.96428992 ], [ -122.407449955, 48.9640230526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5981693413, 48.116751797 ], [ -123.5712528402, 48.1146712556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6298307615, 47.5875749972 ], [ -122.6295353398, 47.5924775695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4040031937, 47.6521238544 ], [ -117.3993131644, 47.6520356027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2487949553, 47.4322754113 ], [ -122.2455886366, 47.4412210855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.7159651259 ], [ -122.5021999805, 48.71608606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4807360568, 46.6775327893 ], [ -120.4821709855, 46.6784018527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3962982687, 45.5785567586 ], [ -122.3924335271, 45.5795236375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4851566888, 48.9933456178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9685280902, 46.3037202391 ], [ -119.9283205921, 46.2720687974 ], [ -119.9106353482, 46.2675619431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8209479482, 45.9765215085 ], [ -122.8303255251, 45.9865466391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8030737493, 46.9773424769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0892586477, 46.5431821646 ], [ -117.0929578437, 46.5461114405 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9030142887, 48.4912950401 ], [ -117.9000321633, 48.514822412 ], [ -117.9050816787, 48.5343812278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0350161303, 47.253938049 ], [ -123.0051653665, 47.2658148473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067256114, 48.3642645921 ], [ -122.2133672387, 48.3723792401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4629980998, 45.7135052501 ], [ -121.4598946117, 45.7123396511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2943489103, 47.4098769599 ], [ -120.2980615002, 47.4097420223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598568622, 47.5046576599 ], [ -122.1565310736, 47.5057272643 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2912512618, 48.0954124931 ], [ -123.2099835359, 48.0853786216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0848828452, 46.3284729616 ], [ -120.0687629907, 46.3226150928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8705301943, 47.7320770346 ], [ -117.8747890388, 47.7387575067 ], [ -117.8833228393, 47.7409083111 ], [ -117.8904928702, 47.7562433053 ], [ -117.8937348179, 47.7731562335 ], [ -117.8885889763, 47.7791596603 ], [ -117.8899260404, 47.7887506445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.0732144226 ], [ -119.8060994957, 48.0932061459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.7170064104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.5674428282 ], [ -120.6020684242, 47.564209197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966058497, 47.1747523811 ], [ -123.0957237818, 47.1572988202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0202766541, 47.3583922895 ], [ -122.0209265407, 47.3613941171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1179298675, 46.9846708775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.6427340926 ], [ -118.1576841858, 47.6460001316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.41331834, 47.6599920959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1854211418, 48.4778068438 ], [ -120.1781092963, 48.4725882896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351942988, 47.7341436296 ], [ -122.3343328973, 47.7341445146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2514945992, 46.6301019034 ], [ -123.1801433805, 46.6342000658 ], [ -123.1684652608, 46.6306801314 ], [ -123.1744197292, 46.6133083665 ], [ -123.1581776639, 46.5974973747 ], [ -123.1287547466, 46.6004969457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2183218859, 48.2166037115 ], [ -122.2374372336, 48.2352708759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0715404689, 46.1959222812 ], [ -117.069636538, 46.2278518737 ], [ -117.0596360072, 46.2294936931 ], [ -117.0595040673, 46.2749822247 ], [ -117.0501498005, 46.2873666617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6380141443, 48.3112290202 ], [ -122.6295211986, 48.3202909794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3605429103, 47.3207278571 ], [ -122.356089198, 47.3225056037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4834194345, 47.6349163355 ], [ -117.4797001096, 47.6332845094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3099371955, 47.3075733984 ], [ -121.3016866652, 47.3019511926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281613908, 47.6226631987 ], [ -120.2281213808, 47.6241276789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.0768951726, 46.9105822359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108409752, 48.6851321517 ], [ -117.4053808879, 48.6851320533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1936544175, 46.7645544522 ], [ -122.1942019738, 46.765336616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2914374281, 47.9220287545 ], [ -122.2878185998, 47.9245144886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764946499, 46.7820725916 ], [ -119.1764136146, 46.7968582865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5264716482, 45.9932175677 ], [ -122.5417332574, 45.9878702719 ], [ -122.5419737599, 45.9758418071 ], [ -122.5529555129, 45.9643382543 ], [ -122.5628644515, 45.9583082261 ], [ -122.575637757, 45.9577400504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2296735711, 48.3852564968 ], [ -122.2379325105, 48.3993275149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5942345354, 47.3816799159 ], [ -120.6127201842, 47.3953748749 ], [ -120.6432823873, 47.3933824989 ], [ -120.6561236285, 47.4026118042 ], [ -120.6594863695, 47.4174344817 ], [ -120.6560779809, 47.4316964265 ], [ -120.6625922847, 47.4410037523 ], [ -120.6536874982, 47.450987204 ], [ -120.6605838276, 47.4614951171 ], [ -120.6556188415, 47.4745007676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7640925019, 47.3690425701 ], [ -122.7584799402, 47.3744092288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.2982624881, 47.2176069027 ], [ -122.2940086764, 47.2249092263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.0512475527 ], [ -122.6907759825, 48.0567497671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3341920495, 47.5902797808 ], [ -122.3356442883, 47.5965279925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.1177226749 ], [ -119.8535293221, 47.1191977539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8913479904, 46.0543459185 ], [ -118.8674748422, 46.0534348511 ], [ -118.8396224202, 46.0652521005 ], [ -118.7880122841, 46.072450643 ], [ -118.7111374641, 46.0531567281 ], [ -118.6849142545, 46.0415021587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2920536467, 47.4006698004 ], [ -122.2893783047, 47.416887971 ], [ -122.2828043572, 47.4234223225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3538671999, 46.0696978456 ], [ -118.3405498465, 46.0739014753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1926629037, 47.5532945477 ], [ -122.1872101016, 47.5612869027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9992299624, 47.8523397018 ], [ -121.9893266233, 47.8585504619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8539819045, 46.9760751104 ], [ -123.8793107352, 46.9778455486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8804463364, 47.3319204562 ], [ -122.8514198777, 47.3498457097 ], [ -122.8364747547, 47.374286003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1407097927, 47.3580025547 ], [ -122.1390119706, 47.3580153681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118923903, 46.626211773 ], [ -120.5261373787, 46.6365454184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2995385636, 47.7120544754 ], [ -122.2923996871, 47.7318031538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282935394, 46.5780534778 ], [ -119.7274029528, 46.6018834593 ], [ -119.7367554772, 46.6080827525 ], [ -119.7270556249, 46.6125948511 ], [ -119.7265829537, 46.6211619976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.3133077561, 47.3151824274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.6649346237 ], [ -123.7946033875, 46.6644384378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472570211, 47.6739649907 ], [ -122.3444365005, 47.6869595926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7239880846, 46.7348744488 ], [ -120.7002079559, 46.7282037986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9281707668, 47.0261889833 ], [ -122.9134448464, 47.0253389513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2227951042, 45.7429753339 ], [ -120.1980379335, 45.7506530042 ], [ -120.1858099878, 45.7626742717 ], [ -120.1496144498, 45.7796028041 ], [ -120.0728889721, 45.7937322728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7693087634, 48.1100024605 ], [ -122.7667323197, 48.110171865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.4088507662 ], [ -120.2895900621, 47.4060388964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.3110237562, 46.8548826409 ], [ -122.3028894715, 46.8561801881 ], [ -122.3114938746, 46.8624815133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1545187673, 47.5061214996 ], [ -122.1514985886, 47.5062570131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.3281449889, 47.6228434601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.4871309015 ], [ -122.25450026, 47.4846758275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1178922765, 48.3599953038 ], [ -120.0826339712, 48.3485688069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8903636196, 47.2092221227 ], [ -117.8935451035, 47.2124822553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2187031003, 47.4362642827 ], [ -122.2153057722, 47.4499572937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3281449889, 47.6228434601 ], [ -122.324181676, 47.6321012475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7212439358, 47.7631466252 ], [ -118.7130750207, 47.7604898372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1406082627, 48.151913289 ], [ -122.1327070433, 48.1526864406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943172222, 47.0140340001 ], [ -120.5925213891, 47.0219833385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.5573335962 ], [ -120.4712654383, 46.5394142128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134510032, 47.6126348451 ], [ -119.8134804078, 47.6996424338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3786436215, 48.5169464302 ], [ -122.410855576, 48.5508465619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9167021499, 47.6653110039 ], [ -117.8792825759, 47.6694839326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.6167655089 ], [ -122.1878139945, 47.6319385932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3436176395, 47.6252248523 ], [ -122.3470322877, 47.6426862378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3423037081, 47.7341359849 ], [ -122.3351942988, 47.7341436296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5989397766, 45.6129740168 ], [ -122.5942584951, 45.6125607215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.6419803649, 47.815343803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9998190814, 47.0505006375 ], [ -122.9910016143, 47.0450336894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803526133, 46.3061126605 ], [ -122.8665119074, 46.3036401573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6020684242, 47.564209197 ], [ -120.5983470734, 47.5620792828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4004674284, 47.5364053504 ], [ -117.398395829, 47.5437706657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4885964173, 47.3774858912 ], [ -119.482679815, 47.3814692054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4423826497, 46.937291079 ], [ -122.35740693, 46.9366422092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.9108595721 ], [ -117.0677994513, 46.9127572907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.9048928592 ], [ -122.2280903322, 47.9083247357 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3523152371, 47.7871149729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142960975, 46.2001388421 ], [ -122.916599885, 46.2057419837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4025141886, 47.775377664 ], [ -117.4024404199, 47.7757947974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6569907612, 45.7325461642 ], [ -122.6612770989, 45.7464677187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6853721482, 48.1040204491 ], [ -119.6682838379, 48.1388517209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4733228614, 46.5849707648 ], [ -120.4709892732, 46.5848762904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9664209143, 46.1480268532 ], [ -122.9552434055, 46.1471068295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3176622842, 46.7318138607 ], [ -117.2900757121, 46.7253930498 ], [ -117.267322546, 46.7081930584 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4439905727, 48.1073916924 ], [ -123.4421245304, 48.1073235415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0602108175, 48.0644077043 ], [ -123.0541413502, 48.0609123727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1131838766, 46.9081888251 ], [ -124.1124683872, 46.9087203442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339726068, 47.2074131032 ], [ -122.4340414925, 47.2209096911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9501761308, 46.9833007241 ], [ -123.9584649473, 46.9824304524 ], [ -123.9638816639, 46.9871110108 ], [ -123.9991960461, 46.9934266102 ], [ -124.0040880972, 47.00857363 ], [ -124.0381349997, 47.0457147607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7015013824, 47.7577620281 ], [ -118.7003253167, 47.7576668992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.7408474959 ], [ -117.411487897, 47.7439536479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.3502034489, 47.9137043437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.4156833158 ], [ -122.2187031003, 47.4362642827 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2647934958, 48.2531691393 ], [ -124.260389031, 48.2542321886 ], [ -124.2601698309, 48.2506931926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8843350959, 46.5050823884 ], [ -119.8766764568, 46.5100011675 ], [ -119.8734670054, 46.5215778241 ], [ -119.8802809007, 46.5340131046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8246818019, 45.8230059935 ], [ -120.8226283862, 45.8229903949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3292431802, 47.3317433744 ], [ -122.3219018806, 47.3326977386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0289352268, 46.5118174067 ], [ -124.0306794602, 46.5320120219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7745905953, 46.9816357852 ], [ -123.7542359838, 46.978403612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.0536557708 ], [ -122.139335004, 48.0536511041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.6462120527 ], [ -117.2398690039, 47.6488703847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984249952, 47.1999364331 ], [ -122.2938144583, 47.1988803768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932337855, 47.9103754832 ], [ -122.2914374281, 47.9220287545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.4452102491, 45.9475940632 ], [ -119.410562102, 45.9583557066 ], [ -119.4001606196, 45.9493259325 ], [ -119.3731501041, 45.946680716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8146581289, 46.9746674338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1881596197, 47.6322979443 ], [ -122.1541290261, 47.6295235952 ], [ -122.1364781908, 47.6384421787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7756848413, 48.1086426578 ], [ -119.765463651, 48.1095610147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2319230755, 47.6360628163 ], [ -122.2133341775, 47.6416718327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8322700503, 47.0459335687 ], [ -122.8221883958, 47.0469869506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2841686904, 48.0967467483 ], [ -117.2785898294, 48.0970199696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736786558, 47.1615792122 ], [ -122.4600900511, 47.1585657847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.2980321898 ], [ -117.9728133998, 47.3032197247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6676433679, 47.5927812587 ], [ -120.6615401387, 47.5961287953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3571398555, 48.6273196202 ], [ -122.363905077, 48.6441332225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6900708232, 47.6742545713 ], [ -122.6891411882, 47.6839322136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3491644277, 46.0639266399 ], [ -118.3499243544, 46.069095536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4722493593, 46.5674944544 ], [ -120.4705735995, 46.5573335962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.9790612199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2651804981, 46.6565738532 ], [ -118.2875256298, 46.6685119832 ], [ -118.3072819323, 46.6686867919 ], [ -118.3344458773, 46.6776884871 ], [ -118.3783577002, 46.6777368746 ], [ -118.389137803, 46.6893958146 ], [ -118.391198589, 46.6972092027 ], [ -118.4122698552, 46.7012162608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9213159644, 47.1927732879 ], [ -120.9384153356, 47.1948996063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9450001967, 48.1636797033 ], [ -123.9244093839, 48.1547303657 ], [ -123.9317581136, 48.1536438133 ], [ -123.9295399819, 48.1451803052 ], [ -123.9164706989, 48.1365715012 ], [ -123.8875301745, 48.1363486659 ], [ -123.8597889454, 48.14722078 ], [ -123.8001282546, 48.1395893198 ], [ -123.7690696693, 48.1396769458 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.2498304367 ], [ -117.2293777746, 48.2389717477 ], [ -117.2149572114, 48.2326927422 ], [ -117.1445158196, 48.2276178924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9378384893, 47.6579307436 ], [ -117.9379417422, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1781092963, 48.4725882896 ], [ -120.1686914859, 48.4567062705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.1698966439 ], [ -122.1637086417, 47.1693190408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8894036808, 46.6634446901 ], [ -118.8840388543, 46.6627688809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6851132626, 47.8485151937 ], [ -121.6754291602, 47.8437264887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7472041173, 46.7900290895 ], [ -118.740366325, 46.7916254829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0799094982, 48.9241796486 ], [ -122.0772800593, 48.924155999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7002079559, 46.7282037986 ], [ -120.6947545489, 46.7266771426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1320120548, 47.4522702959 ], [ -117.1273008596, 47.4454628501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5450859846, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.4031367389 ], [ -119.5123492002, 48.4036826294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4364218141, 47.7154395468 ], [ -117.4379008219, 47.7154498354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1820573236, 47.7095901821 ], [ -122.1889808432, 47.7236094662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.7108243237 ], [ -118.7941217724, 47.7561814138 ], [ -118.7334805954, 47.7623342902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8026031248, 46.3760022496 ], [ -123.7936542735, 46.3767488327 ], [ -123.7849363108, 46.3717532207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535414241, 47.7117866081 ], [ -121.1229137378, 47.7173047025 ], [ -121.1378413571, 47.7241816479 ], [ -121.1210115785, 47.7462420572 ], [ -121.0941270076, 47.7457487872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6813333636, 45.8063615363 ], [ -122.6883954382, 45.8215294532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5687388318, 47.5884737405 ], [ -117.5589351838, 47.5953615292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535252294, 45.6362913178 ], [ -121.1561709747, 45.6490463651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.3779642912 ], [ -122.2430570827, 47.378057579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8089625952, 46.9762253006 ], [ -123.8076362509, 46.9772463001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182891747, 47.2672889111 ], [ -123.9082461392, 47.2954525638 ], [ -123.9065191783, 47.3328554188 ], [ -123.9095592146, 47.3467924075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6184725877, 46.8939308682 ], [ -119.6021851057, 46.8903722209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030469817, 46.1632969984 ], [ -122.9042918419, 46.1726255536 ], [ -122.8992668381, 46.1802918975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1400802554, 47.8145116129 ], [ -122.1281371157, 47.8306336416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8868341203, 47.9877015289 ], [ -122.8848678307, 47.9879382073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.7801453767 ], [ -122.5792543891, 45.780262944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9732816215, 46.70702645 ], [ -122.9747719324, 46.7112626752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3389607734, 48.5486028042 ], [ -120.3223743924, 48.543587961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1702535399, 46.7278386224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4685453921, 48.1061906064 ], [ -123.4657592482, 48.106460575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9946857537, 47.1974841035 ], [ -121.9923916449, 47.199177298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478831901, 46.7533571733 ], [ -122.9375719089, 46.7539095544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237970067, 47.4635938226 ], [ -122.6245604481, 47.4752697078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3297726533, 47.7436959378 ], [ -122.3291037047, 47.7469054111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7810617654, 48.1076558595 ], [ -122.7780253279, 48.1083589075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6124487235, 47.7661835383 ], [ -122.607158394, 47.7724672092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3706721348, 48.2410706967 ], [ -122.3443830084, 48.2398913159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4158570632, 47.425849765 ], [ -121.4127871024, 47.4225424219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874609685, 46.4153003586 ], [ -117.069154655, 46.4199117494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5724635589, 46.6251660017 ], [ -120.5436645551, 46.6226773126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096344556, 48.4932908483 ], [ -122.6126265866, 48.4934511275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3044608349, 48.3394634583 ], [ -117.2844096141, 48.3059359445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3441820755, 46.7361724356 ], [ -118.3231691836, 46.7431650717 ], [ -118.3104348324, 46.7563777105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474311421, 47.3867136062 ], [ -122.2493486901, 47.3976177556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342002903, 47.1593449432 ], [ -122.4341705298, 47.1628256566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798684236, 46.8216532259 ], [ -123.0761547764, 46.8206396917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5579970591, 46.6445599995 ], [ -118.5495267257, 46.655378434 ], [ -118.5443798132, 46.6742594979 ], [ -118.5291894222, 46.6893914363 ], [ -118.527862787, 46.697937023 ], [ -118.5289309614, 46.709283549 ], [ -118.5479758394, 46.7134582569 ], [ -118.547381969, 46.7802658991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4872923805, 46.6801245233 ], [ -120.482692837, 46.6807839356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1130005817, 48.1517401354 ], [ -122.1187528092, 48.1643133094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1565942739, 47.6540477597 ], [ -118.1420864524, 47.6544054526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9392616292, 46.382620523 ], [ -117.9322110467, 46.3985709129 ], [ -117.9413605818, 46.4060696422 ], [ -117.9479137743, 46.4225642672 ], [ -117.9469665414, 46.4295031017 ], [ -117.9587274494, 46.4507231244 ], [ -117.962632911, 46.4685024932 ], [ -117.9609825539, 46.4873044859 ], [ -117.9734724736, 46.4998726264 ], [ -117.9712249078, 46.5098672609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1099088867, 46.9701523567 ], [ -119.0422256352, 46.9696837609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2352979381, 46.2341237242 ], [ -119.2152365358, 46.2321748638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3094973132, 47.1058411746 ], [ -119.3052799217, 47.1087851264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5396953537, 48.0975545684 ], [ -123.5353377768, 48.098941472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074296103, 47.7589886736 ], [ -122.1940460846, 47.7553536407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.6031230684, 45.9389260974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814765504, 48.1399591811 ], [ -122.2820740303, 48.1477548637 ], [ -122.2891754017, 48.1552836007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284865191, 48.4108456019 ], [ -119.5284561857, 48.4123674853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432290715, 47.4472414198 ], [ -122.8272592504, 47.454059906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470226925, 48.5030308196 ], [ -122.247228536, 48.5049651039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2088606428, 46.7337475063 ], [ -117.2059069062, 46.7337520183 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0402216819, 47.4051375238 ], [ -122.0384117208, 47.4089744879 ], [ -122.0506265625, 47.4234707779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.3619718598, 48.4277546105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0584176535, 47.257382574 ], [ -121.0623455971, 47.2605734637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583128195, 47.8895409718 ], [ -122.2572398494, 47.8906887228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.1093210645, 47.8989017492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.2611443687 ], [ -119.2878136748, 46.2595687001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7653032241, 47.0638310719 ], [ -122.7651140331, 47.0629504411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020091618, 46.6572102746 ], [ -121.5939929334, 46.6677239868 ], [ -121.5771726696, 46.6750081624 ], [ -121.5748775018, 46.6824470233 ], [ -121.5785447315, 46.6857085787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1012238708, 46.2052016642 ], [ -119.1061582106, 46.2060951858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676487456, 47.5684242426 ], [ -122.663594378, 47.5707549865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6496497972, 45.6504231837 ], [ -122.6493044391, 45.6503500709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0929578437, 46.5461114405 ], [ -117.1050710923, 46.5588432113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1426715191, 48.7772362922 ], [ -118.1497710826, 48.7873239168 ], [ -118.1606954688, 48.7925791711 ], [ -118.1610621477, 48.8013491924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2564997683, 46.0930373464 ], [ -118.2526403206, 46.0995793775 ], [ -118.2420963329, 46.1031326564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2828183812, 47.6193764429 ], [ -119.2613682363, 47.6314977852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6589172471, 48.8590433627 ], [ -121.6630290925, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.6754402986, 48.8651910486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3658073843, 47.7605601689 ], [ -117.3673481617, 47.7688728977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9522499816, 46.7274803396 ], [ -122.952269366, 46.7289642557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3476324959, 48.5639822624 ], [ -122.3437035716, 48.5958995493 ], [ -122.3462428337, 48.6070259278 ], [ -122.3545679756, 48.6174704326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5983470734, 47.5620792828 ], [ -120.5889958565, 47.5568399451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2498888662, 47.4623828171 ], [ -122.2408435002, 47.4652569769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8169944864, 47.1654459949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9049232747, 47.5724947503 ], [ -121.8981135123, 47.5712733617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0933996402, 48.1811071167 ], [ -120.096475565, 48.1968467764 ], [ -120.1071532972, 48.1976887965 ], [ -120.1282560949, 48.2086361697 ], [ -120.1174787599, 48.2312124652 ], [ -120.1161853491, 48.2490366875 ], [ -120.1061717246, 48.2554318205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1236120707, 48.2002782394 ], [ -122.1213708923, 48.2002565193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0779731302, 47.442965311 ], [ -117.0397889595, 47.4349031524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5337335651, 45.9984030688 ], [ -121.5549969267, 45.9998011977 ], [ -121.5636114982, 45.9901163052 ], [ -121.5837003451, 45.9826021001 ], [ -121.5888375562, 45.9758111476 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3298805519, 47.1732555069 ], [ -119.337592942, 47.1824916579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3376838924, 48.0547329997 ], [ -124.3149717617, 48.0584677954 ], [ -124.3028014989, 48.0673395518 ], [ -124.2831461268, 48.0697565692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0767740067, 47.6417886706 ], [ -120.0747632734, 47.641906708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0376981686, 48.0703874967 ], [ -123.9545771246, 48.0754505177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2823985099, 47.1941934807 ], [ -122.281111013, 47.1984410996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9070746013, 46.1900492586 ], [ -122.9142960975, 46.2001388421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525729281, 45.6855805745 ], [ -122.55279656, 45.6913817983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8060994957, 48.0932061459 ], [ -119.7944730895, 48.0983151568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5100030807, 47.2490381759 ], [ -122.5111157203, 47.2502531629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4811308047, 46.4673204627 ], [ -117.4724796642, 46.4594841871 ], [ -117.4670539222, 46.4470649257 ], [ -117.4444691861, 46.4466269014 ], [ -117.4311649833, 46.4362139804 ], [ -117.4202576394, 46.4360420895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6601620541, 47.7045647028 ], [ -122.6546046376, 47.70607599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9559416042, 46.7155463073 ], [ -122.9571866974, 46.7126430488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1815164346, 46.226705456 ], [ -119.1466151724, 46.2179686599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.1460689953 ], [ -122.9222411132, 46.1464872396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3204263512, 47.4439375555 ], [ -122.3268233106, 47.4554520402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.3580817971 ], [ -122.3074304764, 47.3616303229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.3580601805 ], [ -122.0859358901, 47.3580748666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.7334112553, 47.6434838531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4483713102, 47.6410080356 ], [ -117.4497167189, 47.6443092509 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6156582337, 47.7161387981 ], [ -122.6353165012, 47.7250143013 ], [ -122.6370291084, 47.7323152241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004396604, 47.7105219184 ], [ -122.2995385636, 47.7120544754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7475393038, 46.2094125334 ], [ -119.7476202885, 46.2140157031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348020717, 45.6649138902 ], [ -122.429621236, 45.6621546541 ], [ -122.4288846042, 45.6543939777 ], [ -122.4244049035, 45.6505489649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.4777584669 ], [ -122.321610488, 48.4780418815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.9932136954 ], [ -122.5264716482, 45.9932175677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1992324539, 47.1773708328 ], [ -117.1722002227, 47.1818280167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219385669, 47.258344291 ], [ -122.5307884494, 47.2588581959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5469623321, 47.3271872736 ], [ -119.4986984819, 47.3690721351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7261530122, 48.9551626572 ], [ -122.7299951107, 48.9621767777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2006505617, 47.1259714675 ], [ -117.2204392685, 47.120872 ], [ -117.2311497101, 47.1220696502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6682838379, 48.1388517209 ], [ -119.6636624539, 48.1604813241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2918401179, 48.4355506598 ], [ -122.2891848021, 48.4355524149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3518193824, 47.7919039464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.0693320216, 46.4212282179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3564028382, 47.8868367862 ], [ -124.3561155367, 47.8937677247 ], [ -124.3644243308, 47.8948319873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1614780369, 47.506903678 ], [ -124.2004830222, 47.5303993959 ], [ -124.2229369627, 47.5343029792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059582917, 45.6758268864 ], [ -122.505932908, 45.6721730664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3877903612, 46.8866484089 ], [ -117.3817100757, 46.8906071029 ], [ -117.3649144653, 46.8905633877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6542540009, 47.8363873413 ], [ -121.6418257139, 47.8341761604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.2331832879 ], [ -122.8996825001, 46.2497847546 ], [ -122.9131016887, 46.2630638015 ], [ -122.9250895302, 46.2644933419 ], [ -122.9237811251, 46.2715083431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.2509192818 ], [ -119.4752230368, 46.2516861086 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.1817811528, 46.731695621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2809503607, 48.235572681 ], [ -122.2423008133, 48.2388120168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5608436626, 47.6428844249 ], [ -117.509427539, 47.6430053975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.1984410996 ], [ -122.2782598167, 47.2029152075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4572843275, 46.2706003653 ], [ -123.4109919609, 46.2617089223 ], [ -123.4005832438, 46.2531192037 ], [ -123.3947912458, 46.2315766109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.3677298266 ], [ -120.3097289325, 46.3650774694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.6321012475 ], [ -122.3238832466, 47.6326989707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3641647883, 46.8740109029 ], [ -117.3649931364, 46.8746110638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075109583, 47.7416381565 ], [ -117.5074826876, 47.7443815862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7455869752, 48.1372852387 ], [ -123.7345388535, 48.1360534594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647334404, 47.498272492 ], [ -117.5647296934, 47.4988542076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6748917772, 47.5440202547 ], [ -122.6707470211, 47.5494494474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.1780553435 ], [ -117.0426668622, 48.1780973091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2395042525, 48.8318235121 ], [ -122.2195423891, 48.8277065549 ], [ -122.2096024616, 48.821069883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9044761844, 45.8247380049 ], [ -120.8744708695, 45.824429695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9237811251, 46.2715083431 ], [ -122.9218771342, 46.2762832574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.4780418815 ], [ -122.2801945178, 48.4926127654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549477321, 46.3302467729 ], [ -124.0549134209, 46.3311573646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5109341748, 47.6229691778 ], [ -122.5129709245, 47.6238643156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350085187, 47.5157381772 ], [ -122.7222646763, 47.5233205646 ], [ -122.7132594935, 47.5239714664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2244399208, 48.9981157805 ], [ -118.2239337521, 49.0001142503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.1342723946 ], [ -123.1002077406, 47.1262326925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6644148519, 45.7566399081 ], [ -122.6701869958, 45.7753317642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.1712861629 ], [ -122.6262008512, 48.183153552 ], [ -122.6266865938, 48.1904292048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3304093084, 47.6079523826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8229476469, 45.7771798533 ], [ -120.8225764326, 45.7876068164 ], [ -120.8169355081, 45.795557156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510605635, 46.3071011772 ], [ -122.3527972938, 46.2965836771 ], [ -122.3455373962, 46.2931384349 ], [ -122.337001989, 46.3047142862 ], [ -122.3278036317, 46.3078440811 ], [ -122.3208730727, 46.3036524423 ], [ -122.313153103, 46.3066262779 ], [ -122.3100082852, 46.3001431608 ], [ -122.3022619974, 46.2970256355 ], [ -122.2938372103, 46.3000796883 ], [ -122.295182346, 46.3062068691 ], [ -122.2807292786, 46.3116469727 ], [ -122.2731898668, 46.303082327 ], [ -122.2662981155, 46.301502894 ], [ -122.2789228699, 46.3034457986 ], [ -122.2705939775, 46.2873405261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.7811795472 ], [ -117.4074561545, 47.7875219182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6947330224, 47.501473805 ], [ -117.6842799668, 47.508587719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7483034155, 48.9956575306 ], [ -122.7547026936, 49.0004770596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8858510006, 47.9902643238 ], [ -119.8838607234, 47.9987453856 ], [ -119.8957472001, 48.038517837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6671258406, 48.1191174479 ], [ -123.6561026165, 48.1181029102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.8574461597, 46.2510844587 ], [ -123.8514330153, 46.2602496978 ], [ -123.8402134294, 46.2625073673 ], [ -123.8325797811, 46.2695656832 ], [ -123.8166527548, 46.2712834502 ], [ -123.8074451874, 46.2860891421 ], [ -123.8110220943, 46.292755949 ], [ -123.8005818248, 46.3043543061 ], [ -123.7980280188, 46.329180811 ], [ -123.8010026466, 46.3344527096 ], [ -123.8104269171, 46.3376105866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9408254869, 45.6665296294 ], [ -120.9297714065, 45.6654121621 ], [ -120.9256409171, 45.6605136294 ], [ -120.8955780583, 45.6660810678 ], [ -120.8292860584, 45.6940654066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828899445, 47.1858920985 ], [ -122.2823985099, 47.1941934807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.6486735819 ], [ -120.5282531262, 46.6540390188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.6716912752, 45.622917794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6217227567, 48.0596769549 ], [ -117.6204333436, 48.0599351891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6175832531, 46.9743856487 ], [ -123.608437708, 46.9733591072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9043342814, 48.5465658408 ], [ -117.8819927368, 48.5472128187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9951021272, 48.5298846785 ], [ -121.9651128936, 48.5240655431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9506147609, 46.1164898023 ], [ -122.9437335833, 46.1159145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6881983355, 47.0090276156 ], [ -122.6694499846, 47.0015817743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1944912719, 46.7123163464 ], [ -117.1823923289, 46.7153301884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.8911732556 ], [ -122.1282727742, 47.8811551589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1994394218, 48.1842323462 ], [ -122.2073503784, 48.1930549968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3082024553, 48.987334862 ], [ -117.300957911, 48.9914893657 ], [ -117.2997854183, 48.9998091485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4658299611, 46.7110974278 ], [ -120.4499387893, 46.725476403 ], [ -120.4529597593, 46.7328663314 ], [ -120.4474798796, 46.7417500389 ], [ -120.4584088633, 46.7479232715 ], [ -120.4557031883, 46.7526547977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9025771354, 47.3722950666 ], [ -123.8886284736, 47.4026822769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0695554806, 47.5516320142 ], [ -122.0518753525, 47.5453888035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0728889721, 45.7937322728 ], [ -119.99534977, 45.8239202871 ], [ -119.9346212323, 45.8356923036 ], [ -119.9093114186, 45.8357642984 ], [ -119.8779729096, 45.8417460874 ], [ -119.848685047, 45.8673243697 ], [ -119.8271538347, 45.8696991389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1306968579, 46.1654154745 ], [ -118.1391201391, 46.1784782697 ], [ -118.1360940572, 46.1845933366 ], [ -118.1377890482, 46.2310216136 ], [ -118.1530953054, 46.2591521015 ], [ -118.1532476863, 46.2701348718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.4422989059 ], [ -122.378756131, 48.4364435691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2125630243, 47.2479722468 ], [ -124.222223573, 47.2566679804 ], [ -124.2418234024, 47.2957168744 ], [ -124.2808034862, 47.3214481125 ], [ -124.2880206391, 47.3359121435 ], [ -124.2850104072, 47.3470290113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6901316239, 47.5798542029 ], [ -122.6987408734, 47.5866961105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2945690698, 47.8468435945 ], [ -122.2931688795, 47.8504172566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9856684909, 46.9399239995 ], [ -119.9617666156, 46.9450388749 ], [ -119.9623607954, 46.955497291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354436719, 48.4902753934 ], [ -122.3370509632, 48.503991479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4935889943, 46.301316915 ], [ -119.4933154474, 46.3115165199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024279178, 47.3725593313 ], [ -122.2024048555, 47.3748567353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939107442, 47.2065716074 ], [ -122.2939186583, 47.209493222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9874606417, 47.6279947984 ], [ -121.9593727364, 47.6196353188 ], [ -121.9574628206, 47.6132115201 ], [ -121.9615435138, 47.60154051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4653744706, 45.7143933277 ], [ -121.4629980998, 45.7135052501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3997755612, 47.5144285359 ], [ -117.3939373287, 47.5212232747 ], [ -117.3968245294, 47.5274308586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113416177, 47.7366272099 ], [ -117.4112982729, 47.739633774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.8277972731, 47.3865787228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4744048469, 48.9644201365 ], [ -122.4631661079, 48.9646150404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4606869786, 47.9524141752 ], [ -124.4631155918, 47.9407965872 ], [ -124.4817162701, 47.9308967011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9599282089, 47.199071826 ], [ -121.9346988288, 47.1921997068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7686405015, 48.0112283115 ], [ -122.7766696657, 48.0135236739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1961396485, 46.7486771117 ], [ -122.1934957289, 46.7573170831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5733355827, 47.8027671644 ], [ -122.5706924506, 47.8037291147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1378345116, 47.804839361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.6610541746 ], [ -122.1304517336, 47.6661307578 ], [ -122.1223453784, 47.6671817737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4690215411, 45.664782696 ], [ -122.4348020717, 45.6649138902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1749055913, 47.289039031 ], [ -123.1570442192, 47.2803282022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7194853839, 46.9182048549 ], [ -123.7133142809, 46.9289642039 ], [ -123.6707784483, 46.9375606362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4026394998, 47.7808179884 ], [ -117.402846948, 47.7809972131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.4752593869 ], [ -122.8657551158, 46.4709082251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2776857935, 48.8435345933 ], [ -122.2556345682, 48.8390461836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4736324891, 46.5393860319 ], [ -120.4705376957, 46.5410320836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6556188415, 47.4745007676 ], [ -120.6528625036, 47.482823007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8146581289, 46.9746674338 ], [ -123.8135123607, 46.9752656303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4290787927, 47.2340191897 ], [ -122.4348320946, 47.2331712422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7328423678, 48.9841695596 ], [ -122.7483034155, 48.9956575306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5983885994, 48.8916617976 ], [ -122.6025149847, 48.8920541634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.8137027141 ], [ -119.9770150376, 47.8170244607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6385290374, 48.8917094095 ], [ -122.7044893922, 48.8921934089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7753068821, 46.3188415766 ], [ -122.7622997913, 46.31964321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533663973, 47.2334497115 ], [ -119.8356431118, 47.2340276704 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8925432587, 46.1068065797 ], [ -122.8785910075, 46.1067733831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1565310736, 47.5057272643 ], [ -122.1545187673, 47.5061214996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8907960803, 46.3012804426 ], [ -122.8803526133, 46.3061126605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447131335, 46.331198202 ], [ -124.0053179052, 46.3309294575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.8767504028, 47.9921025165 ], [ -122.8590822264, 47.9899083019 ], [ -122.8376261196, 48.0017582789 ], [ -122.8300886216, 48.0107987872 ], [ -122.8301978646, 48.0210112267 ], [ -122.8196628775, 48.04931957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228133919, 48.4357262199 ], [ -122.3174867795, 48.4356661942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.8150001938 ], [ -122.4859651634, 48.8333491544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4957096235, 48.6976302874 ], [ -122.4889163396, 48.702409161 ], [ -122.4998793264, 48.7103012557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.3874436362, 47.0046753037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5135770418, 46.6284896582 ], [ -120.5009591571, 46.6232675075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1570006357, 47.765024263 ], [ -122.1508809942, 47.779603159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074687841, 47.8201159821 ], [ -122.2074577992, 47.821711911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344227391, 47.4416515583 ], [ -122.3339487259, 47.4475073103 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3199265565, 46.3750583048 ], [ -120.3201578547, 46.3713384075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344939127, 48.3373547839 ], [ -122.3359326659, 48.3471746589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4976698793, 46.5583568324 ], [ -122.4954759572, 46.5519074288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4131299621, 48.4502154271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8480154625, 46.9435702245 ], [ -123.8173067572, 46.9516445414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860492264, 48.8043084991 ], [ -122.4860458418, 48.8077759805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963791173, 47.3865201952 ], [ -122.2947521893, 47.3943368889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294448552, 46.6856170888 ], [ -123.7293771219, 46.6866295208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3445897421, 47.7021703261 ], [ -122.3446210177, 47.7050638875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862142566, 47.6722701693 ], [ -122.1852889074, 47.6742929009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6493044391, 45.6503500709 ], [ -122.6469881652, 45.6495101668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8226283862, 45.8229903949 ], [ -120.8122602395, 45.8229926828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.2927627536, 46.7640966507 ], [ -118.286718814, 46.7740832951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2972004015, 46.9531905355 ], [ -122.2979507857, 46.9800944856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293212399, 47.1843499681 ], [ -122.2293015421, 47.1806601772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7406552867, 46.7781576345 ], [ -123.738474948, 46.7947691985 ], [ -123.7460823296, 46.7987604942 ], [ -123.7468410221, 46.8042726776 ], [ -123.7198612579, 46.8296809218 ], [ -123.7193448689, 46.8429886225 ], [ -123.7093258609, 46.8603697186 ], [ -123.7108617816, 46.8670798808 ], [ -123.7062185932, 46.8779876268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111538627, 47.7133751719 ], [ -117.4111252748, 47.7150977748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.3833226703 ], [ -122.2214820038, 47.3825173806 ], [ -122.2065091301, 47.3725609481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2871149715, 47.8209339215 ], [ -122.2755457279, 47.8209143725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0978930871, 47.6573058522 ], [ -117.9493878602, 47.6583110212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.3249389869, 47.5271305474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3006072071, 47.4096540761 ], [ -120.3029610908, 47.4095632747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8976072607, 46.1404539675 ], [ -122.8998676031, 46.1496842122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4508888194, 48.973570904 ], [ -119.459484559, 48.9953117488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5054795183, 47.7584305503 ], [ -118.4817145594, 47.7503088944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.6888584117 ], [ -123.7313710506, 46.6903743354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7124496038, 47.6114063118 ], [ -122.7097773434, 47.6324886961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1489577681, 47.7627227749 ], [ -120.1222565242, 47.7683337153 ], [ -120.0939451422, 47.7618733285 ], [ -120.0771113094, 47.7623555736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2406467581, 48.4027244437 ], [ -122.2643571316, 48.430063418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533828874, 47.231885111 ], [ -119.8533663973, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.6681259529 ], [ -120.5170629867, 46.6712561513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8455160853, 47.415535475 ], [ -122.8464511089, 47.4246031872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872561406, 48.1523209798 ], [ -122.1857562885, 48.1523511436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6312757821, 47.5427369679 ], [ -122.6269725806, 47.5417504284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5877830321, 47.5561469233 ], [ -120.5501706085, 47.5350150951 ], [ -120.5136715771, 47.5356194902 ], [ -120.4890479152, 47.5280979623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7041423514, 45.6445770609 ], [ -122.7195199906, 45.6499177453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7514620424, 48.9886011741 ], [ -122.7516443954, 48.9896016788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981196901, 47.5020226852 ], [ -122.3037605642, 47.5106094253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2939892909, 46.0823692123 ], [ -118.2736672441, 46.0850299125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1428018792, 48.7736597705 ], [ -118.1426715191, 48.7772362922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3100733649, 47.7339389204 ], [ -122.297844387, 47.7338069071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649877502, 48.9991015764 ], [ -122.2649591411, 49.0000309604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2517268724, 46.0417290027 ], [ -117.2515257215, 46.0417663171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6686935469, 48.2839223474 ], [ -122.6661977768, 48.2841306381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4748023779, 46.5896995193 ], [ -120.4720339463, 46.5745548829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.3982856502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1062823585, 46.8495197001 ], [ -124.1079704304, 46.8588588821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6794982425, 46.3616185155 ], [ -122.6734966352, 46.3612844656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4283589995, 48.4448569455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014569021, 47.1941769535 ], [ -122.1990213709, 47.1844363574 ], [ -122.1869699983, 47.1769776673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9489928608, 48.0502722096 ], [ -122.9240212026, 48.050093762 ], [ -122.8785401303, 48.0405591613 ], [ -122.8671620679, 48.0307219954 ], [ -122.8622427496, 48.0164767191 ], [ -122.863957586, 48.0095725516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9085060615, 46.1467022322 ], [ -122.9093031811, 46.1446137165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7651585878, 47.4732140567 ], [ -121.7482609923, 47.473255323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.7206992742 ], [ -122.2022010791, 48.7460185067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1277858514, 47.2236494996 ], [ -123.1265910273, 47.2001121701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.6422285199 ], [ -118.5525513618, 46.6447887503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393101914, 46.196885705 ], [ -119.9172628783, 46.1916920438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991242989, 47.3709132653 ], [ -118.6920130217, 47.3791633099 ], [ -118.6836868334, 47.4153657335 ], [ -118.7129232612, 47.426961387 ], [ -118.7741833699, 47.47212032 ], [ -118.7840000547, 47.472842312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.6495101668 ], [ -122.6340284894, 45.6462602442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3487894025, 48.2702583288 ], [ -124.3463796883, 48.2675248649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3803488731, 47.8097254242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4879877343, 48.6747508138 ], [ -122.4957096235, 48.6976302874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854471652, 47.9489554101 ], [ -124.3854225052, 47.9505814332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982503924, 47.4471972302 ], [ -122.2012702922, 47.4487938305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259425977, 46.9314301096 ], [ -122.6207841642, 46.9343746994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7414617067, 48.0549272619 ], [ -117.7413820969, 48.0569482281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1912428882, 47.2429358128 ], [ -123.1777008261, 47.2523092089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855189782, 45.5821082164 ], [ -122.3857916688, 45.5806082164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219125052, 48.9201922455 ], [ -122.3217483631, 48.934759017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.8781807663 ], [ -122.2036492399, 47.8781466533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1116525558, 48.0918800123 ], [ -122.1130005817, 48.1517401354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2896666816, 45.6971356795 ], [ -121.2657579644, 45.7111535352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8874838161, 46.4465601034 ], [ -122.8839891536, 46.4708944372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0254965582, 46.1765544591 ], [ -123.0155186397, 46.1714070706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8718350067, 46.2347671028 ], [ -123.8750691469, 46.2411694514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4254807685, 46.2734329699 ], [ -119.4001468865, 46.2808655483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.3394444319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.4239544628 ], [ -122.3354523656, 47.4339530916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9571866974, 46.7126430488 ], [ -122.9576609885, 46.7115370036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.2430577065 ], [ -122.3499363576, 47.2430303348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5884452443, 48.8674825234 ], [ -122.5886565352, 48.8850365558 ], [ -122.5918452042, 48.8890326206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8118111203, 46.365574241 ], [ -123.8026031248, 46.3760022496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9125576769, 46.0999090238 ], [ -118.9077542093, 46.0783797271 ], [ -118.9099471422, 46.0583086547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0799320523, 46.9114350689 ], [ -117.0785645783, 46.9168637491 ], [ -117.0882427081, 46.9224279211 ], [ -117.0888409787, 46.92764545 ], [ -117.1008535829, 46.9394396989 ], [ -117.0895173373, 46.9526956733 ], [ -117.0915584637, 46.9622979365 ], [ -117.1061815936, 46.9621618746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9602028302, 47.0399823411 ], [ -122.9478299761, 47.0358210791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2620674833, 47.6387927373 ], [ -119.2528967959, 47.6483371933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888591294, 46.8883629314 ], [ -122.6775668388, 46.8986798288 ], [ -122.6531750965, 46.9072166327 ], [ -122.6259425977, 46.9314301096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6824612226, 47.5278472097 ], [ -122.6851289986, 47.5272359279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4195602915, 47.6526347407 ], [ -117.415831441, 47.6526577026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462274907, 47.7777955542 ], [ -122.3455787056, 47.7806814889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7046470526, 46.5756017902 ], [ -122.6933366335, 46.5767605568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9280333907, 47.1893145679 ], [ -120.9071870107, 47.1848015959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6913794976, 47.2616081181 ], [ -118.6909098997, 47.2757797492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1061815936, 46.9621618746 ], [ -117.1201266623, 46.9711349318 ], [ -117.1201099165, 46.978540374 ], [ -117.1261890475, 46.982384562 ], [ -117.1247530484, 46.9889983791 ], [ -117.1331982378, 46.9962242171 ], [ -117.1333198621, 47.0068232969 ], [ -117.1420392981, 47.0070763388 ], [ -117.1430372318, 47.0139495218 ], [ -117.1490857648, 47.0180587777 ], [ -117.1458226963, 47.0248832352 ], [ -117.1531459312, 47.0298429488 ], [ -117.1545590892, 47.0396761869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7557863554, 46.7871441721 ], [ -118.7402153352, 46.7962897708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.1019028785, 47.463429943 ], [ -123.1150336799, 47.4621474593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9876439189, 47.202569875 ], [ -121.9842574706, 47.200949296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9485401068, 47.0155594946 ], [ -119.9393673303, 47.0263156043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4262909226, 47.225964252 ], [ -122.4276587856, 47.2283207799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3637055225, 46.8798827877 ], [ -117.3460816248, 46.8885837829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583869574, 47.8454224344 ], [ -122.2520093383, 47.8571419291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.3246446179 ], [ -122.6046693406, 47.337400484 ], [ -122.612537009, 47.3544077565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1928794609, 47.4781166157 ], [ -118.2501056872, 47.4783678971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9940435568, 47.2237272029 ], [ -121.0006237988, 47.2257561758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7098709231, 48.2523750469 ], [ -122.6993155614, 48.2593609442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6742675651, 48.5197397944 ], [ -120.6562834707, 48.5242436672 ], [ -120.6424628179, 48.5146645083 ], [ -120.6457283822, 48.5241251482 ], [ -120.6309912378, 48.5489299064 ], [ -120.6353352442, 48.5625862633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4900236905, 47.6081531287 ], [ -119.4635639051, 47.6196933691 ], [ -119.4055514032, 47.6207224415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142238248, 46.952800067 ], [ -122.9289732825, 46.9527927439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269269693, 47.5291188556 ], [ -122.3324821085, 47.534523388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3473316285, 47.6527710843 ], [ -122.3472711494, 47.6539867202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2078614274, 46.8115731743 ], [ -119.1974936697, 46.8114235517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7101114713, 47.7579202996 ], [ -118.7091478999, 47.7594544328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5623879036, 47.1153885874 ], [ -122.5526964173, 47.1210261719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3519395171, 48.9160269917 ], [ -122.3471693341, 48.9195294698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3468192298, 47.6709658181 ], [ -117.3446807868, 47.6717289639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.3462357173, 48.4217075774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2943647479, 46.5783948474 ], [ -123.2852999716, 46.5856826341 ], [ -123.275877446, 46.6016351381 ], [ -123.2741181864, 46.6204039176 ], [ -123.2799704551, 46.6290987029 ], [ -123.2514945992, 46.6301019034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.3476245074, 48.0559531272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6905925202, 47.5040657699 ], [ -117.6929707776, 47.5042331597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.9502697374 ], [ -117.3317752495, 46.9591639644 ], [ -117.3228188395, 46.9678793785 ], [ -117.3241499511, 46.9733140337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246598026, 47.644263262 ], [ -122.0103610919, 47.6398424818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.3225056037 ], [ -122.3548548851, 47.3236743586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6782492386, 47.3327708536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.1310325774 ], [ -119.2777833248, 47.1316521718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9801847421, 48.0911670151 ], [ -121.9796119878, 48.0909954069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0467690066, 47.1906721316 ], [ -121.0383554468, 47.1821664468 ], [ -121.0072302557, 47.1840617967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6640303518, 46.1872361321 ], [ -119.7026562788, 46.1875112252 ], [ -119.7058767846, 46.1902186961 ], [ -119.7065869381, 46.2050788695 ], [ -119.716955895, 46.1992803057 ], [ -119.7276384693, 46.2085860486 ], [ -119.7426319216, 46.20699312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2603550037, 47.8200633469 ], [ -122.254854845, 47.8251972811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4452973982, 48.7767299988 ], [ -122.4302739529, 48.7826189223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.8344961907, 47.4399094921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4828080327, 47.7179633653 ], [ -117.4899095304, 47.721909145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9959923537, 46.5612283389 ], [ -118.985089341, 46.5732225177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5910782183, 48.349487973 ], [ -119.5645756943, 48.3674740397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235791152, 47.6164555058 ], [ -117.2235907413, 47.620646532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329381771, 47.3035228844 ], [ -122.2274240044, 47.30291529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302329781, 48.6349158109 ], [ -118.7340738301, 48.6404765011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.0915688757 ], [ -119.1344405077, 47.0889844077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0518753525, 47.5453888035 ], [ -122.0411447066, 47.5428659307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1654405965, 47.3580279441 ], [ -122.1615500081, 47.3579926973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.6792543224, 48.5015614918 ], [ -122.6781254572, 48.5066895682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2282190803, 47.6193373774 ], [ -120.2277030428, 47.6241332137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3770778203, 46.155161435 ], [ -123.376808335, 46.1600802384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3421710669, 47.9339530573 ], [ -119.2692290678, 47.9499931301 ], [ -119.1829190953, 47.9759837264 ], [ -119.1165798222, 47.9732123098 ], [ -119.0445267647, 47.980223996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.7141304128 ], [ -121.7366031924, 45.6987633896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8293481757, 45.7148576644 ], [ -121.7924840113, 45.7161680262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940695704, 47.1604934513 ], [ -122.2959770656, 47.1610814791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3734287129, 47.0252556279 ], [ -122.3953437269, 47.0507021736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9203962911, 47.682901991 ], [ -121.9365744608, 47.6873896384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.1025546083 ], [ -119.6853721482, 48.1040204491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2595417057, 48.249031188 ], [ -124.2551176147, 48.2434973886 ], [ -124.25782102, 48.2357494947 ], [ -124.2487012457, 48.2130439318 ], [ -124.249669383, 48.206221953 ], [ -124.2337464478, 48.1994776202 ], [ -124.2164172902, 48.1837230479 ], [ -124.2149004639, 48.1767680441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7432426466, 48.0767810116 ], [ -119.780711497, 48.0844287634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0815564766, 47.3772542241 ], [ -122.0515162551, 47.3916599978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6506748055, 47.9912018634 ], [ -119.6565631198, 47.9990210152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3642482346, 46.8895898765 ], [ -117.3600916592, 46.8977782002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2864988953, 48.1556958232 ], [ -122.2449869401, 48.1566054926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4719132383, 46.252522673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6287453364, 46.4780216163 ], [ -117.6056799649, 46.4748288907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7878973606, 47.7642158415 ], [ -120.7730335346, 47.7672787698 ], [ -120.7466541795, 47.7635382143 ], [ -120.7393994237, 47.7563801327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3562019376, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.8407885562 ], [ -123.2217410927, 46.8391963722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1055377983, 47.9978871915 ], [ -122.1063755906, 48.0032207303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0376047767, 47.3579773831 ], [ -122.0279928055, 47.3596803479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.8211831696 ], [ -122.2978040809, 47.8210601157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276134438, 47.1581515823 ], [ -122.4068844997, 47.1589588837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.4648670181, 47.2345482875 ], [ -122.4722108146, 47.2351167316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8998676031, 46.1496842122 ], [ -122.9012940427, 46.1535561469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178750419, 47.4671156335 ], [ -122.2178776034, 47.4696365374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.0567497671 ], [ -122.6965194533, 48.0612450071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3663582961, 47.8214821079 ], [ -122.3642787688, 47.8215067044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6441483202, 47.6429238878 ], [ -117.6038968536, 47.6429304571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349383438, 48.9890983509 ], [ -122.7349579061, 48.9905390378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649034503, 46.8772762302 ], [ -117.3648165287, 46.8790297995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376542721, 47.9813261844 ], [ -122.1217698707, 47.9948572706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179298675, 46.9846708775 ], [ -119.1185803577, 46.992286446 ], [ -119.1257014177, 46.9990395411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4709892732, 46.5848762904 ], [ -120.4674043677, 46.5847787764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6717054661, 48.9414820309 ], [ -122.7201925534, 48.9725563663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8828899247, 47.9544833493 ], [ -122.886536485, 47.9460455733 ], [ -122.8853301763, 47.9139270916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1817811528, 46.731695621 ], [ -117.1809848194, 46.7306947672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.1416754861, 45.5914800209 ], [ -122.0320320146, 45.6195630227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1981225594, 47.2096549901 ], [ -124.2121521075, 47.2310327987 ], [ -124.2144799519, 47.2389866166 ], [ -124.2090169893, 47.2434071564 ], [ -124.2125630243, 47.2479722468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2970255151, 47.5111002228 ], [ -120.2972233483, 47.5139558554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0480975411, 46.3020519269 ], [ -124.0437707451, 46.3032611115 ], [ -124.0447271345, 46.3081264556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6272286689, 46.9765532394 ], [ -123.6175832531, 46.9743856487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.6593020345 ], [ -122.2999619988, 47.6603776807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5146878293, 48.1016682747 ], [ -123.5038218235, 48.1027548736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6463329022, 47.5650689234 ], [ -122.6437803284, 47.5650600843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6353352442, 48.5625862633 ], [ -120.6247422202, 48.5816115228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3452527917, 47.741452447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.9138188412 ], [ -124.5816396399, 47.9176697804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028100586, 47.9298175191 ], [ -122.306318668, 47.9330305052 ], [ -122.3051065733, 47.9435748501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.1017760996 ], [ -119.2517852789, 47.1061646856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.1036076158 ], [ -122.2078191986, 47.09966335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6403863597, 45.7125037539 ], [ -122.6538586045, 45.7228492671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4791481927, 47.3691228237 ], [ -119.4832074613, 47.3815237106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223136019, 48.340974526 ], [ -122.3127725976, 48.3407796335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9670970658, 46.649895724 ], [ -122.9768718108, 46.656330602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4317237119, 48.1182747731 ], [ -123.4299729836, 48.1175659952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362688029, 47.5726405798 ], [ -119.4024814133, 47.5956212233 ], [ -119.3831872355, 47.5969465281 ], [ -119.3320582967, 47.6264826812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546196045, 47.4837941362 ], [ -118.2546862005, 47.4856106964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.4358920299 ], [ -122.3257332902, 48.4357585766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310615854, 47.3798227122 ], [ -122.2310669107, 47.3816510809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150421028, 47.158578655 ], [ -122.2984075597, 47.1601271572 ], [ -122.2965893904, 47.1697800021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2781342919, 47.5038105301 ], [ -122.2798420437, 47.5057734725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979467991, 47.2619638744 ], [ -122.3080765164, 47.2755685609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.5057734725 ], [ -122.2844136914, 47.5118003255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1745117574, 47.5764197452 ], [ -122.1765263234, 47.5839351811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4251466525, 48.7865571974 ], [ -122.4156991339, 48.7941935233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3678919314, 48.6545170814 ], [ -122.3737540854, 48.6673698213 ], [ -122.3929591717, 48.6767773163 ], [ -122.3959171546, 48.6866733018 ], [ -122.4073092626, 48.6901697434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7308174939, 45.655963797 ], [ -122.7438998103, 45.6694309117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2153325712, 47.2145095436 ], [ -118.1150962411, 47.2443549894 ], [ -118.0820522942, 47.2578651152 ], [ -118.0234915918, 47.2986486916 ], [ -117.9764083197, 47.306520851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5111157203, 47.2502531629 ], [ -122.5150756745, 47.2568775022 ], [ -122.5219385669, 47.258344291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860786255, 48.7843780074 ], [ -122.4860047444, 48.7952060269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9640727762, 47.3120619457 ], [ -117.9134293815, 47.3361142767 ], [ -117.8797406624, 47.3697640598 ], [ -117.8450444219, 47.3928212867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.8400447632 ], [ -122.2886644352, 48.8433410199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5914996503, 47.0056760416 ], [ -120.5896360866, 47.0059926881 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4125086133, 47.4188575024 ], [ -121.4114287309, 47.405602473 ], [ -121.3981391089, 47.395175907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8839891536, 46.4708944372 ], [ -122.8803797924, 46.4829246021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8112469946, 46.2969576394 ], [ -122.7988517363, 46.3024562624 ], [ -122.7946174518, 46.3111351239 ], [ -122.7753068821, 46.3188415766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0334896745, 47.3838222996 ], [ -122.0453893577, 47.3903330933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0182971717, 47.3410067723 ], [ -122.0194447706, 47.3543865463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.2055146884 ], [ -122.6590763437, 48.2086905534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2923508391, 47.8173374386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1585629313, 47.0421430903 ], [ -124.1580458631, 47.0446019994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3006349454, 47.4249031098 ], [ -119.2762951487, 47.4275043915 ], [ -119.2594662735, 47.4250049904 ], [ -119.21615798, 47.432584836 ], [ -119.1587375545, 47.4191382519 ], [ -119.1328213855, 47.4183288429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854389282, 48.9351240348 ], [ -122.485447935, 48.9391322618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2559001868, 47.2460061029 ], [ -122.2593033654, 47.2570246683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5247105217, 48.5852161614 ], [ -119.5087900733, 48.6126127152 ], [ -119.4740104061, 48.6441487529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970611649, 47.4220162124 ], [ -122.1969627885, 47.4415056535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2699380817, 47.6708379539 ], [ -122.2639807772, 47.6750826193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096358266, 47.5340033861 ], [ -122.601757504, 47.5339879331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7253740372, 47.0679296901 ], [ -122.7090034211, 47.0697237816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6163705941, 45.6478697622 ], [ -122.6107084925, 45.647880158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2442490763, 47.3856159218 ], [ -122.2313987649, 47.3961663604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0078943102, 46.2117237268 ], [ -118.9716314101, 46.2117605619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5123492002, 48.4036826294 ], [ -119.5195878632, 48.4074511711 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.11013683, 46.7534531953 ], [ -122.0309120554, 46.7587001203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2781150352, 46.2587418451 ], [ -119.2485902926, 46.2609157729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0326707223, 47.0850835188 ], [ -123.0208342666, 47.0780579889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150062176, 46.3807401139 ], [ -120.3150102837, 46.3792337657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4900970503, 46.8410354631 ], [ -117.485569689, 46.8462038031 ], [ -117.4728550026, 46.8484992365 ], [ -117.4491740407, 46.8620068645 ], [ -117.4229038284, 46.8656513628 ], [ -117.3996057791, 46.8749458131 ], [ -117.3877903612, 46.8866484089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0930271133, 47.8390930772 ], [ -120.0898201478, 47.8397078467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0304642178, 46.1645370289 ], [ -123.0261661571, 46.1622220249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1167643996, 48.1516314237 ], [ -122.1130429581, 48.1514951182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1429848329, 47.5057588479 ], [ -122.1414184657, 47.5061993756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904086007, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2348413671, 47.588418258 ], [ -122.2203529267, 47.5824516264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8053708556, 45.8265045706 ], [ -120.8039379118, 45.8264664938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4839759446, 47.158948731 ], [ -122.4725322952, 47.1701115828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6529393278, 48.3694852783 ], [ -122.6511977801, 48.3765935554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354523656, 47.4339530916 ], [ -122.3344227391, 47.4416515583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4832840697, 48.7824744802 ], [ -122.4958895454, 48.7835005491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1742498954, 47.3867659672 ], [ -117.1737248443, 47.4229162513 ], [ -117.1504802596, 47.4304049796 ], [ -117.1426102031, 47.4378155483 ], [ -117.1421354348, 47.4475636134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343328973, 47.7341445146 ], [ -122.3289242991, 47.7341017926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5560127138, 46.4751416428 ], [ -117.4811308047, 46.4673204627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4821709855, 46.6784018527 ], [ -120.482692837, 46.6807839356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7080243736, 47.2036487713 ], [ -120.698400881, 47.209642341 ], [ -120.7006997329, 47.215577636 ], [ -120.6947810491, 47.2369919331 ], [ -120.6976443009, 47.2433710848 ], [ -120.6923436564, 47.2506189178 ], [ -120.7011122103, 47.2986247569 ], [ -120.6957500975, 47.3044682452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.5315881261 ], [ -122.0171493711, 47.533899271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6291767301, 47.6025424022 ], [ -122.6288917189, 47.6068663319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3235990471, 48.0975676978 ], [ -123.2987245907, 48.0961085325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7267485599, 46.4373575595 ], [ -122.7177660143, 46.4300338266 ], [ -122.7082095882, 46.4297795526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923508391, 47.8173374386 ], [ -122.2923358096, 47.816111394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676311053, 47.6547183962 ], [ -122.6759360238, 47.659448765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.1686131052, 48.5922259084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0544483353, 46.341189423 ], [ -117.0559678999, 46.3418155618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2746840212, 48.2730370256 ], [ -122.3124253164, 48.3052893759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4943892728, 45.5890557217 ], [ -122.4798570338, 45.5857517212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1084072105, 47.9196070975 ], [ -122.1077045908, 47.9288634652 ], [ -122.100879718, 47.9337909869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2461272383, 46.2409894234 ], [ -119.2352979381, 46.2341237242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768183035, 46.9087074668 ], [ -117.0767523409, 46.9097212815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4959893931, 46.9237521292 ], [ -120.430333448, 46.8881638576 ], [ -120.4212005019, 46.8724889781 ], [ -120.3996856862, 46.8614101436 ], [ -120.3929861408, 46.8503722268 ], [ -120.3829623596, 46.8459444194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2174597214, 47.2971248747 ], [ -122.1920375216, 47.2883683977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9287037815, 47.0601524957 ], [ -123.9302808397, 47.0618284552 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8991903157, 46.1440948709 ], [ -122.8982557871, 46.1444215752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3644243308, 47.8948319873 ], [ -124.3806106649, 47.8957632885 ], [ -124.3925708525, 47.9077321088 ], [ -124.4096776218, 47.9282853343 ], [ -124.4017832625, 47.9345882869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3960419117, 47.002634929 ], [ -123.3912683196, 47.0040697768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0006237988, 47.2257561758 ], [ -121.0029911997, 47.22593134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.4342994903, 47.3048223444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6904593755, 46.9737613337 ], [ -123.6476283043, 46.9765640486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3463796883, 48.2675248649 ], [ -124.3064146166, 48.2617164172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4366735302, 48.9489071813 ], [ -119.4441638638, 48.9563167486 ], [ -119.4508888194, 48.973570904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7415652617, 45.9061801375 ], [ -122.7425010819, 45.9056627104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6076139263, 47.472278094 ], [ -117.5967641772, 47.4763429271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9810776369, 45.663863346 ], [ -120.9541625183, 45.6629024253 ], [ -120.9408254869, 45.6665296294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.9743066653 ], [ -118.6636857174, 46.9998165576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6058982049, 47.2443593024 ], [ -119.6003280753, 47.2499775307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0351635573, 47.0854260018 ], [ -118.8814721275, 47.0869161419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3736956575, 47.7951965131 ], [ -122.3700729113, 47.7924504549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3364704335, 48.4212504751 ], [ -122.3361482633, 48.4175077145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2109843601, 47.8772104619 ], [ -122.2069786865, 47.8783103437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.8083982974 ], [ -122.5706924506, 47.8037291147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2956838746, 46.9101470708 ], [ -122.2816151022, 46.9256466238 ], [ -122.2836719967, 46.935493017 ], [ -122.2806671696, 46.9400534634 ], [ -122.2972004015, 46.9531905355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9031806451, 48.0520592106 ], [ -119.899717106, 48.0550657238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3339487259, 47.4475073103 ], [ -122.3289448539, 47.4433692551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7812799701, 46.8608150774 ], [ -122.7122024199, 46.8760779053 ], [ -122.7004740827, 46.8819430195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9323014096, 47.6518739395 ], [ -122.9384879591, 47.6412968212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4557031883, 46.7526547977 ], [ -120.4528979621, 46.7612045639 ], [ -120.4557694597, 46.7658039465 ], [ -120.4481605409, 46.7713262375 ], [ -120.4538028284, 46.7790776556 ], [ -120.4504875687, 46.7884785604 ], [ -120.4624214807, 46.800526586 ], [ -120.4458862509, 46.8007720122 ], [ -120.4401392158, 46.8070933277 ], [ -120.4553319322, 46.8189351153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3921711474, 47.9866051994 ], [ -122.4022467347, 47.9970221327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704405811, 45.6318535726 ], [ -122.6693837427, 45.6318469625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5362836535, 47.1307921694 ], [ -122.5294843284, 47.134748182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4330740998, 47.2403048183 ], [ -122.4345227013, 47.2433241411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4720339463, 46.5745548829 ], [ -120.4722493593, 46.5674944544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0023636712, 47.8395520304 ], [ -119.9981202664, 47.8393603968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.1066616235 ], [ -123.0867809993, 47.0992170671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178365864, 47.4708583363 ], [ -122.217721755, 47.4720497684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472698982, 47.6642399557 ], [ -122.3472570211, 47.6739649907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.3778354946 ], [ -122.2310615854, 47.3798227122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3800291539, 47.1741955658 ], [ -117.3584633908, 47.2145021441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3964147136, 47.0053152401 ], [ -117.4162303684, 47.0005004291 ], [ -117.4435778528, 47.0027701026 ], [ -117.4671998581, 47.0097954879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2510997896, 47.9232511801 ], [ -122.2328875048, 47.9233521925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9035782953, 46.2838610024 ], [ -122.9030769375, 46.2842542837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.9790612199 ], [ -122.1909967909, 47.9804242172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182389975, 47.1855844879 ], [ -123.9532395545, 47.1976220274 ], [ -123.969523937, 47.2214727186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.1620197263 ], [ -118.9793695341, 48.1656172167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432117884, 46.4565616045 ], [ -122.84688053, 46.4446581265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0053179052, 46.3309294575 ], [ -123.9777350926, 46.3323489831 ], [ -123.9591582091, 46.3481677178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9752267156, 46.6637302723 ], [ -118.8894036808, 46.6634446901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559008398, 46.3750297198 ], [ -117.0517810734, 46.3795878122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5537509538, 48.0996615302 ], [ -123.5398960568, 48.0974797421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3040566842, 47.947165397 ], [ -122.3011185084, 47.9488440128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289258671, 47.6987018227 ], [ -122.6226857238, 47.702539463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0122863976, 46.8024280456 ], [ -123.007921493, 46.8026940324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.6498450788, 47.5081639767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500487942, 47.7980256738 ], [ -117.3489538413, 47.8018716143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6971089618, 47.524879573 ], [ -122.6996522214, 47.5252936288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.7381439938 ], [ -119.1773608192, 46.7412901614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649177077, 48.2647143139 ], [ -122.2746840212, 48.2730370256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1892028116, 47.3678526781 ], [ -122.1811585184, 47.3649772586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0430468348, 47.1585051205 ], [ -122.036347956, 47.1580428725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3555721402, 47.978279434 ], [ -122.3561926794, 47.9788192594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2848476708, 47.1815733492 ], [ -122.2828899445, 47.1858920985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862318775, 47.6058898709 ], [ -122.1885119703, 47.6116238629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293785955, 47.1902878983 ], [ -122.2293212399, 47.1843499681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269725806, 47.5417504284 ], [ -122.6274333676, 47.5344924995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.2998428644 ], [ -122.2470734178, 47.3105055416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078901312, 46.9418030245 ], [ -122.9078782799, 46.9473039393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4677352564, 45.7152835978 ], [ -121.4664701671, 45.7148037075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8035781755, 48.9610755132 ], [ -117.8260454275, 48.9825544193 ], [ -117.8316760948, 49.0005187362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1708437963, 48.4288296254 ], [ -118.1721144093, 48.4502822246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4360006417, 48.7109840533 ], [ -119.4060187455, 48.7641667069 ], [ -119.3995222327, 48.7939812329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3903629125, 47.3216340622 ], [ -122.3708239951, 47.3286992032 ], [ -122.3654780308, 47.3194849976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3840920127, 46.2062528444 ], [ -123.3821019742, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.8521537918 ], [ -122.5873849699, 47.8401132773 ], [ -122.5836844979, 47.8135870398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8141165471, 47.7731482573 ], [ -120.7878973606, 47.7642158415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.9640230526 ], [ -122.352240221, 48.9636327884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857562885, 48.1523511436 ], [ -122.1829723721, 48.1524164911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0747632734, 47.641906708 ], [ -120.0714795546, 47.648195998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.9367931061 ], [ -119.0105057584, 47.9398197883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3829577285, 45.705115008 ], [ -121.3759162286, 45.7092484545 ], [ -121.3443236712, 45.7108946405 ], [ -121.3062630807, 45.7050166524 ], [ -121.2904509822, 45.6962586457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5318979045, 45.6826849971 ], [ -122.5077498431, 45.6840205721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874842611, 46.5393952983 ], [ -117.0892586477, 46.5431821646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929510336, 47.905080688 ], [ -122.2933970337, 47.9108132967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2839019256, 48.3051822196 ], [ -117.2577905977, 48.2662465526 ], [ -117.2411593235, 48.2498304367 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7426319216, 46.20699312 ], [ -119.7486010675, 46.2060790676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.2595150494 ], [ -119.0867515262, 46.2655755624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2102027734, 47.9096841492 ], [ -122.2019957815, 47.9271375522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9811418748, 46.1544576439 ], [ -122.974844153, 46.1513553719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4759788061, 46.681083667 ], [ -120.4871781519, 46.6713847636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710615487, 47.6700439942 ], [ -122.2699380817, 47.6708379539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0474672026, 47.8548480152 ], [ -120.0356242216, 47.8496165293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897117864, 47.2283165519 ], [ -121.9897674878, 47.2427944952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2104399855, 48.5159581466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5663025103, 47.9938759436 ], [ -117.6038139756, 48.0324402361 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.0543832543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9423990512, 47.5302140606 ], [ -121.9356420479, 47.5224107728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6903245553, 47.5619414589 ], [ -117.6837381984, 47.566162133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6774101021, 47.5636481361 ], [ -122.6811544626, 47.5662461986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349746441, 47.5375233364 ], [ -122.3350027439, 47.5378934087 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3841243851, 47.8153402952 ], [ -119.3626574045, 47.8153679549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3142184025, 46.4146304102 ], [ -120.3146069423, 46.4038122596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7157590122, 46.3489750762 ], [ -123.7059505973, 46.3368666444 ], [ -123.694991834, 46.3327351476 ], [ -123.6898715896, 46.3183120371 ], [ -123.6592989856, 46.3330689844 ], [ -123.6405403984, 46.3349412244 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079784055, 48.4355954608 ], [ -122.2961576193, 48.435565171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0574168065, 46.4199273309 ], [ -117.0468945815, 46.4199295935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947362877, 47.2575680773 ], [ -122.2979467991, 47.2619638744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9882608553, 48.2735411001 ], [ -121.9610038225, 48.2684611163 ], [ -121.9318997964, 48.2706730135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.3978963103, 48.1061923633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5160199943, 47.3953842075 ], [ -121.4905907506, 47.3968832449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0439333142, 48.1840295652 ], [ -117.0441181005, 48.1780553435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576684527, 47.6540467209 ], [ -118.1565942739, 47.6540477597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8992668381, 46.1802918975 ], [ -122.8950160535, 46.1910097955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937941925, 47.0829397886 ], [ -122.2935392549, 47.0986145276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6413017681, 46.8104615568 ], [ -117.593064935, 46.8132659409 ], [ -117.5586417087, 46.8037170574 ], [ -117.5379557025, 46.8086463059 ], [ -117.52930964, 46.8231348395 ], [ -117.5178051863, 46.8292156508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3245445805, 47.4367115543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3424452974, 48.4769135735 ], [ -122.3416041033, 48.4806846506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645970993, 45.6715670557 ], [ -122.6645242594, 45.6843405722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1295906216, 47.8811242831 ], [ -120.1084617824, 47.8738712824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112745852, 47.6530477533 ], [ -117.4111435799, 47.6590755437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2436783372, 47.757435704 ], [ -122.2135261083, 47.7504974579 ], [ -122.2093581645, 47.7588250331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1441855248, 47.1674591072 ], [ -122.1171685745, 47.1658351362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7040622718, 47.5520049051 ], [ -117.6903245553, 47.5619414589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.7921007504 ], [ -118.7472041173, 46.7900290895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0875131805, 46.9125608238 ], [ -117.083074089, 46.9114449779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4036573523, 47.9700998663 ], [ -124.4027159358, 47.9795700328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.3547293908, 46.000879137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0993240354, 47.1390009974 ], [ -122.0947304936, 47.139868914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7476202885, 46.2140157031 ], [ -119.7431160592, 46.21487318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9888740579, 47.2031602024 ], [ -121.9876439189, 47.202569875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9277931611, 46.6221965746 ], [ -122.9414768713, 46.633570246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.1824916579 ], [ -119.3489993938, 47.189958653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0454478886, 48.1840423049 ], [ -117.0439333142, 48.1840295652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3692193944, 47.4758683659 ], [ -120.3461737894, 47.4701826048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4083499421, 47.2391797955 ], [ -122.4000472078, 47.2402668908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004124588, 47.3957738513 ], [ -122.2985045151, 47.39547624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134933014, 47.7033989052 ], [ -119.8130784885, 47.8092766362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1093210645, 47.8989017492 ], [ -122.1084072105, 47.9196070975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8766472391, 46.1027391181 ], [ -122.8834047537, 46.113522401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3857916688, 45.5806082164 ], [ -122.3855374224, 45.5797321231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6861432864, 48.2123143699 ], [ -122.6931398543, 48.2123094716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3650011171, 46.8751003196 ], [ -117.3649675878, 46.8759309573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.5432499372, 47.9032589462 ], [ -124.5843571045, 47.8989411015 ], [ -124.5896096738, 47.8935749777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.4952529972 ], [ -120.3051164258, 47.5266969435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5298400174, 47.5049019302 ], [ -122.5243096729, 47.5048277184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.8531276258 ], [ -117.645634686, 47.8601052658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7263837289, 48.8921522797 ], [ -122.7266598296, 48.9068699571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9722788914, 47.3073278653 ], [ -117.9726679277, 47.3094719647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6743723204, 48.2692255901 ], [ -121.6500900855, 48.2728153124 ], [ -121.6360735698, 48.2637676424 ], [ -121.6087560562, 48.2553398746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.1309639391 ], [ -122.0993240354, 47.1390009974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.7015013824, 47.7577620281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0890281054, 47.5593389769 ], [ -122.0695554806, 47.5516320142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7967192306, 45.7024032011 ], [ -120.7833426983, 45.7091771574 ], [ -120.7319438816, 45.7170108114 ], [ -120.7221536232, 45.7293069774 ], [ -120.6517779943, 45.7521047655 ], [ -120.6135360378, 45.7563909158 ], [ -120.5610451158, 45.7497909585 ], [ -120.5332228068, 45.7346091661 ], [ -120.5114600933, 45.7166372424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2494308353, 47.4122081687 ], [ -122.2487949553, 47.4322754113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8966827506, 47.2327403563 ], [ -119.8747183109, 47.2330604599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.9203722024, 48.5548430412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3846465219, 47.4488701305 ], [ -117.3998174003, 47.4705479987 ], [ -117.3997755612, 47.5144285359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1378345116, 47.804839361 ], [ -122.1137494257, 47.8050106332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6378671733, 46.2418590791 ], [ -119.6231476737, 46.2473883891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9708431325, 46.1276076543 ], [ -122.9627838072, 46.122637066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3591982992, 47.7502754755 ], [ -117.3658073843, 47.7605601689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.5668492127 ], [ -122.3393652388, 47.5748709959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6041613497, 46.9661133917 ], [ -123.6009036248, 46.9747491231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.1810552137 ], [ -117.039658043, 48.1780212144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4027159358, 47.9795700328 ], [ -124.3923505431, 47.9892462948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.1661035805, 47.0934677871 ], [ -117.1829751603, 47.1048097168 ], [ -117.2006505617, 47.1259714675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0693320216, 46.4212282179 ], [ -117.0739785142, 46.426337746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.329127007, 47.5903078499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.2024103912 ], [ -122.2984249952, 47.1999364331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.4929517328 ], [ -124.0332571479, 46.5053645236 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2948243841, 47.4982893333 ], [ -122.2981196901, 47.5020226852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957532497, 47.6240627613 ], [ -117.4685078514, 47.6390299187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9032240437, 47.1642334315 ], [ -121.8720051785, 47.1614029692 ], [ -121.8491037107, 47.15273018 ], [ -121.8248002007, 47.1594263485 ], [ -121.7896956437, 47.1776620458 ], [ -121.7241753305, 47.1569952423 ], [ -121.6890804036, 47.1533532154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158418422, 47.2671438187 ], [ -122.5158979379, 47.271095951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410260439, 48.4420756317 ], [ -122.3411431465, 48.4469767522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958516184, 47.4404648377 ], [ -122.2961885635, 47.4452613117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7888286163, 48.0414353719 ], [ -122.7936594895, 48.0437626987 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0820864503, 46.2486605032 ], [ -119.082542582, 46.2513545129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.9220918299 ], [ -122.2635417231, 47.9221791593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.4832690795 ], [ -121.7812157741, 47.4740748071 ], [ -121.7651585878, 47.4732140567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1773608192, 46.7412901614 ], [ -119.1764209525, 46.7675625649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.9892213843 ], [ -123.8857699354, 46.9900928031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.3560125261 ], [ -123.5796596528, 46.3569722482 ], [ -123.5716587538, 46.3606344951 ], [ -123.5279784869, 46.3476726817 ], [ -123.4985989794, 46.3468225811 ], [ -123.4940632677, 46.3246853921 ], [ -123.4668950282, 46.295217675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8524014486, 46.6510749802 ], [ -118.8511888124, 46.6508402423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.9433157516 ], [ -119.0106509547, 47.9393125368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6065410768, 46.9419413133 ], [ -122.6057120793, 46.9414897752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5927942323, 47.5049278803 ], [ -122.5510696792, 47.5051569339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897674878, 47.2427944952 ], [ -121.9855912992, 47.2608703461 ], [ -121.993396961, 47.2701490347 ], [ -121.9893553049, 47.2856086782 ], [ -121.9987441084, 47.2949136689 ], [ -122.002777857, 47.3067016972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4719132383, 46.252522673 ], [ -119.4711841566, 46.2575715157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5933186815, 46.9783764391 ], [ -123.481658804, 46.9993368592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.1970611649, 47.4220162124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0447225968, 46.3088719536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2476233983, 48.0127941378 ], [ -118.2370390967, 48.0181683325 ], [ -118.2214889113, 48.0495658171 ], [ -118.2229361425, 48.0536372397 ], [ -118.1970382045, 48.0730473236 ], [ -118.2047001305, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.2040162741, 48.1089461065 ], [ -118.200662958, 48.1160236535 ], [ -118.192017662, 48.1178376661 ], [ -118.202303033, 48.1171744248 ], [ -118.2090938982, 48.1247874877 ], [ -118.2017532025, 48.1348019428 ], [ -118.1667978159, 48.1559458942 ], [ -118.1710111219, 48.1632157542 ], [ -118.1677592146, 48.1778167061 ], [ -118.1719498116, 48.1908780528 ], [ -118.1700073083, 48.1986778218 ], [ -118.1799617419, 48.2055463123 ], [ -118.1754317167, 48.2178911392 ], [ -118.1569623818, 48.2283942399 ], [ -118.1354121563, 48.2515691219 ], [ -118.1314821032, 48.2619991359 ], [ -118.1360883381, 48.2791408008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7381959686, 46.9710907007 ], [ -123.6904593755, 46.9737613337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2274240044, 47.30291529 ], [ -122.2193270337, 47.30338806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9378634013, 46.8432344905 ], [ -119.9417957659, 46.8489960363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2815700733, 48.1364858296 ], [ -122.2814765504, 48.1399591811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0272288264, 47.8361946595 ], [ -120.0250689519, 47.8360845439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.2109843601, 47.8772104619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169355081, 45.795557156 ], [ -120.8072496646, 45.8123784315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1400802554, 47.8145116129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1568931216, 48.1895403281 ], [ -124.1366332936, 48.1896932833 ], [ -124.1191842401, 48.1973336885 ], [ -124.1119721489, 48.1930568586 ], [ -124.099026134, 48.1963808527 ], [ -124.0654490759, 48.1842032056 ], [ -124.067003423, 48.179499668 ], [ -124.0625034827, 48.1822719075 ], [ -124.0609965475, 48.1744746566 ], [ -124.0071237943, 48.1712466081 ], [ -123.9983013856, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.1599293665 ], [ -123.9544082731, 48.1651293696 ], [ -123.9450001967, 48.1636797033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.1784207654 ], [ -121.9946857537, 47.1974841035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2441256362, 48.5062952131 ], [ -122.2437055114, 48.507550046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.9970221327 ], [ -122.4150175631, 48.0010609611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5104823423, 47.5048487373 ], [ -122.5035093915, 47.505998994 ], [ -122.5010531946, 47.5121479033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736865914, 48.7254915984 ], [ -122.4674230818, 48.7381587883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8696023471, 46.2515208776 ], [ -119.8182520318, 46.2379730535 ], [ -119.7975638125, 46.2245562959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754402986, 48.8651910486 ], [ -121.6783150365, 48.8665390524 ], [ -121.6799490243, 48.8623665546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0782317267, 48.3464626059 ], [ -120.0545756911, 48.3445792629 ], [ -120.0431258874, 48.3481890608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5034799431, 45.9983583464 ], [ -122.5258480464, 45.9932136954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7477462633, 46.6933741544 ], [ -123.7523543573, 46.686064117 ], [ -123.7680296972, 46.6803622831 ], [ -123.7755784334, 46.6820267252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2505086155, 47.804211862 ], [ -124.2505172054, 47.8109376742 ], [ -124.2580730119, 47.8098225751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9230833697, 46.2536596942 ], [ -123.9486490068, 46.2763382177 ], [ -123.9684991984, 46.3063276073 ], [ -124.0020006548, 46.3205770833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.8959740416 ], [ -124.108797736, 46.9022648982 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.5775403152, 46.5133343443 ], [ -122.5624407348, 46.517004806 ], [ -122.550440133, 46.5344542826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8408960953, 46.4378300484 ], [ -122.8360736283, 46.4372194695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6538586045, 45.7228492671 ], [ -122.6539986238, 45.7231498065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1701797505, 47.1175620554 ], [ -124.1774711517, 47.126216089 ], [ -124.1826998409, 47.1546474521 ], [ -124.1877734935, 47.1568704766 ], [ -124.192508816, 47.1667261776 ], [ -124.1884261401, 47.1715589354 ], [ -124.1943335755, 47.1777040428 ], [ -124.1872853992, 47.1802398968 ], [ -124.1970883653, 47.1823629315 ], [ -124.1977866952, 47.2037633126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1774995641, 47.3024217933 ], [ -122.1583977367, 47.3298300754 ], [ -122.1475130648, 47.3390747692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.4906407097 ], [ -124.0338926368, 46.4915291514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2799690003, 47.8826891954 ], [ -122.2849614715, 47.889952125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8203461375, 47.4070484463 ], [ -122.8153357809, 47.4049429252 ], [ -122.8113444229, 47.3926501334 ], [ -122.8159977791, 47.3779028227 ], [ -122.8058112478, 47.3601334979 ], [ -122.7907640195, 47.3624582676 ], [ -122.7783007191, 47.374504504 ], [ -122.7727867254, 47.3724749266 ], [ -122.771733287, 47.3675849633 ], [ -122.7640925019, 47.3690425701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3832242727, 47.8097517091 ], [ -122.3831772587, 47.8031153818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921188204, 47.8129694111 ], [ -122.1799369192, 47.8125762494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8143955605, 46.9760348973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9532472828, 47.5883720957 ], [ -121.9327980228, 47.5785984862 ], [ -121.9049232747, 47.5724947503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.2931738148, 47.9220879011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4024404199, 47.7757947974 ], [ -117.4020716363, 47.7805975201 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8846884522, 46.2587169246 ], [ -119.8696023471, 46.2515208776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112427568, 47.6526173898 ], [ -117.4112745852, 47.6530477533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6304436393, 47.5650259077 ], [ -122.629614867, 47.5650234096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3245572303, 47.7776430656 ], [ -122.3137091087, 47.7773380757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2736672441, 46.0850299125 ], [ -118.2672424979, 46.0864775034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6565631198, 47.9990210152 ], [ -119.6525696935, 48.0041955683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.0963861688 ], [ -123.5396953537, 48.0975545684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6947545489, 46.7266771426 ], [ -120.6682357978, 46.7114791155 ], [ -120.6535718414, 46.6949663919 ], [ -120.6511837992, 46.682767821 ], [ -120.6206863347, 46.6605003365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3595018472, 47.6413739111 ], [ -119.3541224664, 47.6543643378 ], [ -119.3628837429, 47.6709101104 ], [ -119.3626574045, 47.8153679549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3654780308, 47.3194849976 ], [ -122.3605429103, 47.3207278571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694499846, 47.0015817743 ], [ -122.6553305469, 46.9933014974 ], [ -122.6470692004, 46.9763124318 ], [ -122.6325310381, 46.9646197548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1342855473, 46.7970731587 ], [ -119.1343129277, 46.818765882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.2168054788 ], [ -119.1380609673, 46.216909794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6546046376, 47.70607599 ], [ -122.6455230644, 47.699437756 ], [ -122.6289258671, 47.6987018227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7197711644, 46.5320488595 ], [ -122.6442388387, 46.5318795567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014846937, 48.1878947696 ], [ -122.1921631348, 48.1882508645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.7236094662 ], [ -122.1871980092, 47.7384984553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7402748344, 45.9071079053 ], [ -122.7415652617, 45.9061801375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3423037081, 47.7341359849 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2445299041, 47.3611482288 ], [ -122.2439880813, 47.3740667238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2633967769, 47.4587012142 ], [ -122.2670557408, 47.4665917564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616630283, 47.2001928833 ], [ -122.462495706, 47.2142916788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3277374047, 47.4792708197 ], [ -122.3272024219, 47.4854072542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8784338391, 47.8213945565 ], [ -122.8867284289, 47.8204635395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4672879853, 46.7034528115 ], [ -117.4648072806, 46.7209769351 ], [ -117.4712118709, 46.7125945025 ], [ -117.4792740728, 46.7112771519 ], [ -117.4877195547, 46.7310206754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3700729113, 47.7924504549 ], [ -122.3667991767, 47.790544377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7338240699, 47.9543732544 ], [ -122.7387409377, 47.9595773681 ], [ -122.7406674139, 47.9788642723 ], [ -122.7484287352, 47.9946458229 ], [ -122.7585868562, 48.0067586832 ], [ -122.7686405015, 48.0112283115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6021851057, 46.8903722209 ], [ -119.5806705958, 46.8856606496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803797924, 46.4829246021 ], [ -122.87656073, 46.494718014 ], [ -122.8765100174, 46.5439285548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1591468798, 47.1688389452 ], [ -122.1485727781, 47.1677245225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.8889120074 ], [ -122.5018126834, 45.8933986585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0040609275, 46.5740844587 ], [ -119.0017412812, 46.5851433384 ], [ -119.0063294763, 46.5974626974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.4475535195 ], [ -123.8797547045, 47.4557845081 ], [ -123.8856775734, 47.4568668079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7891868451, 46.5254691689 ], [ -117.7762087351, 46.5365465696 ], [ -117.774915493, 46.5482610417 ], [ -117.7695236781, 46.5563503655 ], [ -117.7807630648, 46.5681984198 ], [ -117.7751352134, 46.580586403 ], [ -117.7852894412, 46.5874957373 ], [ -117.781376055, 46.592409526 ], [ -117.7913837991, 46.6144419053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2525911983, 47.4840343924 ], [ -122.2490284682, 47.4830589416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9008434138, 48.4812158123 ], [ -117.9030142887, 48.4912950401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.2663139585, 47.8342508992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9063657838, 46.1800997708 ], [ -122.9051023405, 46.1847118489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4630590407, 47.1874722949 ], [ -122.4620882803, 47.1970495358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3544482975, 46.1872368309 ], [ -123.3284135658, 46.1638323685 ], [ -123.2823984896, 46.1526498853 ], [ -123.2628134616, 46.1553986607 ], [ -123.2326272804, 46.1727272565 ], [ -123.1771557033, 46.1884708528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1187528092, 48.1643133094 ], [ -122.1285623751, 48.1783060226 ], [ -122.1285221878, 48.1877057823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7363030997, 46.6466193959 ], [ -119.8006316104, 46.633273275 ], [ -119.8505806667, 46.6339001593 ], [ -119.8948432937, 46.6642061796 ], [ -119.9070616699, 46.6806375323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.1849328401 ], [ -119.1670085036, 46.1917196627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0381349997, 47.0457147607 ], [ -124.0440853494, 47.0525732949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7091478999, 47.7594544328 ], [ -118.707944478, 47.7591802313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6160035758, 46.6478940682 ], [ -121.6109588785, 46.6497792928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7350857122, 47.8671728801 ], [ -121.7199344676, 47.8658767679 ], [ -121.7022061254, 47.8572690469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.3893726474 ], [ -119.4842297169, 47.3934848684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1937378718, 48.1522064888 ], [ -122.1872561406, 48.1523209798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7038991686, 46.6750455817 ], [ -123.6950836877, 46.6690700815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6555581763, 47.650535837 ], [ -122.6676311053, 47.6547183962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2598462586, 47.83972786 ], [ -122.2583869574, 47.8454224344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2554591689, 47.1454962289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340930823, 46.5322486745 ], [ -122.613916913, 46.5330861252 ], [ -122.6035425582, 46.5285458674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1420864524, 47.6544054526 ], [ -118.1408999543, 47.6547957468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022010791, 48.7460185067 ], [ -122.2007828338, 48.7782923251 ], [ -122.1904825956, 48.7896980395 ], [ -122.1904549774, 48.7962085212 ], [ -122.1981325832, 48.8071844986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7831995028, 48.1070075798 ], [ -122.7810617654, 48.1076558595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4309020008, 48.1191579416 ], [ -123.4317237119, 48.1182747731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534105031, 47.2194487082 ], [ -119.8534053473, 47.2223294365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1566785185, 48.0769008073 ], [ -123.1417952785, 48.074895211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114493708, 47.3915360181 ], [ -122.3079523143, 47.3909890982 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7482609923, 47.473255323 ], [ -121.7228989931, 47.4670798095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7402153352, 46.7962897708 ], [ -118.7081501436, 46.8144289467 ], [ -118.6742632423, 46.8226983388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3058304988, 46.9520915888 ], [ -121.2558073968, 46.9665971639 ], [ -121.2103710587, 46.9691134856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6128336455, 48.4963987197 ], [ -122.6127739583, 48.5004551192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6475719156, 47.5652581761 ], [ -122.6463329022, 47.5650689234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0411447066, 47.5428659307 ], [ -122.0241863249, 47.5315881261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028757982, 47.3000530138 ], [ -122.2981579128, 47.312895011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.9310935459 ], [ -119.8822982751, 47.9420181745 ], [ -119.8757419687, 47.9580513417 ], [ -119.8879581207, 47.9724408061 ], [ -119.8895324357, 47.9825320573 ], [ -119.8858510006, 47.9902643238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0796037239, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.1114439556, 47.4631544785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7924840113, 45.7161680262 ], [ -121.786225659, 45.7141304128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.2788022155 ], [ -119.3023056898, 46.2676765369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5903183471, 46.0567683361 ], [ -118.5192085128, 46.0499502566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1344405077, 47.0889844077 ], [ -119.1212539974, 47.0877998117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.6007985246 ], [ -122.7112388207, 47.6052288214 ], [ -122.7124496038, 47.6114063118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0934185999, 46.2851671356 ], [ -119.0925020979, 46.3401794742 ], [ -119.0860022305, 46.3582053906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2702955652, 47.4970013804 ], [ -122.25791496, 47.4871309015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495747173, 47.9706537304 ], [ -117.3495866356, 47.9814746809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1900642724, 48.4775740271 ], [ -120.1854211418, 48.4778068438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8886284736, 47.4026822769 ], [ -123.8763097221, 47.4213934899 ], [ -123.877036547, 47.4475535195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3128299563, 47.4225323717 ], [ -120.3062213119, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5776035522, 47.4100021272 ], [ -121.5501634492, 47.3981832043 ], [ -121.5324173506, 47.3958007915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2331720885, 47.8210669673 ], [ -122.2307337316, 47.8178356076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3771418088, 46.1802763744 ], [ -123.3774493287, 46.1875902746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942457468, 47.1191324392 ], [ -119.2911115679, 47.1240365899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5309634911, 46.9718013391 ], [ -120.5263000656, 46.9709601801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.7967192306, 45.7024032011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.8835917466, 47.5090369919 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3307967988, 47.6088249044 ], [ -122.3301905624, 47.6128797259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.5657555269 ], [ -122.6328642069, 47.5666355148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5918452042, 48.8890326206 ], [ -122.6067680743, 48.8981282277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9608696722, 46.8965879431 ], [ -122.9594136168, 46.8965445916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1050673886, 47.1296410636 ], [ -123.0991749755, 47.1301780444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8575716456, 46.0374677293 ], [ -122.8610659653, 46.0478652505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7345388535, 48.1360534594 ], [ -123.716298311, 48.1315509218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.4802520054 ], [ -124.0276869285, 47.471479931 ], [ -124.0967538612, 47.4885408949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3585353638, 48.9093392192 ], [ -122.3580820498, 48.915412848 ], [ -122.3519395171, 48.9160269917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839184276, 47.5658400246 ], [ -122.1766955576, 47.5724700872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.0234388073 ], [ -122.8575716456, 46.0374677293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3193801568, 46.2995221994 ], [ -118.29383435, 46.2991695402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.5961003788 ], [ -122.4055405288, 45.5917612872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7284141787, 48.9757559926 ], [ -122.7335974346, 48.9792119734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5430046419, 46.2654844556 ], [ -119.523755174, 46.2613892962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.9126704949 ], [ -122.7346098799, 47.9375467064 ], [ -122.7338240699, 47.9543732544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.1117747241 ], [ -118.3686788882, 47.1150041492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.1216324995 ], [ -122.9261218499, 46.1229717137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3243406744, 47.397956274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6781103544, 45.9394909444 ], [ -122.6958656415, 45.9431672649 ], [ -122.7043424684, 45.9356642435 ], [ -122.7200617061, 45.9337898632 ], [ -122.7226222255, 45.9280008842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2882313209, 47.6170498652 ], [ -119.2828183812, 47.6193764429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1090869647, 46.8588515883 ], [ -124.1108347849, 46.868530839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6782492386, 47.3327708536 ], [ -118.6676786101, 47.3291647101 ], [ -118.6597780517, 47.3328929749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6268938205, 46.9614926076 ], [ -122.6170471339, 46.9569922317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9220375425, 46.7426875865 ], [ -121.9184730058, 46.7411984508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4933154474, 46.3115165199 ], [ -119.4925583765, 46.329979207 ], [ -119.4539087276, 46.3558692568 ], [ -119.4460453581, 46.3716676172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8258142714, 46.9714747617 ], [ -123.8309808672, 46.9760099288 ], [ -123.8521750453, 46.9760733389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6579299947, 47.9994661851 ], [ -119.6684791314, 48.0046240362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3787722403, 47.8124279259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058230966, 48.5454377559 ], [ -117.9058418724, 48.5465546852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6561026165, 48.1181029102 ], [ -123.5981693413, 48.116751797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328542511, 46.9587926513 ], [ -122.6076963808, 46.9425842125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1616167206, 48.1521235496 ], [ -122.1507870886, 48.1520523663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555823489, 47.8588071968 ], [ -117.3555936398, 47.8589452723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2799050476, 47.6816356586 ], [ -117.2448313626, 47.6887168246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2398779598, 47.5908053835 ], [ -122.2348413671, 47.588418258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093039324, 47.6428078098 ], [ -122.1932937046, 47.6371487563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6697674526, 47.5997916763 ], [ -119.6612151194, 47.6070005476 ], [ -119.6066831591, 47.5993624318 ], [ -119.519316737, 47.5996716644 ], [ -119.506659076, 47.6061494046 ], [ -119.4900236905, 47.6081531287 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4538503546, 47.9182613584 ], [ -117.4773490149, 47.9428804513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129385008, 47.91279953 ], [ -122.2088000662, 47.9150721941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462357173, 48.4217075774 ], [ -122.3364704335, 48.4212504751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5121334624, 45.776374164 ], [ -121.5065371663, 45.7819263952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3993841644, 47.6751810229 ], [ -124.4100299932, 47.6905385507 ], [ -124.4131584898, 47.7153241709 ], [ -124.3232512525, 47.7503923932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5219723944, 46.626090815 ], [ -120.5169772116, 46.6260720818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3133128707, 48.9245515322 ], [ -117.307119418, 48.9291991442 ], [ -117.3165313082, 48.9327488117 ], [ -117.3199075356, 48.941222607 ], [ -117.3159801283, 48.9518030247 ], [ -117.3175917456, 48.9601239582 ], [ -117.3114187744, 48.9688574605 ], [ -117.3132407923, 48.9844676109 ], [ -117.3082024553, 48.987334862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8307822154, 47.1036973105 ], [ -119.829366692, 47.1025741429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.7948982738, 48.9007751191 ], [ -117.7898246409, 48.9128912695 ], [ -117.7787592741, 48.9171693044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3873073485, 47.2789522223 ], [ -122.4046720676, 47.2838514749 ], [ -122.4168936072, 47.2966428978 ], [ -122.4326700109, 47.2980606258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8024187553, 46.9692826304 ], [ -123.8023268261, 46.9706138586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1724700156, 46.747419563 ], [ -117.1689737584, 46.7599890779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791204594, 47.8613218296 ], [ -121.9772544823, 47.8608534091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224229641, 47.6404419429 ], [ -122.3161312286, 47.6429143031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6170471339, 46.9569922317 ], [ -122.6116398299, 46.9565353077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288029427, 47.6101244229 ], [ -122.6288340771, 47.6158812787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6462988146, 47.596485754 ], [ -120.6287660452, 47.5891210126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1788357705, 46.7295852663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108536601, 47.7513199125 ], [ -117.4105237126, 47.7523163592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318739382, 47.234680353 ], [ -122.4322202216, 47.2386425935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8848678307, 47.9879382073 ], [ -122.883245172, 47.9882925028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6709875264, 47.5540420396 ], [ -122.6774101021, 47.5636481361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103335991, 46.482928058 ], [ -122.8974973541, 46.4793963978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4674043677, 46.5847787764 ], [ -120.4512101301, 46.5770853276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8278685905, 46.9716853763 ], [ -123.8269852287, 46.9708707418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3913392846, 47.3891157864 ], [ -117.3895677666, 47.4250017467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127725976, 48.3407796335 ], [ -122.3057217067, 48.3394359548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5077498431, 45.6840205721 ], [ -122.5063250059, 45.6848578255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4798850922, 46.5977376972 ], [ -120.4748023779, 46.5896995193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2955397516, 47.040162607 ], [ -122.2953114868, 47.0439310162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4751978366, 48.3959072026 ], [ -119.5023027759, 48.4022781572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4127242746, 47.7151457037 ], [ -117.4351007945, 47.7154472911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108693497, 47.8004619779 ], [ -122.2077141546, 47.8063531965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2223022809, 46.5981111151 ], [ -118.2257643504, 46.6045957035 ], [ -118.2223138409, 46.6097615191 ], [ -118.2404866495, 46.6279194815 ], [ -118.2450914062, 46.6416022081 ], [ -118.2651804981, 46.6565738532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134270225, 47.6531107382 ], [ -117.4134608952, 47.6527226616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7793761782, 46.2212051746 ], [ -119.7556065922, 46.2209514813 ], [ -119.7456908937, 46.2158646763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1320219502, 47.2363423355 ], [ -123.1277858514, 47.2236494996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3518193824, 47.7919039464 ], [ -117.3500487942, 47.7980256738 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2920566884, 47.4105282137 ], [ -120.2941276522, 47.4130153494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8090468875, 46.9772106863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3329165329, 47.5234893652 ], [ -122.3343743094, 47.5297826683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931085242, 47.392427434 ], [ -122.2865268063, 47.3906729649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.6497283577 ], [ -122.5906026172, 45.6527948204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.4352395576 ], [ -117.7149843296, 47.4501888753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8260870372, 47.777964567 ], [ -120.8141165471, 47.7731482573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9796978543, 47.9684303804 ], [ -118.9621464726, 47.9788971521 ], [ -118.95552571, 47.9967673661 ], [ -118.9422778312, 48.0154868034 ], [ -118.9435832543, 48.025575113 ], [ -118.9867693325, 48.0530626329 ], [ -118.9736668822, 48.0641934995 ], [ -118.9821481019, 48.0758148849 ], [ -118.9820321546, 48.0927666601 ], [ -118.9898155429, 48.1044621788 ], [ -118.9790932527, 48.1197891062 ], [ -118.9775744375, 48.130752286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547617311, 46.345935959 ], [ -124.0547456263, 46.346612471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2671353579, 48.4299276122 ], [ -122.264774667, 48.429909313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5970369922, 47.0955432506 ], [ -117.6318611212, 47.1066720807 ], [ -117.6461224106, 47.1166306215 ], [ -117.6838431177, 47.1180750089 ], [ -117.707883861, 47.1113392664 ], [ -117.7190609148, 47.1167193872 ], [ -117.7345700167, 47.1169266042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1421354348, 47.4475636134 ], [ -117.141577431, 47.4500082492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3460816248, 46.8885837829 ], [ -117.3041492589, 46.8990209551 ], [ -117.2746295508, 46.9141916061 ], [ -117.2704255183, 46.9127594447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903760819, 47.9768936616 ], [ -122.1829774552, 47.9869383211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8834047537, 46.113522401 ], [ -122.8982367501, 46.1289443409 ], [ -122.8976072607, 46.1404539675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6929707776, 47.5042331597 ], [ -117.6934989729, 47.5042678567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8081064714, 45.8245819424 ], [ -120.8053708556, 45.8265045706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9119035401, 46.1765920328 ], [ -122.9063657838, 46.1800997708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497979206, 46.8597063959 ], [ -117.3570081447, 46.8650918135 ], [ -117.3554031402, 46.8717225878 ], [ -117.3641647883, 46.8740109029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.068840619, 46.9108595721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.1916397461 ], [ -122.2293785955, 47.1902878983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0239734671, 46.7645457326 ], [ -117.9831420651, 46.7629392432 ], [ -117.9366891767, 46.7853119491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0970384228, 46.8218084668 ], [ -123.0905398888, 46.8217373497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0545804856, 46.3501186151 ], [ -124.0544043707, 46.3526539161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9747719324, 46.7112626752 ], [ -122.9699877988, 46.7110483932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376219385, 47.4652954001 ], [ -122.1566237324, 47.4685018085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4815523866, 47.9470052096 ], [ -117.5235622768, 47.9784884907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418858195, 46.4199930726 ], [ -117.0398979045, 46.4201869144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286086093, 47.4699818296 ], [ -122.3127555504, 47.4701556709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8029450786, 46.9697219828 ], [ -123.8046532988, 46.9702958878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.2781150352, 46.2587418451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3690791376, 48.8628154536 ], [ -117.364148903, 48.8597893208 ], [ -117.3617197932, 48.8661339983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3836725936, 48.891377649 ], [ -122.3760304765, 48.891834109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6786220988, 48.073901581 ], [ -123.6689386318, 48.0733486098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1922476604, 47.98179891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5384276031, 46.6224575094 ], [ -120.5219723944, 46.626090815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.9514925058 ], [ -122.0707436627, 47.9406113033 ], [ -122.0751751165, 47.9197652005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8133324553, 47.0524920951 ], [ -122.7878727232, 47.0597313969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9420276289, 48.8891584197 ], [ -121.9241996724, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.9058079495 ], [ -121.8682821094, 48.9018532858 ], [ -121.7845347292, 48.9125297162 ], [ -121.7740122508, 48.9093794354 ], [ -121.7601734233, 48.9113382708 ], [ -121.7351648161, 48.9028517067 ], [ -121.7046225873, 48.9084869163 ], [ -121.6936997501, 48.906634052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3590200387, 46.8898382458 ], [ -122.3589746896, 46.8933149788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.6496170314 ], [ -122.3223421817, 47.6560094062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1858412261, 47.7634469513 ], [ -122.1876596894, 47.7659065312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3520946491, 47.9747243569 ], [ -122.3522945196, 47.9747750631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938609707, 48.8575655792 ], [ -122.3097395207, 48.8660049753 ], [ -122.3097414265, 48.8834697321 ], [ -122.3205696751, 48.8842446664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.8121145139 ], [ -122.3832242727, 47.8097517091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6842799668, 47.508587719 ], [ -117.587167089, 47.5708280871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8364747547, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1035997262, 47.668444842 ], [ -122.0997715333, 47.6656995892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7313710506, 46.6903743354 ], [ -123.7361025624, 46.6937072147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2783410998, 47.5080120111 ], [ -122.2788666186, 47.5036332815 ], [ -122.2702955652, 47.4970013804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3295502762, 47.7047809866 ], [ -122.3271587307, 47.7136272159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7354912874, 46.5526532482 ], [ -121.6910471042, 46.5761502729 ], [ -121.6861660179, 46.5905859513 ], [ -121.6750836999, 46.6021829664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.2324653952 ], [ -122.4321127257, 47.2333231589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8747183109, 47.2330604599 ], [ -119.8700407404, 47.2331134363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7957761395, 47.4887865294 ], [ -121.7967231004, 47.488245636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6434331584, 48.3065806606 ], [ -122.6380141443, 48.3112290202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3324821085, 47.534523388 ], [ -122.3350200428, 47.5391616011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9300694121, 46.1160931581 ], [ -122.926866154, 46.1216324995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1079704304, 46.8588588821 ], [ -124.0994911249, 46.8588806371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4518693234, 45.9101122837 ], [ -122.4469167382, 45.910167278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6540439356, 47.5990844387 ], [ -120.6462988146, 47.596485754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4495337758, 46.5039654868 ], [ -120.4137225019, 46.4856279656 ], [ -120.4004187802, 46.4742779497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519709732, 45.9059295423 ], [ -122.4490361292, 45.9074852932 ], [ -122.4518693234, 45.9101122837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704395067, 45.6325772078 ], [ -122.6726772266, 45.6325544336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9538231518, 46.7487811507 ], [ -122.9478831901, 46.7533571733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1788357705, 46.7295852663 ], [ -117.1799080975, 46.7296299262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.2991695402 ], [ -118.276819223, 46.297266298 ], [ -118.2231220368, 46.277953835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2690111833, 47.4377897666 ], [ -122.2633467095, 47.4598544879 ], [ -122.2687488564, 47.4721785489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1875760408, 46.6478028536 ], [ -117.1915478685, 46.6599654613 ], [ -117.1988941769, 46.666906221 ], [ -117.195441231, 46.6743020858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.724042039, 47.9126704949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150102837, 46.3792337657 ], [ -120.3161032894, 46.3779887108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5916519331, 48.3502168576 ], [ -119.5910782183, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0626629459, 48.1752916443 ], [ -117.052759201, 48.1759897639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617032151, 45.6433830491 ], [ -122.6617020964, 45.6446264754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8540700226, 47.0883824388 ], [ -119.8347016505, 47.1010560076 ], [ -119.8239536487, 47.1032398754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0576029409, 47.0916817763 ], [ -122.0458704138, 47.0990889736 ], [ -122.0454972488, 47.103424531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5455047346, 48.0151911959 ], [ -122.5604137621, 48.0262292109 ], [ -122.5668558184, 48.0450684226 ], [ -122.5682398591, 48.0885136006 ], [ -122.5876777121, 48.1210599346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2974847948, 47.9152081943 ], [ -122.3001156286, 47.9185854039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3170457721, 47.4294662441 ], [ -120.3176595662, 47.4302249495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5138464975, 48.416820343 ], [ -119.51157568, 48.4168080215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246218752, 45.6254040131 ], [ -122.0163741662, 45.6319524828 ], [ -122.0088409823, 45.6309029624 ], [ -121.9860480217, 45.6413721887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7201925534, 48.9725563663 ], [ -122.7328423678, 48.9841695596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578563225, 48.2883491403 ], [ -122.6578488817, 48.2895410127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5263000656, 46.9709601801 ], [ -120.497732858, 46.9704790806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0419262876, 46.2219914931 ], [ -120.0027133993, 46.2121666208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2202025787, 47.4072374973 ], [ -122.2207233046, 47.4156833158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0823565056, 46.2482752943 ], [ -119.0820864503, 46.2486605032 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3556390004, 45.9892331664 ], [ -122.3647789259, 45.992938942 ], [ -122.3649925149, 45.9971019257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.5499987592 ], [ -120.3750456098, 46.5493985238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6325132774, 46.1868027068 ], [ -119.6640303518, 46.1872361321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1069520778, 47.4029037206 ], [ -119.0663191716, 47.4059245392 ], [ -119.0422944621, 47.3856092016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9561002594, 46.5266704559 ], [ -121.9572975987, 46.5353534207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4150633113, 46.0706784483 ], [ -118.3764731907, 46.0716522784 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2025293491, 48.8159609661 ], [ -122.1954842634, 48.8206495581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472358647, 45.8117200378 ], [ -122.5469856665, 45.8168217556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8269852287, 46.9708707418 ], [ -123.8261026875, 46.9700612141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478299761, 47.0358210791 ], [ -122.9316246804, 47.0277555011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.9939874349 ], [ -122.7353942026, 49.0020702071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938084119, 46.3141920165 ], [ -119.2862401307, 46.308479073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3051065733, 47.9435748501 ], [ -122.3044461333, 47.9446172164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6890804036, 47.1533532154 ], [ -121.6592910203, 47.1591358128 ], [ -121.619821252, 47.133142341 ], [ -121.6124069417, 47.1210645571 ], [ -121.5963308595, 47.1073463507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235907413, 47.620646532 ], [ -117.2236317238, 47.6278867921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.8868092337 ], [ -124.1042063039, 46.8868591474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8770396143, 46.5473587206 ], [ -122.8752641023, 46.5473525241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206641784, 48.920195997 ], [ -122.3219125052, 48.9201922455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3589746896, 46.8933149788 ], [ -122.3573827719, 46.9297368504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3515312423, 47.9748188959 ], [ -122.3520946491, 47.9747243569 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0003727518, 46.1639381329 ], [ -122.9961129273, 46.1618451049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114164195, 47.8021101024 ], [ -122.1053446624, 47.8104011539 ], [ -122.0654931199, 47.8179312301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.6316024762 ], [ -122.6659555363, 45.631898547 ] ] } } +{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": null, "random": 72.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192223719300003, 47.377314531099998 ], [ -120.140301766600004, 47.371384494399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900, "random": 185.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320922755599995, 45.572154233500001 ], [ -122.29949512, 45.571607305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000, "random": 161.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.326048339699994, 47.686792380200004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000, "random": 23.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.267351222100004, 47.200733364100003 ], [ -122.260420207400003, 47.201217628400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": null, "random": 27.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483209007799999, 47.383636742599997 ], [ -119.483231612799997, 47.388480686199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000, "random": 104.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294008676399997, 47.224909226299999 ], [ -122.293850203, 47.2500481115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": null, "random": 31.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.125491757500001 ], [ -119.281561717599999, 47.129753712599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000, "random": 68.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.355593639800006, 47.858945272299998 ], [ -117.3577112718, 47.881424466200002 ], [ -117.352326864700004, 47.896195442500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000, "random": 49.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875264102299994, 46.547352524099999 ], [ -122.865051254600004, 46.5465667665 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830, "random": 98.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.210562271200004, 47.455407284800003 ], [ -123.212746255599995, 47.457686866300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000, "random": 106.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.068762990699994, 46.3226150928 ], [ -120.0440296636, 46.307549762199997 ], [ -120.028516892599995, 46.305963005899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": null, "random": 56.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.221912289100004, 47.6270557243 ], [ -120.208426750699999, 47.626561325700003 ], [ -120.195055141799998, 47.632754478899997 ], [ -120.180985770199996, 47.631345066400002 ], [ -120.147986288799999, 47.650382479500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000, "random": 108.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.119313093900004, 48.053547427399998 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": null, "random": 186.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.300591393800005, 47.476574434500002 ], [ -120.297315236599999, 47.500657867500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": null, "random": 116.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.108461782399999, 47.873871282400003 ], [ -120.101900800199999, 47.8648083629 ], [ -120.072100487599997, 47.859499395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000, "random": 112.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.089465752799995, 46.273488750600002 ], [ -119.093418599900005, 46.285167135599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000, "random": 6.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.221756869399997, 47.194537858 ], [ -122.212761856, 47.197026639599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000, "random": 125.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179914892699998, 47.598495893900001 ], [ -122.186231877500006, 47.6058898709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700, "random": 12.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.405112934199998 ], [ -119.521352036099998, 48.403879184499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000, "random": 198.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.126591027299995, 47.200112170099999 ], [ -123.101805642100004, 47.183774694500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": null, "random": 185.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.181362192900004 ], [ -120.808162567300002, 47.19291613 ], [ -120.773068226500001, 47.195996988600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100, "random": 189.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332564168800005, 48.8145942815 ], [ -122.327035238, 48.818184803500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000, "random": 166.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304573455500005, 47.649044063300003 ], [ -122.303613538299999, 47.651571254899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620, "random": 85.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.588493994499999, 46.647813660899999 ], [ -118.556511898099998, 46.6435530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": null, "random": 120.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.920256300700004, 47.873118329500002 ], [ -119.916871677800003, 47.883019584800003 ], [ -119.917568810500001, 47.904234735199999 ], [ -119.888689271, 47.925649692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000, "random": 23.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318197500500006, 47.817590762099996 ], [ -122.315085552799999, 47.821191790100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000, "random": 26.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.833933902799998, 47.400546358100001 ], [ -117.793799155900004, 47.433132785799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400, "random": 57.783 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.392067770099999, 47.652857061299997 ], [ -117.3930264257, 47.653601207299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000, "random": 104.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461690018400006, 48.004296339200003 ], [ -122.467687577299998, 48.007905190800003 ], [ -122.531073695, 48.008536006900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000, "random": 172.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278980462600003, 47.867386825 ], [ -122.275636924400004, 47.870880789399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60, "random": 26.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575630911800005, 46.3701554294 ], [ -122.560989582700003, 46.364713247200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000, "random": 112.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326048339699994, 47.686792380200004 ], [ -122.32907164, 47.694314524200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": null, "random": 179.762 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471071659100005, 47.273753970100003 ], [ -119.482644780900003, 47.323211318200002 ], [ -119.475641186900006, 47.350967510899999 ], [ -119.479148192699995, 47.369122823700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000, "random": 49.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688240011299996, 47.669276652599997 ], [ -122.690070823200003, 47.674254571299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000, "random": 85.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377330564199994, 48.515561334899999 ], [ -122.378643621500004, 48.516946430200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700, "random": 134.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.481714559400004, 47.7503088944 ], [ -118.471127526900005, 47.734484790800003 ], [ -118.393644979900003, 47.6932837218 ], [ -118.344264443200004, 47.657344700599999 ], [ -118.316526127399996, 47.644866918600002 ], [ -118.218613867499997, 47.642666549300003 ], [ -118.178870895599999, 47.650335905799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800, "random": 152.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.207421101199998 ], [ -121.988874057900006, 47.203160202399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700, "random": 78.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.529993278099994, 47.915069702499999 ], [ -124.534428898499996, 47.912791220199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000, "random": 122.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.804266783800003, 47.467763599800001 ], [ -122.792203240600003, 47.476414011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000, "random": 139.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461123397199998, 47.228506375099997 ], [ -122.46060986, 47.2297520929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000, "random": 185.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.071848028399998 ], [ -122.111652555800006, 48.091880012300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000, "random": 37.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628642300899998, 48.325690041 ], [ -122.630334446500001, 48.333741685299998 ], [ -122.626067163499997, 48.340201578799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200, "random": 40.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231149710099999, 47.122069650199997 ], [ -117.235609286, 47.124733954200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300, "random": 25.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.030912055399995, 46.758700120299999 ], [ -121.981410569499999, 46.757281391200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500, "random": 114.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413544959399999, 48.721379622199997 ], [ -117.413577184900007, 48.728581825799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000, "random": 81.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405978251099995, 47.8001660961 ], [ -117.407463921200005, 47.812350919499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000, "random": 58.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336563296799994, 47.245039798100002 ], [ -122.335377560200001, 47.251222220400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000, "random": 55.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.253493359300002 ], [ -122.436367945200004, 47.254444550599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000, "random": 93.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093346862800004, 46.199133631599999 ], [ -119.101223870799998, 46.205201664199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500, "random": 187.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.191148354299997, 47.518341588699997 ], [ -117.197447519799994, 47.522700233099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600, "random": 173.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736102562400006, 46.693707214699998 ], [ -123.739710289800001, 46.7012896138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000, "random": 171.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295958375400005, 47.450660091700001 ], [ -122.291617161399998, 47.4596862569 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000, "random": 183.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239711879500007, 47.670702168399998 ], [ -117.239631880800005, 47.671672712099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000, "random": 112.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.393374497699995, 46.415054976599997 ], [ -120.395949240899995, 46.416943327699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960, "random": 21.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673496635199996, 46.361284465600001 ], [ -122.650489049, 46.3557399918 ], [ -122.638293748699994, 46.3654953749 ], [ -122.620045942199994, 46.371824077299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000, "random": 59.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276574087599997, 47.873402992099997 ], [ -122.277773723600006, 47.879481564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900, "random": 78.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.214302369600006, 46.411735887200003 ], [ -117.206095914499997, 46.415109425600001 ], [ -117.184841509699993, 46.412670146400004 ], [ -117.163432843400003, 46.424063508800003 ], [ -117.143868093099996, 46.4278013383 ], [ -117.087460968499997, 46.4153003586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000, "random": 29.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.633422151299996, 45.6184980719 ], [ -122.626679802699996, 45.6184887446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530, "random": 92.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.043603345600005, 46.377894367499998 ], [ -123.036809172100007, 46.397406746599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": null, "random": 53.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.025068951899996, 47.8360845439 ], [ -120.023988532800004, 47.836037193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000, "random": 144.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.549949749600003, 45.780646633700002 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000, "random": 26.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.452724593500001 ], [ -122.820154302899994, 47.454597961799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": null, "random": 95.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483208834400003, 47.383543517500001 ], [ -119.483209007799999, 47.383636742599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500, "random": 199.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234636542900006, 48.316921300700002 ], [ -122.236663287100001, 48.320467722700002 ], [ -122.232181534399999, 48.32047636 ], [ -122.232630259900006, 48.323549741699999 ], [ -122.209136645100003, 48.333136028699997 ], [ -122.20310466, 48.347678700300001 ], [ -122.206725611400003, 48.3642645921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000, "random": 178.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.008536006900002 ], [ -122.533987290900001, 48.009762296300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980, "random": 148.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054738688200004, 46.925380803499998 ], [ -117.039514438200001, 46.930293118400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600, "random": 108.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.354353747399998 ], [ -123.715759012199996, 46.348975076199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": null, "random": 81.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.683793719700006, 47.129337028800002 ], [ -120.705134177399998, 47.162971462400002 ], [ -120.702317791699997, 47.175453351100003 ], [ -120.706779688099999, 47.184097401199999 ], [ -120.708024373599997, 47.203648771300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000, "random": 29.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295819424300007, 47.353032929900003 ], [ -122.294634377799994, 47.364358862499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000, "random": 71.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617793133600003, 47.366051473299997 ], [ -122.615669929800006, 47.386750696900002 ], [ -122.624274168, 47.402053757700003 ], [ -122.624470827, 47.411186267399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100, "random": 59.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.532580146699999, 47.7818048655 ], [ -117.527237227800001, 47.787643536300003 ], [ -117.535446744200001, 47.797897546900003 ], [ -117.553635220100006, 47.804383882400003 ], [ -117.555355985199995, 47.810423842299997 ], [ -117.5692400943, 47.812506490700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000, "random": 65.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042441887099997, 48.184010170500002 ], [ -117.039537514299994, 48.183976228399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000, "random": 114.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.090539888799995, 46.821737349700001 ], [ -123.079868423600004, 46.8216532259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000, "random": 9.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271528554400007, 48.974869667199997 ], [ -122.265005071199994, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": null, "random": 147.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337091754499994, 47.465744417400003 ], [ -120.338421987399997, 47.467139071799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000, "random": 104.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184467597799994, 48.058461578699998 ], [ -122.184768822300001, 48.068137954100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000, "random": 147.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.103034504199996, 47.677801453 ], [ -117.054226041299998, 47.693974327299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000, "random": 120.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.090309300800001 ], [ -122.630563411699995, 47.091197464099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": null, "random": 54.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.963923508400001 ], [ -118.999850793299998, 47.959793347800002 ], [ -119.0016246215, 47.956002034900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000, "random": 9.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.417186310700004, 48.112326338499997 ], [ -123.404306887, 48.107133159599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000, "random": 35.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.706629013200001, 47.524789163100003 ], [ -122.697432892600006, 47.529005529700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000, "random": 58.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293022339499998, 47.136469010699997 ], [ -122.292969383100001, 47.140242369600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000, "random": 82.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.979473196500003 ], [ -122.1697766801, 47.978234071800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000, "random": 48.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201057805600001, 47.810066305900001 ], [ -122.1943284707, 47.811612660199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700, "random": 156.176 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.025824951100006, 46.176693428299998 ], [ -123.030464217800002, 46.1645370289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200, "random": 22.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.173877287899998, 47.112127049400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": null, "random": 14.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.963923508400001 ], [ -119.001841752600001, 47.971424576399997 ], [ -118.98586136, 47.971681473099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000, "random": 142.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225707636699994, 48.510474068599997 ], [ -122.225554844100003, 48.514186971299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000, "random": 140.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.126263012799996, 46.6018315229 ], [ -123.096605699199998, 46.626868397499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300, "random": 62.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.266288957300006, 47.055615833 ], [ -123.265225939100006, 47.055633962400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100, "random": 75.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.061492395499997, 46.864288916500001 ], [ -124.052113318699995, 46.871082552099999 ], [ -124.0439366003, 46.892398272299999 ], [ -124.004059124299999, 46.892135389300002 ], [ -123.989075550899997, 46.909877978200001 ], [ -123.936557714800003, 46.9230494022 ], [ -123.919783106300002, 46.931113491 ], [ -123.867328931200007, 46.943355618299996 ], [ -123.848015462500001, 46.9435702245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000, "random": 74.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196910228600004, 47.5026900234 ], [ -122.194984523499997, 47.502141777600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000, "random": 29.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.753449416099997, 45.923645172599997 ], [ -122.760492617899999, 45.933145426400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500, "random": 86.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.534454282600002 ], [ -122.517031573500006, 46.533035016500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800, "random": 27.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288664435200005, 48.843341019900002 ], [ -122.277685793499998, 48.843534593299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000, "random": 49.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515949266099994, 47.257162386700003 ], [ -122.515950787600005, 47.258434649100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700, "random": 84.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.707817696899994, 48.197965596300001 ], [ -117.715379481699998, 48.208231873599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000, "random": 183.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329077402400003, 47.5942483647 ], [ -122.329750574499997, 47.593274379100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900, "random": 178.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501812683400004, 45.893398658499997 ], [ -122.452542000700006, 45.895541165700003 ], [ -122.451970973200005, 45.905929542300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700, "random": 126.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286436785199996, 47.054106290100002 ], [ -123.286645904300002, 47.055729321199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000, "random": 82.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885750729199998, 46.583809204700003 ], [ -122.883861749900007, 46.583840508400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130, "random": 15.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.780265899100002 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000, "random": 53.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.092913658699999, 48.0727563835 ], [ -123.060210817500007, 48.064407704300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300, "random": 69.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.405550858400005, 45.590604158600001 ], [ -122.400125516599999, 45.586998701900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400, "random": 6.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.815376949200001, 45.697928946300003 ], [ -120.8236282381, 45.696374883499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310, "random": 101.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.688932753200007, 47.338112147799997 ], [ -118.699514273600002, 47.356361848100001 ], [ -118.699124298900003, 47.370913265299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900, "random": 184.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.704906039099995, 48.278203789899997 ], [ -119.668308598799996, 48.294872498099998 ], [ -119.626284036, 48.3081932192 ], [ -119.606992276200003, 48.3197133157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100, "random": 15.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.232263906199996 ], [ -123.945454993400006, 47.236177875400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000, "random": 96.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657869700299997, 48.2871805041 ], [ -122.657856322499995, 48.288349140299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000, "random": 10.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517886741599995, 47.808439866900002 ], [ -122.503673288599998, 47.802746125200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000, "random": 63.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662273975700003, 45.6359541769 ], [ -122.661703215100005, 45.643383049100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000, "random": 51.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914456217400001, 46.320216529699998 ], [ -122.909597880600003, 46.328237141499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000, "random": 33.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.783418362399999, 47.441020789200003 ], [ -117.694733022400001, 47.501473805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000, "random": 112.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434938931800005, 47.2327862223 ], [ -122.423149831100005, 47.236217271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000, "random": 195.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335142695200005, 48.421566968 ], [ -122.341055291700002, 48.431311013600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000, "random": 98.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.889966995600005, 47.507262303 ], [ -121.864239590400004, 47.511184175899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900, "random": 170.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.956054795900002, 47.924618672900003 ], [ -118.942272354599993, 47.916813951100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": null, "random": 51.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853529322100002, 47.119197753900004 ], [ -119.853528771200004, 47.132225026500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800, "random": 74.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.037645272700004, 47.241057134800002 ], [ -121.046585282699994, 47.244285264200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800, "random": 136.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.385169842799996, 47.441644864700002 ], [ -117.384646521899995, 47.448870130499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000, "random": 12.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039123163699998, 46.420256329600001 ], [ -117.038967760700004, 46.420267917099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": null, "random": 136.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.302587343100001, 47.468606566600002 ], [ -120.299797941199998, 47.468286093700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000, "random": 112.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.766324464899995, 47.494235084899998 ], [ -122.735008518699999, 47.515738177199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700, "random": 67.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400432161099999, 45.996368779400001 ], [ -122.416023356599993, 45.992584303400001 ], [ -122.424046235199995, 45.983157559399999 ], [ -122.460939695199997, 45.9952678398 ], [ -122.503479943100004, 45.998358346400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400, "random": 128.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047517464899997, 46.474461423100003 ], [ -117.050176045499995, 46.475581515199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000, "random": 75.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.402833022500005, 47.111088331600001 ], [ -118.3796443329, 47.111774724100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100, "random": 121.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.095101639099994, 47.4382498075 ], [ -117.077973130199993, 47.442965311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000, "random": 144.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302305689799994, 46.267676536899998 ], [ -119.2905873773, 46.261144368700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100, "random": 6.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.381586321300006, 47.803271641899997 ], [ -122.383255782700004, 47.803414461499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900, "random": 39.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151498588600006, 47.506257013099997 ], [ -122.142984832899998, 47.505758847899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000, "random": 65.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.009562583700003, 47.0558186162 ], [ -123.006531622099999, 47.055212302699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000, "random": 184.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284486184800002, 47.298220875799998 ], [ -122.272173072200005, 47.303962201300003 ], [ -122.2563579686, 47.302806556699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100, "random": 155.272 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.658510304900005, 48.140280132299999 ], [ -117.6860630929, 48.148122845 ], [ -117.703705331600005, 48.170736681500003 ], [ -117.700516388799997, 48.188995432900001 ], [ -117.707817696899994, 48.197965596300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000, "random": 107.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343595607400005, 47.624654211600003 ], [ -122.343617639499996, 47.625224852300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200, "random": 118.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.127300859599998, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200, "random": 83.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625772112199996, 47.400002299699999 ], [ -122.624252489699998, 47.402892309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600, "random": 193.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.566690726800005, 48.114021332 ], [ -123.561617171, 48.103068411800002 ], [ -123.553750953800005, 48.099661530200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600, "random": 97.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.684914254500001, 46.041502158699998 ], [ -118.669240505199994, 46.040335022800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000, "random": 103.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213780260299998, 47.994220742499998 ], [ -122.213863515900002, 47.998943614399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600, "random": 145.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.745782143599996, 46.682825318699997 ], [ -123.736798022100004, 46.680552573500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": null, "random": 70.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.056355265600004, 47.915376585200001 ], [ -119.038000225900007, 47.932554457499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000, "random": 83.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.240239538899999 ], [ -119.085460559500007, 46.245260658 ], [ -119.082356505600004, 46.248275294300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200, "random": 161.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137590950499998, 48.917143280200001 ], [ -122.132246497699995, 48.917315639800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000, "random": 109.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.841560284099998, 47.410924864 ], [ -122.845516085300005, 47.415535475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000, "random": 182.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.393930611299993, 48.286981512200001 ], [ -124.348789402500003, 48.270258328799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000, "random": 85.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434052037300006, 47.223093094200003 ], [ -122.425077764799994, 47.223082438900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700, "random": 39.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113749425699993, 47.805010633199998 ], [ -122.111869904299994, 47.804901068699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200, "random": 132.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888386398500003, 46.980177755299998 ], [ -123.887405132300003, 46.979481806199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100, "random": 184.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380257938599996, 47.804112396 ], [ -122.381586321300006, 47.803271641899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": null, "random": 155.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.027710127399999, 47.847421361099997 ], [ -120.020261139300004, 47.841391245200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900, "random": 63.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485215379099998, 48.964238869100001 ], [ -122.474404846900001, 48.964420136500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000, "random": 185.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435645795100001, 47.249449369799997 ], [ -122.436113822, 47.253493359300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000, "random": 191.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485687149200004, 48.8695370939 ], [ -122.485654962300003, 48.869841039900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800, "random": 89.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.762299791299995, 46.31964321 ], [ -122.732310652699994, 46.324533827800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": null, "random": 173.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.864013776799993, 47.233227695899998 ], [ -119.858794341600003, 47.233334252200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200, "random": 159.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.777027675900001, 48.649473503 ], [ -118.739118173700007, 48.647625688799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000, "random": 35.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.982341791600007, 47.812780129099998 ], [ -121.970995859, 47.825964364199997 ], [ -121.969447341600002, 47.843075742800004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000, "random": 22.938 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176695557599999, 47.572470087200003 ], [ -122.174140027, 47.577836386199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000, "random": 197.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226896444499999, 47.886791904900001 ], [ -122.215924349100007, 47.895325602900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900, "random": 76.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.142195626800003 ], [ -122.056456644099995, 47.140510482499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400, "random": 168.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.057205959599997 ], [ -123.928703781500005, 47.060152495700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000, "random": 94.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228090332199997, 47.908324735699999 ], [ -122.223328891899996, 47.909586154800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000, "random": 91.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.410533367900001, 47.412298435 ], [ -121.400290715300002, 47.399395735500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000, "random": 42.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965613591099995, 47.858227985 ], [ -121.963814797400005, 47.857816596799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000, "random": 141.717 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634028489399995, 45.6462602442 ], [ -122.616370594100005, 45.647869762200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000, "random": 160.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.918773383199998 ], [ -122.740488748199994, 45.917100647600002 ], [ -122.741223238, 45.913180857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800, "random": 15.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.351379696199999, 45.944648158699998 ], [ -119.335004473799998, 45.945528959199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000, "random": 190.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.981045286799997 ], [ -123.906271557799997, 46.981082315400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900, "random": 134.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.021535225899996, 46.317579506500003 ], [ -124.028653442800007, 46.311088406 ], [ -124.0415185162, 46.308852550600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100, "random": 152.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.275437230099996, 47.055580731299997 ], [ -123.266288957300006, 47.055615833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000, "random": 67.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243988081300003, 47.374066723799999 ], [ -122.244249076299994, 47.385615921800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000, "random": 195.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317486779500001, 48.435666194200003 ], [ -122.313390933899996, 48.4356182605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000, "random": 77.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.981876614400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300, "random": 25.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.103309537400001 ], [ -118.387781275099996, 47.110491946300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800, "random": 103.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.702379542300001 ], [ -119.418660973399994, 48.688434635599997 ], [ -119.358757809599993, 48.6725327308 ], [ -119.346615263499999, 48.663656319300003 ], [ -119.330317322100001, 48.658599065700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850, "random": 41.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.793103767700003, 46.617894857 ], [ -117.811560010899996, 46.637963407900003 ], [ -117.806327964900007, 46.655361975700004 ], [ -117.798321866199998, 46.666107956700003 ], [ -117.815411481500007, 46.6748014633 ], [ -117.8035001513, 46.686340527600002 ], [ -117.793994109099998, 46.689334233 ], [ -117.783988535099994, 46.709214833799997 ], [ -117.753318956800001, 46.736170366499998 ], [ -117.731263435900004, 46.738060964399999 ], [ -117.729428262599995, 46.748608410400003 ], [ -117.715882879600002, 46.758320791400003 ], [ -117.704325545200007, 46.773822606700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000, "random": 124.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846634514399994, 47.043298773099998 ], [ -122.832270050299996, 47.045933568700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000, "random": 168.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233798993899995, 47.191531117499999 ], [ -122.221756869399997, 47.194537858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000, "random": 20.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.765114033100005, 47.0629504411 ], [ -122.764871137399993, 47.061291889300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100, "random": 151.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.831119692499996, 46.719886879699999 ], [ -123.846375426, 46.71976203 ], [ -123.857390329699996, 46.729496636500002 ], [ -123.875915207, 46.730765535099998 ], [ -123.884515218600001, 46.743609254699997 ], [ -123.884181242500006, 46.749824761 ], [ -123.890655563300001, 46.752095260499999 ], [ -123.916612494199995, 46.743854964900002 ], [ -123.926345221700004, 46.725680458799999 ], [ -123.947248919700002, 46.725881177200002 ], [ -123.974290630599995, 46.740487145700001 ], [ -123.990009500599996, 46.732027736600003 ], [ -124.020399747699997, 46.724650474699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": null, "random": 104.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297315236599999, 47.500657867500003 ], [ -120.297025515100003, 47.511100222800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000, "random": 94.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.890691547499998, 46.545066264699997 ], [ -117.874506860300002, 46.545349239799997 ], [ -117.856273262499997, 46.5369650839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": null, "random": 79.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.695750097499996, 47.304468245199999 ], [ -120.691926264299994, 47.318900842399998 ], [ -120.670659661100004, 47.326082664399998 ], [ -120.628563887400006, 47.335095201800002 ], [ -120.610897241700002, 47.331457959200002 ], [ -120.592299957799995, 47.336677689299997 ], [ -120.580873540200002, 47.335330983600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200, "random": 197.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045497248800004, 47.103424531 ], [ -122.047085011600004, 47.1062792018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000, "random": 69.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.286240130699994, 46.308479073 ], [ -119.297511450399995, 46.300101854099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200, "random": 103.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.398917675099995, 46.370274191599997 ], [ -119.346211276, 46.341521748200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000, "random": 49.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.108092835899996, 48.013254047899999 ], [ -122.109931729799996, 48.0262394664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100, "random": 92.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909988232700002, 47.811340111100002 ], [ -122.918842027, 47.802266037800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": null, "random": 63.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.296981004599999, 47.420685698699998 ], [ -120.294775757099998, 47.415324222800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780, "random": 71.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.485984496399993, 46.545678898299997 ], [ -122.485822753299999, 46.536429871300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600, "random": 163.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.726698166299997 ], [ -120.792115253199995, 46.735647347700002 ], [ -120.7884944778, 46.748308334100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100, "random": 133.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.989437568599996, 48.589057101599998 ], [ -118.015580453200002, 48.600051746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": null, "random": 158.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483231612799997, 47.388480686199998 ], [ -119.483234393, 47.389372647400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000, "random": 133.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292969383100001, 47.140242369600003 ], [ -122.2929747612, 47.155310860500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800, "random": 156.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407719966299993, 45.610616827199998 ], [ -122.407107026299997, 45.6049828823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600, "random": 23.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.383147769299995, 46.998968611 ], [ -123.376585238199993, 46.990906447 ], [ -123.341704534300007, 46.971788208699998 ], [ -123.329418103500004, 46.960126358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800, "random": 106.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326950201700001, 47.408557191100002 ], [ -122.332743201499994, 47.408543256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000, "random": 65.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.131894078499997, 46.233167577 ], [ -119.127789926700004, 46.243575565299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630, "random": 117.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.539764033200001 ], [ -117.578300568299994, 48.544846913900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": null, "random": 147.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117938296399998, 46.970178233699997 ], [ -119.109908886699998, 46.970152356699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000, "random": 29.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.665487439100005, 45.620068800200002 ], [ -122.658117051700003, 45.618558865399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000, "random": 72.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.603242915400003, 47.777122210199998 ], [ -122.586952600900005, 47.796221725800002 ], [ -122.573335582699997, 47.802767164400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": null, "random": 171.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.302961090799997, 47.409563274699998 ], [ -120.303554765499996, 47.410929097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000, "random": 17.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690480811800001, 45.815702704400003 ], [ -122.687327648299998, 45.815867042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000, "random": 181.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.354407756500002 ], [ -122.617473035900005, 47.365342874900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100, "random": 112.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.474793767599998 ], [ -117.556012713800001, 46.475141642799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000, "random": 158.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.471680580300003, 46.531543452599998 ], [ -120.469396236099996, 46.522142522499998 ], [ -120.455809751100006, 46.516358140900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400, "random": 125.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972813399800003, 47.3032197247 ], [ -117.972278891399995, 47.307327865300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700, "random": 82.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.865755115799999, 46.470908225099997 ], [ -122.849131169499998, 46.466188207899997 ], [ -122.8425140234, 46.458971800599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000, "random": 141.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606768074300007, 48.898128227699999 ], [ -122.636909412899996, 48.922347942800002 ], [ -122.6562396315, 48.932855200100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000, "random": 42.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111869904299994, 47.804901068699998 ], [ -122.111680302300002, 47.8021510795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000, "random": 96.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216376018299997, 47.872784710099999 ], [ -122.2148947405, 47.8742828444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000, "random": 84.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346459198399998, 46.051056921600001 ], [ -118.346098276600003, 46.053273733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000, "random": 34.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.402833022500005, 47.111088331600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360, "random": 23.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.954272166500004, 46.516741194600002 ], [ -121.9544576073, 46.521601558199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000, "random": 6.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207714154599998, 47.806353196499998 ], [ -122.207656748700003, 47.809595844900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000, "random": 83.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384432401200002, 47.653845423699998 ], [ -117.381252285399995, 47.653855957099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400, "random": 67.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.736039871299994, 48.986505083899999 ], [ -122.734938343799996, 48.989098350900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600, "random": 85.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.739633872200002, 47.8911395035 ], [ -122.7323375199, 47.889896867600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 75.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853529322100002, 47.119197753900004 ], [ -119.844942993399997, 47.109462068699997 ], [ -119.832449934699994, 47.104225926799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300, "random": 137.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048778895200002, 46.340650080300001 ], [ -117.050199969199994, 46.340770072600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700, "random": 154.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.693498972900002, 47.504267856699997 ], [ -117.707163542100005, 47.506718892199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000, "random": 46.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274507670399998, 48.4947462696 ], [ -122.269198387, 48.496735426400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600, "random": 40.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.376473190699997, 46.071652278400002 ], [ -118.359283416699995, 46.069578111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000, "random": 63.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.987609849699993, 46.137842902099997 ], [ -122.9772037818, 46.131475035900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000, "random": 135.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.969933722600004, 47.859195632 ], [ -121.965613591099995, 47.858227985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600, "random": 87.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.055720622199999, 47.138818733199997 ], [ -122.056272845799995, 47.140579682099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400, "random": 125.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.046585282699994, 47.244285264200002 ], [ -121.056774523399994, 47.248912239699997 ], [ -121.058417653500001, 47.257382574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000, "random": 80.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.020399747699997, 46.724650474699999 ], [ -124.052929368899996, 46.727878201400003 ], [ -124.077634417499993, 46.739899191200003 ], [ -124.080364486099995, 46.745280488500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000, "random": 152.929 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.876496051199993, 46.187636732 ], [ -119.853374581599994, 46.185913358800001 ], [ -119.7720886189, 46.195745774899997 ], [ -119.751849100699999, 46.203691501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100, "random": 195.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.683336977899998, 45.632826922100001 ], [ -122.691426359499999, 45.635858138700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000, "random": 53.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593089756500007, 47.642918812600001 ], [ -117.590546161600003, 47.642919808899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000, "random": 117.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.962783807199997, 46.122637066 ], [ -122.950614760899995, 46.116489802300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000, "random": 111.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206978686499994, 47.878310343700001 ], [ -122.206675659599995, 47.888594155600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000, "random": 199.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.261389296200001 ], [ -119.481945285799995, 46.252083253199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000, "random": 5.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.101069391699994, 47.945623791300001 ], [ -122.101466101499994, 47.953296692599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500, "random": 149.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.101630023200002, 48.154751719700002 ], [ -117.062662945900001, 48.175291644300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000, "random": 8.722 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435249748800004, 47.247047007 ], [ -122.435645795100001, 47.249449369799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000, "random": 39.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.449178166500005, 48.776042751399999 ], [ -122.445297398199997, 48.7767299988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000, "random": 163.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128253515300003, 47.687407080900002 ], [ -122.121615187200007, 47.676595685599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000, "random": 132.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.532036854400005, 47.672053053100001 ], [ -122.539356012400006, 47.679508670799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": null, "random": 189.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.508682291299998 ], [ -120.630695250499997, 47.511765176499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400, "random": 64.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907862545300006, 46.952805237200003 ], [ -122.914223824800004, 46.952800067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000, "random": 97.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.170253539900003, 46.7278386224 ], [ -117.167652506400003, 46.726238503700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000, "random": 65.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.969447341600002, 47.843075742800004 ], [ -121.970153865499995, 47.844960878599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100, "random": 155.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.828198165900005, 46.391360921900002 ], [ -123.820890344099993, 46.382916336 ], [ -123.802603124800001, 46.376002249599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000, "random": 125.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.086751526200004, 46.265575562400002 ], [ -119.089465752799995, 46.273488750600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000, "random": 118.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293397033700003, 47.910813296699999 ], [ -122.297484794799999, 47.9152081943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": null, "random": 54.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.042294462100003, 47.385609201599998 ], [ -118.877912719799994, 47.329922196399998 ], [ -118.8574529391, 47.319482191900001 ], [ -118.808522019199998, 47.315432174400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000, "random": 131.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.387370638700006, 46.467004185500002 ], [ -120.348739687399998, 46.444837030599999 ], [ -120.338862597800002, 46.424569283700002 ], [ -120.320029378900003, 46.416952264800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000, "random": 45.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.932855200100001 ], [ -122.671705466099993, 48.941482030899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000, "random": 101.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.285599041099999, 47.294343061399999 ], [ -121.2804778056, 47.2793125532 ], [ -121.270037992300004, 47.271237726800003 ], [ -121.235455507599994, 47.267507643800002 ], [ -121.193814887200006, 47.253304627399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000, "random": 25.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.393823270400006, 47.158137239699997 ], [ -122.363718605399995, 47.1582777108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400, "random": 119.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.748239795499998, 48.9864873577 ], [ -122.751462042399993, 48.988601174099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700, "random": 131.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305721706699998, 48.339435954800003 ], [ -122.295473367200003, 48.336979776200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810, "random": 76.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.214900463899994, 48.176768044100001 ], [ -124.203018147199998, 48.180455031199998 ], [ -124.195832008500005, 48.177621238699999 ], [ -124.165136415399999, 48.1913499188 ], [ -124.156893121600007, 48.189540328100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90, "random": 133.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916118413600003, 46.92713066 ], [ -121.963812764, 46.937772959500002 ], [ -121.979778453400002, 46.951892658399998 ], [ -121.992179434099995, 46.953076988 ], [ -122.003835838499995, 46.960991349799997 ], [ -122.018193319600002, 46.978708082399997 ], [ -122.015936576100003, 46.994273453300003 ], [ -122.037859592700002, 47.013831526300002 ], [ -122.039544621900006, 47.033662887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900, "random": 61.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247115922099994, 48.985535873800004 ], [ -122.247857996500002, 48.9927289918 ], [ -122.262812267699999, 48.992749594800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480, "random": 124.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.190686371200002, 47.838280048599998 ], [ -117.175819752799995, 47.834600076800001 ], [ -117.168515688100001, 47.847325751200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000, "random": 127.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632914151400001, 47.571068204600003 ], [ -122.632907041400003, 47.572695391300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000, "random": 137.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.176899997099994, 47.238944811700001 ], [ -121.167410245900001, 47.230914669100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000, "random": 82.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190403113499997, 47.773647266099999 ], [ -122.195418512399996, 47.784730909 ], [ -122.206475225600002, 47.791083140399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710, "random": 29.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.250105687200005, 47.4783678971 ], [ -118.254669381300005, 47.479786644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000, "random": 145.085 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923246241499996, 46.773207573400001 ], [ -122.910425015399994, 46.779577882200002 ], [ -122.894846332100002, 46.798680341800001 ], [ -122.875027461200006, 46.795522263400002 ], [ -122.863550784500006, 46.8063295169 ], [ -122.861547543699999, 46.850109919399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000, "random": 144.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304976714299997, 48.832388806399997 ], [ -122.296485317, 48.840044763199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000, "random": 148.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.215732162400002, 47.878264253300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": null, "random": 150.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.807194764200005, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000, "random": 194.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.299961998800001, 47.660377680700002 ], [ -122.298324518, 47.661060041399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000, "random": 98.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321901880599995, 47.332697738599997 ], [ -122.317780212100004, 47.335423352100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000, "random": 20.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658351202600002, 47.871160854099998 ], [ -122.639256115600006, 47.867730523600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000, "random": 179.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.556305050399999, 45.616735027099999 ], [ -122.563018940700005, 45.641866075400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850, "random": 164.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.760830541199994, 48.112587725399997 ], [ -122.7602906483, 48.11202882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300, "random": 39.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320569675100003, 48.884244666400001 ], [ -122.320553420799996, 48.891030585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100, "random": 72.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.178870895599999, 47.650335905799999 ], [ -118.16241258, 47.653636113200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000, "random": 84.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291357602399998, 47.899252708399999 ], [ -122.292951033600005, 47.905080688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": null, "random": 12.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.235963051599995, 47.098099812699999 ], [ -119.177412450299997, 47.092857525399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000, "random": 105.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.560438579899994, 47.285820962099997 ], [ -122.569522175499998, 47.2976027952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000, "random": 105.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144965710299999, 47.782134968100003 ], [ -122.144077016799997, 47.783849264600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000, "random": 13.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.051788297199998 ], [ -122.159282954700004, 48.053711065500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000, "random": 46.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187659689399993, 47.765906531200002 ], [ -122.190403113499997, 47.773647266099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100, "random": 50.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.957297598699995, 46.535353420699998 ], [ -121.90788364, 46.534078826600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": null, "random": 146.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.901327047799995, 48.048282498799999 ], [ -119.903180645099994, 48.0520592106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000, "random": 162.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244613142399999, 47.3498974886 ], [ -122.244529904100006, 47.361148228799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000, "random": 192.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.484675827499998 ], [ -122.252591198299996, 47.484034392399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800, "random": 34.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.091587142099996, 47.1407602078 ], [ -122.077350334, 47.139092994400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000, "random": 125.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.389504835099999, 46.011689678300002 ], [ -118.388880896499998, 46.023864194700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400, "random": 92.719 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978590577099993, 46.312565612199997 ], [ -119.979144045400005, 46.317064306299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000, "random": 92.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.700325316700003, 47.757666899199997 ], [ -118.613528094399996, 47.757899158199997 ], [ -118.547873384, 47.763398537599997 ], [ -118.5164209056, 47.758662661400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": null, "random": 40.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.317659566200007, 47.430224949500001 ], [ -120.319453417, 47.432412369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000, "random": 14.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.106683647099999 ], [ -123.41797883, 48.113857708300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000, "random": 142.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.574740916099998 ], [ -122.106841988200003, 47.568936548499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200, "random": 187.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.367348161699994, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.778971992800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": null, "random": 77.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.472142585900002 ], [ -120.323545995499998, 47.476904531599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": null, "random": 87.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.151117993100002, 47.883422456 ], [ -120.129590621600002, 47.8811242831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000, "random": 41.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.335221147499993, 47.713217372499997 ], [ -121.290688, 47.7127258764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000, "random": 151.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885558695599997, 46.243136327400002 ], [ -122.884496518500001, 46.256196953100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310, "random": 180.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.666884878100007, 47.090319640600001 ], [ -118.666904292400005, 47.098835126799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100, "random": 52.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.931899796400003, 48.270673013500002 ], [ -121.9062086717, 48.275000228700002 ], [ -121.888743691900004, 48.271523789100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740, "random": 116.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.074089992300003, 47.221197500099997 ], [ -117.073001201099999, 47.2221634757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000, "random": 82.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244302140900004, 47.302712250399999 ], [ -122.232938177099996, 47.303522884400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100, "random": 97.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907643551800007, 46.276932524700001 ], [ -122.905691619400002, 46.282456889599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000, "random": 182.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.649040017399997 ], [ -121.155209171400003, 45.649156826899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": null, "random": 146.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.998759055299999 ], [ -119.657929994699998, 47.999466185099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800, "random": 98.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218554959100004, 45.566170939899997 ], [ -122.201299056699995, 45.569871605899998 ], [ -122.195285283600001, 45.574473495500001 ], [ -122.192679317200003, 45.584736358500002 ], [ -122.1788052048, 45.588814009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000, "random": 75.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204347122200005, 47.9819297636 ], [ -122.205738671700004, 47.981949443399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500, "random": 48.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.568417730799993, 46.794722484399998 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000, "random": 195.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.344498386400005, 47.694213665299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000, "random": 165.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.915731495200006, 46.166789577800003 ], [ -122.911903540099999, 46.176592032800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000, "random": 153.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.037369215300004, 45.664174095600004 ], [ -120.981077636899997, 45.663863346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600, "random": 26.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.591579081299997, 46.474002727600002 ], [ -117.564276224, 46.474793767599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": null, "random": 81.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.067706026300002, 47.300839926899997 ], [ -120.066084082499998, 47.278248682499999 ], [ -120.077221051400002, 47.253937242500001 ], [ -120.072938281099994, 47.243304156299999 ], [ -120.057899472599999, 47.236158248 ], [ -120.035227518799999, 47.237171542900001 ], [ -119.999184879200001, 47.231264707299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200, "random": 176.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.222936962700004, 47.5343029792 ], [ -124.273133342400001, 47.540782054399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700, "random": 149.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024188294699997, 46.149871227699997 ], [ -119.029850228900003, 46.153645635499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500, "random": 6.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143442866699999, 48.931350329399997 ], [ -122.151589597300003, 48.946090996400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000, "random": 177.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313524644099999, 47.289689111500003 ], [ -122.300652700900002, 47.2899013547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400, "random": 55.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.744893128599998, 45.8153696587 ], [ -122.731933222199999, 45.815377897 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000, "random": 141.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313571236499996, 47.286134394100003 ], [ -122.313524644099999, 47.289689111500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780, "random": 112.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.997219649499996, 45.857574439399997 ], [ -120.952623287600005, 45.860952834099997 ], [ -120.952162535900001, 45.849938263600002 ], [ -120.942052363499997, 45.8461706302 ], [ -120.936832901399995, 45.832580091300002 ], [ -120.90654952, 45.831900140800002 ], [ -120.904476184399996, 45.824738004899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280, "random": 17.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251525721500002, 46.041766317099999 ], [ -117.244180480699995, 46.044799921200003 ], [ -117.238095494700005, 46.057134034900002 ], [ -117.239096413499993, 46.050618201399999 ], [ -117.235274718100001, 46.050415087799998 ], [ -117.239812356599998, 46.045254441499999 ], [ -117.230150147299995, 46.051342125700003 ], [ -117.230384437699996, 46.054464388 ], [ -117.234291444500002, 46.053431851399999 ], [ -117.228922887099998, 46.066230322599999 ], [ -117.217284415799995, 46.072089277099998 ], [ -117.209026307299993, 46.070783367499999 ], [ -117.210209924300003, 46.074255343600001 ], [ -117.187226967499996, 46.079976377500003 ], [ -117.177570731599999, 46.0877797821 ], [ -117.159465751499994, 46.090452552599999 ], [ -117.14576963, 46.099859828900001 ], [ -117.135466964200006, 46.115676721100002 ], [ -117.130739594, 46.137900051599999 ], [ -117.121720564200004, 46.148960802 ], [ -117.081703619799995, 46.174507460800001 ], [ -117.079240474599999, 46.186540096400002 ], [ -117.071540468899997, 46.195922281199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000, "random": 173.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.534381227799997 ], [ -117.905530764600002, 48.536362987700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000, "random": 13.286 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926121849899999, 46.122971713699997 ], [ -122.925898762, 46.123423944700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800, "random": 183.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.956475352799998, 46.711286950599998 ], [ -122.9543423418, 46.716240117700004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000, "random": 191.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.306076549499998 ], [ -119.968528090199996, 46.303720239100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600, "random": 36.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.669601332299997 ], [ -122.469021541100005, 45.664782696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000, "random": 145.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.656406237200002, 47.096673849200002 ], [ -118.623474841199993, 47.096914726100003 ], [ -118.570348396100002, 47.110895053199997 ], [ -118.500173933400006, 47.110755101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000, "random": 13.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.439007811799996, 47.624062479899997 ], [ -117.444732982900007, 47.632699017299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": null, "random": 198.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.489047915200004, 47.528097962300002 ], [ -120.45450523, 47.520787201099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000, "random": 198.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.909723769199999, 47.190106762600003 ], [ -120.921315964399994, 47.192773287900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000, "random": 23.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.549949749600003, 45.780646633700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600, "random": 108.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.266897083299995, 48.006793175399999 ], [ -118.247623398299993, 48.0127941378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900, "random": 25.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077280059299994, 48.924155999 ], [ -122.065651371300007, 48.9198042616 ], [ -122.054908145699997, 48.921324041299997 ], [ -122.047416962499994, 48.927722103299999 ], [ -122.034031109400004, 48.927868621199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50, "random": 68.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.508294435500005, 48.992025951599999 ], [ -118.503755893900006, 48.999943455500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000, "random": 92.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.815529775599998, 48.068412549100003 ], [ -122.8179486123, 48.071156388600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000, "random": 198.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.816707412599996, 46.9748418645 ], [ -123.824934680200002, 46.970652030700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000, "random": 8.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.173708393699997, 46.811531078199998 ], [ -119.154802210699998, 46.811576170199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000, "random": 54.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.471136370499998 ], [ -122.335721940799999, 48.471719653599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400, "random": 74.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.889569424300007, 46.439612233699997 ], [ -122.888204153700002, 46.439528325600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000, "random": 181.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.830633641600002 ], [ -122.126056682500007, 47.833819378100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000, "random": 107.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": null, "random": 87.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201226112499995, 47.874421860799998 ], [ -120.165824557700006, 47.860183266699998 ], [ -120.152582169300004, 47.860201246599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000, "random": 51.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.123284544300006, 46.248662601600003 ], [ -119.110563041199995, 46.248522956800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000, "random": 27.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.489969530099998, 45.724018802 ], [ -121.482884856799998, 45.722539983099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000, "random": 189.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.169866038799995, 46.341031590900002 ], [ -120.084882845199999, 46.328472961599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530, "random": 79.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690909899700003, 47.275779749199998 ], [ -118.690410114200006, 47.321422089899997 ], [ -118.686095423500007, 47.326048138 ], [ -118.692493076, 47.328344410299998 ], [ -118.692298812199994, 47.332496083700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": null, "random": 54.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.953679130500007, 47.233042477 ], [ -119.896682750599993, 47.232740356299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900, "random": 198.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.153247686300006, 46.270134871800003 ], [ -118.140718703700003, 46.270164958499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700, "random": 115.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.735063893900005, 48.030824420599998 ], [ -122.729957308199999, 48.0326119562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100, "random": 163.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.758662661400002 ], [ -118.505479518300007, 47.758430550299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710, "random": 105.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.082852740600003 ], [ -118.692277205300002, 48.094496996300002 ], [ -118.700208137700002, 48.1040161548 ], [ -118.692590506599998, 48.1252812428 ], [ -118.693035150900002, 48.143953366399998 ], [ -118.704233767299996, 48.1595006242 ], [ -118.714274046599996, 48.200701454600001 ], [ -118.704767720199996, 48.226073293200002 ], [ -118.694715909600006, 48.2401285718 ], [ -118.691502671099997, 48.255403882800003 ], [ -118.692862086900007, 48.264486287700002 ], [ -118.703840774599996, 48.269305853100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000, "random": 190.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.888033564200001, 47.567584502 ], [ -121.886444128799994, 47.5692233555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200, "random": 53.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370412417500006, 45.9461267079 ], [ -122.362274978800002, 45.955914037299998 ], [ -122.375570848, 45.964334714400003 ], [ -122.370005061300006, 45.969065915599998 ], [ -122.369299975199993, 45.976829447900002 ], [ -122.355639000400004, 45.989233166399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000, "random": 95.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.419099415200002 ], [ -122.295248680200004, 47.430983851400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000, "random": 159.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.393602726300003 ], [ -122.293108524199994, 47.392427434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000, "random": 87.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.138075286900005, 47.578657203900001 ], [ -122.123054938, 47.574740916099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000, "random": 177.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181098346799999, 47.579760287200003 ], [ -122.176099475200004, 47.580180733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000, "random": 50.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.973359107199997 ], [ -123.593318681499994, 46.978376439100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370, "random": 101.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974348339900004, 47.316068813 ], [ -117.982998962799996, 47.326497824199997 ], [ -117.983716812500006, 47.333803713199998 ], [ -118.001206519600004, 47.333943911699997 ], [ -118.005335260600006, 47.342231346200002 ], [ -118.019038024500006, 47.345560570499998 ], [ -118.041334448499995, 47.358326063699998 ], [ -118.085982431700003, 47.347843428 ], [ -118.100916135800006, 47.352425402100003 ], [ -118.118501650200002, 47.374970300299999 ], [ -118.166505006799994, 47.402760537 ], [ -118.182708976300006, 47.420132516800003 ], [ -118.188974968400004, 47.436269497700003 ], [ -118.184381702899998, 47.468219235699998 ], [ -118.192879460900002, 47.478116615700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000, "random": 165.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.911197239800003, 46.610010098099998 ], [ -122.927793161099999, 46.622196574599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": null, "random": 121.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.834408544200002, 47.612643410899999 ], [ -119.813196231899994, 47.612634348100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": null, "random": 77.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.970479080600001 ], [ -120.402914986699997, 46.971519895699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": null, "random": 117.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.054025982499994, 47.855326762899999 ], [ -120.047467202600004, 47.854848015199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000, "random": 103.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260420207400003, 47.201217628400002 ], [ -122.248800093100002, 47.205358269500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000, "random": 8.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186084026499998, 48.021915049900002 ], [ -122.181631231599994, 48.034487448100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100, "random": 65.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354687911200003, 47.203496109299998 ], [ -117.361690039, 47.210854100900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800, "random": 15.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.721923891800003, 47.763324445400002 ], [ -118.722593508499997, 47.770852469499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000, "random": 182.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699496916599998, 45.845401667700003 ], [ -122.705075456700001, 45.857927414499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500, "random": 18.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.043476330499999, 47.5508843024 ], [ -123.040786547600007, 47.539579815700002 ], [ -123.050357513400002, 47.529206217599999 ], [ -123.059297623, 47.5024290745 ], [ -123.074160424799999, 47.489790063500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000, "random": 127.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215732162400002, 47.878264253300003 ], [ -122.211100709899995, 47.878184265599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000, "random": 155.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185288907399993, 47.674292900899999 ], [ -122.182562213300002, 47.686153273599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200, "random": 30.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.033257147900002, 46.505364523600001 ], [ -124.028935226800002, 46.511817406699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000, "random": 146.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.308518342300005, 46.2931233698 ], [ -119.304742352800005, 46.293097353100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000, "random": 192.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.760492617899999, 45.933145426400003 ], [ -122.804950041799998, 45.960974781300003 ], [ -122.820947948200001, 45.976521508499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000, "random": 106.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.371877727300003, 48.104868243600002 ], [ -123.362749748699997, 48.108559920200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000, "random": 169.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177025547499994, 48.051845694900003 ], [ -122.167626886, 48.051788297199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": null, "random": 65.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292956606700002, 47.408097835 ], [ -120.292917287199998, 47.407953191799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000, "random": 33.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287576154700005, 47.858150705100002 ], [ -122.281965348300005, 47.864172748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000, "random": 31.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347888551400004, 47.157627397 ], [ -122.315042102800007, 47.158578655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000, "random": 147.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916264697100004, 46.145605350099999 ], [ -122.914753907600002, 46.150245296500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700, "random": 136.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.731933222199999, 45.815377897 ], [ -122.727008460899995, 45.815673419100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930, "random": 144.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.866802528500003 ], [ -121.530549912, 46.869005372 ], [ -121.522795043800002, 46.864961260800001 ], [ -121.5289737696, 46.869866351399999 ], [ -121.537161806, 46.86858299 ], [ -121.529484186299996, 46.871195929599999 ], [ -121.51710234, 46.8670852256 ], [ -121.514752992200002, 46.870096883199999 ], [ -121.517659688699993, 46.876195724699997 ], [ -121.505629367699996, 46.885854473899997 ], [ -121.480660576, 46.893928221400003 ], [ -121.443504086, 46.898375938199997 ], [ -121.420394895499996, 46.908116647100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": null, "random": 110.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.175173553899995, 47.767794879500002 ], [ -120.185928277200006, 47.767620503300002 ], [ -120.184058758700004, 47.782899352299999 ], [ -120.199643930600004, 47.804859922799999 ], [ -120.209305883300004, 47.826885866200001 ], [ -120.202354524499995, 47.840781316700003 ], [ -120.210418857799993, 47.8533002068 ], [ -120.202803984400006, 47.8632306636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000, "random": 45.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.777782415499999 ], [ -122.335328359100004, 47.777775342299996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100, "random": 20.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111012387700001, 46.904012754100002 ], [ -124.113183876600004, 46.908188825099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000, "random": 61.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.614235774899996, 46.6544908714 ], [ -120.594346368399997, 46.638631750199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540, "random": 139.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606439410099995, 47.343846301900001 ], [ -118.596116776700001, 47.347621765900001 ], [ -118.554800026099997, 47.348233731299999 ], [ -118.513580602399998, 47.358062065699997 ], [ -118.497006134399996, 47.3574102392 ], [ -118.453303690599995, 47.368668905900002 ], [ -118.340859362299994, 47.430227994699997 ], [ -118.296039426899995, 47.468252246200002 ], [ -118.256087151599999, 47.483856851399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000, "random": 153.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.331823643699998 ], [ -122.329243180199995, 47.331743374399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000, "random": 36.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.286789132300001 ], [ -122.896576102500006, 46.289316622500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000, "random": 63.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671691275200004, 45.622917794 ], [ -122.6679722011, 45.626404641100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700, "random": 70.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.878214631899993, 47.826987207599998 ], [ -122.875671430799997, 47.824142318100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": null, "random": 71.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.999039541099997 ], [ -119.1601933723, 47.028398647300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": null, "random": 49.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335546620299993, 47.469450059 ], [ -120.319580717500003, 47.471603209500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000, "random": 165.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182977455200003, 47.986938321099998 ], [ -122.182933121100007, 47.988551102700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000, "random": 156.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179669549600007, 47.699244791799998 ], [ -122.182057323600006, 47.709590182100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000, "random": 31.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.326950201700001, 47.408557191100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": null, "random": 11.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.511083533299995, 47.289512866899997 ], [ -119.470324502099999, 47.2726086288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000, "random": 199.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.399313164399999, 47.652035602700003 ], [ -117.384432401200002, 47.653845423699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000, "random": 29.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330308403700002, 48.239693958899998 ], [ -122.280950360700004, 48.235572681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800, "random": 32.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.838363531100001, 47.410922375600002 ], [ -122.829544315800007, 47.412774877300002 ], [ -122.820346137499996, 47.407048446300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000, "random": 85.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.525899249099993, 46.657957479399997 ], [ -120.523470564500002, 46.661985736299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000, "random": 15.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.986203267799993, 47.722900691500001 ], [ -121.985830348199997, 47.742682870899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": null, "random": 148.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.786847801899995, 48.101573517 ], [ -119.781151703399999, 48.104181729499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000, "random": 51.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207176229699996, 47.460991061 ], [ -122.207880765300004, 47.466571782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500, "random": 143.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.049170610700003, 48.187568367899999 ], [ -117.048155407699994, 48.1858130018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000, "random": 173.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.927065336300004, 47.8558599343 ], [ -121.861666793, 47.851004183500002 ], [ -121.830965119499993, 47.857991970500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800, "random": 44.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.393324315200005, 46.556351737500002 ], [ -120.385569175, 46.549998759200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100, "random": 171.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.568712757200004, 46.732258391 ], [ -121.560456892, 46.738490127799999 ], [ -121.556831556, 46.754691057599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800, "random": 153.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275303538700001, 46.553456335600004 ], [ -122.275195431499995, 46.5570314235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800, "random": 44.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.725780578599995, 48.156229186200001 ], [ -117.722712223299993, 48.168542211599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200, "random": 32.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.908386053900003, 46.981101741099998 ], [ -123.917970384499995, 46.9819334325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000, "random": 7.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.922241113200002, 46.146487239599999 ], [ -122.921891913799996, 46.146634318899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600, "random": 9.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984257470599999, 47.200949296 ], [ -121.981395463599995, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000, "random": 130.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296188563499996, 47.445261311700001 ], [ -122.295958375400005, 47.450660091700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000, "random": 116.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190996790900002, 47.980424217200003 ], [ -122.190960133, 47.981774674500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000, "random": 104.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276814935700003, 47.872663023800001 ], [ -122.276574087599997, 47.873402992099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400, "random": 92.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.748601067500005, 46.206079067600001 ], [ -119.747539303799996, 46.209412533399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650, "random": 146.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.556511898099998, 46.6435530173 ], [ -118.552551361799999, 46.644788750300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000, "random": 130.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206675659599995, 47.888594155600003 ], [ -122.202260042399999, 47.894649631 ], [ -122.206790649300004, 47.897200912700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000, "random": 166.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333605948400006, 48.417495423699997 ], [ -122.333025074099993, 48.417491268799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700, "random": 79.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284059821300005, 46.552903539500001 ], [ -122.2762378173, 46.552013002099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000, "random": 59.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.627433367600005, 47.534492499499997 ], [ -122.623732039299995, 47.533996747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600, "random": 7.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413560260899999, 48.732500641599998 ], [ -117.417472887399995, 48.746283143299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600, "random": 33.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813278595100002, 46.9750588263 ], [ -123.813512360700003, 46.975265630300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280, "random": 63.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.938416296599996, 47.373410272699999 ], [ -117.915039825099996, 47.398250499299998 ], [ -117.903488950799996, 47.422561879600003 ], [ -117.904320292500003, 47.437179247099998 ], [ -117.911079423700002, 47.445609022799999 ], [ -117.922223456899999, 47.450491284899996 ], [ -117.947802962300003, 47.452757322899998 ], [ -117.9564098516, 47.457678735899997 ], [ -117.949539913199999, 47.470371907900002 ], [ -117.951045493600006, 47.505546041800002 ], [ -117.919069388, 47.525262427100003 ], [ -117.920646192700005, 47.543270098599997 ], [ -117.925976860299997, 47.553377664499997 ], [ -117.920385247200002, 47.562746083699999 ], [ -117.940627768799999, 47.577733068299999 ], [ -117.937838489300006, 47.657930743599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300, "random": 35.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.133682051400001, 47.318666754900001 ], [ -123.111761060500001, 47.336906255800002 ], [ -123.104843365299999, 47.356962388699998 ], [ -123.074686488, 47.352705216300002 ], [ -123.073220077299993, 47.347496595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800, "random": 84.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.612560325800004, 48.333892043299997 ], [ -119.607763164600001, 48.3498164453 ], [ -119.602426876400003, 48.353805119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": null, "random": 44.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780943323499997, 48.1019970336 ], [ -119.781151703399999, 48.104181729499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000, "random": 32.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197881418400002, 46.229694839700002 ], [ -119.181516434599999, 46.226705456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000, "random": 151.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630091157500004, 47.828750694 ], [ -122.609729704700001, 47.851562278499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": null, "random": 32.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.242600533599997, 47.097918976899997 ], [ -119.245230842500007, 47.100412839699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000, "random": 133.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043624208300002, 47.905663460600003 ], [ -122.036750891599993, 47.900683868199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700, "random": 136.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275243482700006, 46.558324606299998 ], [ -122.2684521921, 46.568033511899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000, "random": 81.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383177258700002, 47.803115381799998 ], [ -122.377696220900006, 47.798612414700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800, "random": 57.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953673774899997, 46.728946156100001 ], [ -122.954310122899997, 46.719354594599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000, "random": 161.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.369699153200003, 47.653911932699998 ], [ -117.366468523400002, 47.653903994499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": null, "random": 108.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.355451271600003, 47.103965290799998 ], [ -119.337599522800005, 47.1039064442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000, "random": 99.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110832672900003, 48.050096806699997 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900, "random": 48.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.066814936599997, 46.126888887900002 ], [ -119.045457601400003, 46.122476811399999 ], [ -119.033084055200007, 46.1382539413 ], [ -119.016289419499998, 46.139440137500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500, "random": 113.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677077035600007, 45.632663080199997 ], [ -122.673833689800006, 45.631859894199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": null, "random": 116.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.652862503600005, 47.482823007 ], [ -120.649971590700005, 47.487666920300001 ], [ -120.633335995300001, 47.494922759600001 ], [ -120.632703036, 47.508682291299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000, "random": 39.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.921891913799996, 46.146634318899999 ], [ -122.919617324800001, 46.147218448 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000, "random": 109.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.030803482099998, 48.0385584263 ], [ -123.004448625699993, 48.0205093633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000, "random": 66.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274852247499993, 47.8718113531 ], [ -122.264316543600003, 47.883095025300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000, "random": 132.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729453772900001, 46.683375648199998 ], [ -123.729444855200001, 46.685617088800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300, "random": 181.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073018590499998, 47.2267941681 ], [ -117.071549412, 47.226814156700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000, "random": 189.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.566205816600004, 47.642947503 ], [ -117.560843662600007, 47.642884424899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000, "random": 51.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293924077300005, 47.080038511300003 ], [ -122.293794192500002, 47.082939788600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900, "random": 68.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.772702548799998, 48.537823519299998 ], [ -121.738462718600005, 48.535925892400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000, "random": 117.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121905390099997, 47.500530407799999 ], [ -122.112105333700001, 47.497294922400002 ], [ -122.097722760300002, 47.498851086400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200, "random": 160.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.910028470699999, 46.215109501 ], [ -118.876971723899999, 46.2152642916 ], [ -118.8462077967, 46.231297311900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600, "random": 70.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.125003599199999, 48.691547317400001 ], [ -118.127384378200006, 48.699816002200002 ], [ -118.124708804299999, 48.706432574499999 ], [ -118.134276810299994, 48.715546269400001 ], [ -118.129413443100006, 48.729316429299999 ], [ -118.1345781821, 48.739685525900001 ], [ -118.134534284899999, 48.754874284800003 ], [ -118.142801879199993, 48.773659770499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000, "random": 59.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.859381883899999, 47.040353374799999 ], [ -122.846634514399994, 47.043298773099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000, "random": 161.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225521381700005, 47.301972475200003 ], [ -122.217459721400004, 47.297124874700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000, "random": 10.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989326623300002, 47.858550461900002 ], [ -121.983023983600006, 47.863043263800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000, "random": 18.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.542797158699997, 47.262309813900004 ], [ -122.558955585, 47.2752600707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400, "random": 99.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.641825713900005, 47.834176160399998 ], [ -121.620781879299997, 47.835314958399998 ], [ -121.617312735499993, 47.831729195 ], [ -121.619364663799999, 47.826354869500001 ], [ -121.611657277, 47.819669337199997 ], [ -121.579864137300007, 47.812264536500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000, "random": 195.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.112160128799999, 47.242931552599998 ], [ -122.100789849099996, 47.225704153800002 ], [ -122.079794624900003, 47.210617842200001 ], [ -122.0162359001, 47.207421101199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": null, "random": 198.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.847725419500001 ], [ -120.090620372800004, 47.839698968800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000, "random": 117.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219472077800006, 47.479506736399998 ], [ -122.216468087400003, 47.4797552701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000, "random": 25.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197056867599997, 47.413407153100003 ], [ -122.197055607, 47.4196716079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000, "random": 108.454 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197652766600001, 47.528447926200002 ], [ -122.195658382399998, 47.535101455899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000, "random": 162.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.110832672900003, 48.050096806699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000, "random": 188.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.176977667300001 ], [ -122.183877881399994, 47.174736546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400, "random": 23.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.121081402499996, 46.190065032200003 ], [ -123.025496558200004, 46.176554459099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800, "random": 55.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.967530762799996, 46.710550664899998 ], [ -122.959860863399996, 46.711980420300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": null, "random": 53.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.245230842500007, 47.100412839699999 ], [ -119.246720142, 47.101776099600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880, "random": 76.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197765522899999, 48.6613912396 ], [ -119.175599727299996, 48.664465467399999 ], [ -119.170742696199994, 48.6669353976 ], [ -119.170938626199998, 48.671956166 ], [ -119.120441547900001, 48.686574606199997 ], [ -119.118814374099998, 48.701123824299998 ], [ -119.088964549899998, 48.714240826 ], [ -119.017399259599998, 48.725147710100003 ], [ -118.995678576200007, 48.732262710199997 ], [ -118.986449229800002, 48.7210608245 ], [ -118.9733997716, 48.722616011299998 ], [ -118.965824906899996, 48.727845524 ], [ -118.959594102699995, 48.726222653400001 ], [ -118.953184157600006, 48.718578255099999 ], [ -118.957603553400006, 48.700298359800001 ], [ -118.934596962200004, 48.687870096499999 ], [ -118.868836340499996, 48.671125088300002 ], [ -118.851204177400007, 48.659587123100003 ], [ -118.825235697699995, 48.661709479499997 ], [ -118.786436959200003, 48.651103998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": null, "random": 125.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.770798302800003 ], [ -120.143287073099998, 47.779560948399997 ], [ -120.135138303900007, 47.788744236299998 ], [ -120.128707418299996, 47.819718257399998 ], [ -120.103879243799994, 47.841016345500002 ], [ -120.093027113299996, 47.839093077199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": null, "random": 119.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.012783225299998, 47.839805990800002 ], [ -120.002363671200001, 47.8395520304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000, "random": 41.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.500910340399997 ], [ -122.644801591399997, 47.501961609200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000, "random": 130.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607696380799993, 46.942584212500002 ], [ -122.606541076799999, 46.941941313299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100, "random": 108.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.055967899899997, 46.341815561799997 ], [ -117.063990327699997, 46.351589107400002 ], [ -117.063194802, 46.368204376800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500, "random": 5.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.684912489699997, 47.701240726899997 ], [ -122.682703077799999, 47.701236210200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000, "random": 139.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352315237100001, 47.7871149729 ], [ -117.3512461081, 47.787090855099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000, "random": 153.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.845044421899999, 47.392821286699998 ], [ -117.833933902799998, 47.400546358100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000, "random": 184.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.404484347199997, 47.769196807699998 ], [ -117.402514188599994, 47.775377664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600, "random": 34.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726284757100004, 48.176220476499999 ], [ -117.733773391, 48.190477374899999 ], [ -117.743027244900006, 48.196204943700003 ], [ -117.715379481699998, 48.208231873599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000, "random": 78.572 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207880765300004, 47.466571782 ], [ -122.207939727699994, 47.469068922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100, "random": 153.768 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.889926040399999, 47.788750644499999 ], [ -117.8929652387, 47.810314659399999 ], [ -117.868890821199997, 47.839286458300002 ], [ -117.853074304499998, 47.837525220300002 ], [ -117.8559886683, 47.847262528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000, "random": 85.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344733938499999, 47.706554117800003 ], [ -122.345093507800001, 47.732289174899996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000, "random": 22.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.396987132299998, 47.237584311799999 ], [ -122.389177909500006, 47.234445270199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000, "random": 110.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.608756056199994, 48.255339874599997 ], [ -121.601735842799997, 48.255269148799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400, "random": 166.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.175989763899999 ], [ -117.045381435699994, 48.1774974633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000, "random": 76.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.036791997400002, 46.802544382500002 ], [ -123.012286397599993, 46.802428045600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000, "random": 153.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.826922042899994, 47.451325656100003 ], [ -122.82404435, 47.452724593500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000, "random": 175.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.535794516899998, 46.915604535500002 ], [ -121.544808561400004, 46.895796151200003 ], [ -121.539279495800002, 46.879268564 ], [ -121.539784148, 46.866802528500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800, "random": 177.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314606942300003, 46.403812259600002 ], [ -120.314605349900006, 46.393047799199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000, "random": 17.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.118247955200005, 46.824068652 ], [ -123.097038422799997, 46.8218084668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000, "random": 96.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411193487199995, 47.6661553637 ], [ -117.411184230499998, 47.664084168199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000, "random": 17.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.716366211899995, 47.8813080117 ], [ -122.683602066500001, 47.869477873599998 ], [ -122.658351202600002, 47.871160854099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300, "random": 110.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.387193219400004, 47.661914020600001 ], [ -117.379716311400003, 47.661938751100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700, "random": 82.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905841872400003, 48.5465546852 ], [ -117.907287510100005, 48.548539055799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000, "random": 153.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547485506900003, 45.785201757800003 ], [ -122.547235864699999, 45.811720037800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000, "random": 191.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.907289321699999 ], [ -122.207028983800001, 47.914243946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000, "random": 182.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.114431986499994, 47.165563315 ], [ -122.043046834799995, 47.158505120500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": null, "random": 52.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.194727604199997, 47.057704760599997 ], [ -119.215258356299998, 47.075122481199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000, "random": 57.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413437023900002, 47.653519803800002 ], [ -117.413427022500002, 47.653110738199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100, "random": 173.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212867549799995, 48.655877457400003 ], [ -122.208678243400001, 48.671540295299998 ], [ -122.192831035500006, 48.690654080500003 ], [ -122.202413423099998, 48.706271974400003 ], [ -122.2034031763, 48.720699274200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600, "random": 23.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.976232691199996, 46.321695543899999 ], [ -117.972796020800004, 46.3237819677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000, "random": 62.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.467423081800007, 48.738158788299998 ], [ -122.463797409400001, 48.749722479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000, "random": 97.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392433527099996, 45.579523637500003 ], [ -122.369303594900003, 45.579195230800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800, "random": 131.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.785311949099999 ], [ -117.916377799599999, 46.784529918200001 ], [ -117.9028685233, 46.788297571699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100, "random": 41.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.982029513699999 ], [ -122.214303316900001, 47.982048124400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000, "random": 157.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581542929400001, 48.463762046799999 ], [ -122.601808798899995, 48.491290470499997 ], [ -122.609634455600002, 48.493290848299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000, "random": 30.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314605349900006, 46.393047799199998 ], [ -120.314680302499994, 46.389563781200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610, "random": 191.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.911444977899997 ], [ -117.079932052299995, 46.911435068899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000, "random": 120.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231066910699994, 47.381651080899999 ], [ -122.231080053, 47.383307260599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600, "random": 171.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210814926099999, 48.308349596799999 ], [ -122.225963612699999, 48.310115165299997 ], [ -122.234367686100001, 48.315786019199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000, "random": 183.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144077016799997, 47.783849264600001 ], [ -122.1434566593, 47.790344373899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000, "random": 9.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293539254899997, 47.098614527599999 ], [ -122.293226289900005, 47.118364891100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000, "random": 139.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.555660958900006, 46.936196930900003 ], [ -122.554051004900003, 46.938020830100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800, "random": 175.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.695083687700006, 46.669070081500003 ], [ -123.683929235400001, 46.655606363499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000, "random": 198.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.156422077599998 ], [ -122.036347956, 47.158042872499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800, "random": 118.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.251843555400001, 46.331539616400001 ], [ -120.246165081599997, 46.327693020399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000, "random": 175.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217877603399998, 47.4696365374 ], [ -122.217836586399997, 47.470858336299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900, "random": 57.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.607441234600003, 47.594573299899999 ], [ -117.569178883700005, 47.594619977500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820, "random": 82.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.765380910600001 ], [ -118.646878596799993, 48.773768593699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100, "random": 120.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907878279900004, 46.947303939299999 ], [ -122.907862545300006, 46.952805237200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900, "random": 30.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.709580028600001, 46.8824221446 ], [ -123.714723801299996, 46.890466702200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000, "random": 35.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451971471799993, 48.964651037800003 ], [ -122.441323932299994, 48.96428992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000, "random": 105.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266703538399994, 46.863486567899997 ], [ -122.266717231599998, 46.865519286100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800, "random": 94.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.900869444700007, 47.186221290299997 ], [ -120.899961343100003, 47.187712731600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330, "random": 7.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659863915100004, 46.970594937100003 ], [ -118.6639343919, 46.974306665299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000, "random": 169.783 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.426498692500004, 46.995530410599997 ], [ -123.408296755899997, 46.999944815200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000, "random": 158.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313330040500006, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000, "random": 87.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.500173933400006, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000, "random": 43.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473637693100002, 48.718321439699999 ], [ -122.473686591399996, 48.725491598399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500, "random": 158.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953762576299994, 46.735381752099997 ], [ -122.953782416699994, 46.736692891399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300, "random": 82.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.153148232199996, 47.043350307399997 ], [ -124.1580458631, 47.044601999400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000, "random": 50.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.378220896599998, 47.772633437400003 ], [ -117.356706419099993, 47.781286752100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000, "random": 9.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187198009200003, 47.738498455299997 ], [ -122.185741568699996, 47.754859998100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540, "random": 16.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.243020091899993, 47.135105077299997 ], [ -117.231266883399996, 47.153245730199998 ], [ -117.205230499199999, 47.1675404896 ], [ -117.199232453899995, 47.177370832800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000, "random": 84.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.369303594900003, 45.579195230800003 ], [ -122.356148350200002, 45.5765439754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600, "random": 27.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.154802210699998, 46.811576170199999 ], [ -119.133540258899998, 46.81166858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": null, "random": 148.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.736019593599998 ], [ -120.736880836500006, 47.721903015199999 ], [ -120.745850538100001, 47.697983781399998 ], [ -120.737315796, 47.689533732400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800, "random": 62.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.825809829599997 ], [ -123.118247955200005, 46.824068652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600, "random": 175.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.741345992600003 ], [ -117.242141715100004, 46.7585806572 ], [ -117.261732509699996, 46.759794574300003 ], [ -117.277256571300001, 46.772497546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": null, "random": 42.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228121380800005, 47.624127678900003 ], [ -120.228042091, 47.627788861799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000, "random": 110.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.002559608799999, 46.810008946899998 ], [ -122.9724799034, 46.860398040699998 ], [ -122.960098434499997, 46.898463150700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800, "random": 89.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.887405132300003, 46.979481806199999 ], [ -123.883914385099999, 46.977057906600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000, "random": 35.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243838936399996, 47.456863249199998 ], [ -122.245609145, 47.463812580099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100, "random": 190.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.320577083300002 ], [ -124.005822603200002, 46.322037676800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100, "random": 104.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.222910009800003, 47.573066742800002 ], [ -117.224735507399998, 47.5862739437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000, "random": 83.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293870047200002, 47.204398406 ], [ -122.293853606100001, 47.205180808400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000, "random": 52.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225634901099994, 47.3030417103 ], [ -122.225521381700005, 47.301972475200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000, "random": 85.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.209623774600004, 47.671722867500002 ], [ -117.179444856399996, 47.665768017300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200, "random": 156.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.388047876900004, 48.857011534900003 ], [ -117.376607488700003, 48.865664456099999 ], [ -117.372529039599996, 48.86403205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000, "random": 61.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.554051004900003, 46.938020830100001 ], [ -122.553834768499996, 46.952413496699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000, "random": 78.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.939132261799998 ], [ -122.4853467091, 48.946056784200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000, "random": 45.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354567975600006, 48.617470432600001 ], [ -122.357139855499994, 48.627319620199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000, "random": 141.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.339444431899999 ], [ -122.312363667300005, 47.347799161099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000, "random": 55.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656562609900007, 47.570330458100003 ], [ -122.653315631300003, 47.567379882300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000, "random": 14.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.991001614300004, 47.0450336894 ], [ -122.960202830200004, 47.0399823411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000, "random": 150.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637848629700002, 47.542187291499999 ], [ -122.6362542655, 47.541726008099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000, "random": 120.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.244831362599996, 47.6887168246 ], [ -117.239712502900005, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900, "random": 176.361 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.178513834300006, 46.644438357799999 ], [ -121.169763825299995, 46.647108488500002 ], [ -121.151781941199999, 46.644685082 ], [ -121.131939098399997, 46.654538566299998 ], [ -121.126372508900005, 46.664869244099997 ], [ -121.120364078199998, 46.665071150400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000, "random": 24.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570785594699998, 47.713968150699998 ], [ -122.592333752900004, 47.705804317899997 ], [ -122.614500727399999, 47.715477569100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000, "random": 18.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485347089399994, 48.891721005 ], [ -122.485340099, 48.906697669099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700, "random": 170.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137692842600003, 47.978193927200003 ], [ -122.137654272099994, 47.981326184399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400, "random": 163.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.613426266499999, 47.471353912 ], [ -117.607613926300004, 47.472278094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400, "random": 137.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303344193200004, 46.5641172674 ], [ -122.296621681100007, 46.5642108312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800, "random": 26.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.707163542100005, 47.506718892199999 ], [ -117.714815111799993, 47.514854791399998 ], [ -117.714928811799993, 47.530660338499999 ], [ -117.704477620199995, 47.548263456599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000, "random": 199.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.444060501300001, 47.158268456 ], [ -122.427613443799999, 47.1581515823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100, "random": 25.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.906568351900006, 47.102522463299998 ], [ -123.895831974399997, 47.110762699200002 ], [ -123.897945931, 47.118216256399997 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.134892608599998 ], [ -123.888992968500006, 47.144192540600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000, "random": 106.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313390933899996, 48.4356182605 ], [ -122.307978405499995, 48.435595460800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000, "random": 61.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407309262599995, 48.690169743399998 ], [ -122.449674891499996, 48.6936253155 ], [ -122.474557695200005, 48.703646174100001 ], [ -122.4754001915, 48.7114461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000, "random": 58.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.654549427500001, 45.717300241700002 ], [ -122.656990761200007, 45.732546164200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800, "random": 8.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.054383254299999 ], [ -117.620506636499996, 48.060076006499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300, "random": 117.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.351239545599995, 46.069099866199998 ], [ -118.356477484600006, 46.068884259900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500, "random": 193.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.717959422600003, 48.285470006399997 ], [ -117.819166039899997, 48.320150205300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000, "random": 121.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292458623200005, 47.733778690400001 ], [ -122.292441666499997, 47.735585142300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300, "random": 110.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226140987199997, 48.528254450399999 ], [ -122.226018055, 48.537578659499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000, "random": 36.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411184230499998, 47.664084168199999 ], [ -117.411097387599995, 47.686238881100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000, "random": 109.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229301542100004, 47.180660177199996 ], [ -122.229284166499994, 47.1772685985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000, "random": 132.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332281600300007, 47.467204479400003 ], [ -122.3299629869, 47.474841478899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000, "random": 123.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.112692130300005, 48.000211144399998 ], [ -122.106317910599998, 48.002878399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500, "random": 184.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143204017900004, 48.917388145700002 ], [ -122.143442866699999, 48.931350329399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000, "random": 42.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177835226900001, 48.046828316 ], [ -122.177025547499994, 48.051845694900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600, "random": 112.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.611206928599998, 47.594612786900001 ], [ -117.607441234600003, 47.594573299899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500, "random": 113.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.896576102500006, 46.289316622500003 ], [ -122.890796080300007, 46.301280442600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000, "random": 134.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.428490086700002 ], [ -122.622593568699997, 47.438378847099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000, "random": 151.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.076154776400003, 46.820639691700002 ], [ -123.070578495899994, 46.818061401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700, "random": 50.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.874470869500001, 45.824429695 ], [ -120.859747683400002, 45.8244297002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000, "random": 126.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.523562276800007, 47.978488490700002 ], [ -117.551496168100002, 47.993632692699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000, "random": 134.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.390124871799998, 47.393230258800003 ], [ -121.379639739699996, 47.386711917200003 ], [ -121.3634004667, 47.342296723300002 ], [ -121.351847411400001, 47.339440451500003 ], [ -121.343448944299993, 47.330498774200002 ], [ -121.328788046, 47.3253104992 ], [ -121.309937195499998, 47.307573398400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700, "random": 10.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908639489600006, 46.899146685399998 ], [ -122.905777602300006, 46.908129383400002 ], [ -122.907920452900001, 46.932682540099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000, "random": 28.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382101974199998, 46.204770148 ], [ -123.366284463200003, 46.197242044100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000, "random": 172.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263676331200003, 46.2591722166 ], [ -119.256337961900002, 46.251966726399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000, "random": 59.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.804100865599999 ], [ -122.377164761499998, 48.804134103800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000, "random": 148.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.910635348200003, 46.267561943099999 ], [ -119.884688452199995, 46.258716924600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000, "random": 199.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813512360700003, 46.975265630300001 ], [ -123.812351579500003, 46.975862692200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200, "random": 136.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385450857500004, 47.954115057599999 ], [ -124.389529876300003, 47.9579786515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720, "random": 28.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.613519309500006, 46.373222121399998 ], [ -122.599339156, 46.378240487100001 ], [ -122.592318549699996, 46.364142104300001 ], [ -122.575630911800005, 46.3701554294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920, "random": 28.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.076791396299996, 48.630228082800002 ], [ -118.080925071300001, 48.633569000800001 ], [ -118.080422326499999, 48.645851570799998 ], [ -118.0855460386, 48.656612635599998 ], [ -118.076118270500004, 48.662017481200003 ], [ -118.052819214600007, 48.665559054600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500, "random": 46.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.731910468699994, 48.027148628500001 ], [ -117.741432639699994, 48.045341383299998 ], [ -117.741461706699994, 48.054927261899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000, "random": 137.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.115157878700003, 47.667096279399999 ], [ -122.107099275699994, 47.669954242800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": null, "random": 151.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.554898095499993, 47.306482052600003 ], [ -119.540464836200002, 47.301657132800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200, "random": 172.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.543956415300002, 47.777004347499997 ], [ -117.532580146699999, 47.7818048655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000, "random": 46.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.003392430700004, 47.308701873099999 ], [ -122.003632927599995, 47.309464702200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": null, "random": 60.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.077111309399996, 47.762355573599997 ], [ -120.034694087099993, 47.774461055300002 ], [ -119.992806629900002, 47.7795776217 ], [ -119.970717980100005, 47.810311780500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400, "random": 17.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724712097600005, 47.014546030200002 ], [ -122.715520784500001, 47.012462492899999 ], [ -122.704248210700001, 47.016611338399997 ], [ -122.692908625800001, 47.012290862500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000, "random": 134.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563018940700005, 45.641866075400003 ], [ -122.56552133, 45.648308855899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000, "random": 136.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.583822528600002 ], [ -122.443282949099995, 45.578531253800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000, "random": 164.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321304667800007, 47.679899929599998 ], [ -122.321624579399995, 47.680978481499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700, "random": 115.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.404321633099997, 45.615225457 ], [ -122.408008438600007, 45.611584036899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000, "random": 194.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.098432778900005, 47.1898992789 ], [ -123.098249415300003, 47.195211623900001 ], [ -123.0921869405, 47.1998399079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600, "random": 63.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.752041545599994, 48.996105339800003 ], [ -122.752345439300001, 48.997156789599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000, "random": 12.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297804080899994, 47.8210601157 ], [ -122.292406555300005, 47.820973150699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000, "random": 191.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.232845233299997, 47.208378484400001 ], [ -118.215332571199994, 47.214509543600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000, "random": 116.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.443902727600005, 48.446021134799999 ], [ -122.431338853400007, 48.446287310700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400, "random": 37.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.111411386300006, 46.283072301399997 ], [ -118.090008747799999, 46.289245971699998 ], [ -118.036098662200004, 46.288326295600001 ], [ -118.003770001299998, 46.305320537199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100, "random": 118.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096605699199998, 46.626868397499997 ], [ -123.081386745100005, 46.6270365528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000, "random": 153.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446627369200002, 47.230157966900002 ], [ -122.434938931800005, 47.2327862223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400, "random": 145.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.186352443700002, 46.830341964500001 ], [ -123.160385207600001, 46.827035102099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800, "random": 56.697 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.357230480799998, 48.866178092299997 ], [ -117.352188943599998, 48.873500374199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000, "random": 134.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434907904200003, 47.099300405800001 ], [ -122.434751610199996, 47.112394316900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500, "random": 75.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883861749900007, 46.583840508400002 ], [ -122.839874060100001, 46.576032654499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610, "random": 39.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.395608745700002 ], [ -121.397342688899997, 47.3964612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000, "random": 14.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.369476906499997, 47.0202996688 ], [ -122.373428712899994, 47.025255627900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000, "random": 15.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.010716259500001 ], [ -123.352240649300001, 47.017684745399997 ], [ -123.332968547299998, 47.037354000699999 ], [ -123.315836318, 47.043999294099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200, "random": 51.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.265225939100006, 47.055633962400002 ], [ -123.268924316500005, 47.067984467800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000, "random": 168.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239688719100002, 47.686200289600002 ], [ -117.239712502900005, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000, "random": 12.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486004744400006, 48.795206026899997 ], [ -122.486012535699999, 48.800551579699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900, "random": 25.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210439985500003, 48.515958146599999 ], [ -122.194015632499998, 48.523674249099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000, "random": 183.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515764730499995, 47.279822397399997 ], [ -122.515758745799999, 47.281707768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000, "random": 182.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300652700900002, 47.2899013547 ], [ -122.298604580399996, 47.290674507299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830, "random": 177.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626968669099995, 47.563649620699998 ], [ -122.625307651400007, 47.562195788499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710, "random": 198.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.161062147699994, 48.801349192399996 ], [ -118.172585386, 48.828152150299999 ], [ -118.199527991300002, 48.841347176399999 ], [ -118.204962522100004, 48.861182790299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000, "random": 177.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197572222900007, 46.169229399400002 ], [ -119.17625049, 46.184932840099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800, "random": 52.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.231297311900001 ], [ -118.720525774400002, 46.297552084199999 ], [ -118.584339470700002, 46.296193138699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290, "random": 28.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974348339900004, 47.316068813 ], [ -117.945230383400002, 47.3491519572 ], [ -117.938685422399999, 47.362423437700002 ], [ -117.938416296599996, 47.373410272699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000, "random": 92.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.836099174300003, 45.676024127300003 ], [ -120.835036922100002, 45.682664960300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000, "random": 174.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.027451012900002 ], [ -118.380517254300003, 46.031811534299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210, "random": 94.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.168515688100001, 47.847325751200003 ], [ -117.158869180099998, 47.869560835900003 ], [ -117.131255097899995, 47.885976483900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200, "random": 37.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.123852411200005, 46.273750084299998 ], [ -118.111411386300006, 46.283072301399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000, "random": 5.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.641894565100003, 47.379505721400001 ], [ -122.626109567699999, 47.3846980617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000, "random": 99.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.899091142399996, 46.794010221199997 ], [ -118.75567632, 46.792100750400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000, "random": 17.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247422590499994, 47.385264943800003 ], [ -122.247431142099998, 47.386713606199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900, "random": 196.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.419919126400004 ], [ -117.058680005900001, 46.419926261500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800, "random": 30.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.535337776800006, 48.098941472 ], [ -123.514687829300001, 48.101668274700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000, "random": 157.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673143573900006, 47.568179933 ], [ -122.667648745600005, 47.568424242600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700, "random": 110.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.693336633499996, 46.576760556799996 ], [ -122.670955736699995, 46.582551110300003 ], [ -122.648386479099997, 46.601923836600001 ], [ -122.634550855100002, 46.608460121199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700, "random": 159.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634550855100002, 46.608460121199997 ], [ -122.626250840699996, 46.611923550500002 ], [ -122.592978153399997, 46.612777225199999 ], [ -122.540197422, 46.605002059199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000, "random": 196.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.643005397499998 ], [ -117.507145410299998, 47.643066968100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450, "random": 8.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.578300568299994, 48.544846913900003 ], [ -117.564749090399999, 48.551411905599998 ], [ -117.5555575339, 48.561967218100001 ], [ -117.553454897799995, 48.5736906307 ], [ -117.558822491100003, 48.5802438479 ], [ -117.559705992199994, 48.593892183199998 ], [ -117.550171145199997, 48.605263212899999 ], [ -117.543007573400004, 48.630926416 ], [ -117.519271549400003, 48.641346430399999 ], [ -117.513471449799994, 48.6474798721 ], [ -117.497475777800005, 48.6538530694 ], [ -117.488961395100006, 48.651669244700003 ], [ -117.4778840213, 48.657428848 ], [ -117.469810877399993, 48.673426829199997 ], [ -117.456139936599996, 48.672476686899998 ], [ -117.4533799294, 48.684483503 ], [ -117.434306536299999, 48.679670209199998 ], [ -117.431606750100002, 48.6833095812 ], [ -117.429309953499995, 48.681385824700001 ], [ -117.427504968700006, 48.689210634600002 ], [ -117.410840975200003, 48.685132151700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000, "random": 108.504 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.631866589399998 ], [ -122.670440581099996, 45.631853572600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000, "random": 170.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.778971992800003 ], [ -117.402735532, 47.781179547199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100, "random": 107.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.172114409299994, 48.450282224600002 ], [ -118.178243425600002, 48.454828474899998 ], [ -118.180432223300002, 48.463571220699997 ], [ -118.169561568199995, 48.473834848800003 ], [ -118.1731326389, 48.4834075634 ], [ -118.136999374200002, 48.5254134037 ], [ -118.1205170275, 48.559925222799997 ], [ -118.109930425100004, 48.569916878800001 ], [ -118.090171582, 48.570911693200003 ], [ -118.073641162300007, 48.581071736 ], [ -118.073392596600002, 48.584875433800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000, "random": 69.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628868229899993, 47.621337157900001 ], [ -122.628901394099998, 47.632234824900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500, "random": 9.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.220231876100002, 46.267966630899998 ], [ -118.169361525799999, 46.2688128518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000, "random": 36.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202351162699998, 46.134711391400003 ], [ -119.203612629, 46.116266121300001 ], [ -119.223404088600006, 46.0911748268 ], [ -119.224889202, 46.031730899199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": null, "random": 130.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297223348299994, 47.513955855399999 ], [ -120.280863748499996, 47.533979624200001 ], [ -120.254385786900002, 47.548897750499997 ], [ -120.254393566900006, 47.557319987200003 ], [ -120.230933677099998, 47.591719530200002 ], [ -120.226185244600003, 47.605363248099998 ], [ -120.228219080299993, 47.619337377400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100, "random": 166.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.119648738600006, 48.635004250500003 ], [ -118.112920045400003, 48.644273739699997 ], [ -118.113645171200005, 48.6614121482 ], [ -118.125003599199999, 48.691547317400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000, "random": 32.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505963270500004, 45.681974861699999 ], [ -122.505958291699997, 45.675826886400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300, "random": 48.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672677226600001, 45.632554433599999 ], [ -122.673838776899998, 45.632559899699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000, "random": 125.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.978490988800004, 46.672381097500001 ], [ -122.971575499699995, 46.680680636600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000, "random": 50.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.394695192900002, 47.757093937699999 ], [ -117.384990934100003, 47.766735284100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800, "random": 156.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521661144700005, 48.408142504 ], [ -119.521733143099993, 48.4069900346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900, "random": 61.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.897147694899999, 47.186874414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900, "random": 121.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.304381981399999, 46.081133974700002 ], [ -118.293989290900001, 46.082369212300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": null, "random": 109.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.550955143799996, 47.3216616972 ], [ -119.546962332099994, 47.327187273600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000, "random": 46.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304212781499999, 47.644095444100003 ], [ -122.304514492500005, 47.645285222699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000, "random": 173.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281643589599994, 47.491197644099998 ], [ -122.284234380800001, 47.496645891500002 ], [ -122.294824384099996, 47.498289333300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000, "random": 169.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253913809599993, 47.589252353500001 ], [ -122.239877959799998, 47.590805383499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200, "random": 100.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.772634005300006, 46.957213138599997 ], [ -123.786851206799994, 46.967101999900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870, "random": 172.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.379782915200003 ], [ -117.174249895399996, 47.386765967199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200, "random": 64.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495984081200007, 47.795839855 ], [ -122.495587689600001, 47.797525249099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000, "random": 13.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.219653668600003, 47.673730154700003 ], [ -117.209623774600004, 47.671722867500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000, "random": 112.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.466470167099999, 45.714803707500003 ], [ -121.465374470599997, 45.714393327700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400, "random": 123.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.535952920900002, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000, "random": 126.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262930243100001, 47.461922989500003 ], [ -122.257680961399998, 47.462429673300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000, "random": 77.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327202421899997, 47.485407254199998 ], [ -122.324930132099993, 47.494050853399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000, "random": 24.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472532295199997, 47.170111582799997 ], [ -122.466503179200004, 47.176321938900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500, "random": 51.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187759518799993, 47.081938472700003 ], [ -122.177075129499997, 47.082155805299998 ], [ -122.157935570399999, 47.091469010600001 ], [ -122.144423085900002, 47.1117933341 ], [ -122.133641732, 47.120378446799997 ], [ -122.134312964499998, 47.127974281 ], [ -122.127858372, 47.130963939099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000, "random": 180.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.361971859799993, 48.427754610500003 ], [ -122.348619877, 48.42175299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000, "random": 94.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.101162050699998, 47.207212564800002 ], [ -123.100990567899998, 47.208217873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400, "random": 162.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.893545103500003, 47.212482255300003 ], [ -117.913373348700006, 47.2329689301 ], [ -117.918958854699994, 47.245528497400002 ], [ -117.930306638700003, 47.253502631099998 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.298032189799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": null, "random": 40.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.005266057699998, 47.944909575600001 ], [ -119.007361139, 47.943315751599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000, "random": 99.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.815097401399996, 48.097207949 ], [ -122.813259501299996, 48.100401481399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000, "random": 91.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.977254482299998, 47.860853409100002 ], [ -121.969933722600004, 47.859195632 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000, "random": 175.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.922091829899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000, "random": 125.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.356664533599997, 48.465761159700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200, "random": 153.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.604052753100007, 48.8920780487 ], [ -122.617444360700006, 48.891747907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000, "random": 124.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313512649399996, 47.284003214499997 ], [ -122.313571236499996, 47.286134394100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000, "random": 173.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811926119600002, 46.952123449200002 ], [ -123.804648479700006, 46.958726717300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000, "random": 76.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.408296755899997, 46.999944815200003 ], [ -123.396041911699996, 47.002634929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200, "random": 60.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047517464899997, 46.474461423100003 ], [ -117.039751810200002, 46.480061668799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000, "random": 62.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564705970600002, 47.501189749200002 ], [ -117.564681711199995, 47.503963135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000, "random": 43.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.358205390599998 ], [ -119.043777732799995, 46.417275371599999 ], [ -119.028268493799999, 46.425247257700001 ], [ -119.024690463699997, 46.4313046328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500, "random": 15.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176420952499996, 46.767562564899997 ], [ -119.1764829488, 46.775469671700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": null, "random": 138.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.062181571899998, 47.649175315900003 ], [ -120.046486571299994, 47.644601957500001 ], [ -120.027698695, 47.624115890100001 ], [ -120.004422111899999, 47.621042911099998 ], [ -119.997191266499996, 47.612737743099999 ], [ -119.834408544200002, 47.612643410899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290, "random": 165.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.999816557599999 ], [ -118.662907646700006, 47.0795552087 ], [ -118.666884878100007, 47.090319640600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700, "random": 5.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.602040066900003, 48.259580257300001 ], [ -121.597016547500004, 48.272879412899997 ], [ -121.573681599500006, 48.284673753200003 ], [ -121.556182769499998, 48.301317863100003 ], [ -121.555153906599998, 48.311333202900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000, "random": 99.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.615444107900004, 47.504820946599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000, "random": 104.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312488370500006, 47.516734821100002 ], [ -122.32119741, 47.52336099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000, "random": 91.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249348690100007, 47.397617755600002 ], [ -122.249430835300004, 47.412208168699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300, "random": 46.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.854497924100002, 47.174925353799999 ], [ -120.850297723400004, 47.1752256328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000, "random": 95.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212564099800005, 47.921590993700001 ], [ -122.208424345899999, 47.919513115699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200, "random": 17.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.826291358800006, 46.757455186599998 ], [ -120.812730530799996, 46.750683834500002 ], [ -120.7884944778, 46.748308334100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100, "random": 158.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190996790900002, 47.980424217200003 ], [ -122.188574241400005, 47.980730406600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300, "random": 117.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.223043156099997 ], [ -117.073002491599993, 47.224069194400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100, "random": 46.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385537422400006, 45.579732123100001 ], [ -122.377695820100001, 45.580622760200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000, "random": 142.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.635694855799997, 47.565040098799997 ], [ -122.632929343599997, 47.565033362400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000, "random": 53.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215305772199997, 47.449957293700002 ], [ -122.217875041900001, 47.467115633500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": null, "random": 133.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.933656759300007, 48.052435164 ], [ -119.945798684500005, 48.0554741634 ], [ -119.959613368299998, 48.075767125200002 ], [ -120.006912248399999, 48.074198118 ], [ -120.023280871599994, 48.097388932699999 ], [ -120.010172526199995, 48.107961368700003 ], [ -120.011146644799993, 48.125285978500003 ], [ -120.004345499, 48.130411721 ], [ -120.008260941800003, 48.136621045399998 ], [ -120.042387539700002, 48.14314282 ], [ -120.066499598600004, 48.1555692556 ], [ -120.093399640200005, 48.181107116699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500, "random": 124.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483953405400001, 46.795471160200002 ], [ -118.394400316399995, 46.794857809699998 ], [ -118.377736913700005, 46.778042339700001 ], [ -118.363530173599997, 46.776225738299999 ], [ -118.318941215600006, 46.758863934899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000, "random": 7.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.925161936600006, 48.557993926 ], [ -117.936550431100002, 48.566794575300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000, "random": 88.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208930873499995, 47.809437448499999 ], [ -122.207231988299995, 47.8094477645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400, "random": 107.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908323311199993, 46.144437382500001 ], [ -122.907560117399996, 46.1465486719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000, "random": 35.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689141188199997, 47.683932213600002 ], [ -122.686912074800006, 47.693288397400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920, "random": 92.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.310434832400006, 46.756377710499997 ], [ -118.308445228899998, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500, "random": 102.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039537514299994, 48.183976228399999 ], [ -117.039552860800001, 48.182953896900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000, "random": 113.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.368678888199995, 47.115004149199997 ], [ -118.360231664899999, 47.1201988782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600, "random": 198.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.534078826600002 ], [ -121.778499806, 46.533836540800003 ], [ -121.757849323299993, 46.538880423400002 ], [ -121.735491287399995, 46.552653248200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000, "random": 58.095 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433966807700003, 47.206401298899998 ], [ -122.433972606799998, 47.207413103199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400, "random": 34.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.048710915699999, 46.7291966819 ], [ -119.086822704300005, 46.7395693677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": null, "random": 57.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.055065723799999 ], [ -119.857595908, 48.073214422600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000, "random": 69.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284409614099999, 48.3059359445 ], [ -117.283901925600006, 48.305182219599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000, "random": 24.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174164814199997, 46.737912873399999 ], [ -117.172787934200002, 46.739769734200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": null, "random": 113.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.974790843500003, 47.8173888452 ], [ -119.958056924499999, 47.85237627 ], [ -119.932979261400007, 47.858485205800001 ], [ -119.920256300700004, 47.873118329500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400, "random": 183.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.141047318800005, 47.664764855599998 ], [ -118.141127255200004, 47.703250923100001 ], [ -118.150278550199999, 47.711075863600001 ], [ -118.152428712399995, 47.722723446300002 ], [ -118.170377575200007, 47.7449382474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": null, "random": 45.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256687638100004, 47.112363657 ], [ -119.256713113299995, 47.116471302199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": null, "random": 162.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.323551961700005, 47.161804575200001 ], [ -119.329880551900004, 47.173255506899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000, "random": 83.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242300813300005, 48.238812016799997 ], [ -122.240777442300001, 48.238810643900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380, "random": 59.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.701864316499993, 48.078607276 ], [ -122.701618611800001, 48.085962439600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000, "random": 148.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341327669500004, 47.821450980100003 ], [ -122.335881339400004, 47.821450872100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000, "random": 77.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.303302551300007, 47.159893548299998 ], [ -118.292877678, 47.167144058600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": null, "random": 159.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.738029801699994, 47.162025528500003 ], [ -119.725560926300005, 47.169794972399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600, "random": 95.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.370628562199997 ], [ -124.053203924, 46.3755642012 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400, "random": 150.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364992514899996, 45.997101925700001 ], [ -122.400432161099999, 45.996368779400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000, "random": 193.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248800093100002, 47.205358269500003 ], [ -122.247035195199999, 47.223914254900002 ], [ -122.254672479700005, 47.242503585599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600, "random": 65.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.689663011899995, 48.0306013366 ], [ -122.691035371, 48.051247552699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000, "random": 199.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263980777200004, 47.675082619299999 ], [ -122.263567333599994, 47.675734394599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500, "random": 185.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.914222778500005, 46.056575632600001 ], [ -118.907596618699998, 46.056201396299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000, "random": 78.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.113857708300003 ], [ -123.420014403099998, 48.114684685299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790, "random": 20.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.644329631700003, 48.5973721967 ], [ -118.631443151499994, 48.596023515600002 ], [ -118.567910825799999, 48.6153465501 ], [ -118.565952585, 48.612231788300001 ], [ -118.544543882100001, 48.611507833200001 ], [ -118.527591791500001, 48.597047814 ], [ -118.513711910400005, 48.595243222 ], [ -118.509752482, 48.597062377599997 ], [ -118.515545926900003, 48.599558024 ], [ -118.512743502, 48.603296746799998 ], [ -118.478274150499999, 48.607220431099996 ], [ -118.458550925599994, 48.6047398165 ], [ -118.466097377200001, 48.608220733800003 ], [ -118.466188894300004, 48.612117931900002 ], [ -118.444458355199998, 48.611307733899999 ], [ -118.441765153199995, 48.629936669899998 ], [ -118.432870114099998, 48.621829994099997 ], [ -118.419859738499994, 48.624682760600002 ], [ -118.403671908899994, 48.621080540500003 ], [ -118.346492019799996, 48.597342514300003 ], [ -118.3089665113, 48.5891488571 ], [ -118.293268038899996, 48.579172332500001 ], [ -118.248791252700002, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000, "random": 23.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341074642799995, 48.435897211 ], [ -122.339797739, 48.435892029900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000, "random": 51.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286436785199996, 47.054106290100002 ], [ -123.275767478500001, 47.053812293299998 ], [ -123.261700467200001, 47.044745902300001 ], [ -123.251203279099997, 47.045282316300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600, "random": 36.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.584339470700002, 46.296193138699998 ], [ -118.564229176599994, 46.296122949599997 ], [ -118.552650364499996, 46.2885666946 ], [ -118.533822775700003, 46.290820586400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000, "random": 176.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.152082744599994, 47.701179935 ], [ -117.133293255400005, 47.7045387135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000, "random": 150.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.723272356499997 ], [ -117.144376428, 46.7217073773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000, "random": 174.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349645452600001, 48.006891476200003 ], [ -117.349664889600007, 48.017722257899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000, "random": 189.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501840835400003, 45.672127572199997 ], [ -122.488599286099998, 45.671834034299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420, "random": 105.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.372622271500006, 46.147436197 ], [ -118.384336109200007, 46.173192444400001 ], [ -118.381582691, 46.197844069299997 ], [ -118.393251195399998, 46.216571464300003 ], [ -118.369596328300005, 46.237150703300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400, "random": 182.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265450775100007, 46.869141366299999 ], [ -122.274121317300001, 46.876869981699997 ], [ -122.297828366700003, 46.874006170800001 ], [ -122.302654463400003, 46.878201674899998 ], [ -122.300696449699998, 46.885655934600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630, "random": 52.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.693699750099995, 48.906634052 ], [ -121.695932072600002, 48.9034555044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000, "random": 25.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730318212399993, 46.682339102299999 ], [ -123.729453772900001, 46.683375648199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600, "random": 111.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225111655199996, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.232841557300006, 48.603029983600003 ], [ -122.2181484826, 48.626466917400002 ], [ -122.212974645499997, 48.652713438100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000, "random": 90.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207007235500001, 47.904960629900003 ], [ -122.207060034, 47.907289321699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000, "random": 62.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.259303365400001, 47.257024668299998 ], [ -122.260742998300003, 47.268899057500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": null, "random": 109.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853456536899998, 47.190478665500002 ], [ -119.853410503099994, 47.219448708199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600, "random": 88.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885683715900001, 47.987020464300002 ], [ -122.884773839800005, 47.985575900699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000, "random": 110.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709777343400006, 47.632488696099998 ], [ -122.705059787699994, 47.643361435599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000, "random": 30.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.010921804399999, 46.169143498300002 ], [ -123.004795632699995, 46.1661237024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000, "random": 9.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552555247699999, 45.677831341699999 ], [ -122.552151748699998, 45.68208727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810, "random": 55.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.036809172100007, 46.397406746599998 ], [ -123.027368158599998, 46.4021888563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": null, "random": 151.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.610829685599995, 47.034561590700001 ], [ -120.608500123, 47.037484430200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000, "random": 90.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764636559600007, 47.052285571600002 ], [ -122.764951061299996, 47.043090291699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200, "random": 145.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.653194853800002 ], [ -118.157668452699994, 47.654046720899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000, "random": 164.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298504515100007, 47.39547624 ], [ -122.2947389534, 47.393602726300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000, "random": 163.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100990567899998, 47.208217873 ], [ -123.100278283400002, 47.211973236299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200, "random": 132.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.259072874500006, 45.559875325100002 ], [ -122.231353542799994, 45.561100054500002 ], [ -122.218554959100004, 45.566170939899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200, "random": 62.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907305875800006, 46.275376903 ], [ -122.907643551800007, 46.276932524700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": null, "random": 88.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.434715633099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300, "random": 42.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.733907703900002 ], [ -120.222795104200003, 45.742975333899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000, "random": 172.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.415017563099994, 48.001060961100002 ], [ -122.439416369699998, 48.0042427956 ], [ -122.454109795400001, 47.999610826900003 ], [ -122.461690018400006, 48.004296339200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200, "random": 73.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.205906906199999, 46.733752018300002 ], [ -117.201053661299994, 46.733760269299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000, "random": 56.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435054349400005, 47.083944887599998 ], [ -122.434931526, 47.097314452399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200, "random": 101.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356477484600006, 46.068884259900003 ], [ -118.356457815400006, 46.074867789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700, "random": 114.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953673774899997, 46.728946156100001 ], [ -122.953762576299994, 46.735381752099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000, "random": 74.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.853054034099998, 47.511870957699998 ], [ -121.8359319626, 47.513746622500001 ], [ -121.813496104400002, 47.4952951892 ], [ -121.802151302599995, 47.491269221700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100, "random": 35.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194201973800006, 46.765336616 ], [ -122.253935509900003, 46.785385082700003 ], [ -122.275474118700004, 46.799962383299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400, "random": 147.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511892241799998, 46.626064118499997 ], [ -120.511892390300005, 46.626211773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000, "random": 18.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.901294042700002, 46.153556146900002 ], [ -122.903046981700001, 46.1632969984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000, "random": 165.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.193721204799999, 46.733421816300002 ], [ -117.1864957616, 46.7314771721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600, "random": 136.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.474010406100007, 48.644148752900001 ], [ -119.468087418600007, 48.652635510300001 ], [ -119.472001648900005, 48.658440658 ], [ -119.470238379099996, 48.672824975600001 ], [ -119.450386834699998, 48.694933143299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400, "random": 115.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432670010899997, 47.298060625799998 ], [ -122.434434259, 47.2999575945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000, "random": 19.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813204082300004, 46.976649580699998 ], [ -123.814395560500003, 46.976034897300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000, "random": 172.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329103704700003, 47.746905411100002 ], [ -122.329330637, 47.750282030299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700, "random": 186.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.458839821599994, 46.542296331800003 ], [ -122.443120517500006, 46.542618453499998 ], [ -122.3866181203, 46.532630198900002 ], [ -122.366339486800001, 46.541955119599997 ], [ -122.343352711400001, 46.5461871073 ], [ -122.327708489599999, 46.544720647200002 ], [ -122.304327892, 46.5536935513 ], [ -122.284059821300005, 46.552903539500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000, "random": 83.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.816531071200004, 47.861761082 ], [ -121.797381755900005, 47.865036690099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000, "random": 49.253 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666431452599994, 45.628936169200003 ], [ -122.662273975700003, 45.6359541769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600, "random": 16.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.472295554799999, 47.762035526699997 ], [ -121.447920831, 47.746246104800001 ], [ -121.397646104299994, 47.727042968200003 ], [ -121.373545979, 47.711839309699997 ], [ -121.361024243299994, 47.711537211500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": null, "random": 5.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263371855399996, 47.638306306200001 ], [ -119.273375543499995, 47.674324566800003 ], [ -119.261594314800007, 47.714929188100001 ], [ -119.223094233400005, 47.750173504599999 ], [ -119.184373336299998, 47.7994133674 ], [ -119.137777039400007, 47.8249299577 ], [ -119.092601985599998, 47.868149586400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000, "random": 21.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266329677599998, 47.4869149652 ], [ -122.264866090300004, 47.491703250199997 ], [ -122.278134291900002, 47.503810530099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000, "random": 67.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486045841800006, 48.807775980499997 ], [ -122.4860064346, 48.811532211399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900, "random": 118.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.279490163099993, 47.717187422099997 ], [ -121.268427383299993, 47.714650480099998 ], [ -121.231444571599994, 47.718151091199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400, "random": 156.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045511900500003, 46.405807141300002 ], [ -117.045556290500002, 46.407257511799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130, "random": 123.388 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.547293361499996, 46.809731403400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000, "random": 179.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200, "random": 118.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885677573400002, 47.456866807899999 ], [ -123.911596226900002, 47.459380444499999 ], [ -123.923859645, 47.469176691500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800, "random": 141.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.488599286099998, 45.671834034299998 ], [ -122.4838115389, 45.669601332299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740, "random": 35.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.879828308199997 ], [ -118.602961059799995, 48.883680658899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700, "random": 56.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.168613105199995, 48.592225908400003 ], [ -118.1487240923, 48.588179482699999 ], [ -118.138547334500004, 48.605885063599999 ], [ -118.138157565900002, 48.616784387099997 ], [ -118.122722282300003, 48.627437196700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400, "random": 187.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.368204376800001 ], [ -117.055900839800003, 46.375029719799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000, "random": 168.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326823310600005, 47.455452040200001 ], [ -122.331248711399994, 47.4630152497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": null, "random": 24.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.699642433800001 ], [ -119.813493301400001, 47.703398905199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000, "random": 186.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298400040499999, 47.810449784 ], [ -122.282439766699994, 47.818971508799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000, "random": 19.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634901901099994, 47.541423549599998 ], [ -122.631275782100005, 47.542736967899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000, "random": 120.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428034605899995, 47.2286568082 ], [ -122.4318700022, 47.232465395200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000, "random": 134.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321705720500006, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600, "random": 35.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.371338407499998 ], [ -120.3200450577, 46.370271266899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000, "random": 47.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.103012937499997 ], [ -123.347335902300003, 48.1065914367 ], [ -123.323599047100004, 48.097567697800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500, "random": 6.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.683929235400001, 46.655606363499999 ], [ -123.682365185600005, 46.653719422899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000, "random": 119.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335313918300002, 48.3777532366 ], [ -122.3304605047, 48.395398995900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400, "random": 120.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.250397884899996, 47.489208102200003 ], [ -118.201298935500006, 47.530819933700002 ], [ -118.165389282600003, 47.5731302322 ], [ -118.162533537300007, 47.628203114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800, "random": 141.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189552282899996, 47.981753639600001 ], [ -122.188026520700006, 47.981696082200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400, "random": 74.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.990869454199995, 46.314935954600003 ], [ -117.976232691199996, 46.321695543899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500, "random": 94.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.006329476299996, 46.597462697399997 ], [ -119.0062862284, 46.665049294699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000, "random": 153.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.070683973300007, 47.656083693600003 ], [ -122.062691487199999, 47.656513354700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000, "random": 158.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.521601558199997 ], [ -121.956100259400003, 46.526670455900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900, "random": 13.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.299917084200004, 46.570027498100004 ], [ -123.298782994500002, 46.570037575500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800, "random": 167.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048155407699994, 48.1858130018 ], [ -117.046821640499999, 48.184334389599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000, "random": 66.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.592477569499998 ], [ -122.629176730099999, 47.602542402200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000, "random": 30.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570935883800004, 45.608022223200003 ], [ -122.567523710399996, 45.607301340100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000, "random": 152.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.684438964799995, 47.569585520099999 ], [ -122.683470598300005, 47.569596387099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000, "random": 198.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310957498199997, 47.8036768463 ], [ -122.298400040499999, 47.810449784 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900, "random": 137.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.754702693599995, 49.000477059600001 ], [ -122.7560316167, 49.002105786900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000, "random": 193.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.623147673700004, 46.247388389100003 ], [ -119.561988090200003, 46.266925669499997 ], [ -119.543004641899998, 46.265484455600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000, "random": 128.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.964206655200002, 46.175219826899998 ], [ -118.944422024100007, 46.160754929299998 ], [ -118.938095491400006, 46.145703599800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000, "random": 199.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885748099899999, 46.980644841100002 ], [ -123.887405132300003, 46.979481806199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000, "random": 182.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.151355371900003 ], [ -122.966420914300002, 46.148026853200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900, "random": 165.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.580670595800001, 46.885660649599998 ], [ -119.496037783899993, 46.867087036299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000, "random": 76.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228383378800004, 48.510483485499996 ], [ -122.225707636699994, 48.510474068599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000, "random": 149.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234498646800006, 47.881930069399999 ], [ -122.231700448599995, 47.881947714100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100, "random": 25.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.298782994500002, 46.570037575500002 ], [ -123.297649161500004, 46.57004764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000, "random": 16.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159282954700004, 48.053711065500003 ], [ -122.143016176299994, 48.053691370700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400, "random": 140.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.602961059799995, 48.883680658899998 ], [ -118.596057866699994, 48.892923052900002 ], [ -118.570254226100005, 48.908147445300003 ], [ -118.565603363899996, 48.918246327399999 ], [ -118.567017040300001, 48.926835929200003 ], [ -118.554464131700001, 48.945234088900001 ], [ -118.547780080300001, 48.952897832600001 ], [ -118.535707589599994, 48.956689139600002 ], [ -118.535316050500001, 48.962720426399997 ], [ -118.527808847599999, 48.96466224 ], [ -118.527014819300007, 48.979270572300003 ], [ -118.508294435500005, 48.992025951599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400, "random": 102.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.893927695299993, 46.993141810700003 ], [ -123.89576752, 46.994894794300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000, "random": 10.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.027146233699995, 46.218717987399998 ], [ -119.005115164200006, 46.203549009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700, "random": 173.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.199146895600002 ], [ -121.959928208899996, 47.199071826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000, "random": 161.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658847900599994, 47.084419417699998 ], [ -122.648398392, 47.0870048504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000, "random": 172.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.831365726599998, 47.536963829199998 ], [ -121.818240268300002, 47.5195028025 ], [ -121.784766034599997, 47.497869259700003 ], [ -121.787286583799997, 47.495120452199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910, "random": 27.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266717231599998, 46.865519286100003 ], [ -122.265443253900003, 46.866803346399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400, "random": 8.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140333593799994, 47.407055777499998 ], [ -123.140658202300003, 47.4063958443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300, "random": 62.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.169614650900002, 47.114894477900002 ], [ -124.170179750499997, 47.117562055400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": null, "random": 141.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985030158399994, 47.962080118599999 ], [ -118.979586832799995, 47.9655777499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100, "random": 15.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.084256158399995, 48.270597111900003 ], [ -120.054381129099994, 48.302216498900002 ], [ -120.052332428699998, 48.311117559499998 ], [ -120.054159302100004, 48.318300484799998 ], [ -120.073517983399995, 48.341795184600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000, "random": 126.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106841988200003, 47.568936548499998 ], [ -122.089028105400004, 47.559338976900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000, "random": 52.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.306701697199998 ], [ -122.003392430700004, 47.308701873099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": null, "random": 99.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540464836200002, 47.301657132800003 ], [ -119.511083533299995, 47.289512866899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000, "random": 102.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.688866910499996, 47.850447619400001 ], [ -121.685113262599998, 47.848515193700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": null, "random": 57.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.997062663899996, 47.839282063399999 ], [ -119.988693195, 47.831858359400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800, "random": 135.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.719695223200006, 46.918530600899999 ], [ -123.719926339799997, 46.929127072 ], [ -123.725596944599999, 46.934066637199997 ], [ -123.7341821694, 46.934487670800003 ], [ -123.765640039800005, 46.951272514899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000, "random": 70.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.192734459500002 ], [ -122.233798993899995, 47.191531117499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600, "random": 112.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.568033511899998 ], [ -122.251829467700006, 46.576354116499999 ], [ -122.242171044399996, 46.589172878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000, "random": 49.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.401167823799994, 47.574689448299999 ], [ -117.403113814, 47.587377182499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100, "random": 86.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.374466812500003, 47.612938518100002 ], [ -124.387585093300004, 47.658327919599998 ], [ -124.399384164400004, 47.675181022899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100, "random": 178.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396824529400007, 47.527430858599999 ], [ -117.400467428400006, 47.536405350400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000, "random": 56.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322886246899998, 47.8212957342 ], [ -122.3176863857, 47.821213939400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000, "random": 28.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900246505499993, 46.280731519100001 ], [ -122.906720867399997, 46.292249626500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000, "random": 62.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.660981036599999 ], [ -117.411184230499998, 47.664084168199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100, "random": 145.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.120364078199998, 46.665071150400003 ], [ -121.094687686200004, 46.667114901399998 ], [ -121.069524709099994, 46.677030287400001 ], [ -121.031274976600002, 46.672351954299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 19.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.289590062100004, 47.406038896399998 ], [ -120.287327632, 47.3995120011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400, "random": 128.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.045574354799996, 46.418180045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000, "random": 35.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219199176399997, 47.467699012399997 ], [ -122.204514745, 47.471240198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000, "random": 107.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675936023800006, 47.659448765 ], [ -122.679523123400003, 47.662857905 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": null, "random": 89.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.281561717599999, 47.129753712599999 ], [ -119.279016421, 47.131032577399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000, "random": 111.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581291760599996, 48.852425293 ], [ -122.584121356599994, 48.855268045400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300, "random": 156.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.839874060100001, 46.576032654499997 ], [ -122.783631913299999, 46.577250301799999 ], [ -122.740483576499997, 46.571200670099998 ], [ -122.719415844599993, 46.5756303426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600, "random": 189.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.814031488599994, 46.438120687500003 ], [ -122.803768033799997, 46.438116363900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000, "random": 27.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474034679799999, 46.531778940899997 ], [ -120.473632489099998, 46.539386031900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100, "random": 185.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.875069146900003, 46.241169451399998 ], [ -123.908889928299999, 46.24591744 ], [ -123.923083369699995, 46.253659694200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000, "random": 112.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.683738198399993, 47.566162133 ], [ -117.682656430799994, 47.567672217800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700, "random": 108.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005822603200002, 46.322037676800001 ], [ -124.005530761800003, 46.330932774300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000, "random": 36.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.658745078699994, 46.039408490699998 ], [ -118.618376446799999, 46.052427601799998 ], [ -118.590318347099995, 46.056768336099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": null, "random": 66.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.274000198099998, 47.133551295499998 ], [ -119.268238731400004, 47.136438738800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100, "random": 116.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.368059892399998, 46.302762493400003 ], [ -119.359215874499995, 46.303838941599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000, "random": 65.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528456185699994, 48.412367485300003 ], [ -119.513846497499998, 48.416820343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000, "random": 98.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.877917606599993, 47.669492940399998 ], [ -117.876637564500001, 47.669509908499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400, "random": 165.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380348873100004, 47.809725424200003 ], [ -122.380263885800005, 47.805983955499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000, "random": 96.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320209480599999, 47.679544030400002 ], [ -122.319748079199996, 47.681633366299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900, "random": 42.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485239836199995, 48.668069469099997 ], [ -122.487987734300006, 48.674750813800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000, "random": 104.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314996101099993, 46.382480047800001 ], [ -120.315006217600001, 46.380740113900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000, "random": 104.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.542815102200002 ], [ -122.334359019499999, 47.548548451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": null, "random": 59.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.858794341600003, 47.233334252200002 ], [ -119.854827819899995, 47.23342187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900, "random": 187.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.948955028699999, 46.845376988700004 ], [ -120.9198054238, 46.8088624381 ], [ -120.873089680800007, 46.791110633800002 ], [ -120.852016458, 46.772953741800002 ], [ -120.828010115799998, 46.764664162899997 ], [ -120.829623844899999, 46.7598306382 ], [ -120.826291358800006, 46.757455186599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800, "random": 184.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.089481469800006, 46.794082912 ], [ -124.091057119300004, 46.798829385600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000, "random": 47.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550990690500001, 45.6012653728 ], [ -122.552815713100003, 45.612150505899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000, "random": 33.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125415966899993, 47.358062176499999 ], [ -122.119955079299999, 47.3581151088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000, "random": 193.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313809808800002, 47.204468161800001 ], [ -122.3082844841, 47.202410391199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200, "random": 19.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.750392393200002 ], [ -124.318117613599995, 47.758716167599999 ], [ -124.285558002900004, 47.772692314099999 ], [ -124.275994782500007, 47.782098248799997 ], [ -124.253015192299998, 47.782266314099999 ], [ -124.249513006599997, 47.788139217900003 ], [ -124.252147575799995, 47.798129800600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200, "random": 163.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.345364542299997 ], [ -124.054761731100001, 46.345935959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000, "random": 181.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044267114199997, 46.4171675734 ], [ -117.041806177799998, 46.4188762721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200, "random": 6.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043384833600001, 46.308854520300002 ], [ -124.043382483900004, 46.311738539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000, "random": 83.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.098636280500003, 47.712113508 ], [ -117.068928025899993, 47.724161605600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000, "random": 143.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.123153926599997, 48.073268084699997 ], [ -123.108662332099996, 48.0731296075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400, "random": 101.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.674446665399998 ], [ -122.12152933, 47.673893233500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260, "random": 85.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.717799358099995, 47.855788432600001 ], [ -118.724477231099996, 47.865725622799999 ], [ -118.726298887200002, 47.861651810200001 ], [ -118.726665692300003, 47.866288751 ], [ -118.719381634300007, 47.872965003700003 ], [ -118.708130171, 47.8753570306 ], [ -118.718790448799993, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.695278346600006, 47.904651593 ], [ -118.697462099600003, 47.9153870731 ], [ -118.689698978, 47.918831830899997 ], [ -118.689657366199995, 47.926800027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000, "random": 99.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293853606100001, 47.205180808400002 ], [ -122.293910744200005, 47.206571607400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000, "random": 122.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.935795755699999, 46.138481177499997 ], [ -118.929965198399998, 46.123441249599999 ], [ -118.912557676899993, 46.099909023800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": null, "random": 116.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.661540138700005, 47.596128795299997 ], [ -120.657240849299995, 47.598358932399996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000, "random": 23.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292399687100001, 47.731803153800001 ], [ -122.292458623200005, 47.733778690400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000, "random": 36.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.075175116500006, 47.919765200500002 ], [ -122.066163770700001, 47.914320767100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000, "random": 93.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.975211354699994, 46.7336230278 ], [ -123.009632193300007, 46.792990391499998 ], [ -123.0095031858, 46.798359712500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000, "random": 62.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.235275246399993, 48.510504468 ], [ -122.233958638399997, 48.510507948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800, "random": 148.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.408008438600007, 45.611584036899998 ], [ -122.407719966299993, 45.610616827199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300, "random": 144.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242171044399996, 46.589172878 ], [ -122.234256123899996, 46.599102378600001 ], [ -122.228913431099997, 46.619556014600001 ], [ -122.212368657499994, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.196027513399997, 46.678830972900002 ], [ -122.199475948699998, 46.704274646099996 ], [ -122.219318060700004, 46.725100626600003 ], [ -122.207953888600002, 46.733543559700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000, "random": 172.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.692446627600006, 47.852294339899998 ], [ -121.688866910499996, 47.850447619400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100, "random": 118.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.975040301799993, 46.404702300399997 ], [ -122.969891123699995, 46.401938255399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000, "random": 97.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.893429722299999, 46.5484187108 ], [ -123.916177315300004, 46.573512981199997 ], [ -123.919376863899998, 46.599048486299999 ], [ -123.914218501299999, 46.614399492899999 ], [ -123.923164002700005, 46.626471825499998 ], [ -123.919501275299993, 46.6405634658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800, "random": 44.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.459574139699995, 48.110067689200001 ], [ -123.444992339600006, 48.122498577499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000, "random": 137.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335377560200001, 47.251222220400003 ], [ -122.335522585199996, 47.2647220072 ], [ -122.322068257, 47.282622666400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700, "random": 166.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.439813485299993, 48.704571899400001 ], [ -119.438928498500005, 48.705561124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200, "random": 80.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.132279748499997 ], [ -117.243020091899993, 47.135105077299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500, "random": 58.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.086847589599998, 46.789299463299997 ], [ -124.089481469800006, 46.794082912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": null, "random": 22.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.306162506899994, 47.100752626800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000, "random": 131.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121769870700007, 47.994857270600001 ], [ -122.112692130300005, 48.000211144399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400, "random": 114.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.141418465699999, 47.506199375599998 ], [ -122.124828016699993, 47.500840259100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000, "random": 185.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.135129008199996, 47.640071799 ], [ -122.137740144700004, 47.653882365299999 ], [ -122.134945908, 47.661054174599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100, "random": 18.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.971224907800007, 46.509867260900002 ], [ -117.948634125400005, 46.5101973652 ], [ -117.933378364199996, 46.5226592223 ], [ -117.890691547499998, 46.545066264699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000, "random": 177.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.530963991599997 ], [ -121.971946803199998, 47.535619038900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520, "random": 180.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.581639639900004, 47.917669780399997 ], [ -124.5903548008, 47.917783212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900, "random": 67.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.352607275099999, 46.656816854 ], [ -121.341432663, 46.659413473699999 ], [ -121.338596938600006, 46.655945921399997 ], [ -121.309273345899996, 46.656902899599999 ], [ -121.280773722600003, 46.650732321299998 ], [ -121.272090374599998, 46.6447841556 ], [ -121.178513834300006, 46.644438357799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900, "random": 136.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.699941006700001, 45.923000308 ], [ -120.6965690225, 45.932484254899997 ], [ -120.658347041699997, 45.956264141699997 ], [ -120.653767463600005, 45.964120995199998 ], [ -120.653819625300002, 45.9965615172 ], [ -120.6409423299, 46.006740966400002 ], [ -120.640247159599994, 46.015923189900001 ], [ -120.622499665700005, 46.027136071699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000, "random": 194.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000, "random": 114.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295419811299993, 47.434556835099997 ], [ -122.295851618399993, 47.440464837699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000, "random": 192.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475223036800003, 46.251686108599998 ], [ -119.476190246800002, 46.2572390375 ], [ -119.487123072399996, 46.257906344299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": null, "random": 126.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.588995856500006, 47.556839945100002 ], [ -120.587783032100006, 47.556146923299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870, "random": 8.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.358835633699996 ], [ -124.448179424100005, 48.316370943300001 ], [ -124.441553728, 48.308745064500002 ], [ -124.417037992100006, 48.3016446894 ], [ -124.393930611299993, 48.286981512200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000, "random": 98.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294762770600002, 47.059261084699997 ], [ -122.294065221799997, 47.077717873200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": null, "random": 143.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201790951899994, 47.873417739399997 ], [ -120.201226112499995, 47.874421860799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900, "random": 151.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.649269084400004, 46.944496517399998 ], [ -123.619259354600004, 46.946597392800001 ], [ -123.603235701700001, 46.958887734199998 ], [ -123.604161349699993, 46.966113391699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 132.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320670922800005, 47.431977706799998 ], [ -120.312829956300007, 47.422532371700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500, "random": 150.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.736603192399997, 45.698763389600003 ], [ -121.705405211400006, 45.699214593699999 ], [ -121.675943883100004, 45.709975587899997 ], [ -121.660410934200002, 45.709731907399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200, "random": 133.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.383026138199995, 46.204013241799998 ], [ -123.382101974199998, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000, "random": 149.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347032287700003, 47.6426862378 ], [ -122.347331628500001, 47.652771084299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": null, "random": 132.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.155404306899996, 47.884345211400003 ], [ -120.151117993100002, 47.883422456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200, "random": 165.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436279972099996, 48.948557349799998 ], [ -119.436673530199997, 48.948907181300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000, "random": 37.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295977065599999, 47.161081479099998 ], [ -122.297846414, 47.161450810200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400, "random": 128.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715379481699998, 48.208231873599999 ], [ -117.715450652900003, 48.269998491800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000, "random": 19.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545044147900001, 47.770388726599997 ], [ -117.543956415300002, 47.777004347499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200, "random": 30.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.359215874499995, 46.303838941599999 ], [ -119.347277198399993, 46.300384193100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000, "random": 36.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184727787599996, 48.095997776300003 ], [ -122.1847725776, 48.105912285800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": null, "random": 180.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.546840635600006, 47.103900780899998 ], [ -119.455945538500004, 47.103975955400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600, "random": 156.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.203516548099998, 46.708001321 ], [ -117.202704700200002, 46.709013116400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000, "random": 48.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.552765544699994, 45.7037149254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000, "random": 41.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.285830725700002 ], [ -122.8997031408, 46.286789132300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500, "random": 173.461 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.290235887100003 ], [ -124.056046583300002, 46.289125868100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800, "random": 7.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485346572799997, 46.534276731799999 ], [ -122.475498549, 46.5361010556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500, "random": 117.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.709438419799994, 46.677684145400001 ], [ -123.703899168600003, 46.675045581699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300, "random": 198.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.861432180899996, 46.652330978 ], [ -118.852401448600006, 46.651074980200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000, "random": 21.579 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692795812699998, 47.661573015 ], [ -122.688031643100004, 47.664446406 ], [ -122.688240011299996, 47.669276652599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200, "random": 88.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.666904292400005, 47.098835126799997 ], [ -118.665300448500005, 47.116167762400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000, "random": 109.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675931461600001, 47.541411500599999 ], [ -122.674891777200003, 47.544020254700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000, "random": 98.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.301686665199995, 47.301951192600001 ], [ -121.291613470800002, 47.299067816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600, "random": 79.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.444658126500002 ], [ -122.847864650800005, 46.442898255599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800, "random": 85.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.178138580500004, 46.728901855700002 ], [ -117.176904797399999, 46.729513769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": null, "random": 118.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.955039408800005, 46.881056224 ], [ -119.946533330600005, 46.912385824099999 ], [ -119.956933746399997, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700, "random": 17.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.603542558200004, 46.528545867399998 ], [ -122.595569385700003, 46.5253458249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000, "random": 68.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223601115799994, 47.800389682400002 ], [ -122.231502126300001, 47.8140192332 ], [ -122.256407739500006, 47.828138808399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000, "random": 55.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.821463436599998 ], [ -122.341327669500004, 47.821450980100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000, "random": 75.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916349545399996, 47.639117271 ], [ -121.910259396399994, 47.659120641800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100, "random": 80.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.052535915500002, 46.466597142 ], [ -124.052470810800003, 46.468177250499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000, "random": 95.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.970772608100006, 47.857093264699998 ], [ -121.970344695, 47.859287672699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000, "random": 47.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.356549436099996, 47.722576938800003 ], [ -117.354923516100001, 47.7296515994 ], [ -117.360673813700004, 47.739238645100002 ], [ -117.359198299200003, 47.750275475499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": null, "random": 90.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.132821385499994, 47.418328842900003 ], [ -119.106952077800003, 47.402903720600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000, "random": 5.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.347277198399993, 46.300384193100001 ], [ -119.337027626799994, 46.296916328499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000, "random": 56.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961493482099996, 48.050293977400003 ], [ -122.950720210599997, 48.050275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300, "random": 54.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.363333971200007, 46.1950290192 ], [ -123.354448297499999, 46.187236830899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520, "random": 170.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256087151599999, 47.483856851399999 ], [ -118.254686200500004, 47.485610696400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700, "random": 180.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.359094590200002, 46.932385889400003 ], [ -121.305830498800006, 46.952091588800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700, "random": 81.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965112893599994, 48.524065543100001 ], [ -121.930126868499997, 48.526423975199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000, "random": 77.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.976871810800006, 46.656330602 ], [ -122.979941061399998, 46.666273563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650, "random": 66.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.034530523800001, 46.549222742 ], [ -124.037800322899997, 46.549187373599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": null, "random": 48.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.292841949500001, 47.615724197299997 ], [ -119.288231320899996, 47.617049865200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400, "random": 69.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.229044672699999, 47.802095034499999 ], [ -117.212868834600002, 47.8047418564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000, "random": 121.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121619318300006, 47.675441060799997 ], [ -122.121605019, 47.674446665399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000, "random": 41.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507145410299998, 47.643066968100001 ], [ -117.489974820499995, 47.637797794500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000, "random": 167.776 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.015518639700005, 46.171407070599997 ], [ -123.010921804399999, 46.169143498300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300, "random": 194.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323440946900007, 48.920195971799998 ], [ -122.321912505200004, 48.920192245499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900, "random": 65.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.074160424799999, 47.489790063500003 ], [ -123.0798887479, 47.4834193437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100, "random": 161.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.514228560500001, 45.8854969434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000, "random": 47.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498918855499994, 47.150179615500001 ], [ -122.483975944600004, 47.158948731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500, "random": 47.627 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475337364799998, 46.862537997 ], [ -119.453286095699994, 46.8561637408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000, "random": 57.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.830253409099996, 47.446511538899998 ], [ -122.826922042899994, 47.451325656100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000, "random": 124.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048376727199994, 47.695688856099999 ], [ -117.041702596700006, 47.696631789500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000, "random": 180.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.410853660100003, 47.751319912500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500, "random": 164.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.624899490399997, 47.844751263399999 ], [ -117.641565621, 47.853127625799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000, "random": 175.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463797409400001, 48.749722479 ], [ -122.462212289700005, 48.753686761700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000, "random": 74.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202404855500006, 47.3748567353 ], [ -122.202208686600002, 47.3993044634 ], [ -122.197170263199993, 47.403363690100001 ], [ -122.197056867599997, 47.413407153100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000, "random": 7.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.192866507600002, 45.6576560325 ], [ -121.1823283839, 45.649040017399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000, "random": 136.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.367307089600004, 47.8179585281 ], [ -122.366358296100003, 47.821482107900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100, "random": 118.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.993152412800001, 47.222746832 ], [ -120.994043556799994, 47.223727202900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000, "random": 96.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.714824595300001 ], [ -122.475189450900004, 48.714396165799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": null, "random": 178.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.177412450299997, 47.092857525399999 ], [ -119.16309152, 47.091568875699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000, "random": 23.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.480684650599997 ], [ -122.335443671899995, 48.490275393399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900, "random": 140.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.823931182699994, 45.699442413 ], [ -120.824585887400005, 45.698633973100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200, "random": 27.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075169820799999, 48.606899166200002 ], [ -118.078393723199994, 48.614926917699997 ], [ -118.071981789399999, 48.621449876299998 ], [ -118.076791396299996, 48.630228082800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100, "random": 89.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.033892636800005, 46.491529151400002 ], [ -124.0337063992, 46.492951732800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": null, "random": 18.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.982323996900007, 47.8274002482 ], [ -119.978618622599996, 47.826373309099999 ], [ -119.9835503921, 47.812666688500002 ], [ -119.9808716374, 47.813702714100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000, "random": 52.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740854975199994, 45.911170197300002 ], [ -122.740274834399997, 45.907107905300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900, "random": 66.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999084702600001, 46.301980308499999 ], [ -119.978187844399997, 46.302344182100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900, "random": 95.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133540258899998, 46.81166858 ], [ -119.048219812100001, 46.7995487771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": null, "random": 121.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.598554678200003, 47.251897161499997 ], [ -119.580225479500001, 47.271544972500003 ], [ -119.579814783499998, 47.2816012149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600, "random": 56.837 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.246165081599997, 46.327693020399998 ], [ -120.228797033399999, 46.322331888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200, "random": 83.232 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.942512646200001 ], [ -122.629242144599999, 45.941283986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000, "random": 20.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.010361091899995, 47.639842481800002 ], [ -121.998265185600005, 47.631397117100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000, "random": 113.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061969381500006, 47.547621303500001 ], [ -122.060931313500006, 47.548863751299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000, "random": 129.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332083917399999, 47.470421492500002 ], [ -122.328608609300005, 47.469981829600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400, "random": 102.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.929173544700006, 47.476353555300001 ], [ -123.933762918699998, 47.480111486299997 ], [ -123.9589950413, 47.480252005399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000, "random": 95.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052362381500004, 46.336389697 ], [ -117.048737936199998, 46.339771771499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400, "random": 153.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.994894794300002 ], [ -123.899165273, 46.997061728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800, "random": 10.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.856273262499997, 46.5369650839 ], [ -117.821799270900001, 46.524455646600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000, "random": 49.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960098434499997, 46.898463150700003 ], [ -122.946759334399999, 46.9213451432 ], [ -122.938989524299998, 46.947495190700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": null, "random": 131.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.773068226500001, 47.195996988600001 ], [ -120.760723422500007, 47.191786192800002 ], [ -120.733227393600004, 47.200510216200001 ], [ -120.718972574299997, 47.199367178300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500, "random": 194.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.258073011899995, 47.8098225751 ], [ -124.263804262199997, 47.8258077379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600, "random": 166.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.793487933899996, 46.665097873599997 ], [ -123.783180389699993, 46.669837987400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000, "random": 106.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.197447519799994, 47.522700233099997 ], [ -117.2106226505, 47.536636413300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000, "random": 93.836 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.826102687499997, 46.970061214099999 ], [ -123.815854623199996, 46.974060636499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100, "random": 6.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.171286162900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900, "random": 157.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.424404903500005, 45.650548964899997 ], [ -122.424463433100001, 45.643325581100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430, "random": 197.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.102769807900003, 46.9174522008 ], [ -117.086594622199996, 46.916693263299997 ], [ -117.087513180499997, 46.9125608238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000, "random": 125.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.772467209200002 ], [ -122.603242915400003, 47.777122210199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800, "random": 121.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.729215848800003 ], [ -121.520988362899999, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600, "random": 131.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.812254684899997 ], [ -122.380734713400003, 47.811839642700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000, "random": 155.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.735001393600001, 46.2109623873 ], [ -119.713434180099995, 46.219565023800001 ], [ -119.674690503500003, 46.223081242900001 ], [ -119.664788411299995, 46.231690929599999 ], [ -119.637867173299995, 46.241859079100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900, "random": 157.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.041806177799998, 46.4188762721 ], [ -117.039897904499995, 46.420186914399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500, "random": 139.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.600903624799997, 46.974749123099997 ], [ -123.600900171800006, 46.975635005400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200, "random": 68.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100111778499993, 47.212806620899997 ], [ -123.098450693100006, 47.215078872699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300, "random": 69.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.543770665700002 ], [ -117.393975486399995, 47.553421222099999 ], [ -117.401167823799994, 47.574689448299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000, "random": 123.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232988543600001, 47.151747261200001 ], [ -122.236666418599995, 47.1398909033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000, "random": 102.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.734957906099993, 48.990539037799998 ], [ -122.7349574112, 48.993987434899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000, "random": 8.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.199842588400003, 48.083854521500001 ], [ -123.172942795699996, 48.079452223799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000, "random": 98.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.895016053500001, 46.191009795500001 ], [ -122.887897361499995, 46.229024854899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900, "random": 21.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854307513099997, 46.898691382099997 ], [ -119.747707891900006, 46.898969608400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000, "random": 125.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651542756799998, 47.791613631499999 ], [ -122.649407823399997, 47.8021122484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000, "random": 60.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284519740799993, 47.924487110100003 ], [ -122.275846758, 47.922028224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000, "random": 182.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206790649300004, 47.897200912700001 ], [ -122.206818324099999, 47.898121112 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000, "random": 128.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.125470582199995, 47.6666303079 ], [ -117.111967994599993, 47.670190563299997 ], [ -117.103034504199996, 47.677801453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800, "random": 18.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134307384099998, 46.782398865099999 ], [ -119.134285547299996, 46.797073158700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000, "random": 22.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296589390400001, 47.169780002099998 ], [ -122.296698139599997, 47.176629062899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000, "random": 86.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344436500499995, 47.686959592599997 ], [ -122.344449168, 47.6905617273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000, "random": 93.883 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346368735499993, 46.060517989899999 ], [ -118.347086854799997, 46.061393464600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000, "random": 41.293 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213334177500002, 47.641671832699998 ], [ -122.209303932400005, 47.642807809799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000, "random": 125.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.154772907500003, 46.270129968399999 ], [ -118.153247686300006, 46.270134871800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000, "random": 63.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024690463699997, 46.4313046328 ], [ -119.024166969800007, 46.432556087099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000, "random": 42.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664524259399997, 45.6843405722 ], [ -122.663319481499997, 45.688951116799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000, "random": 85.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209358164500003, 47.758825033100003 ], [ -122.207429610299997, 47.758988673600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000, "random": 51.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.071866758699997, 47.091058025300001 ], [ -123.032670722299997, 47.085083518799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000, "random": 165.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.232206470199998 ], [ -119.038983233799996, 46.226914300700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000, "random": 41.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143304038899998, 47.665506429499999 ], [ -117.125470582199995, 47.6666303079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000, "random": 103.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.131475035900003 ], [ -122.970843132499994, 46.1276076543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000, "random": 26.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.943733583300002, 46.1159145 ], [ -122.930069412099996, 46.1160931581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000, "random": 116.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552765544699994, 45.7037149254 ], [ -122.552640114300004, 45.707988681499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": null, "random": 132.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.346173789399998, 47.470182604800002 ], [ -120.340586229600007, 47.468390233800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900, "random": 165.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.046821640499999, 48.184334389599996 ], [ -117.045447888599995, 48.184042304899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190, "random": 42.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.665300448500005, 47.116167762400003 ], [ -118.665095142699997, 47.130762764899998 ], [ -118.686528826499995, 47.131084059099997 ], [ -118.686887325499995, 47.152595293300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000, "random": 17.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.070578495899994, 46.818061401 ], [ -123.044564731899996, 46.803217081699998 ], [ -123.036791997400002, 46.802544382500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000, "random": 31.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632955459200005, 47.576988526599997 ], [ -122.631158803199995, 47.583273830499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000, "random": 47.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.389177909500006, 47.234445270199998 ], [ -122.346482993500004, 47.216109298900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200, "random": 38.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.678110354400005, 45.939490944399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000, "random": 70.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257239849399994, 47.8906887228 ], [ -122.248475669300007, 47.900072614400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800, "random": 157.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.389567766599995, 47.425001746699998 ], [ -117.385169842799996, 47.441644864700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000, "random": 189.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.416808021500003 ], [ -119.508623276099996, 48.416772673399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": null, "random": 25.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.558893640899996, 47.103882462800001 ], [ -119.546840635600006, 47.103900780899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700, "random": 184.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.650452046200002 ], [ -121.268768391600005, 48.673574506500003 ], [ -121.242891162899994, 48.674773404299998 ], [ -121.241787132300004, 48.684823235800003 ], [ -121.213387223400005, 48.699623839200001 ], [ -121.178856267599997, 48.704780591800002 ], [ -121.161546213700007, 48.711848967500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700, "random": 83.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141556500500002, 47.4513001292 ], [ -117.150006285, 47.471500643600002 ], [ -117.147371004899995, 47.490110618 ], [ -117.153421024300002, 47.495456488899997 ], [ -117.154349678100004, 47.505029488300003 ], [ -117.172934664699994, 47.508330293100002 ], [ -117.191148354299997, 47.518341588699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000, "random": 125.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321821318399998, 47.769655941800004 ], [ -122.316117804900003, 47.7897600047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540, "random": 51.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972667927700002, 47.309471964700002 ], [ -117.974348339900004, 47.316068813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800, "random": 91.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857643340400003, 46.429368113400002 ], [ -123.842250419799996, 46.411322035600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790, "random": 135.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.030679460200005, 46.532012021900002 ], [ -124.031138145499995, 46.546457236800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200, "random": 38.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428358999500006, 48.4448569455 ], [ -122.422067295399998, 48.442737456499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000, "random": 108.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191990948400004, 47.972673900899999 ], [ -122.190376081899998, 47.976893661600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000, "random": 177.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256407739500006, 47.828138808399999 ], [ -122.261565343100003, 47.831348407100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000, "random": 9.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.038967760700004, 46.420267917099999 ], [ -117.035943937699997, 46.420450428199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000, "random": 185.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.419929703899996, 47.244357102199999 ], [ -122.399809360899994, 47.247245078100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": null, "random": 167.082 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306162506899994, 47.100752626800002 ], [ -119.276011298399993, 47.102681285 ], [ -119.235963051599995, 47.098099812699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000, "random": 191.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651372136500001, 47.765032788399999 ], [ -122.650736343700004, 47.769589163600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000, "random": 171.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379453463499999, 47.274969727799999 ], [ -122.387307348500002, 47.278952222299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": null, "random": 191.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.338671784200002, 47.467239294 ], [ -120.337752153, 47.467994632100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000, "random": 83.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350617898799996, 47.943270476800002 ], [ -117.349574717300001, 47.970653730400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": null, "random": 106.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.823953648699998, 47.1032398754 ], [ -119.7595545426, 47.103450609399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": null, "random": 166.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.497304892800003, 47.424536612300003 ], [ -119.513907363200005, 47.458259009199999 ], [ -119.514748121300002, 47.484157015199997 ], [ -119.495956553100001, 47.526218889799999 ], [ -119.487752680499995, 47.534625173 ], [ -119.469831748700003, 47.542619719199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000, "random": 146.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.594120527599998, 47.5625995288 ], [ -117.593576416800005, 47.563948315899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900, "random": 111.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286645904300002, 47.055729321199998 ], [ -123.275437230099996, 47.055580731299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900, "random": 26.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.962763316100002 ], [ -118.564368032, 46.978427891599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000, "random": 187.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.543664555099994, 46.622677312599997 ], [ -120.538427603100004, 46.6224575094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500, "random": 97.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.560743450299995, 47.285298956 ], [ -122.559860193099993, 47.2754181914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000, "random": 8.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.487502730599999, 45.727786525 ], [ -121.506079833100003, 45.730967526800001 ], [ -121.512387064699993, 45.7354852032 ], [ -121.513886217199996, 45.742904109100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000, "random": 29.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.898255787099998, 46.144421575199999 ], [ -122.897437776, 46.144707728900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900, "random": 42.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.110834784900007, 46.868530839 ], [ -124.111600125, 46.885083233899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900, "random": 56.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.197786695199994, 47.203763312600003 ], [ -124.198122559400005, 47.209654990099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200, "random": 56.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309204530200006, 48.963860375199999 ], [ -122.288498891399996, 48.963997296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000, "random": 164.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322301403099999, 47.438774618899998 ], [ -122.320426351199998, 47.4439375555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000, "random": 95.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.468507851400005, 47.639029918699997 ], [ -117.447814221599998, 47.648093677200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000, "random": 178.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.790344373899998 ], [ -122.143430620900006, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300, "random": 133.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514138715399994, 47.305285326 ], [ -122.514153226100007, 47.305786013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000, "random": 117.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304949803200003, 47.644164856499998 ], [ -122.288654999200006, 47.644785095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660, "random": 60.346 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.052819214600007, 48.665559054600003 ], [ -118.024835520899998, 48.673690401 ], [ -118.015632408900004, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.024673985500002, 48.714996295 ], [ -118.042427928099997, 48.725869214299998 ], [ -118.049032637400003, 48.735909365300003 ], [ -118.044931377099999, 48.751377685199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900, "random": 9.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.440954132100003, 48.108110856800003 ], [ -123.432584160299996, 48.117319823400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600, "random": 130.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321748363099999, 48.934759017 ], [ -122.320919167699998, 48.943809498299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000, "random": 89.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163708641699998, 47.169319040799998 ], [ -122.159146879800005, 47.168838945200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270, "random": 57.391 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.372681329499997 ], [ -123.043603345600005, 46.377894367499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800, "random": 57.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193495728900004, 46.757317083099998 ], [ -122.192044511299997, 46.763148214899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500, "random": 156.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.439196369400001 ], [ -122.322227200399993, 47.438885178600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400, "random": 90.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.432584160299996, 48.117319823400003 ], [ -123.431723711900005, 48.118274773099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500, "random": 50.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.770391468200003, 46.955307304500003 ], [ -123.772634005300006, 46.957213138599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400, "random": 59.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.971539450800002 ], [ -123.804653298800005, 46.970295887799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": null, "random": 71.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.455945538500004, 47.103975955400003 ], [ -119.439990119300006, 47.103981369899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600, "random": 150.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202704700200002, 46.709013116400001 ], [ -117.194491271900006, 46.712316346400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600, "random": 11.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.458971800599997 ], [ -122.843211788399998, 46.456561604500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000, "random": 32.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305500032200001, 47.697580308500001 ], [ -122.300439660400002, 47.710521918399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000, "random": 81.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241412149300004, 48.510407569900003 ], [ -122.238568264, 48.510509214400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800, "random": 176.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.941795765899997, 46.848996036300001 ], [ -119.956438555800005, 46.870475719 ], [ -119.955039408800005, 46.881056224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000, "random": 56.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.119955079299999, 47.3581151088 ], [ -122.118393322900005, 47.358083689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200, "random": 5.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291789386399998, 48.335745977499997 ], [ -122.234636542900006, 48.316921300700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900, "random": 78.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682680229799999, 47.572870406500002 ], [ -117.682262921499998, 47.579790864700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700, "random": 183.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296621681100007, 46.5642108312 ], [ -122.2876908004, 46.562905111900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100, "random": 20.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726070176700006, 47.994823643300002 ], [ -117.731910468699994, 48.027148628500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100, "random": 20.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.967332821200003 ], [ -122.179158673200007, 48.976749001 ], [ -122.224427992800003, 48.963554317400003 ], [ -122.2383116691, 48.981859587400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400, "random": 118.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.165467930700004, 47.071513026700003 ], [ -124.1655918294, 47.0723702608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400, "random": 144.569 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.476340768100002, 47.024825293600003 ], [ -118.442204373400003, 47.046546835100003 ], [ -118.414110318900001, 47.059196785600001 ], [ -118.409653168199995, 47.068022810599999 ], [ -118.4070751366, 47.103309537400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": null, "random": 64.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.689533732400001 ], [ -120.734080409300006, 47.676187191700002 ], [ -120.736360708, 47.665311162099997 ], [ -120.729389874800006, 47.659802408 ], [ -120.720056191899999, 47.640403619399997 ], [ -120.727803017100001, 47.630566086800002 ], [ -120.712111008299999, 47.593611076800002 ], [ -120.701765463, 47.584174099 ], [ -120.675248149599994, 47.588574571099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400, "random": 81.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.901532568700006, 45.682342419100003 ], [ -121.886071306100007, 45.6924749788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000, "random": 137.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384990934100003, 47.766735284100001 ], [ -117.378220896599998, 47.772633437400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200, "random": 13.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907560117399996, 46.1465486719 ], [ -122.908506061500006, 46.146702232199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300, "random": 93.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.372061313499998, 47.663072830700003 ], [ -117.362563030900006, 47.666706290299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800, "random": 194.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.052470810800003, 46.468177250499998 ], [ -124.050056982, 46.490640709700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000, "random": 188.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655219925200001, 47.5591158808 ], [ -122.653297245499999, 47.565534571500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": null, "random": 41.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.739399423699993, 47.756380132700002 ], [ -120.7384906148, 47.736019593599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500, "random": 95.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602042804600003, 47.854763585699999 ], [ -122.5840564696, 47.852153791799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600, "random": 13.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.472295554799999, 47.762035526699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": null, "random": 114.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.229740409599998, 47.087392561400002 ], [ -119.242600533599997, 47.097918976899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000, "random": 142.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.097084689900001 ], [ -122.434931526, 47.097314452399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300, "random": 48.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515656255300001, 47.2992775357 ], [ -122.515642471600003, 47.300595473599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520, "random": 135.085 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.388534752699996 ], [ -122.676854582100006, 46.378840872300003 ], [ -122.673496635199996, 46.361284465600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940, "random": 20.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485822753299999, 46.536429871300001 ], [ -122.485346572799997, 46.534276731799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600, "random": 128.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.670778448299998, 46.937560636199997 ], [ -123.649269084400004, 46.944496517399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": null, "random": 126.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.028398647300001 ], [ -119.194727604199997, 47.057704760599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500, "random": 52.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.162754246700004, 47.017383114399998 ], [ -124.155021291500006, 47.017344680199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000, "random": 54.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073018590499998, 47.2267941681 ], [ -117.111583927699996, 47.232390043099997 ], [ -117.130472870899993, 47.242079002799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400, "random": 110.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.649779292799998 ], [ -121.602009161799998, 46.657210274599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810, "random": 6.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.003543932300005, 48.8008410224 ], [ -118.000052419900001, 48.807387833900002 ], [ -117.983991490099996, 48.813793330800003 ], [ -117.973215923799998, 48.815372547400003 ], [ -117.948739246100004, 48.8094853403 ], [ -117.929254646499999, 48.814740995199998 ], [ -117.911425089, 48.827107032500003 ], [ -117.895948446399998, 48.850870247400003 ], [ -117.881274636, 48.853652644599997 ], [ -117.872197637699998, 48.864854032099998 ], [ -117.853598904199998, 48.873679994 ], [ -117.841272719900005, 48.871952626300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700, "random": 139.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356448217199997, 46.075882035799999 ], [ -118.356443458, 46.077185899500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200, "random": 106.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188026520700006, 47.981696082200003 ], [ -122.186673872300005, 47.981687837899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000, "random": 164.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.852175045300001, 46.976073338900001 ], [ -123.853981904500003, 46.976075110399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200, "random": 70.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.485438046699997, 45.798617495400002 ], [ -121.490785135199999, 45.807210590499999 ], [ -121.489711447600001, 45.823819330100001 ], [ -121.509518930300004, 45.849808906200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200, "random": 12.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042441887099997, 48.184010170500002 ], [ -117.043933314200004, 48.184029565199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": null, "random": 133.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853547960699998, 47.103252983899999 ], [ -119.853533075, 47.117722674900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000, "random": 45.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.085935890100004, 47.358074866599999 ], [ -122.074051220699999, 47.358100533399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000, "random": 181.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197636001199996, 47.9682783923 ], [ -122.191990948400004, 47.972673900899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000, "random": 67.308 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.539356012400006, 47.679508670799997 ], [ -122.550960549699994, 47.690504212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": null, "random": 88.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.109561014699999 ], [ -119.718033773200005, 48.102378565599999 ], [ -119.698707638499997, 48.103403189200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000, "random": 34.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109827108800005, 47.875295458700002 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000, "random": 98.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356664533599997, 48.465761159700001 ], [ -122.347162814399994, 48.4689593505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000, "random": 72.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498739627199996, 48.452263302299997 ], [ -122.443902727600005, 48.446021134799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200, "random": 93.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.861547543699999, 46.850109919399998 ], [ -122.861982835899994, 46.851655257200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300, "random": 112.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.000025473699999 ], [ -122.263615147500005, 49.002336597099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500, "random": 164.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.318941215600006, 46.758863934899999 ], [ -118.308445228899998, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000, "random": 41.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292335809600004, 47.816111394 ], [ -122.292308948799999, 47.813704600199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300, "random": 178.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254686200500004, 47.485610696400002 ], [ -118.250397884899996, 47.489208102200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300, "random": 20.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.517062986699997, 46.6712561513 ], [ -120.509031671900004, 46.676702796299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930, "random": 104.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.790697915699994, 47.436332432199997 ], [ -117.788774298, 47.435239557599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600, "random": 81.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.541748150399997, 46.93783701 ], [ -122.528332171700001, 46.937764175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000, "random": 152.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113361770400005, 47.671528366 ], [ -122.103599726200002, 47.668444842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960, "random": 145.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.310189760599997 ], [ -124.0611205915, 46.313346213300001 ], [ -124.064645587200005, 46.309558892200002 ], [ -124.060652883900005, 46.305650457200002 ], [ -124.063199593500002, 46.2983588775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800, "random": 57.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356192679399996, 47.978819259399998 ], [ -122.370959862099994, 47.979159491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600, "random": 45.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824585887400005, 45.698633973100002 ], [ -120.824534867899999, 45.698019660299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300, "random": 50.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.695998937500001 ], [ -121.289666681599996, 45.697135679500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200, "random": 8.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.703840774599996, 48.269305853100001 ], [ -118.711807993600004, 48.271740175799998 ], [ -118.734745553699995, 48.299072435200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300, "random": 119.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.548771068100002 ], [ -120.291710569599999, 46.534745933400004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000, "random": 102.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.998265185600005, 47.631397117100001 ], [ -121.987460641699997, 47.627994798400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000, "random": 173.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.951208942899996, 46.115761426399999 ], [ -122.950614760899995, 46.116489802300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900, "random": 24.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380734713400003, 47.811839642700001 ], [ -122.379606535099995, 47.811428451799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500, "random": 67.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.642180426199999, 48.495334999699999 ], [ -121.626657964399996, 48.488780807700003 ], [ -121.596169762100004, 48.487275378900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000, "random": 32.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462088280299994, 47.197049535799998 ], [ -122.461663028299995, 47.200192883299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000, "random": 83.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.971575499699995, 46.680680636600002 ], [ -122.9696916332, 46.693354364500003 ], [ -122.972693801600002, 46.703306275499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900, "random": 15.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.058680005900001, 46.419926261500002 ], [ -117.057416806500001, 46.419927330900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130, "random": 185.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.689657366199995, 47.926800027 ], [ -118.689936079500001, 47.929218270500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": null, "random": 15.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.497251069100002, 47.370285029800002 ], [ -119.490492646700005, 47.375924811600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000, "random": 110.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400514288599993, 47.055858198499998 ], [ -122.428494472899999, 47.078773705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": null, "random": 98.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.739491654099993, 47.756511044100002 ], [ -120.730179083, 47.7636832556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500, "random": 54.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999527805300005, 46.240131802800001 ], [ -119.999211918300006, 46.2864963221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900, "random": 194.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.322978895800006, 46.3718043346 ], [ -120.329526933799997, 46.375119312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300, "random": 6.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054745626300004, 46.346612471 ], [ -124.054580485599999, 46.350118615100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900, "random": 99.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.709147899900003, 47.759454432799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000, "random": 124.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.497189516900001 ], [ -119.529422804, 48.5261884807 ], [ -119.543399478799998, 48.558806781100003 ], [ -119.542882178900001, 48.565245776099999 ], [ -119.533609333300006, 48.575604223399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200, "random": 168.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.115033679899994, 47.462147459299999 ], [ -123.111580438800004, 47.459121237799998 ], [ -123.113551631600004, 47.453231937300004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800, "random": 15.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.481716270099994, 47.930896701099996 ], [ -124.529993278099994, 47.915069702499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000, "random": 155.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.097314452399999 ], [ -122.434907904200003, 47.099300405800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000, "random": 93.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048949727099995, 46.735058809100003 ], [ -117.039945704600001, 46.7324070437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000, "random": 66.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.144613716499997 ], [ -122.908492533499995, 46.144467836099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000, "random": 10.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039897904499995, 46.420186914399999 ], [ -117.039123163699998, 46.420256329600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800, "random": 5.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289183953199995, 48.155717637899997 ], [ -122.286498895299999, 48.155695823199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000, "random": 158.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.375955261300007, 48.104855547100001 ], [ -123.371877727300003, 48.104868243600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400, "random": 48.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.582719030299998, 48.488844632899998 ], [ -121.554500350500007, 48.491304965200001 ], [ -121.488132799799999, 48.508950098 ], [ -121.472142264200002, 48.508843736199999 ], [ -121.462345584399998, 48.5215887624 ], [ -121.449902918800007, 48.52736977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": null, "random": 24.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.392358608500004, 47.918864183700002 ], [ -119.360155687399995, 47.933766285600001 ], [ -119.342171066899994, 47.933953057300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600, "random": 119.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.695467909900003 ], [ -121.546083814499994, 46.683030593200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000, "random": 153.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.804653298800005, 46.970295887799999 ], [ -123.811070066900001, 46.973262377700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": null, "random": 5.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.053845938899997, 47.835984992900002 ], [ -120.052354033300006, 47.8358056633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710, "random": 17.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.995311748799999 ], [ -119.461780776500007, 49.000086810600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000, "random": 52.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.124004338700004, 47.8375143859 ], [ -122.110117861, 47.860666174800002 ], [ -122.109827108800005, 47.875295458700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000, "random": 147.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671985478500005, 47.5475493235 ], [ -122.667352865799998, 47.549059761300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800, "random": 56.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.360611100200003, 46.0686802253 ], [ -118.362058013500004, 46.068646754299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000, "random": 51.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.516495101300002 ], [ -120.480199159899996, 46.522222813900001 ], [ -120.474034679799999, 46.531778940899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000, "random": 194.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325733290200006, 48.435758576600001 ], [ -122.322813391899999, 48.435726219899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000, "random": 74.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552696417299998, 47.121026171899999 ], [ -122.547904716900007, 47.123849887799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000, "random": 89.286 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661702096400006, 45.644626475400003 ], [ -122.662431148, 45.652190629700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000, "random": 33.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434170529799999, 47.162825656599999 ], [ -122.433966120899996, 47.205404862400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000, "random": 90.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.150787088599998, 48.152052366299998 ], [ -122.140608262699999, 48.151913289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500, "random": 170.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.820463539499997 ], [ -122.9030126575, 47.817110515099998 ], [ -122.909988232700002, 47.811340111100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000, "random": 188.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045083350200002, 47.394535369899998 ], [ -122.040221681899993, 47.405137523800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000, "random": 170.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.564935972499995, 45.659147453300001 ], [ -122.552764512099998, 45.6654147454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000, "random": 162.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.071156388600002 ], [ -122.817955935100002, 48.078069092200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000, "random": 183.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198286336199999, 47.515964748400002 ], [ -122.1981171515, 47.5215347846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000, "random": 114.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.652657702600003 ], [ -117.404003193700007, 47.652123854400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100, "random": 106.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083607430399994, 46.219435461700002 ], [ -119.080202258200003, 46.218655692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500, "random": 117.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.383672593599997, 48.891377649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000, "random": 181.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.429972983599995, 48.117565995200003 ], [ -123.418933152799994, 48.113039913100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600, "random": 72.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824534867899999, 45.698019660299998 ], [ -120.823931182699994, 45.699442413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000, "random": 36.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.006849018899999 ], [ -123.370724874, 47.010716259500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000, "random": 191.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207036498600004, 47.459407738700001 ], [ -122.207176229699996, 47.460991061 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000, "random": 101.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198132583200007, 48.807184498600002 ], [ -122.202534822900006, 48.816156561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000, "random": 161.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214303316900001, 47.982048124400002 ], [ -122.213780260299998, 47.994220742499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000, "random": 23.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.590030423900004, 46.933191201900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000, "random": 93.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.145732405700002, 46.217595725400002 ], [ -119.139733927, 46.216805478799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400, "random": 94.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.653351083899999 ], [ -121.905265762400006, 45.663017263500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100, "random": 197.025 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.794603387500004, 46.664438437800001 ], [ -123.793487933899996, 46.665097873599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200, "random": 157.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.930280839700004, 47.061828455200001 ], [ -123.929195204500004, 47.069822031400001 ], [ -123.905349794700001, 47.086237888100001 ], [ -123.906568351900006, 47.102522463299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750, "random": 121.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.160080238399999 ], [ -123.377247312500003, 46.171261278599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000, "random": 21.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.017149371100004, 47.533899271 ], [ -122.007897527200001, 47.536442657 ], [ -121.9862702466, 47.530963991599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": null, "random": 83.696 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.686049460099994, 47.1944007257 ], [ -119.605898204900001, 47.244359302399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000, "random": 187.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334726948400004, 47.537831831200002 ], [ -122.334116065, 47.542815102200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800, "random": 151.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.140780876199997, 45.611278229100002 ], [ -121.145887174500004, 45.620746481799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000, "random": 117.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.508228369299999, 48.417115248400002 ], [ -119.495704665900007, 48.427975281099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": null, "random": 15.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192406912199999, 47.866359942 ], [ -120.201790951899994, 47.873417739399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": null, "random": 20.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292917287199998, 47.407953191799997 ], [ -120.292457478399996, 47.406215807400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000, "random": 135.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312425316399995, 48.305289375900003 ], [ -122.322055364899995, 48.313308008200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000, "random": 18.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191330456499998, 47.755720280799999 ], [ -122.1719789948, 47.757621596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000, "random": 135.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688809379800006, 47.664663366799999 ], [ -122.692306908800006, 47.663643126399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000, "random": 16.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.928973282499996, 46.952792743899998 ], [ -122.934240825299995, 46.952766632500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300, "random": 112.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.641372188699997 ], [ -121.975013542900001, 45.6406654273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100, "random": 65.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.714723801299996, 46.890466702200001 ], [ -123.719695223200006, 46.918530600899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800, "random": 161.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.831867271600004, 45.823059503700001 ], [ -120.824681801899999, 45.823005993499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000, "random": 24.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.494065390700001 ], [ -121.794753258599997, 47.489394127300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400, "random": 77.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.330317322100001, 48.658599065700002 ], [ -119.300956592, 48.653291277100003 ], [ -119.232008359800005, 48.6707268101 ], [ -119.217076145500002, 48.669421975200002 ], [ -119.197765522899999, 48.6613912396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000, "random": 115.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.425622572899996, 47.223122782 ], [ -122.426290922600003, 47.225964252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000, "random": 111.721 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.850297723400004, 47.1752256328 ], [ -120.835010601, 47.181362192900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700, "random": 75.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320236381300006, 48.949281296 ], [ -122.309466058, 48.955792833799997 ], [ -122.309204530200006, 48.963860375199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000, "random": 83.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.062748397700005, 47.545705776699997 ], [ -122.061969381500006, 47.547621303500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": null, "random": 172.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.638076096700004, 47.812191295300003 ], [ -119.636809987, 47.811607921399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200, "random": 20.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265002944299994, 48.993579316 ], [ -122.264987750200007, 48.999101576400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000, "random": 76.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045389357700003, 47.390333093300001 ], [ -122.045083350200002, 47.394535369899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200, "random": 103.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.986200562099995, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200, "random": 187.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212974645499997, 48.652713438100001 ], [ -122.212867549799995, 48.655877457400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100, "random": 156.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.565023409600002 ], [ -122.626945866, 47.565015327600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000, "random": 42.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197938621899993, 47.509415060800002 ], [ -122.198286336199999, 47.515964748400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000, "random": 190.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886444128799994, 47.5692233555 ], [ -121.871409960500003, 47.5666180383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000, "random": 163.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.301269834600006, 47.373309348399999 ], [ -122.296379117300006, 47.386520195199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000, "random": 27.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.240266890800001 ], [ -122.376126003699994, 47.240486919699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300, "random": 71.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336830963899999, 45.574285426199999 ], [ -122.320922755599995, 45.572154233500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600, "random": 94.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.073392596600002, 48.584875433800001 ], [ -118.075376155699999, 48.590211446200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000, "random": 48.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682677724300007, 47.572143868700003 ], [ -117.682680229799999, 47.572870406500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800, "random": 185.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.423311671099995, 47.317046900500003 ], [ -122.393359055199994, 47.322379808800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000, "random": 62.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.652190629700002 ], [ -122.664164383799999, 45.6564855831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000, "random": 50.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.285944848200003, 47.661989355800003 ], [ -122.273121321399998, 47.668605412600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000, "random": 22.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908492533499995, 46.144467836099999 ], [ -122.907479926299999, 46.144285354499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200, "random": 126.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886071306100007, 45.6924749788 ], [ -121.885352651700003, 45.692845945499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800, "random": 93.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.680783935599997 ], [ -120.477020851500001, 46.690052266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000, "random": 166.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517339148900007, 47.1402583462 ], [ -122.508717176600001, 47.144773798300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000, "random": 52.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284413691400005, 47.511800325499998 ], [ -122.295991660699997, 47.5348589719 ], [ -122.305256741600004, 47.543467570099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000, "random": 136.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323952406499998, 47.397136250199999 ], [ -122.311449370800005, 47.391536018099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800, "random": 191.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.674302085800001 ], [ -117.194966866599998, 46.679247582099997 ], [ -117.204128328600007, 46.690852856 ], [ -117.204337991100005, 46.705845765100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500, "random": 186.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960173329200003, 47.282055380499997 ], [ -122.947621414799997, 47.284312022800002 ], [ -122.907262820300005, 47.319622827800004 ], [ -122.880446336399999, 47.331920456200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000, "random": 139.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899606179700001, 46.398070720299998 ], [ -122.8901249197, 46.407106646899997 ], [ -122.890377804099998, 46.415684535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300, "random": 165.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.907976328800004, 46.693935844599999 ], [ -120.900450840399998, 46.695472322100002 ], [ -120.899340182700001, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000, "random": 11.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.197026639599997 ], [ -122.201456902100006, 47.194176953499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200, "random": 177.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.919119912499994, 48.705888890600001 ], [ -120.901878823399997, 48.6993047307 ], [ -120.886932951399999, 48.687870629300001 ], [ -120.873063218300004, 48.666214950300002 ], [ -120.860204576, 48.658019622799998 ], [ -120.857094496599998, 48.647109356599998 ], [ -120.839655481700007, 48.623667670099998 ], [ -120.805261098800003, 48.5968427615 ], [ -120.791055603100006, 48.575344822700004 ], [ -120.771988072400006, 48.5619204268 ], [ -120.755918936399993, 48.536094319699998 ], [ -120.735353297, 48.523771493799998 ], [ -120.7300186258, 48.505391496500003 ], [ -120.704735194799994, 48.501405464699999 ], [ -120.674267565099996, 48.519739794400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000, "random": 120.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.750282030299999 ], [ -122.329647234, 47.751023302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800, "random": 7.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.168691485899998, 48.4567062705 ], [ -120.164120107900004, 48.448203115799998 ], [ -120.162657037, 48.427700415899999 ], [ -120.142750791400005, 48.409648073900001 ], [ -120.139458114199996, 48.395595955700003 ], [ -120.122453029300004, 48.367342777799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000, "random": 158.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.590366244199998, 47.419579391100001 ], [ -121.577603552200003, 47.410002127200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": null, "random": 18.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.215258356299998, 47.075122481199998 ], [ -119.229740409599998, 47.087392561400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000, "random": 5.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655009775600007, 48.296169091400003 ], [ -122.645906529200005, 48.3044536381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000, "random": 150.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.347960920799999 ], [ -122.614439244300002, 48.357150764799997 ], [ -122.637650204699995, 48.35872899 ], [ -122.648135869499995, 48.362966348800001 ], [ -122.652939327799999, 48.369485278299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800, "random": 99.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.236329210800001 ], [ -122.052791283299996, 48.244961878700003 ], [ -122.042270083600002, 48.247273043100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000, "random": 190.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.510906144800003, 46.644208450199997 ], [ -120.523724998, 46.637739616700003 ], [ -120.517679251299995, 46.631227130200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000, "random": 103.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.246088026600006, 47.482214079199998 ], [ -122.226281250599996, 47.477733349499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000, "random": 159.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606337912499995, 48.873286374800003 ], [ -118.6042284774, 48.879828308199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700, "random": 156.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.115551230199998, 47.444827978200003 ], [ -123.125057273300001, 47.4302399209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000, "random": 199.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.888987911800001, 46.435916736300001 ], [ -122.887483816100001, 46.446560103400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000, "random": 159.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.330248918500004, 47.653713239 ], [ -117.305953399700002, 47.6666196591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": null, "random": 178.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.510085755899993, 46.926149802799998 ], [ -120.497976910800006, 46.926218229200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000, "random": 36.569 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193531274199998, 47.369374337399996 ], [ -122.189202811599998, 47.3678526781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": null, "random": 126.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.579814783499998, 47.2816012149 ], [ -119.566673812700003, 47.2998586553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000, "random": 151.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.170552412600003, 46.261830974 ], [ -119.123284544300006, 46.248662601600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000, "random": 37.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.267577082899997 ], [ -122.900246505499993, 46.280731519100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000, "random": 82.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335644288300003, 47.5965279925 ], [ -122.336611513099996, 47.601770505300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900, "random": 42.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498405559600002, 47.799630733699999 ], [ -122.498048415300005, 47.798506382500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000, "random": 18.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632864206899995, 47.566635514799998 ], [ -122.632946940099998, 47.567332683300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000, "random": 36.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213863515900002, 47.998943614399998 ], [ -122.213900569399996, 48.008866067299998 ], [ -122.206679268499997, 48.016692825699998 ], [ -122.194138329, 48.014328780600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000, "random": 73.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265870576400005, 47.820744648900003 ], [ -122.260355003699999, 47.8200633469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900, "random": 199.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.517805186299995, 46.829215650800002 ], [ -117.505667950900005, 46.832959152800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000, "random": 124.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612614699800005, 48.512615782 ], [ -122.615807335900001, 48.512636822700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000, "random": 94.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.681154462600006, 47.566246198599998 ], [ -122.687235929099998, 47.575458442200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000, "random": 68.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.504965103899998 ], [ -122.244125636199996, 48.506295213100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100, "random": 139.929 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050199969199994, 46.340770072600002 ], [ -117.054448335299995, 46.341189423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340, "random": 81.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.556848579199993, 46.635516328100003 ], [ -118.552489513599994, 46.641494681200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400, "random": 7.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.034173789099995, 46.1565283618 ], [ -119.040486107299998, 46.161211968099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900, "random": 59.738 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.208746956400006, 46.519219156 ], [ -120.187902884, 46.506059951799998 ], [ -120.151217007699998, 46.505769000100003 ], [ -120.134855667899998, 46.5011777327 ], [ -120.012205994799999, 46.519745854200004 ], [ -119.969209900300001, 46.519651668 ], [ -119.910788556699998, 46.536420505400002 ], [ -119.880076303300001, 46.533993313800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600, "random": 49.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876734233400001, 47.905864379299999 ], [ -122.869598558600003, 47.893534107800001 ], [ -122.876775826400007, 47.886442176099997 ], [ -122.878869901399995, 47.866027985700001 ], [ -122.889188629299994, 47.8487536576 ], [ -122.886976263199998, 47.834194096499999 ], [ -122.878214631899993, 47.826987207599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400, "random": 67.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682703077799999, 47.701236210200001 ], [ -122.660162054099999, 47.704564702799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000, "random": 49.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955243405499999, 46.147106829499997 ], [ -122.951711013400001, 46.146902157200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000, "random": 42.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485654962300003, 48.869841039900002 ], [ -122.485347089399994, 48.891721005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850, "random": 71.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692298812199994, 47.332496083700001 ], [ -118.692231093100006, 47.333315666600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000, "random": 84.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.471265438299994, 46.539414212799997 ], [ -120.471680580300003, 46.531543452599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000, "random": 114.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.456888889400005, 47.7154157955 ], [ -117.458669386799997, 47.715411884399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000, "random": 174.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.091746744800005, 46.250303521799999 ], [ -119.071993451200001, 46.249483691800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200, "random": 97.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.226814156700001 ], [ -117.042645019299997, 47.2398211593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400, "random": 60.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.250447797899994, 46.524888901499999 ], [ -120.208746956400006, 46.519219156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": null, "random": 121.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.261368236300001, 47.631497785199997 ], [ -119.262067483300001, 47.638792737300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900, "random": 95.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.049476697399996, 46.168670079 ], [ -119.054732335300002, 46.173406560300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000, "random": 46.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.584121356599994, 48.855268045400003 ], [ -122.588445244300004, 48.8674825234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": null, "random": 172.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.003281298499999, 47.947389362 ], [ -119.005266057699998, 47.944909575600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900, "random": 164.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.450386834699998, 48.694933143299998 ], [ -119.442670124299994, 48.701328551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400, "random": 126.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075356614399993, 48.598579374300002 ], [ -118.075169820799999, 48.606899166200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300, "random": 172.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.225745399199994, 46.736355393899998 ], [ -117.208860642800005, 46.733747506299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000, "random": 144.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335932665900003, 48.347174658900002 ], [ -122.335313918300002, 48.3777532366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200, "random": 155.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.791625482900002 ], [ -118.735554338, 46.793750807800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000, "random": 114.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.122345378399999, 47.667181773700001 ], [ -122.115157878700003, 47.667096279399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600, "random": 150.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.417664840599997, 46.246889012499999 ], [ -120.410713062599996, 46.255407269700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900, "random": 19.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875671430799997, 47.824142318100002 ], [ -122.878433839099998, 47.821394556500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000, "random": 119.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410523712599996, 47.752316359200002 ], [ -117.406639866399999, 47.763222621200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300, "random": 127.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265005071199994, 48.9927318071 ], [ -122.265002944299994, 48.993579316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900, "random": 84.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269375668099997, 47.484840194500002 ], [ -122.271537638, 47.477462388399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500, "random": 9.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863144207199994, 47.438638765599997 ], [ -122.851089359900001, 47.446717857899998 ], [ -122.843229071500005, 47.447241419800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": null, "random": 115.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.333734241200005, 46.9675559139 ], [ -119.320979929399996, 46.965364278199999 ], [ -119.290589343700006, 46.981978531700001 ], [ -119.254646437100007, 46.981691158700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600, "random": 136.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.877917606599993, 47.669492940399998 ], [ -117.882368880900003, 47.690430715700003 ], [ -117.872121492299996, 47.713378462900003 ], [ -117.870530194300002, 47.732077034600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": null, "random": 7.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.408900948099998 ], [ -120.292056688399995, 47.410528213699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000, "random": 37.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.480181976799997, 47.163214850199999 ], [ -122.473678655800001, 47.161579212200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100, "random": 145.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.583684497899995, 47.813587039799998 ], [ -122.575679242, 47.808398297399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500, "random": 43.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.170997888499997, 48.267960125199998 ], [ -122.210814926099999, 48.308349596799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000, "random": 33.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.593368100200003 ], [ -117.564917202, 47.591692702800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000, "random": 38.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184768822300001, 48.068137954100003 ], [ -122.184688057800003, 48.081606951700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300, "random": 65.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.371241075399993, 46.100085005300002 ], [ -118.375260257600004, 46.129716562399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": null, "random": 155.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.997641541099995, 47.684484429800001 ], [ -118.985352868500001, 47.684966131 ], [ -118.9278071982, 47.709840051400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000, "random": 68.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179508185499998, 47.587907527399999 ], [ -122.179914892699998, 47.598495893900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000, "random": 42.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407107026299997, 45.6049828823 ], [ -122.406870838900005, 45.601867264600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": null, "random": 75.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490492646700005, 47.375924811600001 ], [ -119.488596417300002, 47.377485891200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000, "random": 193.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485965163399996, 48.833349154399997 ], [ -122.4859682883, 48.855145538899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900, "random": 111.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.066111656799997 ], [ -124.127774356900005, 48.061089142900002 ], [ -124.0856497531, 48.068244521399997 ], [ -124.037698168600002, 48.0703874967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700, "random": 69.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.813279974300002 ], [ -121.557856685800004, 47.807637566499999 ], [ -121.540417972, 47.810158778199998 ], [ -121.517471643600004, 47.804071842299997 ], [ -121.512400876699999, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000, "random": 176.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661277098900001, 45.746467718700004 ], [ -122.664414851900005, 45.756639908099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000, "random": 185.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.135501710200003, 47.972868825600003 ], [ -122.114744563800002, 47.954618627499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": null, "random": 14.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.298061500200006, 47.409742022300001 ], [ -120.300607207100001, 47.409654076099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000, "random": 42.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247352685300001, 47.377958376700001 ], [ -122.247376556299997, 47.381354441399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900, "random": 54.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644238838700005, 46.531879556699998 ], [ -122.634093082299998, 46.532248674500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400, "random": 122.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.203516548099998, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.222631107599994, 46.725847558300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000, "random": 84.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400125516599999, 45.586998701900001 ], [ -122.402641327300003, 45.585686270099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000, "random": 7.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293787584699999, 47.200149198600002 ], [ -122.293870047200002, 47.204398406 ], [ -122.290066264700002, 47.2038050564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000, "random": 24.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.406884499699999, 47.158958883700002 ], [ -122.393823270400006, 47.158137239699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100, "random": 75.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370959862099994, 47.979159491 ], [ -122.385831363199998, 47.982748053900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000, "random": 179.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293814458300005, 47.198880376799998 ], [ -122.293787584699999, 47.200149198600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000, "random": 89.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.649042313899997 ], [ -122.655558176300005, 47.650535837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000, "random": 139.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673833689800006, 45.631859894199998 ], [ -122.6726646061, 45.631866589399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500, "random": 62.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.912284865700002, 46.056970700299999 ], [ -118.909947142199997, 46.058308654699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500, "random": 167.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474208349899996, 46.700892472 ], [ -120.465829961099999, 46.711097427799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000, "random": 94.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377696220900006, 47.798612414700003 ], [ -122.373695657499994, 47.795196513100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000, "random": 111.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296157619300004, 48.435565171 ], [ -122.291840117899994, 48.435550659800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000, "random": 83.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188511970299999, 47.611623862899997 ], [ -122.188529648, 47.616765508900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000, "random": 171.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653315631300003, 47.567379882300003 ], [ -122.653297245499999, 47.565534571500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000, "random": 182.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916597970300003, 46.144744943200003 ], [ -122.916264697100004, 46.145605350099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000, "random": 138.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.028516892599995, 46.305963005899997 ], [ -120.013093485200002, 46.3059829046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300, "random": 102.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320553420799996, 48.891030585 ], [ -122.320722865899995, 48.912829965100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000, "random": 81.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.038983233799996, 46.226914300700003 ], [ -119.027146233699995, 46.218717987399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000, "random": 79.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.528253126199999, 46.654039018799999 ], [ -120.527113323099996, 46.655943553199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000, "random": 164.932 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118265929399996, 47.2502870454 ], [ -122.112160128799999, 47.242931552599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000, "random": 160.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.793799155900004, 47.433132785799998 ], [ -117.783418362399999, 47.441020789200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000, "random": 195.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293993914699996, 47.326235555899999 ], [ -122.292614717500001, 47.344545475799997 ], [ -122.295819424300007, 47.353032929900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000, "random": 163.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626109567699999, 47.3846980617 ], [ -122.620850775199997, 47.372720529399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000, "random": 146.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410423958199999, 47.740712806499999 ], [ -117.407087236199999, 47.744195225299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300, "random": 29.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.399522232699994, 48.793981232900002 ], [ -119.401078624700006, 48.814963264399999 ], [ -119.409891775800006, 48.8417212767 ], [ -119.407549153299996, 48.859081556299998 ], [ -119.423760253300003, 48.8850520385 ], [ -119.426794558799998, 48.898801598699997 ], [ -119.420443464, 48.919524219700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200, "random": 14.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.621462692899996, 46.346976223799999 ], [ -123.6093516169, 46.356012526100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100, "random": 23.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903076937500003, 46.284254283700001 ], [ -122.901700070499999, 46.285276014200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000, "random": 124.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244670656400004, 47.904148545300004 ], [ -122.24100502, 47.904892859199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000, "random": 176.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.319274617600001, 47.577721374600003 ], [ -122.318990083399996, 47.579369760500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800, "random": 17.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332618262099999, 48.341159403600003 ], [ -122.322313601900007, 48.340974526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000, "random": 96.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217566158099999, 47.849690876499999 ], [ -122.218079123799996, 47.8520936404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000, "random": 28.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.062691487199999, 47.656513354700003 ], [ -122.024659802599999, 47.644263262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000, "random": 44.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.211100709899995, 47.878184265599998 ], [ -122.2064495037, 47.878180766299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000, "random": 57.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.603896853600006, 47.6429304571 ], [ -117.593089756500007, 47.642918812600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000, "random": 48.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688395438200004, 45.8215294532 ], [ -122.699496916599998, 45.845401667700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600, "random": 143.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514228560500001, 45.8854969434 ], [ -122.514116367699998, 45.8882670084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700, "random": 148.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.412787102400003, 47.422542421899998 ], [ -121.412508613300005, 47.418857502400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000, "random": 185.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.067000553100002, 48.031134417300002 ], [ -122.051514997400005, 48.034741364600002 ], [ -122.015412092800005, 48.067401767299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000, "random": 44.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.047865250500003 ], [ -122.867737390599999, 46.066231654399999 ], [ -122.866731665200007, 46.081553949700002 ], [ -122.876647239099995, 46.102739118099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000, "random": 30.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.661060041399999 ], [ -122.292384800099995, 47.661192848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000, "random": 55.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.728844260700001, 46.3273755528 ], [ -122.709604065799994, 46.341306258899998 ], [ -122.705966832, 46.350625811100002 ], [ -122.6957643354, 46.359026044300002 ], [ -122.679498242500003, 46.361618515499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000, "random": 196.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.126056682500007, 47.833819378100003 ], [ -122.124004338700004, 47.8375143859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320, "random": 191.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.044931377099999, 48.751377685199998 ], [ -118.034109831899997, 48.763627811 ], [ -118.002920408199998, 48.781715524500001 ], [ -117.998459415400006, 48.793023789300001 ], [ -118.003543932300005, 48.8008410224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680, "random": 186.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.704906039099995, 48.278203789899997 ], [ -119.706008475800004, 48.282630412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700, "random": 160.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300484167799993, 46.887392915900001 ], [ -122.295683874600002, 46.910147070800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000, "random": 154.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515944338099999, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000, "random": 36.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.475500972600003, 47.715405460100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900, "random": 91.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.948745162199998, 47.3816100186 ], [ -122.914757678599997, 47.388043454699996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200, "random": 171.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.597361691299994, 47.828865968800002 ], [ -117.608683861800003, 47.839539399300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": null, "random": 112.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.293885132499994, 47.149636909800002 ], [ -119.294218817200004, 47.149727948900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000, "random": 199.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169616112499995, 47.877828645699999 ], [ -122.1659527236, 47.877799075399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500, "random": 69.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.080202258200003, 46.218655692 ], [ -119.076728009700005, 46.226590831800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000, "random": 60.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632929343599997, 47.565033362400001 ], [ -122.632862566, 47.565755526899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600, "random": 80.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.003770001299998, 46.305320537199997 ], [ -117.9916818783, 46.312854873399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000, "random": 95.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054913420899993, 46.331157364600003 ], [ -124.044713133499997, 46.331198202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580, "random": 101.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.031138145499995, 46.546457236800002 ], [ -124.034530523800001, 46.549222742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000, "random": 91.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.290526581899996, 47.672483866100002 ], [ -117.274059505500006, 47.674765049900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000, "random": 131.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206818324099999, 47.898121112 ], [ -122.207007235500001, 47.904960629900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000, "random": 31.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281965348300005, 47.864172748 ], [ -122.280478947800006, 47.865772013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500, "random": 24.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.149338525600001, 45.627246477 ], [ -121.153525229400003, 45.636291317800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000, "random": 31.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.887897361499995, 46.229024854899997 ], [ -122.885558695599997, 46.243136327400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000, "random": 30.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.291613470800002, 47.299067816 ], [ -121.285599041099999, 47.294343061399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000, "random": 153.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.730092058300002, 45.9194293595 ], [ -122.7339030885, 45.918773383199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000, "random": 118.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.079520179400006, 46.232297928400001 ], [ -119.080053636599999, 46.233384559900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": null, "random": 10.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.939367330300001, 47.026315604300002 ], [ -119.865717202, 47.0813852641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200, "random": 178.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.585172443900007, 47.092882859500001 ], [ -117.597036992200003, 47.095543250600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320, "random": 69.04 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.865029997199997 ], [ -118.214404576, 48.874449448 ], [ -118.219199731900005, 48.891168941399997 ], [ -118.218489894200005, 48.896205512800002 ], [ -118.204913599199998, 48.908879903699997 ], [ -118.222481004599999, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.223193704400003, 48.971453685500002 ], [ -118.224439920799995, 48.998115780500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000, "random": 95.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.056532360299997, 47.195825610500002 ], [ -121.046769006600002, 47.190672131600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000, "random": 183.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215998368200005, 47.473770254400002 ], [ -122.216263351899997, 47.478470607600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": null, "random": 111.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.956002034900003 ], [ -119.002377226700006, 47.948533089199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800, "random": 44.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043382483900004, 46.311738539 ], [ -124.044606618200007, 46.317989866200001 ], [ -124.054772670800006, 46.323425158100001 ], [ -124.054947732100004, 46.330246772899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000, "random": 103.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.234147864099995, 46.387454465300003 ], [ -120.200680188899995, 46.357573287699999 ], [ -120.182959056, 46.349209599600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000, "random": 68.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411097387599995, 47.686238881100003 ], [ -117.411101904299997, 47.687150654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000, "random": 103.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.582610488200004, 47.642912863 ], [ -117.577214570099997, 47.642932904799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000, "random": 136.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643946939900005, 47.502784521800002 ], [ -122.634247378599994, 47.504927174099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000, "random": 93.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.147513064799995, 47.339074769200003 ], [ -122.143767362399998, 47.345066001900001 ], [ -122.128207298199996, 47.353574893599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000, "random": 52.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.650885583600001, 47.537444733500003 ], [ -122.637848629700002, 47.542187291499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000, "random": 91.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495889545400004, 48.783500549099998 ], [ -122.497820086399997, 48.783587733399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000, "random": 12.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.182511221699997, 46.729023359400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000, "random": 48.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564633443899993, 47.513589589299997 ], [ -117.5670476974, 47.526881555 ], [ -117.593629232699996, 47.554738091399997 ], [ -117.594120527599998, 47.5625995288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900, "random": 159.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.159561450200002, 47.252225085900001 ], [ -123.145765470900002, 47.252121037599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": null, "random": 177.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.303513312099994, 47.110007206900001 ], [ -119.294245746800001, 47.119132439200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 197.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615807335900001, 48.512636822700003 ], [ -122.636132486099996, 48.512755540500002 ], [ -122.657978741700006, 48.5069926006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000, "random": 136.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.668938631800003, 48.0733486098 ], [ -123.598965558, 48.063806291399999 ], [ -123.583078776199997, 48.065841690100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000, "random": 195.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292406555300005, 47.820973150699999 ], [ -122.287114971500003, 47.8209339215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000, "random": 133.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.746224608399999, 48.137356281899997 ], [ -123.745586975199998, 48.137285238700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200, "random": 65.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.462653556099994, 48.1066210145 ], [ -123.462540653399998, 48.107899627400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910, "random": 151.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668572481799998, 47.894342293400001 ], [ -117.686186201400005, 47.890718012100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900, "random": 155.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.441091926599995, 48.703150918200002 ], [ -119.439813485299993, 48.704571899400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000, "random": 149.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.288368397699998 ], [ -122.177941413900001, 47.288130723499997 ], [ -122.154828224400006, 47.274967721400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": null, "random": 30.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.950074709399999, 47.861313163799998 ], [ -119.930668758, 47.8631043834 ], [ -119.920442447799999, 47.872582175399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600, "random": 139.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.324149951099997, 46.973314033699999 ], [ -117.349911117100007, 46.987419149499999 ], [ -117.354064457, 47.005882445099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100, "random": 183.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405380887899994, 48.685132053300002 ], [ -117.396461636200002, 48.667289585799999 ], [ -117.371385464900001, 48.638834787699999 ], [ -117.362922273199999, 48.603348115800003 ], [ -117.352655557299997, 48.590436785900003 ], [ -117.354644499200006, 48.566966490200002 ], [ -117.345558882600002, 48.5553675301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000, "random": 130.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351048352700005, 47.782943186399997 ], [ -122.348707769499995, 47.781426295800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600, "random": 90.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.333317827499997 ], [ -118.69367346, 47.333365258299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000, "random": 74.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047676523800007, 47.733358665799997 ], [ -117.041955367100002, 47.735800091400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500, "random": 6.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265443253900003, 46.866803346399998 ], [ -122.265450775100007, 46.869141366299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000, "random": 108.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.053676429700005, 47.357995259100001 ], [ -122.043550485099999, 47.357973821800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000, "random": 162.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.709670661800004, 47.463275161699997 ], [ -121.696592014, 47.446769656400001 ], [ -121.6749565537, 47.443251501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000, "random": 94.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.732315224099999 ], [ -122.637075428399996, 47.733467131899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800, "random": 119.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.125057273300001, 47.4302399209 ], [ -123.140333593799994, 47.407055777499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": null, "random": 35.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.762408837899997, 47.146818992100002 ], [ -119.738029801699994, 47.162025528500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": null, "random": 7.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.023988532800004, 47.836037193 ], [ -120.014883602300003, 47.838858014700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000, "random": 116.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364278768800006, 47.821506704400001 ], [ -122.361708309099996, 47.821485407600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000, "random": 82.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.644133222500002 ], [ -122.367891931399996, 48.654517081400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500, "random": 92.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.980925049600003, 47.207837572700001 ], [ -120.982525220699998, 47.209234482500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100, "random": 40.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673838776899998, 45.632559899699999 ], [ -122.677075241200001, 45.632772139099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600, "random": 81.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811070066900001, 46.973262377700003 ], [ -123.813278595100002, 46.9750588263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000, "random": 189.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.935642047900004, 47.522410772800001 ], [ -121.903493556599997, 47.506541775800002 ], [ -121.889966995600005, 47.507262303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500, "random": 93.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.169361525799999, 46.2688128518 ], [ -118.159927028200002, 46.270183251399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800, "random": 94.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.361212471599998 ], [ -120.117892276500001, 48.359995303799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000, "random": 6.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179444856399996, 47.665768017300003 ], [ -117.143304038899998, 47.665506429499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000, "random": 158.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.527048557500002 ], [ -122.6680239887, 47.531878978500004 ], [ -122.662091039200007, 47.539282091600001 ], [ -122.650885583600001, 47.537444733500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000, "random": 135.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.891017634700006, 46.421545267 ], [ -122.888987911800001, 46.435916736300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000, "random": 197.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298604580399996, 47.290674507299997 ], [ -122.284486184800002, 47.298220875799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470, "random": 16.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.065402195100006, 46.505633184399997 ], [ -118.109757182, 46.512921210800002 ], [ -118.140418843299997, 46.527665872299998 ], [ -118.154752003499993, 46.539479251700001 ], [ -118.178033677200006, 46.547293889499997 ], [ -118.178732483199994, 46.558210958899998 ], [ -118.217550979400002, 46.584015334100002 ], [ -118.222302280899996, 46.598111115099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500, "random": 80.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.722622225500004, 45.928000884200003 ], [ -122.725591561399995, 45.920528940899999 ], [ -122.730092058300002, 45.9194293595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000, "random": 95.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.333169631900006, 46.376967707399999 ], [ -120.359757614700001, 46.390548467899997 ], [ -120.393374497699995, 46.415054976599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000, "random": 31.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.906003446900002, 47.021545965500003 ], [ -122.898390582700003, 47.025431031899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800, "random": 136.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.625157561899996, 46.600746377699998 ], [ -123.618744180500002, 46.592608218199999 ], [ -123.618502852899994, 46.564256892800003 ], [ -123.6111780751, 46.555555809 ], [ -123.603576087500002, 46.554836152199996 ], [ -123.587927380300002, 46.563085968499998 ], [ -123.574657667500006, 46.5626246259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": null, "random": 197.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.675248149599994, 47.588574571099997 ], [ -120.67150803, 47.590263712199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200, "random": 127.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.889112476099996, 46.583669137900003 ], [ -122.885750729199998, 46.583809204700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000, "random": 186.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.778759274099997, 48.917169304399998 ], [ -117.777288263200006, 48.917759441100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500, "random": 108.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.961543513799995, 47.60154051 ], [ -121.953247282800007, 47.588372095700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000, "random": 154.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.114744563800002, 47.954618627499997 ], [ -122.106378900300001, 47.952031161599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900, "random": 14.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729377121900001, 46.686629520799997 ], [ -123.7300519299, 46.688858411699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000, "random": 33.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.517679251299995, 46.631227130200003 ], [ -120.513577041800005, 46.628489658200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000, "random": 43.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200, "random": 110.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.182511221699997, 46.729023359400003 ], [ -117.180095245900006, 46.728918094299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": null, "random": 39.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.305116425799994, 47.526696943499999 ], [ -120.293092081899999, 47.543409541300001 ], [ -120.262078237, 47.568872114100003 ], [ -120.249176440499994, 47.586962431300002 ], [ -120.239242191399995, 47.621125704299999 ], [ -120.241420398499997, 47.630983512500002 ], [ -120.228266789700001, 47.650259650599999 ], [ -120.224545529500006, 47.663264841699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000, "random": 106.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.571273361700001 ], [ -121.888033564200001, 47.567584502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000, "random": 36.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379284717800005, 48.240979182499999 ], [ -122.370672134800003, 48.2410706967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000, "random": 34.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.085823104799999, 46.196615068200003 ], [ -119.093346862800004, 46.199133631599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": null, "random": 125.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.152582169300004, 47.860201246599999 ], [ -120.114481517, 47.847725419500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540, "random": 182.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.971606228400006, 46.509744574199999 ], [ -117.977840654, 46.512579007900001 ], [ -118.029558898800005, 46.502950393100001 ], [ -118.050008143, 46.507292613700002 ], [ -118.065402195100006, 46.505633184399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000, "random": 23.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645684510400002, 47.7518428642 ], [ -122.639978566899998, 47.756166092299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400, "random": 85.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.594712953699997, 47.504905792 ], [ -122.592794232299994, 47.504927880300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600, "random": 130.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.052821815499996, 47.141055273299997 ], [ -122.036341396, 47.156422077599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200, "random": 179.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.204337991100005, 46.705845765100001 ], [ -117.203516548099998, 46.708001321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000, "random": 163.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.942880451299999 ], [ -117.481552386600001, 47.9470052096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100, "random": 177.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.141300861900007, 47.405012501800002 ], [ -123.147774384399995, 47.384520677700003 ], [ -123.159376622, 47.370405308599999 ], [ -123.161116265700002, 47.340641815700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600, "random": 171.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.555153906599998, 48.311333202900002 ], [ -121.554392316299996, 48.321462528600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000, "random": 28.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.819166039899997, 48.320150205300003 ], [ -117.826670839800002, 48.327146945499997 ], [ -117.833986735799996, 48.353122342900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000, "random": 184.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329829059700003, 47.704134634699997 ], [ -122.329952106299999, 47.704882007199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000, "random": 159.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.154828224400006, 47.274967721400003 ], [ -122.152629008199995, 47.274448600299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200, "random": 171.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.841560284099998, 47.410924864 ], [ -122.838363531100001, 47.410922375600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400, "random": 36.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385482118499993, 47.946057096099999 ], [ -124.385457650199996, 47.948085936299996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500, "random": 143.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161116265700002, 47.340641815700003 ], [ -123.161323536300003, 47.333867098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700, "random": 111.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.860540292699994, 47.423328077500003 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000, "random": 124.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.027992805500006, 47.359680347900003 ], [ -122.020926540700003, 47.361394117099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430, "random": 199.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.375260257600004, 46.129716562399999 ], [ -118.372622271500006, 46.147436197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000, "random": 170.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552592386800001, 45.667269374599996 ], [ -122.552555247699999, 45.677831341699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000, "random": 87.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.137126389299993, 46.221619445499996 ], [ -119.134005824, 46.2288412929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400, "random": 176.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348249025300007, 48.4942122629 ], [ -122.377330564199994, 48.515561334899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000, "random": 58.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.509518930300004, 45.849808906200003 ], [ -121.510864891400004, 45.865505866299998 ], [ -121.521232831899994, 45.884748055700001 ], [ -121.499674197900006, 45.915317054 ], [ -121.489450713, 45.960811529600001 ], [ -121.493535282300002, 45.968435289200002 ], [ -121.525210308599995, 45.9957998151 ], [ -121.533733565099993, 45.998403068800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": null, "random": 188.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.794473089500002, 48.098315156799998 ], [ -119.790196608299993, 48.100144655100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000, "random": 83.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.445709836900001 ], [ -122.5823712081, 48.454401804699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000, "random": 144.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.799623657799998, 48.050485332299999 ], [ -122.815529775599998, 48.068412549100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000, "random": 22.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664164383799999, 45.6564855831 ], [ -122.666920309700004, 45.663291930500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000, "random": 66.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.334192049500004, 47.590279780800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000, "random": 39.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345492024099997, 47.752635419400001 ], [ -122.345920634, 47.770834163700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800, "random": 75.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.685005097499996, 48.650649293199997 ], [ -118.673811891499994, 48.650431699499997 ], [ -118.670635263199998, 48.654138832599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600, "random": 124.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228797033399999, 46.322331888 ], [ -120.117378226699998, 46.248725870800001 ], [ -120.041926287600006, 46.221991493099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190, "random": 63.927 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.584396609699994, 46.533432677599997 ], [ -118.565160662400004, 46.537428166 ], [ -118.534825247, 46.572156727399999 ], [ -118.561154034200001, 46.627326138400001 ], [ -118.556848579199993, 46.635516328100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570, "random": 13.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.246433641500005, 46.055605308700002 ], [ -122.245609134899993, 46.055680719800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300, "random": 30.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262812267699999, 48.992749594800003 ], [ -122.265005071199994, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400, "random": 161.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.483953405400001, 46.795471160200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000, "random": 113.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.496735426400001 ], [ -122.252782505699997, 48.502886244300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300, "random": 196.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.056208336699996, 48.7288096268 ], [ -121.024812358099993, 48.7241331 ], [ -120.968318631900004, 48.705224961299997 ], [ -120.919119912499994, 48.705888890600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000, "random": 117.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.788090911200001, 46.967896691 ], [ -123.801005869, 46.971539450800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 161.296 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612626586600001, 48.493451127500002 ], [ -122.612833645500004, 48.496398719699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100, "random": 119.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.637751379400001, 48.063009348500003 ], [ -117.636770498199994, 48.062719337099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900, "random": 120.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.954577124599993, 48.075450517699998 ], [ -123.916784450199998, 48.067797845 ], [ -123.858852409199997, 48.049459926700003 ], [ -123.826778905099999, 48.052291291899998 ], [ -123.807677862399999, 48.048863648699999 ], [ -123.779905823099995, 48.060119262500002 ], [ -123.769762640300002, 48.075838811600001 ], [ -123.7358376193, 48.0813231124 ], [ -123.730668280800003, 48.086136372799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000, "random": 106.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.648308855899998 ], [ -122.579412024899995, 45.667671509400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000, "random": 144.752 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.375970115900003, 47.246990619100004 ], [ -122.373038808499999, 47.247348751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": null, "random": 181.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.086191127799999 ], [ -119.862843386099996, 47.089686787200002 ], [ -119.8540034289, 47.093700135 ], [ -119.853547960699998, 47.103252983899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900, "random": 58.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.080364486099995, 46.745280488500001 ], [ -124.082452188100007, 46.754402918799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100, "random": 67.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.060939272699997, 46.176246614599997 ], [ -119.074559942500002, 46.186526936600004 ], [ -119.077331005, 46.1940733709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900, "random": 59.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.430579358700001 ], [ -122.876359546700002, 47.4318329878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600, "random": 156.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.496876955600001, 47.797040983899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000, "random": 6.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168895232500006, 47.752366135400003 ], [ -122.161191571299995, 47.745209637099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": null, "random": 165.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.566673812700003, 47.2998586553 ], [ -119.561131671, 47.307552076599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000, "random": 90.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144515819600002, 48.227617892399998 ], [ -117.114708009799998, 48.222520715199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000, "random": 171.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292993751799997, 47.156628841500002 ], [ -122.294069570399998, 47.160493451299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000, "random": 131.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271494257699999, 47.377466250099999 ], [ -122.24684628, 47.377964291200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000, "random": 83.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661701633600003, 45.779505486300003 ], [ -122.656548613499993, 45.7796107255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000, "random": 59.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.394991893300002, 47.657584632800003 ], [ -117.3965543236, 47.661842762900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": null, "random": 174.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201670504199996, 47.721495814900003 ], [ -120.197066983400006, 47.735520968199999 ], [ -120.188416507400007, 47.745071832299999 ], [ -120.148957768100004, 47.762722774899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000, "random": 195.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.283809503200004, 47.760008456599998 ], [ -122.280599866599999, 47.756565837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000, "random": 178.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.400418780199999, 46.474277949700003 ], [ -120.387370638700006, 46.467004185500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800, "random": 134.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.754773443199994, 46.682331222199998 ], [ -123.745782143599996, 46.682825318699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000, "random": 127.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564647296199993, 47.507958508500003 ], [ -117.564633443899993, 47.513589589299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": null, "random": 60.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.103450609399999 ], [ -119.558893640899996, 47.103882462800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000, "random": 150.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.314791488500006, 47.797788041300002 ], [ -122.310957498199997, 47.8036768463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200, "random": 180.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.016289419499998, 46.139440137500003 ], [ -119.013609534699995, 46.147890311099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000, "random": 94.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.797563812500002, 46.224556295900001 ], [ -119.779376178199996, 46.221205174600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800, "random": 138.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.148584559100001, 47.888641626199998 ], [ -122.144284589, 47.891173255600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000, "random": 90.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257680961399998, 47.462429673300001 ], [ -122.253811390799996, 47.4617511143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000, "random": 101.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651197780100006, 48.3765935554 ], [ -122.646951111700005, 48.391135786100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000, "random": 139.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.489974820499995, 47.637797794500003 ], [ -117.483419434499993, 47.634916335500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000, "random": 69.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669463427099998, 48.280628991100002 ], [ -122.668693546900002, 48.283922347400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": null, "random": 20.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.288340059399999, 47.399384796299998 ], [ -120.2863393433, 47.398285650200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000, "random": 178.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.733806907100004 ], [ -122.296538445699994, 47.733797081399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000, "random": 188.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.142989269300003 ], [ -123.0963235193, 47.134272394600004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500, "random": 143.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.981395463599995, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800, "random": 109.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.072862455399999, 48.6070846621 ], [ -118.075403226600002, 48.606220092400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400, "random": 145.232 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045556290500002, 46.407257511799997 ], [ -117.045566791300004, 46.414486419900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000, "random": 130.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.419932827700002 ], [ -117.041885819499996, 46.419993072600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": null, "random": 65.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.781151703399999, 48.104181729499999 ], [ -119.775684841300006, 48.108642657799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000, "random": 194.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.920372202400003, 48.554843041200002 ], [ -117.925161936600006, 48.557993926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400, "random": 58.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897497354099997, 46.479396397800002 ], [ -122.881749481, 46.475259386899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000, "random": 103.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363209074799997, 47.2405896685 ], [ -122.344490274500004, 47.241062232600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700, "random": 56.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.150260957100002, 46.142040045900004 ], [ -118.132651075499993, 46.157455291300003 ], [ -118.130696857900006, 46.165415474500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800, "random": 189.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.205741983700001 ], [ -122.909567729, 46.233183287899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800, "random": 29.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.886859147400003 ], [ -124.104230764099995, 46.887871778200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200, "random": 59.739 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.919524219700001 ], [ -119.434163266900001, 48.932386835899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900, "random": 140.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385759302799997, 47.940854639400001 ], [ -124.385510623499997, 47.944172956300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000, "random": 124.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.938095491400006, 46.145703599800001 ], [ -118.935795755699999, 46.138481177499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000, "random": 119.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.561537528599999, 47.710001753 ], [ -122.570785594699998, 47.713968150699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000, "random": 40.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323204156299994, 47.592989716799998 ], [ -122.315658494299996, 47.594845418600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700, "random": 168.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176413614599994, 46.796858286499997 ], [ -119.176696844099993, 46.804638285300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400, "random": 185.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364342917200005, 46.888526117300003 ], [ -117.364248234599998, 46.889589876499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100, "random": 107.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.273133342400001, 47.540782054399997 ], [ -124.287584452, 47.536577081899999 ], [ -124.319847884699996, 47.516524179199997 ], [ -124.333430982500005, 47.519141528500001 ], [ -124.337624769399994, 47.5271647394 ], [ -124.333471332299993, 47.538223003500001 ], [ -124.356428060900001, 47.554005940800003 ], [ -124.374466812500003, 47.612938518100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000, "random": 56.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.465256976900001 ], [ -122.219199176399997, 47.467699012399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000, "random": 153.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.687327648299998, 45.815867042 ], [ -122.685471017200001, 45.815918602799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000, "random": 188.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128207298199996, 47.353574893599998 ], [ -122.110572710599996, 47.363944159500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000, "random": 187.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.056532360299997, 47.195825610500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000, "random": 41.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579254389100001, 45.780262944 ], [ -122.563268685200001, 45.7805094295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000, "random": 62.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.344680786799998, 47.671728963900001 ], [ -117.341965966499998, 47.672396184299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200, "random": 77.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.850561469400006, 46.660610888900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000, "random": 197.341 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629521198600003, 48.320290979399999 ], [ -122.628642300899998, 48.325690041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100, "random": 154.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.579864137300007, 47.812264536500003 ], [ -121.570503455, 47.813279974300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000, "random": 168.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.460090051099996, 47.158565784700002 ], [ -122.444060501300001, 47.158268456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000, "random": 110.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293168879500001, 47.850417256599997 ], [ -122.287576154700005, 47.858150705100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000, "random": 107.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.981774674500002 ], [ -122.189552282899996, 47.981753639600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000, "random": 76.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152647623600004, 47.804983049199997 ], [ -122.143430620900006, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000, "random": 182.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.906720867399997, 46.292249626500002 ], [ -122.914456217400001, 46.320216529699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000, "random": 77.966 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194984523499997, 47.502141777600002 ], [ -122.187184739399996, 47.501857325400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300, "random": 80.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129688599199994, 48.200331111600001 ], [ -122.129998052199994, 48.205757020199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900, "random": 172.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.871409960500003, 47.5666180383 ], [ -121.865544333200006, 47.5625960148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600, "random": 108.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.682365185600005, 46.653719422899997 ], [ -123.662398840700007, 46.646951966099998 ], [ -123.6542600354, 46.633500722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000, "random": 140.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100207740599998, 47.126232692499997 ], [ -123.102377983, 47.112671686100001 ], [ -123.09520306, 47.106661623500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500, "random": 64.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485156688800004, 48.993345617800003 ], [ -122.48508877, 49.000573970300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000, "random": 77.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.474633272700004, 47.393916472299999 ], [ -121.446973949300002, 47.398224332399998 ], [ -121.431214226099996, 47.424461473699999 ], [ -121.422341719499997, 47.428268878300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000, "random": 125.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626679802699996, 45.6184887446 ], [ -122.598939776600005, 45.612974016800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000, "random": 160.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.811612660199998 ], [ -122.192118820399998, 47.812969411099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000, "random": 90.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300115628599997, 47.918585403900003 ], [ -122.300174272299998, 47.921996202499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000, "random": 109.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632929343599997, 47.565033362400001 ], [ -122.630443639299997, 47.565025907699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000, "random": 106.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411137105700007, 47.6944973222 ], [ -117.411138760100002, 47.695364210599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000, "random": 177.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639256115600006, 47.867730523600002 ], [ -122.609054417199999, 47.8521256366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000, "random": 166.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349586635600005, 47.9814746809 ], [ -117.349645452600001, 48.006891476200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700, "random": 12.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.743735295700006, 48.025325982600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000, "random": 130.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125523976699995, 47.463515808799997 ], [ -122.137621938500004, 47.465295400099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300, "random": 86.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.417472887399995, 48.746283143299998 ], [ -117.414688142299994, 48.756626766499998 ], [ -117.402437726, 48.767667125899997 ], [ -117.4076382091, 48.776459047700001 ], [ -117.422085135299994, 48.782708073099997 ], [ -117.423235010699997, 48.788371205700003 ], [ -117.3946339612, 48.826819088800001 ], [ -117.388047876900004, 48.857011534900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200, "random": 6.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.696374883499999 ], [ -120.824534867899999, 45.698019660299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600, "random": 48.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.723851232200005, 47.772533091 ], [ -118.722593508499997, 47.770852469499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260, "random": 181.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.829386907599996, 47.140876411299999 ], [ -117.844891009700007, 47.154291328299998 ], [ -117.871041369599993, 47.157813877199999 ], [ -117.8713875973, 47.187839622699997 ], [ -117.890363619599995, 47.209222122699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000, "random": 51.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.793659489500001, 48.0437626987 ], [ -122.799623657799998, 48.050485332299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500, "random": 167.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.491553232699999 ], [ -122.910333599099999, 46.482928058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400, "random": 15.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.496037783899993, 46.867087036299999 ], [ -119.475337364799998, 46.862537997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000, "random": 143.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334702393599997, 47.537528499399997 ], [ -122.334726948400004, 47.537831831200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810, "random": 98.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.056080360799996, 46.325030540900002 ], [ -117.063967954600002, 46.328821040299999 ], [ -117.053320189399997, 46.335256508400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600, "random": 130.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.969891123699995, 46.401938255399998 ], [ -122.961521274199995, 46.401988221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500, "random": 71.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045566791300004, 46.414486419900001 ], [ -117.045192163600007, 46.416527455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000, "random": 116.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339365238799999, 47.5748709959 ], [ -122.336346718100003, 47.591654033399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500, "random": 75.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.706218593200006, 46.8779876268 ], [ -123.709580028600001, 46.8824221446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200, "random": 159.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.465118033899998, 46.282211226100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000, "random": 133.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.182392328899994, 46.715330188400003 ], [ -117.184576053, 46.720909245599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100, "random": 174.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.361391847199997, 46.549463895599999 ], [ -120.335129764, 46.548771068100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700, "random": 29.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.881018551099999 ], [ -117.364342917200005, 46.888526117300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200, "random": 87.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.769599737799993, 46.954635166599999 ], [ -123.770391468200003, 46.955307304500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000, "random": 103.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202462298100002, 47.095325541900003 ], [ -122.187759518799993, 47.081938472700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000, "random": 6.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.198694023100003, 47.2401706315 ], [ -123.191242888199994, 47.242935812799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410, "random": 68.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.097610307799997, 45.826067191100002 ], [ -121.077566918499997, 45.836913589200002 ], [ -121.064289423600002, 45.837612584699997 ], [ -121.060896024499996, 45.843177933500002 ], [ -121.044002493600004, 45.843371461099998 ], [ -121.042019508, 45.848528330800001 ], [ -121.037431310399995, 45.841060737600003 ], [ -121.015416675300003, 45.841381874200003 ], [ -121.0043878428, 45.846294675199999 ], [ -121.003848291799997, 45.857237926899998 ], [ -120.997219649499996, 45.857574439399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000, "random": 51.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233958638399997, 48.510507948 ], [ -122.232397920400004, 48.510494546399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000, "random": 141.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617473035900005, 47.365342874900001 ], [ -122.617793133600003, 47.366051473299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800, "random": 46.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.496488730199999, 47.798131725399998 ], [ -122.497554247799997, 47.798831291100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520, "random": 174.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.829286058400001, 45.694065406599996 ], [ -120.8236282381, 45.696374883499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000, "random": 136.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.530420705599994, 46.643087440400002 ], [ -120.5304211479, 46.648673581899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000, "random": 60.395 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637075428399996, 47.733467131899999 ], [ -122.637777688900002, 47.736774087199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000, "random": 163.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387305963599999, 46.0008733795 ], [ -118.389504835099999, 46.011689678300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900, "random": 100.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.186352443700002, 46.830341964500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990, "random": 66.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571060807899997, 46.970023831600002 ], [ -118.588821056599997, 46.970155862799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": null, "random": 88.388 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813196231899994, 47.612634348100002 ], [ -119.755706339, 47.612164193300003 ], [ -119.737823227500002, 47.605157884199997 ], [ -119.720721817200001, 47.591102789399997 ], [ -119.694629581200005, 47.584182828400003 ], [ -119.669767452599999, 47.599791676300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000, "random": 21.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243057082700005, 47.378057579 ], [ -122.237362405499994, 47.377914705199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000, "random": 132.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.361708309099996, 47.821485407600001 ], [ -122.3518259847, 47.821404826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000, "random": 13.387 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193293704599995, 47.6371487563 ], [ -122.188159619700002, 47.632297944299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": null, "random": 22.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.315534249899997, 47.101630402300003 ], [ -119.312911608, 47.103458954799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700, "random": 117.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.160167104799996, 47.653951884500003 ], [ -118.157668452699994, 47.654046720899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200, "random": 41.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.970613858599997 ], [ -123.802314696699995, 46.971505074900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": null, "random": 23.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.071479554600003, 47.648195998 ], [ -120.071448459500004, 47.649174407700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000, "random": 194.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.347086854799997, 46.061393464600002 ], [ -118.348481306400004, 46.063085166599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200, "random": 163.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.329101340899996, 47.787323772299999 ], [ -117.303824325, 47.787519684300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000, "random": 110.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.197652766600001, 47.528447926200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000, "random": 67.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432220221600005, 47.238642593500003 ], [ -122.433074099799995, 47.240304818299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000, "random": 199.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.098450693100006, 47.215078872699998 ], [ -123.082787016699996, 47.216778785700001 ], [ -123.054103736900004, 47.2368676818 ], [ -123.0463421603, 47.247280654299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000, "random": 131.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054226041299998, 47.693974327299998 ], [ -117.048376727199994, 47.695688856099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000, "random": 15.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.916960776300002, 46.737852894299998 ], [ -119.918138718799995, 46.745319525799999 ], [ -119.930383358300006, 46.756611664600001 ], [ -119.925060968599993, 46.799259524599996 ], [ -119.919467667899994, 46.813419137399997 ], [ -119.929564560299994, 46.8257316077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": null, "random": 51.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.042225635199998, 46.969683760899997 ], [ -119.040600717100006, 46.969676722800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300, "random": 135.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.959413616800006, 46.896544591599998 ], [ -122.950446235800001, 46.896255370299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500, "random": 59.561 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.590106375900007, 48.488568208499998 ], [ -121.582719030299998, 48.488844632899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000, "random": 114.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.074051220699999, 47.358100533399998 ], [ -122.056859545, 47.357999824899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300, "random": 169.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.155209171400003, 45.649156826899997 ], [ -121.104388387900002, 45.648591460600002 ], [ -121.081741522900003, 45.658490519899999 ], [ -121.037369215300004, 45.664174095600004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100, "random": 118.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.304061906800001 ], [ -122.514138715399994, 47.305285326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000, "random": 119.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294752189299999, 47.3943368889 ], [ -122.296674778699995, 47.399436909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000, "random": 130.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331494065300006, 48.413596405900002 ], [ -122.335142695200005, 48.421566968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300, "random": 163.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.031274976600002, 46.672351954299998 ], [ -120.975125560099997, 46.671171640600001 ], [ -120.953974219700001, 46.683679184699997 ], [ -120.942336238099998, 46.683459211799999 ], [ -120.923659893600004, 46.690189834599998 ], [ -120.919967452, 46.695363991199997 ], [ -120.907976328800004, 46.693935844599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000, "random": 180.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879310735199994, 46.977845548600001 ], [ -123.882350975700007, 46.979220086200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000, "random": 89.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.475500972600003, 47.715405460100001 ], [ -117.477586451400001, 47.715503692399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800, "random": 190.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961521274199995, 46.401988221 ], [ -122.949013170200004, 46.402084921899998 ], [ -122.927933023799994, 46.411610068800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000, "random": 74.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670186995799995, 45.775331764199997 ], [ -122.674247167299995, 45.7884633898 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000, "random": 39.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.569522175499998, 47.2976027952 ], [ -122.572847574400001, 47.301360429600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000, "random": 45.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.665613796700001, 46.813801431199998 ], [ -117.655064922899996, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400, "random": 21.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320722865899995, 48.912829965100002 ], [ -122.320664178399994, 48.920195997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000, "random": 139.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918327484900004, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000, "random": 44.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.053064106800001 ], [ -122.294762770600002, 47.059261084699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800, "random": 168.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.051781073399994, 46.3795878122 ], [ -117.044817678100003, 46.394140990099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000, "random": 5.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182562213300002, 47.686153273599999 ], [ -122.179669549600007, 47.699244791799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800, "random": 198.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121615187200007, 47.676595685599999 ], [ -122.121619318300006, 47.675441060799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400, "random": 9.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300696449699998, 46.885655934600003 ], [ -122.300484167799993, 46.887392915900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100, "random": 136.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.519208512800006, 46.049950256599999 ], [ -118.480204124, 46.049048642800003 ], [ -118.438085937300002, 46.0577292113 ], [ -118.415063311300003, 46.070678448300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000, "random": 131.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341055291700002, 48.431311013600002 ], [ -122.341026043900001, 48.4420756317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990, "random": 27.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.253697876299995, 46.720834603900002 ], [ -117.222631107599994, 46.725847558300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400, "random": 21.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364914465300004, 46.890563387699999 ], [ -117.3636245159, 46.890955849400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000, "random": 74.433 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179090836499995, 48.040414721600001 ], [ -122.177835226900001, 48.046828316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000, "random": 125.049 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.573975922299994, 47.642938657400002 ], [ -117.566205816600004, 47.642947503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200, "random": 195.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.914296787699996, 47.015110256299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000, "random": 136.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191598935599998, 48.012573229799997 ], [ -122.190360403, 48.011258829500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000, "random": 86.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.494952058799996, 45.724974359400001 ], [ -121.489969530099998, 45.724018802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900, "random": 62.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.375045609799997, 46.549398523800001 ], [ -120.361391847199997, 46.549463895599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000, "random": 132.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.622499665700005, 46.027136071699999 ], [ -120.575532397200007, 46.039428891299998 ], [ -120.534751098499996, 46.123950149700001 ], [ -120.515530493599996, 46.143093366599999 ], [ -120.5037936831, 46.172358962799997 ], [ -120.487854800199997, 46.197116284700002 ], [ -120.479708986399999, 46.203649917900002 ], [ -120.429869876400005, 46.222839543699997 ], [ -120.419279593, 46.233519365600003 ], [ -120.417664840599997, 46.246889012499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000, "random": 112.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346098276600003, 46.053273733 ], [ -118.346368735499993, 46.060517989899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800, "random": 99.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.291710569599999, 46.534745933400004 ], [ -120.250447797899994, 46.524888901499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900, "random": 57.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.669240505199994, 46.040335022800001 ], [ -118.658745078699994, 46.039408490699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300, "random": 39.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.338430626600001, 47.787597206599997 ], [ -117.329101340899996, 47.787323772299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500, "random": 140.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696088831899999, 47.524835015800001 ], [ -122.697108961799998, 47.524879573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000, "random": 164.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.284254798600003 ], [ -122.302875798200006, 47.300053013800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000, "random": 12.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181158518399997, 47.3649772586 ], [ -122.176118084400002, 47.363166787799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000, "random": 154.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809046887500003, 46.977210686299998 ], [ -123.813204082300004, 46.976649580699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200, "random": 21.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730710282900006, 46.682355779799998 ], [ -123.709438419799994, 46.677684145400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000, "random": 81.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244776326099995, 47.3180985045 ], [ -122.244685812399993, 47.329721985799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000, "random": 174.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303760564200005, 47.510609425299997 ], [ -122.312488370500006, 47.516734821100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220, "random": 37.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.040065100500001, 47.240331654800002 ], [ -117.039872538300003, 47.240275062099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000, "random": 148.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462747020199998, 47.215959170799998 ], [ -122.461552615700001, 47.228736272500001 ], [ -122.446627369200002, 47.230157966900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000, "random": 113.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.324862717299993, 47.675410475100001 ], [ -117.282785873700007, 47.681052638399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000, "random": 154.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.418933152799994, 48.113039913100003 ], [ -123.417186310700004, 48.112326338499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000, "random": 43.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624560448099999, 47.475269707800003 ], [ -122.642332524, 47.4978831795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": null, "random": 20.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.303554765499996, 47.410929097 ], [ -120.304106900199997, 47.412297837799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000, "random": 191.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045381435699994, 48.1774974633 ], [ -117.0441181005, 48.178055343499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000, "random": 6.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323606871600006, 47.7340600888 ], [ -122.312795996199995, 47.733976653100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000, "random": 80.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187296503900001, 48.144438471199997 ], [ -122.190021415199993, 48.159825483299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400, "random": 141.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.667477375700003 ], [ -117.359431970399996, 47.668611138199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300, "random": 102.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517031573500006, 46.533035016500001 ], [ -122.485346572799997, 46.534276731799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200, "random": 10.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195484263400004, 48.820649558100001 ], [ -122.171628361800003, 48.832355060099999 ], [ -122.155341196, 48.853030999 ], [ -122.152315166600005, 48.8665218931 ], [ -122.157023436599999, 48.880620672500001 ], [ -122.143323619100002, 48.904712373700001 ], [ -122.138001808699997, 48.9060853167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820, "random": 43.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.154559089200006, 47.039676186900003 ], [ -117.160861289600007, 47.050954630500001 ], [ -117.146111612, 47.067878035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000, "random": 86.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876510017399994, 46.543928554799997 ], [ -122.876494769900006, 46.555080308400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200, "random": 28.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.929564560299994, 46.8257316077 ], [ -119.938781506699996, 46.835315190400003 ], [ -119.937863401300007, 46.843234490500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600, "random": 97.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.043125887399995, 48.348189060800003 ], [ -120.036243503099996, 48.360787946199999 ], [ -119.980976306499997, 48.371736888 ], [ -119.932133725400007, 48.3695684578 ], [ -119.914175859099998, 48.374242439600003 ], [ -119.898418789600001, 48.3889279841 ], [ -119.888243079600002, 48.387799660399999 ], [ -119.864801083900005, 48.396933852799997 ], [ -119.823544965400004, 48.380893153599999 ], [ -119.784579131, 48.3798347197 ], [ -119.749742668600007, 48.366086568299998 ], [ -119.728766633500001, 48.367106699600001 ], [ -119.706563017099995, 48.362740641099997 ], [ -119.699333410500003, 48.346764899500002 ], [ -119.668092465499996, 48.323036739300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000, "random": 98.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428494472899999, 47.078773705 ], [ -122.435054349400005, 47.083944887599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100, "random": 123.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.268924316500005, 47.067984467800002 ], [ -123.252518965899995, 47.078996395899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000, "random": 30.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.183208277800006, 47.244320631100003 ], [ -121.176899997099994, 47.238944811700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270, "random": 91.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.037800322899997, 46.549187373599999 ], [ -124.037331726900007, 46.567241591600002 ], [ -124.026552155600001, 46.58429985 ], [ -124.039728302699999, 46.597881698499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300, "random": 40.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044085349400007, 47.0525732949 ], [ -124.050553109899994, 47.056629236299997 ], [ -124.108217474699998, 47.056023750400001 ], [ -124.153148232199996, 47.043350307399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900, "random": 143.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.551069679199998, 47.505156933899997 ], [ -122.529840017400005, 47.504901930199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500, "random": 148.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.721200055500006, 48.2626191576 ], [ -119.704906039099995, 48.278203789899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000, "random": 183.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547259863500003, 45.758946281599997 ], [ -122.5473330202, 45.770303523700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500, "random": 15.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333581230199997, 48.341165856 ], [ -122.332618262099999, 48.341159403600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": null, "random": 187.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.214171931899998, 47.656175559899999 ], [ -120.192470933099997, 47.683827524199998 ], [ -120.190232750099995, 47.694023640200001 ], [ -120.193718794800006, 47.699853448500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600, "random": 67.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320919167699998, 48.943809498299998 ], [ -122.320236381300006, 48.949281296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000, "random": 75.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179936919200003, 47.812576249400003 ], [ -122.175415037899995, 47.811547043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900, "random": 104.932 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959158209099996, 46.348167717800003 ], [ -123.955544747199994, 46.3504543 ], [ -123.949867913, 46.373269799699997 ], [ -123.953188389199994, 46.378421541800002 ], [ -123.949521156800003, 46.384398347299999 ], [ -123.951959767, 46.402502512600002 ], [ -123.938858253, 46.403238409799997 ], [ -123.934644570499998, 46.4158252959 ], [ -123.924298937200007, 46.419092955099998 ], [ -123.916010472099998, 46.429796141200001 ], [ -123.905851756800004, 46.429320091199997 ], [ -123.900365878200006, 46.434797424300001 ], [ -123.890681059900004, 46.435014693100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100, "random": 63.157 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.927933023799994, 46.411610068800002 ], [ -122.912117888599994, 46.4105521332 ], [ -122.891660015599996, 46.418162911099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000, "random": 14.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.180194115600003, 46.345278852200003 ], [ -120.179114482299994, 46.345519165399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100, "random": 75.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.991568619299997, 47.204446626799999 ], [ -121.991078005399999, 47.204921628199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600, "random": 151.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133344349400005, 46.826322014900001 ], [ -119.133187297500001, 46.840989608400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900, "random": 119.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.728286148199999, 46.577329772399999 ], [ -119.724843941800003, 46.568316690099998 ], [ -119.690281129100001, 46.546380582300003 ], [ -119.679092947200004, 46.526348272200003 ], [ -119.663420272799996, 46.513299188700003 ], [ -119.616605860500002, 46.502381391299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000, "random": 30.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.282622666400002 ], [ -122.317848845699999, 47.289841138299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": null, "random": 26.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.275276593300006, 47.132523853400002 ], [ -119.274000198099998, 47.133551295499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000, "random": 17.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321491668199997, 47.561289773 ], [ -122.320109391, 47.569219939200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000, "random": 83.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158789864100001, 46.209496312699997 ], [ -119.158836492899994, 46.212219507299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000, "random": 41.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280478947800006, 47.865772013 ], [ -122.278980462600003, 47.867386825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800, "random": 68.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202938502600006, 46.165273956500002 ], [ -119.197572222900007, 46.169229399400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000, "random": 70.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411138760100002, 47.695364210599998 ], [ -117.411153862700004, 47.713375171899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000, "random": 183.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472720513400006, 46.937733804200001 ], [ -122.471659728500001, 46.9377123473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330, "random": 57.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.679949024300001, 48.862366554600001 ], [ -121.675440298599995, 48.865191048600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500, "random": 37.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137980814599999, 48.917211390399999 ], [ -122.143204017900004, 48.917388145700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": null, "random": 152.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.392358608500004, 47.918864183700002 ], [ -119.396171573499998, 47.919272726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000, "random": 113.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.979941061399998, 46.666273563 ], [ -122.978490988800004, 46.672381097500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400, "random": 179.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252218766599995, 47.303482780300001 ], [ -122.253658472200001, 47.301293576100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000, "random": 27.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.357999824899998 ], [ -122.053676429700005, 47.357995259100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000, "random": 73.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.353351102700003, 47.7851161679 ], [ -122.351048352700005, 47.782943186399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000, "random": 76.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068928025899993, 47.724161605600003 ], [ -117.047676523800007, 47.733358665799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400, "random": 98.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.906271557799997, 46.981082315400002 ], [ -123.908386053900003, 46.981101741099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000, "random": 164.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.544028419100002, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000, "random": 188.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.293851920700007, 47.250946951400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270, "random": 152.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.039544621900006, 47.033662887 ], [ -122.043659030499995, 47.051688720900003 ], [ -122.041031056600005, 47.073412833500001 ], [ -122.047472656300002, 47.080452981100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610, "random": 121.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.412269855199995, 46.701216260800003 ], [ -118.344182075500001, 46.736172435599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000, "random": 167.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.949387860200005, 47.658311021199999 ], [ -117.937941742199996, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000, "random": 180.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.562413658599993, 45.606210172499999 ], [ -122.527484212399997, 45.5979967225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000, "random": 137.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054913420899993, 46.331157364600003 ], [ -124.054873250300005, 46.332317277199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000, "random": 22.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294065221799997, 47.077717873200001 ], [ -122.293924077300005, 47.080038511300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600, "random": 97.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813727298700002, 47.922952148299998 ], [ -122.794710098699994, 47.917547327800001 ], [ -122.758100077199998, 47.894541503500001 ], [ -122.739633872200002, 47.8911395035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000, "random": 62.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344621017700007, 47.705063887500003 ], [ -122.344733938499999, 47.706554117800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900, "random": 80.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364993136400003, 46.874611063800003 ], [ -117.365001117099993, 46.875100319600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000, "random": 54.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552151748699998, 45.68208727 ], [ -122.531897904499999, 45.682684997099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100, "random": 11.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.732310652699994, 46.324533827800003 ], [ -122.728844260700001, 46.3273755528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900, "random": 118.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.034031109400004, 48.927868621199998 ], [ -122.022755928799995, 48.927085030299999 ], [ -122.007539068300005, 48.919368790599997 ], [ -121.9849997675, 48.9008367068 ], [ -121.945053307500004, 48.8896410913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000, "random": 60.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.778025327899996, 48.108358907499998 ], [ -122.772874057500005, 48.109600754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000, "random": 131.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345578705600005, 47.780681488900001 ], [ -122.344690913099996, 47.7817536234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000, "random": 157.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249028468199995, 47.4830589416 ], [ -122.246088026600006, 47.482214079199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900, "random": 152.296 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886803316599995, 47.569096800600001 ], [ -121.887427285, 47.571845126699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000, "random": 68.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657978741700006, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600, "random": 119.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885330176300002, 47.913927091600002 ], [ -122.876734233400001, 47.905864379299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000, "random": 139.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342045024100003, 47.213577697200002 ], [ -122.313809808800002, 47.204468161800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": null, "random": 23.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.332058296699998, 47.626482681200002 ], [ -119.297877166500001, 47.616608480700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000, "random": 92.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.587377182499999 ], [ -117.411745008500006, 47.601977328499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000, "random": 76.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.303873683800006, 46.414040556400003 ], [ -120.284252451200004, 46.405664437900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400, "random": 126.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.047085011600004, 47.1062792018 ], [ -122.055419725099995, 47.112433828 ], [ -122.049031700800001, 47.130287962600001 ], [ -122.055720622199999, 47.138818733199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000, "random": 167.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990849498299994, 47.865717413600002 ], [ -121.979120459399994, 47.861321829600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700, "random": 32.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.306414616599994, 48.261716417199999 ], [ -124.264793495800006, 48.253169139299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780, "random": 166.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.841272719900005, 48.871952626300001 ], [ -117.827799169, 48.888248786799998 ], [ -117.813692616699996, 48.897117719900002 ], [ -117.8009917503, 48.899088371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000, "random": 122.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183614853199998, 48.051864397400003 ], [ -122.182293234300005, 48.051873874400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500, "random": 99.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.565015327600001 ], [ -122.626968669099995, 47.563649620699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200, "random": 135.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511460093300002, 45.716637242399997 ], [ -120.476914834400006, 45.702702538300002 ], [ -120.408308669099995, 45.705944172 ], [ -120.320910965500005, 45.7192547167 ], [ -120.2633497092, 45.733907703900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100, "random": 195.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.585343985400002, 48.360215974900001 ], [ -119.583575739099999, 48.361600175900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000, "random": 173.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208424345899999, 47.919513115699999 ], [ -122.207438282699997, 47.918856067699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": null, "random": 175.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.977574437499996, 48.130752286 ], [ -118.976256149700006, 48.135096529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": null, "random": 82.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.648337193300002 ], [ -119.123757455299994, 47.684669851400002 ], [ -118.997641541099995, 47.684484429800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": null, "random": 166.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.816994486400006, 47.165445994899997 ], [ -120.810858967900003, 47.1638387052 ], [ -120.804396129799997, 47.151352432199999 ], [ -120.783573285100005, 47.132517797399998 ], [ -120.726863476399998, 47.124847728399999 ], [ -120.716556976099994, 47.115900373700001 ], [ -120.714591251100003, 47.108965525800002 ], [ -120.691960834, 47.099261159299999 ], [ -120.623508512300006, 47.043255125400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500, "random": 128.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.117020060499996, 48.208448951699999 ], [ -122.104308415800006, 48.222137855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": null, "random": 80.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.639930354499995, 47.813732472 ], [ -119.638076096700004, 47.812191295300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": null, "random": 18.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.484229716900003, 47.393484868400002 ], [ -119.497304892800003, 47.424536612300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000, "random": 27.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106928824700006, 48.0063280675 ], [ -122.108092835899996, 48.013254047899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000, "random": 127.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.472049768399998 ], [ -122.215998368200005, 47.473770254400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000, "random": 73.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.341965966499998, 47.672396184299998 ], [ -117.328302663499997, 47.675441359600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000, "random": 89.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.713259493500004, 47.523971466399999 ], [ -122.706629013200001, 47.524789163100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500, "random": 161.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.161546213700007, 48.711848967500003 ], [ -121.135489484700003, 48.710141451200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310, "random": 13.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.953554316600005, 46.5073208118 ], [ -121.954272166500004, 46.516741194600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000, "random": 63.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.979002671100005, 46.331672597400001 ], [ -119.9790994297, 46.365427737399997 ], [ -119.970594385, 46.375313022599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": null, "random": 110.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.071448459500004, 47.649174407700002 ], [ -120.063467216700005, 47.649181278599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500, "random": 121.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.934698828799995, 47.192199706799997 ], [ -121.911303440300003, 47.166006055099999 ], [ -121.903224043700007, 47.164233431500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000, "random": 79.851 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.362741011400004, 46.041507820699998 ], [ -118.346459198399998, 46.051056921600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000, "random": 85.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.007230255699994, 47.1840617967 ], [ -120.965876132600002, 47.193616516900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400, "random": 70.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.677740465299998 ], [ -123.754773443199994, 46.682331222199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000, "random": 86.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.552013002099997 ], [ -122.209087407400006, 46.511489794299997 ], [ -122.182798105299995, 46.509401143600002 ], [ -122.156375670499997, 46.518996575700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000, "random": 12.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312795996199995, 47.733976653100001 ], [ -122.310073364900006, 47.7339389204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400, "random": 187.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.142254547199997 ], [ -119.171952885600007, 46.153817292699998 ], [ -119.149547750599993, 46.154170422100002 ], [ -119.124214058299998, 46.149340478699997 ], [ -119.066814936599997, 46.126888887900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000, "random": 61.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231398764900007, 47.396166360400002 ], [ -122.221480861800003, 47.403598799800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800, "random": 188.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740532149700002, 48.027070327099999 ], [ -122.735063893900005, 48.030824420599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500, "random": 199.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151589597300003, 48.946090996400002 ], [ -122.153615448400004, 48.949882378300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000, "random": 165.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705951896299993, 45.815636231 ], [ -122.702661090500001, 45.815547701600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200, "random": 51.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.787519684300001 ], [ -117.258208773099994, 47.7876105753 ], [ -117.229044672699999, 47.802095034499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000, "random": 184.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.437038326600003 ], [ -122.60172507, 48.441816691900002 ], [ -122.602890707, 48.445709836900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000, "random": 12.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.541484241899994, 48.011987346 ], [ -122.545504734600001, 48.015191195900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710, "random": 166.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.130472870899993, 47.242079002799997 ], [ -117.132009721, 47.274123715400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300, "random": 9.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.499879326400006, 48.710301255700003 ], [ -122.5020729469, 48.715965125899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000, "random": 125.737 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.167652506400003, 46.726238503700003 ], [ -117.1648061028, 46.723272356499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000, "random": 127.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.324949506199999, 47.760975014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000, "random": 22.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.817955935100002, 48.078069092200003 ], [ -122.815097401399996, 48.097207949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000, "random": 53.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.019798038299996, 47.1768730848 ], [ -122.016253916, 47.178420765399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000, "random": 99.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.426673153600007, 45.579885332700002 ], [ -122.417005457800002, 45.575197740100002 ], [ -122.396298268699994, 45.578556758600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500, "random": 109.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.401783262500004, 47.934588286900002 ], [ -124.385759302799997, 47.940854639400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000, "random": 173.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.192594841100004, 47.413683046800003 ], [ -123.217959682200004, 47.432796524799997 ], [ -123.210562271200004, 47.455407284800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": null, "random": 142.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.586741587099993, 47.0023957095 ], [ -120.555502563700003, 46.976959838500001 ], [ -120.530963491099996, 46.971801339099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600, "random": 168.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.775469671700002 ], [ -119.176494649899993, 46.782072591599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000, "random": 96.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344383008400001, 48.239891315900003 ], [ -122.330308403700002, 48.239693958899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700, "random": 68.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629242144599999, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000, "random": 121.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.976408319699999, 47.306520851 ], [ -117.964072776199998, 47.312061945700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000, "random": 146.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.333010153700002, 46.3081349737 ], [ -120.321048285, 46.321089582600003 ], [ -120.320503305499997, 46.331399090600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000, "random": 20.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.576764640199997, 47.486222185700001 ], [ -117.575965758600006, 47.486890338099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000, "random": 57.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.164627110400005, 47.757210535799999 ], [ -122.165346057799994, 47.754516793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": null, "random": 75.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.058178621300002, 47.856017657199999 ], [ -120.054025982499994, 47.855326762899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000, "random": 193.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.529484328400002, 47.134748182 ], [ -122.517339148900007, 47.1402583462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000, "random": 119.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.777466965299993, 47.867838558300001 ], [ -121.748839064899997, 47.867178683399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700, "random": 98.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.168091001400001, 46.191027551200001 ], [ -123.152718130599993, 46.193261962400001 ], [ -123.121081402499996, 46.190065032200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000, "random": 89.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280599866599999, 47.756565837 ], [ -122.276408048500002, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000, "random": 196.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.316117804900003, 47.7897600047 ], [ -122.314791488500006, 47.797788041300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900, "random": 139.627 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.945454993400006, 47.236177875400003 ], [ -123.931145249500005, 47.243796473800003 ], [ -123.918289174700007, 47.267288911100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000, "random": 42.308 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.302806556699998 ], [ -122.244302140900004, 47.302712250399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 108.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.320670922800005, 47.431977706799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600, "random": 85.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704489392200003, 48.892193408899999 ], [ -122.726383728900004, 48.892152279699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000, "random": 68.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.261565343100003, 47.831348407100002 ], [ -122.263270535, 47.832397759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300, "random": 81.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.278589829400005, 48.097019969599998 ], [ -117.272998256099996, 48.122049334499998 ], [ -117.303435399899996, 48.151795164299998 ], [ -117.301413406799995, 48.172607385500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000, "random": 111.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.420014403099998, 48.114684685299999 ], [ -123.427211290700001, 48.117642047700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000, "random": 189.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.855145538899997 ], [ -122.485955958800005, 48.862420218399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000, "random": 80.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324949506199999, 47.760975014 ], [ -122.321821318399998, 47.769655941800004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000, "random": 63.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298157912799994, 47.312895011 ], [ -122.293993914699996, 47.326235555899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500, "random": 160.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.713075020700003, 47.760489837199998 ], [ -118.710341624, 47.7597380108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100, "random": 83.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.372529039599996, 48.86403205 ], [ -117.369079137599996, 48.8628154536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000, "random": 18.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110572710599996, 47.363944159500001 ], [ -122.098714277300004, 47.369492418100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000, "random": 14.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.742490409399998 ], [ -117.172470015599998, 46.747419563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000, "random": 193.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.230733731599997, 47.817835607600003 ], [ -122.224013073500004, 47.809721463499997 ], [ -122.208930873499995, 47.809437448499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000, "random": 35.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.167144058600002 ], [ -118.232845233299997, 47.208378484400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000, "random": 199.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699652221400001, 47.5252936288 ], [ -122.700925811100007, 47.525407789200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000, "random": 131.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552764512099998, 45.6654147454 ], [ -122.552592386800001, 45.667269374599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400, "random": 167.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.421050314499993, 45.924138658899999 ], [ -122.380710601499999, 45.924278572799999 ], [ -122.379692780100001, 45.927861829500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200, "random": 65.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.525521910799995, 46.958589578900003 ], [ -121.532332495199995, 46.946931668600001 ], [ -121.531075310600002, 46.930943534299999 ], [ -121.535794516899998, 46.915604535500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000, "random": 113.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.983976336599994, 47.432043093399997 ], [ -121.967236218599993, 47.436449093100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200, "random": 123.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.365631712500004, 47.112475028 ], [ -118.365674851199998, 47.1169194581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000, "random": 43.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344490274500004, 47.241062232600001 ], [ -122.335050748, 47.244062294099997 ], [ -122.329833774799994, 47.257366559399998 ], [ -122.3081914375, 47.284254798600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350, "random": 111.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552489513599994, 46.641494681200001 ], [ -118.5525255652, 46.642228519900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720, "random": 114.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.265757964399995, 45.711153535199998 ], [ -121.247272167600002, 45.721711103499999 ], [ -121.244181878, 45.7277440027 ], [ -121.229868824299999, 45.729292887 ], [ -121.231423560600007, 45.737261284600002 ], [ -121.221621632199998, 45.7415590831 ], [ -121.222903344, 45.748171594799999 ], [ -121.208489151799995, 45.7508996878 ], [ -121.210902855399993, 45.760478560099997 ], [ -121.205395357300006, 45.7679900328 ], [ -121.213184099900005, 45.772415070500003 ], [ -121.207883874, 45.779291027 ], [ -121.205570273700005, 45.792557085200002 ], [ -121.194649921700005, 45.795047038 ], [ -121.169827870399999, 45.812276654400002 ], [ -121.153119387900006, 45.814953813 ], [ -121.151145783700002, 45.818334026400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": null, "random": 151.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.402914986699997, 46.971519895699998 ], [ -120.353361006100002, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.256574074699998, 46.949958202700003 ], [ -120.238285223399998, 46.943963765100001 ], [ -120.151783782199999, 46.943795133899997 ], [ -120.128529736199994, 46.938409907400001 ], [ -120.092331719499995, 46.944947566300002 ], [ -120.043471089799993, 46.936309792099998 ], [ -119.985668490899997, 46.939923999500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000, "random": 43.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287818599800005, 47.924514488600003 ], [ -122.284519740799993, 47.924487110100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800, "random": 143.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335262653900003, 47.416057096199999 ], [ -122.335244606, 47.423954462799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600, "random": 82.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048737936199998, 46.339771771499997 ], [ -117.048778895200002, 46.340650080300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300, "random": 167.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.013609534699995, 46.147890311099999 ], [ -119.024188294699997, 46.149871227699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": null, "random": 87.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.103458954799997 ], [ -119.309497313199998, 47.105841174600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000, "random": 99.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239846835099996, 47.644532783199999 ], [ -117.2398564282, 47.646212052700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600, "random": 136.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.660410934200002, 45.709731907399998 ], [ -121.626766506400003, 45.710480206500002 ], [ -121.60448404, 45.720874631500003 ], [ -121.560878346099997, 45.723055259799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400, "random": 12.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.082633971199996, 48.348568806899998 ], [ -120.078231726699997, 48.346462605900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880, "random": 178.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377247312500003, 46.171261278599999 ], [ -123.377141808800005, 46.180276374400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600, "random": 151.365 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.821799270900001, 46.524455646600003 ], [ -117.791959430199995, 46.5168198788 ], [ -117.765576876099999, 46.490972070300003 ], [ -117.738467898, 46.482343388099999 ], [ -117.703876668500001, 46.464325457199998 ], [ -117.688071123599997, 46.462746474500001 ], [ -117.662548626900005, 46.4746878646 ], [ -117.628745336400002, 46.478021616299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000, "random": 79.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.979770850500003, 46.660022128100003 ], [ -122.978020353, 46.660570661400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000, "random": 177.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612617318700003, 48.511792983799999 ], [ -122.612614699800005, 48.512615782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000, "random": 44.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434856954099999, 47.119480979099997 ], [ -122.434416219900001, 47.147529408600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000, "random": 136.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.925646077099998 ], [ -122.302810058600002, 47.929817519099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600, "random": 28.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.910259396399994, 47.659120641800001 ], [ -121.90705395, 47.6776154772 ], [ -121.920396291100005, 47.682901991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000, "random": 132.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181631231599994, 48.034487448100002 ], [ -122.179892135299994, 48.039576142599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300, "random": 136.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.836314269699997 ], [ -120.792112052700006, 45.848375413299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710, "random": 63.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575630911800005, 46.3701554294 ], [ -122.553890672700007, 46.371903656599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400, "random": 92.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.583078776199997, 48.065841690100001 ], [ -123.576471668500005, 48.0656101736 ], [ -123.558629214600003, 48.081956269599999 ], [ -123.559067470200006, 48.088831529 ], [ -123.542425415, 48.096386168800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400, "random": 80.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.252147575799995, 47.798129800600002 ], [ -124.250508615499996, 47.804211862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000, "random": 137.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.308076516400007, 47.275568560899998 ], [ -122.309832841599999, 47.2779256038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000, "random": 68.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965868137599998, 47.199186921500001 ], [ -121.9637319287, 47.199146895600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000, "random": 66.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.659666966800003, 48.286359741399998 ], [ -122.657869700299997, 48.2871805041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000, "random": 71.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595381933100001, 48.34623453 ], [ -119.591078218299998, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100, "random": 186.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603123068399995, 45.9389260974 ], [ -119.601830692299998, 46.102565853100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000, "random": 57.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334359019499999, 47.548548451 ], [ -122.339379851700002, 47.562061614199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000, "random": 16.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.030444367199998 ], [ -122.067000553100002, 48.031134417300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000, "random": 48.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297950785699996, 46.980094485599999 ], [ -122.296344995400005, 47.0166678167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000, "random": 169.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846710272600006, 46.859045713699999 ], [ -122.828370843499997, 46.857484681099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700, "random": 116.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.769069669299995, 48.139676945799998 ], [ -123.746224608399999, 48.137356281899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000, "random": 159.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385831363199998, 47.982748053900004 ], [ -122.392171147400006, 47.986605199400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600, "random": 83.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.047472656300002, 47.080452981100002 ], [ -122.048032810099997, 47.0854558399 ], [ -122.057602940899997, 47.0916817763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000, "random": 185.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.358098863599999 ], [ -122.1070219689, 47.358060180499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800, "random": 167.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.349924354400002, 46.069095536 ], [ -118.351239545599995, 46.069099866199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 82.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324544580500003, 47.436711554299997 ], [ -120.3225528424, 47.434276469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000, "random": 23.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.455259890500002, 48.240034233 ], [ -122.447469078099999, 48.241938468800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000, "random": 67.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815518941400001, 46.975464231899998 ], [ -123.816707412599996, 46.9748418645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000, "random": 90.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.132246497699995, 48.917315639800002 ], [ -122.102984160899993, 48.916997040299997 ], [ -122.079909498199996, 48.924179648600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700, "random": 65.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446916738200002, 45.910167278 ], [ -122.446800662900003, 45.913702032899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900, "random": 127.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.113035482200004, 48.624541672200003 ], [ -118.122722282300003, 48.627437196700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": null, "random": 199.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.960076450800003, 46.940448732900002 ], [ -119.956933746399997, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760, "random": 167.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467199858100003, 47.0097954879 ], [ -117.490699524799993, 47.015148808799999 ], [ -117.498907800500007, 47.033033125599999 ], [ -117.512262025200002, 47.040723695600001 ], [ -117.524091053800007, 47.062203222800001 ], [ -117.545125112, 47.08432072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000, "random": 77.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.655737714700003 ], [ -122.070683973300007, 47.656083693600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300, "random": 198.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.333488752700006, 46.937467422799998 ], [ -117.335165828900003, 46.942808011899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000, "random": 13.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656548613499993, 45.7796107255 ], [ -122.605320177, 45.780129801500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000, "random": 82.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.009898974199999, 48.071628269 ], [ -121.990053825299995, 48.083409856199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000, "random": 121.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.484172063499997, 46.938007018199997 ], [ -122.472720513400006, 46.937733804200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300, "random": 142.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.485900583099998 ], [ -121.590106375900007, 48.488568208499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000, "random": 187.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216263351899997, 47.478470607600002 ], [ -122.217077273100003, 47.479908761399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600, "random": 118.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.967463185100002 ], [ -124.403657352300002, 47.970099866299996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500, "random": 32.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.252518965899995, 47.078996395899999 ], [ -123.233037072800002, 47.083276060499998 ], [ -123.221728577799993, 47.096152986600003 ], [ -123.169892022, 47.099323329900002 ], [ -123.137011834399999, 47.106127557199997 ], [ -123.132767539200003, 47.110886788199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900, "random": 127.837 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.552013002099997 ], [ -122.275303538700001, 46.553456335600004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000, "random": 164.272 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.155021291500006, 47.017344680199997 ], [ -124.158562931299997, 47.042143090300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000, "random": 56.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663319481499997, 45.688951116799998 ], [ -122.658726878400003, 45.6977308437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400, "random": 97.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.442124530399994, 48.107323541500001 ], [ -123.440954132100003, 48.108110856800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500, "random": 42.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.978427891599999 ], [ -118.543979549100001, 46.996993641400003 ], [ -118.476340768100002, 47.024825293600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000, "random": 47.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.388880896499998, 46.023864194700003 ], [ -118.387709362, 46.027451012900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000, "random": 122.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345489043399994, 47.752490517399998 ], [ -122.345492024099997, 47.752635419400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300, "random": 47.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.014914702799999, 48.26670449 ], [ -122.010267715400005, 48.2683045733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900, "random": 95.777 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.727758078299999 ], [ -121.487502730599999, 45.727786525 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000, "random": 24.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293851920700007, 47.250946951400003 ], [ -122.294736287700005, 47.2575680773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000, "random": 43.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326526705800006, 47.603443393299997 ], [ -122.330796798799994, 47.608824904400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000, "random": 35.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903136226599997, 46.385390741199998 ], [ -122.899606179700001, 46.398070720299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000, "random": 95.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309832841599999, 47.2779256038 ], [ -122.311388725499995, 47.2800166221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000, "random": 159.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.896051288500004, 46.980998530599997 ], [ -123.897076554700007, 46.981004020500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400, "random": 182.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.424463433100001, 45.643325581100001 ], [ -122.417694339600004, 45.641107566099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500, "random": 161.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.651386023200004, 48.504193452800003 ], [ -121.642180426199999, 48.495334999699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000, "random": 77.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288664435200005, 48.843341019900002 ], [ -122.288327355299998, 48.854065229299998 ], [ -122.293860970699996, 48.857565579199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600, "random": 32.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161323536300003, 47.333867098 ], [ -123.148514151399993, 47.321809282099998 ], [ -123.133682051400001, 47.318666754900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000, "random": 159.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.985830348199997, 47.742682870899998 ], [ -121.985662542599997, 47.745168652300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100, "random": 105.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.623220084899998, 47.469905047300003 ], [ -117.613426266499999, 47.471353912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200, "random": 135.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715551513099996, 48.280931139700002 ], [ -117.717959422600003, 48.285470006399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200, "random": 42.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255634568199994, 48.839046183599997 ], [ -122.239504252499998, 48.831823512100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600, "random": 36.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507545144299996, 47.7371619655 ], [ -117.507510958300003, 47.741638156500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000, "random": 29.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989641515900004, 47.213883977099997 ], [ -121.989711786399994, 47.228316551900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000, "random": 69.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281493610200002, 47.463910419100003 ], [ -122.273758761400003, 47.465095805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400, "random": 151.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.422185317900002, 48.565442515800001 ], [ -122.4228327812, 48.599331285300003 ], [ -122.431475859399995, 48.604413221500003 ], [ -122.439355010300005, 48.617793965600001 ], [ -122.442411123400007, 48.615387797499999 ], [ -122.448077930599993, 48.623742527799998 ], [ -122.462714495100002, 48.626500790199998 ], [ -122.4898137335, 48.6488973023 ], [ -122.492151906800004, 48.661706411200001 ], [ -122.485239836199995, 48.668069469099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000, "random": 12.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631489075399998, 47.504928710800002 ], [ -122.624429651, 47.504849437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000, "random": 32.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.749722348399999, 45.9177650679 ], [ -122.753449416099997, 45.923645172599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": null, "random": 13.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.294218817200004, 47.149727948900001 ], [ -119.311843170200007, 47.156724983700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000, "random": 51.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.200787005199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000, "random": 140.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292441666499997, 47.735585142300003 ], [ -122.280297386599997, 47.752002751100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000, "random": 97.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.979430596900002 ], [ -122.185861118, 47.979473196500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800, "random": 155.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.720736025400001, 48.026811053700001 ], [ -122.697769073, 48.018281475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100, "random": 18.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.861982835899994, 46.851655257200001 ], [ -122.858695725399997, 46.8532935721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000, "random": 87.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097157172300001, 47.181812840200003 ], [ -123.097337669699996, 47.182654412799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700, "random": 27.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.420257639400006, 46.436042089499999 ], [ -117.402156754399996, 46.444197372200001 ], [ -117.335145353399994, 46.4329973878 ], [ -117.323681866499996, 46.436435528799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700, "random": 146.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979117066100002, 47.199396871700003 ], [ -121.965868137599998, 47.199186921500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500, "random": 82.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.643095278200001 ], [ -117.668611477100001, 47.642951301700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": null, "random": 175.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.628766045199995, 47.589121012600003 ], [ -120.613968958499996, 47.580745454899997 ], [ -120.612801962899994, 47.573591045699999 ], [ -120.605716968, 47.567442828200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300, "random": 179.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310528437800002, 46.041780703500002 ], [ -122.305684987, 46.049059604699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700, "random": 120.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.366284463200003, 46.197242044100001 ], [ -123.363333971200007, 46.1950290192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000, "random": 169.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.034209998400001, 47.159549653900001 ], [ -122.019798038299996, 47.1768730848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800, "random": 102.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.120553856399994, 48.526076599200003 ], [ -122.1053402812, 48.526935763499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900, "random": 52.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726659829599996, 48.9068699571 ], [ -122.7265048358, 48.917598413199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700, "random": 30.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471184156600003, 46.2575715157 ], [ -119.425480768499995, 46.2734329699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100, "random": 105.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349794205400002, 48.032114906300002 ], [ -117.343635146, 48.047403949299998 ], [ -117.344202033800002, 48.061754727 ], [ -117.324163432199995, 48.07997589 ], [ -117.324990554099998, 48.091918625600002 ], [ -117.300604824700002, 48.098504866299997 ], [ -117.284168690399994, 48.096746748299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000, "random": 189.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.004448625699993, 48.0205093633 ], [ -122.995804225599997, 48.024055760499998 ], [ -122.978516714500003, 48.046585562 ], [ -122.961493482099996, 48.050293977400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000, "random": 7.886 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.362749748699997, 48.108559920200001 ], [ -123.360196787500001, 48.109344406699996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000, "random": 50.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802398376300005, 46.967887712299998 ], [ -123.802397479299998, 46.9687249499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100, "random": 141.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.818184803500003 ], [ -122.304976714299997, 48.832388806399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200, "random": 153.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.048219812100001, 46.7995487771 ], [ -119.014123186899994, 46.794659240800001 ], [ -118.899091142399996, 46.794010221199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000, "random": 138.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.200787005199999 ], [ -123.099712027199999, 47.205696953500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500, "random": 140.756 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.073517983399995, 48.341795184600002 ], [ -120.078231726699997, 48.346462605900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400, "random": 164.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593576416800005, 47.563948315899999 ], [ -117.593599657300004, 47.5661401873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000, "random": 40.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183877881399994, 47.174736546 ], [ -122.1691805082, 47.169896643900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000, "random": 152.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692635556699997, 47.663252331199999 ], [ -122.692988927399995, 47.661397052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500, "random": 196.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.860105265800001 ], [ -117.660195675699995, 47.887269221 ], [ -117.660024695399997, 47.8932611587 ], [ -117.668572481799998, 47.894342293400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000, "random": 186.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669376341299994, 45.632571970599997 ], [ -122.670439506700006, 45.632577207799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000, "random": 109.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.234976754500003 ], [ -122.491951754400006, 47.2348877891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": null, "random": 80.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.560510624499997, 47.308418187 ], [ -119.554898095499993, 47.306482052600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700, "random": 125.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463166107899994, 48.964615040399998 ], [ -122.451971471799993, 48.964651037800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000, "random": 94.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.146615172400004, 46.217968659900002 ], [ -119.145732405700002, 46.217595725400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600, "random": 46.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.904018699199995, 47.188626240200001 ], [ -120.909723769199999, 47.190106762600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000, "random": 96.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143054576699996, 47.977909322099997 ], [ -122.135501710200003, 47.972868825600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700, "random": 103.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682262921499998, 47.579790864700001 ], [ -117.675621899, 47.579410600700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": null, "random": 13.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263021805500003, 47.637183544099997 ], [ -119.263371855399996, 47.638306306200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480, "random": 43.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.776045267699999, 48.928358074 ], [ -117.772249994299997, 48.944995950299997 ], [ -117.790310030100002, 48.944472558400001 ], [ -117.793458758900002, 48.955565369299997 ], [ -117.803578175499993, 48.961075513200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000, "random": 129.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.375313022599997 ], [ -119.966750153099994, 46.379458651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": null, "random": 159.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.680267402200002, 48.008990227200002 ], [ -119.685472808699998, 48.0097116078 ], [ -119.691075897800005, 48.018709410200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400, "random": 83.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.640540398400006, 46.334941224399998 ], [ -123.638490685099995, 46.335207877800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000, "random": 38.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.431030774600003, 48.5268378739 ], [ -121.423972012799993, 48.549134164599998 ], [ -121.410725826299995, 48.564458051499997 ], [ -121.4024787094, 48.583136517200003 ], [ -121.375975903599993, 48.591890566799997 ], [ -121.362319661499996, 48.606256059700002 ], [ -121.361058331400002, 48.614514294700001 ], [ -121.323200632600006, 48.632921979099997 ], [ -121.3028444423, 48.650452046200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000, "random": 10.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295097717100006, 47.047555150800001 ], [ -122.294801654, 47.053064106800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000, "random": 126.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.043999294099997 ], [ -123.286436785199996, 47.054106290100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400, "random": 63.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.819662877499994, 48.04931957 ], [ -122.8179486123, 48.071156388600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000, "random": 12.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.824934680200002, 46.970652030700002 ], [ -123.825814271400006, 46.971474761700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000, "random": 133.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563268685200001, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600, "random": 188.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.205738671700004, 47.981949443399998 ], [ -122.212960739, 47.982029513699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": null, "random": 139.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.698707638499997, 48.103403189200002 ], [ -119.685372148200003, 48.104020449099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900, "random": 74.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104308415800006, 48.222137855 ], [ -122.069679602600004, 48.23396758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000, "random": 90.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163645855400006, 47.879601492200003 ], [ -122.160861847800007, 47.8814089364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000, "random": 131.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.523271327399996, 47.653629992799999 ], [ -122.532036854400005, 47.672053053100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300, "random": 33.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521393624699996, 48.408433846900003 ], [ -119.523296206200001, 48.409470013799996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000, "random": 54.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433966120899996, 47.205404862400002 ], [ -122.433966807700003, 47.206401298899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400, "random": 86.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.585162399400005, 47.092333980500001 ], [ -121.567425209, 47.040379196099998 ], [ -121.5551957128, 47.0303667214 ], [ -121.534091938299994, 47.022575639700001 ], [ -121.527644598799995, 47.012875758299998 ], [ -121.535952920900002, 46.980696515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400, "random": 53.737 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.568132031799998 ], [ -117.145445481500005, 46.572191855600003 ], [ -117.157084679500002, 46.5836610466 ], [ -117.172901762, 46.591922349500003 ], [ -117.160724520299993, 46.616443833 ], [ -117.187576040799996, 46.647802853599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000, "random": 160.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.531933408199997 ], [ -122.334702393599997, 47.537528499399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760, "random": 143.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.617451727700001 ], [ -118.652672234400001, 48.600003888400003 ], [ -118.644329631700003, 48.5973721967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800, "random": 13.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.942272354599993, 47.916813951100004 ], [ -118.911555399600005, 47.9213656063 ], [ -118.863354704499997, 47.901154007099997 ], [ -118.853739297800004, 47.883868775899998 ], [ -118.723851232200005, 47.772533091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900, "random": 198.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.132767539200003, 47.110886788199998 ], [ -123.105067388600006, 47.129641063599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100, "random": 38.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.528332171700001, 46.937764175 ], [ -122.492390975500001, 46.937977309899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200, "random": 108.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.767190433500005, 46.6744470342 ], [ -123.7615325079, 46.677740465299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800, "random": 165.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487123072399996, 46.257906344299997 ], [ -119.487330415100004, 46.260755377499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000, "random": 93.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553076278600003, 48.822516070900001 ], [ -122.573687598, 48.844831450599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000, "random": 130.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.523470564500002, 46.661985736299997 ], [ -120.5197381527, 46.668125952899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": null, "random": 81.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.364767205800007, 47.619390169399999 ], [ -119.332058296699998, 47.626482681200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000, "random": 60.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651129321200003, 47.565545994200001 ], [ -122.647571915599997, 47.565258176100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700, "random": 6.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.329418103500004, 46.960126358 ], [ -123.311013336499997, 46.938552592599997 ], [ -123.289881683800004, 46.900863713299998 ], [ -123.248062190100001, 46.845884290299999 ], [ -123.239989388300003, 46.8414422249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300, "random": 136.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.158793713899996, 48.238953466799998 ], [ -122.1669055996, 48.255016462699999 ], [ -122.166633346300003, 48.2648550145 ], [ -122.170997888499997, 48.267960125199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200, "random": 157.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054404370699999, 46.352653916100003 ], [ -124.053680407900004, 46.367582858299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000, "random": 172.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.740854975199994, 45.911170197300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300, "random": 35.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.502302775900006, 48.402278157200001 ], [ -119.5084842224, 48.403136738900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000, "random": 190.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.482884856799998, 45.722539983099999 ], [ -121.467735256400005, 45.715283597800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000, "random": 136.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662126769699995, 47.571362035299998 ], [ -122.656562609900007, 47.570330458100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600, "random": 109.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.743763598499996, 46.715301692700002 ], [ -123.740663072199993, 46.725386481500003 ], [ -123.747921108300005, 46.733567417300002 ], [ -123.743904499600006, 46.739343071500002 ], [ -123.754733782499997, 46.760574447 ], [ -123.740655286700004, 46.778157634499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000, "random": 49.748 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.720909245599998 ], [ -117.183098546500005, 46.728416263500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190, "random": 73.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.557835361399995, 46.643125399399999 ], [ -118.557997059100003, 46.644559999499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800, "random": 181.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039552860800001, 48.182953896900003 ], [ -117.0395862835, 48.181055213699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200, "random": 65.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.602182966400001 ], [ -121.668828194, 46.610192722699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850, "random": 73.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.167496769400003, 46.9781722496 ], [ -121.127381782599997, 46.981007469200001 ], [ -121.114380514800004, 46.987075613400002 ], [ -121.0946681442, 46.989267303 ], [ -121.091382184599993, 46.985618151399997 ], [ -121.094611184800002, 46.970342713299999 ], [ -121.047290544299997, 46.928324619199998 ], [ -121.046742942899996, 46.920190613099997 ], [ -121.000008664099994, 46.892140688799998 ], [ -120.987418402900005, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000, "random": 195.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657592177799998, 48.293044692199999 ], [ -122.655009775600007, 48.296169091400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": null, "random": 7.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.362657404499998, 47.815367954899997 ], [ -119.362262838800007, 47.860085765500003 ], [ -119.370723211400005, 47.873830969899998 ], [ -119.372644044099999, 47.904567970700001 ], [ -119.392358608500004, 47.918864183700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500, "random": 58.077 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617444360700006, 48.891747907 ], [ -122.638529037400005, 48.891709409500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000, "random": 36.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.683470598300005, 47.569596387099999 ], [ -122.673143573900006, 47.568179933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": null, "random": 195.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.835643111799996, 47.234027670400003 ], [ -119.832023730100005, 47.2340352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000, "random": 42.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.325524706799996, 46.081735058900001 ], [ -118.304381981399999, 46.081133974700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500, "random": 79.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.297649161500004, 46.57004764 ], [ -123.296317791800007, 46.576533839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600, "random": 105.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.980935669499999 ], [ -123.889523026299997, 46.980961881 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000, "random": 128.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.558935183800003, 47.595361529199998 ], [ -117.495753249700002, 47.624062761300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990, "random": 39.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.821714855600007, 46.524855555800002 ], [ -117.813822898200002, 46.522181513600003 ], [ -117.789186845100005, 46.525469168900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200, "random": 135.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197493669699995, 46.811423551700003 ], [ -119.173708393699997, 46.811531078199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650, "random": 19.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.212746255599995, 47.457686866300001 ], [ -123.216374178400002, 47.462553504100001 ], [ -123.210549580299997, 47.476434858099999 ], [ -123.210305096300004, 47.492304965199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000, "random": 13.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305256741600004, 47.543467570099999 ], [ -122.316635572899997, 47.551762746800001 ], [ -122.321491668199997, 47.561289773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000, "random": 17.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.935418056499998, 46.959676324500002 ], [ -122.930355641299997, 46.976133841500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800, "random": 65.449 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.743735295700006, 48.025325982600002 ], [ -122.740532149700002, 48.027070327099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000, "random": 130.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.980935669499999 ], [ -123.8857715571, 46.989221384300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000, "random": 12.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296698139599997, 47.176629062899998 ], [ -122.284847670800005, 47.181573349200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100, "random": 94.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073001201099999, 47.2221634757 ], [ -117.073000361, 47.223043156099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500, "random": 92.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.879282575900007, 47.669483932600002 ], [ -117.877917606599993, 47.669492940399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600, "random": 133.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050176045499995, 46.475581515199998 ], [ -117.069818918300001, 46.486190991699999 ], [ -117.077465049599994, 46.497786296699999 ], [ -117.087484261100002, 46.539395298300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400, "random": 51.478 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814156772700002, 46.974248551 ], [ -123.811070066900001, 46.973262377700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": null, "random": 197.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.827257676599999, 47.106307188 ], [ -119.762408837899997, 47.146818992100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700, "random": 6.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.899961343100003, 47.187712731600001 ], [ -120.892643017300003, 47.185219467700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100, "random": 131.836 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179908097500004, 46.729629926199998 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500, "random": 91.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.309728932499993, 46.365077469399999 ], [ -120.251843555400001, 46.331539616400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000, "random": 62.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497820086399997, 48.783587733399997 ], [ -122.505656007200002, 48.785005835600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000, "random": 133.588 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180984819399995, 46.730694767199999 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000, "random": 88.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363416141800002, 47.790622223299998 ], [ -122.3582161004, 47.791729721099998 ], [ -122.353351102700003, 47.7851161679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000, "random": 51.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888992968500006, 47.144192540600002 ], [ -123.879496601, 47.1617156776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000, "random": 85.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.401936063400001, 47.239469308 ], [ -122.396987132299998, 47.237584311799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000, "random": 164.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.356706419099993, 47.781286752100002 ], [ -117.353191655499998, 47.787208051500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000, "random": 90.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.711427765899998, 47.374522075599998 ], [ -122.694793762299994, 47.381239063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500, "random": 35.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.376030476500006, 48.891834109 ], [ -122.374565794299997, 48.904788295 ], [ -122.358535363800002, 48.9093392192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500, "random": 23.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.277256571300001, 46.772497546 ], [ -117.308363602599997, 46.788409983699999 ], [ -117.328066208199999, 46.830123369399999 ], [ -117.338401674300002, 46.838069271499997 ], [ -117.339143604, 46.850435511500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800, "random": 105.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378772240299995, 47.812427925900003 ], [ -122.372126264299993, 47.817776268499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000, "random": 26.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087849026499995, 46.731794332100002 ], [ -117.0573687, 46.739057813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000, "random": 46.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.337050963199999, 48.503991479 ], [ -122.342600390300007, 48.513479003100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500, "random": 26.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.670635263199998, 48.654138832599997 ], [ -118.665529603699994, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.664034573199999, 48.679033690799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900, "random": 171.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.153615448400004, 48.949882378300003 ], [ -122.163014477, 48.967332821200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000, "random": 128.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.600874425699999, 45.687439573699997 ], [ -122.640386359700003, 45.712503753900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100, "random": 45.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076895172600004, 46.910582235900002 ], [ -117.076982486199995, 46.910862134799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900, "random": 30.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.015580453200002, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.072862455399999, 48.6070846621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000, "random": 195.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189505252100005, 46.267690257300004 ], [ -119.170552412600003, 46.261830974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000, "random": 177.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411298272899998, 47.739633774 ], [ -117.410423958199999, 47.740712806499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000, "random": 131.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.769986980299997 ], [ -122.283809503200004, 47.760008456599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500, "random": 93.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.442670124299994, 48.701328551 ], [ -119.442107154799999, 48.701994917900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540, "random": 182.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696519453299999, 48.061245007099998 ], [ -122.701745014599993, 48.0668212303 ], [ -122.701864316499993, 48.078607276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000, "random": 163.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075376155699999, 48.590211446200001 ], [ -118.075356614399993, 48.598579374300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200, "random": 43.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.128754746599995, 46.600496945700002 ], [ -123.126263012799996, 46.6018315229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000, "random": 184.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206475225600002, 47.791083140399998 ], [ -122.223601115799994, 47.800389682400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800, "random": 157.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.916634654199996, 46.697295796600002 ], [ -119.916960776300002, 46.737852894299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500, "random": 148.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.810426917100003, 46.3376105866 ], [ -123.815649382700002, 46.354383327900003 ], [ -123.811811120300007, 46.365574241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000, "random": 151.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.596393383099993, 47.1027062195 ], [ -122.579321671499997, 47.107892831500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400, "random": 86.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.620506636499996, 48.060076006499997 ], [ -117.630503668, 48.080995459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300, "random": 129.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.817306757200001, 46.9516445414 ], [ -123.811926119600002, 46.952123449200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000, "random": 197.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.423149831100005, 47.236217271 ], [ -122.417644232100002, 47.238212922800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000, "random": 173.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.812260239500006, 45.822992682799999 ], [ -120.808106471399995, 45.824581942400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000, "random": 94.644 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.547485506900003, 45.785201757800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100, "random": 68.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726046511600003, 48.150359313899997 ], [ -117.725780578599995, 48.156229186200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200, "random": 143.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.751849100699999, 46.203691501 ], [ -119.748601067500005, 46.206079067600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400, "random": 99.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.268826955099996, 48.080346231699998 ], [ -124.263311905400002, 48.085966764600002 ], [ -124.2672293, 48.093890668 ], [ -124.262034490700003, 48.102087042400001 ], [ -124.250927388099996, 48.111969025500002 ], [ -124.223742336599997, 48.1213082047 ], [ -124.212531038099996, 48.133819620200001 ], [ -124.220293182800006, 48.1428270627 ], [ -124.2160466622, 48.147615903099997 ], [ -124.220635952500004, 48.153990031900001 ], [ -124.207708131800004, 48.157824318099998 ], [ -124.204632396199997, 48.167186739400002 ], [ -124.210345909599994, 48.1692167689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": null, "random": 7.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014883602300003, 47.838858014700001 ], [ -120.014828527199995, 47.839831442300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000, "random": 123.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309143099099998, 47.774377396299997 ], [ -122.306404079100005, 47.772538580800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000, "random": 148.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455809751100006, 46.516358140900003 ], [ -120.449533775800006, 46.503965486799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000, "random": 108.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.754178235300003, 47.064444536899998 ], [ -122.725374037199998, 47.067929690100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000, "random": 124.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632531038099998, 46.964619754799998 ], [ -122.632854251099999, 46.958792651300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300, "random": 111.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410433622300005, 48.690488770499996 ], [ -117.413544959399999, 48.721379622199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": null, "random": 158.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.973536307900005, 47.845064539600003 ], [ -119.950074709399999, 47.861313163799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000, "random": 137.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.526935763499999 ], [ -122.061180415699994, 48.529185624199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000, "random": 196.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377164761499998, 48.804134103800003 ], [ -122.350631459100001, 48.803690529199997 ], [ -122.343789167099999, 48.807321054799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400, "random": 168.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.122453029300004, 48.367342777799998 ], [ -120.1210178754, 48.361212471599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200, "random": 136.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.086477503399998 ], [ -118.256499768300003, 46.093037346400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000, "random": 9.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.488003742900005, 46.607531401800003 ], [ -120.479885092200007, 46.597737697200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800, "random": 15.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914757678599997, 47.388043454699996 ], [ -122.892366147199994, 47.404043715599997 ], [ -122.877710028199999, 47.408801618699997 ], [ -122.860540292699994, 47.423328077500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": null, "random": 152.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.469043884300007, 47.3852988959 ], [ -119.426913667, 47.395513492900001 ], [ -119.387340543099995, 47.414520736699998 ], [ -119.300634945400006, 47.424903109799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": null, "random": 69.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.121253997400004, 47.087799811700002 ], [ -119.050805502599999, 47.085767763600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800, "random": 112.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.889523026299997, 46.980961881 ], [ -123.888386398500003, 46.980177755299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500, "random": 193.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140899954299996, 47.654795746799998 ], [ -118.141047318800005, 47.664764855599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000, "random": 146.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160861847800007, 47.8814089364 ], [ -122.148584559100001, 47.888641626199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300, "random": 81.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953782416699994, 46.736692891399997 ], [ -122.953823151799995, 46.748781150699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700, "random": 11.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133187297500001, 46.840989608400001 ], [ -119.133148108100002, 46.886685746 ], [ -119.138472205699998, 46.892262265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000, "random": 5.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628834077099995, 47.615881278700002 ], [ -122.628868229899993, 47.621337157900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000, "random": 196.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570973798599994, 48.462635752300002 ], [ -122.5588999199, 48.459854942900002 ], [ -122.540648413599996, 48.462952426100003 ], [ -122.498739627199996, 48.452263302299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000, "random": 88.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214348263700003, 48.206328150499999 ], [ -122.218321885899996, 48.216603711499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": null, "random": 43.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.381469205400002 ], [ -119.469043884300007, 47.3852988959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000, "random": 43.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.474841478899997 ], [ -122.327737404700002, 47.479270819699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000, "random": 85.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.304949803200003, 47.644164856499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400, "random": 156.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.554392316299996, 48.321462528600001 ], [ -121.550058107599995, 48.3318886554 ], [ -121.551453485799996, 48.343744063899997 ], [ -121.540112692, 48.346215164 ], [ -121.539906925400004, 48.366375817 ], [ -121.542024863600005, 48.372287589 ], [ -121.554425459200004, 48.380127436400002 ], [ -121.550013380300001, 48.393466863100002 ], [ -121.556872268199996, 48.413587564899998 ], [ -121.566872919, 48.4288842168 ], [ -121.591700101200004, 48.451327644199999 ], [ -121.5855182759, 48.460927573500001 ], [ -121.5934495363, 48.485900583099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260, "random": 135.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.734570016700005, 47.116926604200003 ], [ -117.742925110100003, 47.117459606600001 ], [ -117.7549057664, 47.125716432399997 ], [ -117.817509280300001, 47.111093263299999 ], [ -117.822912325199994, 47.114442770099998 ], [ -117.8293478123, 47.1355148253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000, "random": 95.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.067753216300005, 46.246804529800002 ], [ -119.046642025, 46.232206470199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300, "random": 187.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.124828016699993, 47.500840259100002 ], [ -122.121905390099997, 47.500530407799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000, "random": 123.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313301401100006, 47.316652422799997 ], [ -122.311990139700001, 47.333987546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000, "random": 142.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334374309400005, 47.529782668300001 ], [ -122.334499835, 47.531933408199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": null, "random": 49.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979586832799995, 47.9655777499 ], [ -118.979697854299999, 47.968430380400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700, "random": 116.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385457650199996, 47.948085936299996 ], [ -124.385447165200006, 47.948955410099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000, "random": 175.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485955958800005, 48.862420218399997 ], [ -122.485687149200004, 48.8695370939 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890, "random": 76.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.345558882600002, 48.5553675301 ], [ -117.306432185399999, 48.541940968299997 ], [ -117.302804502200004, 48.536050454799998 ], [ -117.304650258899997, 48.527031102899997 ], [ -117.278524899800004, 48.511845619100001 ], [ -117.269024632599994, 48.499256187100002 ], [ -117.269265238, 48.4873224193 ], [ -117.275854017300006, 48.479154680299999 ], [ -117.320541457, 48.4685163989 ], [ -117.325942598799998, 48.458761719500004 ], [ -117.323780920499999, 48.439318060799998 ], [ -117.316627106799999, 48.425214068400003 ], [ -117.319097356900002, 48.4189460662 ], [ -117.313120485400006, 48.4113756271 ], [ -117.314630901300006, 48.394450270599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100, "random": 134.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498048415300005, 47.798506382500001 ], [ -122.497295586, 47.7975770117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000, "random": 25.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.435463721399998, 46.5745924593 ], [ -120.393324315200005, 46.556351737500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000, "random": 169.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.395398995900003 ], [ -122.330911508100002, 48.406025215600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000, "random": 161.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644801591399997, 47.501961609200002 ], [ -122.643946939900005, 47.502784521800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000, "random": 150.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.372126264299993, 47.817776268499998 ], [ -122.367307089600004, 47.8179585281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000, "random": 178.777 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.877799075399999 ], [ -122.163645855400006, 47.879601492200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000, "random": 136.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.427211290700001, 48.117642047700002 ], [ -123.430902000800003, 48.119157941600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000, "random": 192.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.503821823500004, 48.102754873599999 ], [ -123.468545392099998, 48.106190606399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": null, "random": 56.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.239928314300002 ], [ -119.471071659100005, 47.273753970100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700, "random": 29.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290450982199999, 45.696258645699999 ], [ -121.279633118600003, 45.690688236100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900, "random": 162.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.936642209200002 ], [ -122.357934341199993, 46.980224389500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500, "random": 185.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495587689600001, 47.797525249099998 ], [ -122.496488730199999, 47.798131725399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000, "random": 168.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.934240825299995, 46.952766632500001 ], [ -122.935715474899993, 46.952758994100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700, "random": 128.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.462540653399998, 48.107899627400002 ], [ -123.459574139699995, 48.110067689200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000, "random": 129.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323883246600005, 47.632698970699998 ], [ -122.322628571500005, 47.6386200098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000, "random": 81.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336749310399995, 48.484639012499997 ], [ -122.338500106400005, 48.486228159900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000, "random": 74.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.099857116599999 ], [ -117.219321340899995, 48.113310778900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000, "random": 101.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.273121321399998, 47.668605412600002 ], [ -122.271061548700004, 47.6700439942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700, "random": 5.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361066420699999, 47.253456630599999 ], [ -117.370585678599994, 47.268075141799997 ], [ -117.361254009199996, 47.290879305300002 ], [ -117.390138784, 47.310362066400003 ], [ -117.388597733400005, 47.3194727622 ], [ -117.380662463099995, 47.330079757599997 ], [ -117.380673193600003, 47.360657544200002 ], [ -117.391339284599994, 47.389115786399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000, "random": 81.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.454401804699998 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100, "random": 85.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.994354542899998, 46.567494215899998 ], [ -119.004060927500007, 46.5740844587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000, "random": 151.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.665955536300004, 45.631898547 ], [ -122.669376341299994, 45.632571970599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000, "random": 143.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.465759248200001, 48.106460575 ], [ -123.461138151100002, 48.106935246699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000, "random": 75.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.499917878399998, 48.717652925499998 ], [ -122.486331208, 48.714824595300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300, "random": 151.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213367238700002, 48.372379240100003 ], [ -122.229673571099994, 48.385256496799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000, "random": 18.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182972372099997, 48.152416491099999 ], [ -122.172296207800002, 48.152289709199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000, "random": 134.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.167008503600002, 46.191719662700002 ], [ -119.159158770900007, 46.198638478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000, "random": 85.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.157044219200003, 47.280328202200003 ], [ -123.145765470900002, 47.252121037599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100, "random": 69.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.173877287899998, 47.112127049400002 ], [ -124.169614650900002, 47.114894477900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930, "random": 64.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.575464457699994, 47.091801678300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000, "random": 31.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248475669300007, 47.900072614400003 ], [ -122.244670656400004, 47.904148545300004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000, "random": 10.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632907041400003, 47.572695391300002 ], [ -122.632955459200005, 47.576988526599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000, "random": 141.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335608842799999, 48.475571374099999 ], [ -122.335565019599997, 48.4778597679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900, "random": 74.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.685005097499996, 48.650649293199997 ], [ -118.685503561600001, 48.644882601900001 ], [ -118.667711126, 48.617451727700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100, "random": 119.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.905691619400002, 46.282456889599999 ], [ -122.903578295299994, 46.283861002400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000, "random": 164.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.458669386799997, 47.715411884399998 ], [ -117.4605875174, 47.7154071362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430, "random": 96.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.270425518300001, 46.912759444700001 ], [ -117.249834160600003, 46.924645796900002 ], [ -117.234331027799996, 46.925309947800002 ], [ -117.220529711899999, 46.933106671200001 ], [ -117.159352064399997, 46.941705790500002 ], [ -117.136080919600005, 46.932633247600002 ], [ -117.110476071299999, 46.928462956899999 ], [ -117.102769807900003, 46.9174522008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000, "random": 84.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.700925811100007, 47.525407789200003 ], [ -122.704501785700003, 47.525661698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000, "random": 118.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.150880994199994, 47.779603159 ], [ -122.1387763237, 47.784870612299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": null, "random": 176.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.691075897800005, 48.018709410200003 ], [ -119.697687025299999, 48.0311183966 ], [ -119.693725489499997, 48.039290469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000, "random": 162.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347271149400001, 47.653986720200002 ], [ -122.347269898199997, 47.664239955699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000, "random": 70.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875302195800003, 47.036689104 ], [ -122.859381883899999, 47.040353374799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000, "random": 169.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252782505699997, 48.502886244300001 ], [ -122.247228536, 48.504965103899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410, "random": 72.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625012856500007, 47.562436961899998 ], [ -122.629614867, 47.565023409600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000, "random": 178.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335881339400004, 47.821450872100002 ], [ -122.325052919499996, 47.821329708500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000, "random": 93.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.836073628299999, 46.4372194695 ], [ -122.814031488599994, 46.438120687500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300, "random": 178.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042241304699999, 46.474230977700003 ], [ -117.047517464899997, 46.474461423100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000, "random": 42.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.051516255099997, 47.391659997799998 ], [ -122.044831924299999, 47.399706131899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000, "random": 134.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658726878400003, 45.6977308437 ], [ -122.652986888300006, 45.709455040100003 ], [ -122.654549427500001, 45.717300241700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500, "random": 66.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.347624507399999, 48.055953127199999 ], [ -124.337683892399994, 48.054732999700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900, "random": 11.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320539039099998, 46.338643096699997 ], [ -120.320194750699997, 46.3605182529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000, "random": 14.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674207111699999, 45.781370643 ], [ -122.667261725700001, 45.779820175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500, "random": 133.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.759989077900002 ], [ -117.164438154400003, 46.769754928300003 ], [ -117.151417176099997, 46.780286467800003 ], [ -117.147368489, 46.790469895500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970, "random": 6.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.027368158599998, 46.4021888563 ], [ -122.998701202099994, 46.413611615500002 ], [ -122.975040301799993, 46.404702300399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000, "random": 156.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.546840301700001, 46.992764977500002 ], [ -122.545777661, 46.996177086499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": null, "random": 130.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.694359620499995, 47.189224623400001 ], [ -119.686049460099994, 47.1944007257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300, "random": 77.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.770900456899994, 45.861551476899997 ], [ -120.756138064300004, 45.871859525 ], [ -120.748887042700005, 45.883275659699997 ], [ -120.712459360899999, 45.899262853800003 ], [ -120.711577386200005, 45.907740132400001 ], [ -120.7006339016, 45.9221097398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900, "random": 117.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595048768599995, 48.355996996800002 ], [ -119.585343985400002, 48.360215974900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000, "random": 58.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315085552799999, 47.821191790100002 ], [ -122.294569069800005, 47.846843594500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000, "random": 157.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.611566454499993, 47.534032947900002 ], [ -122.609635826599998, 47.534003386099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000, "random": 37.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.784870612299997 ], [ -122.135115949400003, 47.794290888200003 ], [ -122.116088142500004, 47.794953841100003 ], [ -122.111416419500003, 47.8021101024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800, "random": 117.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364967587799995, 46.8759309573 ], [ -117.364903450300005, 46.877276230200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000, "random": 142.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.527484212399997, 45.5979967225 ], [ -122.515822848300004, 45.594914321600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000, "random": 11.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.071997034099994, 47.4423650536 ], [ -122.079603723899993, 47.4579919468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000, "random": 177.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.570754986499999 ], [ -122.662126769699995, 47.571362035299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500, "random": 170.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320194750699997, 46.3605182529 ], [ -120.322978895800006, 46.3718043346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": null, "random": 8.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.072100487599997, 47.859499395 ], [ -120.058178621300002, 47.856017657199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": null, "random": 15.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324887521400001, 47.438245710899999 ], [ -120.3248167693, 47.440990914899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000, "random": 135.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.328302663499997, 47.675441359600001 ], [ -117.324862717299993, 47.675410475100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000, "random": 165.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.553936957300003 ], [ -122.655219925200001, 47.5591158808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000, "random": 133.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239631880800005, 47.671672712099998 ], [ -117.239584531099993, 47.672579561500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200, "random": 33.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.902264898200002 ], [ -124.111012387700001, 46.904012754100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300, "random": 56.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.419911749400001 ], [ -117.063917083, 46.419919126400004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000, "random": 31.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.366799176699999, 47.790544377 ], [ -122.363416141800002, 47.790622223299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820, "random": 69.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446800662900003, 45.913702032899998 ], [ -122.4272617564, 45.917127220799998 ], [ -122.421117973700007, 45.919803521200002 ], [ -122.421050314499993, 45.924138658899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": null, "random": 96.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.277783324799998, 47.131652171799999 ], [ -119.275276593300006, 47.132523853400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": null, "random": 87.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.336058576299997 ], [ -120.566039557300002, 47.345552567799999 ], [ -120.571515201099999, 47.350585589200001 ], [ -120.563363344, 47.359157664199998 ], [ -120.576749715099993, 47.363819611899999 ], [ -120.594234535400005, 47.381679915900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000, "random": 193.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916295967099998, 47.637296985500001 ], [ -121.916349545399996, 47.639117271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600, "random": 6.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487330415100004, 46.260755377499997 ], [ -119.487608308600002, 46.269831528600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000, "random": 96.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.567913207199993, 47.593745037799998 ], [ -117.5675988781, 47.593368100200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400, "random": 5.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.803937911800006, 45.826466493799998 ], [ -120.801473643, 45.836314269699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100, "random": 163.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.994938289800004, 46.142280192699999 ], [ -122.987609849699993, 46.137842902099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000, "random": 121.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344353330900006, 48.469916134100004 ], [ -122.3407517853, 48.471136370499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800, "random": 35.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338500106400005, 48.486228159900001 ], [ -122.348249025300007, 48.4942122629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000, "random": 87.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820154302899994, 47.454597961799998 ], [ -122.804266783800003, 47.467763599800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400, "random": 72.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.880076303300001, 46.533993313800003 ], [ -119.827895480199999, 46.549339935900001 ], [ -119.791445814, 46.569212579 ], [ -119.728293539399999, 46.578053477799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000, "random": 51.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.459748548600004, 48.772434026699997 ], [ -122.449178166500005, 48.776042751399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000, "random": 77.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515950787600005, 47.258434649100003 ], [ -122.515944338099999, 47.2599591042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000, "random": 103.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288654999200006, 47.644785095 ], [ -122.231923075500006, 47.636062816299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000, "random": 144.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263852823700006, 47.758298512899998 ], [ -122.251864888499995, 47.758569785399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000, "random": 63.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236666418599995, 47.1398909033 ], [ -122.237300031100006, 47.132452638700002 ], [ -122.229238150100002, 47.117950629200003 ], [ -122.2143535286, 47.103607615800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200, "random": 144.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.682026725199997 ], [ -123.789643650599999, 46.6852246296 ], [ -123.811450259200001, 46.699384844699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000, "random": 195.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432112725699994, 47.233323158899999 ], [ -122.431873938199999, 47.234680353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000, "random": 41.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.771342824500003 ], [ -122.459748548600004, 48.772434026699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100, "random": 161.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.699115260200003, 47.332546760500001 ], [ -118.6953209574, 47.333317827499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800, "random": 185.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979611987799998, 48.090995406899999 ], [ -121.961577666699995, 48.093592054200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000, "random": 82.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.679523123400003, 47.662857905 ], [ -122.688809379800006, 47.664663366799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000, "random": 70.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.834496190699994, 47.4399094921 ], [ -122.830253409099996, 47.446511538899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000, "random": 22.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156623732400007, 47.468501808500001 ], [ -122.188620638700002, 47.478462399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100, "random": 73.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.301413406799995, 48.172607385500001 ], [ -117.301532072699999, 48.181441509700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000, "random": 110.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.251203279099997, 47.045282316300003 ], [ -123.231164055400001, 47.0504387055 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300, "random": 50.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140899954299996, 47.654795746799998 ], [ -118.097893087100005, 47.657305852199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000, "random": 56.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296538445699994, 47.733797081399999 ], [ -122.292458623200005, 47.733778690400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500, "random": 49.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197523307899999, 46.738419939400003 ], [ -119.189779697, 46.738143993800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300, "random": 76.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.179114482299994, 46.345519165399999 ], [ -120.177603705500005, 46.345860060299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200, "random": 22.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.752345439300001, 48.997156789599998 ], [ -122.752047289800004, 48.997865276399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800, "random": 146.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.509031671900004, 46.676702796299999 ], [ -120.487292380499994, 46.680124523300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000, "random": 70.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.661842762900001 ], [ -117.387193219400004, 47.661914020600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100, "random": 134.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.746143435299999, 45.815362244299997 ], [ -122.744893128599998, 45.8153696587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000, "random": 114.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.626404641100002 ], [ -122.666431452599994, 45.628936169200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000, "random": 187.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.110563041199995, 46.248522956800002 ], [ -119.093941382599994, 46.249878458300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000, "random": 72.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223176560499994, 47.922657651400002 ], [ -122.212564099800005, 47.921590993700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100, "random": 127.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.488540894899998 ], [ -124.113922483300001, 47.496262306600002 ], [ -124.161478036899993, 47.506903678 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": null, "random": 9.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.205954712600004, 46.984795443199999 ], [ -119.117929867499996, 46.984670877500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500, "random": 197.214 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.398548074700003, 45.5841573262 ], [ -122.385518978199997, 45.582108216400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500, "random": 176.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.280918513700001, 48.0699570958 ], [ -124.268826955099996, 48.080346231699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200, "random": 38.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876359546700002, 47.4318329878 ], [ -122.863144207199994, 47.438638765599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500, "random": 57.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.204962522100004, 48.861182790299999 ], [ -118.205892243, 48.865029997199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400, "random": 40.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385510623499997, 47.944172956300001 ], [ -124.385482118499993, 47.946057096099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000, "random": 143.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.391268319600002, 47.004069776800002 ], [ -123.387506762900003, 47.005179546500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000, "random": 98.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.009572551600002 ], [ -122.889729460300003, 47.992352819099999 ], [ -122.885683715900001, 47.987020464300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000, "random": 86.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245590463699997, 47.1960629254 ], [ -122.238361396, 47.192734459500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000, "random": 135.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330911508100002, 48.406025215600003 ], [ -122.331494065300006, 48.413596405900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300, "random": 114.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.991078005399999, 47.204921628199997 ], [ -121.989641515900004, 47.213883977099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800, "random": 72.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.435115977699994, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400, "random": 31.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.032032014600006, 45.6195630227 ], [ -122.024621875199998, 45.625404013100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000, "random": 147.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139011970599995, 47.358015368099998 ], [ -122.134010446800005, 47.3579773429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400, "random": 83.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.579410600700001 ], [ -117.668745172900003, 47.579876434399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800, "random": 95.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.560878346099997, 45.723055259799999 ], [ -121.551175261400005, 45.727845065099999 ], [ -121.524779511, 45.729215848800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000, "random": 85.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628901394099998, 47.632234824900003 ], [ -122.629359729399994, 47.645556277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800, "random": 41.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.362058013500004, 46.068646754299998 ], [ -118.369780510400005, 46.069847874399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": null, "random": 144.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.783017302900006, 47.112021711899999 ], [ -120.766603867200004, 47.1063778563 ], [ -120.759944575299997, 47.096013762200002 ], [ -120.745137846700004, 47.090283595599999 ], [ -120.738883428500003, 47.083321157699999 ], [ -120.658515798799996, 47.051493470600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000, "random": 14.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172296207800002, 48.152289709199998 ], [ -122.161616720599994, 48.152123549599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000, "random": 100.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885748099899999, 46.980644841100002 ], [ -123.8857327674, 46.980935669499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000, "random": 168.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.982525220699998, 47.209234482500001 ], [ -120.993152412800001, 47.222746832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000, "random": 59.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.884038854300002, 46.662768880900003 ], [ -118.871481668100003, 46.6542060226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000, "random": 74.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.397896310299998, 48.106192363300003 ], [ -123.375955261300007, 48.104855547100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900, "random": 22.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413577184900007, 48.728581825799999 ], [ -117.413560260899999, 48.732500641599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000, "random": 26.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207028983800001, 47.914243946 ], [ -122.206275969299995, 47.9180096463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800, "random": 28.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.595569385700003, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800, "random": 137.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606443415300006, 48.1635594746 ], [ -122.609133392, 48.171286162900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900, "random": 58.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.909559214599994, 47.346792407499997 ], [ -123.911487520899996, 47.361791660599998 ], [ -123.902577135399994, 47.372295066600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000, "random": 64.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128272774199999, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000, "random": 194.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280297386599997, 47.752002751100001 ], [ -122.276408048500002, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000, "random": 138.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295311486800003, 47.043931016199998 ], [ -122.295097717100006, 47.047555150800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500, "random": 81.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.099491124899998, 46.8588806371 ], [ -124.061492395499997, 46.864288916500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000, "random": 126.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.570973798599994, 48.462635752300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400, "random": 123.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487608308600002, 46.269831528600001 ], [ -119.490306656599998, 46.272344573200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700, "random": 13.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.122722282300003, 48.627437196700001 ], [ -118.119648738600006, 48.635004250500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000, "random": 107.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207819198600006, 47.09966335 ], [ -122.202462298100002, 47.095325541900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500, "random": 41.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.403610252500002, 45.699383097400002 ], [ -121.394945338200003, 45.698223114599998 ], [ -121.382957728500003, 45.705115008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": null, "random": 12.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.693725489499997, 48.039290469 ], [ -119.690447248400005, 48.061481261600001 ], [ -119.719186609900007, 48.065900689800003 ], [ -119.724720005799995, 48.076439116400003 ], [ -119.743242646599995, 48.076781011599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000, "random": 51.134 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.610708492499995, 45.647880158 ], [ -122.5974622536, 45.649728357699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800, "random": 121.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.937571908899997, 46.753909554400003 ], [ -122.923246241499996, 46.773207573400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000, "random": 33.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669058799699997, 47.749633705599997 ], [ -122.651372136500001, 47.765032788399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900, "random": 19.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.308852550600001 ], [ -124.043384833600001, 46.308854520300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400, "random": 96.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.449902918800007, 48.52736977 ], [ -121.431030774600003, 48.5268378739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": null, "random": 138.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.714915032600004, 47.809342382399997 ], [ -120.716962414799994, 47.811497214799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700, "random": 8.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159927028200002, 46.270183251399999 ], [ -118.154772907500003, 46.270129968399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000, "random": 172.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201995781500003, 47.927137552200001 ], [ -122.195827584499995, 47.933021241 ], [ -122.199245749599996, 47.961609169200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000, "random": 188.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649407823399997, 47.8021122484 ], [ -122.643319372600004, 47.818106847899998 ], [ -122.630091157500004, 47.828750694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400, "random": 140.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.369596328300005, 46.237150703300003 ], [ -118.339726884300006, 46.287725998100001 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700, "random": 58.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357934341199993, 46.980224389500002 ], [ -122.359252624299998, 46.999076360899998 ], [ -122.368916961400004, 47.009369658099999 ], [ -122.369476906499997, 47.0202996688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000, "random": 153.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143016176299994, 48.053691370700001 ], [ -122.140842334, 48.053655770799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800, "random": 188.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.246165081599997, 46.327693020399998 ], [ -120.199816309400006, 46.331131533499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000, "random": 115.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200054353400006, 47.578719073899997 ], [ -122.181098346799999, 47.579760287200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820, "random": 94.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.851188812399997, 46.650840242299999 ], [ -118.808361708700005, 46.634901689199999 ], [ -118.762386459400005, 46.6345593673 ], [ -118.726639387199995, 46.6292584921 ], [ -118.709064484199999, 46.620073978199997 ], [ -118.651963250099996, 46.623324300699998 ], [ -118.641494067099998, 46.631430572 ], [ -118.619519763400007, 46.6393677099 ], [ -118.611755359300005, 46.649048560700002 ], [ -118.588493994499999, 46.647813660899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100, "random": 71.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.936550431100002, 48.566794575300001 ], [ -117.952607635800007, 48.577391783300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000, "random": 166.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315402910200007, 47.684710450399997 ], [ -122.315126489700006, 47.685256401700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000, "random": 82.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.827259250400004, 47.454059906 ], [ -122.826922042899994, 47.451325656100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600, "random": 46.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.571845126699998 ], [ -121.913192354700001, 47.596592544300002 ], [ -121.9096907598, 47.624989034199999 ], [ -121.916295967099998, 47.637296985500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500, "random": 113.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.970993700799994, 47.278675160600002 ], [ -122.960173329200003, 47.282055380499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400, "random": 174.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741373518499998, 48.056659417200002 ], [ -117.704874261, 48.067061891500003 ], [ -117.673159591399994, 48.062248924 ], [ -117.637751379400001, 48.063009348500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000, "random": 181.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274709422599997, 47.4287124851 ], [ -122.269011183299995, 47.437789766599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000, "random": 151.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338880034200002, 47.778114643400002 ], [ -122.346227490700002, 47.777795554199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000, "random": 183.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.316103289400004, 46.377988710799997 ], [ -120.318493365, 46.376254892799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700, "random": 84.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699066423100007, 45.6412649874 ], [ -122.704142351399994, 45.644577060899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000, "random": 173.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.005115164200006, 46.203549009 ], [ -118.964206655200002, 46.175219826899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": null, "random": 18.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.100944860699997 ], [ -119.315534249899997, 47.101630402300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000, "random": 14.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515544164900007, 47.635779378599999 ], [ -122.519827714200005, 47.644479769900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500, "random": 124.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.536636413300002 ], [ -117.214770178199998, 47.541673317399997 ], [ -117.214435222399999, 47.561959096 ], [ -117.222910009800003, 47.573066742800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490, "random": 79.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.982514410199997 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.994894794300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000, "random": 84.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.203586134700004, 47.475180577300002 ], [ -122.200274287699997, 47.480323985299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000, "random": 94.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.362380338099996, 46.244018440399998 ], [ -119.353119512299997, 46.244832268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000, "random": 46.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925928061600004, 46.146338437399997 ], [ -122.923520705, 46.146068995299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600, "random": 16.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.319380156799994, 46.299522199400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400, "random": 38.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.596169762100004, 48.487275378900001 ], [ -121.590106375900007, 48.488568208499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700, "random": 154.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.373150104100006, 45.946680716 ], [ -119.351379696199999, 45.944648158699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000, "random": 42.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260742998300003, 47.268899057500001 ], [ -122.2583295166, 47.280565297099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000, "random": 31.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780998914600005, 48.0297888001 ], [ -122.778477748699999, 48.030190115700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000, "random": 107.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190397844499998, 48.011226214399997 ], [ -122.186084026499998, 48.021915049900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000, "random": 53.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486103143099996, 48.782691250100001 ], [ -122.486096201899997, 48.783628412500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600, "random": 171.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490306656599998, 46.272344573200002 ], [ -119.494241787899995, 46.279543472100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000, "random": 111.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515897937899993, 47.271095951 ], [ -122.515764730499995, 47.279822397399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900, "random": 42.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192044511299997, 46.763148214899999 ], [ -122.193654417499999, 46.764554452200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100, "random": 160.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.436951250299998, 48.9352749432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000, "random": 165.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669383742700006, 45.631846962499999 ], [ -122.665955536300004, 45.631898547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000, "random": 183.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.298724590700004, 48.096108532499997 ], [ -123.291251261799999, 48.0954124931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000, "random": 105.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.854222276399994, 46.975166309899997 ], [ -123.8318384982, 46.975077901200002 ], [ -123.827868590500003, 46.971685376300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800, "random": 37.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.379716311400003, 47.661938751100003 ], [ -117.372061313499998, 47.663072830700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700, "random": 69.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.644601753700002, 46.616740397100003 ], [ -123.625157561899996, 46.600746377699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000, "random": 138.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.183098546500005, 46.728416263500002 ], [ -117.182511221699997, 46.729023359400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000, "random": 154.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.291328040700002 ], [ -122.657592177799998, 48.293044692199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000, "random": 76.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.304903977600006, 46.292829903700003 ], [ -119.306688915, 46.278802215500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": null, "random": 84.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.389404974499996, 47.919132812400001 ], [ -119.388810295, 47.917927027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400, "random": 167.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.172041843399995, 47.3177075499 ], [ -123.181487179900003, 47.299874506400002 ], [ -123.174905591300003, 47.289039031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180, "random": 138.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.784000054700002, 47.472842312 ], [ -118.784263452900007, 47.6121559913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900, "random": 189.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.845082926399996, 46.293579813599997 ], [ -122.835107025100001, 46.292878933499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800, "random": 161.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357382771900006, 46.929736850399998 ], [ -122.35740693, 46.936642209200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100, "random": 136.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.829348175700005, 45.7148576644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000, "random": 106.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.400290715300002, 47.399395735500001 ], [ -121.390124871799998, 47.393230258800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500, "random": 77.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.519587863200002, 48.4074511711 ], [ -119.521661144700005, 48.408142504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700, "random": 193.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.453286095699994, 46.8561637408 ], [ -119.346452902899998, 46.810764896599999 ], [ -119.256984579499999, 46.810235263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000, "random": 25.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.284252451200004, 46.405664437900001 ], [ -120.268235143300004, 46.401178348800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500, "random": 187.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.091057119300004, 46.798829385600001 ], [ -124.106282358499996, 46.849519700099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000, "random": 61.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237362405499994, 47.377914705199998 ], [ -122.2306881417, 47.377835494599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000, "random": 157.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629359729399994, 47.645556277 ], [ -122.6335380628, 47.649042313899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800, "random": 41.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.890681059900004, 46.435014693100001 ], [ -123.857643340400003, 46.429368113400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000, "random": 148.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835036922100002, 45.682664960300002 ], [ -120.817606109799996, 45.691454533200002 ], [ -120.815376949200001, 45.697928946300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000, "random": 106.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.963814797400005, 47.857816596799999 ], [ -121.927065336300004, 47.8558599343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000, "random": 57.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740547181500006, 45.902501182500004 ], [ -122.749722348399999, 45.9177650679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000, "random": 136.32 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.863757516299998, 47.086768846799998 ], [ -118.720874480299997, 47.086155289099999 ], [ -118.675635892800003, 47.096990195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000, "random": 45.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.498935680700001, 46.649277051799999 ], [ -120.510906144800003, 46.644208450199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500, "random": 121.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094730493599997, 47.139868914 ], [ -122.091587142099996, 47.1407602078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000, "random": 145.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.268748856399995, 47.472178548899997 ], [ -122.2710239707, 47.4775799592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500, "random": 56.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.533822775700003, 46.290820586400002 ], [ -118.493390640200005, 46.287987258199998 ], [ -118.428761567699993, 46.299220350900001 ], [ -118.356201937600005, 46.2999263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": null, "random": 189.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.174837509100001, 47.767969201900002 ], [ -120.16517224, 47.770798302800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900, "random": 27.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507482687600003, 47.744381586199999 ], [ -117.520380013700006, 47.758297026599998 ], [ -117.547264673100003, 47.765923818899999 ], [ -117.545044147900001, 47.770388726599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000, "random": 130.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324775391299994, 47.405730086699997 ], [ -122.3251389542, 47.4075113691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000, "random": 46.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184062738199998, 47.760638188199998 ], [ -122.185841226099996, 47.763446951299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000, "random": 12.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294634377799994, 47.364358862499998 ], [ -122.290042830100006, 47.383756241699999 ], [ -122.292053646699998, 47.400669800400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700, "random": 31.996 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.727008460899995, 45.815673419100001 ], [ -122.705951896299993, 45.815636231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100, "random": 177.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.736058461599995, 46.6468473933 ], [ -119.707334022300003, 46.6539357057 ], [ -119.686256486700003, 46.6685040964 ], [ -119.681750283900001, 46.675001696099997 ], [ -119.682116182, 46.701919444 ], [ -119.641524010300003, 46.730890227700002 ], [ -119.627051021900002, 46.735547573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000, "random": 152.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.577214570099997, 47.642932904799999 ], [ -117.573975922299994, 47.642938657400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000, "random": 32.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274414357200001, 47.485065206599998 ], [ -122.281643589599994, 47.491197644099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100, "random": 164.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.896416472599995, 47.698580768500001 ], [ -122.897990560300002, 47.693584234699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000, "random": 185.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675738111399994, 47.081330050200002 ], [ -122.658847900599994, 47.084419417699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400, "random": 104.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.528676364399999, 48.406051984299999 ], [ -119.528498714799994, 48.409540793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300, "random": 76.616 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.296317791800007, 46.576533839 ], [ -123.294364747900005, 46.578394847399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000, "random": 174.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.931624680400006, 47.027755501100003 ], [ -122.928170766799994, 47.026188983300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910, "random": 47.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.791383799100004, 46.614441905299998 ], [ -117.793103767700003, 46.617894857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000, "random": 133.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.046894581499998, 46.419929593500001 ], [ -117.045583721, 46.419935817599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000, "random": 127.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.192442595100005, 47.69589869 ], [ -117.152082744599994, 47.701179935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400, "random": 136.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.382865474799999, 47.812642294500002 ], [ -122.3819741537, 47.812114513899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900, "random": 18.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515328583900001, 47.301975486400003 ], [ -122.514518613, 47.304061906800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000, "random": 146.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353862608699998, 47.838149676500002 ], [ -117.355582348900001, 47.858807196800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000, "random": 139.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.371997110799995, 46.837063334 ], [ -120.353925733799997, 46.812565686900001 ], [ -120.361749255099994, 46.802185177799998 ], [ -120.358754236799996, 46.7928184397 ], [ -120.372836771500005, 46.781903642899998 ], [ -120.380605613, 46.759389077900003 ], [ -120.390116766399998, 46.7494451154 ], [ -120.386459662600004, 46.730567182599998 ], [ -120.405296181500006, 46.724135662499997 ], [ -120.413679759900006, 46.714272714700002 ], [ -120.433016451, 46.710978993300003 ], [ -120.443323640399996, 46.696344282399998 ], [ -120.475978806100002, 46.681083667 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000, "random": 108.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206275969299995, 47.9180096463 ], [ -122.207438282699997, 47.918856067699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000, "random": 140.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.167410245900001, 47.230914669100002 ], [ -121.148772436800002, 47.220398466500001 ], [ -121.135298152199994, 47.2179205415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100, "random": 11.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.435384177100005, 48.9477318207 ], [ -119.436279972099996, 48.948557349799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000, "random": 197.433 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.350947556400001, 46.221897885 ], [ -119.341877601899995, 46.209562485799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": null, "random": 9.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.627788861799999 ], [ -120.215035859300002, 47.641981006400002 ], [ -120.214171931899998, 47.656175559899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": null, "random": 124.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.467994632100002 ], [ -120.335546620299993, 47.469450059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600, "random": 31.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.699066423100007, 45.6412649874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000, "random": 182.201 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.087849026499995, 46.731794332100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700, "random": 149.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434299490300006, 47.304822344400002 ], [ -122.427580837400001, 47.316802342099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000, "random": 28.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042496270800001, 48.183023593599998 ], [ -117.042441887099997, 48.184010170500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500, "random": 60.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331189920400007, 48.963797220499998 ], [ -122.309204530200006, 48.963860375199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000, "random": 182.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.219321340899995, 48.113310778900001 ], [ -117.143191344, 48.145029846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": null, "random": 168.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455331932199996, 46.8189351153 ], [ -120.460674446200002, 46.827583423299998 ], [ -120.454364847899996, 46.837752781399999 ], [ -120.462611753499999, 46.844241462799999 ], [ -120.461324043900007, 46.850322894199998 ], [ -120.465279252900004, 46.8539700858 ], [ -120.482104421499997, 46.855324776700002 ], [ -120.479444945300003, 46.867276903499999 ], [ -120.495264574399997, 46.876788251500003 ], [ -120.479579040100006, 46.875455864599999 ], [ -120.474817454199993, 46.882884498899998 ], [ -120.492220401599994, 46.884089970300003 ], [ -120.503503352899997, 46.896610545100003 ], [ -120.492884433499995, 46.902015629700003 ], [ -120.504769142, 46.910050121 ], [ -120.510085755899993, 46.926149802799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500, "random": 51.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354729390800003, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.314391569500003, 46.030212649399999 ], [ -122.310528437800002, 46.041780703500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000, "random": 117.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247073417799996, 47.310505541600001 ], [ -122.244776326099995, 47.3180985045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000, "random": 39.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317780212100004, 47.335423352100001 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000, "random": 12.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168007203900004, 47.757408442100001 ], [ -122.159818660100001, 47.760252736799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790, "random": 103.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.274123715400002 ], [ -117.159173196200001, 47.2805495454 ], [ -117.164055686400005, 47.292556320800003 ], [ -117.164444508800003, 47.311338761899997 ], [ -117.192413928799994, 47.3317954981 ], [ -117.178036524899994, 47.358104779100003 ], [ -117.180916077399999, 47.364663773499998 ], [ -117.174270773, 47.379782915200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000, "random": 34.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336148263300004, 48.417507714499997 ], [ -122.333605948400006, 48.417495423699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000, "random": 160.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.107113214899996, 46.2075458387 ], [ -119.102014152300001, 46.2227420627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000, "random": 45.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293083368400005, 47.125652137099998 ], [ -122.293022339499998, 47.136469010699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000, "random": 159.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645684510400002, 47.7518428642 ], [ -122.652429818900004, 47.757228435099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000, "random": 99.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.919617324800001, 46.147218448 ], [ -122.910399241899995, 46.147036878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000, "random": 12.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.209983535899994, 48.0853786216 ], [ -123.199842588400003, 48.083854521500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300, "random": 181.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.909947142199997, 46.058308654699999 ], [ -118.907596618699998, 46.056201396299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000, "random": 66.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.359716934100007, 47.256945056299998 ], [ -122.357446163099993, 47.26443574 ], [ -122.379453463499999, 47.274969727799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300, "random": 49.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.322374392399993, 48.543587961 ], [ -120.315249300299996, 48.535665574699998 ], [ -120.274692061400003, 48.520893431399998 ], [ -120.259511199299993, 48.511797698599999 ], [ -120.251419826299994, 48.501356904 ], [ -120.227272885299996, 48.488256588500001 ], [ -120.192831503500003, 48.477935123899996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300, "random": 97.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.283146126800006, 48.069756569200003 ], [ -124.280918513700001, 48.0699570958 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000, "random": 152.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296674778699995, 47.399436909 ], [ -122.2967521172, 47.419099415200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000, "random": 190.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.666099862199999 ], [ -122.321705720500006, 47.670374577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600, "random": 141.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044817678100003, 46.394140990099999 ], [ -117.044476644, 46.404073277199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000, "random": 198.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411212053400007, 47.684340672200001 ], [ -117.411193487199995, 47.6661553637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400, "random": 107.284 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.594541512800006, 48.355123430799999 ], [ -119.591651933099996, 48.350216857600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600, "random": 124.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.495704665900007, 48.427975281099997 ], [ -119.479320311600006, 48.442710676799997 ], [ -119.47455389, 48.456507402900002 ], [ -119.504726913, 48.497189516900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100, "random": 37.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.064449026800006, 46.626975794400003 ], [ -123.054039295600006, 46.628090926799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000, "random": 100.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411143579899999, 47.659075543699998 ], [ -117.411162631, 47.660981036599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000, "random": 35.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.348481306400004, 46.063085166599997 ], [ -118.349164427700003, 46.063926639899996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100, "random": 104.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.312854873399999 ], [ -117.990869454199995, 46.314935954600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": null, "random": 157.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.146079747199998 ], [ -119.293885132499994, 47.149636909800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000, "random": 56.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.447469078099999, 48.241938468800001 ], [ -122.379284717800005, 48.240979182499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000, "random": 92.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265129968300002, 47.4614024105 ], [ -122.262930243100001, 47.461922989500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700, "random": 172.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620784164200003, 46.934374699400003 ], [ -122.607582212500006, 46.941363190200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700, "random": 80.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.323681866499996, 46.436435528799997 ], [ -117.3010762949, 46.426715932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": null, "random": 62.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.460712354199998, 46.956629708400001 ], [ -119.397075758900002, 46.957773680199999 ], [ -119.364154806399995, 46.970687616299998 ], [ -119.333734241200005, 46.9675559139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400, "random": 173.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.069679602600004, 48.23396758 ], [ -122.061555391, 48.236329210800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": null, "random": 40.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.676547299899994, 48.011006920299998 ], [ -119.677492645900003, 48.010363151900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000, "random": 22.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.848233224300003, 46.858616212599998 ], [ -122.846710272600006, 46.859045713699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800, "random": 74.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.655064922899996, 46.809179515 ], [ -117.641301768100007, 46.8104615568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600, "random": 118.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.665049294699998 ], [ -118.975226715600002, 46.6637302723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000, "random": 11.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252009338299999, 47.857141929100003 ], [ -122.236957759500001, 47.879069739499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300, "random": 87.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.930126868499997, 48.526423975199997 ], [ -121.844016557700002, 48.5411010945 ], [ -121.825182067399993, 48.538972313 ], [ -121.793327001899996, 48.543507314300001 ], [ -121.772702548799998, 48.537823519299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600, "random": 93.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288498891399996, 48.963997296 ], [ -122.276224988400003, 48.965022025099998 ], [ -122.271528554400007, 48.974869667199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": null, "random": 50.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.050805502599999, 47.085767763600003 ], [ -119.035163557299995, 47.085426001800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000, "random": 168.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.802151302599995, 47.491269221700001 ], [ -121.7916752446, 47.483269079499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000, "random": 84.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.970153865499995, 47.844960878599998 ], [ -121.970772608100006, 47.857093264699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900, "random": 74.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.788297571699999 ], [ -117.849457433599994, 46.7998322141 ], [ -117.810174320100003, 46.813648863799997 ], [ -117.781126713800006, 46.804881802399997 ], [ -117.757124281900005, 46.802723918399998 ], [ -117.716713311, 46.810350787799997 ], [ -117.6914546669, 46.808715409 ], [ -117.665613796700001, 46.813801431199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000, "random": 185.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.515841842200004, 47.267143818699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000, "random": 178.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.449716718900007, 47.644309250900001 ], [ -117.451612066899997, 47.646901725900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000, "random": 14.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.017592158599996, 46.448268561600003 ], [ -119.010465749199994, 46.4807072897 ], [ -119.015118414200003, 46.497445895799999 ], [ -119.011426253400003, 46.514580199 ], [ -119.014775383499995, 46.533049264100001 ], [ -118.995992353700004, 46.561228338900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000, "random": 93.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256337961900002, 46.251966726399999 ], [ -119.246127238300005, 46.240989423400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800, "random": 73.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.963632788399998 ], [ -122.331189920400007, 48.963797220499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000, "random": 172.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.479857033800002, 45.585751721199998 ], [ -122.466151024, 45.583822528600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000, "random": 70.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.159158770900007, 46.198638478 ], [ -119.158824453600005, 46.202223090700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000, "random": 179.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667352865799998, 47.549059761300001 ], [ -122.65895148, 47.553936957300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000, "random": 26.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637777688900002, 47.736774087199997 ], [ -122.639182061300005, 47.7464774496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000, "random": 152.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511485307300006, 46.626062679199997 ], [ -120.506997635900007, 46.6257073162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000, "random": 14.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.626086199200003, 47.428820891 ], [ -121.613173791099996, 47.428575583700002 ], [ -121.590366244199998, 47.419579391100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000, "random": 74.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.527113323099996, 46.655943553199997 ], [ -120.525899249099993, 46.657957479399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200, "random": 96.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176696844099993, 46.804638285300001 ], [ -119.176764818099997, 46.809746805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": null, "random": 113.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.604080864699995, 47.553360155500002 ], [ -120.598927088500005, 47.555361186900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000, "random": 59.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.559255047500002, 46.933983955800002 ], [ -122.555660958900006, 46.936196930900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000, "random": 102.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.865051254600004, 46.5465667665 ], [ -122.801159647800006, 46.543946767900003 ], [ -122.747421571, 46.532339046 ], [ -122.719771164400001, 46.532048859500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000, "random": 15.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.380517254300003, 46.031811534299997 ], [ -118.362741011400004, 46.041507820699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000, "random": 65.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.913444846399997, 47.0253389513 ], [ -122.909487464199998, 47.021750611400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000, "random": 92.157 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341401835200003, 48.4590968726 ], [ -122.342445297400005, 48.476913573499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000, "random": 45.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342600390300007, 48.513479003100002 ], [ -122.351539957400007, 48.530520055799997 ], [ -122.350200969100001, 48.553164776800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720, "random": 71.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.777288263200006, 48.917759441100003 ], [ -117.776045267699999, 48.928358074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000, "random": 70.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.520498653900006, 45.757592861699997 ], [ -121.52754616, 45.760623493799997 ], [ -121.527989065599996, 45.7661176923 ], [ -121.512133462400001, 45.776374164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000, "random": 77.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.533987290900001, 48.009762296300003 ], [ -122.541484241899994, 48.011987346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000, "random": 6.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736798022100004, 46.680552573500002 ], [ -123.730318212399993, 46.682339102299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300, "random": 93.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.733480595399996, 47.762334290200002 ], [ -118.721243935800004, 47.763146625200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000, "random": 73.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.307952314299996, 47.390989098200002 ], [ -122.300412458799997, 47.3957738513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000, "random": 128.134 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.687235929099998, 47.575458442200002 ], [ -122.690131623900001, 47.579854202900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000, "random": 145.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.053651104099998 ], [ -122.119313093900004, 48.053547427399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300, "random": 7.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.073220077299993, 47.347496595 ], [ -123.029325592199996, 47.350804202100001 ], [ -122.986872527200006, 47.373399569199997 ], [ -122.948745162199998, 47.3816100186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000, "random": 110.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.306404079100005, 47.772538580800003 ], [ -122.302597486, 47.769986980299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500, "random": 130.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.053320189399997, 46.335256508400001 ], [ -117.052362381500004, 46.336389697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800, "random": 194.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.778477748699999, 48.030190115700002 ], [ -122.757972415799998, 48.031755234899997 ], [ -122.745826823, 48.0252187014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000, "random": 68.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.071993451200001, 46.249483691800002 ], [ -119.067753216300005, 46.246804529800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100, "random": 148.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.280918513700001, 48.0699570958 ], [ -124.2359717776, 48.066111656799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000, "random": 37.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387506762900003, 47.005179546500003 ], [ -123.382100299, 47.006849018899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": null, "random": 163.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.262669504300007, 47.139868927099997 ], [ -119.270112652500003, 47.141966536399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900, "random": 196.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.177155703300002, 46.188470852800002 ], [ -123.168091001400001, 46.191027551200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000, "random": 18.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.231164055400001, 47.0504387055 ], [ -123.175467152, 47.058686653499997 ], [ -123.154699037100002, 47.055249629099997 ], [ -123.111280294599993, 47.032595602599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000, "random": 181.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.102014152300001, 46.2227420627 ], [ -119.101122588, 46.224092029300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000, "random": 165.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236957759500001, 47.879069739499997 ], [ -122.226896444499999, 47.886791904900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400, "random": 164.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.827153834699999, 45.869699138900003 ], [ -119.7799581015, 45.866032850700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200, "random": 108.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.082452188100007, 46.754402918799997 ], [ -124.081342461399998, 46.775793406600002 ], [ -124.086847589599998, 46.789299463299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000, "random": 148.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.978234071800003 ], [ -122.143054576699996, 47.977909322099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100, "random": 138.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053680407900004, 46.367582858299997 ], [ -124.053438936, 46.370628562199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200, "random": 192.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.942007440400005, 46.895919678200002 ], [ -122.908639489600006, 46.899146685399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": null, "random": 183.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.854070022599998, 47.088382438799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600, "random": 73.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176764818099997, 46.809746805 ], [ -119.176781515900004, 46.8114994409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520, "random": 176.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.422710867399999, 46.696905779399998 ], [ -118.412269855199995, 46.701216260800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000, "random": 73.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186387532799998, 47.640513346799999 ], [ -122.186903818399998, 47.663630478599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000, "random": 132.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938989524299998, 46.947495190700003 ], [ -122.935418056499998, 46.959676324500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000, "random": 49.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.487178151899997, 46.671384763600003 ], [ -120.49646088, 46.659635398200002 ], [ -120.498935680700001, 46.649277051799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800, "random": 161.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691426359499999, 45.635858138700002 ], [ -122.693857063799996, 45.637225155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000, "random": 25.077 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.976564048599997 ], [ -123.627228668900003, 46.976553239399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000, "random": 59.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411101904299997, 47.687150654 ], [ -117.411137105700007, 47.6944973222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100, "random": 83.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.783180389699993, 46.669837987400001 ], [ -123.767190433500005, 46.6744470342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000, "random": 42.974 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.435100794500002, 47.715447291099998 ], [ -117.436421814100001, 47.715439546799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000, "random": 100.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.198761111899998 ], [ -122.129688599199994, 48.200331111600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500, "random": 194.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.123052548399997 ], [ -122.594666773900002, 48.151680394700001 ], [ -122.606443415300006, 48.1635594746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000, "random": 89.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653297245499999, 47.565534571500002 ], [ -122.651129321200003, 47.565545994200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700, "random": 188.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.610192722699999 ], [ -121.6663638136, 46.614190986399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160, "random": 198.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.588837556200005, 45.975811147599998 ], [ -121.612529331299996, 45.9625721062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600, "random": 168.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.739710289800001, 46.7012896138 ], [ -123.743763598499996, 46.715301692700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000, "random": 173.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330409308399993, 47.607952382599997 ], [ -122.328646019499999, 47.6218398679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000, "random": 139.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.005165366499995, 47.2658148473 ], [ -123.002965502600006, 47.266040634699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000, "random": 57.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158836492899994, 46.212219507299999 ], [ -119.150977982499995, 46.214876564199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100, "random": 9.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.979211973399998 ], [ -122.748239795499998, 48.9864873577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700, "random": 126.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885948848799998, 46.520281643799997 ], [ -123.893429722299999, 46.5484187108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400, "random": 109.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885769935400006, 46.990092803099998 ], [ -123.885752763100001, 46.9927676585 ], [ -123.893927695299993, 46.993141810700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000, "random": 27.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189894961700006, 47.979068415699999 ], [ -122.188666249, 47.979430596900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700, "random": 23.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.550846561900002 ], [ -122.422185317900002, 48.565442515800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400, "random": 32.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264959141099993, 49.000030960399997 ], [ -122.265263764699995, 49.002333133100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000, "random": 29.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657848881700005, 48.289541012699999 ], [ -122.657837721, 48.291328040700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200, "random": 124.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.170377575200007, 47.7449382474 ], [ -118.173659831099997, 47.788368584600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500, "random": 166.129 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.162533537300007, 47.628203114 ], [ -118.159705125, 47.642734092600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000, "random": 96.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.907061669900003, 46.680637532299997 ], [ -119.916634654199996, 46.697295796600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000, "random": 69.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106378900300001, 47.952031161599997 ], [ -122.094618564, 47.951492505799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620, "random": 127.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.695932072600002, 48.9034555044 ], [ -121.671356511300004, 48.887175527899998 ], [ -121.668374638499998, 48.873596402099999 ], [ -121.673980881299997, 48.875803847199997 ], [ -121.659489746399998, 48.868863089400001 ], [ -121.658026228300002, 48.864041946100002 ], [ -121.654761913499996, 48.866308154499997 ], [ -121.658917247100007, 48.8590433627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130, "random": 61.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.946881149200003 ], [ -118.691796812500002, 47.953716427499998 ], [ -118.700143917600002, 47.961274106899999 ], [ -118.700766693399999, 47.971575598800001 ], [ -118.693236644400002, 47.985804220299997 ], [ -118.692878650200001, 47.995849852900001 ], [ -118.686557654699996, 48.000397680699997 ], [ -118.688109738400001, 48.005163178899998 ], [ -118.681191137499994, 48.013475131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300, "random": 130.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730055253499998, 48.6419111855 ], [ -118.701095040599995, 48.6529300754 ], [ -118.685005097499996, 48.650649293199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900, "random": 36.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715519020900004, 48.276246085099999 ], [ -117.715551513099996, 48.280931139700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000, "random": 161.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581342993899995, 47.310972648499998 ], [ -122.5934601063, 47.324644617899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440, "random": 46.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.642582851699999, 46.970873143399999 ], [ -118.659863915100004, 46.970594937100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000, "random": 87.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435029923800002, 47.243209781300003 ], [ -122.419929703899996, 47.244357102199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100, "random": 183.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.784936310800006, 46.3717532207 ], [ -123.756719426700002, 46.355663285200002 ], [ -123.7347135662, 46.354353747399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": null, "random": 13.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.364767205800007, 47.619390169399999 ], [ -119.353659263799997, 47.631053870800002 ], [ -119.359501847199994, 47.641373911099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700, "random": 196.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.673063449899999, 47.463794937599999 ], [ -117.623220084899998, 47.469905047300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000, "random": 31.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.282785873700007, 47.681052638399997 ], [ -117.279905047599996, 47.681635658600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": null, "random": 117.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.304106900199997, 47.412297837799997 ], [ -120.305523870299993, 47.415408638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000, "random": 57.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340549846499997, 46.073901475299998 ], [ -118.325524706799996, 46.081735058900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000, "random": 37.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.608242578700001, 48.428787876800001 ], [ -122.6067917986, 48.437038326600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100, "random": 32.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485768792599998, 48.891409465599999 ], [ -122.464240563, 48.891667265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700, "random": 21.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814496006799999, 46.9745245963 ], [ -123.814156772700002, 46.974248551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100, "random": 153.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392436934100004, 47.321613730400003 ], [ -122.390362912499995, 47.321634062199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000, "random": 21.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909083344899997, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": null, "random": 126.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.297877166500001, 47.616608480700002 ], [ -119.292841949500001, 47.615724197299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000, "random": 30.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666197776800004, 48.284130638100002 ], [ -122.659666966800003, 48.286359741399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000, "random": 49.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.578544731500003, 46.685708578700002 ], [ -121.578967939099996, 46.689687297200003 ], [ -121.562292404, 46.695467909900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000, "random": 106.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313425795499995, 47.297956594799999 ], [ -122.313330040500006, 47.303094966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000, "random": 121.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674247167299995, 45.7884633898 ], [ -122.681333363600004, 45.806361536300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000, "random": 61.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.359283416699995, 46.069578111 ], [ -118.353867199899994, 46.069697845599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000, "random": 178.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.555317337800005, 47.809538789599998 ], [ -122.531041412600004, 47.809513658299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000, "random": 63.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.509100327799999 ], [ -122.332916532900001, 47.5234893652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000, "random": 185.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140454259600006, 47.730977296299997 ], [ -122.131767779900002, 47.714400972699998 ], [ -122.1321920922, 47.695282679199998 ], [ -122.128253515300003, 47.687407080900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200, "random": 142.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981410569499999, 46.757281391200003 ], [ -121.947499467200004, 46.755041928399997 ], [ -121.927378301700003, 46.749355201599997 ], [ -121.922037542499993, 46.742687586499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300, "random": 157.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.793750807800002 ], [ -118.568417730799993, 46.794722484399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000, "random": 38.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.500959157099999, 46.623267507500003 ], [ -120.488003742900005, 46.607531401800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200, "random": 5.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.940179987500002, 47.196077890700003 ], [ -120.943771749199996, 47.196532896500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200, "random": 32.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104230764099995, 46.887871778200001 ], [ -124.104302567, 46.895974041599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200, "random": 137.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.638490685099995, 46.335207877800002 ], [ -123.621462692899996, 46.346976223799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000, "random": 154.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.127789926700004, 46.243575565299999 ], [ -119.126619412400004, 46.246327603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200, "random": 103.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974182862099994, 46.327018262400003 ], [ -117.979395154200006, 46.336957343400002 ], [ -117.978538772700006, 46.346463855700001 ], [ -117.952490936700002, 46.356372887600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500, "random": 36.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.865544333200006, 47.5625960148 ], [ -121.834786903799994, 47.5539873994 ], [ -121.840684343099994, 47.551463573500001 ], [ -121.831365726599998, 47.536963829199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000, "random": 108.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.985662542599997, 47.745168652300002 ], [ -121.984573390700007, 47.751380410599999 ], [ -121.955705313600006, 47.7697208879 ], [ -121.974017169299998, 47.7885071981 ], [ -121.982341791600007, 47.812780129099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000, "random": 53.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.754235983800001, 46.978403612 ], [ -123.744597967700003, 46.973572635799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000, "random": 189.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.013093485200002, 46.3059829046 ], [ -119.9861758662, 46.306076549499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000, "random": 87.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125181517800002, 48.200293378700003 ], [ -122.123612070700005, 48.200278239399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700, "random": 63.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.437155858500006, 48.707698988200001 ], [ -119.436000641700005, 48.710984053300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000, "random": 190.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515822848300004, 45.594914321600001 ], [ -122.515628701099999, 45.594861204200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500, "random": 53.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.596412455899994, 48.892060699699996 ], [ -122.598388599399996, 48.891661797600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000, "random": 57.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.007865329200001, 47.872487544 ], [ -121.990849498299994, 47.865717413600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000, "random": 24.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364816528700004, 46.879029799500003 ], [ -117.364773078, 46.879906306800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000, "random": 140.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.234861136500001 ], [ -122.510003080700002, 47.249038175899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000, "random": 122.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.394695192900002, 47.757093937699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700, "random": 190.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.459894611699994, 45.712339651100002 ], [ -121.425352203499997, 45.699600537199998 ], [ -121.403610252500002, 45.699383097400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100, "random": 137.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.959860863399996, 46.711980420300002 ], [ -122.956475352799998, 46.711286950599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930, "random": 107.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.049059604699998 ], [ -122.274830503199993, 46.063600691700003 ], [ -122.246433641500005, 46.055605308700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000, "random": 138.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.065493119899998, 47.817931230100001 ], [ -122.0562501932, 47.829998507799999 ], [ -122.029595684300006, 47.8298762266 ], [ -121.999229962399994, 47.852339701799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000, "random": 103.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.136478190800005, 47.638442178699997 ], [ -122.135129008199996, 47.640071799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000, "random": 37.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.546985666500007, 45.816821755600003 ], [ -122.522068819599994, 45.853246725600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000, "random": 10.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232887504800004, 47.923352192499998 ], [ -122.223176560499994, 47.922657651400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000, "random": 190.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129998052199994, 48.205757020199997 ], [ -122.143389182, 48.224677901699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000, "random": 74.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209602461599999, 48.821069883 ], [ -122.202529349100004, 48.8159609661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300, "random": 147.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.937941742199996, 47.660685361 ], [ -117.916702149900004, 47.665311003900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000, "random": 87.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.491951754400006, 47.2348877891 ], [ -122.493797523, 47.234861136500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000, "random": 55.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764871137399993, 47.061291889300001 ], [ -122.764545577600003, 47.056484255900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000, "random": 39.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.011506857699999 ], [ -122.688198335500005, 47.009027615599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000, "random": 32.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.349936357600001, 47.243030334799997 ], [ -122.336563296799994, 47.245039798100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000, "random": 95.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311962962300001, 47.352280902300002 ], [ -122.3092462539, 47.358081797099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200, "random": 40.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157996431499996, 46.139111668399998 ], [ -118.150260957100002, 46.142040045900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400, "random": 80.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320503305499997, 46.331399090600002 ], [ -120.320539039099998, 46.338643096699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": null, "random": 101.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.580873540200002, 47.335330983600002 ], [ -120.568278873, 47.336058576299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000, "random": 96.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.372559284399998 ], [ -122.200615099800004, 47.372272058599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300, "random": 148.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.733411255299998, 47.643483853100001 ], [ -117.690253067, 47.643095278200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000, "random": 72.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325052919499996, 47.821329708500002 ], [ -122.322886246899998, 47.8212957342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000, "random": 8.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257445157700005, 47.201882110100001 ], [ -122.254047685, 47.200943512800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600, "random": 76.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.614190986399997 ], [ -121.657725599100004, 46.623916184800002 ], [ -121.616003575799994, 46.647894068200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400, "random": 103.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972796020800004, 46.3237819677 ], [ -117.974182862099994, 46.327018262400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800, "random": 129.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.524309672900003, 47.504827718400001 ], [ -122.510482342299994, 47.504848737300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000, "random": 193.024 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322457988599993, 47.646211059 ], [ -122.322462732, 47.649617031399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900, "random": 104.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256984579499999, 46.810235263 ], [ -119.218196494200001, 46.814163495099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600, "random": 167.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.446045358099994, 46.371667617200004 ], [ -119.440655677400002, 46.380876464899998 ], [ -119.422814149700002, 46.383299103600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600, "random": 49.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427580837400001, 47.316802342099997 ], [ -122.423311671099995, 47.317046900500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600, "random": 180.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857728382399998, 46.693948643900001 ], [ -123.843169682799996, 46.698412045799998 ], [ -123.815351378800003, 46.670740711699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500, "random": 121.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.099110968399998, 47.18070609 ], [ -123.097157172300001, 47.181812840200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100, "random": 192.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.859747683400002, 45.8244297002 ], [ -120.831867271600004, 45.823059503700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500, "random": 187.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.579954340900002, 48.364475813299997 ], [ -119.545085984599993, 48.396250068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200, "random": 75.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.285789036099999, 46.5613718886 ], [ -122.275243482700006, 46.558324606299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000, "random": 169.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293226289900005, 47.118364891100001 ], [ -122.293083368400005, 47.125652137099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300, "random": 117.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.792112052700006, 45.848375413299998 ], [ -120.770900456899994, 45.861551476899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390, "random": 188.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.681191137499994, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.674533895600007, 48.032939331100003 ], [ -118.668829663, 48.0503155854 ], [ -118.673824602600007, 48.069260523899999 ], [ -118.69074626, 48.082852740600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000, "random": 39.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.893609498800004, 46.589134577700001 ], [ -122.904494363, 46.602130269200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600, "random": 17.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.113551631600004, 47.453231937300004 ], [ -123.115551230199998, 47.444827978200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000, "random": 175.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.417644232100002, 47.238212922800003 ], [ -122.408349942100003, 47.2391797955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300, "random": 92.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625971802600006, 47.398107085 ], [ -122.625772112199996, 47.400002299699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000, "random": 183.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.224368274400007, 47.477801894899997 ], [ -122.220911129, 47.478825466300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000, "random": 139.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.551496168100002, 47.993632692699997 ], [ -117.566302510300005, 47.993875943600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800, "random": 179.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.699941006700001, 45.923000308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800, "random": 135.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.942512646200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": null, "random": 123.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.618136899600003, 47.250037303500001 ], [ -119.598554678200003, 47.251897161499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000, "random": 164.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304514492500005, 47.645285222699997 ], [ -122.304573455500005, 47.649044063300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000, "random": 52.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.444732982900007, 47.632699017299998 ], [ -117.448371310200002, 47.641008035600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000, "random": 62.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100278283400002, 47.211973236299997 ], [ -123.100111778499993, 47.212806620899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000, "random": 154.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884496518500001, 46.256196953100002 ], [ -122.8921920489, 46.267577082899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000, "random": 134.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341143146500002, 48.446976752200001 ], [ -122.341401835200003, 48.4590968726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700, "random": 135.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950446235800001, 46.896255370299997 ], [ -122.942007440400005, 46.895919678200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000, "random": 104.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900788784599996, 46.108478242700002 ], [ -122.892543258700002, 46.106806579699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600, "random": 117.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883825273799999, 47.952251071399999 ], [ -122.881744519600005, 47.9446523903 ], [ -122.853669394500002, 47.940789816900001 ], [ -122.813727298700002, 47.922952148299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000, "random": 192.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.595569385700003, 46.5253458249 ], [ -122.565213602, 46.543440782799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200, "random": 171.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.496876955600001, 47.797040983899997 ], [ -122.495984081200007, 47.795839855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000, "random": 61.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813259501299996, 48.100401481399999 ], [ -122.788558961099994, 48.102942128199999 ], [ -122.783199502800002, 48.107007579799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000, "random": 99.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239712502900005, 47.6897536118 ], [ -117.218478744600006, 47.694493817100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000, "random": 162.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487190900004, 47.739650548199997 ], [ -117.411427803, 47.740847495899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000, "random": 167.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239584531099993, 47.672579561500001 ], [ -117.2395516805, 47.672993962200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000, "random": 96.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.694793762299994, 47.381239063 ], [ -122.680812527, 47.388765448500003 ], [ -122.661306576300007, 47.388976470899998 ], [ -122.651867621700006, 47.385441657299999 ], [ -122.652851016599996, 47.377332321499999 ], [ -122.641894565100003, 47.379505721400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500, "random": 67.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.823931182699994, 45.699442413 ], [ -120.800817614300001, 45.711712685800002 ], [ -120.808059784299999, 45.719956501399999 ], [ -120.814450276299993, 45.72130035 ], [ -120.822499269700003, 45.743168923 ], [ -120.822947646900005, 45.777179853299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600, "random": 56.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609054417199999, 47.8521256366 ], [ -122.602042804600003, 47.854763585699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000, "random": 142.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169983570699998, 47.753052414899997 ], [ -122.168895232500006, 47.752366135400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000, "random": 131.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.445060728100003, 47.066579651399998 ], [ -122.434686733199996, 47.083417430099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200, "random": 142.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.040486107299998, 46.161211968099998 ], [ -119.049476697399996, 46.168670079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000, "random": 97.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229390794599993, 47.192863402299999 ], [ -122.22939549, 47.191639746100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700, "random": 15.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.786851206799994, 46.967101999900002 ], [ -123.788090911200001, 46.967896691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700, "random": 73.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311493874600004, 46.862481513299997 ], [ -122.330955177899995, 46.868650931300003 ], [ -122.346151983200002, 46.864671256299999 ], [ -122.348599611699996, 46.8698964015 ], [ -122.341247335299997, 46.878373559099998 ], [ -122.359020038699995, 46.8898382458 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000, "random": 39.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.218478744600006, 47.694493817100003 ], [ -117.192442595100005, 47.69589869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000, "random": 174.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208800066199998, 47.915072194099999 ], [ -122.207566482900006, 47.915287680600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000, "random": 67.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.132707043300002, 48.1526864406 ], [ -122.116764399600001, 48.151631423700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000, "random": 10.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.821463436599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000, "random": 37.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.888045170599995, 47.034962724700002 ], [ -122.875302195800003, 47.036689104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600, "random": 189.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.492390975500001, 46.937977309899999 ], [ -122.484172063499997, 46.938007018199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000, "random": 99.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220352926700002, 47.582451626400001 ], [ -122.200054353400006, 47.578719073899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000, "random": 57.757 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.469437454900003, 46.506554291800001 ], [ -120.4796170905, 46.516495101300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000, "random": 42.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575401006199996, 47.487355220600001 ], [ -117.564733440400005, 47.498272492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350, "random": 179.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467680710099998, 46.702386698200002 ], [ -117.467287985300004, 46.7034528115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300, "random": 51.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.199816309400006, 46.331131533499999 ], [ -120.180194115600003, 46.345278852200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000, "random": 7.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.661463342399998 ], [ -122.285944848200003, 47.661989355800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000, "random": 114.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275636924400004, 47.870880789399997 ], [ -122.274852247499993, 47.8718113531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100, "random": 172.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.729957308199999, 48.0326119562 ], [ -122.720736025400001, 48.026811053700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": null, "random": 153.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.306528688200004, 47.416668391899996 ], [ -120.317045772100002, 47.429466244099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000, "random": 177.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.620686334699997, 46.6605003365 ], [ -120.614235774899996, 46.6544908714 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200, "random": 86.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364914465300004, 46.890563387699999 ], [ -117.364248234599998, 46.889589876499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000, "random": 187.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.214291678800002 ], [ -122.462747020199998, 47.215959170799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000, "random": 12.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.044831924299999, 47.399706131899997 ], [ -122.039324433900006, 47.407973190200003 ], [ -122.005064919500001, 47.419436488800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000, "random": 118.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434380151200003, 47.148970958900001 ], [ -122.434250602, 47.155430989599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": null, "random": 184.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294775757099998, 47.415324222800002 ], [ -120.294127652200004, 47.413015349399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000, "random": 75.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196925317099996, 47.445266757200002 ], [ -122.198250392399999, 47.447197230199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000, "random": 148.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570692450600006, 47.803729114699998 ], [ -122.563306341, 47.80561327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000, "random": 93.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244986940100006, 48.156605492600001 ], [ -122.238352000500001, 48.1519754742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000, "random": 77.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552815713100003, 45.612150505899997 ], [ -122.556305050399999, 45.616735027099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200, "random": 60.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.624893170799993, 45.928329865400002 ], [ -119.603047109, 45.936904906499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470, "random": 20.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.842379238299998, 47.839766465700002 ], [ -117.855326948499993, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000, "random": 90.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.971946803199998, 47.535619038900002 ], [ -121.942399051199999, 47.530214060600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100, "random": 152.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.363341681900003 ], [ -119.579954340900002, 48.364475813299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000, "random": 164.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190021415199993, 48.159825483299997 ], [ -122.193028377600001, 48.176135222 ], [ -122.199439421799994, 48.184232346199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440, "random": 144.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.884811685899997 ], [ -118.332910287700003, 46.911286584700001 ], [ -118.343440479400002, 46.915750159 ], [ -118.345358429599997, 47.002118431 ], [ -118.352361527599996, 47.0106200548 ], [ -118.347825199499994, 47.040541544900002 ], [ -118.365168418099998, 47.0601072344 ], [ -118.365631712500004, 47.112475028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000, "random": 6.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320662024800001, 47.676906509799998 ], [ -122.32934455, 47.695753648699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600, "random": 136.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.938415335599998, 47.194899606299998 ], [ -120.940179987500002, 47.196077890700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": null, "random": 186.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.092601985599998, 47.868149586400001 ], [ -119.092825470700006, 47.880457760200002 ], [ -119.0773477173, 47.890119071500003 ], [ -119.064173043799997, 47.905872503799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700, "random": 177.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.954310122899997, 46.719354594599999 ], [ -122.955524056300007, 46.716503990200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000, "random": 179.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192243083299999, 47.494131979700001 ], [ -122.195341635899993, 47.499456439200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520, "random": 35.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.151145783700002, 45.818334026400002 ], [ -121.146396011500002, 45.821781871200002 ], [ -121.120394404699994, 45.818296193400002 ], [ -121.115288165099997, 45.825028865500002 ], [ -121.100019608099998, 45.824926880500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000, "random": 198.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134010446800005, 47.3579773429 ], [ -122.128107064100007, 47.358033512399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000, "random": 18.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337551775799994, 45.9498941429 ], [ -119.332466565399997, 45.9393404761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700, "random": 192.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.822585393400004, 48.534895129 ], [ -117.817888608199993, 48.525398877400001 ], [ -117.804791347, 48.514740899800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": null, "random": 193.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.089820147799998, 47.839707846700001 ], [ -120.053845938899997, 47.835984992900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260, "random": 111.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.612498886499999 ], [ -118.7206203577, 47.6136015226 ], [ -118.721686502200001, 47.756587506300001 ], [ -118.710111471299996, 47.757920299600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000, "random": 160.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764545577600003, 47.056484255900003 ], [ -122.764636559600007, 47.052285571600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900, "random": 43.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.945053307500004, 48.8896410913 ], [ -121.942027628899993, 48.889158419700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000, "random": 16.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216714377599999, 47.911343964899999 ], [ -122.212938500800007, 47.91279953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000, "random": 65.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.224735507399998, 47.5862739437 ], [ -117.221607451300002, 47.596981261499998 ], [ -117.223579115199996, 47.616455505799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000, "random": 147.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.015412092800005, 48.067401767299998 ], [ -122.009898974199999, 48.071628269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000, "random": 175.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.150977982499995, 46.214876564199997 ], [ -119.141109524399994, 46.215426044399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": null, "random": 146.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.718972574299997, 47.199367178300001 ], [ -120.708024373599997, 47.203648771300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000, "random": 122.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.098714277300004, 47.369492418100002 ], [ -122.081556476599999, 47.3772542241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000, "random": 164.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.590602617200005, 45.652794820399997 ], [ -122.581605412299993, 45.655987363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000, "random": 49.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.297511450399995, 46.300101854099999 ], [ -119.304903977600006, 46.292829903700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000, "random": 129.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.104738240499998 ], [ -122.951208942899996, 46.115761426399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000, "random": 69.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.279633118600003, 45.690688236100002 ], [ -121.213879230399996, 45.673461159799999 ], [ -121.192866507600002, 45.6576560325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710, "random": 10.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398139108899997, 47.395175907 ], [ -121.398065622, 47.395608745700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": null, "random": 7.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.977015037599998, 47.817024460699997 ], [ -119.974790843500003, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790, "random": 195.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704325545200007, 46.773822606700001 ], [ -117.693973727100001, 46.788923715800003 ], [ -117.677831532799999, 46.793652444899998 ], [ -117.655064922899996, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000, "random": 87.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257900493099996, 47.291814197699999 ], [ -122.254118291, 47.299842864399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000, "random": 29.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.770303523700001 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000, "random": 133.345 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.014328780600003 ], [ -122.191598935599998, 48.012573229799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": null, "random": 151.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854827819899995, 47.23342187 ], [ -119.853366397299993, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000, "random": 142.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.653823445500002 ], [ -117.330248918500004, 47.653713239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900, "random": 25.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.765640039800005, 46.951272514899998 ], [ -123.769599737799993, 46.954635166599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000, "random": 167.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.451210130099994, 46.577085327600003 ], [ -120.435463721399998, 46.5745924593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900, "random": 124.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.665049294699998 ], [ -119.005874759600005, 46.700806829800001 ], [ -119.009835216300004, 46.710106335299997 ], [ -119.022009186, 46.720422426299997 ], [ -119.048710915699999, 46.7291966819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000, "random": 67.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.957740050399998 ], [ -122.619337819, 45.9439148266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000, "random": 46.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411745008500006, 47.601977328499999 ], [ -117.439007811799996, 47.624062479899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100, "random": 136.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.616494335699997, 48.788441017300002 ], [ -118.616803513, 48.795955186900002 ], [ -118.603415779200006, 48.804910712199998 ], [ -118.591618267499996, 48.827026486400001 ], [ -118.592129602599996, 48.835434792599997 ], [ -118.603937251700003, 48.855909163600003 ], [ -118.606337912499995, 48.873286374800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000, "random": 177.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.864239590400004, 47.511184175899999 ], [ -121.853054034099998, 47.511870957699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900, "random": 176.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.278589829400005, 48.097019969599998 ], [ -117.251298774, 48.099857116599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300, "random": 82.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.583279323499994, 47.481886183299999 ], [ -117.581932979, 47.482522184700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000, "random": 186.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.700474082699998, 46.8819430195 ], [ -122.688859129400001, 46.888362931400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000, "random": 38.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435610210099995, 45.580163137200003 ], [ -122.426673153600007, 45.579885332700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000, "random": 164.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.324165458899998, 47.729615819499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": null, "random": 78.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.469831748700003, 47.542619719199998 ], [ -119.4532411733, 47.566569662900001 ], [ -119.436268802900003, 47.572640579800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600, "random": 169.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347169334100002, 48.919529469799997 ], [ -122.323440946900007, 48.920195971799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000, "random": 73.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.099712027199999, 47.205696953500002 ], [ -123.101162050699998, 47.207212564800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000, "random": 59.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.521907403699998, 45.856848830799997 ], [ -122.5200551004, 45.865996916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000, "random": 123.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.413129962100001, 48.450215427099998 ], [ -122.3810673208, 48.4573156123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000, "random": 94.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.541726008099999 ], [ -122.634901901099994, 47.541423549599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800, "random": 109.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952739627200003, 46.720041065 ], [ -122.952249981600005, 46.7274803396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000, "random": 138.768 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.879906306800002 ], [ -117.3647146566, 46.881018551099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000, "random": 23.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312363667300005, 47.347799161099999 ], [ -122.311962962300001, 47.352280902300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000, "random": 115.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.184801595899998 ], [ -120.897727887100004, 47.180423953599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600, "random": 157.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.952607635800007, 48.577391783300001 ], [ -117.989437568599996, 48.589057101599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000, "random": 69.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632946940099998, 47.567332683300002 ], [ -122.632914151400001, 47.571068204600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000, "random": 180.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.996177086499998 ], [ -122.544028419100002, 47.00195264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000, "random": 64.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345252791700005, 47.741452447 ], [ -122.345489043399994, 47.752490517399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": null, "random": 135.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.498698481900007, 47.369072135099998 ], [ -119.497251069100002, 47.370285029800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": null, "random": 11.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.657240849299995, 47.598358932399996 ], [ -120.654043935600001, 47.599084438699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000, "random": 98.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515628701099999, 45.594861204200001 ], [ -122.494389272800007, 45.589055721699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800, "random": 180.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.450008249200003 ], [ -117.141556500500002, 47.4513001292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000, "random": 53.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.732395601100002 ], [ -117.174164814199997, 46.737912873399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000, "random": 145.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515758745799999, 47.281707768 ], [ -122.515740677500006, 47.290804219499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000, "random": 92.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245588636600004, 47.441221085499997 ], [ -122.243838936399996, 47.456863249199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600, "random": 71.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523296206200001, 48.409470013799996 ], [ -119.525680334100002, 48.410508638499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000, "random": 151.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.811532211399999 ], [ -122.4859938914, 48.815000193800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000, "random": 116.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.965876132600002, 47.193616516900001 ], [ -120.928033390699994, 47.189314567899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000, "random": 110.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.508717176600001, 47.144773798300001 ], [ -122.498918855499994, 47.150179615500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000, "random": 66.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263541723100005, 47.922179159300001 ], [ -122.251099789600005, 47.923251180100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100, "random": 23.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.899961343100003, 47.187712731600001 ], [ -120.904018699199995, 47.188626240200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000, "random": 187.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187184739399996, 47.501857325400003 ], [ -122.182621094699996, 47.498815123200004 ], [ -122.174077864200001, 47.505820768600003 ], [ -122.159856862200002, 47.504657659899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600, "random": 65.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.729995110700003, 48.962176777700002 ], [ -122.728414178700007, 48.9757559926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000, "random": 192.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.418963561400005, 47.831494809600002 ], [ -117.423143167099994, 47.884351820399999 ], [ -117.453850354599993, 47.918261358400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200, "random": 30.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719519990600006, 45.649917745300002 ], [ -122.730817493900005, 45.655963797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000, "random": 58.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.090309300800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700, "random": 133.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.966750153099994, 46.379458651 ], [ -119.950716872800001, 46.397066288200001 ], [ -119.947935165800004, 46.414195625399998 ], [ -119.937359903699999, 46.433729893200002 ], [ -119.938319542, 46.4575952693 ], [ -119.931018093099993, 46.474130456200001 ], [ -119.901708315500002, 46.497304085 ], [ -119.884335095899999, 46.505082388399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000, "random": 69.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.924700924500002, 46.1221385232 ], [ -122.918327484900004, 46.1179762286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000, "random": 152.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.659992095900002 ], [ -117.413322953399998, 47.659074764899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800, "random": 185.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152366198600006, 47.733080413899998 ], [ -122.140454259600006, 47.730977296299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900, "random": 121.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704477620199995, 47.548263456599997 ], [ -117.704451580400004, 47.551027418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000, "random": 94.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780998914600005, 48.0297888001 ], [ -122.788828616299995, 48.0414353719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200, "random": 71.454 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897990560300002, 47.693584234699998 ], [ -122.900066849799998, 47.677266599900001 ], [ -122.932301409600001, 47.6518739395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000, "random": 192.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.003632927599995, 47.309464702200003 ], [ -122.011624264299996, 47.333040471099999 ], [ -122.018297171699999, 47.341006772299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000, "random": 89.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159818660100001, 47.760252736799998 ], [ -122.157000635700001, 47.765024263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300, "random": 154.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.681604375399999, 48.269260962 ], [ -121.674372320399996, 48.2692255901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000, "random": 172.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.527130170600003, 47.006995839200002 ], [ -122.460282873, 47.059036581100003 ], [ -122.445060728100003, 47.066579651399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000, "random": 14.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.525993174800007, 48.794574176700003 ], [ -122.544684767600003, 48.8138630642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800, "random": 69.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.307012344300006, 46.567981686 ], [ -123.299917084200004, 46.570027498100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000, "random": 56.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.319748079199996, 47.681633366299998 ], [ -122.318091806, 47.682431997400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200, "random": 20.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.905102340499994, 46.184711848900001 ], [ -122.907074601299996, 46.190049258599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000, "random": 111.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172787934200002, 46.739769734200003 ], [ -117.1710414458, 46.742490409399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000, "random": 137.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.882350975700007, 46.979220086200002 ], [ -123.885748099899999, 46.980644841100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000, "random": 40.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.006531622099999, 47.055212302699999 ], [ -122.999819081400005, 47.050500637500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": null, "random": 189.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.323545995499998, 47.476904531599999 ], [ -120.320705919600002, 47.4808771816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000, "random": 32.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.787286583799997, 47.495120452199998 ], [ -121.788376675, 47.494065390700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000, "random": 110.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.825197281100003 ], [ -122.243115319599994, 47.825676567800002 ], [ -122.233172088499998, 47.821066967299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400, "random": 58.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.882980214300005, 46.712717408099998 ], [ -120.873686989600003, 46.712256900699998 ], [ -120.845798615700005, 46.721461564199998 ], [ -120.818784696600005, 46.719442916699997 ], [ -120.8111956085, 46.726698166299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600, "random": 193.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.574657667500006, 46.5626246259 ], [ -123.540294740700006, 46.557692377800002 ], [ -123.520315093700006, 46.545220347399997 ], [ -123.494926021, 46.541009466600002 ], [ -123.416451494900002, 46.550889163599997 ], [ -123.393897732400006, 46.5443022941 ], [ -123.374665320600002, 46.551940327499999 ], [ -123.3387554018, 46.5498400922 ], [ -123.318153313400003, 46.553769905700001 ], [ -123.307012344300006, 46.567981686 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000, "random": 118.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.744597967700003, 46.973572635799997 ], [ -123.738195968599996, 46.971090700700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": null, "random": 104.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.064173043799997, 47.905872503799998 ], [ -119.056355265600004, 47.915376585200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000, "random": 159.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.650736343700004, 47.769589163600003 ], [ -122.651542756799998, 47.791613631499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000, "random": 75.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736102562400006, 46.693707214699998 ], [ -123.747746263300002, 46.693374154399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000, "random": 25.176 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461613891900001, 48.760763625700001 ], [ -122.462228315900006, 48.768161057299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100, "random": 74.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.803768033799997, 46.438116363900001 ], [ -122.726748559900003, 46.437357559500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000, "random": 113.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.247280654299999 ], [ -123.045670011, 47.247837466199996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000, "random": 23.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.609005895700001 ], [ -122.570935883800004, 45.608022223200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000, "random": 153.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553834768499996, 46.952413496699997 ], [ -122.546840301700001, 46.992764977500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570, "random": 58.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552551361799999, 46.644788750300002 ], [ -118.549509477200004, 46.645356033399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000, "random": 166.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219327033699997, 47.30338806 ], [ -122.186934388599994, 47.298301147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000, "random": 160.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658117051700003, 45.618558865399997 ], [ -122.633422151299996, 45.6184980719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900, "random": 117.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.842250419799996, 46.411322035600001 ], [ -123.834998321100002, 46.394895656499997 ], [ -123.828198165900005, 46.391360921900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480, "random": 23.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.146875159499999, 48.306812825500003 ], [ -118.163118670599999, 48.352028812299999 ], [ -118.171552227500001, 48.409100633100003 ], [ -118.170843796300005, 48.428829625399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": null, "random": 47.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853405347299997, 47.222329436499997 ], [ -119.853382887400002, 47.231885111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100, "random": 53.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.761994264799995, 48.063266369600001 ], [ -117.755210289199994, 48.116761860099999 ], [ -117.732778112199995, 48.138301395100001 ], [ -117.726046511600003, 48.150359313899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700, "random": 73.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.722712223299993, 48.168542211599998 ], [ -117.726284757100004, 48.176220476499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": null, "random": 60.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.590263712199999 ], [ -120.667643367899998, 47.592781258700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": null, "random": 72.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.254646437100007, 46.981691158700002 ], [ -119.205954712600004, 46.984795443199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000, "random": 35.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185741568699996, 47.754859998100002 ], [ -122.184062738199998, 47.760638188199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000, "random": 137.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.780129801500003 ], [ -122.599982644, 45.780145376699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000, "random": 53.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095723781800004, 47.157298820199998 ], [ -123.095106414, 47.142989269300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000, "random": 83.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275545727899996, 47.820914372499999 ], [ -122.265870576400005, 47.820744648900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460, "random": 82.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.774083295099999 ], [ -118.288657225600005, 46.787931700800002 ], [ -118.309745397100002, 46.8098489829 ], [ -118.309986261899994, 46.8161196557 ], [ -118.321764154500002, 46.822539058 ], [ -118.332139242099998, 46.838981876600002 ], [ -118.336263813200006, 46.8534807148 ], [ -118.334575397, 46.884811685899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000, "random": 93.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.987609501799994, 46.157644308199998 ], [ -122.983354596599995, 46.155547457499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100, "random": 172.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.917970384499995, 46.9819334325 ], [ -123.92417003, 46.982514410199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100, "random": 134.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.333365258299999 ], [ -118.692231093100006, 47.333315666600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000, "random": 46.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.255459168900003, 47.145496228900001 ], [ -117.267706028099994, 47.161508018200003 ], [ -117.289177435699997, 47.167952476099998 ], [ -117.295845237199998, 47.183325498099997 ], [ -117.329578624299998, 47.186982457500001 ], [ -117.354687911200003, 47.203496109299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 112.339 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.832449934699994, 47.104225926799998 ], [ -119.830782215400006, 47.103697310500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100, "random": 104.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811450259200001, 46.699384844699999 ], [ -123.8253745361, 46.709170275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000, "random": 174.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.224092029300003 ], [ -119.099771153899994, 46.223724902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600, "random": 107.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884773839800005, 47.985575900699999 ], [ -122.882024161499999, 47.968795396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": null, "random": 72.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.746889316500003, 47.2346362782 ], [ -119.725170925599997, 47.248912161500002 ], [ -119.618136899600003, 47.250037303500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000, "random": 149.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661304943800005, 45.647498224 ], [ -122.649649797199999, 45.650423183699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000, "random": 29.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.406870838900005, 45.601867264600003 ], [ -122.4055026586, 45.596100378800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600, "random": 192.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.728964255699999 ], [ -122.953673774899997, 46.728946156100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000, "random": 101.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.115130120299995, 47.672044652099999 ], [ -122.113361770400005, 47.671528366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900, "random": 115.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.301532072699999, 48.181441509700001 ], [ -117.301212642400003, 48.191267265 ], [ -117.289717620199994, 48.206522926700003 ], [ -117.291480250199996, 48.2273126077 ], [ -117.283086253500002, 48.236682837499998 ], [ -117.284575433900002, 48.281276573600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000, "random": 101.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327158730700006, 47.713627215899997 ], [ -122.3242862882, 47.7185219104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900, "random": 34.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.738462718600005, 48.535925892400002 ], [ -121.722336944700004, 48.531946086200001 ], [ -121.707521914899999, 48.519146603499998 ], [ -121.676039301700001, 48.515161287300003 ], [ -121.651386023200004, 48.504193452800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": null, "random": 71.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.658515798799996, 47.051493470600001 ], [ -120.629181264300001, 47.0396007246 ], [ -120.586741587099993, 47.0023957095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500, "random": 197.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.138001808699997, 48.9060853167 ], [ -122.137590950499998, 48.917143280200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": null, "random": 30.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.398285650200002 ], [ -120.256496735599995, 47.385313725800003 ], [ -120.192223719300003, 47.377314531099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700, "random": 178.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.850561469400006, 46.660610888900003 ], [ -118.836746209300003, 46.6949715887 ], [ -118.834885435800004, 46.7191386362 ], [ -118.820843535500003, 46.734021038900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000, "random": 56.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.951711013400001, 46.146902157200003 ], [ -122.925928061600004, 46.146338437399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700, "random": 111.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857643340400003, 46.429368113400002 ], [ -123.856614353400005, 46.4366406332 ], [ -123.871447488200005, 46.447636019800001 ], [ -123.874041637299996, 46.459116775200002 ], [ -123.887829776399997, 46.479158477699997 ], [ -123.885948848799998, 46.520281643799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400, "random": 94.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.438928498500005, 48.705561124 ], [ -119.437398043100004, 48.707299203300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100, "random": 170.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.766732319699997, 48.110171865 ], [ -122.760830541199994, 48.112587725399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000, "random": 129.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645906529200005, 48.3044536381 ], [ -122.643433158400001, 48.306580660599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000, "random": 67.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846451108899998, 47.424603187199999 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700, "random": 37.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626092716800002, 47.389054986200001 ], [ -122.625971802600006, 47.398107085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200, "random": 171.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.052535915500002, 46.466597142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000, "random": 86.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096767187400005, 47.034123827899997 ], [ -123.075452955200006, 47.040501892199998 ], [ -123.057714818400001, 47.040926856200002 ], [ -123.022376311800002, 47.0580771821 ], [ -123.012427460200001, 47.056316642699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000, "random": 179.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.992391644899996, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540, "random": 40.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270593977499999, 46.287340526100003 ], [ -122.2586933356, 46.282962894800001 ], [ -122.218407742300002, 46.290256532 ], [ -122.1949063653, 46.282330540300002 ], [ -122.201910292600004, 46.278940565399999 ], [ -122.216691878199995, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.218532111800002, 46.277597057100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200, "random": 133.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254669381300005, 47.479786644 ], [ -118.254619604499993, 47.483794136199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": null, "random": 197.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.831155034299996, 47.103871256600002 ], [ -119.827257676599999, 47.106307188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000, "random": 94.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.897076554700007, 46.981004020500002 ], [ -123.902252551, 46.981045286799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400, "random": 78.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194015632499998, 48.523674249099997 ], [ -122.149310257, 48.5311401242 ], [ -122.120553856399994, 48.526076599200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000, "random": 108.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215888421800003, 47.844398369499999 ], [ -122.217566158099999, 47.849690876499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900, "random": 197.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.571252840200003, 48.114671255600001 ], [ -123.566690726800005, 48.114021332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500, "random": 131.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.537578659499999 ], [ -122.225111655199996, 48.5503306146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000, "random": 14.696 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.850435511500002 ], [ -117.349797920599997, 46.859706395899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000, "random": 187.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.952490936700002, 46.356372887600003 ], [ -117.939261629200004, 46.382620523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": null, "random": 130.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.306221311900003, 47.416281941 ], [ -120.306528688200004, 47.416668391899996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000, "random": 82.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.277773723600006, 47.879481564 ], [ -122.279969000299999, 47.882689195399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800, "random": 53.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042666862199994, 48.178097309100004 ], [ -117.042496270800001, 48.183023593599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100, "random": 6.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.513886217199996, 45.742904109100003 ], [ -121.520498653900006, 45.757592861699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000, "random": 94.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.447814221599998, 47.648093677200002 ], [ -117.419560291500005, 47.652634740700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": null, "random": 152.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319580717500003, 47.471603209500003 ], [ -120.302587343100001, 47.468606566600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000, "random": 48.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.844831450599997 ], [ -122.581291760599996, 48.852425293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000, "random": 99.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.031730899199999 ], [ -119.226778941800006, 46.018087104300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": null, "random": 158.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.138472205699998, 46.892262265 ], [ -119.1444896159, 46.898485156200003 ], [ -119.136399920399995, 46.911106677299998 ], [ -119.127970605499996, 46.948558243699999 ], [ -119.118610982700005, 46.959526672899997 ], [ -119.117938296399998, 46.970178233699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": null, "random": 83.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.002377226700006, 47.948533089199998 ], [ -119.003281298499999, 47.947389362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000, "random": 73.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097337669699996, 47.182654412799998 ], [ -123.098432778900005, 47.1898992789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000, "random": 96.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.101069391699994, 47.945623791300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000, "random": 49.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320756053599993, 47.5899474422 ], [ -122.320505071599996, 47.597507913800001 ], [ -122.326526705800006, 47.603443393299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000, "random": 160.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.616890748499998, 47.095200003599999 ], [ -122.596393383099993, 47.1027062195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000, "random": 105.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109931729799996, 48.0262394664 ], [ -122.110236543900001, 48.0279042262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000, "random": 127.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352326864700004, 47.896195442500002 ], [ -117.3511036365, 47.903873351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100, "random": 196.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405380887899994, 48.685132053300002 ], [ -117.410433622300005, 48.690488770499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000, "random": 117.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705914185200001, 48.212264044199998 ], [ -122.725461141899999, 48.211111053899998 ], [ -122.739906625399996, 48.229200774500001 ], [ -122.714806118200002, 48.240309297800003 ], [ -122.709870923099999, 48.252375046899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000, "random": 59.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579412024899995, 45.667671509400002 ], [ -122.587012075, 45.679331785400002 ], [ -122.600874425699999, 45.687439573699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000, "random": 135.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.478825466300002 ], [ -122.219472077800006, 47.479506736399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000, "random": 103.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671804578500002, 45.623437204 ], [ -122.665487439100005, 45.620068800200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000, "random": 39.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.906697669099998 ], [ -122.485438928199997, 48.935124034799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200, "random": 41.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044727134499993, 46.308126455599997 ], [ -124.0447225968, 46.308871953599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000, "random": 13.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.549966554799994, 45.596930635500001 ], [ -122.550990690500001, 45.6012653728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000, "random": 83.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093941382599994, 46.249878458300003 ], [ -119.091746744800005, 46.250303521799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000, "random": 58.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.522068819599994, 45.853246725600002 ], [ -122.521907403699998, 45.856848830799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000, "random": 79.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350203448900004, 47.913704343699997 ], [ -117.350617898799996, 47.943270476800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000, "random": 78.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.005064919500001, 47.419436488800002 ], [ -121.983976336599994, 47.432043093399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100, "random": 144.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.807249664599993, 45.812378431500001 ], [ -120.803937911800006, 45.826466493799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000, "random": 103.644 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293173814799999, 47.922087901099999 ], [ -122.291437428099997, 47.922028754499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700, "random": 143.87 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.946056784200003 ], [ -122.485215379099998, 48.964238869100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000, "random": 136.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564729693399997, 47.498854207599997 ], [ -117.564705970600002, 47.501189749200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900, "random": 38.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.047629963199995, 46.628574325099997 ], [ -123.0183397646, 46.6437586626 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240, "random": 98.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.722593508499997, 47.770852469499999 ], [ -118.72180243, 47.830754206500004 ], [ -118.715817163300002, 47.841824483499998 ], [ -118.717799358099995, 47.855788432600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100, "random": 156.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.422067295399998, 48.442737456499998 ], [ -122.390445812, 48.442298905900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000, "random": 184.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.981876614400001 ], [ -122.204347122200005, 47.9819297636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000, "random": 118.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407456154499997, 47.7875219182 ], [ -117.405978251099995, 47.8001660961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800, "random": 95.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.866032850700002 ], [ -119.7003175758, 45.890464521299997 ], [ -119.663181917399996, 45.913184000299999 ], [ -119.624893170799993, 45.928329865400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800, "random": 102.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.056135401899994, 46.290258796700002 ], [ -124.048097541100006, 46.302051926899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000, "random": 144.142 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223328891899996, 47.909586154800003 ], [ -122.216714377599999, 47.911343964899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700, "random": 147.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.469176691500003 ], [ -123.929173544700006, 47.476353555300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000, "random": 130.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.698740873399998, 47.5866961105 ], [ -122.698640741899993, 47.596019008900001 ], [ -122.7047490044, 47.600798524600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300, "random": 153.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.881992736800001, 48.547212818699997 ], [ -117.880045880699996, 48.547326521099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300, "random": 176.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223631723799997, 47.6278867921 ], [ -117.239846835099996, 47.644532783199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000, "random": 108.207 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699315561399999, 48.259360944199997 ], [ -122.673042558899994, 48.267163379099998 ], [ -122.669463427099998, 48.280628991100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000, "random": 41.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.422341719499997, 47.428268878300003 ], [ -121.411041178199994, 47.424357692199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": null, "random": 136.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.037484430200003 ], [ -120.609221849299999, 47.048058592099999 ], [ -120.629428280400006, 47.074477523200002 ], [ -120.655282075800002, 47.092161682099999 ], [ -120.6686598398, 47.12002506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000, "random": 121.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271022847200001, 47.4819453096 ], [ -122.274414357200001, 47.485065206599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000, "random": 90.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274216435499994, 47.847995263800001 ], [ -122.276814935700003, 47.872663023800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400, "random": 42.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407269104899996, 47.239352940499998 ], [ -122.401936063400001, 47.239469308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000, "random": 130.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.148572778100004, 47.167724522500002 ], [ -122.144185524799994, 47.167459107200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900, "random": 67.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.569178883700005, 47.594619977500003 ], [ -117.567913207199993, 47.593745037799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000, "random": 49.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328864462499993, 47.741140359 ], [ -122.329772653299997, 47.743695937799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000, "random": 190.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607582212500006, 46.941363190200001 ], [ -122.606541076799999, 46.941941313299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000, "random": 135.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.772874057500005, 48.109600754 ], [ -122.770687135100005, 48.109957957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000, "random": 35.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.326852616599993, 46.297790684 ], [ -119.320499343899996, 46.2934725609 ], [ -119.308518342300005, 46.2931233698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700, "random": 20.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.602426876400003, 48.353805119 ], [ -119.595048768599995, 48.355996996800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000, "random": 88.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312755550399999, 47.470155670899999 ], [ -122.300968213600001, 47.465753183499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000, "random": 50.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169841807500006, 47.580124984199998 ], [ -122.138075286900005, 47.578657203900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": null, "random": 70.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014828527199995, 47.839831442300003 ], [ -120.012783225299998, 47.839805990800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000, "random": 51.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.889896867600001 ], [ -122.716366211899995, 47.8813080117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000, "random": 100.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249771308899994, 47.758393083800001 ], [ -122.243678337199995, 47.757435704 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000, "random": 178.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293918658300001, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100, "random": 55.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741382096899997, 48.056948228099998 ], [ -117.756234783300002, 48.059508372099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000, "random": 17.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.383307260599999 ], [ -122.22977526, 47.383322670299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000, "random": 168.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247376556299997, 47.381354441399999 ], [ -122.247422590499994, 47.385264943800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000, "random": 191.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.247837466199996 ], [ -123.035016130299994, 47.253938049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000, "random": 165.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.504790449200001 ], [ -122.594712953699997, 47.504905792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500, "random": 138.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521179451400002, 48.403968476899998 ], [ -119.508228369299999, 48.417115248400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400, "random": 31.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.434163266900001, 48.932386835899997 ], [ -119.435115977699994, 48.9331846153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": null, "random": 74.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483207461299997, 47.3815237106 ], [ -119.483208834400003, 47.383543517500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800, "random": 81.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.885083233899998 ], [ -124.1116144402, 46.886809233699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000, "random": 153.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.097722760300002, 47.498851086400002 ], [ -122.087032509400004, 47.5100083536 ], [ -122.069854013799997, 47.518141062799998 ], [ -122.061944812299998, 47.5311845564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000, "random": 141.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.248590292599999, 46.260915772899999 ], [ -119.227936412099993, 46.272792226200004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000, "random": 160.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179892135299994, 48.039576142599998 ], [ -122.179090836499995, 48.040414721600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600, "random": 162.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.042270083600002, 48.247273043100002 ], [ -122.026469474, 48.256522769299998 ], [ -122.022907918599998, 48.2627125108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800, "random": 95.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528498714799994, 48.409540793 ], [ -119.528486519099999, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000, "random": 137.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.804648479700006, 46.958726717300003 ], [ -123.802570051499998, 46.962027894499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220, "random": 165.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.998448902900002 ], [ -117.276758911599998, 46.004401290799997 ], [ -117.280941070099999, 45.998989409300002 ], [ -117.279817264100004, 46.005447460799999 ], [ -117.257661345599999, 46.027222317300001 ], [ -117.251726872399999, 46.041729002700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": null, "random": 39.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.810762466100002, 47.234104028899999 ], [ -119.768146463600004, 47.234302020599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700, "random": 111.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002713399300006, 46.212166620799998 ], [ -119.998439324, 46.211121560300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200, "random": 109.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.991998143499998, 46.566813438799997 ], [ -118.994354542899998, 46.567494215899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420, "random": 14.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398139108899997, 47.395175907 ], [ -121.389878388499994, 47.392771093100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000, "random": 29.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.329526933799997, 46.375119312 ], [ -120.333169631900006, 46.376967707399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000, "random": 99.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764763806900007, 47.0392228487 ], [ -122.738644335800004, 47.034927617599998 ], [ -122.7287961018, 47.025054085699999 ], [ -122.727145829899996, 47.017871292099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000, "random": 74.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.286526806300003, 47.390672964899998 ], [ -122.279313519599995, 47.389970334 ], [ -122.271494257699999, 47.377466250099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000, "random": 84.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.422649327499997, 46.383209281 ], [ -119.398917675099995, 46.370274191599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900, "random": 146.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903302717100004, 47.183036081799997 ], [ -120.900869444700007, 47.186221290299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400, "random": 88.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815351378800003, 46.670740711699999 ], [ -123.812298900499997, 46.666584194499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400, "random": 151.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.139092994400002 ], [ -122.068412443200003, 47.143839552499998 ], [ -122.059029398, 47.142195626800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900, "random": 176.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.907596618699998, 46.056201396299997 ], [ -118.891347990400007, 46.054345918499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000, "random": 185.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550960549699994, 47.690504212 ], [ -122.561537528599999, 47.710001753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000, "random": 100.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215924349100007, 47.895325602900002 ], [ -122.210202773399999, 47.909684149199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300, "random": 89.945 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.576764640199997, 47.486222185700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800, "random": 103.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.533609333300006, 48.575604223399999 ], [ -119.524710521700001, 48.585216161399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000, "random": 58.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337027626799994, 46.296916328499996 ], [ -119.326852616599993, 46.297790684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000, "random": 67.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.471659728500001, 46.9377123473 ], [ -122.442382649699994, 46.937291079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400, "random": 65.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.673063449899999, 47.463794937599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000, "random": 175.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315658494299996, 47.594845418600002 ], [ -122.308759580599997, 47.590099480699998 ], [ -122.294028606099999, 47.590082601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000, "random": 40.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.983354596599995, 46.155547457499999 ], [ -122.981141874800002, 46.154457643900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000, "random": 190.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436381713900005, 47.23258819 ], [ -122.430465540499995, 47.233370266100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000, "random": 58.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200615099800004, 47.372272058599997 ], [ -122.193531274199998, 47.369374337399996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760, "random": 111.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.693039969400004, 48.519622803499999 ], [ -117.687454235700002, 48.519733623500002 ], [ -117.669804598, 48.503722179 ], [ -117.636421909199996, 48.527874183500003 ], [ -117.593606156, 48.539764033200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000, "random": 138.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239794730599996, 47.658376090600001 ], [ -117.239711879500007, 47.670702168399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300, "random": 103.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990053825299995, 48.083409856199999 ], [ -121.990426831600004, 48.086663289400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800, "random": 28.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.145887174500004, 45.620746481799998 ], [ -121.149338525600001, 45.627246477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500, "random": 33.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.376254892799999 ], [ -120.319926556499993, 46.3750583048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300, "random": 62.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314185593399998, 46.416664953 ], [ -120.314218402500003, 46.414630410199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900, "random": 9.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.002965502600006, 47.266040634699998 ], [ -122.970993700799994, 47.278675160600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000, "random": 22.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531041412600004, 47.809513658299998 ], [ -122.517886741599995, 47.808439866900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000, "random": 194.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.490590750600006, 47.396883244900003 ], [ -121.474633272700004, 47.393916472299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000, "random": 180.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.577836386199998 ], [ -122.179508185499998, 47.587907527399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400, "random": 85.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.003615758899997, 46.14714661 ], [ -122.994938289800004, 46.142280192699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700, "random": 177.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.659076343699994, 48.208690553399997 ], [ -122.667102884900004, 48.208880163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200, "random": 14.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.054039295600006, 46.628090926799999 ], [ -123.047629963199995, 46.628574325099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000, "random": 109.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.200943512800002 ], [ -122.245590463699997, 47.1960629254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": null, "random": 46.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.956933746399997, 46.9310727047 ], [ -119.896076097800005, 46.9263943244 ], [ -119.871633614299995, 46.903268617800002 ], [ -119.854307513099997, 46.898691382099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000, "random": 87.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082754858300007, 46.252250739 ], [ -119.084694014, 46.259515049400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000, "random": 164.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.155310860500002 ], [ -122.292993751799997, 47.156628841500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": null, "random": 68.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.020261139300004, 47.841391245200001 ], [ -120.019405647699998, 47.840956773099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000, "random": 72.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405648486499999, 47.745687617500003 ], [ -117.402291177, 47.749169702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000, "random": 187.284 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073978514199993, 46.426337746 ], [ -117.060792853099997, 46.430979098800002 ], [ -117.039772546699993, 46.4312642493 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200, "random": 148.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.335165828900003, 46.942808011899999 ], [ -117.3342443282, 46.950269737399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000, "random": 66.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.880045880699996, 48.547326521099997 ], [ -117.874397081799998, 48.547393829800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000, "random": 118.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.900788784599996, 46.108478242700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000, "random": 130.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434416219900001, 47.147529408600001 ], [ -122.434380151200003, 47.148970958900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000, "random": 190.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.567523710399996, 45.607301340100001 ], [ -122.562413658599993, 45.606210172499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000, "random": 72.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.748839064899997, 47.867178683399999 ], [ -121.735085712200004, 47.8671728801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300, "random": 153.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056272845799995, 47.140579682099997 ], [ -122.052821815499996, 47.141055273299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400, "random": 171.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.000988019900007, 46.213675046399999 ], [ -119.999627863800001, 46.2207119718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700, "random": 101.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.263804262199997, 47.8258077379 ], [ -124.284970288699995, 47.848449747300002 ], [ -124.321749231200002, 47.854895498300003 ], [ -124.331318487299995, 47.860193407099999 ], [ -124.337820728500006, 47.871093506599998 ], [ -124.356402838199998, 47.8868367862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700, "random": 172.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.044601999400001 ], [ -124.165467930700004, 47.071513026700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400, "random": 5.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.727145829899996, 47.017871292099997 ], [ -122.724712097600005, 47.014546030200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": null, "random": 149.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.305523870299993, 47.415408638 ], [ -120.306221311900003, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400, "random": 23.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.596764177200001, 47.476342927099999 ], [ -117.589920216099998, 47.479158675500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900, "random": 194.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.131550921799999 ], [ -123.667125840599994, 48.119117447900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000, "random": 141.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.287813674800006, 46.259568700099997 ], [ -119.286003107499994, 46.258553541200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000, "random": 150.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.394791245799993, 46.231576610899999 ], [ -123.389461253299999, 46.211684178900001 ], [ -123.384092012699995, 46.206252844399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000, "random": 38.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192273680499994, 47.490126072800003 ], [ -122.192243083299999, 47.494131979700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000, "random": 168.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395343726899995, 47.050702173600001 ], [ -122.397788788400007, 47.053147781100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800, "random": 15.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595048768599995, 48.355996996800002 ], [ -119.594541512800006, 48.355123430799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000, "random": 22.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514116367699998, 45.8882670084 ], [ -122.5115938422, 45.888912007400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100, "random": 65.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.754691057599999 ], [ -121.549283456500007, 46.762803223100001 ], [ -121.548311338199994, 46.770192139099997 ], [ -121.554831628, 46.787550731499998 ], [ -121.556314331600007, 46.813407365899998 ], [ -121.534523232699996, 46.8339911582 ], [ -121.518975271800002, 46.8309746734 ], [ -121.530643629300002, 46.8388115136 ], [ -121.530532102099997, 46.842213440499997 ], [ -121.514777234, 46.854388616500003 ], [ -121.528250949400004, 46.856193764099999 ], [ -121.530214892399997, 46.863507109799997 ], [ -121.539947008799999, 46.866897170599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": null, "random": 43.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.589636086599995, 47.005992688100001 ], [ -120.585973655499998, 47.006613832299998 ], [ -120.594317222200004, 47.014034000099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000, "random": 111.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.126619412400004, 46.246327603 ], [ -119.126488052300004, 46.2492677583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100, "random": 191.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515642471600003, 47.300595473599998 ], [ -122.515328583900001, 47.301975486400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400, "random": 165.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.101265123600001, 48.614546561300003 ], [ -118.113035482200004, 48.624541672200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000, "random": 84.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264316543600003, 47.883095025300001 ], [ -122.258312819500006, 47.889540971800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000, "random": 15.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192163134799998, 48.188250864499999 ], [ -122.143708184100007, 48.18863098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000, "random": 34.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.652429818900004, 47.757228435099996 ], [ -122.655187397899994, 47.757996620299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000, "random": 53.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.830325525099994, 45.986546639099998 ], [ -122.843998045199996, 46.003648610100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000, "random": 44.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324938986899994, 47.527130547399999 ], [ -122.326926969300004, 47.529118855599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000, "random": 134.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909597880600003, 46.328237141499997 ], [ -122.905808485600005, 46.354027410299999 ], [ -122.907833053399997, 46.367123983799999 ], [ -122.903136226599997, 46.385390741199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000, "random": 56.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.102498928399996, 47.974783777900001 ], [ -122.102748296599998, 47.978079114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000, "random": 69.937 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.348953841300002, 47.801871614299998 ], [ -117.347212270900002, 47.824463311700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000, "random": 150.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.256488287600007, 47.674437746800002 ], [ -117.233238630299994, 47.6740978586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000, "random": 154.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331248711399994, 47.4630152497 ], [ -122.332281600300007, 47.467204479400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000, "random": 83.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.135298152199994, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500, "random": 199.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.892643017300003, 47.185219467700001 ], [ -120.854497924100002, 47.174925353799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000, "random": 100.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815854623199996, 46.974060636499999 ], [ -123.814496006799999, 46.9745245963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300, "random": 170.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.608683861800003, 47.839539399300001 ], [ -117.624899490399997, 47.844751263399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000, "random": 96.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705075456700001, 45.857927414499997 ], [ -122.708600869500003, 45.870002268199997 ], [ -122.730447400399996, 45.885969214900001 ], [ -122.740547181500006, 45.902501182500004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000, "random": 181.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232397920400004, 48.510494546399997 ], [ -122.228383378800004, 48.510483485499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650, "random": 52.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553890672700007, 46.371903656599997 ], [ -122.534066687099994, 46.365076150500002 ], [ -122.522015790300003, 46.353105643699998 ], [ -122.520840599799996, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.460026123099993, 46.334198960499997 ], [ -122.443621199399999, 46.332719415100001 ], [ -122.423975580600001, 46.324379435899999 ], [ -122.411602687400006, 46.3288268712 ], [ -122.406588061700006, 46.3248804093 ], [ -122.410505858099995, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.374170816800003, 46.311320336199998 ], [ -122.351060563499999, 46.307101177200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": null, "random": 70.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.224545529500006, 47.663264841699998 ], [ -120.2234272269, 47.664815758099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000, "random": 52.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347162814399994, 48.4689593505 ], [ -122.344353330900006, 48.469916134100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400, "random": 173.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.465118033899998, 46.282211226100003 ], [ -123.457284327500005, 46.270600365299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000, "random": 183.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111443955599995, 47.463154478500002 ], [ -122.125523976699995, 47.463515808799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": null, "random": 192.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.790196608299993, 48.100144655100003 ], [ -119.786847801899995, 48.101573517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400, "random": 114.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073978514199993, 46.426337746 ], [ -117.100394632900006, 46.424564911 ], [ -117.125371263800005, 46.430966392899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000, "random": 81.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.464420831200002, 46.253760514900002 ], [ -119.397000433700001, 46.261485678600003 ], [ -119.367954599100003, 46.249044282600003 ], [ -119.360045066400005, 46.239658493599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000, "random": 103.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.617236635699996, 48.329849408500003 ], [ -119.612560325800004, 48.333892043299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000, "random": 137.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510861239099995, 48.786701213800001 ], [ -122.525993174800007, 48.794574176700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000, "random": 124.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.828370843499997, 46.857484681099997 ], [ -122.781279970100002, 46.860815077399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000, "random": 151.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239869003899997, 47.648870384699997 ], [ -117.239836574400002, 47.653445707300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860, "random": 43.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361719793199995, 48.8661339983 ], [ -117.362424148499997, 48.868840071800001 ], [ -117.357230480799998, 48.866178092299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000, "random": 110.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276408048500002, 47.7535766576 ], [ -122.263852823700006, 47.758298512899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000, "random": 114.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.797381755900005, 47.865036690099998 ], [ -121.777466965299993, 47.867838558300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000, "random": 92.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780353631500006, 48.0276618969 ], [ -122.780998914600005, 48.0297888001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000, "random": 62.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.532417350599999, 47.395800791500001 ], [ -121.516019994299995, 47.395384207500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": null, "random": 83.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.103212133200003 ], [ -119.322729826, 47.1025870681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000, "random": 24.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.590546161600003, 47.642919808899997 ], [ -117.582610488200004, 47.642912863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000, "random": 163.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643780328399998, 47.565060084300001 ], [ -122.635694855799997, 47.565040098799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": null, "random": 136.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.299594983399999, 47.467860027599997 ], [ -120.297504746300007, 47.4351022237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200, "random": 128.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.936574460800003, 47.687389638399999 ], [ -121.971630424300002, 47.694471996799997 ], [ -121.981015434499994, 47.701289548600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000, "random": 106.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186934388599994, 47.298301147 ], [ -122.177499564100003, 47.302421793299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510, "random": 19.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.210305096300004, 47.492304965199999 ], [ -123.223149286699993, 47.496208975899997 ], [ -123.241884607499998, 47.495334530400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600, "random": 72.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.835107025100001, 46.292878933499999 ], [ -122.811246994599998, 46.296957639399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100, "random": 5.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039757417399997, 46.474224958 ], [ -117.042241304699999, 46.474230977700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200, "random": 25.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.564575694300004, 48.367474039699999 ], [ -119.532459189700006, 48.386062696099998 ], [ -119.521179451400002, 48.403968476899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000, "random": 5.341 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322342181699995, 47.656009406199999 ], [ -122.321753728, 47.666099862199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000, "random": 130.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462212289700005, 48.753686761700003 ], [ -122.461613891900001, 48.760763625700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000, "random": 166.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253811390799996, 47.4617511143 ], [ -122.249888866199996, 47.4623828171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800, "random": 82.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.410713062599996, 46.255407269700001 ], [ -120.398281170600001, 46.275315587900003 ], [ -120.369368935400004, 46.278623167399999 ], [ -120.358067647699997, 46.296773851700003 ], [ -120.333010153700002, 46.3081349737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000, "random": 147.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.251354512900001 ], [ -119.082754858300007, 46.252250739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000, "random": 183.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427658785600002, 47.228320779900002 ], [ -122.428034605899995, 47.2286568082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700, "random": 194.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719415844599993, 46.5756303426 ], [ -122.717335933699999, 46.575631057599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200, "random": 145.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045192163600007, 46.416527455 ], [ -117.044267114199997, 46.4171675734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000, "random": 176.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.516977211599993, 46.626072081799997 ], [ -120.511485307300006, 46.626062679199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300, "random": 154.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.829286058400001, 45.694065406599996 ], [ -120.824585887400005, 45.698633973100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000, "random": 91.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.415699133900006, 48.794193523300002 ], [ -122.395950267, 48.804100865599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": null, "random": 49.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.396171573499998, 47.919272726 ], [ -119.435392769299995, 47.921655645100003 ], [ -119.513500012199998, 47.950443261 ], [ -119.532978846199995, 47.951055420700001 ], [ -119.542299767399996, 47.944370181399997 ], [ -119.564793237, 47.942888834100003 ], [ -119.637172496199994, 47.952075620700001 ], [ -119.647925282900005, 47.960306243700003 ], [ -119.653408476300001, 47.972149719100003 ], [ -119.648516800500005, 47.984891512600001 ], [ -119.650674805500003, 47.991201863400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": null, "random": 108.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.405551403199993, 47.6207224415 ], [ -119.380593231700004, 47.623579840200001 ], [ -119.364767205800007, 47.619390169399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200, "random": 30.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.812298900499997, 46.666584194499997 ], [ -123.809145399, 46.664934623699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000, "random": 94.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.206095185800002 ], [ -119.107113214899996, 46.2075458387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": null, "random": 41.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.336241185299997, 47.455026644500002 ], [ -120.336009498500005, 47.460814383200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400, "random": 42.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073011345599994, 47.225680904699999 ], [ -117.073018590499998, 47.2267941681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000, "random": 42.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328924299099995, 47.734101792600001 ], [ -122.323606871600006, 47.7340600888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600, "random": 178.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.094127007599994, 47.7457487872 ], [ -121.089394242300003, 47.7454347093 ], [ -121.076475200100006, 47.755168167299999 ], [ -121.077587389599998, 47.768615076899998 ], [ -121.072908743799999, 47.773323135 ], [ -121.060451893, 47.780380106899997 ], [ -121.035389348199999, 47.784305637499997 ], [ -121.014991914700005, 47.7731379178 ], [ -120.989064927800001, 47.7669597776 ], [ -120.940314911200005, 47.781799178299998 ], [ -120.926773205, 47.783582643199999 ], [ -120.911885984, 47.779719270800001 ], [ -120.873618181599994, 47.791271958599999 ], [ -120.826087037199997, 47.777964567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780, "random": 104.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.855326948499993, 47.8483119805 ], [ -117.848318289700003, 47.8533575039 ], [ -117.838164281, 47.874034997400003 ], [ -117.838518667499997, 47.8839866036 ], [ -117.816077455699997, 47.904185807 ], [ -117.772937646800003, 47.9319295106 ], [ -117.760164329299997, 47.951480255299998 ], [ -117.730670601499995, 47.977879762199997 ], [ -117.730227038, 47.990898945399998 ], [ -117.726070176700006, 47.994823643300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": null, "random": 135.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.623508512300006, 47.043255125400002 ], [ -120.610829685599995, 47.034561590700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": null, "random": 161.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.336009498500005, 47.460814383200002 ], [ -120.337091754499994, 47.465744417400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000, "random": 74.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.935715474899993, 46.952758994100002 ], [ -122.938006402699997, 46.952749092600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000, "random": 163.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328646019499999, 47.6218398679 ], [ -122.325588856799996, 47.630978120899996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100, "random": 137.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.400146886499996, 46.2808655483 ], [ -119.388823944899997, 46.286635138800001 ], [ -119.385055086400001, 46.296956751300002 ], [ -119.379846899300006, 46.300134073300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300, "random": 72.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.114708009799998, 48.222520715199998 ], [ -117.071831916899995, 48.214604191900001 ], [ -117.049170610700003, 48.187568367899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100, "random": 6.413 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.664034573199999, 48.679033690799997 ], [ -118.659283546300003, 48.69353696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600, "random": 58.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234367686100001, 48.315786019199997 ], [ -122.234636542900006, 48.316921300700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500, "random": 163.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.201053661299994, 46.733760269299999 ], [ -117.193721204799999, 46.733421816300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000, "random": 78.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411284607599995, 47.686239548300001 ], [ -117.411212053400007, 47.684340672200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700, "random": 157.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.833986735799996, 48.353122342900001 ], [ -117.854425242, 48.423985311199999 ], [ -117.900843413800004, 48.4812158123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000, "random": 124.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.054732335300002, 46.173406560300002 ], [ -119.060939272699997, 46.176246614599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760, "random": 193.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.829999029100001 ], [ -117.190686371200002, 47.838280048599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000, "random": 16.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.883914385099999, 46.977057906600002 ], [ -123.882465413199995, 46.976299685699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000, "random": 70.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336346718100003, 47.591654033399998 ], [ -122.336639681099996, 47.603665978099997 ], [ -122.344887317399994, 47.6170758429 ], [ -122.343595607400005, 47.624654211600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900, "random": 24.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.010267715400005, 48.2683045733 ], [ -121.996997621899993, 48.274448992099998 ], [ -121.988260855299998, 48.273541100099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000, "random": 66.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.101805642100004, 47.183774694500002 ], [ -123.096605849699998, 47.174752381099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200, "random": 66.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.260169830899997, 48.250693192599996 ], [ -124.259541705700002, 48.249031188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700, "random": 139.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.425905332500001 ], [ -117.264041694300005, 46.408347277799997 ], [ -117.247172635400005, 46.403561831499999 ], [ -117.226361452600003, 46.405697020600002 ], [ -117.214302369600006, 46.411735887200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000, "random": 39.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215305276899997, 48.151827843900001 ], [ -122.193737871799996, 48.152206488799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600, "random": 181.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379692780100001, 45.927861829500003 ], [ -122.379639449899997, 45.940375024200002 ], [ -122.370412417500006, 45.9461267079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000, "random": 62.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227138639200007, 48.152008653599999 ], [ -122.215305276899997, 48.151827843900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000, "random": 183.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237932510500002, 48.399327514900001 ], [ -122.240646758099999, 48.402724443700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500, "random": 54.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387443636200004, 47.004675303699997 ], [ -123.383147769299995, 46.998968611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000, "random": 136.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313307756100002, 47.315182427400003 ], [ -122.313301401100006, 47.316652422799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400, "random": 149.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.022907918599998, 48.2627125108 ], [ -122.014914702799999, 48.26670449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000, "random": 134.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339379851700002, 47.562061614199997 ], [ -122.339393127, 47.566849212699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": null, "random": 162.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.202803984400006, 47.8632306636 ], [ -120.192406912199999, 47.866359942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000, "random": 117.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615444107900004, 47.504820946599999 ], [ -122.6100956059, 47.504790449200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000, "random": 192.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.803073749299998, 46.977342476899999 ], [ -123.774590595299998, 46.981635785199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100, "random": 32.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.802266037800003 ], [ -122.927885323400005, 47.783870469299998 ], [ -122.918575283600006, 47.773557936400003 ], [ -122.899541536900003, 47.769144235500001 ], [ -122.892787170600002, 47.753863997700002 ], [ -122.877788674599998, 47.743200821 ], [ -122.896416472599995, 47.698580768500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100, "random": 90.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498903427100004, 47.800573328399999 ], [ -122.498405559600002, 47.799630733699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000, "random": 155.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876494769900006, 46.555080308400001 ], [ -122.876970128099998, 46.5656688487 ], [ -122.886654867, 46.581896048499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000, "random": 173.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.071848028399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100, "random": 188.996 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042645019299997, 47.2398211593 ], [ -117.040065100500001, 47.240331654800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000, "random": 194.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.569219939200003 ], [ -122.319274617600001, 47.577721374600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": null, "random": 26.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.725560926300005, 47.169794972399998 ], [ -119.694359620499995, 47.189224623400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000, "random": 62.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666920309700004, 45.663291930500002 ], [ -122.664597099299996, 45.671567055700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100, "random": 5.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.646878596799993, 48.773768593699998 ], [ -118.616494335699997, 48.788441017300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000, "random": 176.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133293255400005, 47.7045387135 ], [ -117.098636280500003, 47.712113508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000, "random": 105.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280194517799998, 48.492612765399997 ], [ -122.274507670399998, 48.4947462696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000, "random": 113.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900722461699999, 46.143634459700003 ], [ -122.899190315699997, 46.144094870899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700, "random": 183.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.943771749199996, 47.196532896500003 ], [ -120.946239913599996, 47.196853032699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800, "random": 198.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440663445400006, 48.388454813599999 ], [ -119.475197836600003, 48.3959072026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100, "random": 131.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.907287510100005, 48.548539055799999 ], [ -117.9122497826, 48.5496184382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": null, "random": 13.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.233116836500002 ], [ -119.864013776799993, 47.233227695899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100, "random": 112.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.601830692299998, 46.102565853100003 ], [ -119.601019963499994, 46.184141123099998 ], [ -119.632513277399994, 46.186802706800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000, "random": 152.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.215236535800003, 46.232174863799997 ], [ -119.197881418400002, 46.229694839700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300, "random": 41.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.706502771900006, 48.268688746099997 ], [ -121.681604375399999, 48.269260962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400, "random": 88.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.331286685500004, 46.333369696699997 ], [ -119.316818358500001, 46.325761236300004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500, "random": 197.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.404073277199998 ], [ -117.045511900500003, 46.405807141300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400, "random": 186.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073002491599993, 47.224069194400002 ], [ -117.073011345599994, 47.225680904699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000, "random": 177.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.590030423900004, 46.933191201900001 ], [ -122.563890205, 46.932042617500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": null, "random": 194.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.560510624499997, 47.308418187 ], [ -119.550955143799996, 47.3216616972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880, "random": 139.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.891660015599996, 46.418162911099998 ], [ -122.889569424300007, 46.439612233699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": null, "random": 77.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.140301766600004, 47.371384494399997 ], [ -120.114579346799999, 47.362005859699998 ], [ -120.091885291, 47.346745424799998 ], [ -120.075915479299994, 47.328340233299997 ], [ -120.0718463794, 47.315076503100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600, "random": 150.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000, "random": 41.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626686593800002, 48.190429204799997 ], [ -122.626854860799995, 48.196363055399999 ], [ -122.634093994799997, 48.199324225700003 ], [ -122.634532628, 48.205514688400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000, "random": 72.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.717006410400003 ], [ -117.411341617700003, 47.7366272099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000, "random": 33.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387305272299997, 46.000728261399999 ], [ -118.387305963599999, 46.0008733795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000, "random": 19.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202143817800007, 46.1517167071 ], [ -119.202193656700004, 46.147961704799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000, "random": 118.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356148350200002, 45.5765439754 ], [ -122.337119991799995, 45.5743187936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000, "random": 116.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.131894078499997, 46.233167577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800, "random": 177.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.790469895500003 ], [ -117.117146970899995, 46.81324534 ], [ -117.114738057799997, 46.828756093899997 ], [ -117.125073024800002, 46.842087681499997 ], [ -117.125431145700006, 46.8526895018 ], [ -117.131172054299995, 46.860007814100001 ], [ -117.125766231499995, 46.8805636369 ], [ -117.1162608729, 46.891596946900002 ], [ -117.076818303500005, 46.908707466800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700, "random": 129.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.738038295099997, 48.647705843399997 ], [ -118.734073830100002, 48.640476501099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000, "random": 179.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.337119991799995, 45.5743187936 ], [ -122.336830963899999, 45.574285426199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000, "random": 72.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462228315900006, 48.768161057299999 ], [ -122.468301725, 48.776074627900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100, "random": 172.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264357131599994, 48.430063418 ], [ -122.263353143700002, 48.438694333100003 ], [ -122.256353227899993, 48.445051718199998 ], [ -122.243784615899997, 48.445532820099999 ], [ -122.237675901599999, 48.451805089200001 ], [ -122.234037299799994, 48.459902027 ], [ -122.236469985499994, 48.467881476899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400, "random": 61.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.360091659199995, 46.897778200200001 ], [ -117.348076300599999, 46.903921453199999 ], [ -117.351204804600002, 46.911617455 ], [ -117.348839072100006, 46.920878082 ], [ -117.333488752700006, 46.937467422799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": null, "random": 132.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.194813099699999, 47.703980669800004 ], [ -120.202296207499998, 47.715799214 ], [ -120.201670504199996, 47.721495814900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200, "random": 160.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.979144045400005, 46.317064306299997 ], [ -119.979002671100005, 46.331672597400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000, "random": 142.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981395463599995, 47.1994152348 ], [ -121.979117066100002, 47.199396871700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": null, "random": 192.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297733659499997, 47.424238153899999 ], [ -120.296981004599999, 47.420685698699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000, "random": 13.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.233238630299994, 47.6740978586 ], [ -117.219653668600003, 47.673730154700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": null, "random": 13.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.019405647699998, 47.840956773099997 ], [ -120.014828527199995, 47.839831442300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000, "random": 149.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188620638700002, 47.478462399 ], [ -122.196553840199996, 47.484010758099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000, "random": 137.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.280565297099997 ], [ -122.257900493099996, 47.291814197699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000, "random": 154.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.594258495099993, 45.612560721500003 ], [ -122.5755446732, 45.609005895700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970, "random": 67.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.159772116600003 ], [ -122.637763506900001, 48.165050337099999 ], [ -122.637216878100006, 48.170651624900003 ], [ -122.6311760448, 48.1709418294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900, "random": 21.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.392350543099994, 47.989246294799997 ], [ -124.390330186, 48.023498306299999 ], [ -124.386135645099998, 48.034372402199999 ], [ -124.3771964333, 48.0428294994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000, "random": 121.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.941476871299997, 46.633570246 ], [ -122.955074431599996, 46.644085364200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000, "random": 153.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226281250599996, 47.477733349499999 ], [ -122.224368274400007, 47.477801894899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000, "random": 80.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239836574400002, 47.653445707300001 ], [ -117.239811284300004, 47.657120099700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": null, "random": 79.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.861271357500001, 47.0847839089 ], [ -119.862512719, 47.086191127799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000, "random": 195.731 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.967236218599993, 47.436449093100002 ], [ -121.946308529099994, 47.461068424300002 ], [ -121.892547873599995, 47.477118088700003 ], [ -121.884585692, 47.504313222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700, "random": 135.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989930148799999, 48.083179436199998 ], [ -121.9880421437, 48.083743317600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": null, "random": 100.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.962360795400002, 46.955497291 ], [ -119.973932701199999, 47.000551023200003 ], [ -119.955503780399994, 47.008358663700001 ], [ -119.948540106799996, 47.015559494599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000, "random": 90.095 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324930132099993, 47.494050853399997 ], [ -122.325629622, 47.509100327799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400, "random": 57.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.601735842799997, 48.255269148799997 ], [ -121.602040066900003, 48.259580257300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000, "random": 152.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300174272299998, 47.921996202499997 ], [ -122.300279957, 47.925646077099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100, "random": 99.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.211121560300001 ], [ -119.939310191399997, 46.196885705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600, "random": 129.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.466470167099999, 45.714803707500003 ], [ -121.467239711399998, 45.719390102 ], [ -121.486682184, 45.727758078299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500, "random": 181.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999627863800001, 46.2207119718 ], [ -119.999527805300005, 46.240131802800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000, "random": 7.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564681711199995, 47.503963135 ], [ -117.564647296199993, 47.507958508500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": null, "random": 24.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.270112652500003, 47.141966536399998 ], [ -119.285225107, 47.146079747199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000, "random": 27.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.066163770700001, 47.914320767100001 ], [ -122.043624208300002, 47.905663460600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000, "random": 109.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505656007200002, 48.785005835600003 ], [ -122.510861239099995, 48.786701213800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000, "random": 144.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.636545418399997 ], [ -120.530420705599994, 46.643087440400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000, "random": 170.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181406580699999, 48.04479845 ], [ -122.183991175800003, 48.049409982599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300, "random": 138.966 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.221472718599998 ], [ -123.959008749, 47.232263906199996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900, "random": 53.129 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.605679964900006, 46.474828890700003 ], [ -117.604193276399997, 46.474899599300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500, "random": 19.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.693857063799996, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000, "random": 56.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.481945285799995, 46.252083253199999 ], [ -119.464420831200002, 46.253760514900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000, "random": 136.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231700448599995, 47.881947714100001 ], [ -122.2196680439, 47.8802932531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": null, "random": 153.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.037299586499998, 47.9328968903 ], [ -119.0177040011, 47.936793106099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": null, "random": 53.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.768146463600004, 47.234302020599998 ], [ -119.746889316500003, 47.2346362782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500, "random": 125.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.981859587400002 ], [ -122.247115922099994, 48.985535873800004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000, "random": 108.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.141795278499998, 48.074895211 ], [ -123.123153926599997, 48.073268084699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500, "random": 137.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225554844100003, 48.514186971299999 ], [ -122.226140987199997, 48.528254450399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000, "random": 28.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344498386400005, 47.694213665299998 ], [ -122.344589742099998, 47.702170326100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400, "random": 98.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.820843535500003, 46.734021038900003 ], [ -118.755786355400005, 46.7871441721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000, "random": 38.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.098612585699996, 47.664587444399999 ], [ -122.0911114715, 47.658210758599999 ], [ -122.078551081, 47.655737714700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000, "random": 124.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907479926299999, 46.144285354499999 ], [ -122.900722461699999, 46.143634459700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000, "random": 123.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325588856799996, 47.630978120899996 ], [ -122.322472589399993, 47.655393277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540, "random": 163.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.549509477200004, 46.645356033399999 ], [ -118.499925167499995, 46.651618769800002 ], [ -118.4903184729, 46.661104496199997 ], [ -118.422710867399999, 46.696905779399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": null, "random": 27.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.010650954699997, 47.939312536800003 ], [ -118.956054795900002, 47.924618672900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700, "random": 64.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.827797273100003, 47.386578722800003 ], [ -122.828844436300002, 47.396432791 ], [ -122.837562270099994, 47.402573245 ], [ -122.841560284099998, 47.410924864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000, "random": 51.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682357182700002, 47.708675146300003 ], [ -122.669058799699997, 47.749633705599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000, "random": 22.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.890377804099998, 46.415684535 ], [ -122.891017634700006, 46.421545267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000, "random": 135.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266313958500007, 47.834250899200001 ], [ -122.272434016700004, 47.839550714399998 ], [ -122.274216435499994, 47.847995263800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700, "random": 109.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905530764600002, 48.536362987700002 ], [ -117.905823096600002, 48.545437755899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000, "random": 47.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.686912074800006, 47.693288397400003 ], [ -122.682357182700002, 47.708675146300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200, "random": 17.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140658202300003, 47.4063958443 ], [ -123.163633337899995, 47.400670797399997 ], [ -123.178948864399999, 47.404167540899998 ], [ -123.192594841100004, 47.413683046800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120, "random": 48.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352188943599998, 48.873500374199999 ], [ -117.328671577700007, 48.892802401 ], [ -117.323863822899995, 48.917414421399997 ], [ -117.313312870700003, 48.924551532199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000, "random": 162.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.411186267399998 ], [ -122.623334611, 47.428490086700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000, "random": 197.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.695753648699998 ], [ -122.329520216600002, 47.704326296600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800, "random": 141.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.917262878299994, 46.191692043800003 ], [ -119.876496051199993, 46.187636732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": null, "random": 139.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.610829685599995, 47.034561590700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000, "random": 133.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314680302499994, 46.389563781200003 ], [ -120.314996101099993, 46.382480047800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000, "random": 27.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.792203240600003, 47.476414011 ], [ -122.766324464899995, 47.494235084899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410, "random": 60.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.734745553699995, 48.299072435200003 ], [ -118.749316236200002, 48.337391075 ], [ -118.740822615200003, 48.360696116699998 ], [ -118.749928096800005, 48.3721707244 ], [ -118.746782561800003, 48.391658652399997 ], [ -118.732095543200003, 48.399702401 ], [ -118.737561094, 48.413972939300002 ], [ -118.7275775146, 48.426510824899999 ], [ -118.740327682699998, 48.440180960500001 ], [ -118.753665736299993, 48.465738197599997 ], [ -118.746982322600005, 48.472528777599997 ], [ -118.735895575699999, 48.473485250400003 ], [ -118.728005195500003, 48.479780616900001 ], [ -118.736595278799996, 48.481778244200001 ], [ -118.741212636399993, 48.4967914056 ], [ -118.734063119200002, 48.5303352221 ], [ -118.749655491699997, 48.547726507199997 ], [ -118.7437512212, 48.554224740899997 ], [ -118.7430996768, 48.561204275400002 ], [ -118.748123516199996, 48.568683920700003 ], [ -118.743263617500006, 48.576670889500001 ], [ -118.739216443800004, 48.602950922200002 ], [ -118.730110936499997, 48.620922179899999 ], [ -118.730232978100005, 48.634915810899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000, "random": 196.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163884508099997, 47.758583553299999 ], [ -122.164627110400005, 47.757210535799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000, "random": 75.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152629008199995, 47.274448600299998 ], [ -122.140760655799994, 47.263418390399998 ], [ -122.128270881899994, 47.2605031318 ], [ -122.118265929399996, 47.2502870454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900, "random": 55.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668745172900003, 47.579876434399999 ], [ -117.662921207300002, 47.5817195825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000, "random": 170.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.510509214400003 ], [ -122.235275246399993, 48.510504468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390, "random": 76.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.274276368499997, 46.855512758 ], [ -122.266699629399994, 46.862906199800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000, "random": 83.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.702206125399996, 47.857269046900001 ], [ -121.692446627600006, 47.852294339899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540, "random": 10.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.679949024300001, 48.862366554600001 ], [ -121.681376835899997, 48.853757585700002 ], [ -121.6884690105, 48.848900350699999 ], [ -121.687054447799994, 48.844639396600002 ], [ -121.692746180100002, 48.846878846899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": null, "random": 70.92 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.664815758099998 ], [ -120.208080886900007, 47.675976654 ], [ -120.207255602700002, 47.690389145 ], [ -120.216190432199994, 47.709176983399999 ], [ -120.227572237399997, 47.721805404599998 ], [ -120.226245647599995, 47.731950372900002 ], [ -120.213750323499994, 47.750966833699998 ], [ -120.198341733700005, 47.760267227900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000, "random": 39.722 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.141109524399994, 46.215426044399997 ], [ -119.137126389299993, 46.221619445499996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000, "random": 50.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.519827714200005, 47.644479769900002 ], [ -122.523271327399996, 47.653629992799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 167.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612773958299996, 48.500455119199998 ], [ -122.612637467, 48.510080076800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000, "random": 186.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434751610199996, 47.112394316900001 ], [ -122.434856954099999, 47.119480979099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800, "random": 120.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.758479940200004, 47.374409228799998 ], [ -122.747891127100004, 47.378056967299997 ], [ -122.716252286300005, 47.3743552356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000, "random": 174.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346482993500004, 47.216109298900001 ], [ -122.342045024100003, 47.213577697200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680, "random": 10.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.808522019199998, 47.315432174400001 ], [ -118.755651232399998, 47.3133928496 ], [ -118.699115260200003, 47.332546760500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900, "random": 46.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349664889600007, 48.017722257899997 ], [ -117.349794205400002, 48.032114906300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600, "random": 182.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.866511907399996, 46.303640157300002 ], [ -122.856270913499998, 46.293861375799999 ], [ -122.845082926399996, 46.293579813599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500, "random": 168.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.969987798800005, 46.711048393200002 ], [ -122.967530762799996, 46.710550664899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900, "random": 13.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.379846899300006, 46.300134073300001 ], [ -119.368059892399998, 46.302762493400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000, "random": 47.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630563411699995, 47.091197464099999 ], [ -122.616890748499998, 47.095200003599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100, "random": 105.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.105071092299994, 46.558843211300001 ], [ -117.1186833573, 46.567252646500002 ], [ -117.133768563, 46.568132031799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500, "random": 57.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.099771153899994, 46.223724902 ], [ -119.083607430399994, 46.219435461700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": null, "random": 140.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.711531943099999, 47.778904274799999 ], [ -120.714915032600004, 47.809342382399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000, "random": 87.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036750891599993, 47.900683868199998 ], [ -122.016682762399995, 47.876868300399998 ], [ -122.007865329200001, 47.872487544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": null, "random": 128.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.812067633799998 ], [ -119.628741595899996, 47.815448603699998 ], [ -119.384124385099994, 47.815340295200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000, "random": 22.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061944812299998, 47.5311845564 ], [ -122.063206050100007, 47.541252563500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900, "random": 188.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.716252286300005, 47.3743552356 ], [ -122.711427765899998, 47.374522075599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500, "random": 56.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953113903100004, 46.7191026108 ], [ -122.952739627200003, 46.720041065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100, "random": 65.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275474118700004, 46.799962383299999 ], [ -122.2907543651, 46.8008242314 ], [ -122.299983892900002, 46.812840824 ], [ -122.301013682299995, 46.829940275299997 ], [ -122.317915837200005, 46.830976994799997 ], [ -122.319811388600002, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900, "random": 101.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.389529876300003, 47.9579786515 ], [ -124.4034665195, 47.967463185100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000, "random": 160.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322041165900004, 47.665261286499998 ], [ -122.320662024800001, 47.676906509799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500, "random": 128.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682656430799994, 47.567672217800002 ], [ -117.682677724300007, 47.572143868700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000, "random": 186.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.879906306800002 ], [ -117.363705522499998, 46.879882787699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000, "random": 40.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291617161399998, 47.4596862569 ], [ -122.289639374299995, 47.463861837800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400, "random": 67.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.405540528800003, 45.591761287200001 ], [ -122.405550858400005, 45.590604158600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000, "random": 55.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344690913099996, 47.7817536234 ], [ -122.318197500500006, 47.817590762099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": null, "random": 149.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813078488499997, 47.809276636200003 ], [ -119.807194764200005, 47.81403994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": null, "random": 150.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256773541300007, 47.1311262985 ], [ -119.257655936099994, 47.13692103 ], [ -119.262669504300007, 47.139868927099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000, "random": 174.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335328359100004, 47.777775342299996 ], [ -122.324557230300002, 47.777643065600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200, "random": 155.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436951250299998, 48.9352749432 ], [ -119.435384177100005, 48.9477318207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300, "random": 103.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140718703700003, 46.270164958499997 ], [ -118.137725332700001, 46.2707786892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400, "random": 54.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.482522184700002 ], [ -117.580789949, 47.4831439672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900, "random": 60.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.858695725399997, 46.8532935721 ], [ -122.858686049400006, 46.854842923500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000, "random": 56.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357062296400002, 47.2404187331 ], [ -122.356727114, 47.243057706499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000, "random": 100.579 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466503179200004, 47.176321938900003 ], [ -122.463059040700003, 47.187472294899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100, "random": 90.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.587677712100003, 48.121059934599998 ], [ -122.588157825, 48.123052548399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000, "random": 184.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628891718899993, 47.606866331900001 ], [ -122.628802942700005, 47.6101244229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400, "random": 129.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207953888600002, 46.733543559700003 ], [ -122.196139648499994, 46.748677111699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100, "random": 94.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328944853899998, 47.443369255100002 ], [ -122.323901086800007, 47.439792601699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300, "random": 66.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.341521748200002 ], [ -119.331286685500004, 46.333369696699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200, "random": 150.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238352000500001, 48.1519754742 ], [ -122.227138639200007, 48.152008653599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400, "random": 134.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.776669665699998, 48.013523673900004 ], [ -122.780353631500006, 48.0276618969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000, "random": 147.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.251864888499995, 47.758569785399999 ], [ -122.249771308899994, 47.758393083800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000, "random": 186.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.353119512299997, 46.244832268 ], [ -119.326344193899999, 46.247386953800003 ], [ -119.2942399537, 46.2575534355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000, "random": 37.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206509130100002, 47.372560948100002 ], [ -122.2022136155, 47.372559284399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000, "random": 160.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207656748700003, 47.809595844900002 ], [ -122.207468784100001, 47.820115982099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000, "random": 83.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.411041178199994, 47.424357692199997 ], [ -121.410533367900001, 47.412298435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": null, "random": 130.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853528771200004, 47.132225026500002 ], [ -119.853456536899998, 47.190478665500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100, "random": 33.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.601144086399998, 46.737913385100001 ], [ -119.245276133600001, 46.738246830500003 ], [ -119.217119996199997, 46.744384869299999 ], [ -119.197523307899999, 46.738419939400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720, "random": 194.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.588821056599997, 46.970155862799999 ], [ -118.642582851699999, 46.970873143399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000, "random": 83.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.614500727399999, 47.715477569100003 ], [ -122.615658233700003, 47.716138798099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400, "random": 122.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.653636113200001 ], [ -118.160167104799996, 47.653951884500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000, "random": 42.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318990083399996, 47.579369760500001 ], [ -122.320756053599993, 47.5899474422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500, "random": 14.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.359431970399996, 47.668611138199999 ], [ -117.357802083500005, 47.669377798500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100, "random": 78.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.822698338800002 ], [ -118.645078139800006, 46.842607114300002 ], [ -118.629114515799998, 46.872638199800001 ], [ -118.614234367700007, 46.889912435 ], [ -118.610684004, 46.906538107199999 ], [ -118.581993796500001, 46.941389633199996 ], [ -118.571639149, 46.962763316100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000, "random": 24.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195341635899993, 47.499456439200003 ], [ -122.197938621899993, 47.509415060800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000, "random": 43.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.489909530399999, 47.721909145 ], [ -117.495769602799996, 47.726124747199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000, "random": 14.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407087236199999, 47.744195225299997 ], [ -117.405648486499999, 47.745687617500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000, "random": 68.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.226778941800006, 46.018087104300001 ], [ -119.2574764079, 46.000240513599998 ], [ -119.332811429399996, 45.9767889078 ], [ -119.342571420799999, 45.964510513599997 ], [ -119.337551775799994, 45.9498941429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580, "random": 174.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.708209588200006, 46.429779552600003 ], [ -122.703586609, 46.427471247699998 ], [ -122.709740199500004, 46.421314208799998 ], [ -122.709493913599999, 46.405756735899999 ], [ -122.689147502, 46.388534752699996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000, "random": 24.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.570828087099997 ], [ -117.568738831800005, 47.5884737405 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": null, "random": 6.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.652569693499998, 48.004195568299998 ], [ -119.676555192, 48.0264537662 ], [ -119.660073465899998, 48.075083944100001 ], [ -119.660197139600001, 48.087172621800001 ], [ -119.667734408200005, 48.098021789800001 ], [ -119.67945547, 48.102554608299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000, "random": 188.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.673131294900003 ], [ -122.115130120299995, 47.672044652099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100, "random": 112.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.520988362899999, 45.728362545 ], [ -121.494952058799996, 45.724974359400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": null, "random": 96.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.961777098400006, 46.9451030468 ], [ -119.960076450800003, 46.940448732900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800, "random": 78.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978187844399997, 46.302344182100001 ], [ -119.978378541200001, 46.305298659400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000, "random": 189.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239540986700007, 47.675790767199999 ], [ -117.239688719100002, 47.686200289600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000, "random": 11.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.399809360899994, 47.247245078100001 ], [ -122.375970115900003, 47.246990619100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000, "random": 38.04 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.381252285399995, 47.653855957099999 ], [ -117.369699153200003, 47.653911932699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700, "random": 27.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.477020851500001, 46.690052266 ], [ -120.474208349899996, 46.700892472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000, "random": 154.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.581805244199998, 46.629370911 ], [ -120.572463558899997, 46.625166001700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000, "random": 67.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043550485099999, 47.357973821800002 ], [ -122.037604776699993, 47.3579773831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000, "random": 23.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.175415037899995, 47.811547043 ], [ -122.152647623600004, 47.804983049199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300, "random": 190.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.160385207600001, 46.827035102099998 ], [ -123.139226139, 46.825809829599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000, "random": 192.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.794753258599997, 47.489394127300002 ], [ -121.795776139500006, 47.488786529400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000, "random": 145.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.544684767600003, 48.8138630642 ], [ -122.553076278600003, 48.822516070900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": null, "random": 124.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.038000225900007, 47.932554457499997 ], [ -119.037299586499998, 47.9328968903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100, "random": 167.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.578434107199996, 46.6855847693 ], [ -121.580507756700001, 46.689020807600002 ], [ -121.577414489800006, 46.693108164199998 ], [ -121.582474136399995, 46.700438860799999 ], [ -121.575415380099997, 46.710651851199998 ], [ -121.577530478699998, 46.7192388112 ], [ -121.568712757200004, 46.732258391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000, "random": 174.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692306908800006, 47.663643126399997 ], [ -122.692635556699997, 47.663252331199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000, "random": 72.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413322953399998, 47.659074764899998 ], [ -117.413437023900002, 47.653519803800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": null, "random": 28.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.434715633099998 ], [ -120.324887521400001, 47.438245710899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000, "random": 38.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802397479299998, 46.9687249499 ], [ -123.802945078600004, 46.969721982800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720, "random": 78.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.210371058700005, 46.969113485599998 ], [ -121.167496769400003, 46.9781722496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000, "random": 190.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.341877601899995, 46.209562485799999 ], [ -119.322456991099997, 46.199550152299999 ], [ -119.276750017400005, 46.197014617299999 ], [ -119.256585895800001, 46.188298165799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": null, "random": 101.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.440990914899999 ], [ -120.336241185299997, 47.455026644500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600, "random": 12.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747707891900006, 46.898969608400002 ], [ -119.644604154800007, 46.89906961 ], [ -119.618472587699998, 46.893930868200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": null, "random": 105.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.976256149700006, 48.135096529 ], [ -118.9780832374, 48.162019726300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000, "random": 92.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.360196787500001, 48.109344406699996 ], [ -123.355714051, 48.103012937499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000, "random": 134.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345093507800001, 47.732289174899996 ], [ -122.345113336899999, 47.734153058499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300, "random": 167.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.563927364099996, 46.969397904799997 ], [ -118.571060807899997, 46.970023831600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000, "random": 196.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.048949727099995, 46.735058809100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000, "random": 97.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317848845699999, 47.289841138299998 ], [ -122.313425795499995, 47.297956594799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800, "random": 60.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.362563030900006, 47.666706290299999 ], [ -117.361293531, 47.667477375700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000, "random": 121.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764951061299996, 47.043090291699997 ], [ -122.764763806900007, 47.0392228487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000, "random": 19.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320029378900003, 46.416952264800003 ], [ -120.303873683800006, 46.414040556400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000, "random": 5.937 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311388725499995, 47.2800166221 ], [ -122.313512649399996, 47.284003214499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500, "random": 67.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692908625800001, 47.012290862500002 ], [ -122.691647237, 47.011506857699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000, "random": 62.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475189450900004, 48.714396165799997 ], [ -122.474417510500004, 48.7139080205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": null, "random": 141.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.299797941199998, 47.468286093700002 ], [ -120.300591393800005, 47.476574434500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000, "random": 107.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237437233600005, 48.2352708759 ], [ -122.245689518600003, 48.2439992336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500, "random": 154.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.223122036800007, 46.277953835 ], [ -118.220231876100002, 46.267966630899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": null, "random": 110.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999184879200001, 47.231264707299999 ], [ -119.979024003099994, 47.243286215799998 ], [ -119.953679130500007, 47.233042477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200, "random": 43.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.605002059199997 ], [ -122.483849761900004, 46.602125338199997 ], [ -122.473279573699998, 46.606940884799997 ], [ -122.467370770599999, 46.603630116700003 ], [ -122.450062567700002, 46.604114027400001 ], [ -122.440916089599995, 46.600881776500003 ], [ -122.415195407300004, 46.578467194799998 ], [ -122.405942033900004, 46.576299297 ], [ -122.342465496599999, 46.585586274900002 ], [ -122.303344193200004, 46.5641172674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200, "random": 31.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.357802083500005, 47.669377798500001 ], [ -117.350062995499997, 47.670920962499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000, "random": 66.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.080053636599999, 46.233384559900003 ], [ -119.082482434599996, 46.2383223812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100, "random": 140.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137683173799999, 47.9777063656 ], [ -122.137692842600003, 47.978193927200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000, "random": 146.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705059787699994, 47.643361435599999 ], [ -122.704569052599993, 47.657168150399997 ], [ -122.692795812699998, 47.661573015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600, "random": 65.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.716240117700004 ], [ -122.953113903100004, 46.7191026108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900, "random": 60.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497554247799997, 47.798831291100001 ], [ -122.498405559600002, 47.799630733699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": null, "random": 99.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.010505758400001, 47.939819788299999 ], [ -119.000531301600006, 47.942681546700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000, "random": 182.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.366468523400002, 47.653903994499998 ], [ -117.3473440936, 47.653823445500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000, "random": 173.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670747021099999, 47.549449447400001 ], [ -122.670987526399998, 47.554042039599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400, "random": 57.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.554051004900003, 46.938020830100001 ], [ -122.541748150399997, 46.93783701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": null, "random": 155.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.080174666800005, 47.641780437800001 ], [ -120.076774006700006, 47.6417886706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": null, "random": 147.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.193718794800006, 47.699853448500001 ], [ -120.194813099699999, 47.703980669800004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600, "random": 193.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.308445228899998, 46.758407436 ], [ -118.303895728499995, 46.757897512500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400, "random": 51.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.135489484700003, 48.710141451200002 ], [ -121.122077192500001, 48.710944112599996 ], [ -121.115029734399997, 48.707361821900001 ], [ -121.109336121300004, 48.695409804699999 ], [ -121.099843404300003, 48.689473943499998 ], [ -121.0945409463, 48.6918135397 ], [ -121.096277325700001, 48.709551898800001 ], [ -121.082852733699994, 48.709745874299998 ], [ -121.078062217199999, 48.716635953100003 ], [ -121.056208336699996, 48.7288096268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000, "random": 121.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.976119766400004, 46.717613398600001 ], [ -122.975211354699994, 46.7336230278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000, "random": 66.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363718605399995, 47.1582777108 ], [ -122.347888551400004, 47.157627397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000, "random": 41.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183991175800003, 48.049409982599997 ], [ -122.184467597799994, 48.058461578699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000, "random": 67.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.406639866399999, 47.763222621200001 ], [ -117.404484347199997, 47.769196807699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200, "random": 109.824 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061180415699994, 48.529185624199997 ], [ -121.995102127199999, 48.529884678499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000, "random": 51.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315126489700006, 47.685256401700002 ], [ -122.305920903699999, 47.692050453299998 ], [ -122.305500032200001, 47.697580308500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000, "random": 105.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.349209599600002 ], [ -120.169866038799995, 46.341031590900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400, "random": 150.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.177700826099993, 47.252309208900002 ], [ -123.159561450200002, 47.252225085900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500, "random": 45.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.624854864200003 ], [ -122.515544164900007, 47.635779378599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700, "random": 92.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161191571299995, 47.745209637099997 ], [ -122.152366198600006, 47.733080413899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200, "random": 161.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.787090855099997 ], [ -117.338430626600001, 47.787597206599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000, "random": 99.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.102748296599998, 47.978079114 ], [ -122.105537798300006, 47.997887191499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000, "random": 138.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.158042872499998 ], [ -122.034209998400001, 47.159549653900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900, "random": 174.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668092465499996, 48.323036739300001 ], [ -119.661528531399995, 48.319145752700003 ], [ -119.629552896, 48.320592771500003 ], [ -119.617236635699996, 48.329849408500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100, "random": 49.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.982514410199997 ], [ -123.950176130800003, 46.983300724099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710, "random": 191.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.462247583299998, 48.999873746399999 ], [ -119.463853232399998, 49.000086726200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000, "random": 188.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024166969800007, 46.432556087099996 ], [ -119.017592158599996, 46.448268561600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": null, "random": 5.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.147986288799999, 47.650382479500003 ], [ -120.127173921299999, 47.663350395499997 ], [ -120.126555338100005, 47.657244559 ], [ -120.120461827499994, 47.653422160600002 ], [ -120.080174666800005, 47.641780437800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 120.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.510080076800001 ], [ -122.612617318700003, 48.511792983799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880, "random": 11.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.063199593500002, 46.2983588775 ], [ -124.056135401899994, 46.290258796700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000, "random": 116.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594346368399997, 46.638631750199998 ], [ -120.581805244199998, 46.629370911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000, "random": 20.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380263885800005, 47.805983955499997 ], [ -122.380257938599996, 47.804112396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800, "random": 176.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156375670499997, 46.518996575700001 ], [ -122.114488660899994, 46.5370987947 ], [ -122.075361051200005, 46.547629864400001 ], [ -122.006641240899995, 46.535915039899997 ], [ -121.986591913699996, 46.538688354199998 ], [ -121.957297598699995, 46.535353420699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000, "random": 199.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626067163499997, 48.340201578799999 ], [ -122.6126424216, 48.347960920799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500, "random": 113.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.757118402499998 ], [ -121.517626724099998, 45.751039350900001 ], [ -121.523758137200005, 45.743828405199999 ], [ -121.520988362899999, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": null, "random": 168.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.044526764699995, 47.980223996 ], [ -119.012865283099998, 47.973416241300001 ], [ -119.0033625218, 47.963923508400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100, "random": 176.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188574241400005, 47.980730406600003 ], [ -122.188128621, 47.980798293100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000, "random": 133.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605712079300005, 46.941489775199997 ], [ -122.593279583, 46.934769492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000, "random": 82.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294028606099999, 47.590082601 ], [ -122.253913809599993, 47.589252353500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000, "random": 11.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.019444770600003, 47.354386546299999 ], [ -122.020276654100002, 47.358392289500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": null, "random": 177.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256713113299995, 47.116471302199997 ], [ -119.256773541300007, 47.1311262985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100, "random": 23.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054873250300005, 46.332317277199998 ], [ -124.054617725, 46.345364542299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800, "random": 196.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.847887418300004, 46.441879990399997 ], [ -122.840896095299996, 46.437830048400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000, "random": 182.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.360045066400005, 46.239658493599997 ], [ -119.350947556400001, 46.221897885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400, "random": 115.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.675429160199997, 47.8437264887 ], [ -121.654254000899996, 47.836387341299996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500, "random": 41.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.663662453900002, 48.160481324099997 ], [ -119.669600042300004, 48.1820762782 ], [ -119.713417765, 48.219644448499999 ], [ -119.724364535099994, 48.245841032800001 ], [ -119.721200055500006, 48.2626191576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000, "random": 150.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.029850228900003, 46.153645635499998 ], [ -119.034173789099995, 46.1565283618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000, "random": 87.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128107064100007, 47.358033512399999 ], [ -122.125415966899993, 47.358062176499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800, "random": 132.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981015434499994, 47.701289548600002 ], [ -121.984212694099995, 47.709333908399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000, "random": 76.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463809638300006, 48.770903545199999 ], [ -122.4626339661, 48.771342824500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200, "random": 184.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.751644395400007, 48.9896016788 ], [ -122.752041545599994, 48.996105339800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600, "random": 19.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266731554800003, 47.464860049899997 ], [ -122.264304021200005, 47.455548918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000, "random": 6.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348707769499995, 47.781426295800003 ], [ -122.338699596, 47.777782415499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000, "random": 123.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.919949281900003, 46.138478727100001 ], [ -122.916597970300003, 46.144744943200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000, "random": 117.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.290066264700002, 47.2038050564 ], [ -122.2839041915, 47.203041813200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000, "random": 93.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.560438579899994, 47.285820962099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000, "random": 14.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407463921200005, 47.812350919499998 ], [ -117.418963561400005, 47.831494809600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400, "random": 20.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.514740899800003 ], [ -117.730931075599997, 48.514076662800001 ], [ -117.712309982899995, 48.502534610300003 ], [ -117.693039969400004, 48.519622803499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550, "random": 152.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.136088338099995, 48.2791408008 ], [ -118.149275505800006, 48.303081924899999 ], [ -118.146875159499999, 48.306812825500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300, "random": 93.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.123423944700001 ], [ -122.922800699199996, 46.134795839399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500, "random": 93.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295473367200003, 48.336979776200003 ], [ -122.291789386399998, 48.335745977499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900, "random": 133.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350062995499997, 47.670920962499999 ], [ -117.346819229800005, 47.670965818100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000, "random": 71.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.930355641299997, 46.976133841500001 ], [ -122.920784729, 46.988044540099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000, "random": 50.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322472589399993, 47.655393277 ], [ -122.322041165900004, 47.665261286499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": null, "random": 65.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.641980364899993, 47.815343803 ], [ -119.639930354499995, 47.813732472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": null, "random": 60.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.291111567900003, 47.124036589900001 ], [ -119.289772823, 47.125491757500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000, "random": 135.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709003421099993, 47.069723781599997 ], [ -122.675738111399994, 47.081330050200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": null, "random": 14.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.520787201099999 ], [ -120.428276927300004, 47.5058028204 ], [ -120.419383384599996, 47.491891901499997 ], [ -120.409870612600002, 47.4855387729 ], [ -120.369219394400005, 47.475868365899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700, "random": 151.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.402641327300003, 45.585686270099998 ], [ -122.399757851100006, 45.5841944043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600, "random": 112.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.086822704300005, 46.7395693677 ], [ -119.128396550100007, 46.754754981200001 ], [ -119.133957063300002, 46.7636604311 ], [ -119.134307384099998, 46.782398865099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000, "random": 80.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.020926540700003, 47.361394117099998 ], [ -122.023756906900005, 47.373336764299999 ], [ -122.033489674500004, 47.383822299599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000, "random": 188.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.215888421800003, 47.844398369499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900, "random": 48.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.231444571599994, 47.718151091199999 ], [ -121.153541424099998, 47.711786608099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000, "random": 115.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244685812399993, 47.329721985799999 ], [ -122.244613142399999, 47.3498974886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600, "random": 21.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.874397081799998, 48.547393829800001 ], [ -117.857271574199999, 48.547321301799997 ], [ -117.846071542399997, 48.541501869100003 ], [ -117.826594003, 48.539435667 ], [ -117.822585393400004, 48.534895129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000, "random": 185.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602514984699994, 48.892054163399997 ], [ -122.604052753100007, 48.8920780487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740, "random": 39.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.543440782799998 ], [ -122.547609945700003, 46.5481464139 ], [ -122.533595399700005, 46.557360412199998 ], [ -122.522613037300005, 46.552822087400003 ], [ -122.497669879300005, 46.558356832400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200, "random": 63.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.077185899500002 ], [ -118.356975755899995, 46.085091073800001 ], [ -118.367201556599994, 46.0864838173 ], [ -118.371241075399993, 46.100085005300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300, "random": 166.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002713399300006, 46.212166620799998 ], [ -120.000988019900007, 46.213675046399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200, "random": 59.993 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.124733954200003 ], [ -117.242601926099994, 47.1282451493 ], [ -117.2426281993, 47.132279748499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000, "random": 108.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547613590099999, 45.751890626200002 ], [ -122.547259863500003, 45.758946281599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000, "random": 70.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143708184100007, 48.18863098 ], [ -122.137032019700001, 48.197182604699996 ], [ -122.1294755917, 48.198761111899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000, "random": 87.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214537179800004, 47.794421606 ], [ -122.212059351299999, 47.798474756099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": null, "random": 89.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.035624221600003, 47.8496165293 ], [ -120.027710127399999, 47.847421361099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000, "random": 156.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.882465413199995, 46.976299685699999 ], [ -123.854222276399994, 46.975166309899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000, "random": 36.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.376126003699994, 47.240486919699997 ], [ -122.363209074799997, 47.2405896685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000, "random": 155.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.646951111700005, 48.391135786100001 ], [ -122.644629580599997, 48.407845547299999 ], [ -122.649107889500002, 48.412059429099997 ], [ -122.644296266200001, 48.416713377199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000, "random": 27.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.172942795699996, 48.079452223799997 ], [ -123.156678518500001, 48.076900807299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210, "random": 22.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547293361499996, 46.809731403400001 ], [ -118.546976293699998, 46.869643260899998 ], [ -118.569126928900005, 46.887579446700002 ], [ -118.567129985400001, 46.9387620133 ], [ -118.560421084, 46.967199453200003 ], [ -118.563927364099996, 46.969397904799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800, "random": 143.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.002991199700006, 47.22593134 ], [ -121.014215763699994, 47.227848639699999 ], [ -121.026637711800007, 47.238114649400003 ], [ -121.037645272700004, 47.241057134800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000, "random": 83.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.220909691099997 ], [ -122.434052037300006, 47.223093094200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500, "random": 43.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.739118173700007, 48.647625688799998 ], [ -118.738038295099997, 48.647705843399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000, "random": 114.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634247378599994, 47.504927174099997 ], [ -122.631489075399998, 47.504928710800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": null, "random": 37.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.895747200100004, 48.038517837 ], [ -119.901327047799995, 48.048282498799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000, "random": 169.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.054141350199998, 48.060912372700002 ], [ -123.031785024900003, 48.044469539700003 ], [ -123.030803482099998, 48.0385584263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560, "random": 95.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172200222699999, 47.181828016700003 ], [ -117.140332949200001, 47.196383458200003 ], [ -117.111567534800002, 47.193257371599998 ], [ -117.097512456, 47.196042980100003 ], [ -117.074089992300003, 47.221197500099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300, "random": 183.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521733143099993, 48.4069900346 ], [ -119.5217501674, 48.405112934199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": null, "random": 157.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998120266399994, 47.839360396799997 ], [ -119.973536307900005, 47.845064539600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000, "random": 101.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.203041813200002 ], [ -122.267351222100004, 47.200733364100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000, "random": 150.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.898390582700003, 47.025431031899998 ], [ -122.888045170599995, 47.034962724700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000, "random": 81.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121370892300007, 48.200256519299998 ], [ -122.117020060499996, 48.208448951699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000, "random": 55.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324340674400005, 47.397956274 ], [ -122.324775391299994, 47.405730086699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": null, "random": 108.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.233113436300002 ], [ -119.869200631, 47.233116836500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000, "random": 143.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158824453600005, 46.202223090700002 ], [ -119.158800310700002, 46.207751197699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": null, "random": 116.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297504746300007, 47.4351022237 ], [ -120.297532598299995, 47.433356212900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000, "random": 191.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.101466101499994, 47.953296692599999 ], [ -122.102498928399996, 47.974783777900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900, "random": 52.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.876637564500001, 47.669509908499997 ], [ -117.863223933100002, 47.669020976200002 ], [ -117.820463209400003, 47.657724507200001 ], [ -117.789328067900001, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": null, "random": 60.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337599522800005, 47.1039064442 ], [ -119.325419947, 47.103212133200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000, "random": 42.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.932042617500002 ], [ -122.559255047500002, 46.933983955800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100, "random": 130.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575464457699994, 47.091801678300001 ], [ -117.585172443900007, 47.092882859500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900, "random": 67.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.914296787699996, 47.015110256299998 ], [ -123.922339548699995, 47.0316557254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000, "random": 88.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236469985499994, 48.467881476899997 ], [ -122.246574405199993, 48.491427682299999 ], [ -122.247022692499996, 48.503030819599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100, "random": 133.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.437398043100004, 48.707299203300003 ], [ -119.437155858500006, 48.707698988200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720, "random": 29.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266699629399994, 46.862906199800001 ], [ -122.266703538399994, 46.863486567899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000, "random": 124.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373038808499999, 47.247348751 ], [ -122.359716934100007, 47.256945056299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000, "random": 161.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.461138151100002, 48.106935246699997 ], [ -123.443990572700002, 48.1073916924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000, "random": 171.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176118084400002, 47.363166787799997 ], [ -122.165440596500005, 47.358027944100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000, "random": 109.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.308871953599997 ], [ -124.0487521206, 46.310189760599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000, "random": 57.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311990139700001, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900, "random": 127.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.393359055199994, 47.322379808800001 ], [ -122.392436934100004, 47.321613730400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": null, "random": 49.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320705919600002, 47.4808771816 ], [ -120.3133639391, 47.495252997199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": null, "random": 172.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.507057266100006, 46.9588101485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400, "random": 192.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385406426700001, 47.951680910299999 ], [ -124.385450857500004, 47.954115057599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000, "random": 80.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552640114300004, 45.707988681499998 ], [ -122.552276004, 45.729913109500004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400, "random": 51.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.734073830100002, 48.640476501099997 ], [ -118.730244100799993, 48.641839496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000, "random": 135.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472210814600004, 47.235116731600002 ], [ -122.482796616, 47.234976754500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000, "random": 104.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.972693801600002, 46.703306275499997 ], [ -122.976119766400004, 46.717613398600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000, "random": 57.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626109567699999, 47.3846980617 ], [ -122.626092716800002, 47.389054986200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600, "random": 66.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632531038099998, 46.964619754799998 ], [ -122.626893820500001, 46.9614926076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": null, "random": 55.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.063467216700005, 47.649181278599997 ], [ -120.062181571899998, 47.649175315900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000, "random": 16.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.673893233500003 ], [ -122.118861794, 47.673131294900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000, "random": 181.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.274059505500006, 47.674765049900003 ], [ -117.256488287600007, 47.674437746800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000, "random": 29.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212059351299999, 47.798474756099999 ], [ -122.210869349700005, 47.8004619779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800, "random": 158.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076982486199995, 46.910862134799999 ], [ -117.079932052299995, 46.911435068899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000, "random": 26.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699724232799994, 47.527355071599999 ], [ -122.697432892600006, 47.529005529700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": null, "random": 115.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.307552076599997 ], [ -119.560510624499997, 47.308418187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000, "random": 18.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697432892600006, 47.529005529700001 ], [ -122.675931461600001, 47.541411500599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": null, "random": 141.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668479131400005, 48.004624036199999 ], [ -119.676547299899994, 48.011006920299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000, "random": 144.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.361630322899998 ], [ -122.301269834600006, 47.373309348399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000, "random": 43.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.086780999300004, 47.0992170671 ], [ -123.082402119899996, 47.091821405300003 ], [ -123.071866758699997, 47.091058025300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000, "random": 164.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.675635892800003, 47.096990195 ], [ -118.656406237200002, 47.096673849200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000, "random": 152.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.305953399700002, 47.6666196591 ], [ -117.290526581899996, 47.672483866100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600, "random": 198.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.946239913599996, 47.196853032699998 ], [ -120.980925049600003, 47.207837572700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000, "random": 103.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.694314524200003 ], [ -122.329550276199996, 47.704780986599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900, "random": 20.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.812506490700002 ], [ -117.578335198800005, 47.815136782400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000, "random": 40.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.770687135100005, 48.109957957 ], [ -122.769308763400005, 48.110002460499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500, "random": 38.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.107346350699999 ], [ -121.585162399400005, 47.092333980500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000, "random": 65.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909487464199998, 47.021750611400002 ], [ -122.905644480899994, 47.0217112789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600, "random": 87.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.583575739099999, 48.361600175900001 ], [ -119.5813873763, 48.363341681900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700, "random": 16.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140658202300003, 47.4063958443 ], [ -123.141300861900007, 47.405012501800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": null, "random": 192.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780884531500007, 48.089934490300003 ], [ -119.780943323499997, 48.1019970336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700, "random": 54.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275195431499995, 46.5570314235 ], [ -122.275243482700006, 46.558324606299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000, "random": 185.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.812351579500003, 46.975862692200003 ], [ -123.808962595200001, 46.976225300599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000, "random": 43.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662469567599999, 47.526988495399998 ], [ -122.682461222599997, 47.527847209699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": null, "random": 35.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.630695250499997, 47.511765176499999 ], [ -120.617984029799999, 47.542049652499998 ], [ -120.604080864699995, 47.553360155500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200, "random": 144.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.399757851100006, 45.5841944043 ], [ -122.398548074700003, 45.5841573262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600, "random": 86.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.858686049400006, 46.854842923500001 ], [ -122.848233224300003, 46.858616212599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": null, "random": 162.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.315076503100002 ], [ -120.067706026300002, 47.300839926899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000, "random": 19.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486012535699999, 48.800551579699999 ], [ -122.486049226399999, 48.804308499100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000, "random": 134.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649845078799999, 47.508163976699997 ], [ -122.662469567599999, 47.526988495399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000, "random": 144.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639978566899998, 47.756166092299999 ], [ -122.626154857900005, 47.7579682585 ], [ -122.612448723499995, 47.766183538299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000, "random": 168.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.430273952899995, 48.782618922300003 ], [ -122.425146652500004, 48.786557197400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000, "random": 124.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978378541200001, 46.305298659400002 ], [ -119.978590577099993, 46.312565612199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": null, "random": 140.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.831858359400002 ], [ -119.982323996900007, 47.8274002482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000, "random": 72.918 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434522701299997, 47.243324141099997 ], [ -122.435249748800004, 47.247047007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000, "random": 94.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.085823104799999, 46.196615068200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000, "random": 141.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.227936412099993, 46.272792226200004 ], [ -119.209573680800005, 46.273875129300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000, "random": 27.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317848845699999, 47.289841138299998 ], [ -122.313524644099999, 47.289689111500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900, "random": 46.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334982037399996, 48.341173762499999 ], [ -122.333581230199997, 48.341165856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000, "random": 149.92 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207231988299995, 47.8094477645 ], [ -122.201057805600001, 47.810066305900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900, "random": 162.449 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.404212287799993, 46.6342410524 ], [ -121.352607275099999, 46.656816854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250, "random": 31.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.952784719500002, 46.505659931700002 ], [ -121.953554316600005, 46.5073208118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500, "random": 50.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.616605860500002, 46.502381391299998 ], [ -119.496091153699993, 46.445493522699998 ], [ -119.450875451499996, 46.408809451 ], [ -119.436530491799999, 46.3912099912 ], [ -119.422649327499997, 46.383209281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000, "random": 83.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343802884200002, 47.624644189500003 ], [ -122.344927504300003, 47.617072186400001 ], [ -122.336412100700002, 47.602846105099999 ], [ -122.336656090600002, 47.591692172599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000, "random": 137.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639182061300005, 47.7464774496 ], [ -122.645684510400002, 47.7518428642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000, "random": 5.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631158803199995, 47.583273830499998 ], [ -122.629830761500003, 47.587574997200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000, "random": 190.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106375590599995, 48.003220730300001 ], [ -122.106928824700006, 48.0063280675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600, "random": 182.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.871481668100003, 46.6542060226 ], [ -118.861432180899996, 46.652330978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000, "random": 152.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.845944419399999 ], [ -120.371997110799995, 46.837063334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": null, "random": 101.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.439990119300006, 47.103981369899998 ], [ -119.355451271600003, 47.103965290799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000, "random": 74.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239811284300004, 47.657120099700002 ], [ -117.239794730599996, 47.658376090600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600, "random": 140.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.922339548699995, 47.0316557254 ], [ -123.92729038, 47.057205959599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300, "random": 59.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.018413775799999, 47.563368342499999 ], [ -123.032639621399994, 47.552839043799999 ], [ -123.043476330499999, 47.5508843024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000, "random": 73.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677075241200001, 45.632772139099998 ], [ -122.683336977899998, 45.632826922100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200, "random": 36.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.212868834600002, 47.8047418564 ], [ -117.215157028700006, 47.816339138099998 ], [ -117.209306007699993, 47.8264252345 ], [ -117.202021796, 47.829999029100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500, "random": 187.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.882024161499999, 47.968795396 ], [ -122.882889924699995, 47.954483349299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600, "random": 5.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.717335933699999, 46.575631057599999 ], [ -122.704647052599995, 46.575601790199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200, "random": 125.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.314630901300006, 48.394450270599997 ], [ -117.304788643699993, 48.374284687900001 ], [ -117.304460834899999, 48.339463458300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000, "random": 140.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128522187800002, 48.1877057823 ], [ -122.1294755917, 48.198761111899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000, "random": 119.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199245749599996, 47.961609169200003 ], [ -122.197636001199996, 47.9682783923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900, "random": 159.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.975013542900001, 45.6406654273 ], [ -121.942783099099998, 45.651906592300001 ], [ -121.929382045599993, 45.648165335599998 ], [ -121.9186778089, 45.653351083899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550, "random": 85.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692231093100006, 47.333315666600001 ], [ -118.688932753200007, 47.338112147799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900, "random": 100.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377449328699996, 46.187590274599998 ], [ -123.385745206600006, 46.192387792399998 ], [ -123.383026138199995, 46.204013241799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000, "random": 144.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.672173066399999 ], [ -122.501840835400003, 45.672127572199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000, "random": 13.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180095245900006, 46.728918094299999 ], [ -117.178138580500004, 46.728901855700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000, "random": 37.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354854885099996, 47.323674358600002 ], [ -122.347324198099997, 47.330514827199998 ], [ -122.332027696, 47.331823643699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200, "random": 74.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.743899810299993, 45.669430911699997 ], [ -122.757700882, 45.666794190899999 ], [ -122.761332858700001, 45.681265217799996 ], [ -122.762062245600006, 45.693696678599999 ], [ -122.754285258699994, 45.723794704200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300, "random": 167.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979369534100002, 48.165617216699999 ], [ -118.985480828099995, 48.1713371337 ], [ -118.989236202399994, 48.191350379699998 ], [ -119.015462019500006, 48.2099485026 ], [ -119.034631474199998, 48.214355773599998 ], [ -119.041464078900006, 48.222582555300001 ], [ -119.082194230799999, 48.235761230900003 ], [ -119.125051920299995, 48.238780830700001 ], [ -119.136195757799996, 48.244515602100002 ], [ -119.1441751598, 48.272080556500001 ], [ -119.1341101995, 48.301291093400003 ], [ -119.152683295100005, 48.314616154699998 ], [ -119.152996717299999, 48.325473562500001 ], [ -119.158525312899997, 48.332544932200001 ], [ -119.1751984327, 48.339271577600002 ], [ -119.198188019, 48.355774322899997 ], [ -119.235022948, 48.3647323247 ], [ -119.395760849300004, 48.374796818199997 ], [ -119.440663445400006, 48.388454813599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000, "random": 78.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192831503500003, 48.477935123899996 ], [ -120.190064272399994, 48.477574027099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000, "random": 150.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.347212270900002, 47.824463311700001 ], [ -117.353862608699998, 47.838149676500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000, "random": 89.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.117168574499999, 47.165835136200002 ], [ -122.114431986499994, 47.165563315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200, "random": 14.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.662921207300002, 47.5817195825 ], [ -117.611206928599998, 47.594612786900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000, "random": 125.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.530788449400006, 47.258858195899997 ], [ -122.542797158699997, 47.262309813900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400, "random": 186.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938487959100001, 47.641296821200001 ], [ -122.946166179399995, 47.630652062400003 ], [ -122.959420462500006, 47.6280408601 ], [ -122.957242236300004, 47.6249005791 ], [ -122.981051959799998, 47.616057893799997 ], [ -122.986200562099995, 47.609617512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000, "random": 181.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284961471499997, 47.889952125 ], [ -122.291357602399998, 47.899252708399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000, "random": 157.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194046084600004, 47.755353640700001 ], [ -122.191330456499998, 47.755720280799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000, "random": 13.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161550008099994, 47.357992697299998 ], [ -122.140709792699994, 47.358002554700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000, "random": 193.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984212694099995, 47.709333908399998 ], [ -121.986203267799993, 47.722900691500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840, "random": 136.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620045942199994, 46.371824077299998 ], [ -122.613519309500006, 46.373222121399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000, "random": 117.167 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.702661090500001, 45.815547701600003 ], [ -122.690480811800001, 45.815702704400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000, "random": 127.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.012427460200001, 47.056316642699997 ], [ -123.009562583700003, 47.0558186162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000, "random": 119.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.332466565399997, 45.9393404761 ], [ -119.328758051799994, 45.931618116599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000, "random": 87.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.573222517700003 ], [ -118.956697523299994, 46.592964228299998 ], [ -118.927445826300001, 46.601833494300003 ], [ -118.856430317, 46.646165675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700, "random": 133.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.546083814499994, 46.683030593200002 ], [ -121.515669882699996, 46.6719110445 ], [ -121.488359887300007, 46.669303348100001 ], [ -121.449676745100007, 46.636191558500002 ], [ -121.444363943499994, 46.624708263199999 ], [ -121.404212287799993, 46.6342410524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000, "random": 94.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.193814887200006, 47.253304627399999 ], [ -121.183208277800006, 47.244320631100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000, "random": 46.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.111280294599993, 47.032595602599997 ], [ -123.096767187400005, 47.034123827899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600, "random": 6.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.921877134200003, 46.276283257400003 ], [ -122.907305875800006, 46.275376903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400, "random": 172.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999211918300006, 46.2864963221 ], [ -119.999084702600001, 46.301980308499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000, "random": 181.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.221480861800003, 47.403598799800001 ], [ -122.220202578699997, 47.407237497300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400, "random": 49.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990426831600004, 48.086663289400001 ], [ -121.980184742099993, 48.091167015099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000, "random": 87.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.145765470900002, 47.252121037599998 ], [ -123.132021950199999, 47.236342335499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700, "random": 33.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.303895728499995, 46.757897512500001 ], [ -118.226642999, 46.741705580100003 ], [ -118.205403212500002, 46.744748685600001 ], [ -118.173260837300006, 46.756869523 ], [ -118.153201407500006, 46.769193063499998 ], [ -118.129621305300006, 46.768072341299998 ], [ -118.092781726200002, 46.780339700100001 ], [ -118.048258043600001, 46.775332670600001 ], [ -118.023973467100006, 46.764545732599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000, "random": 138.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.005882445099999 ], [ -117.361681404799995, 47.029055953899999 ], [ -117.380268960400002, 47.050856712200002 ], [ -117.383139624899997, 47.076413216699997 ], [ -117.378854292, 47.096423184099997 ], [ -117.380029153899997, 47.174195565799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": null, "random": 54.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.627788861799999 ], [ -120.222736942400005, 47.626980318400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150, "random": 95.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377712239800005, 46.153926303 ], [ -123.377077820300002, 46.155161435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900, "random": 159.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.885352651700003, 45.692845945499997 ], [ -121.8772638059, 45.6967885603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000, "random": 75.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045574354799996, 46.418180045 ], [ -117.045583721, 46.419935817599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000, "random": 187.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486096201899997, 48.783628412500001 ], [ -122.486078625499999, 48.784378007400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100, "random": 5.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.370271266899998 ], [ -120.3149587825, 46.367729826599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000, "random": 114.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202193656700004, 46.147961704799997 ], [ -119.202351162699998, 46.134711391400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900, "random": 40.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289184802099996, 48.435552414900002 ], [ -122.267135357900003, 48.429927612199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000, "random": 74.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254672479700005, 47.242503585599998 ], [ -122.255900186800005, 47.246006102899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000, "random": 168.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575965758600006, 47.486890338099997 ], [ -117.575401006199996, 47.487355220600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700, "random": 180.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.078669235899994, 46.627029767700002 ], [ -123.064449026800006, 46.626975794400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000, "random": 109.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.996112927300004, 46.161845104900003 ], [ -122.987609501799994, 46.157644308199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000, "random": 8.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.897727887100004, 47.180423953599998 ], [ -120.872614316899998, 47.163858439499997 ], [ -120.8239451755, 47.1552275616 ], [ -120.799000461199995, 47.117870625499997 ], [ -120.783017302900006, 47.112021711899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400, "random": 105.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.624742220200005, 48.581611522800003 ], [ -120.601208134800004, 48.596618759099997 ], [ -120.589545207499995, 48.598662590499998 ], [ -120.533159985099999, 48.599376551699997 ], [ -120.511770525, 48.5910610484 ], [ -120.484167310800004, 48.586844211500001 ], [ -120.455082172900006, 48.596210188100002 ], [ -120.436049630400007, 48.597849873 ], [ -120.392947623500007, 48.579805828799998 ], [ -120.366562825599999, 48.561277073600003 ], [ -120.338960773400004, 48.548602804200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100, "random": 150.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515740677500006, 47.290804219499996 ], [ -122.515673186100003, 47.298106525199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000, "random": 76.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.293808411900002, 46.314192016500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700, "random": 47.874 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284575433900002, 48.281276573600003 ], [ -117.283901925600006, 48.305182219599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000, "random": 173.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.067799451300004, 46.9127572907 ], [ -117.054738688200004, 46.925380803499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700, "random": 84.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.224677901699998 ], [ -122.158793713899996, 48.238953466799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200, "random": 61.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.604193276399997, 46.474899599300002 ], [ -117.591579081299997, 46.474002727600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000, "random": 111.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180984819399995, 46.730694767199999 ], [ -117.179623886, 46.732395601100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500, "random": 164.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.218196494200001, 46.814163495099997 ], [ -119.207861427400005, 46.811573174300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000, "random": 108.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.391671100400004, 47.654295770099999 ], [ -117.394991893300002, 47.657584632800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200, "random": 93.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134312927699995, 46.818765882 ], [ -119.133344349400005, 46.826322014900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000, "random": 34.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.209573680800005, 46.273875129300002 ], [ -119.189505252100005, 46.267690257300004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000, "random": 60.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814395560500003, 46.976034897300003 ], [ -123.815518941400001, 46.975464231899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000, "random": 82.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.266329677599998, 47.4869149652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000, "random": 116.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802570051499998, 46.962027894499997 ], [ -123.802398376300005, 46.967887712299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800, "random": 40.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.534428898499996, 47.912791220199999 ], [ -124.538034814, 47.913818841199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000, "random": 24.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.562905111900001 ], [ -122.285789036099999, 46.5613718886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100, "random": 169.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.415532539899999, 47.426933366100002 ], [ -121.415857063199994, 47.425849765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000, "random": 162.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547904716900007, 47.123849887799999 ], [ -122.536283653500007, 47.130792169400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600, "random": 66.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.636770498199994, 48.062719337099999 ], [ -117.621722756699995, 48.059676954899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000, "random": 47.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200274287699997, 47.480323985299997 ], [ -122.192273680499994, 47.490126072800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000, "random": 162.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313709108699996, 47.777338075700001 ], [ -122.309143099099998, 47.774377396299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000, "random": 164.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335721940799999, 48.471719653599997 ], [ -122.335608842799999, 48.475571374099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800, "random": 84.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005822603200002, 46.322037676800001 ], [ -124.021535225899996, 46.317579506500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000, "random": 27.333 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.506325005899996, 45.684857825500004 ], [ -122.505963270500004, 45.681974861699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300, "random": 11.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.137725332700001, 46.2707786892 ], [ -118.123852411200005, 46.273750084299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000, "random": 50.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.505667950900005, 46.832959152800001 ], [ -117.490097050299994, 46.841035463099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000, "random": 187.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.155430989599999 ], [ -122.434200290299998, 47.159344943199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000, "random": 175.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950720210599997, 48.050275 ], [ -122.948992860800004, 48.050272209600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600, "random": 67.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.012650628499998, 46.208424581199999 ], [ -119.007894310200001, 46.211723726800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850, "random": 164.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672716964499998, 48.159354847700001 ], [ -122.672541743, 48.159772116600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000, "random": 45.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.602130269200003 ], [ -122.911197239800003, 46.610010098099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000, "random": 159.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.802694032399998 ], [ -123.006696476399995, 46.802802063599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600, "random": 150.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385422505199998, 47.9505814332 ], [ -124.385406426700001, 47.951680910299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": null, "random": 89.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.408900948099998 ], [ -120.294348910300002, 47.409876959899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": null, "random": 29.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.811607921399997 ], [ -119.63597552, 47.812067633799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000, "random": 143.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.316818358500001, 46.325761236300004 ], [ -119.302112785, 46.3183716498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000, "random": 158.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502199980499995, 48.71608606 ], [ -122.502234449, 48.717660434800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100, "random": 44.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.026166157099993, 46.162222024899997 ], [ -123.018241547299993, 46.155430162899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100, "random": 58.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352294519599994, 47.974775063099997 ], [ -122.355572140199996, 47.978279434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000, "random": 52.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.495769602799996, 47.726124747199997 ], [ -117.507545144299996, 47.7371619655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000, "random": 43.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282804357200007, 47.423422322500002 ], [ -122.274709422599997, 47.4287124851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000, "random": 80.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667261725700001, 45.779820175 ], [ -122.661701633600003, 45.779505486300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000, "random": 183.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.203586134700004, 47.475180577300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400, "random": 33.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.242096332900005, 46.1031326564 ], [ -118.204917645899997, 46.123542948 ], [ -118.157996431499996, 46.139111668399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000, "random": 192.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955074431599996, 46.644085364200002 ], [ -122.967097065800004, 46.649895724 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000, "random": 184.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.889523026299997, 46.980961881 ], [ -123.896051288500004, 46.980998530599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600, "random": 48.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.748308334100003 ], [ -120.771834294100003, 46.7474467101 ], [ -120.723988084599995, 46.734874448799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000, "random": 58.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243705511399995, 48.507550046 ], [ -122.241412149300004, 48.510407569900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000, "random": 175.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245689518600003, 48.2439992336 ], [ -122.264917707699993, 48.264714313900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400, "random": 170.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.361024243299994, 47.711537211500001 ], [ -121.354234893899999, 47.711904269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200, "random": 9.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356457815400006, 46.074867789 ], [ -118.356448217199997, 46.075882035799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140, "random": 106.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.784263452900007, 47.6121559913 ], [ -118.763698451, 47.612498886499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000, "random": 27.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843998045199996, 46.003648610100001 ], [ -122.852240996, 46.023438807300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000, "random": 193.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.685128998600007, 47.527235927900001 ], [ -122.695218099499996, 47.5247783015 ], [ -122.699724232799994, 47.527355071599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000, "random": 126.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.314872538100005, 47.821191207799998 ], [ -122.3121013887, 47.821183169599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000, "random": 99.756 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.360231664899999, 47.1201988782 ], [ -118.303302551300007, 47.159893548299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800, "random": 92.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.971631410100002, 46.2117605619 ], [ -118.910028470699999, 46.215109501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700, "random": 128.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000, "random": 169.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.822188395799998, 47.046986950600001 ], [ -122.813332455299999, 47.0524920951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300, "random": 103.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.018241547299993, 46.155430162899997 ], [ -123.003615758899997, 46.14714661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": null, "random": 117.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.198341733700005, 47.760267227900002 ], [ -120.174837509100001, 47.767969201900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000, "random": 171.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.165346057799994, 47.754516793 ], [ -122.169983570699998, 47.753052414899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000, "random": 10.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.178672227500002, 48.051849715099998 ], [ -122.177025547499994, 48.051845694900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000, "random": 168.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.004795632699995, 46.1661237024 ], [ -123.000372751800001, 46.1639381329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000, "random": 135.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.717660434800003 ], [ -122.499917878399998, 48.717652925499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": null, "random": 26.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.507057266100006, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.495989393100004, 46.923752129199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000, "random": 61.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328890954499997, 47.590308791600002 ], [ -122.323204156299994, 47.592989716799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000, "random": 23.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.682431997400002 ], [ -122.315402910200007, 47.684710450399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000, "random": 134.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.187823246800001 ], [ -122.201484693699996, 48.1878947696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670, "random": 87.673 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.686186201400005, 47.890718012100002 ], [ -117.6975572419, 47.884403535300002 ], [ -117.702216121399999, 47.876802217200002 ], [ -117.706620235800003, 47.879310378 ], [ -117.706336095099999, 47.868864365699999 ], [ -117.711948378700001, 47.8632977854 ], [ -117.714582124299994, 47.852040546799998 ], [ -117.74506215, 47.840110603200003 ], [ -117.760735503, 47.8384094476 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": null, "random": 9.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.052354033300006, 47.8358056633 ], [ -120.027228826400005, 47.836194659500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000, "random": 124.752 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552569830099998, 45.682084899199999 ], [ -122.552572928100005, 45.685580574500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000, "random": 193.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.581896048499999 ], [ -122.893609498800004, 46.589134577700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000, "random": 8.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.020834266600005, 47.078057988899999 ], [ -123.012741509899996, 47.056407929099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000, "random": 182.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264959141099993, 49.000030960399997 ], [ -122.263463248, 49.000025473699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200, "random": 120.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.756234783300002, 48.059508372099998 ], [ -117.761994264799995, 48.063266369600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900, "random": 140.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075403226600002, 48.606220092400001 ], [ -118.101265123600001, 48.614546561300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000, "random": 73.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.979770850500003, 46.660022128100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000, "random": 38.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207350378399994, 48.193054996800001 ], [ -122.214348263700003, 48.206328150499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700, "random": 53.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.441316758699998, 48.702892499100003 ], [ -119.440005912, 48.702379542300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000, "random": 56.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110236543900001, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830, "random": 43.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.000573970300003 ], [ -122.484170717, 49.002204739299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000, "random": 119.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.729913109500004 ], [ -122.547613590099999, 45.751890626200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000, "random": 53.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187813994500004, 47.631938593199997 ], [ -122.186387532799998, 47.640513346799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000, "random": 45.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.988044540099999 ], [ -122.909083344899997, 47.005153403 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000, "random": 80.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581605412299993, 45.655987363 ], [ -122.564935972499995, 45.659147453300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300, "random": 112.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907920452900001, 46.932682540099997 ], [ -122.907890131200006, 46.941803024499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400, "random": 150.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.210345909599994, 48.1692167689 ], [ -124.214900463899994, 48.176768044100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000, "random": 121.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187210101600002, 47.561286902699997 ], [ -122.183918427600005, 47.5658400246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000, "random": 169.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303613538299999, 47.651571254899999 ], [ -122.3008871177, 47.659302034500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": null, "random": 86.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.340586229600007, 47.468390233800001 ], [ -120.338522724699999, 47.4670473491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100, "random": 158.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704451580400004, 47.551027418 ], [ -117.704062271799998, 47.552004905099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000, "random": 176.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.770834163700002 ], [ -122.346227490700002, 47.777795554199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000, "random": 175.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.572847574400001, 47.301360429600003 ], [ -122.581342993899995, 47.310972648499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000, "random": 88.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.745690893700001, 46.215864676300001 ], [ -119.735001393600001, 46.2109623873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": null, "random": 107.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.901327047799995, 48.048282498799999 ], [ -119.912733243900007, 48.045239571 ], [ -119.933656759300007, 48.052435164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000, "random": 80.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.273758761400003, 47.465095805 ], [ -122.265129968300002, 47.4614024105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000, "random": 183.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129688599199994, 48.200331111600001 ], [ -122.125181517800002, 48.200293378700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500, "random": 36.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.888743691900004, 48.271523789100002 ], [ -121.879409098099998, 48.269112916399997 ], [ -121.839341072600007, 48.277300650299999 ], [ -121.771208812400005, 48.278800167500002 ], [ -121.7475431859, 48.276570994099998 ], [ -121.725738871900006, 48.26881907 ], [ -121.706502771900006, 48.268688746099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700, "random": 26.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.506537166300006, 45.781926395200003 ], [ -121.485438046699997, 45.798617495400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000, "random": 79.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.821213939400003 ], [ -122.314872538100005, 47.821191207799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180, "random": 64.762 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.686887325499995, 47.152595293300003 ], [ -118.684853976300005, 47.167379317200002 ], [ -118.691529932099996, 47.1733521134 ], [ -118.6870124756, 47.185154631899998 ], [ -118.685918682099995, 47.2602317232 ], [ -118.691379497599996, 47.2616081181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600, "random": 190.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974382568400003, 46.706849165500003 ], [ -122.973281621500007, 46.70702645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000, "random": 102.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.477586451400001, 47.715503692399999 ], [ -117.482808032700007, 47.717963365300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300, "random": 149.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.726582953700003, 46.621161997599998 ], [ -119.727511011800004, 46.634082462099997 ], [ -119.736058461599995, 46.6468473933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000, "random": 133.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292384800099995, 47.661192848 ], [ -122.2869879295, 47.661463342399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600, "random": 115.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.239989388300003, 46.8414422249 ], [ -123.2289306877, 46.840788556200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000, "random": 121.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196962788500002, 47.441505653500002 ], [ -122.196925317099996, 47.445266757200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000, "random": 68.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.922800699199996, 46.134795839399999 ], [ -122.919949281900003, 46.138478727100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800, "random": 101.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.512970924499996, 47.623864315600002 ], [ -122.51414874, 47.624854864200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910, "random": 70.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.708193058399999 ], [ -117.253697876299995, 46.720834603900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500, "random": 120.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905841872400003, 48.5465546852 ], [ -117.904334281399997, 48.5465658408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900, "random": 125.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.503673288599998, 47.802746125200002 ], [ -122.498903427100004, 47.800573328399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700, "random": 132.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356476260799994, 46.068734943199999 ], [ -118.360611100200003, 46.0686802253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930, "random": 6.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.855326948499993, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000, "random": 154.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000, "random": 105.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.203649239900002, 47.8781466533 ], [ -122.169616112499995, 47.877828645699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700, "random": 105.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161323536300003, 47.333867098 ], [ -123.172041843399995, 47.3177075499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000, "random": 127.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.105912285800002 ], [ -122.187296503900001, 48.144438471199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000, "random": 191.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620832926800006, 47.372853172799999 ], [ -122.618821704499993, 47.371309362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": null, "random": 186.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.268238731400004, 47.136438738800003 ], [ -119.262380566, 47.139674647699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200, "random": 63.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.910399241899995, 46.147036878 ], [ -122.908506061500006, 46.146702232199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400, "random": 27.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.967463185100002 ], [ -124.425941613899994, 47.962641102399999 ], [ -124.440388540100003, 47.963740785200002 ], [ -124.450942961500004, 47.954877667700003 ], [ -124.460686978599995, 47.952414175199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": null, "random": 146.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292457478399996, 47.406215807400002 ], [ -120.288340059399999, 47.399384796299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000, "random": 111.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.443282949099995, 45.578531253800001 ], [ -122.435610210099995, 45.580163137200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000, "random": 28.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322628571500005, 47.6386200098 ], [ -122.322457988599993, 47.646211059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700, "random": 41.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.494241787899995, 46.279543472100002 ], [ -119.493588994299998, 46.301316915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": null, "random": 114.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.677492645900003, 48.010363151900002 ], [ -119.680267402200002, 48.008990227200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000, "random": 10.28 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.722898993100003, 47.467079809499999 ], [ -121.709670661800004, 47.463275161699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900, "random": 60.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.222631107599994, 46.725847558300003 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.741345992600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000, "random": 170.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.419935817599999 ], [ -117.0442946621, 46.419932827700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000, "random": 47.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201270292199993, 47.448793830500001 ], [ -122.207036498600004, 47.459407738700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000, "random": 85.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184688057800003, 48.081606951700003 ], [ -122.184727787599996, 48.095997776300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000, "random": 64.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.063206050100007, 47.541252563500002 ], [ -122.062748397700005, 47.545705776699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800, "random": 92.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.525680334100002, 48.410508638499998 ], [ -119.528486519099999, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500, "random": 75.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.889061920499998, 47.175619884299998 ], [ -123.918238997499998, 47.185584487900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600, "random": 134.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.417694339600004, 45.641107566099997 ], [ -122.398723856199993, 45.638331331899998 ], [ -122.398672794099994, 45.6242774567 ], [ -122.403423195, 45.623380243900002 ], [ -122.404321633099997, 45.615225457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460, "random": 9.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.100019608099998, 45.824926880500001 ], [ -121.097610307799997, 45.826067191100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600, "random": 145.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.106171724600003, 48.2554318205 ], [ -120.084256158399995, 48.270597111900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400, "random": 132.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515673186100003, 47.298106525199998 ], [ -122.515656255300001, 47.2992775357 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100, "random": 190.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.442107154799999, 48.701994917900002 ], [ -119.441091926599995, 48.703150918200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500, "random": 10.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715450652900003, 48.269998491800003 ], [ -117.715519020900004, 48.276246085099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000, "random": 154.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.395949240899995, 46.416943327699997 ], [ -120.428797596899997, 46.4412917927 ], [ -120.431166201899998, 46.457537800200001 ], [ -120.469437454900003, 46.506554291800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000, "random": 21.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655187397899994, 47.757996620299998 ], [ -122.656604586900002, 47.758415467299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300, "random": 51.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.081386745100005, 46.6270365528 ], [ -123.078669235899994, 46.627029767700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000, "random": 47.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.830965119499993, 47.857991970500002 ], [ -121.816531071200004, 47.861761082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": null, "random": 111.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.084428763399998 ], [ -119.780884531500007, 48.089934490300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000, "random": 187.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.350200969100001, 48.553164776800003 ], [ -122.347632495900001, 48.563982262400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100, "random": 43.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.173659831099997, 47.788368584600001 ], [ -118.173984645700003, 47.8032868437 ], [ -118.183505781500003, 47.821951415800001 ], [ -118.201888360599995, 47.825049034700001 ], [ -118.211777280600003, 47.834107386500001 ], [ -118.215510755500006, 47.859732329800003 ], [ -118.26205996, 47.8659297604 ], [ -118.267057536099998, 47.876041956800002 ], [ -118.264417688500004, 47.886536003 ], [ -118.273512318499996, 47.895398528800001 ], [ -118.276445819200006, 47.9099818571 ], [ -118.302215694799997, 47.903241149700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": null, "random": 197.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970717980100005, 47.810311780500001 ], [ -119.974790843500003, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": null, "random": 76.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.305279921700006, 47.108785126400001 ], [ -119.303513312099994, 47.110007206900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200, "random": 160.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.578335198800005, 47.815136782400003 ], [ -117.597361691299994, 47.828865968800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000, "random": 113.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.881472127500004, 47.086916141899998 ], [ -118.863757516299998, 47.086768846799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000, "random": 143.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.606992276200003, 48.3197133157 ], [ -119.601718577900002, 48.340327786700001 ], [ -119.595381933100001, 48.34623453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000, "random": 167.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.107133159599996 ], [ -123.40157192, 48.106683647099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000, "random": 118.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.901700070499999, 46.285276014200001 ], [ -122.900982517, 46.285830725700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500, "random": 151.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.358463390799997, 47.214502144100003 ], [ -117.353382393299995, 47.223769246300002 ], [ -117.362624217600001, 47.2400995255 ], [ -117.361066420699999, 47.253456630599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900, "random": 119.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332743201499994, 47.408543256 ], [ -122.335262653900003, 47.416057096199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000, "random": 81.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229284166499994, 47.1772685985 ], [ -122.229542768200005, 47.157073806200003 ], [ -122.232988543600001, 47.151747261200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000, "random": 182.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": null, "random": 96.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297532598299995, 47.433356212900001 ], [ -120.297733659499997, 47.424238153899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300, "random": 167.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955524056300007, 46.716503990200003 ], [ -122.955941604200007, 46.715546307300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000, "random": 172.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.659296037600001, 47.442238591200002 ], [ -121.626086199200003, 47.428820891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000, "random": 43.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110236543900001, 48.0279042262 ], [ -122.07298877, 48.030444367199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900, "random": 80.38 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157684185799994, 47.646000131599997 ], [ -118.1576753991, 47.653194853800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000, "random": 142.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411313281899993, 47.715101221300003 ], [ -117.412724274599995, 47.715145703700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830, "random": 137.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.002206617100001 ], [ -122.48508877, 49.000573970300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880, "random": 153.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.302215694799997, 47.903241149700001 ], [ -118.309588441299994, 47.908349294399997 ], [ -118.331877313899994, 47.905910724800002 ], [ -118.336265769899995, 47.910054110700003 ], [ -118.3214853554, 47.929501375699999 ], [ -118.316162062700002, 47.946065235799999 ], [ -118.295303866, 47.981120140500003 ], [ -118.286330111699996, 47.992986808399998 ], [ -118.266897083299995, 48.006793175399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700, "random": 9.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.917598413199997 ], [ -122.726153012200001, 48.955162657199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000, "random": 152.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.268235143300004, 46.401178348800002 ], [ -120.2470329935, 46.394338942399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000, "random": 111.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.394338942399997 ], [ -120.234147864099995, 46.387454465300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700, "random": 62.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289175401700007, 48.155283600700002 ], [ -122.289183953199995, 48.155717637899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300, "random": 61.17 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501053194600004, 47.512147903299997 ], [ -122.497304913700006, 47.5119962431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200, "random": 76.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.709840051400001 ], [ -118.925005797, 47.710824323700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000, "random": 151.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.647181838500003, 47.642928796500001 ], [ -117.644148320200003, 47.642923887800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000, "random": 9.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282439766699994, 47.818971508799997 ], [ -122.262222131900003, 47.831227666700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000, "random": 46.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.473637693100002, 48.718321439699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400, "random": 22.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.976177337500005, 46.0002961924 ], [ -118.932685793700003, 46.0274987811 ], [ -118.940467505900003, 46.042184302099997 ], [ -118.936268210799994, 46.051675932 ], [ -118.928109122400002, 46.056746178899999 ], [ -118.912284865700002, 46.056970700299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000, "random": 150.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926622838300005, 46.123057845200002 ], [ -122.924700924500002, 46.1221385232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000, "random": 180.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182933121100007, 47.988551102700001 ], [ -122.1739059983, 47.999571344 ], [ -122.181406580699999, 48.04479845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000, "random": 111.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323901086800007, 47.439792601699999 ], [ -122.3228061274, 47.439196369400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000, "random": 123.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262222131900003, 47.831227666700002 ], [ -122.259846258600007, 47.83972786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930, "random": 13.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.786436959200003, 48.651103998 ], [ -118.777027675900001, 48.649473503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560, "random": 81.739 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659778051700002, 47.332892974899998 ], [ -118.606439410099995, 47.343846301900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000, "random": 43.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.168007203900004, 47.757408442100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": null, "random": 18.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475337364799998, 46.862537997 ], [ -119.472151592800003, 46.948450380099999 ], [ -119.474905207800006, 46.952859182300003 ], [ -119.460712354199998, 46.956629708400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100, "random": 148.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343789167099999, 48.807321054799999 ], [ -122.332564168800005, 48.8145942815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000, "random": 93.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.397788788400007, 47.053147781100002 ], [ -122.400514288599993, 47.055858198499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300, "random": 76.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730668280800003, 48.086136372799999 ], [ -123.709329636299998, 48.084667624300003 ], [ -123.700970304500004, 48.078593043799998 ], [ -123.678622098800005, 48.073901581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000, "random": 111.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324165458899998, 47.729615819499998 ], [ -122.328864462499993, 47.741140359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": null, "random": 68.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294127652200004, 47.413015349399998 ], [ -120.292956606700002, 47.408097835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200, "random": 121.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.354234893899999, 47.711904269 ], [ -121.335221147499993, 47.713217372499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800, "random": 46.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.589920216099998, 47.479158675500003 ], [ -117.583279323499994, 47.481886183299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000, "random": 140.147 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322055364899995, 48.313308008200003 ], [ -122.334493912699998, 48.337354783899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300, "random": 18.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730244100799993, 48.641839496 ], [ -118.730055253499998, 48.6419111855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000, "random": 135.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118393322900005, 47.358083689 ], [ -122.1091619452, 47.358098863599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000, "random": 76.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176099475200004, 47.580180733 ], [ -122.169841807500006, 47.580124984199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000, "random": 198.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623732039299995, 47.533996747 ], [ -122.611566454499993, 47.534032947900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000, "random": 90.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.665699589200003 ], [ -122.098612585699996, 47.664587444399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": null, "random": 73.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.832023730100005, 47.2340352 ], [ -119.810762466100002, 47.234104028899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000, "random": 115.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579321671499997, 47.107892831500003 ], [ -122.562387903599998, 47.115388587399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000, "random": 147.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218079123799996, 47.8520936404 ], [ -122.216376018299997, 47.872784710099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400, "random": 81.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.919501275299993, 46.6405634658 ], [ -123.921074264, 46.671480705500002 ], [ -123.917576436900006, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.884865680299995, 46.685492823899999 ], [ -123.875376226699998, 46.68435008 ], [ -123.857728382399998, 46.693948643900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770, "random": 171.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050149800499995, 46.287366661699998 ], [ -117.039512786200007, 46.314980599800002 ], [ -117.0421390618, 46.326714515200003 ], [ -117.0484351291, 46.317446563099999 ], [ -117.056080360799996, 46.325030540900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": null, "random": 42.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.598927088500005, 47.555361186900001 ], [ -120.592701960499994, 47.558975723899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700, "random": 122.046 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.627051021900002, 46.735547573 ], [ -119.601144086399998, 46.737913385100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": null, "random": 32.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.251785278900002, 47.1061646856 ], [ -119.256687638100004, 47.112363657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200, "random": 18.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.076728009700005, 46.226590831800003 ], [ -119.079520179400006, 46.232297928400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000, "random": 96.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330190562400006, 47.612879725900001 ], [ -122.329134167, 47.615596198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": null, "random": 21.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.227703042800002, 47.624133213699999 ], [ -120.221912289100004, 47.6270557243 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000, "random": 54.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.776074627900002 ], [ -122.483284069700005, 48.782474480200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000, "random": 168.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914753907600002, 46.150245296500003 ], [ -122.915731495200006, 46.166789577800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000, "random": 173.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.051859428900002 ], [ -122.183614853199998, 48.051864397400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": null, "random": 13.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.311843170200007, 47.156724983700002 ], [ -119.323551961700005, 47.161804575200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810, "random": 98.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.420394895499996, 46.908116647100002 ], [ -121.407449924600002, 46.9139103029 ], [ -121.373876563799996, 46.917117209300002 ], [ -121.359094590200002, 46.932385889400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500, "random": 169.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.905265762400006, 45.663017263500002 ], [ -121.909674525599996, 45.674994064700002 ], [ -121.901532568700006, 45.682342419100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000, "random": 75.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.798359712500002 ], [ -123.002559608799999, 46.810008946899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000, "random": 170.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.622593568699997, 47.438378847099997 ], [ -122.623797006700002, 47.463593822599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000, "random": 59.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.108662332099996, 48.0731296075 ], [ -123.092913658699999, 48.0727563835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000, "random": 15.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195658382399998, 47.535101455899998 ], [ -122.192662903699997, 47.553294547699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000, "random": 126.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335565019599997, 48.4778597679 ], [ -122.322498894, 48.477758466899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000, "random": 186.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300968213600001, 47.465753183499999 ], [ -122.281493610200002, 47.463910419100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000, "random": 125.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668611477100001, 47.642951301700002 ], [ -117.647181838500003, 47.642928796500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000, "random": 103.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256585895800001, 46.188298165799999 ], [ -119.233645215099997, 46.177308943699998 ], [ -119.207555940899994, 46.170970004399997 ], [ -119.202402813899994, 46.164669637199999 ], [ -119.202143817800007, 46.1517167071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960, "random": 24.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659283546300003, 48.69353696 ], [ -118.654012462699995, 48.729929546199998 ], [ -118.660739732600007, 48.7395905415 ], [ -118.647419978200006, 48.7574573152 ], [ -118.6471151083, 48.765380910600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410, "random": 36.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.487719554700007, 46.731020675400003 ], [ -117.482876996499996, 46.737467882300002 ], [ -117.460660441200005, 46.747847563299999 ], [ -117.452984552399997, 46.757850277099998 ], [ -117.396687838099993, 46.769281830300002 ], [ -117.375448974500003, 46.7524284104 ], [ -117.364269794, 46.748263931700002 ], [ -117.357628565100001, 46.737004650800003 ], [ -117.341117993599994, 46.736918286700003 ], [ -117.333013661699994, 46.742959484799997 ], [ -117.317662284199997, 46.731813860700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700, "random": 92.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667102884900004, 48.208880163 ], [ -122.686143286399997, 48.2123143699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000, "random": 65.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182293234300005, 48.051873874400002 ], [ -122.178672227500002, 48.051849715099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000, "random": 162.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158800310700002, 46.207751197699999 ], [ -119.158789864100001, 46.209496312699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000, "random": 155.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082482434599996, 46.2383223812 ], [ -119.083420541, 46.240239538899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000, "random": 73.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304446133300004, 47.944617216399998 ], [ -122.304056684200006, 47.947165397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200, "random": 159.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.847864650800005, 46.442898255599999 ], [ -122.847887418300004, 46.441879990399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000, "random": 20.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.212309471600001 ], [ -122.705914185200001, 48.212264044199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000, "random": 171.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.437900821900001, 47.715449835400001 ], [ -117.456888889400005, 47.7154157955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000, "random": 161.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644296266200001, 48.416713377199997 ], [ -122.620384397, 48.420264665200001 ], [ -122.608242578700001, 48.428787876800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000, "random": 122.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.672993962200003 ], [ -117.239540986700007, 47.675790767199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000, "random": 21.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295248680200004, 47.430983851400001 ], [ -122.295419811299993, 47.434556835099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000, "random": 27.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.787872723199996, 47.059731396899998 ], [ -122.754178235300003, 47.064444536899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000, "random": 63.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296344995400005, 47.0166678167 ], [ -122.295539751600003, 47.040162607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000, "random": 30.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186903818399998, 47.663630478599998 ], [ -122.186214256599996, 47.672270169299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600, "random": 15.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.441323932299994, 48.96428992 ], [ -122.407449955, 48.964023052599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500, "random": 159.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.598169341299993, 48.116751797 ], [ -123.571252840200003, 48.114671255600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000, "random": 151.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629830761500003, 47.587574997200001 ], [ -122.6295353398, 47.592477569499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000, "random": 116.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.404003193700007, 47.652123854400003 ], [ -117.399313164399999, 47.652035602700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000, "random": 89.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248794955299999, 47.432275411299997 ], [ -122.245588636600004, 47.441221085499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500, "random": 153.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.715965125899999 ], [ -122.502199980499995, 48.71608606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900, "random": 10.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.480736056799998, 46.677532789300002 ], [ -120.482170985500005, 46.678401852699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000, "random": 78.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.396298268699994, 45.578556758600001 ], [ -122.392433527099996, 45.579523637500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000, "random": 186.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485215379099998, 48.964238869100001 ], [ -122.485156688800004, 48.993345617800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000, "random": 18.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.968528090199996, 46.303720239100002 ], [ -119.928320592099993, 46.272068797400003 ], [ -119.910635348200003, 46.267561943099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000, "random": 83.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820947948200001, 45.976521508499999 ], [ -122.830325525099994, 45.986546639099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000, "random": 153.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.807636250900003, 46.977246300099999 ], [ -123.803073749299998, 46.977342476899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600, "random": 27.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.089258647700007, 46.543182164599997 ], [ -117.092957843700006, 46.546111440499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900, "random": 138.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.903014288700007, 48.491295040099999 ], [ -117.900032163299997, 48.514822412 ], [ -117.9050816787, 48.534381227799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000, "random": 108.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.035016130299994, 47.253938049 ], [ -123.005165366499995, 47.2658148473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700, "random": 95.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206725611400003, 48.3642645921 ], [ -122.213367238700002, 48.372379240100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800, "random": 188.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.462998099800004, 45.713505250099999 ], [ -121.459894611699994, 45.712339651100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": null, "random": 22.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294348910300002, 47.409876959899997 ], [ -120.298061500200006, 47.409742022300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000, "random": 167.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159856862200002, 47.504657659899998 ], [ -122.156531073599993, 47.505727264299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000, "random": 67.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.291251261799999, 48.0954124931 ], [ -123.209983535899994, 48.0853786216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000, "random": 20.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.084882845199999, 46.328472961599999 ], [ -120.068762990699994, 46.3226150928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200, "random": 180.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.870530194300002, 47.732077034600003 ], [ -117.874789038800003, 47.738757506699997 ], [ -117.883322839300007, 47.7409083111 ], [ -117.890492870200006, 47.756243305300003 ], [ -117.893734817899997, 47.773156233500004 ], [ -117.888588976299999, 47.779159660300003 ], [ -117.889926040399999, 47.788750644499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": null, "random": 146.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.073214422600003 ], [ -119.806099495699996, 48.093206145899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000, "random": 18.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.717006410400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": null, "random": 9.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.567442828200001 ], [ -120.602068424199999, 47.564209197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000, "random": 148.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096605849699998, 47.174752381099999 ], [ -123.095723781800004, 47.157298820199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000, "random": 52.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.020276654100002, 47.358392289500003 ], [ -122.020926540700003, 47.361394117099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": null, "random": 108.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117938296399998, 46.970178233699997 ], [ -119.117929867499996, 46.984670877500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500, "random": 163.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.642734092600001 ], [ -118.157684185799994, 47.646000131599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000, "random": 196.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.660981036599999 ], [ -117.41331834, 47.659992095900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700, "random": 16.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.185421141800006, 48.477806843800003 ], [ -120.178109296299994, 48.472588289599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000, "random": 136.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335194298800005, 47.734143629599998 ], [ -122.334332897300001, 47.734144514599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700, "random": 65.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.251494599200001, 46.630101903400003 ], [ -123.180143380499999, 46.634200065800002 ], [ -123.168465260800005, 46.630680131399998 ], [ -123.174419729199997, 46.6133083665 ], [ -123.158177663900005, 46.597497374699998 ], [ -123.128754746599995, 46.600496945700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000, "random": 16.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218321885899996, 48.216603711499999 ], [ -122.237437233600005, 48.2352708759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730, "random": 88.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071540468899997, 46.195922281199998 ], [ -117.069636538, 46.227851873699997 ], [ -117.059636007199998, 46.229493693099997 ], [ -117.059504067299997, 46.274982224699997 ], [ -117.050149800499995, 46.287366661699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000, "random": 109.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.638014144300001, 48.311229020200003 ], [ -122.629521198600003, 48.320290979399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000, "random": 170.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.360542910299998, 47.320727857100003 ], [ -122.356089198, 47.322505603700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000, "random": 28.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.483419434499993, 47.634916335500002 ], [ -117.479700109600003, 47.633284509399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000, "random": 114.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.309937195499998, 47.307573398400002 ], [ -121.301686665199995, 47.301951192600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": null, "random": 42.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228161390799997, 47.622663198700003 ], [ -120.228121380800005, 47.624127678900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400, "random": 119.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076752340900001, 46.909721281499998 ], [ -117.076895172600004, 46.910582235900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280, "random": 172.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410840975200003, 48.685132151700003 ], [ -117.405380887899994, 48.685132053300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000, "random": 11.363 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193654417499999, 46.764554452200002 ], [ -122.194201973800006, 46.765336616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000, "random": 151.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291437428099997, 47.922028754499998 ], [ -122.287818599800005, 47.924514488600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700, "random": 133.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176494649899993, 46.782072591599999 ], [ -119.176413614599994, 46.796858286499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900, "random": 40.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.526471648200001, 45.9932175677 ], [ -122.541733257399997, 45.9878702719 ], [ -122.541973759900003, 45.975841807099997 ], [ -122.552955512899999, 45.964338254300003 ], [ -122.562864451500005, 45.958308226100002 ], [ -122.575637757, 45.957740050399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900, "random": 69.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229673571099994, 48.385256496799997 ], [ -122.237932510500002, 48.399327514900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": null, "random": 96.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594234535400005, 47.381679915900001 ], [ -120.612720184200001, 47.3953748749 ], [ -120.643282387300005, 47.393382498900003 ], [ -120.656123628499998, 47.402611804199999 ], [ -120.659486369500002, 47.417434481699999 ], [ -120.656077980899994, 47.431696426499997 ], [ -120.662592284699997, 47.441003752299999 ], [ -120.6536874982, 47.450987204 ], [ -120.660583827599993, 47.4614951171 ], [ -120.655618841500001, 47.474500767599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700, "random": 171.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764092501899995, 47.3690425701 ], [ -122.758479940200004, 47.374409228799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000, "random": 190.978 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.298262488099994, 47.217606902699998 ], [ -122.294008676399997, 47.224909226299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940, "random": 82.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.051247552699998 ], [ -122.6907759825, 48.056749767100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000, "random": 153.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334192049500004, 47.590279780800003 ], [ -122.335644288300003, 47.5965279925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": null, "random": 181.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.117722674900001 ], [ -119.853529322100002, 47.119197753900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800, "random": 130.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.891347990400007, 46.054345918499997 ], [ -118.867474842199996, 46.0534348511 ], [ -118.839622420200001, 46.065252100499997 ], [ -118.788012284100006, 46.072450643 ], [ -118.711137464100005, 46.053156728099999 ], [ -118.684914254500001, 46.041502158699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000, "random": 165.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292053646699998, 47.400669800400003 ], [ -122.289378304699994, 47.416887971 ], [ -122.282804357200007, 47.423422322500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000, "random": 79.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.353867199899994, 46.069697845599997 ], [ -118.340549846499997, 46.073901475299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000, "random": 47.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192662903699997, 47.553294547699998 ], [ -122.187210101600002, 47.561286902699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000, "random": 131.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.999229962399994, 47.852339701799998 ], [ -121.989326623300002, 47.858550461900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000, "random": 25.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.853981904500003, 46.976075110399997 ], [ -123.879310735199994, 46.977845548600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500, "random": 190.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880446336399999, 47.331920456200002 ], [ -122.851419877699996, 47.349845709699999 ], [ -122.836474754700006, 47.374286003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000, "random": 181.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140709792699994, 47.358002554700001 ], [ -122.139011970599995, 47.358015368099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200, "random": 132.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511892390300005, 46.626211773 ], [ -120.5261373787, 46.636545418399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000, "random": 142.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.299538563599995, 47.712054475400002 ], [ -122.292399687100001, 47.731803153800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200, "random": 90.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.728293539399999, 46.578053477799997 ], [ -119.727402952800006, 46.601883459299998 ], [ -119.736755477200006, 46.608082752500003 ], [ -119.727055624900004, 46.612594851099999 ], [ -119.726582953700003, 46.621161997599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000, "random": 146.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.313307756100002, 47.315182427400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200, "random": 167.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.664934623699999 ], [ -123.794603387500004, 46.664438437800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000, "random": 167.997 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347257021100006, 47.6739649907 ], [ -122.344436500499995, 47.686959592599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600, "random": 106.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.723988084599995, 46.734874448799999 ], [ -120.700207955899998, 46.728203798599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000, "random": 77.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.928170766799994, 47.026188983300003 ], [ -122.913444846399997, 47.0253389513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200, "random": 66.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.222795104200003, 45.742975333899999 ], [ -120.198037933500004, 45.750653004199997 ], [ -120.185809987799999, 45.7626742717 ], [ -120.149614449799998, 45.779602804100001 ], [ -120.072888972100003, 45.7937322728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800, "random": 59.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.769308763400005, 48.110002460499999 ], [ -122.766732319699997, 48.110171865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 8.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.408850766199997 ], [ -120.289590062100004, 47.406038896399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700, "random": 194.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.311023756200001, 46.854882640900001 ], [ -122.302889471499995, 46.856180188099998 ], [ -122.311493874600004, 46.862481513299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900, "random": 27.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.154518767300004, 47.506121499599999 ], [ -122.151498588600006, 47.506257013099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000, "random": 85.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.328144988899993, 47.6228434601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000, "random": 110.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.487130901500002 ], [ -122.25450026, 47.484675827499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600, "random": 13.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.117892276500001, 48.359995303799998 ], [ -120.082633971199996, 48.348568806899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250, "random": 5.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.890363619599995, 47.209222122699998 ], [ -117.893545103500003, 47.212482255300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000, "random": 143.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218703100300004, 47.436264282700002 ], [ -122.215305772199997, 47.449957293700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000, "random": 192.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328144988899993, 47.6228434601 ], [ -122.324181676, 47.632101247500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100, "random": 175.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.721243935800004, 47.763146625200001 ], [ -118.713075020700003, 47.760489837199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000, "random": 88.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140608262699999, 48.151913289 ], [ -122.132707043300002, 48.1526864406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": null, "random": 131.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594317222200004, 47.014034000099997 ], [ -120.5925213891, 47.0219833385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000, "random": 165.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.557333596200003 ], [ -120.471265438299994, 46.539414212799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": null, "random": 133.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813451003200001, 47.612634845099997 ], [ -119.8134804078, 47.699642433800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700, "random": 187.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378643621500004, 48.516946430200001 ], [ -122.410855576, 48.550846561900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900, "random": 104.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.916702149900004, 47.665311003900001 ], [ -117.879282575900007, 47.669483932600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000, "random": 114.719 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.616765508900002 ], [ -122.187813994500004, 47.631938593199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000, "random": 24.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343617639499996, 47.625224852300001 ], [ -122.347032287700003, 47.6426862378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000, "random": 63.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342303708100005, 47.7341359849 ], [ -122.335194298800005, 47.734143629599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000, "random": 52.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.598939776600005, 45.612974016800003 ], [ -122.594258495099993, 45.612560721500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": null, "random": 82.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.641980364899993, 47.815343803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000, "random": 131.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.999819081400005, 47.050500637500001 ], [ -122.991001614300004, 47.0450336894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300, "random": 171.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880352613300005, 46.306112660499998 ], [ -122.866511907399996, 46.303640157300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": null, "random": 35.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.602068424199999, 47.564209197 ], [ -120.598347073400006, 47.562079282799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200, "random": 85.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.400467428400006, 47.536405350400003 ], [ -117.398395829, 47.543770665700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": null, "random": 63.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.488596417300002, 47.377485891200003 ], [ -119.482679815, 47.381469205400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000, "random": 19.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.442382649699994, 46.937291079 ], [ -122.35740693, 46.936642209200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100, "random": 58.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.910859572100001 ], [ -117.067799451300004, 46.9127572907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000, "random": 115.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.904892859199997 ], [ -122.228090332199997, 47.908324735699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000, "random": 128.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353191655499998, 47.787208051500002 ], [ -117.352315237100001, 47.7871149729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000, "random": 66.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914296097499999, 46.200138842100003 ], [ -122.916599885, 46.205741983700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000, "random": 192.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402514188599994, 47.775377664 ], [ -117.402440419900003, 47.775794797400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000, "random": 191.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656990761200007, 45.732546164200002 ], [ -122.661277098900001, 45.746467718700004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": null, "random": 96.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.685372148200003, 48.104020449099998 ], [ -119.668283837900006, 48.1388517209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000, "random": 13.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.473322861400007, 46.584970764799998 ], [ -120.470989273200004, 46.584876290399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000, "random": 132.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.966420914300002, 46.148026853200001 ], [ -122.955243405499999, 46.147106829499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460, "random": 155.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.317662284199997, 46.731813860700001 ], [ -117.290075712100005, 46.725393049799997 ], [ -117.267322546, 46.708193058399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000, "random": 123.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.443990572700002, 48.1073916924 ], [ -123.442124530399994, 48.107323541500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000, "random": 159.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.060210817500007, 48.064407704300002 ], [ -123.054141350199998, 48.060912372700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970, "random": 84.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.113183876600004, 46.908188825099998 ], [ -124.112468387199996, 46.908720344199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000, "random": 186.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433972606799998, 47.207413103199997 ], [ -122.4340414925, 47.220909691099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700, "random": 110.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.950176130800003, 46.983300724099998 ], [ -123.958464947300001, 46.982430452400003 ], [ -123.963881663899997, 46.9871110108 ], [ -123.999196046099996, 46.993426610199997 ], [ -124.004088097199997, 47.00857363 ], [ -124.038134999700006, 47.045714760700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600, "random": 55.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.701501382399996, 47.757762028099997 ], [ -118.700325316700003, 47.757666899199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000, "random": 80.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.740847495899999 ], [ -117.411487897, 47.7439536479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000, "random": 34.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.350203448900004, 47.913704343699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000, "random": 198.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.415683315800003 ], [ -122.218703100300004, 47.436264282700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900, "random": 15.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.264793495800006, 48.253169139299999 ], [ -124.260389031, 48.2542321886 ], [ -124.260169830899997, 48.250693192599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500, "random": 37.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.884335095899999, 46.505082388399998 ], [ -119.876676456799999, 46.5100011675 ], [ -119.873467005400002, 46.5215778241 ], [ -119.880280900700001, 46.5340131046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600, "random": 84.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824681801899999, 45.823005993499997 ], [ -120.822628386199995, 45.822990394900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000, "random": 85.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329243180199995, 47.331743374399998 ], [ -122.321901880599995, 47.332697738599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000, "random": 125.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.028935226800002, 46.511817406699997 ], [ -124.030679460200005, 46.532012021900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000, "random": 50.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.774590595299998, 46.981635785199998 ], [ -123.754235983800001, 46.978403612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000, "random": 146.842 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.053655770799999 ], [ -122.139335004, 48.053651104099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000, "random": 131.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.646212052700001 ], [ -117.239869003899997, 47.648870384699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000, "random": 149.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298424995199994, 47.1999364331 ], [ -122.293814458300005, 47.198880376799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000, "random": 123.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293233785499993, 47.910375483199999 ], [ -122.291437428099997, 47.922028754499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900, "random": 56.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.936904906499997 ], [ -119.445210249100001, 45.9475940632 ], [ -119.410562102, 45.958355706600003 ], [ -119.400160619600001, 45.949325932500003 ], [ -119.373150104100006, 45.946680716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800, "random": 12.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815518941400001, 46.975464231899998 ], [ -123.814658128900007, 46.974667433800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000, "random": 118.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188159619700002, 47.632297944299999 ], [ -122.154129026099994, 47.629523595199998 ], [ -122.136478190800005, 47.638442178699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": null, "random": 161.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.775684841300006, 48.108642657799997 ], [ -119.765463651, 48.109561014699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000, "random": 170.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231923075500006, 47.636062816299997 ], [ -122.213334177500002, 47.641671832699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000, "random": 162.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.832270050299996, 47.045933568700001 ], [ -122.822188395799998, 47.046986950600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000, "random": 22.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284168690399994, 48.096746748299999 ], [ -117.278589829400005, 48.097019969599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000, "random": 116.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473678655800001, 47.161579212200003 ], [ -122.460090051099996, 47.158565784700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300, "random": 30.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.298032189799997 ], [ -117.972813399800003, 47.3032197247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": null, "random": 59.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.667643367899998, 47.592781258700001 ], [ -120.661540138700005, 47.596128795299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000, "random": 20.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357139855499994, 48.627319620199998 ], [ -122.363905077, 48.644133222500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000, "random": 107.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690070823200003, 47.674254571299997 ], [ -122.689141188199997, 47.683932213600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300, "random": 158.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.349164427700003, 46.063926639899996 ], [ -118.349924354400002, 46.069095536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000, "random": 187.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.472249359299994, 46.567494454399998 ], [ -120.4705735995, 46.557333596200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000, "random": 150.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.979061219899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500, "random": 131.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.265180498099994, 46.656573853200001 ], [ -118.287525629800001, 46.668511983199998 ], [ -118.3072819323, 46.668686791900001 ], [ -118.334445877299999, 46.677688487099999 ], [ -118.378357700199999, 46.677736874600001 ], [ -118.389137803, 46.689395814599997 ], [ -118.391198589, 46.697209202700002 ], [ -118.412269855199995, 46.701216260800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300, "random": 176.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.921315964399994, 47.192773287900003 ], [ -120.938415335599998, 47.194899606299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830, "random": 108.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.945000196699993, 48.163679703299998 ], [ -123.924409383899999, 48.154730365699997 ], [ -123.931758113599997, 48.1536438133 ], [ -123.929539981900007, 48.1451803052 ], [ -123.9164706989, 48.136571501200002 ], [ -123.8875301745, 48.136348665900002 ], [ -123.859788945399998, 48.14722078 ], [ -123.800128254599997, 48.139589319800002 ], [ -123.769069669299995, 48.139676945799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800, "random": 187.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.249830436700002 ], [ -117.229377774599996, 48.238971747699999 ], [ -117.214957211400005, 48.232692742200001 ], [ -117.144515819600002, 48.227617892399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260, "random": 113.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.937838489300006, 47.657930743599998 ], [ -117.937941742199996, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300, "random": 27.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.178109296299994, 48.472588289599997 ], [ -120.168691485899998, 48.4567062705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000, "random": 20.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.169896643900003 ], [ -122.163708641699998, 47.169319040799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200, "random": 113.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.889403680800001, 46.6634446901 ], [ -118.884038854300002, 46.662768880900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000, "random": 59.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.685113262599998, 47.848515193700003 ], [ -121.675429160199997, 47.8437264887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300, "random": 49.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.747204117300001, 46.790029089500003 ], [ -118.740366325, 46.791625482900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700, "random": 79.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.079909498199996, 48.924179648600003 ], [ -122.077280059299994, 48.924155999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700, "random": 53.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.700207955899998, 46.728203798599999 ], [ -120.694754548899994, 46.726677142600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900, "random": 15.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.450008249200003 ], [ -117.132012054800001, 47.4522702959 ], [ -117.127300859599998, 47.4454628501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900, "random": 6.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.545085984599993, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900, "random": 78.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.403136738900002 ], [ -119.512349200200006, 48.403682629400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000, "random": 35.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.436421814100001, 47.715439546799999 ], [ -117.437900821900001, 47.715449835400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000, "random": 55.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182057323600006, 47.709590182100001 ], [ -122.1889808432, 47.723609466200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300, "random": 98.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.710824323700002 ], [ -118.794121772400004, 47.7561814138 ], [ -118.733480595399996, 47.762334290200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500, "random": 74.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802603124800001, 46.376002249599999 ], [ -123.793654273499996, 46.376748832700002 ], [ -123.784936310800006, 46.3717532207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800, "random": 88.213 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.153541424099998, 47.711786608099999 ], [ -121.122913737800005, 47.717304702500002 ], [ -121.137841357100001, 47.724181647899997 ], [ -121.121011578500003, 47.7462420572 ], [ -121.094127007599994, 47.7457487872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000, "random": 52.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.681333363600004, 45.806361536300003 ], [ -122.688395438200004, 45.8215294532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000, "random": 58.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.568738831800005, 47.5884737405 ], [ -117.558935183800003, 47.595361529199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200, "random": 24.005 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.153525229400003, 45.636291317800001 ], [ -121.156170974700004, 45.649046365099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000, "random": 14.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.377964291200001 ], [ -122.243057082700005, 47.378057579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000, "random": 18.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.808962595200001, 46.976225300599999 ], [ -123.807636250900003, 46.977246300099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900, "random": 108.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.918289174700007, 47.267288911100003 ], [ -123.908246139200003, 47.295452563799998 ], [ -123.906519178300002, 47.332855418800001 ], [ -123.909559214599994, 47.346792407499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400, "random": 142.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.618472587699998, 46.893930868200002 ], [ -119.602185105700002, 46.890372220899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000, "random": 78.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903046981700001, 46.1632969984 ], [ -122.904291841900005, 46.1726255536 ], [ -122.899266838100004, 46.180291897499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000, "random": 20.28 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140080255399994, 47.814511612899999 ], [ -122.1281371157, 47.830633641600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000, "random": 128.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886834120299994, 47.987701528899997 ], [ -122.884867830700003, 47.987938207299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000, "random": 164.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.780145376699998 ], [ -122.579254389100001, 45.780262944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000, "random": 63.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.973281621500007, 46.70702645 ], [ -122.974771932400003, 46.711262675199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600, "random": 128.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.338960773400004, 48.548602804200002 ], [ -120.322374392399993, 48.543587961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000, "random": 72.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.176904797399999, 46.729513769 ], [ -117.170253539900003, 46.7278386224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000, "random": 136.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.468545392099998, 48.106190606399998 ], [ -123.465759248200001, 48.106460575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500, "random": 181.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.994685753699997, 47.197484103500003 ], [ -121.992391644899996, 47.199177298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800, "random": 171.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.947883190100001, 46.753357173300003 ], [ -122.937571908899997, 46.753909554400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000, "random": 61.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623797006700002, 47.463593822599996 ], [ -122.624560448099999, 47.475269707800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000, "random": 46.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329772653299997, 47.743695937799998 ], [ -122.329103704700003, 47.746905411100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000, "random": 59.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.781061765399997, 48.107655859499999 ], [ -122.778025327899996, 48.108358907499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000, "random": 188.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612448723499995, 47.766183538299998 ], [ -122.607158394, 47.772467209200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000, "random": 70.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370672134800003, 48.2410706967 ], [ -122.344383008400001, 48.239891315900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400, "random": 187.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.415857063199994, 47.425849765 ], [ -121.412787102400003, 47.422542421899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200, "random": 110.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087460968499997, 46.4153003586 ], [ -117.069154655, 46.419911749400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000, "random": 79.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.572463558899997, 46.625166001700002 ], [ -120.543664555099994, 46.622677312599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 46.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609634455600002, 48.493290848299999 ], [ -122.612626586600001, 48.493451127500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100, "random": 131.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.304460834899999, 48.339463458300003 ], [ -117.284409614099999, 48.3059359445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770, "random": 144.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.344182075500001, 46.736172435599997 ], [ -118.323169183600001, 46.743165071699998 ], [ -118.310434832400006, 46.756377710499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000, "random": 157.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247431142099998, 47.386713606199997 ], [ -122.249348690100007, 47.397617755600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000, "random": 47.31 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434200290299998, 47.159344943199997 ], [ -122.434170529799999, 47.162825656599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000, "random": 12.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.079868423600004, 46.8216532259 ], [ -123.076154776400003, 46.820639691700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160, "random": 150.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.557997059100003, 46.644559999499997 ], [ -118.549526725700005, 46.655378434 ], [ -118.544379813199996, 46.674259497900003 ], [ -118.529189422200005, 46.689391436299999 ], [ -118.527862787, 46.697937023 ], [ -118.528930961399993, 46.709283549 ], [ -118.547975839399996, 46.713458256899997 ], [ -118.547381969, 46.780265899100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300, "random": 59.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.487292380499994, 46.680124523300002 ], [ -120.482692837, 46.680783935599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000, "random": 159.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113000581700007, 48.151740135399997 ], [ -122.118752809200004, 48.164313309400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900, "random": 24.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.156594273899998, 47.654047759699999 ], [ -118.142086452399994, 47.654405452600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900, "random": 91.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.939261629200004, 46.382620523 ], [ -117.932211046700004, 46.398570912899999 ], [ -117.941360581799998, 46.406069642200002 ], [ -117.947913774300005, 46.422564267200002 ], [ -117.946966541400002, 46.4295031017 ], [ -117.958727449400001, 46.4507231244 ], [ -117.962632911, 46.468502493199999 ], [ -117.960982553899996, 46.487304485899998 ], [ -117.973472473599998, 46.499872626399998 ], [ -117.971224907800007, 46.509867260900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": null, "random": 178.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.109908886699998, 46.970152356699998 ], [ -119.042225635199998, 46.969683760899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000, "random": 65.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.235297938100004, 46.234123724200003 ], [ -119.215236535800003, 46.232174863799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": null, "random": 125.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.309497313199998, 47.105841174600002 ], [ -119.305279921700006, 47.108785126400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300, "random": 58.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.539695353699997, 48.0975545684 ], [ -123.535337776800006, 48.098941472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000, "random": 77.082 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207429610299997, 47.758988673600001 ], [ -122.194046084600004, 47.755353640700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100, "random": 182.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.936904906499997 ], [ -119.603123068399995, 45.9389260974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100, "random": 54.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281476550400001, 48.139959181099996 ], [ -122.282074030299995, 48.147754863700001 ], [ -122.289175401700007, 48.155283600700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000, "random": 137.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528486519099999, 48.4108456019 ], [ -119.528456185699994, 48.412367485300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000, "random": 7.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843229071500005, 47.447241419800001 ], [ -122.827259250400004, 47.454059906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800, "random": 62.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247022692499996, 48.503030819599999 ], [ -122.247228536, 48.504965103899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300, "random": 87.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.208860642800005, 46.733747506299999 ], [ -117.205906906199999, 46.733752018300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000, "random": 136.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.040221681899993, 47.405137523800001 ], [ -122.038411720799999, 47.408974487899997 ], [ -122.0506265625, 47.4234707779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500, "random": 180.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.361971859799993, 48.427754610500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100, "random": 109.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.058417653500001, 47.257382574 ], [ -121.062345597100006, 47.260573463699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000, "random": 107.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.258312819500006, 47.889540971800002 ], [ -122.257239849399994, 47.8906887228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000, "random": 170.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.109321064499994, 47.8989017492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000, "random": 117.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.261144368700002 ], [ -119.287813674800006, 46.259568700099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000, "random": 104.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.765303224099995, 47.063831071899997 ], [ -122.765114033100005, 47.0629504411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400, "random": 16.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.602009161799998, 46.657210274599997 ], [ -121.593992933400003, 46.667723986799999 ], [ -121.577172669600003, 46.675008162399998 ], [ -121.574877501800003, 46.6824470233 ], [ -121.578544731500003, 46.685708578700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000, "random": 18.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101223870799998, 46.205201664199997 ], [ -119.1061582106, 46.206095185800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000, "random": 189.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667648745600005, 47.568424242600003 ], [ -122.663594378, 47.570754986499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000, "random": 9.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649649797199999, 45.650423183699999 ], [ -122.649304439100007, 45.650350070899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800, "random": 136.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.092957843700006, 46.546111440499999 ], [ -117.105071092299994, 46.558843211300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920, "random": 60.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142671519100006, 48.777236292200001 ], [ -118.149771082599997, 48.787323916799998 ], [ -118.1606954688, 48.792579171100002 ], [ -118.161062147699994, 48.801349192399996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400, "random": 141.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256499768300003, 46.093037346400003 ], [ -118.252640320599994, 46.0995793775 ], [ -118.242096332900005, 46.1031326564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": null, "random": 189.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.282818381200002, 47.619376442899998 ], [ -119.261368236300001, 47.631497785199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610, "random": 111.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.658917247100007, 48.8590433627 ], [ -121.663029092499997, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.675440298599995, 48.865191048600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000, "random": 50.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.365807384299998, 47.7605601689 ], [ -117.367348161699994, 47.7688728977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100, "random": 6.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952249981600005, 46.7274803396 ], [ -122.952269366, 46.728964255699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000, "random": 188.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347632495900001, 48.563982262400003 ], [ -122.343703571600003, 48.5958995493 ], [ -122.346242833700003, 48.607025927800002 ], [ -122.354567975600006, 48.617470432600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": null, "random": 34.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.598347073400006, 47.562079282799999 ], [ -120.588995856500006, 47.556839945100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000, "random": 160.87 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249888866199996, 47.4623828171 ], [ -122.2408435002, 47.465256976900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300, "random": 160.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.854497924100002, 47.174925353799999 ], [ -120.816994486400006, 47.165445994899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700, "random": 87.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.904923274699996, 47.572494750300002 ], [ -121.8981135123, 47.571273361700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400, "random": 184.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.093399640200005, 48.181107116699998 ], [ -120.096475565, 48.196846776400001 ], [ -120.1071532972, 48.197688796500003 ], [ -120.128256094899996, 48.2086361697 ], [ -120.117478759899996, 48.231212465200002 ], [ -120.116185349099993, 48.249036687500002 ], [ -120.106171724600003, 48.2554318205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000, "random": 82.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123612070700005, 48.200278239399999 ], [ -122.121370892300007, 48.200256519299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100, "random": 47.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.077973130199993, 47.442965311 ], [ -117.039788959500001, 47.434903152399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810, "random": 11.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.533733565099993, 45.998403068800002 ], [ -121.554996926699999, 45.999801197700002 ], [ -121.563611498200004, 45.990116305199997 ], [ -121.583700345099999, 45.982602100100003 ], [ -121.588837556200005, 45.975811147599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": null, "random": 102.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.329880551900004, 47.173255506899999 ], [ -119.337592942, 47.182491657900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400, "random": 133.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.337683892399994, 48.054732999700001 ], [ -124.314971761699994, 48.058467795399999 ], [ -124.302801498899996, 48.067339551800004 ], [ -124.283146126800006, 48.069756569200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": null, "random": 41.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.076774006700006, 47.6417886706 ], [ -120.074763273399995, 47.641906708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700, "random": 144.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.037698168600002, 48.0703874967 ], [ -123.954577124599993, 48.075450517699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000, "random": 166.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282398509900005, 47.194193480700001 ], [ -122.281111013, 47.198441099599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100, "random": 93.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907074601299996, 46.190049258599998 ], [ -122.914296097499999, 46.200138842100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000, "random": 116.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552572928100005, 45.685580574500001 ], [ -122.55279656, 45.6913817983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": null, "random": 174.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.806099495699996, 48.093206145899998 ], [ -119.794473089500002, 48.098315156799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000, "random": 29.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510003080700002, 47.249038175899997 ], [ -122.511115720299998, 47.250253162900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700, "random": 165.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.481130804700001, 46.467320462700002 ], [ -117.472479664199994, 46.459484187100003 ], [ -117.467053922199995, 46.447064925699998 ], [ -117.444469186099994, 46.446626901400002 ], [ -117.431164983299993, 46.436213980399998 ], [ -117.420257639400006, 46.436042089499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300, "random": 153.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.660162054099999, 47.704564702799999 ], [ -122.654604637600002, 47.70607599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400, "random": 119.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955941604200007, 46.715546307300002 ], [ -122.957186697400005, 46.712643048799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000, "random": 20.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.181516434599999, 46.226705456 ], [ -119.146615172400004, 46.217968659900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000, "random": 8.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.146068995299999 ], [ -122.922241113200002, 46.146487239599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000, "random": 139.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320426351199998, 47.4439375555 ], [ -122.326823310600005, 47.455452040200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000, "random": 172.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.358081797099999 ], [ -122.3074304764, 47.361630322899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000, "random": 60.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.358060180499997 ], [ -122.085935890100004, 47.358074866599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800, "random": 158.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.733411255299998, 47.643483853100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000, "random": 62.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.448371310200002, 47.641008035600002 ], [ -117.449716718900007, 47.644309250900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000, "random": 165.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615658233700003, 47.716138798099998 ], [ -122.635316501199995, 47.7250143013 ], [ -122.6370291084, 47.732315224099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000, "random": 111.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300439660400002, 47.710521918399998 ], [ -122.299538563599995, 47.712054475400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200, "random": 135.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747539303799996, 46.209412533399998 ], [ -119.747620288500002, 46.214015703100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600, "random": 152.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434802071700005, 45.664913890199998 ], [ -122.429621236, 45.6621546541 ], [ -122.428884604199993, 45.654393977700003 ], [ -122.424404903500005, 45.650548964899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000, "random": 20.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.477758466899999 ], [ -122.321610488, 48.478041881499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900, "random": 8.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.993213695400001 ], [ -122.526471648200001, 45.9932175677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390, "random": 52.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.199232453899995, 47.177370832800001 ], [ -117.172200222699999, 47.181828016700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000, "random": 47.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.521938566900005, 47.258344291 ], [ -122.530788449400006, 47.258858195899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": null, "random": 87.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.546962332099994, 47.327187273600003 ], [ -119.498698481900007, 47.369072135099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500, "random": 10.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726153012200001, 48.955162657199999 ], [ -122.729995110700003, 48.962176777700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780, "random": 155.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.200650561700002, 47.125971467500001 ], [ -117.220439268500002, 47.120872 ], [ -117.231149710099999, 47.122069650199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400, "random": 22.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668283837900006, 48.1388517209 ], [ -119.663662453900002, 48.160481324099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000, "random": 199.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291840117899994, 48.435550659800001 ], [ -122.289184802099996, 48.435552414900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000, "random": 53.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353191655499998, 47.787208051500002 ], [ -117.351819382399995, 47.791903946399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500, "random": 44.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.419911749400001 ], [ -117.069332021600005, 46.421228217900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700, "random": 188.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.356402838199998, 47.8868367862 ], [ -124.356115536700003, 47.893767724699998 ], [ -124.364424330800006, 47.894831987300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100, "random": 37.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.161478036899993, 47.506903678 ], [ -124.200483022200004, 47.530399395899998 ], [ -124.222936962700004, 47.5343029792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000, "random": 42.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505958291699997, 45.675826886400003 ], [ -122.505932908, 45.672173066399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100, "random": 196.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.387790361200004, 46.886648408900001 ], [ -117.381710075699999, 46.890607102899999 ], [ -117.364914465300004, 46.890563387699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700, "random": 139.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.654254000899996, 47.836387341299996 ], [ -121.641825713900005, 47.834176160399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200, "random": 65.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.233183287899998 ], [ -122.899682500099999, 46.2497847546 ], [ -122.913101688699996, 46.263063801500003 ], [ -122.925089530199998, 46.2644933419 ], [ -122.923781125100007, 46.271508343100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900, "random": 177.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.250919281800002 ], [ -119.475223036800003, 46.251686108599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400, "random": 134.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.181781152799999, 46.731695621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000, "random": 79.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280950360700004, 48.235572681 ], [ -122.242300813300005, 48.238812016799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000, "random": 192.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.560843662600007, 47.642884424899997 ], [ -117.509427539, 47.643005397499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000, "random": 84.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.198441099599997 ], [ -122.2782598167, 47.202915207499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500, "random": 110.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.457284327500005, 46.270600365299998 ], [ -123.410991960900006, 46.261708922300002 ], [ -123.4005832438, 46.253119203700003 ], [ -123.394791245799993, 46.231576610899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100, "random": 147.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.367729826599998 ], [ -120.309728932499993, 46.365077469399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000, "random": 28.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.632101247500003 ], [ -122.323883246600005, 47.632698970699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200, "random": 25.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364164788300002, 46.874010902899997 ], [ -117.364993136400003, 46.874611063800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200, "random": 160.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507510958300003, 47.741638156500002 ], [ -117.507482687600003, 47.744381586199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300, "random": 195.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.745586975199998, 48.137285238700002 ], [ -123.734538853499998, 48.136053459400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000, "random": 122.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564733440400005, 47.498272492 ], [ -117.564729693399997, 47.498854207599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000, "random": 187.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674891777200003, 47.544020254700001 ], [ -122.670747021099999, 47.549449447400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700, "random": 181.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.178055343499999 ], [ -117.042666862199994, 48.178097309100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100, "random": 137.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.239504252499998, 48.831823512100001 ], [ -122.219542389099999, 48.827706554899997 ], [ -122.209602461599999, 48.821069883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300, "random": 104.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.904476184399996, 45.824738004899999 ], [ -120.874470869500001, 45.824429695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700, "random": 113.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923781125100007, 46.271508343100002 ], [ -122.921877134200003, 46.276283257400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000, "random": 76.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.478041881499998 ], [ -122.280194517799998, 48.492612765399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400, "random": 174.927 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054947732100004, 46.330246772899997 ], [ -124.054913420899993, 46.331157364600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600, "random": 31.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510934174799999, 47.622969177800002 ], [ -122.512970924499996, 47.623864315600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000, "random": 70.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.735008518699999, 47.515738177199999 ], [ -122.7222646763, 47.523320564599999 ], [ -122.713259493500004, 47.523971466399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140, "random": 119.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.224439920799995, 48.998115780500001 ], [ -118.223933752099995, 49.000114250300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000, "random": 185.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.134272394600004 ], [ -123.100207740599998, 47.126232692499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000, "random": 170.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664414851900005, 45.756639908099999 ], [ -122.670186995799995, 45.775331764199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300, "random": 145.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.171286162900003 ], [ -122.626200851199997, 48.183153552 ], [ -122.626686593800002, 48.190429204799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000, "random": 187.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326526705800006, 47.603443393299997 ], [ -122.330409308399993, 47.607952382599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700, "random": 130.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.822947646900005, 45.777179853299998 ], [ -120.822576432600002, 45.7876068164 ], [ -120.816935508100002, 45.795557156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590, "random": 189.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351060563499999, 46.307101177200003 ], [ -122.352797293799995, 46.296583677100003 ], [ -122.345537396200001, 46.293138434900001 ], [ -122.337001989, 46.304714286200003 ], [ -122.327803631699993, 46.307844081100001 ], [ -122.320873072699996, 46.303652442299999 ], [ -122.313153103, 46.306626277900001 ], [ -122.310008285199999, 46.300143160799998 ], [ -122.302261997399995, 46.297025635499999 ], [ -122.293837210299998, 46.300079688300002 ], [ -122.295182346, 46.306206869100002 ], [ -122.280729278600006, 46.311646972699997 ], [ -122.273189866799996, 46.303082327 ], [ -122.266298115500007, 46.301502894 ], [ -122.278922869900001, 46.303445798600002 ], [ -122.270593977499999, 46.287340526100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000, "random": 180.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.781179547199997 ], [ -117.407456154499997, 47.7875219182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000, "random": 192.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.694733022400001, 47.501473805 ], [ -117.684279966800005, 47.508587719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300, "random": 196.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.748303415500004, 48.995657530599999 ], [ -122.754702693599995, 49.000477059600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": null, "random": 134.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.885851000599999, 47.990264323799998 ], [ -119.883860723400005, 47.998745385600003 ], [ -119.895747200100004, 48.038517837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400, "random": 55.938 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.667125840599994, 48.119117447900003 ], [ -123.656102616499993, 48.118102910200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800, "random": 51.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.875069146900003, 46.241169451399998 ], [ -123.857446159700004, 46.251084458699999 ], [ -123.851433015300003, 46.260249697799999 ], [ -123.840213429399995, 46.262507367300003 ], [ -123.832579781099994, 46.2695656832 ], [ -123.816652754800003, 46.271283450200002 ], [ -123.807445187400006, 46.286089142100003 ], [ -123.8110220943, 46.292755949 ], [ -123.800581824800005, 46.304354306100002 ], [ -123.798028018799997, 46.329180811 ], [ -123.801002646599997, 46.334452709600001 ], [ -123.810426917100003, 46.3376105866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700, "random": 68.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.940825486899996, 45.666529629400003 ], [ -120.929771406499995, 45.665412162099997 ], [ -120.925640917099997, 45.6605136294 ], [ -120.895578058300003, 45.6660810678 ], [ -120.829286058400001, 45.694065406599996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000, "random": 69.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282889944499999, 47.185892098499998 ], [ -122.282398509900005, 47.194193480700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000, "random": 42.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.648673581899999 ], [ -120.528253126199999, 46.654039018799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000, "random": 59.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.671691275200004, 45.622917794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100, "random": 48.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.621722756699995, 48.059676954899999 ], [ -117.620433343599998, 48.059935189100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000, "random": 198.163 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.617583253099994, 46.9743856487 ], [ -123.608437708, 46.973359107199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100, "random": 145.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.904334281399997, 48.5465658408 ], [ -117.881992736800001, 48.547212818699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400, "random": 162.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.995102127199999, 48.529884678499997 ], [ -121.965112893599994, 48.524065543100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000, "random": 150.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950614760899995, 46.116489802300002 ], [ -122.943733583300002, 46.1159145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000, "random": 126.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688198335500005, 47.009027615599997 ], [ -122.669449984600007, 47.0015817743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200, "random": 135.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.194491271900006, 46.712316346400002 ], [ -117.182392328899994, 46.715330188400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000, "random": 155.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.891173255600002 ], [ -122.128272774199999, 47.8811551589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000, "random": 98.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199439421799994, 48.184232346199998 ], [ -122.207350378399994, 48.193054996800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90, "random": 42.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.308202455300005, 48.987334862 ], [ -117.300957911, 48.991489365699998 ], [ -117.299785418300004, 48.999809148499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500, "random": 26.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.465829961099999, 46.711097427799999 ], [ -120.449938789300006, 46.725476403 ], [ -120.452959759300001, 46.732866331399997 ], [ -120.447479879599996, 46.741750038900001 ], [ -120.458408863299994, 46.747923271499999 ], [ -120.455703188300006, 46.752654797700004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000, "random": 73.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902577135399994, 47.372295066600003 ], [ -123.888628473599994, 47.402682276900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000, "random": 10.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.069555480600002, 47.551632014200003 ], [ -122.051875352500005, 47.545388803500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100, "random": 145.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.072888972100003, 45.7937322728 ], [ -119.99534977, 45.823920287100002 ], [ -119.934621232300003, 45.835692303599998 ], [ -119.909311418599998, 45.835764298400001 ], [ -119.877972909600004, 45.841746087399997 ], [ -119.848685047, 45.8673243697 ], [ -119.827153834699999, 45.869699138900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500, "random": 30.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.130696857900006, 46.165415474500001 ], [ -118.139120139100001, 46.178478269700001 ], [ -118.136094057199998, 46.184593336600003 ], [ -118.137789048200005, 46.231021613599999 ], [ -118.153095305400001, 46.2591521015 ], [ -118.153247686300006, 46.270134871800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000, "random": 99.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.442298905900003 ], [ -122.378756131, 48.4364435691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300, "random": 30.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.212563024299996, 47.247972246800003 ], [ -124.222223573, 47.256667980400003 ], [ -124.241823402400001, 47.2957168744 ], [ -124.2808034862, 47.321448112500001 ], [ -124.288020639099997, 47.335912143500003 ], [ -124.285010407200005, 47.347029011300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000, "random": 76.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690131623900001, 47.579854202900002 ], [ -122.698740873399998, 47.5866961105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000, "random": 16.31 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569069800005, 47.846843594500001 ], [ -122.293168879500001, 47.850417256599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": null, "random": 86.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.985668490899997, 46.939923999500003 ], [ -119.961766615599998, 46.9450388749 ], [ -119.962360795400002, 46.955497291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000, "random": 180.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335443671899995, 48.490275393399997 ], [ -122.337050963199999, 48.503991479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600, "random": 15.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.493588994299998, 46.301316915 ], [ -119.493315447399993, 46.311516519900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000, "random": 179.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202427917799994, 47.372559331300003 ], [ -122.202404855500006, 47.3748567353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000, "random": 122.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293910744200005, 47.206571607400001 ], [ -122.293918658300001, 47.209493222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000, "random": 14.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.987460641699997, 47.627994798400003 ], [ -121.959372736399999, 47.6196353188 ], [ -121.9574628206, 47.613211520100002 ], [ -121.961543513799995, 47.60154051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400, "random": 79.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.465374470599997, 45.714393327700002 ], [ -121.462998099800004, 45.713505250099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900, "random": 97.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.399775561200002, 47.514428535900002 ], [ -117.393937328700005, 47.521223274699999 ], [ -117.396824529400007, 47.527430858599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000, "random": 38.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411341617700003, 47.7366272099 ], [ -117.411298272899998, 47.739633774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000, "random": 77.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.827797273100003, 47.386578722800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300, "random": 27.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.474404846900001, 48.964420136500003 ], [ -122.463166107899994, 48.964615040399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900, "random": 87.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.460686978599995, 47.952414175199998 ], [ -124.463115591800005, 47.940796587199998 ], [ -124.481716270099994, 47.930896701099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600, "random": 42.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.959928208899996, 47.199071826 ], [ -121.934698828799995, 47.192199706799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700, "random": 91.443 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.768640501500002, 48.011228311499998 ], [ -122.776669665699998, 48.013523673900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600, "random": 83.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196139648499994, 46.748677111699998 ], [ -122.193495728900004, 46.757317083099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000, "random": 199.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573335582699997, 47.802767164400002 ], [ -122.570692450600006, 47.803729114699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200, "random": 22.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143430620900006, 47.804831104 ], [ -122.137834511600005, 47.804839361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000, "random": 84.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.661054174599997 ], [ -122.130451733599998, 47.666130757799998 ], [ -122.122345378399999, 47.667181773700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200, "random": 61.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.469021541100005, 45.664782696 ], [ -122.434802071700005, 45.664913890199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100, "random": 44.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.174905591300003, 47.289039031 ], [ -123.157044219200003, 47.280328202200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500, "random": 120.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.719485383899993, 46.918204854899997 ], [ -123.713314280899993, 46.928964203900001 ], [ -123.670778448299998, 46.937560636199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000, "random": 136.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402639499800003, 47.780817988400003 ], [ -117.402846948, 47.780997213100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800, "random": 116.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.475259386899999 ], [ -122.865755115799999, 46.470908225099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000, "random": 146.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.277685793499998, 48.843534593299999 ], [ -122.255634568199994, 48.839046183599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000, "random": 80.874 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.473632489099998, 46.539386031900001 ], [ -120.470537695700003, 46.541032083600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": null, "random": 76.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.655618841500001, 47.474500767599999 ], [ -120.652862503600005, 47.482823007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000, "random": 87.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814658128900007, 46.974667433800001 ], [ -123.813512360700003, 46.975265630300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000, "random": 166.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.429078792699997, 47.2340191897 ], [ -122.434832094599997, 47.233171242200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800, "random": 5.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.732842367800004, 48.984169559599998 ], [ -122.748303415500004, 48.995657530599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000, "random": 48.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.598388599399996, 48.891661797600001 ], [ -122.602514984699994, 48.892054163399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": null, "random": 103.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.813702714100003 ], [ -119.977015037599998, 47.817024460699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000, "random": 30.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.638529037400005, 48.891709409500002 ], [ -122.704489392200003, 48.892193408899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400, "random": 88.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.775306882099997, 46.318841576600001 ], [ -122.762299791299995, 46.31964321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": null, "random": 94.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853366397299993, 47.2334497115 ], [ -119.835643111799996, 47.234027670400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000, "random": 186.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.892543258700002, 46.106806579699999 ], [ -122.878591007500006, 46.106773383099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000, "random": 186.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156531073599993, 47.505727264299999 ], [ -122.154518767300004, 47.506121499599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100, "random": 132.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.890796080300007, 46.301280442600003 ], [ -122.880352613300005, 46.306112660499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000, "random": 160.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044713133499997, 46.331198202 ], [ -124.005317905200002, 46.330929457499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700, "random": 38.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.876750402799999, 47.992102516499997 ], [ -122.859082226400005, 47.989908301900002 ], [ -122.837626119600003, 48.001758278899999 ], [ -122.830088621599998, 48.010798787200002 ], [ -122.830197864599995, 48.021011226699997 ], [ -122.819662877499994, 48.04931957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000, "random": 75.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322813391899999, 48.435726219899998 ], [ -122.317486779500001, 48.435666194200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000, "random": 8.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.815000193800003 ], [ -122.485965163399996, 48.833349154399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800, "random": 59.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495709623500005, 48.697630287400003 ], [ -122.488916339599996, 48.702409161 ], [ -122.499879326400006, 48.710301255700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900, "random": 77.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.387443636200004, 47.004675303699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000, "random": 87.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.513577041800005, 46.628489658200003 ], [ -120.500959157099999, 46.623267507500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000, "random": 19.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.157000635700001, 47.765024263 ], [ -122.150880994199994, 47.779603159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000, "random": 37.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207468784100001, 47.820115982099999 ], [ -122.2074577992, 47.821711911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000, "random": 166.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334422739100006, 47.441651558300002 ], [ -122.333948725900001, 47.447507310299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600, "random": 40.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319926556499993, 46.3750583048 ], [ -120.3201578547, 46.371338407499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000, "random": 6.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334493912699998, 48.337354783899997 ], [ -122.335932665900003, 48.347174658900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620, "random": 172.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497669879300005, 46.558356832400001 ], [ -122.4954759572, 46.5519074288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000, "random": 139.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431338853400007, 48.446287310700001 ], [ -122.413129962100001, 48.450215427099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600, "random": 11.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.848015462500001, 46.9435702245 ], [ -123.817306757200001, 46.9516445414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000, "random": 15.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486049226399999, 48.804308499100003 ], [ -122.486045841800006, 48.807775980499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000, "random": 198.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296379117300006, 47.386520195199999 ], [ -122.294752189299999, 47.3943368889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700, "random": 31.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729444855200001, 46.685617088800001 ], [ -123.729377121900001, 46.686629520799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000, "random": 120.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344589742099998, 47.702170326100003 ], [ -122.344621017700007, 47.705063887500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000, "random": 129.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186214256599996, 47.672270169299999 ], [ -122.185288907399993, 47.674292900899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000, "random": 107.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649304439100007, 45.650350070899997 ], [ -122.6469881652, 45.649510166799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200, "random": 71.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.822628386199995, 45.822990394900003 ], [ -120.812260239500006, 45.822992682799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480, "random": 136.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.308445228899998, 46.758407436 ], [ -118.292762753600002, 46.764096650699997 ], [ -118.286718814, 46.774083295099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100, "random": 67.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297200401500007, 46.953190535499999 ], [ -122.297950785699996, 46.980094485599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000, "random": 172.561 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229321239900003, 47.184349968100001 ], [ -122.229301542100004, 47.180660177199996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300, "random": 43.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.740655286700004, 46.778157634499998 ], [ -123.738474948, 46.794769198499999 ], [ -123.7460823296, 46.798760494200003 ], [ -123.7468410221, 46.804272677599997 ], [ -123.719861257900007, 46.829680921799998 ], [ -123.719344868899995, 46.842988622500002 ], [ -123.709325860899995, 46.860369718599998 ], [ -123.710861781600002, 46.867079880799999 ], [ -123.706218593200006, 46.8779876268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000, "random": 65.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411153862700004, 47.713375171899997 ], [ -117.4111252748, 47.7150977748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000, "random": 132.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.383322670299997 ], [ -122.221482003800006, 47.3825173806 ], [ -122.206509130100002, 47.372560948100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000, "random": 151.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287114971500003, 47.8209339215 ], [ -122.275545727899996, 47.820914372499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200, "random": 186.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.097893087100005, 47.657305852199997 ], [ -117.949387860200005, 47.658311021199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000, "random": 154.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.324938986899994, 47.527130547399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": null, "random": 183.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.300607207100001, 47.409654076099997 ], [ -120.302961090799997, 47.409563274699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000, "random": 92.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897607260699999, 46.140453967500001 ], [ -122.899867603100006, 46.1496842122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300, "random": 107.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.450888819400006, 48.973570904 ], [ -119.459484559, 48.995311748799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900, "random": 68.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.505479518300007, 47.758430550299998 ], [ -118.481714559400004, 47.7503088944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000, "random": 113.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.688858411699997 ], [ -123.731371050600004, 46.690374335400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000, "random": 64.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.712449603799996, 47.611406311800003 ], [ -122.709777343400006, 47.632488696099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": null, "random": 106.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.148957768100004, 47.762722774899999 ], [ -120.122256524199997, 47.768333715300002 ], [ -120.093945142199999, 47.761873328500002 ], [ -120.077111309399996, 47.762355573599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800, "random": 67.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.240646758099999, 48.402724443700002 ], [ -122.264357131599994, 48.430063418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": null, "random": 185.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853382887400002, 47.231885111 ], [ -119.853366397299993, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000, "random": 140.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.668125952899999 ], [ -120.517062986699997, 46.6712561513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000, "random": 121.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.845516085300005, 47.415535475 ], [ -122.846451108899998, 47.424603187199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000, "random": 41.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187256140599999, 48.152320979800002 ], [ -122.185756288500002, 48.152351143600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000, "random": 165.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631275782100005, 47.542736967899998 ], [ -122.626972580599997, 47.5417504284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": null, "random": 152.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.587783032100006, 47.556146923299998 ], [ -120.550170608499997, 47.5350150951 ], [ -120.513671577099998, 47.535619490199998 ], [ -120.489047915200004, 47.528097962300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000, "random": 26.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704142351399994, 45.644577060899998 ], [ -122.719519990600006, 45.649917745300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800, "random": 90.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.751462042399993, 48.988601174099998 ], [ -122.751644395400007, 48.9896016788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000, "random": 149.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298119690099995, 47.502022685199996 ], [ -122.303760564200005, 47.510609425299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700, "random": 165.731 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.293989290900001, 46.082369212300001 ], [ -118.273667244099997, 46.085029912499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300, "random": 175.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142801879199993, 48.773659770499997 ], [ -118.142671519100006, 48.777236292200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000, "random": 5.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310073364900006, 47.7339389204 ], [ -122.297844387, 47.733806907100004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100, "random": 25.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264987750200007, 48.999101576400001 ], [ -122.264959141099993, 49.000030960399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250, "random": 125.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251726872399999, 46.041729002700002 ], [ -117.251525721500002, 46.041766317099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000, "random": 110.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.668693546900002, 48.283922347400001 ], [ -122.666197776800004, 48.284130638100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000, "random": 133.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474802377900005, 46.589699519299998 ], [ -120.472033946300002, 46.574554882900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 59.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.398285650200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200, "random": 103.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.106282358499996, 46.849519700099997 ], [ -124.107970430400002, 46.858858882100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960, "random": 140.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.679498242500003, 46.361618515499998 ], [ -122.673496635199996, 46.361284465600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300, "random": 47.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431338853400007, 48.446287310700001 ], [ -122.428358999500006, 48.4448569455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000, "random": 162.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201456902100006, 47.194176953499998 ], [ -122.199021370899999, 47.184436357400003 ], [ -122.1869699983, 47.176977667300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000, "random": 103.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.948992860800004, 48.050272209600003 ], [ -122.924021202600002, 48.050093762 ], [ -122.878540130299996, 48.040559161300003 ], [ -122.867162067899997, 48.0307219954 ], [ -122.8622427496, 48.016476719099998 ], [ -122.863957586, 48.009572551600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700, "random": 100.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908506061500006, 46.146702232199999 ], [ -122.9093031811, 46.144613716499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000, "random": 112.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.765158587800002, 47.473214056700002 ], [ -121.748260992300004, 47.473255323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700, "random": 15.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.720699274200001 ], [ -122.202201079100007, 48.746018506699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000, "random": 194.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.127785851400006, 47.2236494996 ], [ -123.126591027299995, 47.200112170099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360, "random": 82.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.642228519900002 ], [ -118.552551361799999, 46.644788750300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600, "random": 67.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.939310191399997, 46.196885705 ], [ -119.917262878299994, 46.191692043800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250, "random": 178.345 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.699124298900003, 47.370913265299997 ], [ -118.692013021700006, 47.379163309900001 ], [ -118.683686833400003, 47.415365733500003 ], [ -118.712923261200004, 47.426961387 ], [ -118.774183369900001, 47.47212032 ], [ -118.784000054700002, 47.472842312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000, "random": 167.767 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.649510166799999 ], [ -122.634028489399995, 45.6462602442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200, "random": 35.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.348789402500003, 48.270258328799997 ], [ -124.346379688300004, 48.267524864899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400, "random": 188.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379606535099995, 47.811428451799998 ], [ -122.380348873100004, 47.809725424200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300, "random": 135.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.487987734300006, 48.674750813800003 ], [ -122.495709623500005, 48.697630287400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200, "random": 43.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385447165200006, 47.948955410099998 ], [ -124.385422505199998, 47.9505814332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000, "random": 99.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198250392399999, 47.447197230199997 ], [ -122.201270292199993, 47.448793830500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300, "random": 157.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625942597700003, 46.931430109600001 ], [ -122.620784164200003, 46.934374699400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800, "random": 167.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741461706699994, 48.054927261899998 ], [ -117.741382096899997, 48.056948228099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700, "random": 143.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.191242888199994, 47.242935812799999 ], [ -123.177700826099993, 47.252309208900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800, "random": 169.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385518978199997, 45.582108216400002 ], [ -122.385791668799996, 45.580608216400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600, "random": 189.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321912505200004, 48.920192245499997 ], [ -122.321748363099999, 48.934759017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000, "random": 8.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.878180766299998 ], [ -122.203649239900002, 47.8781466533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000, "random": 108.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111652555800006, 48.091880012300003 ], [ -122.113000581700007, 48.151740135399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980, "random": 14.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.289666681599996, 45.697135679500001 ], [ -121.265757964399995, 45.711153535199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000, "random": 54.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.887483816100001, 46.446560103400003 ], [ -122.883989153599998, 46.470894437200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100, "random": 169.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.025496558200004, 46.176554459099997 ], [ -123.015518639700005, 46.171407070599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100, "random": 9.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.871835006699996, 46.234767102799999 ], [ -123.875069146900003, 46.241169451399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200, "random": 103.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.425480768499995, 46.2734329699 ], [ -119.400146886499996, 46.2808655483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000, "random": 84.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.339444431899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000, "random": 55.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.423954462799998 ], [ -122.335452365600005, 47.433953091600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500, "random": 75.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.957186697400005, 46.712643048799997 ], [ -122.957660988499995, 46.7115370036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000, "random": 33.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.243057706499997 ], [ -122.349936357600001, 47.243030334799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000, "random": 81.089 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588445244300004, 48.8674825234 ], [ -122.588656535200002, 48.885036555799999 ], [ -122.591845204199998, 48.889032620599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900, "random": 139.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811811120300007, 46.365574241 ], [ -123.802603124800001, 46.376002249599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400, "random": 120.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.912557676899993, 46.099909023800002 ], [ -118.907754209299995, 46.0783797271 ], [ -118.909947142199997, 46.058308654699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500, "random": 46.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.079932052299995, 46.911435068899998 ], [ -117.078564578300004, 46.916863749100003 ], [ -117.088242708099997, 46.922427921100002 ], [ -117.088840978700006, 46.92764545 ], [ -117.100853582900001, 46.939439698900003 ], [ -117.089517337299995, 46.952695673299999 ], [ -117.091558463699997, 46.962297936500001 ], [ -117.106181593599999, 46.9621618746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000, "random": 49.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960202830200004, 47.0399823411 ], [ -122.947829976099996, 47.035821079100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": null, "random": 6.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.262067483300001, 47.638792737300001 ], [ -119.2528967959, 47.648337193300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100, "random": 114.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688859129400001, 46.888362931400003 ], [ -122.677566838800004, 46.898679828799999 ], [ -122.653175096499993, 46.907216632699999 ], [ -122.625942597700003, 46.931430109600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000, "random": 150.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682461222599997, 47.527847209699999 ], [ -122.685128998600007, 47.527235927900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000, "random": 89.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.419560291500005, 47.652634740700002 ], [ -117.415831441, 47.652657702600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000, "random": 50.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346227490700002, 47.777795554199997 ], [ -122.345578705600005, 47.780681488900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500, "random": 30.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704647052599995, 46.575601790199997 ], [ -122.693336633499996, 46.576760556799996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000, "random": 197.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.928033390699994, 47.189314567899999 ], [ -120.9071870107, 47.184801595899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210, "random": 180.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.691379497599996, 47.2616081181 ], [ -118.690909899700003, 47.275779749199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200, "random": 21.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.106181593599999, 46.9621618746 ], [ -117.120126662299995, 46.971134931800002 ], [ -117.120109916499999, 46.978540374 ], [ -117.126189047500006, 46.982384562 ], [ -117.124753048399995, 46.988998379100003 ], [ -117.133198237800002, 46.9962242171 ], [ -117.133319862099995, 47.006823296900002 ], [ -117.142039298100002, 47.007076338799997 ], [ -117.143037231799994, 47.013949521800001 ], [ -117.149085764800006, 47.018058777699999 ], [ -117.145822696300002, 47.024883235200001 ], [ -117.153145931200001, 47.029842948800002 ], [ -117.154559089200006, 47.039676186900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200, "random": 49.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.755786355400005, 46.7871441721 ], [ -118.740215335200006, 46.796289770800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000, "random": 6.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.101902878499999, 47.463429943 ], [ -123.115033679899994, 47.462147459299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500, "random": 32.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.987643918900005, 47.202569875 ], [ -121.984257470599999, 47.200949296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": null, "random": 125.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.948540106799996, 47.015559494599998 ], [ -119.939367330300001, 47.026315604300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000, "random": 154.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.426290922600003, 47.225964252 ], [ -122.427658785600002, 47.228320779900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200, "random": 44.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.363705522499998, 46.879882787699998 ], [ -117.346081624799993, 46.8885837829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000, "random": 37.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.258386957400006, 47.8454224344 ], [ -122.252009338299999, 47.857141929100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000, "random": 101.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.324644617899999 ], [ -122.604669340599997, 47.337400484 ], [ -122.612537009, 47.354407756500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220, "random": 43.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.192879460900002, 47.478116615700003 ], [ -118.250105687200005, 47.4783678971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600, "random": 149.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.994043556799994, 47.223727202900001 ], [ -121.000623798800007, 47.225756175800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000, "random": 21.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709870923099999, 48.252375046899999 ], [ -122.699315561399999, 48.259360944199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100, "random": 85.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.674267565099996, 48.519739794400003 ], [ -120.656283470700004, 48.524243667199997 ], [ -120.642462817899997, 48.514664508300001 ], [ -120.645728382200005, 48.5241251482 ], [ -120.630991237800004, 48.548929906399998 ], [ -120.635335244199993, 48.562586263299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": null, "random": 138.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490023690499996, 47.608153128700003 ], [ -119.463563905100003, 47.619693369099998 ], [ -119.405551403199993, 47.6207224415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000, "random": 146.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914223824800004, 46.952800067 ], [ -122.928973282499996, 46.952792743899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000, "random": 122.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326926969300004, 47.529118855599997 ], [ -122.332482108500002, 47.534523388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000, "random": 116.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347331628500001, 47.652771084299999 ], [ -122.347271149400001, 47.653986720200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200, "random": 57.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.207861427400005, 46.811573174300001 ], [ -119.197493669699995, 46.811423551700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370, "random": 134.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710111471299996, 47.757920299600002 ], [ -118.709147899900003, 47.759454432799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000, "random": 55.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.562387903599998, 47.115388587399998 ], [ -122.552696417299998, 47.121026171899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000, "random": 8.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351939517100007, 48.916026991700001 ], [ -122.347169334100002, 48.919529469799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800, "random": 111.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.346819229800005, 47.670965818100001 ], [ -117.344680786799998, 47.671728963900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000, "random": 62.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.346235717300004, 48.421707577399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500, "random": 156.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.294364747900005, 46.578394847399998 ], [ -123.285299971599997, 46.585682634100003 ], [ -123.275877446, 46.601635138100001 ], [ -123.274118186400003, 46.620403917600001 ], [ -123.279970455099999, 46.629098702900002 ], [ -123.251494599200001, 46.630101903400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700, "random": 171.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.347624507399999, 48.055953127199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700, "random": 157.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690592520199999, 47.504065769900002 ], [ -117.692970777599996, 47.5042331597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900, "random": 162.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.950269737399999 ], [ -117.331775249499998, 46.959163964399998 ], [ -117.322818839500002, 46.967879378500001 ], [ -117.324149951099997, 46.973314033699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000, "random": 122.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.024659802599999, 47.644263262 ], [ -122.010361091899995, 47.639842481800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000, "random": 172.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.322505603700002 ], [ -122.354854885099996, 47.323674358600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100, "random": 106.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692231093100006, 47.333315666600001 ], [ -118.678249238600003, 47.332770853600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": null, "random": 117.757 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.131032577399999 ], [ -119.277783324799998, 47.131652171799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100, "random": 10.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.980184742099993, 48.091167015099998 ], [ -121.979611987799998, 48.090995406899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000, "random": 105.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.046769006600002, 47.190672131600003 ], [ -121.038355446799997, 47.182166446799997 ], [ -121.007230255699994, 47.1840617967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200, "random": 156.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.664030351799994, 46.187236132099997 ], [ -119.702656278800006, 46.187511225199998 ], [ -119.705876784599994, 46.190218696099997 ], [ -119.706586938100003, 46.205078869499999 ], [ -119.716955895, 46.1992803057 ], [ -119.727638469300004, 46.208586048599997 ], [ -119.742631921599994, 46.20699312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000, "random": 185.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260355003699999, 47.8200633469 ], [ -122.254854845, 47.825197281100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000, "random": 131.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.445297398199997, 48.7767299988 ], [ -122.430273952899995, 48.782618922300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000, "random": 83.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.834496190699994, 47.4399094921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000, "random": 34.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.482808032700007, 47.717963365300001 ], [ -117.489909530399999, 47.721909145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000, "random": 45.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.995992353700004, 46.561228338900001 ], [ -118.985089341, 46.573222517700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300, "random": 82.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.591078218299998, 48.349487973 ], [ -119.564575694300004, 48.367474039699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800, "random": 151.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223579115199996, 47.616455505799998 ], [ -117.223590741300001, 47.620646532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000, "random": 104.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232938177099996, 47.303522884400003 ], [ -122.227424004400007, 47.30291529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620, "random": 18.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730232978100005, 48.634915810899997 ], [ -118.734073830100002, 48.640476501099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": null, "random": 44.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.091568875699998 ], [ -119.134440507700006, 47.088984407700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000, "random": 187.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.051875352500005, 47.545388803500003 ], [ -122.041144706599994, 47.542865930700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000, "random": 110.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.165440596500005, 47.358027944100002 ], [ -122.161550008099994, 47.357992697299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100, "random": 150.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.679254322399999, 48.501561491799997 ], [ -122.678125457199997, 48.506689568200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": null, "random": 51.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228219080299993, 47.619337377400001 ], [ -120.227703042800002, 47.624133213699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620, "random": 184.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377077820300002, 46.155161435 ], [ -123.376808335, 46.160080238399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": null, "random": 128.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.342171066899994, 47.933953057300002 ], [ -119.269229067799998, 47.949993130099998 ], [ -119.182919095299994, 47.975983726400003 ], [ -119.116579822199995, 47.973212309799997 ], [ -119.044526764699995, 47.980223996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700, "random": 42.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.714130412800003 ], [ -121.736603192399997, 45.698763389600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700, "random": 114.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.829348175700005, 45.7148576644 ], [ -121.792484011300004, 45.716168026200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000, "random": 23.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294069570399998, 47.160493451299999 ], [ -122.295977065599999, 47.161081479099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000, "random": 172.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373428712899994, 47.025255627900002 ], [ -122.395343726899995, 47.050702173600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700, "random": 34.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.920396291100005, 47.682901991 ], [ -121.936574460800003, 47.687389638399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": null, "random": 34.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.102554608299997 ], [ -119.685372148200003, 48.104020449099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800, "random": 99.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.259541705700002, 48.249031188 ], [ -124.255117614699998, 48.243497388599998 ], [ -124.25782102, 48.235749494700002 ], [ -124.248701245700005, 48.213043931800001 ], [ -124.249669383, 48.206221953 ], [ -124.233746447800002, 48.1994776202 ], [ -124.216417290199999, 48.183723047900003 ], [ -124.214900463899994, 48.176768044100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": null, "random": 151.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.743242646599995, 48.076781011599998 ], [ -119.780711497, 48.084428763399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000, "random": 164.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.081556476599999, 47.3772542241 ], [ -122.051516255099997, 47.391659997799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": null, "random": 144.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.650674805500003, 47.991201863400001 ], [ -119.656563119799998, 47.9990210152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500, "random": 196.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364248234599998, 46.889589876499997 ], [ -117.360091659199995, 46.897778200200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000, "random": 40.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.286498895299999, 48.155695823199999 ], [ -122.244986940100006, 48.156605492600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100, "random": 184.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475223036800003, 46.251686108599998 ], [ -119.471913238300004, 46.252522673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000, "random": 98.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.628745336400002, 46.478021616299998 ], [ -117.605679964900006, 46.474828890700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": null, "random": 64.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.787897360599999, 47.764215841499997 ], [ -120.773033534600003, 47.767278769800001 ], [ -120.746654179499998, 47.763538214299999 ], [ -120.739399423699993, 47.756380132700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400, "random": 192.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356201937600005, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300, "random": 9.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.840788556200003 ], [ -123.2217410927, 46.8391963722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000, "random": 73.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.105537798300006, 47.997887191499998 ], [ -122.106375590599995, 48.003220730300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000, "random": 111.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.037604776699993, 47.3579773831 ], [ -122.027992805500006, 47.359680347900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000, "random": 54.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.821183169599998 ], [ -122.297804080899994, 47.8210601157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000, "random": 19.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427613443799999, 47.1581515823 ], [ -122.406884499699999, 47.158958883700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000, "random": 80.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.464867018099994, 47.234548287499997 ], [ -122.472210814600004, 47.235116731600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000, "random": 172.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899867603100006, 46.1496842122 ], [ -122.901294042700002, 46.153556146900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000, "random": 10.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217875041900001, 47.467115633500001 ], [ -122.217877603399998, 47.4696365374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710, "random": 151.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.056749767100001 ], [ -122.696519453299999, 48.061245007099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000, "random": 195.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.366358296100003, 47.821482107900003 ], [ -122.364278768800006, 47.821506704400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000, "random": 164.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.644148320200003, 47.642923887800002 ], [ -117.603896853600006, 47.6429304571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200, "random": 89.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.734938343799996, 48.989098350900001 ], [ -122.734957906099993, 48.990539037799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900, "random": 131.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364903450300005, 46.877276230200003 ], [ -117.364816528700004, 46.879029799500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000, "random": 64.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137654272099994, 47.981326184399997 ], [ -122.121769870700007, 47.994857270600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": null, "random": 28.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117929867499996, 46.984670877500001 ], [ -119.118580357699997, 46.992286446 ], [ -119.1257014177, 46.999039541099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000, "random": 152.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.470989273200004, 46.584876290399997 ], [ -120.467404367699999, 46.5847787764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000, "random": 150.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671705466099993, 48.941482030899998 ], [ -122.720192553399997, 48.972556366299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700, "random": 123.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.882889924699995, 47.954483349299998 ], [ -122.886536485, 47.946045573299997 ], [ -122.885330176300002, 47.913927091600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900, "random": 23.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181781152799999, 46.731695621 ], [ -117.180984819399995, 46.730694767199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600, "random": 129.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.141675486099999, 45.591480020900001 ], [ -122.032032014600006, 45.6195630227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100, "random": 124.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.198122559400005, 47.209654990099999 ], [ -124.212152107500003, 47.231032798699999 ], [ -124.214479951900003, 47.238986616600002 ], [ -124.209016989299997, 47.243407156400004 ], [ -124.212563024299996, 47.247972246800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": null, "random": 61.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297025515100003, 47.511100222800003 ], [ -120.297223348299994, 47.513955855399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990, "random": 132.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.048097541100006, 46.302051926899999 ], [ -124.043770745100005, 46.303261111499999 ], [ -124.044727134499993, 46.308126455599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000, "random": 158.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.627228668900003, 46.976553239399998 ], [ -123.617583253099994, 46.9743856487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000, "random": 96.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.659302034500001 ], [ -122.299961998800001, 47.660377680700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000, "random": 35.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.514687829300001, 48.101668274700003 ], [ -123.503821823500004, 48.102754873599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000, "random": 124.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.646332902200001, 47.565068923399998 ], [ -122.643780328399998, 47.565060084300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200, "random": 28.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.635335244199993, 48.562586263299998 ], [ -120.624742220200005, 48.581611522800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000, "random": 163.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345113336899999, 47.734153058499999 ], [ -122.345252791700005, 47.741452447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660, "random": 199.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.913818841199998 ], [ -124.581639639900004, 47.917669780399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000, "random": 78.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302810058600002, 47.929817519099998 ], [ -122.306318668, 47.933030505200001 ], [ -122.305106573299994, 47.943574850099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": null, "random": 72.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.101776099600002 ], [ -119.251785278900002, 47.1061646856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000, "random": 125.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.103607615800001 ], [ -122.207819198600006, 47.09966335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000, "random": 87.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.640386359700003, 45.712503753900002 ], [ -122.653858604500002, 45.722849267100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": null, "random": 45.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.479148192699995, 47.369122823700003 ], [ -119.483207461299997, 47.3815237106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100, "random": 183.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322313601900007, 48.340974526 ], [ -122.312772597600002, 48.340779633499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000, "random": 134.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.967097065800004, 46.649895724 ], [ -122.976871810800006, 46.656330602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900, "random": 31.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.431723711900005, 48.118274773099998 ], [ -123.429972983599995, 48.117565995200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": null, "random": 160.385 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436268802900003, 47.572640579800002 ], [ -119.402481413299995, 47.5956212233 ], [ -119.383187235500003, 47.596946528099998 ], [ -119.332058296699998, 47.626482681200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980, "random": 190.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254619604499993, 47.483794136199997 ], [ -118.254686200500004, 47.485610696400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000, "random": 139.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.435892029900003 ], [ -122.325733290200006, 48.435758576600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000, "random": 195.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231061585399999, 47.379822712200003 ], [ -122.231066910699994, 47.381651080899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000, "random": 55.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315042102800007, 47.158578655 ], [ -122.298407559699996, 47.160127157200002 ], [ -122.296589390400001, 47.169780002099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000, "random": 7.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278134291900002, 47.503810530099997 ], [ -122.2798420437, 47.505773472500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000, "random": 172.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297946799100004, 47.261963874400003 ], [ -122.308076516400007, 47.275568560899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000, "random": 158.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.505773472500003 ], [ -122.284413691400005, 47.511800325499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900, "random": 90.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174511757399998, 47.576419745199999 ], [ -122.176526323399997, 47.583935181100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000, "random": 141.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.425146652500004, 48.786557197400001 ], [ -122.415699133900006, 48.794193523300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000, "random": 166.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.367891931399996, 48.654517081400002 ], [ -122.373754085399995, 48.667369821299999 ], [ -122.392959171699999, 48.676777316299997 ], [ -122.395917154599999, 48.686673301799999 ], [ -122.407309262599995, 48.690169743399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700, "random": 116.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.730817493900005, 45.655963797 ], [ -122.743899810299993, 45.669430911699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000, "random": 195.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.215332571199994, 47.214509543600002 ], [ -118.115096241100005, 47.244354989400001 ], [ -118.082052294199997, 47.257865115199998 ], [ -118.023491591799996, 47.2986486916 ], [ -117.976408319699999, 47.306520851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000, "random": 16.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.511115720299998, 47.250253162900002 ], [ -122.515075674499997, 47.256877502199998 ], [ -122.521938566900005, 47.258344291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000, "random": 155.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486078625499999, 48.784378007400001 ], [ -122.486004744400006, 48.795206026899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000, "random": 36.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.964072776199998, 47.312061945700002 ], [ -117.913429381499995, 47.336114276700002 ], [ -117.879740662399996, 47.369764059799998 ], [ -117.845044421899999, 47.392821286699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000, "random": 130.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.840044763199998 ], [ -122.288664435200005, 48.843341019900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": null, "random": 198.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.591499650299994, 47.005676041599997 ], [ -120.589636086599995, 47.005992688100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800, "random": 193.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.412508613300005, 47.418857502400002 ], [ -121.411428730899999, 47.405602473 ], [ -121.398139108899997, 47.395175907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000, "random": 64.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883989153599998, 46.470894437200002 ], [ -122.880379792400007, 46.482924602099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000, "random": 14.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.811246994599998, 46.296957639399999 ], [ -122.798851736299994, 46.3024562624 ], [ -122.794617451799994, 46.311135123900002 ], [ -122.775306882099997, 46.318841576600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000, "random": 30.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.033489674500004, 47.383822299599998 ], [ -122.045389357700003, 47.390333093300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000, "random": 167.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.018297171699999, 47.341006772299998 ], [ -122.019444770600003, 47.354386546299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700, "random": 14.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.205514688400001 ], [ -122.659076343699994, 48.208690553399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000, "random": 137.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292406555300005, 47.820973150699999 ], [ -122.292350839099996, 47.817337438599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400, "random": 21.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.158562931299997, 47.042143090300002 ], [ -124.1580458631, 47.044601999400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": null, "random": 173.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.300634945400006, 47.424903109799999 ], [ -119.276295148700001, 47.427504391500001 ], [ -119.259466273499996, 47.425004990399998 ], [ -119.21615798, 47.432584836 ], [ -119.158737554499993, 47.419138251900002 ], [ -119.132821385499994, 47.418328842900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000, "random": 195.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485438928199997, 48.935124034799998 ], [ -122.485447935, 48.939132261799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000, "random": 103.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255900186800005, 47.246006102899997 ], [ -122.259303365400001, 47.257024668299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700, "random": 187.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.524710521700001, 48.585216161399998 ], [ -119.508790073300005, 48.612612715200001 ], [ -119.474010406100007, 48.644148752900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000, "random": 166.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197061164900006, 47.422016212400003 ], [ -122.196962788500002, 47.441505653500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000, "random": 38.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269938081700005, 47.670837953899998 ], [ -122.263980777200004, 47.675082619299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000, "random": 31.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609635826599998, 47.534003386099997 ], [ -122.601757504, 47.533987933100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000, "random": 163.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.725374037199998, 47.067929690100001 ], [ -122.709003421099993, 47.069723781599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000, "random": 182.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.616370594100005, 45.647869762200003 ], [ -122.610708492499995, 45.647880158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000, "random": 127.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244249076299994, 47.385615921800003 ], [ -122.231398764900007, 47.396166360400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200, "random": 23.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007894310200001, 46.211723726800003 ], [ -118.971631410100002, 46.2117605619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700, "random": 84.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.512349200200006, 48.403682629400002 ], [ -119.519587863200002, 48.4074511711 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200, "random": 38.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192044511299997, 46.763148214899999 ], [ -122.11013683, 46.753453195299997 ], [ -122.030912055399995, 46.758700120299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000, "random": 117.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.278115035200003, 46.258741845099998 ], [ -119.248590292599999, 46.260915772899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000, "random": 110.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.032670722299997, 47.085083518799998 ], [ -123.020834266600005, 47.078057988899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000, "random": 151.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.315006217600001, 46.380740113900004 ], [ -120.315010283700005, 46.3792337657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100, "random": 31.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.490097050299994, 46.841035463099999 ], [ -117.485569689, 46.846203803100003 ], [ -117.472855002599999, 46.848499236499997 ], [ -117.449174040700001, 46.862006864500003 ], [ -117.422903828399996, 46.865651362800001 ], [ -117.3996057791, 46.874945813099998 ], [ -117.387790361200004, 46.886648408900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": null, "random": 51.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.093027113299996, 47.839093077199998 ], [ -120.089820147799998, 47.839707846700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400, "random": 113.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.030464217800002, 46.1645370289 ], [ -123.026166157099993, 46.162222024899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000, "random": 50.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.116764399600001, 48.151631423700003 ], [ -122.113042958099996, 48.151495118200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400, "random": 189.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.142984832899998, 47.505758847899997 ], [ -122.141418465699999, 47.506199375599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100, "random": 54.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190408600699996, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000, "random": 13.616 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234841367100003, 47.588418258 ], [ -122.220352926700002, 47.582451626400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300, "random": 134.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.805370855600003, 45.826504570600001 ], [ -120.803937911800006, 45.826466493799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000, "random": 31.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.483975944600004, 47.158948731 ], [ -122.472532295199997, 47.170111582799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000, "random": 48.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.652939327799999, 48.369485278299997 ], [ -122.651197780100006, 48.3765935554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000, "random": 177.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335452365600005, 47.433953091600003 ], [ -122.334422739100006, 47.441651558300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000, "random": 198.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.483284069700005, 48.782474480200001 ], [ -122.495889545400004, 48.783500549099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700, "random": 125.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174249895399996, 47.386765967199999 ], [ -117.173724844299997, 47.422916251300002 ], [ -117.150480259600002, 47.430404979599999 ], [ -117.142610203100006, 47.437815548300001 ], [ -117.142135434799997, 47.4475636134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000, "random": 93.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334332897300001, 47.734144514599997 ], [ -122.328924299099995, 47.734101792600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900, "random": 96.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.556012713800001, 46.475141642799997 ], [ -117.481130804700001, 46.467320462700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100, "random": 116.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482170985500005, 46.678401852699999 ], [ -120.482692837, 46.680783935599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": null, "random": 187.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.708024373599997, 47.203648771300003 ], [ -120.698400881, 47.209642341 ], [ -120.700699732900006, 47.215577636 ], [ -120.694781049100001, 47.236991933100001 ], [ -120.697644300899995, 47.243371084800003 ], [ -120.692343656399999, 47.250618917799997 ], [ -120.701112210299996, 47.298624756899997 ], [ -120.695750097499996, 47.304468245199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000, "random": 94.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.531588126099997 ], [ -122.017149371100004, 47.533899271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000, "random": 168.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629176730099999, 47.602542402200001 ], [ -122.628891718899993, 47.606866331900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000, "random": 180.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.323599047100004, 48.097567697800002 ], [ -123.298724590700004, 48.096108532499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650, "random": 109.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726748559900003, 46.437357559500001 ], [ -122.717766014299997, 46.430033826600003 ], [ -122.708209588200006, 46.429779552600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000, "random": 186.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292350839099996, 47.817337438599999 ], [ -122.292335809600004, 47.816111394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000, "random": 36.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667631105300003, 47.654718396200003 ], [ -122.675936023800006, 47.659448765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820, "random": 49.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.168613105199995, 48.592225908400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900, "random": 96.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054448335299995, 46.341189423 ], [ -117.055967899899997, 46.341815561799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000, "random": 9.024 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274684021200002, 48.273037025599997 ], [ -122.312425316399995, 48.305289375900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000, "random": 99.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.494389272800007, 45.589055721699999 ], [ -122.479857033800002, 45.585751721199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000, "random": 40.049 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.108407210500005, 47.919607097499998 ], [ -122.107704590799997, 47.928863465200003 ], [ -122.100879718, 47.9337909869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000, "random": 144.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246127238300005, 46.240989423400002 ], [ -119.235297938100004, 46.234123724200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100, "random": 46.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076818303500005, 46.908707466800003 ], [ -117.076752340900001, 46.909721281499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": null, "random": 84.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.495989393100004, 46.923752129199997 ], [ -120.430333448, 46.888163857599999 ], [ -120.421200501900003, 46.872488978100002 ], [ -120.399685686200002, 46.861410143599997 ], [ -120.392986140800005, 46.850372226799998 ], [ -120.3829623596, 46.845944419399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000, "random": 32.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217459721400004, 47.297124874700003 ], [ -122.1920375216, 47.288368397699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200, "random": 135.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.928703781500005, 47.060152495700002 ], [ -123.930280839700004, 47.061828455200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000, "random": 62.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899190315699997, 46.144094870899998 ], [ -122.898255787099998, 46.144421575199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800, "random": 130.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.364424330800006, 47.894831987300002 ], [ -124.380610664900004, 47.8957632885 ], [ -124.3925708525, 47.907732108799998 ], [ -124.4096776218, 47.9282853343 ], [ -124.401783262500004, 47.934588286900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000, "random": 15.721 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.396041911699996, 47.002634929 ], [ -123.391268319600002, 47.004069776800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100, "random": 21.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.000623798800007, 47.225756175800001 ], [ -121.002991199700006, 47.22593134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600, "random": 137.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.434299490300006, 47.304822344400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000, "random": 28.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.690459375499998, 46.973761333699997 ], [ -123.6476283043, 46.976564048599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500, "random": 76.842 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.346379688300004, 48.267524864899997 ], [ -124.306414616599994, 48.261716417199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800, "random": 14.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436673530199997, 48.948907181300001 ], [ -119.4441638638, 48.956316748600003 ], [ -119.450888819400006, 48.973570904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000, "random": 64.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741565261700003, 45.906180137500002 ], [ -122.742501081900002, 45.905662710400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100, "random": 110.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.607613926300004, 47.472278094 ], [ -117.596764177200001, 47.476342927099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900, "random": 92.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.981077636899997, 45.663863346 ], [ -120.954162518299995, 45.662902425299997 ], [ -120.940825486899996, 45.666529629400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270, "random": 121.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.974306665299999 ], [ -118.6636857174, 46.999816557599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": null, "random": 37.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.605898204900001, 47.244359302399999 ], [ -119.600328075299998, 47.249977530700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": null, "random": 107.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.035163557299995, 47.085426001800002 ], [ -118.881472127500004, 47.086916141899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000, "random": 150.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373695657499994, 47.795196513100002 ], [ -122.370072911299999, 47.792450454899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300, "random": 177.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336470433499997, 48.421250475100003 ], [ -122.336148263300004, 48.417507714499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000, "random": 38.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210984360099999, 47.877210461899999 ], [ -122.206978686499994, 47.878310343700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800, "random": 121.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.808398297399997 ], [ -122.570692450600006, 47.803729114699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900, "random": 106.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295683874600002, 46.910147070800001 ], [ -122.281615102200007, 46.925646623799999 ], [ -122.283671996699994, 46.935493017 ], [ -122.280667169599994, 46.940053463399998 ], [ -122.297200401500007, 46.953190535499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": null, "random": 113.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.903180645099994, 48.0520592106 ], [ -119.899717106, 48.055065723799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000, "random": 41.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333948725900001, 47.447507310299997 ], [ -122.328944853899998, 47.443369255100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100, "random": 5.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.781279970100002, 46.860815077399998 ], [ -122.712202419899995, 46.876077905300001 ], [ -122.700474082699998, 46.8819430195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600, "random": 107.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.932301409600001, 47.6518739395 ], [ -122.938487959100001, 47.641296821200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300, "random": 11.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455703188300006, 46.752654797700004 ], [ -120.452897962099996, 46.761204563900002 ], [ -120.455769459699994, 46.7658039465 ], [ -120.448160540900005, 46.771326237499999 ], [ -120.453802828400001, 46.779077655599998 ], [ -120.450487568699998, 46.788478560400002 ], [ -120.462421480700002, 46.800526586 ], [ -120.445886250900003, 46.800772012199999 ], [ -120.440139215800002, 46.807093327700002 ], [ -120.455331932199996, 46.8189351153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800, "random": 7.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392171147400006, 47.986605199400003 ], [ -122.4022467347, 47.997022132700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000, "random": 28.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670440581099996, 45.631853572600001 ], [ -122.669383742700006, 45.631846962499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000, "random": 76.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.536283653500007, 47.130792169400003 ], [ -122.529484328400002, 47.134748182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000, "random": 177.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433074099799995, 47.240304818299997 ], [ -122.434522701299997, 47.243324141099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000, "random": 137.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.472033946300002, 46.574554882900003 ], [ -120.472249359299994, 46.567494454399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": null, "random": 65.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002363671200001, 47.8395520304 ], [ -119.998120266399994, 47.839360396799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000, "random": 75.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.106661623500003 ], [ -123.086780999300004, 47.0992170671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000, "random": 45.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217836586399997, 47.470858336299997 ], [ -122.217721755, 47.472049768399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000, "random": 122.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347269898199997, 47.664239955699998 ], [ -122.347257021100006, 47.6739649907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000, "random": 123.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.377835494599999 ], [ -122.231061585399999, 47.379822712200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900, "random": 162.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.380029153899997, 47.174195565799998 ], [ -117.358463390799997, 47.214502144100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600, "random": 136.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.005882445099999 ], [ -117.396414713599995, 47.005315240100003 ], [ -117.416230368399994, 47.000500429100001 ], [ -117.443577852800004, 47.002770102600003 ], [ -117.467199858100003, 47.0097954879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000, "random": 125.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.251099789600005, 47.923251180100003 ], [ -122.232887504800004, 47.923352192499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100, "random": 191.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903578295299994, 46.283861002400002 ], [ -122.903076937500003, 46.284254283700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000, "random": 134.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.979061219899997 ], [ -122.190996790900002, 47.980424217200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400, "random": 145.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.918238997499998, 47.185584487900002 ], [ -123.953239554500001, 47.197622027400001 ], [ -123.969523937, 47.221472718599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900, "random": 62.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.162019726300002 ], [ -118.979369534100002, 48.165617216699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600, "random": 48.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843211788399998, 46.456561604500003 ], [ -122.84688053, 46.444658126500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900, "random": 150.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005317905200002, 46.330929457499998 ], [ -123.9777350926, 46.332348983099997 ], [ -123.959158209099996, 46.348167717800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900, "random": 51.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.975226715600002, 46.6637302723 ], [ -118.889403680800001, 46.6634446901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100, "random": 189.005 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.055900839800003, 46.375029719799997 ], [ -117.051781073399994, 46.3795878122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300, "random": 174.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.553750953800005, 48.099661530200002 ], [ -123.539896056800004, 48.097479742099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000, "random": 126.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304056684200006, 47.947165397 ], [ -122.301118508399995, 47.948844012800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400, "random": 160.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628925867099994, 47.698701822700002 ], [ -122.622685723800004, 47.702539463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000, "random": 126.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.012286397599993, 46.802428045600003 ], [ -123.007921493, 46.802694032399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000, "random": 83.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.649845078799999, 47.508163976699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000, "random": 82.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350048794200006, 47.798025673799998 ], [ -117.348953841300002, 47.801871614299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000, "random": 48.461 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697108961799998, 47.524879573 ], [ -122.699652221400001, 47.5252936288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800, "random": 148.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.738143993800001 ], [ -119.177360819200004, 46.741290161400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000, "random": 71.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264917707699993, 48.264714313900001 ], [ -122.274684021200002, 48.273037025599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000, "random": 27.824 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189202811599998, 47.3678526781 ], [ -122.181158518399997, 47.3649772586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000, "random": 132.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043046834799995, 47.158505120500003 ], [ -122.036347956, 47.158042872499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400, "random": 21.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.355572140199996, 47.978279434 ], [ -122.356192679399996, 47.978819259399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000, "random": 132.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284847670800005, 47.181573349200001 ], [ -122.282889944499999, 47.185892098499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000, "random": 75.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186231877500006, 47.6058898709 ], [ -122.188511970299999, 47.611623862899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000, "random": 77.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229378595499995, 47.190287898299999 ], [ -122.229321239900003, 47.184349968100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000, "random": 60.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626972580599997, 47.5417504284 ], [ -122.627433367600005, 47.534492499499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000, "random": 19.478 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.299842864399999 ], [ -122.247073417799996, 47.310505541600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700, "random": 124.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907890131200006, 46.941803024499997 ], [ -122.907878279900004, 46.947303939299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900, "random": 128.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.467735256400005, 45.715283597800003 ], [ -121.466470167099999, 45.714803707500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230, "random": 84.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.803578175499993, 48.961075513200001 ], [ -117.826045427500006, 48.982554419300001 ], [ -117.831676094800002, 49.0005187362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.170843796300005, 48.428829625399999 ], [ -118.172114409299994, 48.450282224600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100, "random": 44.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436000641700005, 48.710984053300002 ], [ -119.406018745500006, 48.764166706899999 ], [ -119.399522232699994, 48.793981232900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800, "random": 149.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390362912499995, 47.321634062199998 ], [ -122.370823995099997, 47.328699203200003 ], [ -122.365478030800006, 47.3194849976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300, "random": 152.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.384092012699995, 46.206252844399998 ], [ -123.382101974199998, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500, "random": 159.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.852153791799999 ], [ -122.5873849699, 47.840113277299999 ], [ -122.583684497899995, 47.813587039799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500, "random": 198.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.814116547099999, 47.773148257300001 ], [ -120.787897360599999, 47.764215841499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000, "random": 145.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.964023052599998 ], [ -122.352240221, 48.963632788399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000, "random": 64.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185756288500002, 48.152351143600001 ], [ -122.182972372099997, 48.152416491099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": null, "random": 110.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.074763273399995, 47.641906708 ], [ -120.071479554600003, 47.648195998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": null, "random": 64.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.936793106099998 ], [ -119.010505758400001, 47.939819788299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600, "random": 20.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.382957728500003, 45.705115008 ], [ -121.375916228600005, 45.709248454499999 ], [ -121.344323671200002, 45.710894640500001 ], [ -121.306263080700006, 45.705016652399998 ], [ -121.290450982199999, 45.696258645699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000, "random": 21.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531897904499999, 45.682684997099997 ], [ -122.507749843100001, 45.684020572100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700, "random": 191.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087484261100002, 46.539395298300001 ], [ -117.089258647700007, 46.543182164599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000, "random": 124.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292951033600005, 47.905080688 ], [ -122.293397033700003, 47.910813296699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500, "random": 193.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.283901925600006, 48.305182219599999 ], [ -117.257790597699994, 48.266246552600002 ], [ -117.2411593235, 48.249830436700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400, "random": 22.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.742631921599994, 46.20699312 ], [ -119.748601067500005, 46.206079067600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000, "random": 138.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.259515049400001 ], [ -119.086751526200004, 46.265575562400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000, "random": 197.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210202773399999, 47.909684149199997 ], [ -122.201995781500003, 47.927137552200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000, "random": 159.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.981141874800002, 46.154457643900002 ], [ -122.974844153, 46.151355371900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000, "random": 89.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.475978806100002, 46.681083667 ], [ -120.487178151899997, 46.671384763600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000, "random": 142.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271061548700004, 47.6700439942 ], [ -122.269938081700005, 47.670837953899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": null, "random": 69.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.047467202600004, 47.854848015199998 ], [ -120.035624221600003, 47.8496165293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000, "random": 105.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989711786399994, 47.228316551900001 ], [ -121.989767487799995, 47.242794495200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000, "random": 79.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225707636699994, 48.510474068599997 ], [ -122.210439985500003, 48.515958146599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900, "random": 55.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.566302510300005, 47.993875943600003 ], [ -117.603813975600005, 48.032440236100001 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.054383254299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000, "random": 23.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.942399051199999, 47.530214060600002 ], [ -121.935642047900004, 47.522410772800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900, "random": 142.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690324555299995, 47.561941458900002 ], [ -117.683738198399993, 47.566162133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000, "random": 151.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677410102099998, 47.563648136099999 ], [ -122.681154462600006, 47.566246198599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000, "random": 69.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334974644100001, 47.5375233364 ], [ -122.335002743900006, 47.5378934087 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": null, "random": 16.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.384124385099994, 47.815340295200002 ], [ -119.362657404499998, 47.815367954899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100, "random": 49.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314218402500003, 46.414630410199997 ], [ -120.314606942300003, 46.403812259600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500, "random": 162.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.715759012199996, 46.348975076199999 ], [ -123.705950597300003, 46.336866644399997 ], [ -123.694991834, 46.332735147599998 ], [ -123.689871589600003, 46.3183120371 ], [ -123.659298985600003, 46.333068984400001 ], [ -123.640540398400006, 46.334941224399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000, "random": 83.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.307978405499995, 48.435595460800002 ], [ -122.296157619300004, 48.435565171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000, "random": 78.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.057416806500001, 46.419927330900002 ], [ -117.046894581499998, 46.419929593500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000, "random": 112.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294736287700005, 47.2575680773 ], [ -122.297946799100004, 47.261963874400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500, "random": 182.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.988260855299998, 48.273541100099997 ], [ -121.961003822500004, 48.268461116300003 ], [ -121.931899796400003, 48.270673013500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000, "random": 162.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.106683647099999 ], [ -123.397896310299998, 48.106192363300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000, "random": 54.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.516019994299995, 47.395384207500001 ], [ -121.490590750600006, 47.396883244900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900, "random": 168.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.043933314200004, 48.184029565199999 ], [ -117.0441181005, 48.178055343499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000, "random": 34.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157668452699994, 47.654046720899998 ], [ -118.156594273899998, 47.654047759699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000, "random": 166.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899266838100004, 46.180291897499998 ], [ -122.895016053500001, 46.191009795500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000, "random": 153.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293794192500002, 47.082939788600001 ], [ -122.293539254899997, 47.098614527599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900, "random": 46.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641301768100007, 46.8104615568 ], [ -117.593064935, 46.813265940900003 ], [ -117.558641708699994, 46.8037170574 ], [ -117.5379557025, 46.808646305899998 ], [ -117.52930964, 46.8231348395 ], [ -117.517805186299995, 46.829215650800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 19.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324887521400001, 47.438245710899999 ], [ -120.324544580500003, 47.436711554299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000, "random": 78.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342445297400005, 48.476913573499999 ], [ -122.3416041033, 48.480684650599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000, "random": 5.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664597099299996, 45.671567055700002 ], [ -122.664524259399997, 45.6843405722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": null, "random": 99.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.129590621600002, 47.8811242831 ], [ -120.108461782399999, 47.873871282400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000, "random": 36.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411274585200005, 47.653047753300001 ], [ -117.411143579899999, 47.659075543699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000, "random": 152.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243678337199995, 47.757435704 ], [ -122.213526108300002, 47.750497457900003 ], [ -122.209358164500003, 47.758825033100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000, "random": 173.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144185524799994, 47.167459107200003 ], [ -122.117168574499999, 47.165835136200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500, "random": 175.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704062271799998, 47.552004905099999 ], [ -117.690324555299995, 47.561941458900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400, "random": 22.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.792100750400003 ], [ -118.747204117300001, 46.790029089500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520, "random": 157.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087513180499997, 46.9125608238 ], [ -117.083074089, 46.911444977899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300, "random": 108.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.403657352300002, 47.970099866299996 ], [ -124.402715935800003, 47.979570032799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700, "random": 74.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364992514899996, 45.997101925700001 ], [ -122.354729390800003, 46.000879137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000, "random": 32.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.099324035400002, 47.139000997399997 ], [ -122.094730493599997, 47.139868914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500, "random": 51.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747620288500002, 46.214015703100003 ], [ -119.743116059200005, 46.21487318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400, "random": 12.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.988874057900006, 47.203160202399999 ], [ -121.987643918900005, 47.202569875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000, "random": 180.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.927793161099999, 46.622196574599997 ], [ -122.941476871299997, 46.633570246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": null, "random": 28.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.182491657900002 ], [ -119.3489993938, 47.189958653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100, "random": 127.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045447888599995, 48.184042304899997 ], [ -117.043933314200004, 48.184029565199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": null, "random": 104.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.369219394400005, 47.475868365899998 ], [ -120.346173789399998, 47.470182604800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000, "random": 91.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.408349942100003, 47.2391797955 ], [ -122.4000472078, 47.240266890800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000, "random": 14.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300412458799997, 47.3957738513 ], [ -122.298504515100007, 47.39547624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": null, "random": 115.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813493301400001, 47.703398905199997 ], [ -119.813078488499997, 47.809276636200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000, "random": 152.978 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109321064499994, 47.8989017492 ], [ -122.108407210500005, 47.919607097499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000, "random": 34.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876647239099995, 46.102739118099997 ], [ -122.883404753700006, 46.113522401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800, "random": 18.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385791668799996, 45.580608216400002 ], [ -122.385537422400006, 45.579732123100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000, "random": 123.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.686143286399997, 48.2123143699 ], [ -122.6931398543, 48.212309471600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300, "random": 72.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.365001117099993, 46.875100319600001 ], [ -117.364967587799995, 46.8759309573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400, "random": 129.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.534428898499996, 47.912791220199999 ], [ -124.543249937200002, 47.903258946199998 ], [ -124.5843571045, 47.8989411015 ], [ -124.589609673799998, 47.893574977699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": null, "random": 42.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.495252997199998 ], [ -120.305116425799994, 47.526696943499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600, "random": 102.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.529840017400005, 47.504901930199999 ], [ -122.524309672900003, 47.504827718400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800, "random": 57.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.853127625799999 ], [ -117.645634686, 47.860105265800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300, "random": 54.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726383728900004, 48.892152279699999 ], [ -122.726659829599996, 48.9068699571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100, "random": 175.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972278891399995, 47.307327865300003 ], [ -117.972667927700002, 47.309471964700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300, "random": 144.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.674372320399996, 48.2692255901 ], [ -121.650090085499997, 48.272815312399999 ], [ -121.636073569800004, 48.263767642399998 ], [ -121.608756056199994, 48.255339874599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500, "random": 159.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.130963939099999 ], [ -122.099324035400002, 47.139000997399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800, "random": 186.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.701501382399996, 47.757762028099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000, "random": 137.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.089028105400004, 47.559338976900001 ], [ -122.069555480600002, 47.551632014200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300, "random": 81.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.796719230600004, 45.702403201099997 ], [ -120.783342698300004, 45.709177157399999 ], [ -120.731943881600003, 45.717010811400002 ], [ -120.722153623200001, 45.7293069774 ], [ -120.651777994300005, 45.7521047655 ], [ -120.613536037800003, 45.756390915799997 ], [ -120.561045115799999, 45.7497909585 ], [ -120.533222806799998, 45.7346091661 ], [ -120.511460093300002, 45.716637242399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000, "random": 11.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249430835300004, 47.412208168699998 ], [ -122.248794955299999, 47.432275411299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": null, "random": 56.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.896682750599993, 47.232740356299999 ], [ -119.874718310899993, 47.233060459900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000, "random": 127.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.920372202400003, 48.554843041200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800, "random": 56.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384646521899995, 47.448870130499998 ], [ -117.399817400299995, 47.470547998699999 ], [ -117.399775561200002, 47.514428535900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000, "random": 120.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137834511600005, 47.804839361 ], [ -122.113749425699993, 47.805010633199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000, "random": 84.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.637867173299995, 46.241859079100003 ], [ -119.623147673700004, 46.247388389100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000, "random": 138.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.970843132499994, 46.1276076543 ], [ -122.962783807199997, 46.122637066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000, "random": 176.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.359198299200003, 47.750275475499997 ], [ -117.365807384299998, 47.7605601689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000, "random": 8.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.566849212699999 ], [ -122.339365238799999, 47.5748709959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300, "random": 191.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.604161349699993, 46.966113391699999 ], [ -123.600903624799997, 46.974749123099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000, "random": 159.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.181055213699999 ], [ -117.039658043, 48.178021214399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100, "random": 34.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.402715935800003, 47.979570032799998 ], [ -124.392350543099994, 47.989246294799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800, "random": 172.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.166103580500007, 47.093467787100003 ], [ -117.182975160300003, 47.104809716799998 ], [ -117.200650561700002, 47.125971467500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000, "random": 114.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069332021600005, 46.421228217900001 ], [ -117.073978514199993, 46.426337746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000, "random": 88.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328890954499997, 47.590308791600002 ], [ -122.329127007, 47.5903078499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000, "random": 102.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.202410391199997 ], [ -122.298424995199994, 47.1999364331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600, "random": 157.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.492951732800002 ], [ -124.033257147900002, 46.505364523600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000, "random": 112.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294824384099996, 47.498289333300001 ], [ -122.298119690099995, 47.502022685199996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000, "random": 131.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.495753249700002, 47.624062761300003 ], [ -117.468507851400005, 47.639029918699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000, "random": 12.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.903224043700007, 47.164233431500001 ], [ -121.872005178500004, 47.161402969199997 ], [ -121.849103710700007, 47.15273018 ], [ -121.824800200699997, 47.159426348499998 ], [ -121.7896956437, 47.177662045799998 ], [ -121.724175330500003, 47.156995242299999 ], [ -121.689080403600002, 47.153353215400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000, "random": 118.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515841842200004, 47.267143818699999 ], [ -122.515897937899993, 47.271095951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000, "random": 75.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341026043900001, 48.4420756317 ], [ -122.341143146500002, 48.446976752200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000, "random": 33.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295851618399993, 47.440464837699999 ], [ -122.296188563499996, 47.445261311700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000, "random": 198.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.788828616299995, 48.0414353719 ], [ -122.793659489500001, 48.0437626987 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400, "random": 184.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082086450299997, 46.2486605032 ], [ -119.082542582, 46.251354512900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000, "random": 190.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.922091829899998 ], [ -122.263541723100005, 47.922179159300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000, "random": 162.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.483269079499998 ], [ -121.781215774100005, 47.474074807100003 ], [ -121.765158587800002, 47.473214056700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100, "random": 189.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.177360819200004, 46.741290161400002 ], [ -119.176420952499996, 46.767562564899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400, "random": 81.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.989221384300002 ], [ -123.885769935400006, 46.990092803099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100, "random": 182.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.356012526100002 ], [ -123.579659652800004, 46.356972248200002 ], [ -123.571658753799994, 46.360634495100001 ], [ -123.527978486899997, 46.347672681699997 ], [ -123.498598979400001, 46.3468225811 ], [ -123.4940632677, 46.324685392100001 ], [ -123.4668950282, 46.295217675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000, "random": 145.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.852401448600006, 46.651074980200001 ], [ -118.851188812399997, 46.650840242299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": null, "random": 78.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.943315751599997 ], [ -119.010650954699997, 47.939312536800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000, "random": 35.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606541076799999, 46.941941313299999 ], [ -122.605712079300005, 46.941489775199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200, "random": 14.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.592794232299994, 47.504927880300002 ], [ -122.551069679199998, 47.505156933899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000, "random": 140.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989767487799995, 47.242794495200002 ], [ -121.985591299199996, 47.260870346099999 ], [ -121.993396961, 47.270149034699998 ], [ -121.989355304900002, 47.285608678199999 ], [ -121.998744108400004, 47.294913668900001 ], [ -122.002777857, 47.306701697199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200, "random": 163.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471913238300004, 46.252522673 ], [ -119.471184156600003, 46.2575715157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000, "random": 15.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.593318681499994, 46.978376439100003 ], [ -123.481658804, 46.9993368592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000, "random": 76.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.197061164900006, 47.422016212400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300, "random": 132.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043384833600001, 46.308854520300002 ], [ -124.0447225968, 46.308871953599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580, "random": 11.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.247623398299993, 48.0127941378 ], [ -118.237039096700002, 48.018168332499997 ], [ -118.2214889113, 48.049565817100003 ], [ -118.222936142500004, 48.053637239700002 ], [ -118.197038204500004, 48.073047323600001 ], [ -118.204700130500001, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.204016274099999, 48.108946106499999 ], [ -118.200662958, 48.116023653500001 ], [ -118.192017662, 48.117837666100002 ], [ -118.202303033, 48.117174424799998 ], [ -118.209093898199995, 48.124787487699997 ], [ -118.201753202500001, 48.134801942800003 ], [ -118.166797815899997, 48.155945894200002 ], [ -118.171011121899994, 48.163215754200003 ], [ -118.167759214599997, 48.177816706100003 ], [ -118.171949811600001, 48.190878052800002 ], [ -118.170007308300001, 48.198677821799997 ], [ -118.179961741900001, 48.205546312300001 ], [ -118.175431716700004, 48.217891139199999 ], [ -118.1569623818, 48.228394239899998 ], [ -118.135412156300006, 48.251569121899998 ], [ -118.1314821032, 48.261999135899998 ], [ -118.136088338099995, 48.2791408008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000, "random": 19.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.738195968599996, 46.971090700700003 ], [ -123.690459375499998, 46.973761333699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000, "random": 106.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227424004400007, 47.30291529 ], [ -122.219327033699997, 47.30338806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800, "random": 114.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.937863401300007, 46.843234490500002 ], [ -119.941795765899997, 46.848996036300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500, "random": 104.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281570073300003, 48.136485829599998 ], [ -122.281476550400001, 48.139959181099996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": null, "random": 38.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.027228826400005, 47.836194659500002 ], [ -120.025068951899996, 47.8360845439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000, "random": 87.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.210984360099999, 47.877210461899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400, "random": 73.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.816935508100002, 45.795557156 ], [ -120.807249664599993, 45.812378431500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000, "random": 23.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143430620900006, 47.804831104 ], [ -122.140080255399994, 47.814511612899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820, "random": 132.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.156893121600007, 48.189540328100001 ], [ -124.136633293599999, 48.189693283300002 ], [ -124.119184240099997, 48.197333688500002 ], [ -124.111972148899994, 48.193056858600002 ], [ -124.099026134, 48.196380852700003 ], [ -124.065449075900005, 48.184203205599999 ], [ -124.067003423, 48.179499668 ], [ -124.062503482699995, 48.182271907500002 ], [ -124.060996547499997, 48.174474656599998 ], [ -124.0071237943, 48.171246608099999 ], [ -123.998301385600001, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.159929366500002 ], [ -123.9544082731, 48.165129369600002 ], [ -123.945000196699993, 48.163679703299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000, "random": 141.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.178420765399999 ], [ -121.994685753699997, 47.197484103500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000, "random": 88.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244125636199996, 48.506295213100003 ], [ -122.243705511399995, 48.507550046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700, "random": 54.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.997022132700003 ], [ -122.415017563099994, 48.001060961100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900, "random": 149.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510482342299994, 47.504848737300001 ], [ -122.503509391500003, 47.505998994 ], [ -122.501053194600004, 47.512147903299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000, "random": 9.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473686591399996, 48.725491598399998 ], [ -122.467423081800007, 48.738158788299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000, "random": 61.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869602347099999, 46.251520877600001 ], [ -119.8182520318, 46.237973053499999 ], [ -119.797563812500002, 46.224556295900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320, "random": 184.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.675440298599995, 48.865191048600003 ], [ -121.678315036499995, 48.8665390524 ], [ -121.679949024300001, 48.862366554600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300, "random": 44.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.078231726699997, 48.346462605900001 ], [ -120.054575691099998, 48.344579262899998 ], [ -120.043125887399995, 48.348189060800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900, "random": 177.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.503479943100004, 45.998358346400003 ], [ -122.5258480464, 45.993213695400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500, "random": 10.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.747746263300002, 46.693374154399997 ], [ -123.752354357300007, 46.686064117 ], [ -123.768029697200006, 46.680362283100003 ], [ -123.7755784334, 46.682026725199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500, "random": 99.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.250508615499996, 47.804211862 ], [ -124.250517205400001, 47.810937674199998 ], [ -124.258073011899995, 47.8098225751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100, "random": 163.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923083369699995, 46.253659694200003 ], [ -123.948649006799997, 46.276338217700001 ], [ -123.968499198399996, 46.306327607299998 ], [ -124.0020006548, 46.320577083300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600, "random": 80.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.895974041599999 ], [ -124.108797736, 46.902264898200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600, "random": 130.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.577540315199997, 46.513334344299999 ], [ -122.562440734800006, 46.517004806 ], [ -122.550440133, 46.534454282600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500, "random": 18.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.840896095299996, 46.437830048400002 ], [ -122.836073628299999, 46.4372194695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000, "random": 184.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653858604500002, 45.722849267100003 ], [ -122.653998623800007, 45.723149806499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600, "random": 144.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.170179750499997, 47.117562055400001 ], [ -124.177471151700004, 47.126216089 ], [ -124.1826998409, 47.154647452100001 ], [ -124.187773493500003, 47.156870476599998 ], [ -124.192508816, 47.166726177599998 ], [ -124.188426140100006, 47.1715589354 ], [ -124.194333575499996, 47.177704042800002 ], [ -124.187285399199993, 47.180239896800003 ], [ -124.197088365300004, 47.182362931500002 ], [ -124.197786695199994, 47.203763312600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000, "random": 123.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177499564100003, 47.302421793299999 ], [ -122.158397736699996, 47.329830075399997 ], [ -122.147513064799995, 47.339074769200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500, "random": 182.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.490640709700003 ], [ -124.033892636800005, 46.491529151400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000, "random": 40.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279969000299999, 47.882689195399998 ], [ -122.284961471499997, 47.889952125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200, "random": 73.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820346137499996, 47.407048446300003 ], [ -122.8153357809, 47.404942925199997 ], [ -122.811344422900007, 47.392650133399997 ], [ -122.815997779100002, 47.377902822700001 ], [ -122.805811247799994, 47.360133497900001 ], [ -122.790764019500003, 47.362458267599997 ], [ -122.778300719100002, 47.374504504 ], [ -122.772786725399996, 47.372474926599999 ], [ -122.771733287, 47.367584963299997 ], [ -122.764092501899995, 47.3690425701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000, "random": 55.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383224272700005, 47.809751709099999 ], [ -122.383177258700002, 47.803115381799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000, "random": 170.025 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192118820399998, 47.812969411099999 ], [ -122.179936919200003, 47.812576249400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400, "random": 108.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813512360700003, 46.975265630300001 ], [ -123.814395560500003, 46.976034897300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000, "random": 186.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.953247282800007, 47.588372095700002 ], [ -121.9327980228, 47.578598486200001 ], [ -121.904923274699996, 47.572494750300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900, "random": 120.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300174272299998, 47.921996202499997 ], [ -122.293173814799999, 47.922087901099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700, "random": 25.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402440419900003, 47.775794797400003 ], [ -117.402071636299993, 47.780597520100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000, "random": 40.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.884688452199995, 46.258716924600002 ], [ -119.869602347099999, 46.251520877600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000, "random": 162.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411242756799993, 47.6526173898 ], [ -117.411274585200005, 47.653047753300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100, "random": 157.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630443639299997, 47.565025907699997 ], [ -122.629614867, 47.565023409600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000, "random": 160.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324557230300002, 47.777643065600003 ], [ -122.313709108699996, 47.777338075700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400, "random": 164.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.273667244099997, 46.085029912499998 ], [ -118.2672424979, 46.086477503399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": null, "random": 48.214 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656563119799998, 47.9990210152 ], [ -119.652569693499998, 48.004195568299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800, "random": 140.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.096386168800002 ], [ -123.539695353699997, 48.0975545684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000, "random": 37.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.694754548899994, 46.726677142600003 ], [ -120.668235797799994, 46.711479115499998 ], [ -120.653571841399994, 46.694966391900003 ], [ -120.651183799199998, 46.682767821 ], [ -120.620686334699997, 46.6605003365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": null, "random": 128.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.359501847199994, 47.641373911099997 ], [ -119.3541224664, 47.654364337799997 ], [ -119.362883742899996, 47.670910110400001 ], [ -119.362657404499998, 47.815367954899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500, "random": 6.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.365478030800006, 47.3194849976 ], [ -122.360542910299998, 47.320727857100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000, "random": 13.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669449984600007, 47.0015817743 ], [ -122.655330546900004, 46.993301497399997 ], [ -122.647069200399997, 46.976312431799997 ], [ -122.632531038099998, 46.964619754799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800, "random": 115.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134285547299996, 46.797073158700002 ], [ -119.134312927699995, 46.818765882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000, "random": 120.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.216805478799998 ], [ -119.138060967300007, 46.216909794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800, "random": 113.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.654604637600002, 47.70607599 ], [ -122.645523064399995, 47.699437756 ], [ -122.628925867099994, 47.698701822700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300, "random": 157.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719771164400001, 46.532048859500001 ], [ -122.644238838700005, 46.531879556699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000, "random": 185.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201484693699996, 48.1878947696 ], [ -122.192163134799998, 48.188250864499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000, "random": 97.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.723609466200003 ], [ -122.187198009200003, 47.738498455299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000, "random": 158.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740274834399997, 45.907107905300002 ], [ -122.741565261700003, 45.906180137500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000, "random": 124.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345113336899999, 47.734153058499999 ], [ -122.342303708100005, 47.7341359849 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000, "random": 139.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244529904100006, 47.361148228799998 ], [ -122.243988081300003, 47.374066723799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800, "random": 139.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263396776899995, 47.458701214199998 ], [ -122.267055740800004, 47.4665917564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000, "random": 18.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461663028299995, 47.200192883299998 ], [ -122.462495706, 47.214291678800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000, "random": 196.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327737404700002, 47.479270819699998 ], [ -122.327202421899997, 47.485407254199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800, "random": 179.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.878433839099998, 47.821394556500003 ], [ -122.8867284289, 47.820463539499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360, "random": 109.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467287985300004, 46.7034528115 ], [ -117.464807280599999, 46.720976935099998 ], [ -117.471211870900007, 46.712594502499996 ], [ -117.479274072799996, 46.711277151899999 ], [ -117.487719554700007, 46.731020675400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000, "random": 23.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370072911299999, 47.792450454899999 ], [ -122.366799176699999, 47.790544377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200, "random": 87.961 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.733824069899995, 47.954373254399997 ], [ -122.738740937700001, 47.9595773681 ], [ -122.740667413899999, 47.978864272300001 ], [ -122.748428735199994, 47.994645822899997 ], [ -122.758586856199997, 48.006758683199998 ], [ -122.768640501500002, 48.011228311499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400, "random": 155.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.602185105700002, 46.890372220899998 ], [ -119.580670595800001, 46.885660649599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000, "random": 49.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880379792400007, 46.482924602099999 ], [ -122.87656073, 46.494718014 ], [ -122.876510017399994, 46.543928554799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000, "random": 111.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159146879800005, 47.168838945200001 ], [ -122.148572778100004, 47.167724522500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500, "random": 94.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.888912007400002 ], [ -122.501812683400004, 45.893398658499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100, "random": 146.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.004060927500007, 46.5740844587 ], [ -119.001741281199998, 46.585143338400002 ], [ -119.006329476299996, 46.597462697399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000, "random": 165.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.447553519499998 ], [ -123.879754704500002, 47.455784508100002 ], [ -123.885677573400002, 47.456866807899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950, "random": 197.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.789186845100005, 46.525469168900003 ], [ -117.776208735099999, 46.536546569599999 ], [ -117.774915493, 46.548261041700002 ], [ -117.769523678100001, 46.556350365500002 ], [ -117.780763064799999, 46.568198419799998 ], [ -117.775135213400006, 46.580586403 ], [ -117.785289441200007, 46.587495737300003 ], [ -117.781376055, 46.592409526 ], [ -117.791383799100004, 46.614441905299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000, "random": 135.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252591198299996, 47.484034392399998 ], [ -122.249028468199995, 47.4830589416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400, "random": 175.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.900843413800004, 48.4812158123 ], [ -117.903014288700007, 48.491295040099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000, "random": 16.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.266313958500007, 47.834250899200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000, "random": 71.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.906365783799998, 46.180099770799998 ], [ -122.905102340499994, 46.184711848900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000, "random": 159.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463059040700003, 47.187472294899997 ], [ -122.462088280299994, 47.197049535799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000, "random": 177.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.354448297499999, 46.187236830899998 ], [ -123.328413565800005, 46.163832368500003 ], [ -123.282398489599998, 46.152649885300001 ], [ -123.262813461600004, 46.155398660700001 ], [ -123.232627280399996, 46.172727256500004 ], [ -123.177155703300002, 46.188470852800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000, "random": 73.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118752809200004, 48.164313309400001 ], [ -122.128562375100003, 48.178306022599998 ], [ -122.128522187800002, 48.1877057823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100, "random": 67.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.736303099699995, 46.646619395899997 ], [ -119.800631610400004, 46.633273275 ], [ -119.850580666699997, 46.633900159299998 ], [ -119.894843293700006, 46.664206179600001 ], [ -119.907061669900003, 46.680637532299997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000, "random": 139.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.184932840099997 ], [ -119.167008503600002, 46.191719662700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400, "random": 139.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.038134999700006, 47.045714760700001 ], [ -124.044085349400007, 47.0525732949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000, "random": 156.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.709147899900003, 47.759454432799998 ], [ -118.707944478, 47.7591802313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400, "random": 50.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.616003575799994, 46.647894068200003 ], [ -121.6109588785, 46.649779292799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000, "random": 5.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.735085712200004, 47.8671728801 ], [ -121.719934467599998, 47.865876767899998 ], [ -121.702206125399996, 47.857269046900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": null, "random": 15.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.389372647400002 ], [ -119.484229716900003, 47.393484868400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000, "random": 198.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193737871799996, 48.152206488799997 ], [ -122.187256140599999, 48.152320979800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100, "random": 15.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.703899168600003, 46.675045581699997 ], [ -123.695083687700006, 46.669070081500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000, "random": 162.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655558176300005, 47.650535837 ], [ -122.667631105300003, 47.654718396200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000, "random": 198.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.259846258600007, 47.83972786 ], [ -122.258386957400006, 47.8454224344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930, "random": 64.413 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.243020091899993, 47.135105077299997 ], [ -117.255459168900003, 47.145496228900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800, "random": 84.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634093082299998, 46.532248674500003 ], [ -122.613916913, 46.533086125200001 ], [ -122.603542558200004, 46.528545867399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800, "random": 41.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142086452399994, 47.654405452600002 ], [ -118.140899954299996, 47.654795746799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300, "random": 146.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202201079100007, 48.746018506699997 ], [ -122.200782833800005, 48.778292325099997 ], [ -122.190482595600002, 48.789698039500003 ], [ -122.190454977399995, 48.796208521200001 ], [ -122.198132583200007, 48.807184498600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000, "random": 132.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.783199502800002, 48.107007579799998 ], [ -122.781061765399997, 48.107655859499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500, "random": 110.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.430902000800003, 48.119157941600001 ], [ -123.431723711900005, 48.118274773099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": null, "random": 92.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853410503099994, 47.219448708199998 ], [ -119.853405347299997, 47.222329436499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000, "random": 69.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.156678518500001, 48.076900807299999 ], [ -123.141795278499998, 48.074895211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000, "random": 116.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311449370800005, 47.391536018099998 ], [ -122.307952314299996, 47.390989098200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000, "random": 194.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.748260992300004, 47.473255323 ], [ -121.722898993100003, 47.467079809499999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600, "random": 161.961 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740215335200006, 46.796289770800001 ], [ -118.708150143599994, 46.814428946699998 ], [ -118.6742632423, 46.822698338800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710, "random": 173.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.305830498800006, 46.952091588800002 ], [ -121.255807396799995, 46.966597163899998 ], [ -121.210371058700005, 46.969113485599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000, "random": 146.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612833645500004, 48.496398719699997 ], [ -122.612773958299996, 48.500455119199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000, "random": 71.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.647571915599997, 47.565258176100002 ], [ -122.646332902200001, 47.565068923399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000, "random": 162.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.041144706599994, 47.542865930700003 ], [ -122.0241863249, 47.531588126099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000, "random": 26.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302875798200006, 47.300053013800003 ], [ -122.298157912799994, 47.312895011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": null, "random": 69.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.931093545899998 ], [ -119.882298275099998, 47.942018174499999 ], [ -119.875741968699998, 47.958051341699999 ], [ -119.887958120700006, 47.972440806100003 ], [ -119.889532435700005, 47.982532057299998 ], [ -119.885851000599999, 47.990264323799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000, "random": 51.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.079603723899993, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.111443955599995, 47.463154478500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900, "random": 188.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.792484011300004, 45.716168026200002 ], [ -121.786225659, 45.714130412800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000, "random": 18.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.278802215500001 ], [ -119.302305689799994, 46.267676536899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000, "random": 71.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.590318347099995, 46.056768336099999 ], [ -118.519208512800006, 46.049950256599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": null, "random": 18.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134440507700006, 47.088984407700003 ], [ -119.121253997400004, 47.087799811700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000, "random": 104.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.600798524600002 ], [ -122.711238820700004, 47.605228821399997 ], [ -122.712449603799996, 47.611406311800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000, "random": 179.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093418599900005, 46.285167135599998 ], [ -119.092502097899995, 46.340179474199999 ], [ -119.0860022305, 46.358205390599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000, "random": 95.391 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270295565200001, 47.4970013804 ], [ -122.25791496, 47.487130901500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000, "random": 129.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349574717300001, 47.970653730400002 ], [ -117.349586635600005, 47.9814746809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700, "random": 99.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.190064272399994, 48.477574027099998 ], [ -120.185421141800006, 48.477806843800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000, "random": 62.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888628473599994, 47.402682276900002 ], [ -123.876309722100004, 47.421393489899998 ], [ -123.877036547, 47.447553519499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 193.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.312829956300007, 47.422532371700001 ], [ -120.306221311900003, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000, "random": 156.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.577603552200003, 47.410002127200002 ], [ -121.550163449199999, 47.398183204299997 ], [ -121.532417350599999, 47.395800791500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000, "random": 196.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233172088499998, 47.821066967299998 ], [ -122.230733731599997, 47.817835607600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700, "random": 41.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377141808800005, 46.180276374400002 ], [ -123.377449328699996, 46.187590274599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": null, "random": 189.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.294245746800001, 47.119132439200001 ], [ -119.291111567900003, 47.124036589900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": null, "random": 194.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.530963491099996, 46.971801339099997 ], [ -120.526300065599997, 46.970960180100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400, "random": 111.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.815376949200001, 45.697928946300003 ], [ -120.796719230600004, 45.702403201099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000, "random": 120.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.883591746600004, 47.509036991899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000, "random": 159.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330796798799994, 47.608824904400002 ], [ -122.330190562400006, 47.612879725900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000, "random": 5.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.565755526899999 ], [ -122.632864206899995, 47.566635514799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000, "random": 89.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.591845204199998, 48.889032620599998 ], [ -122.606768074300007, 48.898128227699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900, "random": 57.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960869672200005, 46.896587943100002 ], [ -122.959413616800006, 46.896544591599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000, "random": 9.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.105067388600006, 47.129641063599998 ], [ -123.099174975500006, 47.130178044399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000, "random": 26.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.857571645600004, 46.037467729299998 ], [ -122.8610659653, 46.047865250500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400, "random": 198.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.734538853499998, 48.136053459400003 ], [ -123.716298311, 48.131550921799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200, "random": 143.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.480252005399997 ], [ -124.027686928500003, 47.471479931 ], [ -124.0967538612, 47.488540894899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500, "random": 18.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.358535363800002, 48.9093392192 ], [ -122.358082049800004, 48.915412848 ], [ -122.351939517100007, 48.916026991700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000, "random": 20.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183918427600005, 47.5658400246 ], [ -122.176695557599999, 47.572470087200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000, "random": 34.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.023438807300003 ], [ -122.857571645600004, 46.037467729299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500, "random": 159.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.319380156799994, 46.299522199400002 ], [ -118.29383435, 46.299169540199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000, "random": 52.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.596100378800003 ], [ -122.405540528800003, 45.591761287200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800, "random": 156.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.728414178700007, 48.9757559926 ], [ -122.7335974346, 48.979211973399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000, "random": 69.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.543004641899998, 46.265484455600003 ], [ -119.523755174, 46.261389296200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700, "random": 93.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.912670494899999 ], [ -122.734609879900006, 47.937546706399999 ], [ -122.733824069899995, 47.954373254399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000, "random": 156.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.111774724100002 ], [ -118.368678888199995, 47.115004149199997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000, "random": 195.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.121632499500002 ], [ -122.926121849899999, 46.122971713699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000, "random": 67.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323952406499998, 47.397136250199999 ], [ -122.324340674400005, 47.397956274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500, "random": 19.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.678110354400005, 45.939490944399999 ], [ -122.695865641500006, 45.943167264899998 ], [ -122.7043424684, 45.9356642435 ], [ -122.720061706099997, 45.933789863199998 ], [ -122.722622225500004, 45.928000884200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": null, "random": 82.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.288231320899996, 47.617049865200002 ], [ -119.282818381200002, 47.619376442899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100, "random": 30.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.109086964699998, 46.858851588299999 ], [ -124.110834784900007, 46.868530839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500, "random": 126.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790, "random": 54.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.678249238600003, 47.332770853600003 ], [ -118.667678610099998, 47.329164710100002 ], [ -118.659778051700002, 47.332892974899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200, "random": 23.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626893820500001, 46.9614926076 ], [ -122.617047133900002, 46.956992231699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000, "random": 163.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.922037542499993, 46.742687586499997 ], [ -121.918473005799996, 46.741198450799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600, "random": 137.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.493315447399993, 46.311516519900003 ], [ -119.4925583765, 46.329979207 ], [ -119.453908727599995, 46.355869256799998 ], [ -119.446045358099994, 46.371667617200004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000, "random": 186.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.825814271400006, 46.971474761700001 ], [ -123.830980867199997, 46.976009928800003 ], [ -123.852175045300001, 46.976073338900001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": null, "random": 85.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.657929994699998, 47.999466185099998 ], [ -119.668479131400005, 48.004624036199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500, "random": 68.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379606535099995, 47.811428451799998 ], [ -122.378772240299995, 47.812427925900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905823096600002, 48.545437755899997 ], [ -117.905841872400003, 48.5465546852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000, "random": 100.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.656102616499993, 48.118102910200001 ], [ -123.598169341299993, 48.116751797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000, "random": 168.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632854251099999, 46.958792651300001 ], [ -122.607696380799993, 46.942584212500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000, "random": 110.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161616720599994, 48.152123549599999 ], [ -122.150787088599998, 48.152052366299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000, "random": 122.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.355582348900001, 47.858807196800001 ], [ -117.355593639800006, 47.858945272299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000, "random": 163.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.279905047599996, 47.681635658600001 ], [ -117.244831362599996, 47.6887168246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000, "random": 89.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.239877959799998, 47.590805383499998 ], [ -122.234841367100003, 47.588418258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000, "random": 11.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209303932400005, 47.642807809799997 ], [ -122.193293704599995, 47.6371487563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": null, "random": 120.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.669767452599999, 47.599791676300001 ], [ -119.661215119399998, 47.607000547600002 ], [ -119.606683159100001, 47.599362431800003 ], [ -119.519316737, 47.599671664399999 ], [ -119.506659076, 47.606149404600004 ], [ -119.490023690499996, 47.608153128700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000, "random": 157.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.453850354599993, 47.918261358400002 ], [ -117.4773490149, 47.942880451299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000, "random": 52.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212938500800007, 47.91279953 ], [ -122.208800066199998, 47.915072194099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000, "random": 134.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346235717300004, 48.421707577399999 ], [ -122.336470433499997, 48.421250475100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200, "random": 56.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.512133462400001, 45.776374164 ], [ -121.506537166300006, 45.781926395200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.399384164400004, 47.675181022899999 ], [ -124.410029993199998, 47.690538550699998 ], [ -124.413158489799997, 47.715324170899997 ], [ -124.3232512525, 47.750392393200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000, "random": 69.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.521972394399995, 46.626090815 ], [ -120.516977211599993, 46.626072081799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100, "random": 167.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.313312870700003, 48.924551532199999 ], [ -117.307119418, 48.929199144199998 ], [ -117.316531308199998, 48.932748811700002 ], [ -117.319907535599995, 48.941222607 ], [ -117.315980128299998, 48.951803024699998 ], [ -117.317591745599998, 48.960123958200001 ], [ -117.311418774399996, 48.968857460499997 ], [ -117.313240792299993, 48.984467610899998 ], [ -117.308202455300005, 48.987334862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 156.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.830782215400006, 47.103697310500003 ], [ -119.829366692, 47.102574142900004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890, "random": 172.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.794898273800001, 48.900775119099997 ], [ -117.789824640899994, 48.912891269500001 ], [ -117.778759274099997, 48.917169304399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500, "random": 187.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.387307348500002, 47.278952222299999 ], [ -122.404672067600004, 47.283851474899997 ], [ -122.416893607199995, 47.296642897799998 ], [ -122.432670010899997, 47.298060625799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700, "random": 140.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802418755299996, 46.969282630400002 ], [ -123.8023268261, 46.970613858599997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000, "random": 191.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172470015599998, 46.747419563 ], [ -117.1689737584, 46.759989077900002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000, "random": 69.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979120459399994, 47.861321829600001 ], [ -121.977254482299998, 47.860853409100002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000, "random": 38.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322422964099999, 47.640441942899997 ], [ -122.3161312286, 47.6429143031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800, "random": 119.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617047133900002, 46.956992231699999 ], [ -122.6116398299, 46.956535307700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000, "random": 44.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628802942700005, 47.6101244229 ], [ -122.628834077099995, 47.615881278700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": null, "random": 27.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.646298814600001, 47.596485754 ], [ -120.628766045199995, 47.589121012600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900, "random": 160.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.176904797399999, 46.729513769 ], [ -117.178835770500001, 46.729585266299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000, "random": 121.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410853660100003, 47.751319912500001 ], [ -117.410523712599996, 47.752316359200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000, "random": 195.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431873938199999, 47.234680353 ], [ -122.432220221600005, 47.238642593500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000, "random": 164.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884867830700003, 47.987938207299997 ], [ -122.883245172, 47.9882925028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000, "random": 19.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670987526399998, 47.554042039599999 ], [ -122.677410102099998, 47.563648136099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500, "random": 59.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.910333599099999, 46.482928058 ], [ -122.897497354099997, 46.479396397800002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000, "random": 130.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.467404367699999, 46.5847787764 ], [ -120.451210130099994, 46.577085327600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000, "random": 158.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.827868590500003, 46.971685376300002 ], [ -123.826985228699996, 46.970870741799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800, "random": 74.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.391339284599994, 47.389115786399998 ], [ -117.389567766599995, 47.425001746699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000, "random": 77.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312772597600002, 48.340779633499999 ], [ -122.305721706699998, 48.339435954800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000, "random": 59.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.507749843100001, 45.684020572100003 ], [ -122.506325005899996, 45.684857825500004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000, "random": 77.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.479885092200007, 46.597737697200003 ], [ -120.474802377900005, 46.589699519299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000, "random": 151.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295539751600003, 47.040162607 ], [ -122.295311486800003, 47.043931016199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100, "random": 19.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475197836600003, 48.3959072026 ], [ -119.502302775900006, 48.402278157200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000, "random": 95.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.412724274599995, 47.715145703700003 ], [ -117.435100794500002, 47.715447291099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000, "random": 166.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210869349700005, 47.8004619779 ], [ -122.207714154599998, 47.806353196499998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410, "random": 110.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.222302280899996, 46.598111115099996 ], [ -118.225764350399999, 46.604595703500003 ], [ -118.2223138409, 46.609761519099997 ], [ -118.240486649499999, 46.627919481500001 ], [ -118.245091406200004, 46.641602208099997 ], [ -118.265180498099994, 46.656573853200001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400, "random": 66.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413427022500002, 47.653110738199999 ], [ -117.413460895200004, 47.652722661600002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000, "random": 26.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.779376178199996, 46.221205174600001 ], [ -119.755606592199996, 46.220951481299998 ], [ -119.745690893700001, 46.215864676300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000, "random": 167.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.132021950199999, 47.236342335499998 ], [ -123.127785851400006, 47.2236494996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000, "random": 46.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.351819382399995, 47.791903946399998 ], [ -117.350048794200006, 47.798025673799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": null, "random": 14.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292056688399995, 47.410528213699997 ], [ -120.294127652200004, 47.413015349399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000, "random": 156.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.807636250900003, 46.977246300099999 ], [ -123.809046887500003, 46.977210686299998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000, "random": 193.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332916532900001, 47.5234893652 ], [ -122.334374309400005, 47.529782668300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000, "random": 61.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293108524199994, 47.392427434 ], [ -122.286526806300003, 47.390672964899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000, "random": 78.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.649728357699999 ], [ -122.590602617200005, 45.652794820399997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300, "random": 14.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.435239557599999 ], [ -117.7149843296, 47.4501888753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200, "random": 129.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.826087037199997, 47.777964567 ], [ -120.814116547099999, 47.773148257300001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": null, "random": 175.167 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979697854299999, 47.968430380400001 ], [ -118.962146472599997, 47.978897152099997 ], [ -118.95552571, 47.996767366100002 ], [ -118.942277831200002, 48.015486803400002 ], [ -118.943583254299995, 48.025575113 ], [ -118.986769332500003, 48.053062632900001 ], [ -118.973666882200007, 48.0641934995 ], [ -118.982148101899995, 48.075814884899998 ], [ -118.982032154600006, 48.092766660099997 ], [ -118.989815542900004, 48.104462178799999 ], [ -118.979093252699997, 48.119789106200002 ], [ -118.977574437499996, 48.130752286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300, "random": 93.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054761731100001, 46.345935959 ], [ -124.054745626300004, 46.346612471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800, "random": 148.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.267135357900003, 48.429927612199997 ], [ -122.264774667, 48.429909313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690, "random": 118.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.597036992200003, 47.095543250600002 ], [ -117.631861121200004, 47.106672080700001 ], [ -117.6461224106, 47.116630621500001 ], [ -117.683843117699993, 47.1180750089 ], [ -117.707883861, 47.111339266400002 ], [ -117.719060914799996, 47.1167193872 ], [ -117.734570016700005, 47.116926604200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100, "random": 59.142 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.142135434799997, 47.4475636134 ], [ -117.141577431, 47.450008249200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690, "random": 130.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.346081624799993, 46.8885837829 ], [ -117.304149258899997, 46.899020955099999 ], [ -117.2746295508, 46.914191606099998 ], [ -117.270425518300001, 46.912759444700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000, "random": 16.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190376081899998, 47.976893661600002 ], [ -122.182977455200003, 47.986938321099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000, "random": 76.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883404753700006, 46.113522401 ], [ -122.898236750099997, 46.128944340899999 ], [ -122.897607260699999, 46.140453967500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200, "random": 106.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.692970777599996, 47.5042331597 ], [ -117.693498972900002, 47.504267856699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600, "random": 180.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.808106471399995, 45.824581942400002 ], [ -120.805370855600003, 45.826504570600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000, "random": 37.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.911903540099999, 46.176592032800002 ], [ -122.906365783799998, 46.180099770799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100, "random": 136.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349797920599997, 46.859706395899998 ], [ -117.357008144700004, 46.865091813500001 ], [ -117.355403140199996, 46.871722587800001 ], [ -117.364164788300002, 46.874010902899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300, "random": 74.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076752340900001, 46.909721281499998 ], [ -117.068840619, 46.910859572100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000, "random": 110.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.191639746100002 ], [ -122.229378595499995, 47.190287898299999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900, "random": 92.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.023973467100006, 46.764545732599998 ], [ -117.983142065099997, 46.762939243200002 ], [ -117.9366891767, 46.785311949099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000, "random": 117.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097038422799997, 46.8218084668 ], [ -123.090539888799995, 46.821737349700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200, "random": 159.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054580485599999, 46.350118615100001 ], [ -124.054404370699999, 46.352653916100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000, "random": 159.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974771932400003, 46.711262675199997 ], [ -122.969987798800005, 46.711048393200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000, "random": 94.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137621938500004, 47.465295400099997 ], [ -122.156623732400007, 47.468501808500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000, "random": 45.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.481552386600001, 47.9470052096 ], [ -117.523562276800007, 47.978488490700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000, "random": 35.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.041885819499996, 46.419993072600001 ], [ -117.039897904499995, 46.420186914399999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000, "random": 109.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328608609300005, 47.469981829600002 ], [ -122.312755550399999, 47.470155670899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000, "random": 190.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802945078600004, 46.969721982800003 ], [ -123.804653298800005, 46.970295887799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000, "random": 143.572 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.278115035200003, 46.258741845099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910, "random": 197.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.369079137599996, 48.8628154536 ], [ -117.364148903, 48.859789320799997 ], [ -117.361719793199995, 48.8661339983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800, "random": 72.385 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383672593599997, 48.891377649 ], [ -122.376030476500006, 48.891834109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700, "random": 117.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.678622098800005, 48.073901581 ], [ -123.668938631800003, 48.0733486098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000, "random": 117.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.981774674500002 ], [ -122.1922476604, 47.98179891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000, "random": 52.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.538427603100004, 46.6224575094 ], [ -120.521972394399995, 46.626090815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000, "random": 116.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.951492505799997 ], [ -122.070743662699996, 47.940611303300003 ], [ -122.075175116500006, 47.919765200500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000, "random": 170.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813332455299999, 47.0524920951 ], [ -122.787872723199996, 47.059731396899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300, "random": 43.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.942027628899993, 48.889158419700003 ], [ -121.924199672399993, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.905807949500002 ], [ -121.868282109399999, 48.901853285800001 ], [ -121.784534729200004, 48.912529716199998 ], [ -121.774012250799998, 48.909379435399998 ], [ -121.760173423300003, 48.911338270800002 ], [ -121.735164816099996, 48.902851706699998 ], [ -121.704622587299994, 48.908486916299999 ], [ -121.693699750099995, 48.906634052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900, "random": 37.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.359020038699995, 46.8898382458 ], [ -122.358974689600004, 46.893314978799999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000, "random": 125.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.649617031399998 ], [ -122.322342181699995, 47.656009406199999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000, "random": 154.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185841226099996, 47.763446951299997 ], [ -122.187659689399993, 47.765906531200002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800, "random": 108.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352094649099996, 47.974724356899998 ], [ -122.352294519599994, 47.974775063099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000, "random": 5.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293860970699996, 48.857565579199999 ], [ -122.309739520700006, 48.866004975300001 ], [ -122.309741426499997, 48.883469732099996 ], [ -122.320569675100003, 48.884244666400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800, "random": 70.17 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.812114513899999 ], [ -122.383224272700005, 47.809751709099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000, "random": 21.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.684279966800005, 47.508587719 ], [ -117.587167089, 47.570828087099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000, "random": 135.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.836474754700006, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000, "random": 121.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.103599726200002, 47.668444842 ], [ -122.0997715333, 47.665699589200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100, "random": 161.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.731371050600004, 46.690374335400001 ], [ -123.736102562400006, 46.693707214699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000, "random": 40.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278341099800002, 47.5080120111 ], [ -122.278866618600006, 47.503633281500001 ], [ -122.270295565200001, 47.4970013804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000, "random": 30.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329550276199996, 47.704780986599999 ], [ -122.327158730700006, 47.713627215899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600, "random": 32.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.735491287399995, 46.552653248200002 ], [ -121.691047104199995, 46.576150272900001 ], [ -121.686166017900007, 46.5905859513 ], [ -121.6750836999, 46.602182966400001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000, "random": 172.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.232465395200002 ], [ -122.432112725699994, 47.233323158899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": null, "random": 115.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.874718310899993, 47.233060459900003 ], [ -119.8700407404, 47.233113436300002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000, "random": 94.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.795776139500006, 47.488786529400002 ], [ -121.796723100400001, 47.488245636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000, "random": 58.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643433158400001, 48.306580660599998 ], [ -122.638014144300001, 48.311229020200003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000, "random": 181.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332482108500002, 47.534523388 ], [ -122.335020042799997, 47.539161601099998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000, "random": 46.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.930069412099996, 46.1160931581 ], [ -122.926866154, 46.121632499500002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300, "random": 31.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.107970430400002, 46.858858882100002 ], [ -124.099491124899998, 46.8588806371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900, "random": 94.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451869323400004, 45.910112283700002 ], [ -122.446916738200002, 45.910167278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": null, "random": 148.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.654043935600001, 47.599084438699997 ], [ -120.646298814600001, 47.596485754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000, "random": 115.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.449533775800006, 46.503965486799999 ], [ -120.413722501899997, 46.485627965600003 ], [ -120.400418780199999, 46.474277949700003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400, "random": 129.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451970973200005, 45.905929542300001 ], [ -122.449036129199996, 45.907485293199997 ], [ -122.451869323400004, 45.910112283700002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000, "random": 61.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670439506700006, 45.632577207799997 ], [ -122.672677226600001, 45.632554433599999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000, "random": 27.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953823151799995, 46.748781150699998 ], [ -122.947883190100001, 46.753357173300003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000, "random": 34.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.178835770500001, 46.729585266299999 ], [ -117.179908097500004, 46.729629926199998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300, "random": 86.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.299169540199998 ], [ -118.276819223, 46.297266298 ], [ -118.223122036800007, 46.277953835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000, "random": 156.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269011183299995, 47.437789766599998 ], [ -122.263346709499999, 47.459854487900003 ], [ -122.268748856399995, 47.472178548899997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400, "random": 43.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.187576040799996, 46.647802853599998 ], [ -117.191547868499995, 46.659965461299997 ], [ -117.198894176899998, 46.666906221 ], [ -117.195441231, 46.674302085800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200, "random": 48.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.889896867600001 ], [ -122.724042039, 47.912670494899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000, "random": 75.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.315010283700005, 46.3792337657 ], [ -120.316103289400004, 46.377988710799997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000, "random": 195.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.591651933099996, 48.350216857600003 ], [ -119.591078218299998, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800, "random": 26.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.062662945900001, 48.175291644300003 ], [ -117.052759201, 48.175989763899999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000, "random": 69.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661703215100005, 45.643383049100002 ], [ -122.661702096400006, 45.644626475400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": null, "random": 160.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854070022599998, 47.088382438799997 ], [ -119.834701650499994, 47.1010560076 ], [ -119.823953648699998, 47.1032398754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900, "random": 11.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.057602940899997, 47.0916817763 ], [ -122.045870413800003, 47.099088973599997 ], [ -122.045497248800004, 47.103424531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400, "random": 162.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545504734600001, 48.015191195900002 ], [ -122.560413762099998, 48.026229210899999 ], [ -122.566855818400001, 48.045068422600004 ], [ -122.568239859100004, 48.088513600600002 ], [ -122.587677712100003, 48.121059934599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000, "random": 195.365 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297484794799999, 47.9152081943 ], [ -122.300115628599997, 47.918585403900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": null, "random": 194.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.317045772100002, 47.429466244099999 ], [ -120.317659566200007, 47.430224949500001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000, "random": 145.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.513846497499998, 48.416820343 ], [ -119.51157568, 48.416808021500003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400, "random": 15.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.024621875199998, 45.625404013100002 ], [ -122.016374166199995, 45.631952482800003 ], [ -122.008840982300001, 45.6309029624 ], [ -121.9860480217, 45.641372188699997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000, "random": 183.945 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.720192553399997, 48.972556366299997 ], [ -122.732842367800004, 48.984169559599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000, "random": 88.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657856322499995, 48.288349140299999 ], [ -122.657848881700005, 48.289541012699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": null, "random": 30.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.526300065599997, 46.970960180100001 ], [ -120.497732858, 46.970479080600001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700, "random": 48.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.041926287600006, 46.221991493099999 ], [ -120.002713399300006, 46.212166620799998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000, "random": 78.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220202578699997, 47.407237497300002 ], [ -122.2207233046, 47.415683315800003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000, "random": 73.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082356505600004, 46.248275294300001 ], [ -119.082086450299997, 46.2486605032 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860, "random": 102.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.355639000400004, 45.989233166399998 ], [ -122.364778925899998, 45.992938942 ], [ -122.364992514899996, 45.997101925700001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700, "random": 82.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.549998759200001 ], [ -120.375045609799997, 46.549398523800001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900, "random": 125.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.632513277399994, 46.186802706800002 ], [ -119.664030351799994, 46.187236132099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": null, "random": 67.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.106952077800003, 47.402903720600001 ], [ -119.0663191716, 47.405924539200001 ], [ -119.042294462100003, 47.385609201599998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100, "random": 58.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.956100259400003, 46.526670455900003 ], [ -121.957297598699995, 46.535353420699998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600, "random": 91.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.415063311300003, 46.070678448300001 ], [ -118.376473190699997, 46.071652278400002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800, "random": 188.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202529349100004, 48.8159609661 ], [ -122.195484263400004, 48.820649558100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000, "random": 166.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547235864699999, 45.811720037800001 ], [ -122.546985666500007, 45.816821755600003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000, "random": 86.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000, "random": 177.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.826985228699996, 46.970870741799999 ], [ -123.826102687499997, 46.970061214099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000, "random": 70.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.947829976099996, 47.035821079100003 ], [ -122.931624680400006, 47.027755501100003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000, "random": 84.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.993987434899999 ], [ -122.735394202600006, 49.002070207099997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000, "random": 102.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.293808411900002, 46.314192016500002 ], [ -119.286240130699994, 46.308479073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000, "random": 163.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305106573299994, 47.943574850099999 ], [ -122.304446133300004, 47.944617216399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900, "random": 18.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.689080403600002, 47.153353215400003 ], [ -121.659291020300003, 47.159135812800002 ], [ -121.619821252, 47.133142341 ], [ -121.612406941700002, 47.121064557099999 ], [ -121.5963308595, 47.107346350699999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500, "random": 97.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223590741300001, 47.620646532 ], [ -117.223631723799997, 47.6278867921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300, "random": 22.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.886809233699999 ], [ -124.1042063039, 46.886859147400003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900, "random": 93.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.877039614300003, 46.547358720600002 ], [ -122.875264102299994, 46.547352524099999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900, "random": 95.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320664178399994, 48.920195997 ], [ -122.321912505200004, 48.920192245499997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400, "random": 164.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.358974689600004, 46.893314978799999 ], [ -122.357382771900006, 46.929736850399998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400, "random": 121.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351531242299998, 47.9748188959 ], [ -122.352094649099996, 47.974724356899998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000, "random": 160.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.000372751800001, 46.1639381329 ], [ -122.996112927300004, 46.161845104900003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000, "random": 166.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111416419500003, 47.8021101024 ], [ -122.1053446624, 47.810401153900003 ], [ -122.065493119899998, 47.817931230100001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000, "random": 22.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.631602476200001 ], [ -122.665955536300004, 45.631898547 ] ] } } ] } diff --git a/examples/data/origdata/lines_c_wsdot_aadt.geojson b/examples/data/origdata/lines_c_wsdot_aadt.geojson new file mode 100644 index 0000000..b425e2c --- /dev/null +++ b/examples/data/origdata/lines_c_wsdot_aadt.geojson @@ -0,0 +1,4886 @@ +{ +"type": "FeatureCollection", +"name": "lines_c_wsdot_aadt2", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1922237193, 47.3773145311 ], [ -120.1403017666, 47.3713844944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209227556, 45.5721542335 ], [ -122.29949512, 45.571607305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.3260483397, 47.6867923802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2673512221, 47.2007333641 ], [ -122.2604202074, 47.2012176284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832090078, 47.3836367426 ], [ -119.4832316128, 47.3884806862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940086764, 47.2249092263 ], [ -122.293850203, 47.2500481115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.1254917575 ], [ -119.2815617176, 47.1297537126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555936398, 47.8589452723 ], [ -117.3577112718, 47.8814244662 ], [ -117.3523268647, 47.8961954425 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8752641023, 46.5473525241 ], [ -122.8650512546, 46.5465667665 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2105622712, 47.4554072848 ], [ -123.2127462556, 47.4576868663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0687629907, 46.3226150928 ], [ -120.0440296636, 46.3075497622 ], [ -120.0285168926, 46.3059630059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2219122891, 47.6270557243 ], [ -120.2084267507, 47.6265613257 ], [ -120.1950551418, 47.6327544789 ], [ -120.1809857702, 47.6313450664 ], [ -120.1479862888, 47.6503824795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1193130939, 48.0535474274 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3005913938, 47.4765744345 ], [ -120.2973152366, 47.5006578675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1084617824, 47.8738712824 ], [ -120.1019008002, 47.8648083629 ], [ -120.0721004876, 47.859499395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0894657528, 46.2734887506 ], [ -119.0934185999, 46.2851671356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2217568694, 47.194537858 ], [ -122.212761856, 47.1970266396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799148927, 47.5984958939 ], [ -122.1862318775, 47.6058898709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.4051129342 ], [ -119.5213520361, 48.4038791845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1265910273, 47.2001121701 ], [ -123.1018056421, 47.1837746945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.1813621929 ], [ -120.8081625673, 47.19291613 ], [ -120.7730682265, 47.1959969886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3325641688, 48.8145942815 ], [ -122.327035238, 48.8181848035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045734555, 47.6490440633 ], [ -122.3036135383, 47.6515712549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5884939945, 46.6478136609 ], [ -118.5565118981, 46.6435530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9202563007, 47.8731183295 ], [ -119.9168716778, 47.8830195848 ], [ -119.9175688105, 47.9042347352 ], [ -119.888689271, 47.925649692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3181975005, 47.8175907621 ], [ -122.3150855528, 47.8211917901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339339028, 47.4005463581 ], [ -117.7937991559, 47.4331327858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3920677701, 47.6528570613 ], [ -117.3930264257, 47.6536012073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616900184, 48.0042963392 ], [ -122.4676875773, 48.0079051908 ], [ -122.531073695, 48.0085360069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2789804626, 47.867386825 ], [ -122.2756369244, 47.8708807894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5609895827, 46.3647132472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3260483397, 47.6867923802 ], [ -122.32907164, 47.6943145242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4710716591, 47.2737539701 ], [ -119.4826447809, 47.3232113182 ], [ -119.4756411869, 47.3509675109 ], [ -119.4791481927, 47.3691228237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6882400113, 47.6692766526 ], [ -122.6900708232, 47.6742545713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3773305642, 48.5155613349 ], [ -122.3786436215, 48.5169464302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4817145594, 47.7503088944 ], [ -118.4711275269, 47.7344847908 ], [ -118.3936449799, 47.6932837218 ], [ -118.3442644432, 47.6573447006 ], [ -118.3165261274, 47.6448669186 ], [ -118.2186138675, 47.6426665493 ], [ -118.1788708956, 47.6503359058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.2074211012 ], [ -121.9888740579, 47.2031602024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5299932781, 47.9150697025 ], [ -124.5344288985, 47.9127912202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8042667838, 47.4677635998 ], [ -122.7922032406, 47.476414011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4611233972, 47.2285063751 ], [ -122.46060986, 47.2297520929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.0718480284 ], [ -122.1116525558, 48.0918800123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6286423009, 48.325690041 ], [ -122.6303344465, 48.3337416853 ], [ -122.6260671635, 48.3402015788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2311497101, 47.1220696502 ], [ -117.235609286, 47.1247339542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0309120554, 46.7587001203 ], [ -121.9814105695, 46.7572813912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135449594, 48.7213796222 ], [ -117.4135771849, 48.7285818258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4059782511, 47.8001660961 ], [ -117.4074639212, 47.8123509195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3365632968, 47.2450397981 ], [ -122.3353775602, 47.2512222204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.2534933593 ], [ -122.4363679452, 47.2544445506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0933468628, 46.1991336316 ], [ -119.1012238708, 46.2052016642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1911483543, 47.5183415887 ], [ -117.1974475198, 47.5227002331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7397102898, 46.7012896138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959583754, 47.4506600917 ], [ -122.2916171614, 47.4596862569 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397118795, 47.6707021684 ], [ -117.2396318808, 47.6716727121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933744977, 46.4150549766 ], [ -120.3959492409, 46.4169433277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6734966352, 46.3612844656 ], [ -122.650489049, 46.3557399918 ], [ -122.6382937487, 46.3654953749 ], [ -122.6200459422, 46.3718240773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2765740876, 47.8734029921 ], [ -122.2777737236, 47.879481564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2143023696, 46.4117358872 ], [ -117.2060959145, 46.4151094256 ], [ -117.1848415097, 46.4126701464 ], [ -117.1634328434, 46.4240635088 ], [ -117.1438680931, 46.4278013383 ], [ -117.0874609685, 46.4153003586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6334221513, 45.6184980719 ], [ -122.6266798027, 45.6184887446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0436033456, 46.3778943675 ], [ -123.0368091721, 46.3974067466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0250689519, 47.8360845439 ], [ -120.0239885328, 47.836037193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499497496, 45.7806466337 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.4527245935 ], [ -122.8201543029, 47.4545979618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832088344, 47.3835435175 ], [ -119.4832090078, 47.3836367426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2346365429, 48.3169213007 ], [ -122.2366632871, 48.3204677227 ], [ -122.2321815344, 48.32047636 ], [ -122.2326302599, 48.3235497417 ], [ -122.2091366451, 48.3331360287 ], [ -122.20310466, 48.3476787003 ], [ -122.2067256114, 48.3642645921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.0085360069 ], [ -122.5339872909, 48.0097622963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0547386882, 46.9253808035 ], [ -117.0395144382, 46.9302931184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.3543537474 ], [ -123.7157590122, 46.3489750762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.6837937197, 47.1293370288 ], [ -120.7051341774, 47.1629714624 ], [ -120.7023177917, 47.1754533511 ], [ -120.7067796881, 47.1840974012 ], [ -120.7080243736, 47.2036487713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958194243, 47.3530329299 ], [ -122.2946343778, 47.3643588625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6177931336, 47.3660514733 ], [ -122.6156699298, 47.3867506969 ], [ -122.624274168, 47.4020537577 ], [ -122.624470827, 47.4111862674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5325801467, 47.7818048655 ], [ -117.5272372278, 47.7876435363 ], [ -117.5354467442, 47.7978975469 ], [ -117.5536352201, 47.8043838824 ], [ -117.5553559852, 47.8104238423 ], [ -117.5692400943, 47.8125064907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0395375143, 48.1839762284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0905398888, 46.8217373497 ], [ -123.0798684236, 46.8216532259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2715285544, 48.9748696672 ], [ -122.2650050712, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3370917545, 47.4657444174 ], [ -120.3384219874, 47.4671390718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1844675978, 48.0584615787 ], [ -122.1847688223, 48.0681379541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1030345042, 47.677801453 ], [ -117.0542260413, 47.6939743273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.0903093008 ], [ -122.6305634117, 47.0911974641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -118.9998507933, 47.9597933478 ], [ -119.0016246215, 47.9560020349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4171863107, 48.1123263385 ], [ -123.404306887, 48.1071331596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7066290132, 47.5247891631 ], [ -122.6974328926, 47.5290055297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930223395, 47.1364690107 ], [ -122.2929693831, 47.1402423696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.9794731965 ], [ -122.1697766801, 47.9782340718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2010578056, 47.8100663059 ], [ -122.1943284707, 47.8116126602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0258249511, 46.1766934283 ], [ -123.0304642178, 46.1645370289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.1738772879, 47.1121270494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -119.0018417526, 47.9714245764 ], [ -118.98586136, 47.9716814731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2255548441, 48.5141869713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1262630128, 46.6018315229 ], [ -123.0966056992, 46.6268683975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2662889573, 47.055615833 ], [ -123.2652259391, 47.0556339624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0614923955, 46.8642889165 ], [ -124.0521133187, 46.8710825521 ], [ -124.0439366003, 46.8923982723 ], [ -124.0040591243, 46.8921353893 ], [ -123.9890755509, 46.9098779782 ], [ -123.9365577148, 46.9230494022 ], [ -123.9197831063, 46.931113491 ], [ -123.8673289312, 46.9433556183 ], [ -123.8480154625, 46.9435702245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969102286, 47.5026900234 ], [ -122.1949845235, 47.5021417776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7534494161, 45.9236451726 ], [ -122.7604926179, 45.9331454264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.5344542826 ], [ -122.5170315735, 46.5330350165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2776857935, 48.8435345933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159492661, 47.2571623867 ], [ -122.5159507876, 47.2584346491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7078176969, 48.1979655963 ], [ -117.7153794817, 48.2082318736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3290774024, 47.5942483647 ], [ -122.3297505745, 47.5932743791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018126834, 45.8933986585 ], [ -122.4525420007, 45.8955411657 ], [ -122.4519709732, 45.9059295423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2866459043, 47.0557293212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8857507292, 46.5838092047 ], [ -122.8838617499, 46.5838405084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.7802658991 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0929136587, 48.0727563835 ], [ -123.0602108175, 48.0644077043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055508584, 45.5906041586 ], [ -122.4001255166, 45.5869987019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.8236282381, 45.6963748835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6889327532, 47.3381121478 ], [ -118.6995142736, 47.3563618481 ], [ -118.6991242989, 47.3709132653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.6683085988, 48.2948724981 ], [ -119.626284036, 48.3081932192 ], [ -119.6069922762, 48.3197133157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.2322639062 ], [ -123.9454549934, 47.2361778754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578697003, 48.2871805041 ], [ -122.6578563225, 48.2883491403 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5178867416, 47.8084398669 ], [ -122.5036732886, 47.8027461252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6622739757, 45.6359541769 ], [ -122.6617032151, 45.6433830491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9144562174, 46.3202165297 ], [ -122.9095978806, 46.3282371415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7834183624, 47.4410207892 ], [ -117.6947330224, 47.501473805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349389318, 47.2327862223 ], [ -122.4231498311, 47.236217271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351426952, 48.421566968 ], [ -122.3410552917, 48.4313110136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8899669956, 47.507262303 ], [ -121.8642395904, 47.5111841759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9560547959, 47.9246186729 ], [ -118.9422723546, 47.9168139511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8535287712, 47.1322250265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0376452727, 47.2410571348 ], [ -121.0465852827, 47.2442852642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3851698428, 47.4416448647 ], [ -117.3846465219, 47.4488701305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0391231637, 46.4202563296 ], [ -117.0389677607, 46.4202679171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3025873431, 47.4686065666 ], [ -120.2997979412, 47.4682860937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7663244649, 47.4942350849 ], [ -122.7350085187, 47.5157381772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4004321611, 45.9963687794 ], [ -122.4160233566, 45.9925843034 ], [ -122.4240462352, 45.9831575594 ], [ -122.4609396952, 45.9952678398 ], [ -122.5034799431, 45.9983583464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0501760455, 46.4755815152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4028330225, 47.1110883316 ], [ -118.3796443329, 47.1117747241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.0951016391, 47.4382498075 ], [ -117.0779731302, 47.442965311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3023056898, 46.2676765369 ], [ -119.2905873773, 46.2611443687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3815863213, 47.8032716419 ], [ -122.3832557827, 47.8034144615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1514985886, 47.5062570131 ], [ -122.1429848329, 47.5057588479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095625837, 47.0558186162 ], [ -123.0065316221, 47.0552123027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844861848, 47.2982208758 ], [ -122.2721730722, 47.3039622013 ], [ -122.2563579686, 47.3028065567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.6585103049, 48.1402801323 ], [ -117.6860630929, 48.148122845 ], [ -117.7037053316, 48.1707366815 ], [ -117.7005163888, 48.1889954329 ], [ -117.7078176969, 48.1979655963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3435956074, 47.6246542116 ], [ -122.3436176395, 47.6252248523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1273008596, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6257721122, 47.4000022997 ], [ -122.6242524897, 47.402892309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5666907268, 48.114021332 ], [ -123.561617171, 48.1030684118 ], [ -123.5537509538, 48.0996615302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6849142545, 46.0415021587 ], [ -118.6692405052, 46.0403350228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2137802603, 47.9942207425 ], [ -122.2138635159, 47.9989436144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7457821436, 46.6828253187 ], [ -123.7367980221, 46.6805525735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0563552656, 47.9153765852 ], [ -119.0380002259, 47.9325544575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.2402395389 ], [ -119.0854605595, 46.245260658 ], [ -119.0823565056, 46.2482752943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1375909505, 48.9171432802 ], [ -122.1322464977, 48.9173156398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8455160853, 47.415535475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3939306113, 48.2869815122 ], [ -124.3487894025, 48.2702583288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340520373, 47.2230930942 ], [ -122.4250777648, 47.2230824389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1137494257, 47.8050106332 ], [ -122.1118699043, 47.8049010687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8883863985, 46.9801777553 ], [ -123.8874051323, 46.9794818062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802579386, 47.804112396 ], [ -122.3815863213, 47.8032716419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0277101274, 47.8474213611 ], [ -120.0202611393, 47.8413912452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4744048469, 48.9644201365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356457951, 47.2494493698 ], [ -122.436113822, 47.2534933593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856871492, 48.8695370939 ], [ -122.4856549623, 48.8698410399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7622997913, 46.31964321 ], [ -122.7323106527, 46.3245338278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8640137768, 47.2332276959 ], [ -119.8587943416, 47.2333342522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7770276759, 48.649473503 ], [ -118.7391181737, 48.6476256888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9823417916, 47.8127801291 ], [ -121.970995859, 47.8259643642 ], [ -121.9694473416, 47.8430757428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1766955576, 47.5724700872 ], [ -122.174140027, 47.5778363862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2268964445, 47.8867919049 ], [ -122.2159243491, 47.8953256029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.1421956268 ], [ -122.0564566441, 47.1405104825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.0572059596 ], [ -123.9287037815, 47.0601524957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2280903322, 47.9083247357 ], [ -122.2233288919, 47.9095861548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4105333679, 47.412298435 ], [ -121.4002907153, 47.3993957355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9656135911, 47.858227985 ], [ -121.9638147974, 47.8578165968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340284894, 45.6462602442 ], [ -122.6163705941, 45.6478697622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.9187733832 ], [ -122.7404887482, 45.9171006476 ], [ -122.741223238, 45.913180857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3513796962, 45.9446481587 ], [ -119.3350044738, 45.9455289592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.9810452868 ], [ -123.9062715578, 46.9810823154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0215352259, 46.3175795065 ], [ -124.0286534428, 46.311088406 ], [ -124.0415185162, 46.3088525506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2754372301, 47.0555807313 ], [ -123.2662889573, 47.055615833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2439880813, 47.3740667238 ], [ -122.2442490763, 47.3856159218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3174867795, 48.4356661942 ], [ -122.3133909339, 48.4356182605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.9818766144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.1033095374 ], [ -118.3877812751, 47.1104919463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.7023795423 ], [ -119.4186609734, 48.6884346356 ], [ -119.3587578096, 48.6725327308 ], [ -119.3466152635, 48.6636563193 ], [ -119.3303173221, 48.6585990657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7931037677, 46.617894857 ], [ -117.8115600109, 46.6379634079 ], [ -117.8063279649, 46.6553619757 ], [ -117.7983218662, 46.6661079567 ], [ -117.8154114815, 46.6748014633 ], [ -117.8035001513, 46.6863405276 ], [ -117.7939941091, 46.689334233 ], [ -117.7839885351, 46.7092148338 ], [ -117.7533189568, 46.7361703665 ], [ -117.7312634359, 46.7380609644 ], [ -117.7294282626, 46.7486084104 ], [ -117.7158828796, 46.7583207914 ], [ -117.7043255452, 46.7738226067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8466345144, 47.0432987731 ], [ -122.8322700503, 47.0459335687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2337989939, 47.1915311175 ], [ -122.2217568694, 47.194537858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7651140331, 47.0629504411 ], [ -122.7648711374, 47.0612918893 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.8311196925, 46.7198868797 ], [ -123.846375426, 46.71976203 ], [ -123.8573903297, 46.7294966365 ], [ -123.875915207, 46.7307655351 ], [ -123.8845152186, 46.7436092547 ], [ -123.8841812425, 46.749824761 ], [ -123.8906555633, 46.7520952605 ], [ -123.9166124942, 46.7438549649 ], [ -123.9263452217, 46.7256804588 ], [ -123.9472489197, 46.7258811772 ], [ -123.9742906306, 46.7404871457 ], [ -123.9900095006, 46.7320277366 ], [ -124.0203997477, 46.7246504747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2973152366, 47.5006578675 ], [ -120.2970255151, 47.5111002228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8906915475, 46.5450662647 ], [ -117.8745068603, 46.5453492398 ], [ -117.8562732625, 46.5369650839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6957500975, 47.3044682452 ], [ -120.6919262643, 47.3189008424 ], [ -120.6706596611, 47.3260826644 ], [ -120.6285638874, 47.3350952018 ], [ -120.6108972417, 47.3314579592 ], [ -120.5922999578, 47.3366776893 ], [ -120.5808735402, 47.3353309836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0454972488, 47.103424531 ], [ -122.0470850116, 47.1062792018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2862401307, 46.308479073 ], [ -119.2975114504, 46.3001018541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3989176751, 46.3702741916 ], [ -119.346211276, 46.3415217482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1080928359, 48.0132540479 ], [ -122.1099317298, 48.0262394664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9099882327, 47.8113401111 ], [ -122.918842027, 47.8022660378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2969810046, 47.4206856987 ], [ -120.2947757571, 47.4153242228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.4859844964, 46.5456788983 ], [ -122.4858227533, 46.5364298713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.7266981663 ], [ -120.7921152532, 46.7356473477 ], [ -120.7884944778, 46.7483083341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9894375686, 48.5890571016 ], [ -118.0155804532, 48.600051746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832316128, 47.3884806862 ], [ -119.483234393, 47.3893726474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929693831, 47.1402423696 ], [ -122.2929747612, 47.1553108605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4077199663, 45.6106168272 ], [ -122.4071070263, 45.6049828823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3831477693, 46.998968611 ], [ -123.3765852382, 46.990906447 ], [ -123.3417045343, 46.9717882087 ], [ -123.3294181035, 46.960126358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269502017, 47.4085571911 ], [ -122.3327432015, 47.408543256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1318940785, 46.233167577 ], [ -119.1277899267, 46.2435755653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.5397640332 ], [ -117.5783005683, 48.5448469139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1099088867, 46.9701523567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6654874391, 45.6200688002 ], [ -122.6581170517, 45.6185588654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6032429154, 47.7771222102 ], [ -122.5869526009, 47.7962217258 ], [ -122.5733355827, 47.8027671644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3029610908, 47.4095632747 ], [ -120.3035547655, 47.410929097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6904808118, 45.8157027044 ], [ -122.6873276483, 45.815867042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.3544077565 ], [ -122.6174730359, 47.3653428749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.4747937676 ], [ -117.5560127138, 46.4751416428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4716805803, 46.5315434526 ], [ -120.4693962361, 46.5221425225 ], [ -120.4558097511, 46.5163581409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9728133998, 47.3032197247 ], [ -117.9722788914, 47.3073278653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8657551158, 46.4709082251 ], [ -122.8491311695, 46.4661882079 ], [ -122.8425140234, 46.4589718006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067680743, 48.8981282277 ], [ -122.6369094129, 48.9223479428 ], [ -122.6562396315, 48.9328552001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1118699043, 47.8049010687 ], [ -122.1116803023, 47.8021510795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2163760183, 47.8727847101 ], [ -122.2148947405, 47.8742828444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3464591984, 46.0510569216 ], [ -118.3460982766, 46.053273733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.4028330225, 47.1110883316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9542721665, 46.5167411946 ], [ -121.9544576073, 46.5216015582 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2077141546, 47.8063531965 ], [ -122.2076567487, 47.8095958449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3844324012, 47.6538454237 ], [ -117.3812522854, 47.6538559571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7360398713, 48.9865050839 ], [ -122.7349383438, 48.9890983509 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7396338722, 47.8911395035 ], [ -122.7323375199, 47.8898968676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8449429934, 47.1094620687 ], [ -119.8324499347, 47.1042259268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487788952, 46.3406500803 ], [ -117.0501999692, 46.3407700726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6934989729, 47.5042678567 ], [ -117.7071635421, 47.5067188922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2745076704, 48.4947462696 ], [ -122.269198387, 48.4967354264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3764731907, 46.0716522784 ], [ -118.3592834167, 46.069578111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876098497, 46.1378429021 ], [ -122.9772037818, 46.1314750359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9699337226, 47.859195632 ], [ -121.9656135911, 47.858227985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0557206222, 47.1388187332 ], [ -122.0562728458, 47.1405796821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0465852827, 47.2442852642 ], [ -121.0567745234, 47.2489122397 ], [ -121.0584176535, 47.257382574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0203997477, 46.7246504747 ], [ -124.0529293689, 46.7278782014 ], [ -124.0776344175, 46.7398991912 ], [ -124.0803644861, 46.7452804885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8764960512, 46.187636732 ], [ -119.8533745816, 46.1859133588 ], [ -119.7720886189, 46.1957457749 ], [ -119.7518491007, 46.203691501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6833369779, 45.6328269221 ], [ -122.6914263595, 45.6358581387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5930897565, 47.6429188126 ], [ -117.5905461616, 47.6429198089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9627838072, 46.122637066 ], [ -122.9506147609, 46.1164898023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2069786865, 47.8783103437 ], [ -122.2066756596, 47.8885941556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.2613892962 ], [ -119.4819452858, 46.2520832532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1010693917, 47.9456237913 ], [ -122.1014661015, 47.9532966926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.1016300232, 48.1547517197 ], [ -117.0626629459, 48.1752916443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4352497488, 47.247047007 ], [ -122.4356457951, 47.2494493698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4491781665, 48.7760427514 ], [ -122.4452973982, 48.7767299988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282535153, 47.6874070809 ], [ -122.1216151872, 47.6765956856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5320368544, 47.6720530531 ], [ -122.5393560124, 47.6795086708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.5086822913 ], [ -120.6306952505, 47.5117651765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078625453, 46.9528052372 ], [ -122.9142238248, 46.952800067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1702535399, 46.7278386224 ], [ -117.1676525064, 46.7262385037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9694473416, 47.8430757428 ], [ -121.9701538655, 47.8449608786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8281981659, 46.3913609219 ], [ -123.8208903441, 46.382916336 ], [ -123.8026031248, 46.3760022496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0867515262, 46.2655755624 ], [ -119.0894657528, 46.2734887506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2933970337, 47.9108132967 ], [ -122.2974847948, 47.9152081943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422944621, 47.3856092016 ], [ -118.8779127198, 47.3299221964 ], [ -118.8574529391, 47.3194821919 ], [ -118.8085220192, 47.3154321744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3873706387, 46.4670041855 ], [ -120.3487396874, 46.4448370306 ], [ -120.3388625978, 46.4245692837 ], [ -120.3200293789, 46.4169522648 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.9328552001 ], [ -122.6717054661, 48.9414820309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2855990411, 47.2943430614 ], [ -121.2804778056, 47.2793125532 ], [ -121.2700379923, 47.2712377268 ], [ -121.2354555076, 47.2675076438 ], [ -121.1938148872, 47.2533046274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3938232704, 47.1581372397 ], [ -122.3637186054, 47.1582777108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7482397955, 48.9864873577 ], [ -122.7514620424, 48.9886011741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3057217067, 48.3394359548 ], [ -122.2954733672, 48.3369797762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2149004639, 48.1767680441 ], [ -124.2030181472, 48.1804550312 ], [ -124.1958320085, 48.1776212387 ], [ -124.1651364154, 48.1913499188 ], [ -124.1568931216, 48.1895403281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9161184136, 46.92713066 ], [ -121.963812764, 46.9377729595 ], [ -121.9797784534, 46.9518926584 ], [ -121.9921794341, 46.953076988 ], [ -122.0038358385, 46.9609913498 ], [ -122.0181933196, 46.9787080824 ], [ -122.0159365761, 46.9942734533 ], [ -122.0378595927, 47.0138315263 ], [ -122.0395446219, 47.033662887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2471159221, 48.9855358738 ], [ -122.2478579965, 48.9927289918 ], [ -122.2628122677, 48.9927495948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1906863712, 47.8382800486 ], [ -117.1758197528, 47.8346000768 ], [ -117.1685156881, 47.8473257512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329141514, 47.5710682046 ], [ -122.6329070414, 47.5726953913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1768999971, 47.2389448117 ], [ -121.1674102459, 47.2309146691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904031135, 47.7736472661 ], [ -122.1954185124, 47.784730909 ], [ -122.2064752256, 47.7910831404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2501056872, 47.4783678971 ], [ -118.2546693813, 47.479786644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9232462415, 46.7732075734 ], [ -122.9104250154, 46.7795778822 ], [ -122.8948463321, 46.7986803418 ], [ -122.8750274612, 46.7955222634 ], [ -122.8635507845, 46.8063295169 ], [ -122.8615475437, 46.8501099194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049767143, 48.8323888064 ], [ -122.296485317, 48.8400447632 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.2157321624, 47.8782642533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8071947642, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2999619988, 47.6603776807 ], [ -122.298324518, 47.6610600414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219018806, 47.3326977386 ], [ -122.3177802121, 47.3354233521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6583512026, 47.8711608541 ], [ -122.6392561156, 47.8677305236 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5563050504, 45.6167350271 ], [ -122.5630189407, 45.6418660754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7608305412, 48.1125877254 ], [ -122.7602906483, 48.11202882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205696751, 48.8842446664 ], [ -122.3205534208, 48.891030585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1788708956, 47.6503359058 ], [ -118.16241258, 47.6536361132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2913576024, 47.8992527084 ], [ -122.2929510336, 47.905080688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2359630516, 47.0980998127 ], [ -119.1774124503, 47.0928575254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5604385799, 47.2858209621 ], [ -122.5695221755, 47.2976027952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1449657103, 47.7821349681 ], [ -122.1440770168, 47.7838492646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.0517882972 ], [ -122.1592829547, 48.0537110655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1876596894, 47.7659065312 ], [ -122.1904031135, 47.7736472661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9572975987, 46.5353534207 ], [ -121.90788364, 46.5340788266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9031806451, 48.0520592106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446131424, 47.3498974886 ], [ -122.2445299041, 47.3611482288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.4846758275 ], [ -122.2525911983, 47.4840343924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0915871421, 47.1407602078 ], [ -122.077350334, 47.1390929944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3895048351, 46.0116896783 ], [ -118.3888808965, 46.0238641947 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9785905771, 46.3125656122 ], [ -119.9791440454, 46.3170643063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7003253167, 47.7576668992 ], [ -118.6135280944, 47.7578991582 ], [ -118.547873384, 47.7633985376 ], [ -118.5164209056, 47.7586626614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3176595662, 47.4302249495 ], [ -120.319453417, 47.432412369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.41797883, 48.1138577083 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.5747409161 ], [ -122.1068419882, 47.5689365485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3673481617, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.7789719928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.4721425859 ], [ -120.3235459955, 47.4769045316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1511179931, 47.883422456 ], [ -120.1295906216, 47.8811242831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3352211475, 47.7132173725 ], [ -121.290688, 47.7127258764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8855586956, 46.2431363274 ], [ -122.8844965185, 46.2561969531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6668848781, 47.0903196406 ], [ -118.6669042924, 47.0988351268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9318997964, 48.2706730135 ], [ -121.9062086717, 48.2750002287 ], [ -121.8887436919, 48.2715237891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0740899923, 47.2211975001 ], [ -117.0730012011, 47.2221634757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2443021409, 47.3027122504 ], [ -122.2329381771, 47.3035228844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9076435518, 46.2769325247 ], [ -122.9056916194, 46.2824568896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.6490400174 ], [ -121.1552091714, 45.6491568269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.9987590553 ], [ -119.6579299947, 47.9994661851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2185549591, 45.5661709399 ], [ -122.2012990567, 45.5698716059 ], [ -122.1952852836, 45.5744734955 ], [ -122.1926793172, 45.5847363585 ], [ -122.1788052048, 45.588814009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2043471222, 47.9819297636 ], [ -122.2057386717, 47.9819494434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5684177308, 46.7947224844 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.3444983864, 47.6942136653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9157314952, 46.1667895778 ], [ -122.9119035401, 46.1765920328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0373692153, 45.6641740956 ], [ -120.9810776369, 45.663863346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5915790813, 46.4740027276 ], [ -117.564276224, 46.4747937676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0677060263, 47.3008399269 ], [ -120.0660840825, 47.2782486825 ], [ -120.0772210514, 47.2539372425 ], [ -120.0729382811, 47.2433041563 ], [ -120.0578994726, 47.236158248 ], [ -120.0352275188, 47.2371715429 ], [ -119.9991848792, 47.2312647073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2229369627, 47.5343029792 ], [ -124.2731333424, 47.5407820544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241882947, 46.1498712277 ], [ -119.0298502289, 46.1536456355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434428667, 48.9313503294 ], [ -122.1515895973, 48.9460909964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135246441, 47.2896891115 ], [ -122.3006527009, 47.2899013547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7448931286, 45.8153696587 ], [ -122.7319332222, 45.815377897 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135712365, 47.2861343941 ], [ -122.3135246441, 47.2896891115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9972196495, 45.8575744394 ], [ -120.9526232876, 45.8609528341 ], [ -120.9521625359, 45.8499382636 ], [ -120.9420523635, 45.8461706302 ], [ -120.9368329014, 45.8325800913 ], [ -120.90654952, 45.8319001408 ], [ -120.9044761844, 45.8247380049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2515257215, 46.0417663171 ], [ -117.2441804807, 46.0447999212 ], [ -117.2380954947, 46.0571340349 ], [ -117.2390964135, 46.0506182014 ], [ -117.2352747181, 46.0504150878 ], [ -117.2398123566, 46.0452544415 ], [ -117.2301501473, 46.0513421257 ], [ -117.2303844377, 46.054464388 ], [ -117.2342914445, 46.0534318514 ], [ -117.2289228871, 46.0662303226 ], [ -117.2172844158, 46.0720892771 ], [ -117.2090263073, 46.0707833675 ], [ -117.2102099243, 46.0742553436 ], [ -117.1872269675, 46.0799763775 ], [ -117.1775707316, 46.0877797821 ], [ -117.1594657515, 46.0904525526 ], [ -117.14576963, 46.0998598289 ], [ -117.1354669642, 46.1156767211 ], [ -117.130739594, 46.1379000516 ], [ -117.1217205642, 46.148960802 ], [ -117.0817036198, 46.1745074608 ], [ -117.0792404746, 46.1865400964 ], [ -117.0715404689, 46.1959222812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.5343812278 ], [ -117.9055307646, 48.5363629877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9261218499, 46.1229717137 ], [ -122.925898762, 46.1234239447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9564753528, 46.7112869506 ], [ -122.9543423418, 46.7162401177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.3060765495 ], [ -119.9685280902, 46.3037202391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.6696013323 ], [ -122.4690215411, 45.664782696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6564062372, 47.0966738492 ], [ -118.6234748412, 47.0969147261 ], [ -118.5703483961, 47.1108950532 ], [ -118.5001739334, 47.110755101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4390078118, 47.6240624799 ], [ -117.4447329829, 47.6326990173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4890479152, 47.5280979623 ], [ -120.45450523, 47.5207872011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9097237692, 47.1901067626 ], [ -120.9213159644, 47.1927732879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.5499497496, 45.7806466337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2668970833, 48.0067931754 ], [ -118.2476233983, 48.0127941378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0772800593, 48.924155999 ], [ -122.0656513713, 48.9198042616 ], [ -122.0549081457, 48.9213240413 ], [ -122.0474169625, 48.9277221033 ], [ -122.0340311094, 48.9278686212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5082944355, 48.9920259516 ], [ -118.5037558939, 48.9999434555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8155297756, 48.0684125491 ], [ -122.8179486123, 48.0711563886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8167074126, 46.9748418645 ], [ -123.8249346802, 46.9706520307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1737083937, 46.8115310782 ], [ -119.1548022107, 46.8115761702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.4711363705 ], [ -122.3357219408, 48.4717196536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8895694243, 46.4396122337 ], [ -122.8882041537, 46.4395283256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.8306336416 ], [ -122.1260566825, 47.8338193781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2012261125, 47.8744218608 ], [ -120.1658245577, 47.8601832667 ], [ -120.1525821693, 47.8602012466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1232845443, 46.2486626016 ], [ -119.1105630412, 46.2485229568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4899695301, 45.724018802 ], [ -121.4828848568, 45.7225399831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1698660388, 46.3410315909 ], [ -120.0848828452, 46.3284729616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6909098997, 47.2757797492 ], [ -118.6904101142, 47.3214220899 ], [ -118.6860954235, 47.326048138 ], [ -118.692493076, 47.3283444103 ], [ -118.6922988122, 47.3324960837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9536791305, 47.233042477 ], [ -119.8966827506, 47.2327403563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1532476863, 46.2701348718 ], [ -118.1407187037, 46.2701649585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350638939, 48.0308244206 ], [ -122.7299573082, 48.0326119562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.7586626614 ], [ -118.5054795183, 47.7584305503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.0828527406 ], [ -118.6922772053, 48.0944969963 ], [ -118.7002081377, 48.1040161548 ], [ -118.6925905066, 48.1252812428 ], [ -118.6930351509, 48.1439533664 ], [ -118.7042337673, 48.1595006242 ], [ -118.7142740466, 48.2007014546 ], [ -118.7047677202, 48.2260732932 ], [ -118.6947159096, 48.2401285718 ], [ -118.6915026711, 48.2554038828 ], [ -118.6928620869, 48.2644862877 ], [ -118.7038407746, 48.2693058531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8880335642, 47.567584502 ], [ -121.8864441288, 47.5692233555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3704124175, 45.9461267079 ], [ -122.3622749788, 45.9559140373 ], [ -122.375570848, 45.9643347144 ], [ -122.3700050613, 45.9690659156 ], [ -122.3692999752, 45.9768294479 ], [ -122.3556390004, 45.9892331664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.4190994152 ], [ -122.2952486802, 47.4309838514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.3936027263 ], [ -122.2931085242, 47.392427434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380752869, 47.5786572039 ], [ -122.123054938, 47.5747409161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1810983468, 47.5797602872 ], [ -122.1760994752, 47.580180733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.9733591072 ], [ -123.5933186815, 46.9783764391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9829989628, 47.3264978242 ], [ -117.9837168125, 47.3338037132 ], [ -118.0012065196, 47.3339439117 ], [ -118.0053352606, 47.3422313462 ], [ -118.0190380245, 47.3455605705 ], [ -118.0413344485, 47.3583260637 ], [ -118.0859824317, 47.347843428 ], [ -118.1009161358, 47.3524254021 ], [ -118.1185016502, 47.3749703003 ], [ -118.1665050068, 47.402760537 ], [ -118.1827089763, 47.4201325168 ], [ -118.1889749684, 47.4362694977 ], [ -118.1843817029, 47.4682192357 ], [ -118.1928794609, 47.4781166157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9111972398, 46.6100100981 ], [ -122.9277931611, 46.6221965746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8344085442, 47.6126434109 ], [ -119.8131962319, 47.6126343481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.9704790806 ], [ -120.4029149867, 46.9715198957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0540259825, 47.8553267629 ], [ -120.0474672026, 47.8548480152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2604202074, 47.2012176284 ], [ -122.2488000931, 47.2053582695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1860840265, 48.0219150499 ], [ -122.1816312316, 48.0344874481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3546879112, 47.2034961093 ], [ -117.361690039, 47.2108541009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7219238918, 47.7633244454 ], [ -118.7225935085, 47.7708524695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6994969166, 45.8454016677 ], [ -122.7050754567, 45.8579274145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0434763305, 47.5508843024 ], [ -123.0407865476, 47.5395798157 ], [ -123.0503575134, 47.5292062176 ], [ -123.059297623, 47.5024290745 ], [ -123.0741604248, 47.4897900635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2157321624, 47.8782642533 ], [ -122.2111007099, 47.8781842656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1852889074, 47.6742929009 ], [ -122.1825622133, 47.6861532736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0332571479, 46.5053645236 ], [ -124.0289352268, 46.5118174067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3085183423, 46.2931233698 ], [ -119.3047423528, 46.2930973531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7604926179, 45.9331454264 ], [ -122.8049500418, 45.9609747813 ], [ -122.8209479482, 45.9765215085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3718777273, 48.1048682436 ], [ -123.3627497487, 48.1085599202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1770255475, 48.0518456949 ], [ -122.167626886, 48.0517882972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929566067, 47.408097835 ], [ -120.2929172872, 47.4079531918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2875761547, 47.8581507051 ], [ -122.2819653483, 47.864172748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3478885514, 47.157627397 ], [ -122.3150421028, 47.158578655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9162646971, 46.1456053501 ], [ -122.9147539076, 46.1502452965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7319332222, 45.815377897 ], [ -122.7270084609, 45.8156734191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.8668025285 ], [ -121.530549912, 46.869005372 ], [ -121.5227950438, 46.8649612608 ], [ -121.5289737696, 46.8698663514 ], [ -121.537161806, 46.86858299 ], [ -121.5294841863, 46.8711959296 ], [ -121.51710234, 46.8670852256 ], [ -121.5147529922, 46.8700968832 ], [ -121.5176596887, 46.8761957247 ], [ -121.5056293677, 46.8858544739 ], [ -121.480660576, 46.8939282214 ], [ -121.443504086, 46.8983759382 ], [ -121.4203948955, 46.9081166471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1751735539, 47.7677948795 ], [ -120.1859282772, 47.7676205033 ], [ -120.1840587587, 47.7828993523 ], [ -120.1996439306, 47.8048599228 ], [ -120.2093058833, 47.8268858662 ], [ -120.2023545245, 47.8407813167 ], [ -120.2104188578, 47.8533002068 ], [ -120.2028039844, 47.8632306636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.7777824155 ], [ -122.3353283591, 47.7777753423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1110123877, 46.9040127541 ], [ -124.1131838766, 46.9081888251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6142357749, 46.6544908714 ], [ -120.5943463684, 46.6386317502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6064394101, 47.3438463019 ], [ -118.5961167767, 47.3476217659 ], [ -118.5548000261, 47.3482337313 ], [ -118.5135806024, 47.3580620657 ], [ -118.4970061344, 47.3574102392 ], [ -118.4533036906, 47.3686689059 ], [ -118.3408593623, 47.4302279947 ], [ -118.2960394269, 47.4682522462 ], [ -118.2560871516, 47.4838568514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.3318236437 ], [ -122.3292431802, 47.3317433744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.2867891323 ], [ -122.8965761025, 46.2893166225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6716912752, 45.622917794 ], [ -122.6679722011, 45.6264046411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8782146319, 47.8269872076 ], [ -122.8756714308, 47.8241423181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.9990395411 ], [ -119.1601933723, 47.0283986473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3355466203, 47.469450059 ], [ -120.3195807175, 47.4716032095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829774552, 47.9869383211 ], [ -122.1829331211, 47.9885511027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1796695496, 47.6992447918 ], [ -122.1820573236, 47.7095901821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.3269502017, 47.4085571911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5110835333, 47.2895128669 ], [ -119.4703245021, 47.2726086288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3993131644, 47.6520356027 ], [ -117.3844324012, 47.6538454237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3303084037, 48.2396939589 ], [ -122.2809503607, 48.235572681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8383635311, 47.4109223756 ], [ -122.8295443158, 47.4127748773 ], [ -122.8203461375, 47.4070484463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5258992491, 46.6579574794 ], [ -120.5234705645, 46.6619857363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862032678, 47.7229006915 ], [ -121.9858303482, 47.7426828709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7868478019, 48.101573517 ], [ -119.7811517034, 48.1041817295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2071762297, 47.460991061 ], [ -122.2078807653, 47.466571782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0491706107, 48.1875683679 ], [ -117.0481554077, 48.1858130018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9270653363, 47.8558599343 ], [ -121.861666793, 47.8510041835 ], [ -121.8309651195, 47.8579919705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933243152, 46.5563517375 ], [ -120.385569175, 46.5499987592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5687127572, 46.732258391 ], [ -121.560456892, 46.7384901278 ], [ -121.556831556, 46.7546910576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2753035387, 46.5534563356 ], [ -122.2751954315, 46.5570314235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7257805786, 48.1562291862 ], [ -117.7227122233, 48.1685422116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9083860539, 46.9811017411 ], [ -123.9179703845, 46.9819334325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9222411132, 46.1464872396 ], [ -122.9218919138, 46.1466343189 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842574706, 47.200949296 ], [ -121.9813954636, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961885635, 47.4452613117 ], [ -122.2959583754, 47.4506600917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.190960133, 47.9817746745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2768149357, 47.8726630238 ], [ -122.2765740876, 47.8734029921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7486010675, 46.2060790676 ], [ -119.7475393038, 46.2094125334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5565118981, 46.6435530173 ], [ -118.5525513618, 46.6447887503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2066756596, 47.8885941556 ], [ -122.2022600424, 47.894649631 ], [ -122.2067906493, 47.8972009127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3336059484, 48.4174954237 ], [ -122.3330250741, 48.4174912688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2840598213, 46.5529035395 ], [ -122.2762378173, 46.5520130021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6274333676, 47.5344924995 ], [ -122.6237320393, 47.533996747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135602609, 48.7325006416 ], [ -117.4174728874, 48.7462831433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132785951, 46.9750588263 ], [ -123.8135123607, 46.9752656303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9384162966, 47.3734102727 ], [ -117.9150398251, 47.3982504993 ], [ -117.9034889508, 47.4225618796 ], [ -117.9043202925, 47.4371792471 ], [ -117.9110794237, 47.4456090228 ], [ -117.9222234569, 47.4504912849 ], [ -117.9478029623, 47.4527573229 ], [ -117.9564098516, 47.4576787359 ], [ -117.9495399132, 47.4703719079 ], [ -117.9510454936, 47.5055460418 ], [ -117.919069388, 47.5252624271 ], [ -117.9206461927, 47.5432700986 ], [ -117.9259768603, 47.5533776645 ], [ -117.9203852472, 47.5627460837 ], [ -117.9406277688, 47.5777330683 ], [ -117.9378384893, 47.6579307436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1336820514, 47.3186667549 ], [ -123.1117610605, 47.3369062558 ], [ -123.1048433653, 47.3569623887 ], [ -123.074686488, 47.3527052163 ], [ -123.0732200773, 47.347496595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6125603258, 48.3338920433 ], [ -119.6077631646, 48.3498164453 ], [ -119.6024268764, 48.353805119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7809433235, 48.1019970336 ], [ -119.7811517034, 48.1041817295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1978814184, 46.2296948397 ], [ -119.1815164346, 46.226705456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6300911575, 47.828750694 ], [ -122.6097297047, 47.8515622785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2426005336, 47.0979189769 ], [ -119.2452308425, 47.1004128397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0436242083, 47.9056634606 ], [ -122.0367508916, 47.9006838682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2752434827, 46.5583246063 ], [ -122.2684521921, 46.5680335119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3831772587, 47.8031153818 ], [ -122.3776962209, 47.7986124147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9543101229, 46.7193545946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3696991532, 47.6539119327 ], [ -117.3664685234, 47.6539039945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3554512716, 47.1039652908 ], [ -119.3375995228, 47.1039064442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1108326729, 48.0500968067 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0668149366, 46.1268888879 ], [ -119.0454576014, 46.1224768114 ], [ -119.0330840552, 46.1382539413 ], [ -119.0162894195, 46.1394401375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770770356, 45.6326630802 ], [ -122.6738336898, 45.6318598942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6528625036, 47.482823007 ], [ -120.6499715907, 47.4876669203 ], [ -120.6333359953, 47.4949227596 ], [ -120.632703036, 47.5086822913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218919138, 46.1466343189 ], [ -122.9196173248, 46.147218448 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0308034821, 48.0385584263 ], [ -123.0044486257, 48.0205093633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2748522475, 47.8718113531 ], [ -122.2643165436, 47.8830950253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294537729, 46.6833756482 ], [ -123.7294448552, 46.6856170888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.071549412, 47.2268141567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5662058166, 47.642947503 ], [ -117.5608436626, 47.6428844249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939240773, 47.0800385113 ], [ -122.2937941925, 47.0829397886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7727025488, 48.5378235193 ], [ -121.7384627186, 48.5359258924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1219053901, 47.5005304078 ], [ -122.1121053337, 47.4972949224 ], [ -122.0977227603, 47.4988510864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9100284707, 46.215109501 ], [ -118.8769717239, 46.2152642916 ], [ -118.8462077967, 46.2312973119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1250035992, 48.6915473174 ], [ -118.1273843782, 48.6998160022 ], [ -118.1247088043, 48.7064325745 ], [ -118.1342768103, 48.7155462694 ], [ -118.1294134431, 48.7293164293 ], [ -118.1345781821, 48.7396855259 ], [ -118.1345342849, 48.7548742848 ], [ -118.1428018792, 48.7736597705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8593818839, 47.0403533748 ], [ -122.8466345144, 47.0432987731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255213817, 47.3019724752 ], [ -122.2174597214, 47.2971248747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9893266233, 47.8585504619 ], [ -121.9830239836, 47.8630432638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5427971587, 47.2623098139 ], [ -122.558955585, 47.2752600707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6418257139, 47.8341761604 ], [ -121.6207818793, 47.8353149584 ], [ -121.6173127355, 47.831729195 ], [ -121.6193646638, 47.8263548695 ], [ -121.611657277, 47.8196693372 ], [ -121.5798641373, 47.8122645365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1121601288, 47.2429315526 ], [ -122.1007898491, 47.2257041538 ], [ -122.0797946249, 47.2106178422 ], [ -122.0162359001, 47.2074211012 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.8477254195 ], [ -120.0906203728, 47.8396989688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2194720778, 47.4795067364 ], [ -122.2164680874, 47.4797552701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970568676, 47.4134071531 ], [ -122.197055607, 47.4196716079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976527666, 47.5284479262 ], [ -122.1956583824, 47.5351014559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.1108326729, 48.0500968067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.1769776673 ], [ -122.1838778814, 47.174736546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1210814025, 46.1900650322 ], [ -123.0254965582, 46.1765544591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9675307628, 46.7105506649 ], [ -122.9598608634, 46.7119804203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2452308425, 47.1004128397 ], [ -119.246720142, 47.1017760996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1977655229, 48.6613912396 ], [ -119.1755997273, 48.6644654674 ], [ -119.1707426962, 48.6669353976 ], [ -119.1709386262, 48.671956166 ], [ -119.1204415479, 48.6865746062 ], [ -119.1188143741, 48.7011238243 ], [ -119.0889645499, 48.714240826 ], [ -119.0173992596, 48.7251477101 ], [ -118.9956785762, 48.7322627102 ], [ -118.9864492298, 48.7210608245 ], [ -118.9733997716, 48.7226160113 ], [ -118.9658249069, 48.727845524 ], [ -118.9595941027, 48.7262226534 ], [ -118.9531841576, 48.7185782551 ], [ -118.9576035534, 48.7002983598 ], [ -118.9345969622, 48.6878700965 ], [ -118.8688363405, 48.6711250883 ], [ -118.8512041774, 48.6595871231 ], [ -118.8252356977, 48.6617094795 ], [ -118.7864369592, 48.651103998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.7707983028 ], [ -120.1432870731, 47.7795609484 ], [ -120.1351383039, 47.7887442363 ], [ -120.1287074183, 47.8197182574 ], [ -120.1038792438, 47.8410163455 ], [ -120.0930271133, 47.8390930772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0127832253, 47.8398059908 ], [ -120.0023636712, 47.8395520304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.5009103404 ], [ -122.6448015914, 47.5019616092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6076963808, 46.9425842125 ], [ -122.6065410768, 46.9419413133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559678999, 46.3418155618 ], [ -117.0639903277, 46.3515891074 ], [ -117.063194802, 46.3682043768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6849124897, 47.7012407269 ], [ -122.6827030778, 47.7012362102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523152371, 47.7871149729 ], [ -117.3512461081, 47.7870908551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8450444219, 47.3928212867 ], [ -117.8339339028, 47.4005463581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4044843472, 47.7691968077 ], [ -117.4025141886, 47.775377664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7262847571, 48.1762204765 ], [ -117.733773391, 48.1904773749 ], [ -117.7430272449, 48.1962049437 ], [ -117.7153794817, 48.2082318736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078807653, 47.466571782 ], [ -122.2079397277, 47.469068922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8899260404, 47.7887506445 ], [ -117.8929652387, 47.8103146594 ], [ -117.8688908212, 47.8392864583 ], [ -117.8530743045, 47.8375252203 ], [ -117.8559886683, 47.847262528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3447339385, 47.7065541178 ], [ -122.3450935078, 47.7322891749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3969871323, 47.2375843118 ], [ -122.3891779095, 47.2344452702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6087560562, 48.2553398746 ], [ -121.6017358428, 48.2552691488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.1759897639 ], [ -117.0453814357, 48.1774974633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0367919974, 46.8025443825 ], [ -123.0122863976, 46.8024280456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8269220429, 47.4513256561 ], [ -122.82404435, 47.4527245935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5357945169, 46.9156045355 ], [ -121.5448085614, 46.8957961512 ], [ -121.5392794958, 46.879268564 ], [ -121.539784148, 46.8668025285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146069423, 46.4038122596 ], [ -120.3146053499, 46.3930477992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1182479552, 46.824068652 ], [ -123.0970384228, 46.8218084668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111934872, 47.6661553637 ], [ -117.4111842305, 47.6640841682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7163662119, 47.8813080117 ], [ -122.6836020665, 47.8694778736 ], [ -122.6583512026, 47.8711608541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3871932194, 47.6619140206 ], [ -117.3797163114, 47.6619387511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9072875101, 48.5485390558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5474855069, 45.7852017578 ], [ -122.5472358647, 45.8117200378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.9072893217 ], [ -122.2070289838, 47.914243946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1144319865, 47.165563315 ], [ -122.0430468348, 47.1585051205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1947276042, 47.0577047606 ], [ -119.2152583563, 47.0751224812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134370239, 47.6535198038 ], [ -117.4134270225, 47.6531107382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2128675498, 48.6558774574 ], [ -122.2086782434, 48.6715402953 ], [ -122.1928310355, 48.6906540805 ], [ -122.2024134231, 48.7062719744 ], [ -122.2034031763, 48.7206992742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9762326912, 46.3216955439 ], [ -117.9727960208, 46.3237819677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4674230818, 48.7381587883 ], [ -122.4637974094, 48.749722479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924335271, 45.5795236375 ], [ -122.3693035949, 45.5791952308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.7853119491 ], [ -117.9163777996, 46.7845299182 ], [ -117.9028685233, 46.7882975717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.9820295137 ], [ -122.2143033169, 47.9820481244 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5815429294, 48.4637620468 ], [ -122.6018087989, 48.4912904705 ], [ -122.6096344556, 48.4932908483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146053499, 46.3930477992 ], [ -120.3146803025, 46.3895637812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.9114449779 ], [ -117.0799320523, 46.9114350689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310669107, 47.3816510809 ], [ -122.231080053, 47.3833072606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108149261, 48.3083495968 ], [ -122.2259636127, 48.3101151653 ], [ -122.2343676861, 48.3157860192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1440770168, 47.7838492646 ], [ -122.1434566593, 47.7903443739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2935392549, 47.0986145276 ], [ -122.2932262899, 47.1183648911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5556609589, 46.9361969309 ], [ -122.5540510049, 46.9380208301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6950836877, 46.6690700815 ], [ -123.6839292354, 46.6556063635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.1564220776 ], [ -122.036347956, 47.1580428725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2518435554, 46.3315396164 ], [ -120.2461650816, 46.3276930204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178776034, 47.4696365374 ], [ -122.2178365864, 47.4708583363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6074412346, 47.5945732999 ], [ -117.5691788837, 47.5946199775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.7653809106 ], [ -118.6468785968, 48.7737685937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078782799, 46.9473039393 ], [ -122.9078625453, 46.9528052372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7095800286, 46.8824221446 ], [ -123.7147238013, 46.8904667022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519714718, 48.9646510378 ], [ -122.4413239323, 48.96428992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667035384, 46.8634865679 ], [ -122.2667172316, 46.8655192861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9008694447, 47.1862212903 ], [ -120.8999613431, 47.1877127316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6598639151, 46.9705949371 ], [ -118.6639343919, 46.9743066653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.4264986925, 46.9955304106 ], [ -123.4082967559, 46.9999448152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133300405, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5001739334, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736376931, 48.7183214397 ], [ -122.4736865914, 48.7254915984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537625763, 46.7353817521 ], [ -122.9537824167, 46.7366928914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1531482322, 47.0433503074 ], [ -124.1580458631, 47.0446019994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3782208966, 47.7726334374 ], [ -117.3567064191, 47.7812867521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871980092, 47.7384984553 ], [ -122.1857415687, 47.7548599981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2312668834, 47.1532457302 ], [ -117.2052304992, 47.1675404896 ], [ -117.1992324539, 47.1773708328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3693035949, 45.5791952308 ], [ -122.3561483502, 45.5765439754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1548022107, 46.8115761702 ], [ -119.1335402589, 46.81166858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.7360195936 ], [ -120.7368808365, 47.7219030152 ], [ -120.7458505381, 47.6979837814 ], [ -120.737315796, 47.6895337324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.8258098296 ], [ -123.1182479552, 46.824068652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.7413459926 ], [ -117.2421417151, 46.7585806572 ], [ -117.2617325097, 46.7597945743 ], [ -117.2772565713, 46.772497546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281213808, 47.6241276789 ], [ -120.228042091, 47.6277888618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0025596088, 46.8100089469 ], [ -122.9724799034, 46.8603980407 ], [ -122.9600984345, 46.8984631507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8874051323, 46.9794818062 ], [ -123.8839143851, 46.9770579066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2438389364, 47.4568632492 ], [ -122.245609145, 47.4638125801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.3205770833 ], [ -124.0058226032, 46.3220376768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2229100098, 47.5730667428 ], [ -117.2247355074, 47.5862739437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938700472, 47.204398406 ], [ -122.2938536061, 47.2051808084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2256349011, 47.3030417103 ], [ -122.2255213817, 47.3019724752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2096237746, 47.6717228675 ], [ -117.1794448564, 47.6657680173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3880478769, 48.8570115349 ], [ -117.3766074887, 48.8656644561 ], [ -117.3725290396, 48.86403205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5538347685, 46.9524134967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.9391322618 ], [ -122.4853467091, 48.9460567842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3545679756, 48.6174704326 ], [ -122.3571398555, 48.6273196202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.3394444319 ], [ -122.3123636673, 47.3477991611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565626099, 47.5703304581 ], [ -122.6533156313, 47.5673798823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9910016143, 47.0450336894 ], [ -122.9602028302, 47.0399823411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6378486297, 47.5421872915 ], [ -122.6362542655, 47.5417260081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2448313626, 47.6887168246 ], [ -117.2397125029, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1785138343, 46.6444383578 ], [ -121.1697638253, 46.6471084885 ], [ -121.1517819412, 46.644685082 ], [ -121.1319390984, 46.6545385663 ], [ -121.1263725089, 46.6648692441 ], [ -121.1203640782, 46.6650711504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5707855947, 47.7139681507 ], [ -122.5923337529, 47.7058043179 ], [ -122.6145007274, 47.7154775691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853470894, 48.891721005 ], [ -122.485340099, 48.9066976691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376928426, 47.9781939272 ], [ -122.1376542721, 47.9813261844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6134262665, 47.471353912 ], [ -117.6076139263, 47.472278094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3033441932, 46.5641172674 ], [ -122.2966216811, 46.5642108312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7071635421, 47.5067188922 ], [ -117.7148151118, 47.5148547914 ], [ -117.7149288118, 47.5306603385 ], [ -117.7044776202, 47.5482634566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4440605013, 47.158268456 ], [ -122.4276134438, 47.1581515823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9065683519, 47.1025224633 ], [ -123.8958319744, 47.1107626992 ], [ -123.897945931, 47.1182162564 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.1348926086 ], [ -123.8889929685, 47.1441925406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133909339, 48.4356182605 ], [ -122.3079784055, 48.4355954608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4073092626, 48.6901697434 ], [ -122.4496748915, 48.6936253155 ], [ -122.4745576952, 48.7036461741 ], [ -122.4754001915, 48.7114461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6545494275, 45.7173002417 ], [ -122.6569907612, 45.7325461642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.0543832543 ], [ -117.6205066365, 48.0600760065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3512395456, 46.0690998662 ], [ -118.3564774846, 46.0688842599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7179594226, 48.2854700064 ], [ -117.8191660399, 48.3201502053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924586232, 47.7337786904 ], [ -122.2924416665, 47.7355851423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2261409872, 48.5282544504 ], [ -122.226018055, 48.5375786595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111842305, 47.6640841682 ], [ -117.4110973876, 47.6862388811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293015421, 47.1806601772 ], [ -122.2292841665, 47.1772685985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3322816003, 47.4672044794 ], [ -122.3299629869, 47.4748414789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1126921303, 48.0002111444 ], [ -122.1063179106, 48.002878399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1432040179, 48.9173881457 ], [ -122.1434428667, 48.9313503294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1778352269, 48.046828316 ], [ -122.1770255475, 48.0518456949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6112069286, 47.5946127869 ], [ -117.6074412346, 47.5945732999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8965761025, 46.2893166225 ], [ -122.8907960803, 46.3012804426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.4284900867 ], [ -122.6225935687, 47.4383788471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0761547764, 46.8206396917 ], [ -123.0705784959, 46.818061401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8744708695, 45.824429695 ], [ -120.8597476834, 45.8244297002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5235622768, 47.9784884907 ], [ -117.5514961681, 47.9936326927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3901248718, 47.3932302588 ], [ -121.3796397397, 47.3867119172 ], [ -121.3634004667, 47.3422967233 ], [ -121.3518474114, 47.3394404515 ], [ -121.3434489443, 47.3304987742 ], [ -121.328788046, 47.3253104992 ], [ -121.3099371955, 47.3075733984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9086394896, 46.8991466854 ], [ -122.9057776023, 46.9081293834 ], [ -122.9079204529, 46.9326825401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3821019742, 46.204770148 ], [ -123.3662844632, 46.1972420441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2636763312, 46.2591722166 ], [ -119.2563379619, 46.2519667264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.8041008656 ], [ -122.3771647615, 48.8041341038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9106353482, 46.2675619431 ], [ -119.8846884522, 46.2587169246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8123515795, 46.9758626922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854508575, 47.9541150576 ], [ -124.3895298763, 47.9579786515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6135193095, 46.3732221214 ], [ -122.599339156, 46.3782404871 ], [ -122.5923185497, 46.3641421043 ], [ -122.5756309118, 46.3701554294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0767913963, 48.6302280828 ], [ -118.0809250713, 48.6335690008 ], [ -118.0804223265, 48.6458515708 ], [ -118.0855460386, 48.6566126356 ], [ -118.0761182705, 48.6620174812 ], [ -118.0528192146, 48.6655590546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7319104687, 48.0271486285 ], [ -117.7414326397, 48.0453413833 ], [ -117.7414617067, 48.0549272619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151578787, 47.6670962794 ], [ -122.1070992757, 47.6699542428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5548980955, 47.3064820526 ], [ -119.5404648362, 47.3016571328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5439564153, 47.7770043475 ], [ -117.5325801467, 47.7818048655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0033924307, 47.3087018731 ], [ -122.0036329276, 47.3094647022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0771113094, 47.7623555736 ], [ -120.0346940871, 47.7744610553 ], [ -119.9928066299, 47.7795776217 ], [ -119.9707179801, 47.8103117805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7247120976, 47.0145460302 ], [ -122.7155207845, 47.0124624929 ], [ -122.7042482107, 47.0166113384 ], [ -122.6929086258, 47.0122908625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5630189407, 45.6418660754 ], [ -122.56552133, 45.6483088559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.5838225286 ], [ -122.4432829491, 45.5785312538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3213046678, 47.6798999296 ], [ -122.3216245794, 47.6809784815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4043216331, 45.615225457 ], [ -122.4080084386, 45.6115840369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984327789, 47.1898992789 ], [ -123.0982494153, 47.1952116239 ], [ -123.0921869405, 47.1998399079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7520415456, 48.9961053398 ], [ -122.7523454393, 48.9971567896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2978040809, 47.8210601157 ], [ -122.2924065553, 47.8209731507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2328452333, 47.2083784844 ], [ -118.2153325712, 47.2145095436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4439027276, 48.4460211348 ], [ -122.4313388534, 48.4462873107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1114113863, 46.2830723014 ], [ -118.0900087478, 46.2892459717 ], [ -118.0360986622, 46.2883262956 ], [ -118.0037700013, 46.3053205372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966056992, 46.6268683975 ], [ -123.0813867451, 46.6270365528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4466273692, 47.2301579669 ], [ -122.4349389318, 47.2327862223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1863524437, 46.8303419645 ], [ -123.1603852076, 46.8270351021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3572304808, 48.8661780923 ], [ -117.3521889436, 48.8735003742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349079042, 47.0993004058 ], [ -122.4347516102, 47.1123943169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838617499, 46.5838405084 ], [ -122.8398740601, 46.5760326545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.3956087457 ], [ -121.3973426889, 47.3964612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3694769065, 47.0202996688 ], [ -122.3734287129, 47.0252556279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.0107162595 ], [ -123.3522406493, 47.0176847454 ], [ -123.3329685473, 47.0373540007 ], [ -123.315836318, 47.0439992941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2652259391, 47.0556339624 ], [ -123.2689243165, 47.0679844678 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396887191, 47.6862002896 ], [ -117.2397125029, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860047444, 48.7952060269 ], [ -122.4860125357, 48.8005515797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2104399855, 48.5159581466 ], [ -122.1940156325, 48.5236742491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157647305, 47.2798223974 ], [ -122.5157587458, 47.281707768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006527009, 47.2899013547 ], [ -122.2986045804, 47.2906745073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269686691, 47.5636496207 ], [ -122.6253076514, 47.5621957885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1610621477, 48.8013491924 ], [ -118.172585386, 48.8281521503 ], [ -118.1995279913, 48.8413471764 ], [ -118.2049625221, 48.8611827903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975722229, 46.1692293994 ], [ -119.17625049, 46.1849328401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.2312973119 ], [ -118.7205257744, 46.2975520842 ], [ -118.5843394707, 46.2961931387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9452303834, 47.3491519572 ], [ -117.9386854224, 47.3624234377 ], [ -117.9384162966, 47.3734102727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8360991743, 45.6760241273 ], [ -120.8350369221, 45.6826649603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.0274510129 ], [ -118.3805172543, 46.0318115343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1685156881, 47.8473257512 ], [ -117.1588691801, 47.8695608359 ], [ -117.1312550979, 47.8859764839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1238524112, 46.2737500843 ], [ -118.1114113863, 46.2830723014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6418945651, 47.3795057214 ], [ -122.6261095677, 47.3846980617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8990911424, 46.7940102212 ], [ -118.75567632, 46.7921007504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474225905, 47.3852649438 ], [ -122.2474311421, 47.3867136062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.4199191264 ], [ -117.0586800059, 46.4199262615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5353377768, 48.098941472 ], [ -123.5146878293, 48.1016682747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6731435739, 47.568179933 ], [ -122.6676487456, 47.5684242426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6933366335, 46.5767605568 ], [ -122.6709557367, 46.5825511103 ], [ -122.6483864791, 46.6019238366 ], [ -122.6345508551, 46.6084601212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6345508551, 46.6084601212 ], [ -122.6262508407, 46.6119235505 ], [ -122.5929781534, 46.6127772252 ], [ -122.540197422, 46.6050020592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.6430053975 ], [ -117.5071454103, 47.6430669681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783005683, 48.5448469139 ], [ -117.5647490904, 48.5514119056 ], [ -117.5555575339, 48.5619672181 ], [ -117.5534548978, 48.5736906307 ], [ -117.5588224911, 48.5802438479 ], [ -117.5597059922, 48.5938921832 ], [ -117.5501711452, 48.6052632129 ], [ -117.5430075734, 48.630926416 ], [ -117.5192715494, 48.6413464304 ], [ -117.5134714498, 48.6474798721 ], [ -117.4974757778, 48.6538530694 ], [ -117.4889613951, 48.6516692447 ], [ -117.4778840213, 48.657428848 ], [ -117.4698108774, 48.6734268292 ], [ -117.4561399366, 48.6724766869 ], [ -117.4533799294, 48.684483503 ], [ -117.4343065363, 48.6796702092 ], [ -117.4316067501, 48.6833095812 ], [ -117.4293099535, 48.6813858247 ], [ -117.4275049687, 48.6892106346 ], [ -117.4108409752, 48.6851321517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.6318665894 ], [ -122.6704405811, 45.6318535726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.7789719928 ], [ -117.402735532, 47.7811795472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1721144093, 48.4502822246 ], [ -118.1782434256, 48.4548284749 ], [ -118.1804322233, 48.4635712207 ], [ -118.1695615682, 48.4738348488 ], [ -118.1731326389, 48.4834075634 ], [ -118.1369993742, 48.5254134037 ], [ -118.1205170275, 48.5599252228 ], [ -118.1099304251, 48.5699168788 ], [ -118.090171582, 48.5709116932 ], [ -118.0736411623, 48.581071736 ], [ -118.0733925966, 48.5848754338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288682299, 47.6213371579 ], [ -122.6289013941, 47.6322348249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2202318761, 46.2679666309 ], [ -118.1693615258, 46.2688128518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2023511627, 46.1347113914 ], [ -119.203612629, 46.1162661213 ], [ -119.2234040886, 46.0911748268 ], [ -119.224889202, 46.0317308992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2972233483, 47.5139558554 ], [ -120.2808637485, 47.5339796242 ], [ -120.2543857869, 47.5488977505 ], [ -120.2543935669, 47.5573199872 ], [ -120.2309336771, 47.5917195302 ], [ -120.2261852446, 47.6053632481 ], [ -120.2282190803, 47.6193373774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1196487386, 48.6350042505 ], [ -118.1129200454, 48.6442737397 ], [ -118.1136451712, 48.6614121482 ], [ -118.1250035992, 48.6915473174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059632705, 45.6819748617 ], [ -122.5059582917, 45.6758268864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726772266, 45.6325544336 ], [ -122.6738387769, 45.6325598997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9784909888, 46.6723810975 ], [ -122.9715754997, 46.6806806366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3946951929, 47.7570939377 ], [ -117.3849909341, 47.7667352841 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5216611447, 48.408142504 ], [ -119.5217331431, 48.4069900346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.8971476949, 47.186874414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3043819814, 46.0811339747 ], [ -118.2939892909, 46.0823692123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5509551438, 47.3216616972 ], [ -119.5469623321, 47.3271872736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3042127815, 47.6440954441 ], [ -122.3045144925, 47.6452852227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2816435896, 47.4911976441 ], [ -122.2842343808, 47.4966458915 ], [ -122.2948243841, 47.4982893333 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2539138096, 47.5892523535 ], [ -122.2398779598, 47.5908053835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7726340053, 46.9572131386 ], [ -123.7868512068, 46.9671019999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.3797829152 ], [ -117.1742498954, 47.3867659672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4959840812, 47.795839855 ], [ -122.4955876896, 47.7975252491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2196536686, 47.6737301547 ], [ -117.2096237746, 47.6717228675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4653744706, 45.7143933277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5359529209, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2629302431, 47.4619229895 ], [ -122.2576809614, 47.4624296733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3272024219, 47.4854072542 ], [ -122.3249301321, 47.4940508534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4725322952, 47.1701115828 ], [ -122.4665031792, 47.1763219389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1877595188, 47.0819384727 ], [ -122.1770751295, 47.0821558053 ], [ -122.1579355704, 47.0914690106 ], [ -122.1444230859, 47.1117933341 ], [ -122.133641732, 47.1203784468 ], [ -122.1343129645, 47.127974281 ], [ -122.127858372, 47.1309639391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3619718598, 48.4277546105 ], [ -122.348619877, 48.42175299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1011620507, 47.2072125648 ], [ -123.1009905679, 47.208217873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8935451035, 47.2124822553 ], [ -117.9133733487, 47.2329689301 ], [ -117.9189588547, 47.2455284974 ], [ -117.9303066387, 47.2535026311 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.2980321898 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0052660577, 47.9449095756 ], [ -119.007361139, 47.9433157516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8150974014, 48.097207949 ], [ -122.8132595013, 48.1004014814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9772544823, 47.8608534091 ], [ -121.9699337226, 47.859195632 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.9220918299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.3566645336, 48.4657611597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6040527531, 48.8920780487 ], [ -122.6174443607, 48.891747907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135126494, 47.2840032145 ], [ -122.3135712365, 47.2861343941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8119261196, 46.9521234492 ], [ -123.8046484797, 46.9587267173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4082967559, 46.9999448152 ], [ -123.3960419117, 47.002634929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0397518102, 46.4800616688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647059706, 47.5011897492 ], [ -117.5646817112, 47.503963135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.3582053906 ], [ -119.0437777328, 46.4172753716 ], [ -119.0282684938, 46.4252472577 ], [ -119.0246904637, 46.4313046328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764209525, 46.7675625649 ], [ -119.1764829488, 46.7754696717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0621815719, 47.6491753159 ], [ -120.0464865713, 47.6446019575 ], [ -120.027698695, 47.6241158901 ], [ -120.0044221119, 47.6210429111 ], [ -119.9971912665, 47.6127377431 ], [ -119.8344085442, 47.6126434109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.9998165576 ], [ -118.6629076467, 47.0795552087 ], [ -118.6668848781, 47.0903196406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020400669, 48.2595802573 ], [ -121.5970165475, 48.2728794129 ], [ -121.5736815995, 48.2846737532 ], [ -121.5561827695, 48.3013178631 ], [ -121.5551539066, 48.3113332029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.6154441079, 47.5048209466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124883705, 47.5167348211 ], [ -122.32119741, 47.52336099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2493486901, 47.3976177556 ], [ -122.2494308353, 47.4122081687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8502977234, 47.1752256328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2125640998, 47.9215909937 ], [ -122.2084243459, 47.9195131157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8262913588, 46.7574551866 ], [ -120.8127305308, 46.7506838345 ], [ -120.7884944778, 46.7483083341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.1885742414, 47.9807304066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.2230431561 ], [ -117.0730024916, 47.2240691944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855374224, 45.5797321231 ], [ -122.3776958201, 45.5806227602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6356948558, 47.5650400988 ], [ -122.6329293436, 47.5650333624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153057722, 47.4499572937 ], [ -122.2178750419, 47.4671156335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9336567593, 48.052435164 ], [ -119.9457986845, 48.0554741634 ], [ -119.9596133683, 48.0757671252 ], [ -120.0069122484, 48.074198118 ], [ -120.0232808716, 48.0973889327 ], [ -120.0101725262, 48.1079613687 ], [ -120.0111466448, 48.1252859785 ], [ -120.004345499, 48.130411721 ], [ -120.0082609418, 48.1366210454 ], [ -120.0423875397, 48.14314282 ], [ -120.0664995986, 48.1555692556 ], [ -120.0933996402, 48.1811071167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4839534054, 46.7954711602 ], [ -118.3944003164, 46.7948578097 ], [ -118.3777369137, 46.7780423397 ], [ -118.3635301736, 46.7762257383 ], [ -118.3189412156, 46.7588639349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9251619366, 48.557993926 ], [ -117.9365504311, 48.5667945753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2089308735, 47.8094374485 ], [ -122.2072319883, 47.8094477645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9083233112, 46.1444373825 ], [ -122.9075601174, 46.1465486719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6891411882, 47.6839322136 ], [ -122.6869120748, 47.6932883974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3104348324, 46.7563777105 ], [ -118.3084452289, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395375143, 48.1839762284 ], [ -117.0395528608, 48.1829538969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3686788882, 47.1150041492 ], [ -118.3602316649, 47.1201988782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.5340788266 ], [ -121.778499806, 46.5338365408 ], [ -121.7578493233, 46.5388804234 ], [ -121.7354912874, 46.5526532482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339668077, 47.2064012989 ], [ -122.4339726068, 47.2074131032 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0487109157, 46.7291966819 ], [ -119.0868227043, 46.7395693677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.0550657238 ], [ -119.857595908, 48.0732144226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2844096141, 48.3059359445 ], [ -117.2839019256, 48.3051822196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1741648142, 46.7379128734 ], [ -117.1727879342, 46.7397697342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9747908435, 47.8173888452 ], [ -119.9580569245, 47.85237627 ], [ -119.9329792614, 47.8584852058 ], [ -119.9202563007, 47.8731183295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1410473188, 47.6647648556 ], [ -118.1411272552, 47.7032509231 ], [ -118.1502785502, 47.7110758636 ], [ -118.1524287124, 47.7227234463 ], [ -118.1703775752, 47.7449382474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2566876381, 47.112363657 ], [ -119.2567131133, 47.1164713022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3235519617, 47.1618045752 ], [ -119.3298805519, 47.1732555069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2423008133, 48.2388120168 ], [ -122.2407774423, 48.2388106439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7018643165, 48.078607276 ], [ -122.7016186118, 48.0859624396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3413276695, 47.8214509801 ], [ -122.3358813394, 47.8214508721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3033025513, 47.1598935483 ], [ -118.292877678, 47.1671440586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7380298017, 47.1620255285 ], [ -119.7255609263, 47.1697949724 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.3706285622 ], [ -124.053203924, 46.3755642012 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.4004321611, 45.9963687794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2488000931, 47.2053582695 ], [ -122.2470351952, 47.2239142549 ], [ -122.2546724797, 47.2425035856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.6896630119, 48.0306013366 ], [ -122.691035371, 48.0512475527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2639807772, 47.6750826193 ], [ -122.2635673336, 47.6757343946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9142227785, 46.0565756326 ], [ -118.9075966187, 46.0562013963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.1138577083 ], [ -123.4200144031, 48.1146846853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6443296317, 48.5973721967 ], [ -118.6314431515, 48.5960235156 ], [ -118.5679108258, 48.6153465501 ], [ -118.565952585, 48.6122317883 ], [ -118.5445438821, 48.6115078332 ], [ -118.5275917915, 48.597047814 ], [ -118.5137119104, 48.595243222 ], [ -118.509752482, 48.5970623776 ], [ -118.5155459269, 48.599558024 ], [ -118.512743502, 48.6032967468 ], [ -118.4782741505, 48.6072204311 ], [ -118.4585509256, 48.6047398165 ], [ -118.4660973772, 48.6082207338 ], [ -118.4661888943, 48.6121179319 ], [ -118.4444583552, 48.6113077339 ], [ -118.4417651532, 48.6299366699 ], [ -118.4328701141, 48.6218299941 ], [ -118.4198597385, 48.6246827606 ], [ -118.4036719089, 48.6210805405 ], [ -118.3464920198, 48.5973425143 ], [ -118.3089665113, 48.5891488571 ], [ -118.2932680389, 48.5791723325 ], [ -118.2487912527, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410746428, 48.435897211 ], [ -122.339797739, 48.4358920299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2757674785, 47.0538122933 ], [ -123.2617004672, 47.0447459023 ], [ -123.2512032791, 47.0452823163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843394707, 46.2961931387 ], [ -118.5642291766, 46.2961229496 ], [ -118.5526503645, 46.2885666946 ], [ -118.5338227757, 46.2908205864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1520827446, 47.701179935 ], [ -117.1332932554, 47.7045387135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.7232723565 ], [ -117.144376428, 46.7217073773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496454526, 48.0068914762 ], [ -117.3496648896, 48.0177222579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018408354, 45.6721275722 ], [ -122.4885992861, 45.6718340343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3726222715, 46.147436197 ], [ -118.3843361092, 46.1731924444 ], [ -118.381582691, 46.1978440693 ], [ -118.3932511954, 46.2165714643 ], [ -118.3695963283, 46.2371507033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654507751, 46.8691413663 ], [ -122.2741213173, 46.8768699817 ], [ -122.2978283667, 46.8740061708 ], [ -122.3026544634, 46.8782016749 ], [ -122.3006964497, 46.8856559346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6936997501, 48.906634052 ], [ -121.6959320726, 48.9034555044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7303182124, 46.6823391023 ], [ -123.7294537729, 46.6833756482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2251116552, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.2328415573, 48.6030299836 ], [ -122.2181484826, 48.6264669174 ], [ -122.2129746455, 48.6527134381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070072355, 47.9049606299 ], [ -122.207060034, 47.9072893217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2593033654, 47.2570246683 ], [ -122.2607429983, 47.2688990575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534565369, 47.1904786655 ], [ -119.8534105031, 47.2194487082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8856837159, 47.9870204643 ], [ -122.8847738398, 47.9855759007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7097773434, 47.6324886961 ], [ -122.7050597877, 47.6433614356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0109218044, 46.1691434983 ], [ -123.0047956327, 46.1661237024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525552477, 45.6778313417 ], [ -122.5521517487, 45.68208727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0368091721, 46.3974067466 ], [ -123.0273681586, 46.4021888563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6108296856, 47.0345615907 ], [ -120.608500123, 47.0374844302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7646365596, 47.0522855716 ], [ -122.7649510613, 47.0430902917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.6531948538 ], [ -118.1576684527, 47.6540467209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2985045151, 47.39547624 ], [ -122.2947389534, 47.3936027263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1009905679, 47.208217873 ], [ -123.1002782834, 47.2119732363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.2590728745, 45.5598753251 ], [ -122.2313535428, 45.5611000545 ], [ -122.2185549591, 45.5661709399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9073058758, 46.275376903 ], [ -122.9076435518, 46.2769325247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.4347156331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.7339077039 ], [ -120.2227951042, 45.7429753339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4150175631, 48.0010609611 ], [ -122.4394163697, 48.0042427956 ], [ -122.4541097954, 47.9996108269 ], [ -122.4616900184, 48.0042963392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2059069062, 46.7337520183 ], [ -117.2010536613, 46.7337602693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350543494, 47.0839448876 ], [ -122.434931526, 47.0973144524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564774846, 46.0688842599 ], [ -118.3564578154, 46.074867789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9537625763, 46.7353817521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8530540341, 47.5118709577 ], [ -121.8359319626, 47.5137466225 ], [ -121.8134961044, 47.4952951892 ], [ -121.8021513026, 47.4912692217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1942019738, 46.765336616 ], [ -122.2539355099, 46.7853850827 ], [ -122.2754741187, 46.7999623833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118922418, 46.6260641185 ], [ -120.5118923903, 46.626211773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9012940427, 46.1535561469 ], [ -122.9030469817, 46.1632969984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1937212048, 46.7334218163 ], [ -117.1864957616, 46.7314771721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4740104061, 48.6441487529 ], [ -119.4680874186, 48.6526355103 ], [ -119.4720016489, 48.658440658 ], [ -119.4702383791, 48.6728249756 ], [ -119.4503868347, 48.6949331433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4326700109, 47.2980606258 ], [ -122.434434259, 47.2999575945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132040823, 46.9766495807 ], [ -123.8143955605, 46.9760348973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3291037047, 47.7469054111 ], [ -122.329330637, 47.7502820303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.4588398216, 46.5422963318 ], [ -122.4431205175, 46.5426184535 ], [ -122.3866181203, 46.5326301989 ], [ -122.3663394868, 46.5419551196 ], [ -122.3433527114, 46.5461871073 ], [ -122.3277084896, 46.5447206472 ], [ -122.304327892, 46.5536935513 ], [ -122.2840598213, 46.5529035395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8165310712, 47.861761082 ], [ -121.7973817559, 47.8650366901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6664314526, 45.6289361692 ], [ -122.6622739757, 45.6359541769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4722955548, 47.7620355267 ], [ -121.447920831, 47.7462461048 ], [ -121.3976461043, 47.7270429682 ], [ -121.373545979, 47.7118393097 ], [ -121.3610242433, 47.7115372115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2633718554, 47.6383063062 ], [ -119.2733755435, 47.6743245668 ], [ -119.2615943148, 47.7149291881 ], [ -119.2230942334, 47.7501735046 ], [ -119.1843733363, 47.7994133674 ], [ -119.1377770394, 47.8249299577 ], [ -119.0926019856, 47.8681495864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663296776, 47.4869149652 ], [ -122.2648660903, 47.4917032502 ], [ -122.2781342919, 47.5038105301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860458418, 48.8077759805 ], [ -122.4860064346, 48.8115322114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.2794901631, 47.7171874221 ], [ -121.2684273833, 47.7146504801 ], [ -121.2314445716, 47.7181510912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455119005, 46.4058071413 ], [ -117.0455562905, 46.4072575118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.5472933615, 46.8097314034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8856775734, 47.4568668079 ], [ -123.9115962269, 47.4593804445 ], [ -123.923859645, 47.4691766915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4885992861, 45.6718340343 ], [ -122.4838115389, 45.6696013323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.8798283082 ], [ -118.6029610598, 48.8836806589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1686131052, 48.5922259084 ], [ -118.1487240923, 48.5881794827 ], [ -118.1385473345, 48.6058850636 ], [ -118.1381575659, 48.6167843871 ], [ -118.1227222823, 48.6274371967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.3682043768 ], [ -117.0559008398, 46.3750297198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3268233106, 47.4554520402 ], [ -122.3312487114, 47.4630152497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.6996424338 ], [ -119.8134933014, 47.7033989052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984000405, 47.810449784 ], [ -122.2824397667, 47.8189715088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6349019011, 47.5414235496 ], [ -122.6312757821, 47.5427369679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4280346059, 47.2286568082 ], [ -122.4318700022, 47.2324653952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217057205, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.3713384075 ], [ -120.3200450577, 46.3702712669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.1030129375 ], [ -123.3473359023, 48.1065914367 ], [ -123.3235990471, 48.0975676978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6839292354, 46.6556063635 ], [ -123.6823651856, 46.6537194229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353139183, 48.3777532366 ], [ -122.3304605047, 48.3953989959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2503978849, 47.4892081022 ], [ -118.2012989355, 47.5308199337 ], [ -118.1653892826, 47.5731302322 ], [ -118.1625335373, 47.628203114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1895522829, 47.9817536396 ], [ -122.1880265207, 47.9816960822 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9908694542, 46.3149359546 ], [ -117.9762326912, 46.3216955439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0063294763, 46.5974626974 ], [ -119.0062862284, 46.6650492947 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0706839733, 47.6560836936 ], [ -122.0626914872, 47.6565133547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.5216015582 ], [ -121.9561002594, 46.5266704559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2999170842, 46.5700274981 ], [ -123.2987829945, 46.5700375755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0481554077, 48.1858130018 ], [ -117.0468216405, 48.1843343896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.5924775695 ], [ -122.6291767301, 47.6025424022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709358838, 45.6080222232 ], [ -122.5675237104, 45.6073013401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6844389648, 47.5695855201 ], [ -122.6834705983, 47.5695963871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3109574982, 47.8036768463 ], [ -122.2984000405, 47.810449784 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7547026936, 49.0004770596 ], [ -122.7560316167, 49.0021057869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6231476737, 46.2473883891 ], [ -119.5619880902, 46.2669256695 ], [ -119.5430046419, 46.2654844556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9642066552, 46.1752198269 ], [ -118.9444220241, 46.1607549293 ], [ -118.9380954914, 46.1457035998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8874051323, 46.9794818062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.1513553719 ], [ -122.9664209143, 46.1480268532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5806705958, 46.8856606496 ], [ -119.4960377839, 46.8670870363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2283833788, 48.5104834855 ], [ -122.2257076367, 48.5104740686 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2344986468, 47.8819300694 ], [ -122.2317004486, 47.8819477141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987829945, 46.5700375755 ], [ -123.2976491615, 46.57004764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1592829547, 48.0537110655 ], [ -122.1430161763, 48.0536913707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6029610598, 48.8836806589 ], [ -118.5960578667, 48.8929230529 ], [ -118.5702542261, 48.9081474453 ], [ -118.5656033639, 48.9182463274 ], [ -118.5670170403, 48.9268359292 ], [ -118.5544641317, 48.9452340889 ], [ -118.5477800803, 48.9528978326 ], [ -118.5357075896, 48.9566891396 ], [ -118.5353160505, 48.9627204264 ], [ -118.5278088476, 48.96466224 ], [ -118.5270148193, 48.9792705723 ], [ -118.5082944355, 48.9920259516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8939276953, 46.9931418107 ], [ -123.89576752, 46.9948947943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0271462337, 46.2187179874 ], [ -119.0051151642, 46.203549009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.1991468956 ], [ -121.9599282089, 47.199071826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6588479006, 47.0844194177 ], [ -122.648398392, 47.0870048504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8313657266, 47.5369638292 ], [ -121.8182402683, 47.5195028025 ], [ -121.7847660346, 47.4978692597 ], [ -121.7872865838, 47.4951204522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667172316, 46.8655192861 ], [ -122.2654432539, 46.8668033464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1403335938, 47.4070557775 ], [ -123.1406582023, 47.4063958443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1696146509, 47.1148944779 ], [ -124.1701797505, 47.1175620554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9850301584, 47.9620801186 ], [ -118.9795868328, 47.9655777499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0842561584, 48.2705971119 ], [ -120.0543811291, 48.3022164989 ], [ -120.0523324287, 48.3111175595 ], [ -120.0541593021, 48.3183004848 ], [ -120.0735179834, 48.3417951846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1068419882, 47.5689365485 ], [ -122.0890281054, 47.5593389769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.3067016972 ], [ -122.0033924307, 47.3087018731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5404648362, 47.3016571328 ], [ -119.5110835333, 47.2895128669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6888669105, 47.8504476194 ], [ -121.6851132626, 47.8485151937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9970626639, 47.8392820634 ], [ -119.988693195, 47.8318583594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7196952232, 46.9185306009 ], [ -123.7199263398, 46.929127072 ], [ -123.7255969446, 46.9340666372 ], [ -123.7341821694, 46.9344876708 ], [ -123.7656400398, 46.9512725149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.1927344595 ], [ -122.2337989939, 47.1915311175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.5680335119 ], [ -122.2518294677, 46.5763541165 ], [ -122.2421710444, 46.589172878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4011678238, 47.5746894483 ], [ -117.403113814, 47.5873771825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3744668125, 47.6129385181 ], [ -124.3875850933, 47.6583279196 ], [ -124.3993841644, 47.6751810229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3968245294, 47.5274308586 ], [ -117.4004674284, 47.5364053504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228862469, 47.8212957342 ], [ -122.3176863857, 47.8212139394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9002465055, 46.2807315191 ], [ -122.9067208674, 46.2922496265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.4111842305, 47.6640841682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1203640782, 46.6650711504 ], [ -121.0946876862, 46.6671149014 ], [ -121.0695247091, 46.6770302874 ], [ -121.0312749766, 46.6723519543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2895900621, 47.4060388964 ], [ -120.287327632, 47.3995120011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.0455743548, 46.418180045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2191991764, 47.4676990124 ], [ -122.204514745, 47.471240198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759360238, 47.659448765 ], [ -122.6795231234, 47.662857905 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2815617176, 47.1297537126 ], [ -119.279016421, 47.1310325774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5812917606, 48.852425293 ], [ -122.5841213566, 48.8552680454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8398740601, 46.5760326545 ], [ -122.7836319133, 46.5772503018 ], [ -122.7404835765, 46.5712006701 ], [ -122.7194158446, 46.5756303426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8140314886, 46.4381206875 ], [ -122.8037680338, 46.4381163639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4740346798, 46.5317789409 ], [ -120.4736324891, 46.5393860319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.9088899283, 46.24591744 ], [ -123.9230833697, 46.2536596942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6837381984, 47.566162133 ], [ -117.6826564308, 47.5676722178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0055307618, 46.3309327743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6587450787, 46.0394084907 ], [ -118.6183764468, 46.0524276018 ], [ -118.5903183471, 46.0567683361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2740001981, 47.1335512955 ], [ -119.2682387314, 47.1364387388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3680598924, 46.3027624934 ], [ -119.3592158745, 46.3038389416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284561857, 48.4123674853 ], [ -119.5138464975, 48.416820343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8766375645, 47.6695099085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3803488731, 47.8097254242 ], [ -122.3802638858, 47.8059839555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202094806, 47.6795440304 ], [ -122.3197480792, 47.6816333663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852398362, 48.6680694691 ], [ -122.4879877343, 48.6747508138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149961011, 46.3824800478 ], [ -120.3150062176, 46.3807401139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.5428151022 ], [ -122.3343590195, 47.548548451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8587943416, 47.2333342522 ], [ -119.8548278199, 47.23342187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.9489550287, 46.8453769887 ], [ -120.9198054238, 46.8088624381 ], [ -120.8730896808, 46.7911106338 ], [ -120.852016458, 46.7729537418 ], [ -120.8280101158, 46.7646641629 ], [ -120.8296238449, 46.7598306382 ], [ -120.8262913588, 46.7574551866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0894814698, 46.794082912 ], [ -124.0910571193, 46.7988293856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509906905, 45.6012653728 ], [ -122.5528157131, 45.6121505059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1254159669, 47.3580621765 ], [ -122.1199550793, 47.3581151088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3138098088, 47.2044681618 ], [ -122.3082844841, 47.2024103912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.7503923932 ], [ -124.3181176136, 47.7587161676 ], [ -124.2855580029, 47.7726923141 ], [ -124.2759947825, 47.7820982488 ], [ -124.2530151923, 47.7822663141 ], [ -124.2495130066, 47.7881392179 ], [ -124.2521475758, 47.7981298006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.3453645423 ], [ -124.0547617311, 46.345935959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442671142, 46.4171675734 ], [ -117.0418061778, 46.4188762721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0433824839, 46.311738539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0986362805, 47.712113508 ], [ -117.0689280259, 47.7241616056 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1231539266, 48.0732680847 ], [ -123.1086623321, 48.0731296075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.6744466654 ], [ -122.12152933, 47.6738932335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7177993581, 47.8557884326 ], [ -118.7244772311, 47.8657256228 ], [ -118.7262988872, 47.8616518102 ], [ -118.7266656923, 47.866288751 ], [ -118.7193816343, 47.8729650037 ], [ -118.708130171, 47.8753570306 ], [ -118.7187904488, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.6952783466, 47.904651593 ], [ -118.6974620996, 47.9153870731 ], [ -118.689698978, 47.9188318309 ], [ -118.6896573662, 47.926800027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938536061, 47.2051808084 ], [ -122.2939107442, 47.2065716074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9357957557, 46.1384811775 ], [ -118.9299651984, 46.1234412496 ], [ -118.9125576769, 46.0999090238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6615401387, 47.5961287953 ], [ -120.6572408493, 47.5983589324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923996871, 47.7318031538 ], [ -122.2924586232, 47.7337786904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0751751165, 47.9197652005 ], [ -122.0661637707, 47.9143207671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9752113547, 46.7336230278 ], [ -123.0096321933, 46.7929903915 ], [ -123.0095031858, 46.7983597125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2352752464, 48.510504468 ], [ -122.2339586384, 48.510507948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4080084386, 45.6115840369 ], [ -122.4077199663, 45.6106168272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2421710444, 46.589172878 ], [ -122.2342561239, 46.5991023786 ], [ -122.2289134311, 46.6195560146 ], [ -122.2123686575, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.1960275134, 46.6788309729 ], [ -122.1994759487, 46.7042746461 ], [ -122.2193180607, 46.7251006266 ], [ -122.2079538886, 46.7335435597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6924466276, 47.8522943399 ], [ -121.6888669105, 47.8504476194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9750403018, 46.4047023004 ], [ -122.9698911237, 46.4019382554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8934297223, 46.5484187108 ], [ -123.9161773153, 46.5735129812 ], [ -123.9193768639, 46.5990484863 ], [ -123.9142185013, 46.6143994929 ], [ -123.9231640027, 46.6264718255 ], [ -123.9195012753, 46.6405634658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4595741397, 48.1100676892 ], [ -123.4449923396, 48.1224985775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353775602, 47.2512222204 ], [ -122.3355225852, 47.2647220072 ], [ -122.322068257, 47.2826226664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4398134853, 48.7045718994 ], [ -119.4389284985, 48.705561124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.1322797485 ], [ -117.2430200919, 47.1351050773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0868475896, 46.7892994633 ], [ -124.0894814698, 46.794082912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.3061625069, 47.1007526268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1217698707, 47.9948572706 ], [ -122.1126921303, 48.0002111444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1414184657, 47.5061993756 ], [ -122.1248280167, 47.5008402591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1351290082, 47.640071799 ], [ -122.1377401447, 47.6538823653 ], [ -122.134945908, 47.6610541746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9712249078, 46.5098672609 ], [ -117.9486341254, 46.5101973652 ], [ -117.9333783642, 46.5226592223 ], [ -117.8906915475, 46.5450662647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.5309639916 ], [ -121.9719468032, 47.5356190389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5816396399, 47.9176697804 ], [ -124.5903548008, 47.917783212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3526072751, 46.656816854 ], [ -121.341432663, 46.6594134737 ], [ -121.3385969386, 46.6559459214 ], [ -121.3092733459, 46.6569028996 ], [ -121.2807737226, 46.6507323213 ], [ -121.2720903746, 46.6447841556 ], [ -121.1785138343, 46.6444383578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6999410067, 45.923000308 ], [ -120.6965690225, 45.9324842549 ], [ -120.6583470417, 45.9562641417 ], [ -120.6537674636, 45.9641209952 ], [ -120.6538196253, 45.9965615172 ], [ -120.6409423299, 46.0067409664 ], [ -120.6402471596, 46.0159231899 ], [ -120.6224996657, 46.0271360717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954198113, 47.4345568351 ], [ -122.2958516184, 47.4404648377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4761902468, 46.2572390375 ], [ -119.4871230724, 46.2579063443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5889958565, 47.5568399451 ], [ -120.5877830321, 47.5561469233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.3588356337 ], [ -124.4481794241, 48.3163709433 ], [ -124.441553728, 48.3087450645 ], [ -124.4170379921, 48.3016446894 ], [ -124.3939306113, 48.2869815122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947627706, 47.0592610847 ], [ -122.2940652218, 47.0777178732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2017909519, 47.8734177394 ], [ -120.2012261125, 47.8744218608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6492690844, 46.9444965174 ], [ -123.6192593546, 46.9465973928 ], [ -123.6032357017, 46.9588877342 ], [ -123.6041613497, 46.9661133917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3206709228, 47.4319777068 ], [ -120.3128299563, 47.4225323717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7366031924, 45.6987633896 ], [ -121.7054052114, 45.6992145937 ], [ -121.6759438831, 45.7099755879 ], [ -121.6604109342, 45.7097319074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3830261382, 46.2040132418 ], [ -123.3821019742, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3470322877, 47.6426862378 ], [ -122.3473316285, 47.6527710843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1554043069, 47.8843452114 ], [ -120.1511179931, 47.883422456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362799721, 48.9485573498 ], [ -119.4366735302, 48.9489071813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959770656, 47.1610814791 ], [ -122.297846414, 47.1614508102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7153794817, 48.2082318736 ], [ -117.7154506529, 48.2699984918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5450441479, 47.7703887266 ], [ -117.5439564153, 47.7770043475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3592158745, 46.3038389416 ], [ -119.3472771984, 46.3003841931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847277876, 48.0959977763 ], [ -122.1847725776, 48.1059122858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5468406356, 47.1039007809 ], [ -119.4559455385, 47.1039759554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2027047002, 46.7090131164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.5527655447, 45.7037149254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.2858307257 ], [ -122.8997031408, 46.2867891323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.2902358871 ], [ -124.0560465833, 46.2891258681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853465728, 46.5342767318 ], [ -122.475498549, 46.5361010556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7094384198, 46.6776841454 ], [ -123.7038991686, 46.6750455817 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8614321809, 46.652330978 ], [ -118.8524014486, 46.6510749802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6927958127, 47.661573015 ], [ -122.6880316431, 47.664446406 ], [ -122.6882400113, 47.6692766526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6669042924, 47.0988351268 ], [ -118.6653004485, 47.1161677624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759314616, 47.5414115006 ], [ -122.6748917772, 47.5440202547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3016866652, 47.3019511926 ], [ -121.2916134708, 47.299067816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.4446581265 ], [ -122.8478646508, 46.4428982556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1781385805, 46.7289018557 ], [ -117.1769047974, 46.729513769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9550394088, 46.881056224 ], [ -119.9465333306, 46.9123858241 ], [ -119.9569337464, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6035425582, 46.5285458674 ], [ -122.5955693857, 46.5253458249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2236011158, 47.8003896824 ], [ -122.2315021263, 47.8140192332 ], [ -122.2564077395, 47.8281388084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.8214634366 ], [ -122.3413276695, 47.8214509801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9163495454, 47.639117271 ], [ -121.9102593964, 47.6591206418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0525359155, 46.466597142 ], [ -124.0524708108, 46.4681772505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9707726081, 47.8570932647 ], [ -121.970344695, 47.8592876727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3565494361, 47.7225769388 ], [ -117.3549235161, 47.7296515994 ], [ -117.3606738137, 47.7392386451 ], [ -117.3591982992, 47.7502754755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1328213855, 47.4183288429 ], [ -119.1069520778, 47.4029037206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3472771984, 46.3003841931 ], [ -119.3370276268, 46.2969163285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9614934821, 48.0502939774 ], [ -122.9507202106, 48.050275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3633339712, 46.1950290192 ], [ -123.3544482975, 46.1872368309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2560871516, 47.4838568514 ], [ -118.2546862005, 47.4856106964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3590945902, 46.9323858894 ], [ -121.3058304988, 46.9520915888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9651128936, 48.5240655431 ], [ -121.9301268685, 48.5264239752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9768718108, 46.656330602 ], [ -122.9799410614, 46.666273563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0345305238, 46.549222742 ], [ -124.0378003229, 46.5491873736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2928419495, 47.6157241973 ], [ -119.2882313209, 47.6170498652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2290446727, 47.8020950345 ], [ -117.2128688346, 47.8047418564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216193183, 47.6754410608 ], [ -122.121605019, 47.6744466654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5071454103, 47.6430669681 ], [ -117.4899748205, 47.6377977945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0155186397, 46.1714070706 ], [ -123.0109218044, 46.1691434983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3234409469, 48.9201959718 ], [ -122.3219125052, 48.9201922455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0741604248, 47.4897900635 ], [ -123.0798887479, 47.4834193437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.5142285605, 45.8854969434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989188555, 47.1501796155 ], [ -122.4839759446, 47.158948731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4532860957, 46.8561637408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8302534091, 47.4465115389 ], [ -122.8269220429, 47.4513256561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0483767272, 47.6956888561 ], [ -117.0417025967, 47.6966317895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.4108536601, 47.7513199125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6248994904, 47.8447512634 ], [ -117.641565621, 47.8531276258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4637974094, 48.749722479 ], [ -122.4622122897, 48.7536867617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024048555, 47.3748567353 ], [ -122.2022086866, 47.3993044634 ], [ -122.1971702632, 47.4033636901 ], [ -122.1970568676, 47.4134071531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1928665076, 45.6576560325 ], [ -121.1823283839, 45.6490400174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3673070896, 47.8179585281 ], [ -122.3663582961, 47.8214821079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9931524128, 47.222746832 ], [ -120.9940435568, 47.2237272029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.7148245953 ], [ -122.4751894509, 48.7143961658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1774124503, 47.0928575254 ], [ -119.16309152, 47.0915688757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.4806846506 ], [ -122.3354436719, 48.4902753934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8245858874, 45.6986339731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0751698208, 48.6068991662 ], [ -118.0783937232, 48.6149269177 ], [ -118.0719817894, 48.6214498763 ], [ -118.0767913963, 48.6302280828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0338926368, 46.4915291514 ], [ -124.0337063992, 46.4929517328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9823239969, 47.8274002482 ], [ -119.9786186226, 47.8263733091 ], [ -119.9835503921, 47.8126666885 ], [ -119.9808716374, 47.8137027141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7408549752, 45.9111701973 ], [ -122.7402748344, 45.9071079053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9990847026, 46.3019803085 ], [ -119.9781878444, 46.3023441821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1335402589, 46.81166858 ], [ -119.0482198121, 46.7995487771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5985546782, 47.2518971615 ], [ -119.5802254795, 47.2715449725 ], [ -119.5798147835, 47.2816012149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.2287970334, 46.322331888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.9425126462 ], [ -122.6292421446, 45.941283986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0103610919, 47.6398424818 ], [ -121.9982651856, 47.6313971171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619693815, 47.5476213035 ], [ -122.0609313135, 47.5488637513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3320839174, 47.4704214925 ], [ -122.3286086093, 47.4699818296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9291735447, 47.4763535553 ], [ -123.9337629187, 47.4801114863 ], [ -123.9589950413, 47.4802520054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0523623815, 46.336389697 ], [ -117.0487379362, 46.3397717715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.9948947943 ], [ -123.899165273, 46.997061728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8562732625, 46.5369650839 ], [ -117.8217992709, 46.5244556466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9600984345, 46.8984631507 ], [ -122.9467593344, 46.9213451432 ], [ -122.9389895243, 46.9474951907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7730682265, 47.1959969886 ], [ -120.7607234225, 47.1917861928 ], [ -120.7332273936, 47.2005102162 ], [ -120.7189725743, 47.1993671783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2580730119, 47.8098225751 ], [ -124.2638042622, 47.8258077379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7934879339, 46.6650978736 ], [ -123.7831803897, 46.6698379874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1974475198, 47.5227002331 ], [ -117.2106226505, 47.5366364133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8261026875, 46.9700612141 ], [ -123.8158546232, 46.9740606365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.1712861629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244049035, 45.6505489649 ], [ -122.4244634331, 45.6433255811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1027698079, 46.9174522008 ], [ -117.0865946222, 46.9166932633 ], [ -117.0875131805, 46.9125608238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.7724672092 ], [ -122.6032429154, 47.7771222102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.7292158488 ], [ -121.5209883629, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.8122546849 ], [ -122.3807347134, 47.8118396427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7350013936, 46.2109623873 ], [ -119.7134341801, 46.2195650238 ], [ -119.6746905035, 46.2230812429 ], [ -119.6647884113, 46.2316909296 ], [ -119.6378671733, 46.2418590791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418061778, 46.4188762721 ], [ -117.0398979045, 46.4201869144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6009036248, 46.9747491231 ], [ -123.6009001718, 46.9756350054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1001117785, 47.2128066209 ], [ -123.0984506931, 47.2150788727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.5437706657 ], [ -117.3939754864, 47.5534212221 ], [ -117.4011678238, 47.5746894483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329885436, 47.1517472612 ], [ -122.2366664186, 47.1398909033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349579061, 48.9905390378 ], [ -122.7349574112, 48.9939874349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1998425884, 48.0838545215 ], [ -123.1729427957, 48.0794522238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8950160535, 46.1910097955 ], [ -122.8878973615, 46.2290248549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8543075131, 46.8986913821 ], [ -119.7477078919, 46.8989696084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6515427568, 47.7916136315 ], [ -122.6494078234, 47.8021122484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2845197408, 47.9244871101 ], [ -122.275846758, 47.922028224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067906493, 47.8972009127 ], [ -122.2068183241, 47.898121112 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1254705822, 47.6666303079 ], [ -117.1119679946, 47.6701905633 ], [ -117.1030345042, 47.677801453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343073841, 46.7823988651 ], [ -119.1342855473, 46.7970731587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965893904, 47.1697800021 ], [ -122.2966981396, 47.1766290629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444365005, 47.6869595926 ], [ -122.344449168, 47.6905617273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3463687355, 46.0605179899 ], [ -118.3470868548, 46.0613934646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133341775, 47.6416718327 ], [ -122.2093039324, 47.6428078098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1547729075, 46.2701299684 ], [ -118.1532476863, 46.2701348718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0246904637, 46.4313046328 ], [ -119.0241669698, 46.4325560871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645242594, 45.6843405722 ], [ -122.6633194815, 45.6889511168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093581645, 47.7588250331 ], [ -122.2074296103, 47.7589886736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0718667587, 47.0910580253 ], [ -123.0326707223, 47.0850835188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.2322064702 ], [ -119.0389832338, 46.2269143007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1433040389, 47.6655064295 ], [ -117.1254705822, 47.6666303079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.1314750359 ], [ -122.9708431325, 46.1276076543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9437335833, 46.1159145 ], [ -122.9300694121, 46.1160931581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527655447, 45.7037149254 ], [ -122.5526401143, 45.7079886815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3461737894, 47.4701826048 ], [ -120.3405862296, 47.4683902338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468216405, 48.1843343896 ], [ -117.0454478886, 48.1840423049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6653004485, 47.1161677624 ], [ -118.6650951427, 47.1307627649 ], [ -118.6865288265, 47.1310840591 ], [ -118.6868873255, 47.1525952933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0705784959, 46.818061401 ], [ -123.0445647319, 46.8032170817 ], [ -123.0367919974, 46.8025443825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329554592, 47.5769885266 ], [ -122.6311588032, 47.5832738305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3891779095, 47.2344452702 ], [ -122.3464829935, 47.2161092989 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.6781103544, 45.9394909444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2572398494, 47.8906887228 ], [ -122.2484756693, 47.9000726144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3895677666, 47.4250017467 ], [ -117.3851698428, 47.4416448647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.4168080215 ], [ -119.5086232761, 48.4167726734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5588936409, 47.1038824628 ], [ -119.5468406356, 47.1039007809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.6504520462 ], [ -121.2687683916, 48.6735745065 ], [ -121.2428911629, 48.6747734043 ], [ -121.2417871323, 48.6848232358 ], [ -121.2133872234, 48.6996238392 ], [ -121.1788562676, 48.7047805918 ], [ -121.1615462137, 48.7118489675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1415565005, 47.4513001292 ], [ -117.150006285, 47.4715006436 ], [ -117.1473710049, 47.490110618 ], [ -117.1534210243, 47.4954564889 ], [ -117.1543496781, 47.5050294883 ], [ -117.1729346647, 47.5083302931 ], [ -117.1911483543, 47.5183415887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3218213184, 47.7696559418 ], [ -122.3161178049, 47.7897600047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9726679277, 47.3094719647 ], [ -117.9743483399, 47.316068813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8422504198, 46.4113220356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0306794602, 46.5320120219 ], [ -124.0311381455, 46.5464572368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4283589995, 48.4448569455 ], [ -122.4220672954, 48.4427374565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1919909484, 47.9726739009 ], [ -122.1903760819, 47.9768936616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2564077395, 47.8281388084 ], [ -122.2615653431, 47.8313484071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0389677607, 46.4202679171 ], [ -117.0359439377, 46.4204504282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4199297039, 47.2443571022 ], [ -122.3998093609, 47.2472450781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3061625069, 47.1007526268 ], [ -119.2760112984, 47.102681285 ], [ -119.2359630516, 47.0980998127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6513721365, 47.7650327884 ], [ -122.6507363437, 47.7695891636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3794534635, 47.2749697278 ], [ -122.3873073485, 47.2789522223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3386717842, 47.467239294 ], [ -120.337752153, 47.4679946321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3506178988, 47.9432704768 ], [ -117.3495747173, 47.9706537304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8239536487, 47.1032398754 ], [ -119.7595545426, 47.1034506094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4973048928, 47.4245366123 ], [ -119.5139073632, 47.4582590092 ], [ -119.5147481213, 47.4841570152 ], [ -119.4959565531, 47.5262188898 ], [ -119.4877526805, 47.534625173 ], [ -119.4698317487, 47.5426197192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5941205276, 47.5625995288 ], [ -117.5935764168, 47.5639483159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2866459043, 47.0557293212 ], [ -123.2754372301, 47.0555807313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.9627633161 ], [ -118.564368032, 46.9784278916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5436645551, 46.6226773126 ], [ -120.5384276031, 46.6224575094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5607434503, 47.285298956 ], [ -122.5598601931, 47.2754181914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4875027306, 45.727786525 ], [ -121.5060798331, 45.7309675268 ], [ -121.5123870647, 45.7354852032 ], [ -121.5138862172, 45.7429041091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8982557871, 46.1444215752 ], [ -122.897437776, 46.1447077289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1108347849, 46.868530839 ], [ -124.111600125, 46.8850832339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1977866952, 47.2037633126 ], [ -124.1981225594, 47.2096549901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092045302, 48.9638603752 ], [ -122.2884988914, 48.963997296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223014031, 47.4387746189 ], [ -122.3204263512, 47.4439375555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4685078514, 47.6390299187 ], [ -117.4478142216, 47.6480936772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.7903443739 ], [ -122.1434306209, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141387154, 47.305285326 ], [ -122.5141532261, 47.305786013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049498032, 47.6441648565 ], [ -122.2886549992, 47.644785095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0528192146, 48.6655590546 ], [ -118.0248355209, 48.673690401 ], [ -118.0156324089, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.0246739855, 48.714996295 ], [ -118.0424279281, 48.7258692143 ], [ -118.0490326374, 48.7359093653 ], [ -118.0449313771, 48.7513776852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4409541321, 48.1081108568 ], [ -123.4325841603, 48.1173198234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217483631, 48.934759017 ], [ -122.3209191677, 48.9438094983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1637086417, 47.1693190408 ], [ -122.1591468798, 47.1688389452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.3726813295 ], [ -123.0436033456, 46.3778943675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1934957289, 46.7573170831 ], [ -122.1920445113, 46.7631482149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.4391963694 ], [ -122.3222272004, 47.4388851786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4325841603, 48.1173198234 ], [ -123.4317237119, 48.1182747731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7703914682, 46.9553073045 ], [ -123.7726340053, 46.9572131386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.9715394508 ], [ -123.8046532988, 46.9702958878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4559455385, 47.1039759554 ], [ -119.4399901193, 47.1039813699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2027047002, 46.7090131164 ], [ -117.1944912719, 46.7123163464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.4589718006 ], [ -122.8432117884, 46.4565616045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3055000322, 47.6975803085 ], [ -122.3004396604, 47.7105219184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2414121493, 48.5104075699 ], [ -122.238568264, 48.5105092144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9417957659, 46.8489960363 ], [ -119.9564385558, 46.870475719 ], [ -119.9550394088, 46.881056224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1199550793, 47.3581151088 ], [ -122.1183933229, 47.358083689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2917893864, 48.3357459775 ], [ -122.2346365429, 48.3169213007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826802298, 47.5728704065 ], [ -117.6822629215, 47.5797908647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966216811, 46.5642108312 ], [ -122.2876908004, 46.5629051119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260701767, 47.9948236433 ], [ -117.7319104687, 48.0271486285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.9673328212 ], [ -122.1791586732, 48.976749001 ], [ -122.2244279928, 48.9635543174 ], [ -122.2383116691, 48.9818595874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1654679307, 47.0715130267 ], [ -124.1655918294, 47.0723702608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4763407681, 47.0248252936 ], [ -118.4422043734, 47.0465468351 ], [ -118.4141103189, 47.0591967856 ], [ -118.4096531682, 47.0680228106 ], [ -118.4070751366, 47.1033095374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.6895337324 ], [ -120.7340804093, 47.6761871917 ], [ -120.736360708, 47.6653111621 ], [ -120.7293898748, 47.659802408 ], [ -120.7200561919, 47.6404036194 ], [ -120.7278030171, 47.6305660868 ], [ -120.7121110083, 47.5936110768 ], [ -120.701765463, 47.584174099 ], [ -120.6752481496, 47.5885745711 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9015325687, 45.6823424191 ], [ -121.8860713061, 45.6924749788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3849909341, 47.7667352841 ], [ -117.3782208966, 47.7726334374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9075601174, 46.1465486719 ], [ -122.9085060615, 46.1467022322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3720613135, 47.6630728307 ], [ -117.3625630309, 47.6667062903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0524708108, 46.4681772505 ], [ -124.050056982, 46.4906407097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6552199252, 47.5591158808 ], [ -122.6532972455, 47.5655345715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7393994237, 47.7563801327 ], [ -120.7384906148, 47.7360195936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6020428046, 47.8547635857 ], [ -122.5840564696, 47.8521537918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.4722955548, 47.7620355267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2297404096, 47.0873925614 ], [ -119.2426005336, 47.0979189769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.0970846899 ], [ -122.434931526, 47.0973144524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156562553, 47.2992775357 ], [ -122.5156424716, 47.3005954736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.3885347527 ], [ -122.6768545821, 46.3788408723 ], [ -122.6734966352, 46.3612844656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4858227533, 46.5364298713 ], [ -122.4853465728, 46.5342767318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6707784483, 46.9375606362 ], [ -123.6492690844, 46.9444965174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.0283986473 ], [ -119.1947276042, 47.0577047606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1627542467, 47.0173831144 ], [ -124.1550212915, 47.0173446802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.1115839277, 47.2323900431 ], [ -117.1304728709, 47.2420790028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.6497792928 ], [ -121.6020091618, 46.6572102746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0035439323, 48.8008410224 ], [ -118.0000524199, 48.8073878339 ], [ -117.9839914901, 48.8137933308 ], [ -117.9732159238, 48.8153725474 ], [ -117.9487392461, 48.8094853403 ], [ -117.9292546465, 48.8147409952 ], [ -117.911425089, 48.8271070325 ], [ -117.8959484464, 48.8508702474 ], [ -117.881274636, 48.8536526446 ], [ -117.8721976377, 48.8648540321 ], [ -117.8535989042, 48.873679994 ], [ -117.8412727199, 48.8719526263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564482172, 46.0758820358 ], [ -118.356443458, 46.0771858995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1880265207, 47.9816960822 ], [ -122.1866738723, 47.9816878379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8521750453, 46.9760733389 ], [ -123.8539819045, 46.9760751104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4854380467, 45.7986174954 ], [ -121.4907851352, 45.8072105905 ], [ -121.4897114476, 45.8238193301 ], [ -121.5095189303, 45.8498089062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0439333142, 48.1840295652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535479607, 47.1032529839 ], [ -119.853533075, 47.1177226749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0859358901, 47.3580748666 ], [ -122.0740512207, 47.3581005334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976360012, 47.9682783923 ], [ -122.1919909484, 47.9726739009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5393560124, 47.6795086708 ], [ -122.5509605497, 47.690504212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.1095610147 ], [ -119.7180337732, 48.1023785656 ], [ -119.6987076385, 48.1034031892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1098271088, 47.8752954587 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3566645336, 48.4657611597 ], [ -122.3471628144, 48.4689593505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4987396272, 48.4522633023 ], [ -122.4439027276, 48.4460211348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8615475437, 46.8501099194 ], [ -122.8619828359, 46.8516552572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.0000254737 ], [ -122.2636151475, 49.0023365971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3189412156, 46.7588639349 ], [ -118.3084452289, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923358096, 47.816111394 ], [ -122.2923089488, 47.8137046002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546862005, 47.4856106964 ], [ -118.2503978849, 47.4892081022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5170629867, 46.6712561513 ], [ -120.5090316719, 46.6767027963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7906979157, 47.4363324322 ], [ -117.788774298, 47.4352395576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5417481504, 46.93783701 ], [ -122.5283321717, 46.937764175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1133617704, 47.671528366 ], [ -122.1035997262, 47.668444842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.3101897606 ], [ -124.0611205915, 46.3133462133 ], [ -124.0646455872, 46.3095588922 ], [ -124.0606528839, 46.3056504572 ], [ -124.0631995935, 46.2983588775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561926794, 47.9788192594 ], [ -122.3709598621, 47.979159491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245858874, 45.6986339731 ], [ -120.8245348679, 45.6980196603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.6959989375 ], [ -121.2896666816, 45.6971356795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7038407746, 48.2693058531 ], [ -118.7118079936, 48.2717401758 ], [ -118.7347455537, 48.2990724352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.5487710681 ], [ -120.2917105696, 46.5347459334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9982651856, 47.6313971171 ], [ -121.9874606417, 47.6279947984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9512089429, 46.1157614264 ], [ -122.9506147609, 46.1164898023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3807347134, 47.8118396427 ], [ -122.3796065351, 47.8114284518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6421804262, 48.4953349997 ], [ -121.6266579644, 48.4887808077 ], [ -121.5961697621, 48.4872753789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4620882803, 47.1970495358 ], [ -122.4616630283, 47.2001928833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9715754997, 46.6806806366 ], [ -122.9696916332, 46.6933543645 ], [ -122.9726938016, 46.7033062755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0586800059, 46.4199262615 ], [ -117.0574168065, 46.4199273309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6896573662, 47.926800027 ], [ -118.6899360795, 47.9292182705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4972510691, 47.3702850298 ], [ -119.4904926467, 47.3759248116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4005142886, 47.0558581985 ], [ -122.4284944729, 47.078773705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7394916541, 47.7565110441 ], [ -120.730179083, 47.7636832556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9995278053, 46.2401318028 ], [ -119.9992119183, 46.2864963221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3229788958, 46.3718043346 ], [ -120.3295269338, 46.375119312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547456263, 46.346612471 ], [ -124.0545804856, 46.3501186151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.7091478999, 47.7594544328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.4971895169 ], [ -119.529422804, 48.5261884807 ], [ -119.5433994788, 48.5588067811 ], [ -119.5428821789, 48.5652457761 ], [ -119.5336093333, 48.5756042234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1150336799, 47.4621474593 ], [ -123.1115804388, 47.4591212378 ], [ -123.1135516316, 47.4532319373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4817162701, 47.9308967011 ], [ -124.5299932781, 47.9150697025 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.0973144524 ], [ -122.4349079042, 47.0993004058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0489497271, 46.7350588091 ], [ -117.0399457046, 46.7324070437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.1446137165 ], [ -122.9084925335, 46.1444678361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0398979045, 46.4201869144 ], [ -117.0391231637, 46.4202563296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891839532, 48.1557176379 ], [ -122.2864988953, 48.1556958232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3759552613, 48.1048555471 ], [ -123.3718777273, 48.1048682436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5827190303, 48.4888446329 ], [ -121.5545003505, 48.4913049652 ], [ -121.4881327998, 48.508950098 ], [ -121.4721422642, 48.5088437362 ], [ -121.4623455844, 48.5215887624 ], [ -121.4499029188, 48.52736977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3601556874, 47.9337662856 ], [ -119.3421710669, 47.9339530573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.6954679099 ], [ -121.5460838145, 46.6830305932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046532988, 46.9702958878 ], [ -123.8110700669, 46.9732623777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0538459389, 47.8359849929 ], [ -120.0523540333, 47.8358056633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.9953117488 ], [ -119.4617807765, 49.0000868106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1240043387, 47.8375143859 ], [ -122.110117861, 47.8606661748 ], [ -122.1098271088, 47.8752954587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6719854785, 47.5475493235 ], [ -122.6673528658, 47.5490597613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3606111002, 46.0686802253 ], [ -118.3620580135, 46.0686467543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.5164951013 ], [ -120.4801991599, 46.5222228139 ], [ -120.4740346798, 46.5317789409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3257332902, 48.4357585766 ], [ -122.3228133919, 48.4357262199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526964173, 47.1210261719 ], [ -122.5479047169, 47.1238498878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617020964, 45.6446264754 ], [ -122.662431148, 45.6521906297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4341705298, 47.1628256566 ], [ -122.4339661209, 47.2054048624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1507870886, 48.1520523663 ], [ -122.1406082627, 48.151913289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.8204635395 ], [ -122.9030126575, 47.8171105151 ], [ -122.9099882327, 47.8113401111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0450833502, 47.3945353699 ], [ -122.0402216819, 47.4051375238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5649359725, 45.6591474533 ], [ -122.5527645121, 45.6654147454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.0711563886 ], [ -122.8179559351, 48.0780690922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982863362, 47.5159647484 ], [ -122.1981171515, 47.5215347846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.6526577026 ], [ -117.4040031937, 47.6521238544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0836074304, 46.2194354617 ], [ -119.0802022582, 46.218655692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.3836725936, 48.891377649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4299729836, 48.1175659952 ], [ -123.4189331528, 48.1130399131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245348679, 45.6980196603 ], [ -120.8239311827, 45.699442413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.0068490189 ], [ -123.370724874, 47.0107162595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070364986, 47.4594077387 ], [ -122.2071762297, 47.460991061 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981325832, 48.8071844986 ], [ -122.2025348229, 48.816156561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143033169, 47.9820481244 ], [ -122.2137802603, 47.9942207425 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.5900304239, 46.9331912019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1457324057, 46.2175957254 ], [ -119.139733927, 46.2168054788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.6533510839 ], [ -121.9052657624, 45.6630172635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7946033875, 46.6644384378 ], [ -123.7934879339, 46.6650978736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9302808397, 47.0618284552 ], [ -123.9291952045, 47.0698220314 ], [ -123.9053497947, 47.0862378881 ], [ -123.9065683519, 47.1025224633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.1600802384 ], [ -123.3772473125, 46.1712612786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0171493711, 47.533899271 ], [ -122.0078975272, 47.536442657 ], [ -121.9862702466, 47.5309639916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6860494601, 47.1944007257 ], [ -119.6058982049, 47.2443593024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347269484, 47.5378318312 ], [ -122.334116065, 47.5428151022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1407808762, 45.6112782291 ], [ -121.1458871745, 45.6207464818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5082283693, 48.4171152484 ], [ -119.4957046659, 48.4279752811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1924069122, 47.866359942 ], [ -120.2017909519, 47.8734177394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929172872, 47.4079531918 ], [ -120.2924574784, 47.4062158074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124253164, 48.3052893759 ], [ -122.3220553649, 48.3133080082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1913304565, 47.7557202808 ], [ -122.1719789948, 47.757621596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888093798, 47.6646633668 ], [ -122.6923069088, 47.6636431264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9289732825, 46.9527927439 ], [ -122.9342408253, 46.9527666325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.6413721887 ], [ -121.9750135429, 45.6406654273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7147238013, 46.8904667022 ], [ -123.7196952232, 46.9185306009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8318672716, 45.8230595037 ], [ -120.8246818019, 45.8230059935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.4940653907 ], [ -121.7947532586, 47.4893941273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3303173221, 48.6585990657 ], [ -119.300956592, 48.6532912771 ], [ -119.2320083598, 48.6707268101 ], [ -119.2170761455, 48.6694219752 ], [ -119.1977655229, 48.6613912396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4256225729, 47.223122782 ], [ -122.4262909226, 47.225964252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8502977234, 47.1752256328 ], [ -120.835010601, 47.1813621929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202363813, 48.949281296 ], [ -122.309466058, 48.9557928338 ], [ -122.3092045302, 48.9638603752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0627483977, 47.5457057767 ], [ -122.0619693815, 47.5476213035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6380760967, 47.8121912953 ], [ -119.636809987, 47.8116079214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650029443, 48.993579316 ], [ -122.2649877502, 48.9991015764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0453893577, 47.3903330933 ], [ -122.0450833502, 47.3945353699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9862005621, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129746455, 48.6527134381 ], [ -122.2128675498, 48.6558774574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.5650234096 ], [ -122.626945866, 47.5650153276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1979386219, 47.5094150608 ], [ -122.1982863362, 47.5159647484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8864441288, 47.5692233555 ], [ -121.8714099605, 47.5666180383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3012698346, 47.3733093484 ], [ -122.2963791173, 47.3865201952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.2402668908 ], [ -122.3761260037, 47.2404869197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3368309639, 45.5742854262 ], [ -122.3209227556, 45.5721542335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0733925966, 48.5848754338 ], [ -118.0753761557, 48.5902114462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826777243, 47.5721438687 ], [ -117.6826802298, 47.5728704065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4233116711, 47.3170469005 ], [ -122.3933590552, 47.3223798088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.6521906297 ], [ -122.6641643838, 45.6564855831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2859448482, 47.6619893558 ], [ -122.2731213214, 47.6686054126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9084925335, 46.1444678361 ], [ -122.9074799263, 46.1442853545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8860713061, 45.6924749788 ], [ -121.8853526517, 45.6928459455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.6807839356 ], [ -120.4770208515, 46.690052266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5173391489, 47.1402583462 ], [ -122.5087171766, 47.1447737983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844136914, 47.5118003255 ], [ -122.2959916607, 47.5348589719 ], [ -122.3052567416, 47.5434675701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3114493708, 47.3915360181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.6743020858 ], [ -117.1949668666, 46.6792475821 ], [ -117.2041283286, 46.690852856 ], [ -117.2043379911, 46.7058457651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9601733292, 47.2820553805 ], [ -122.9476214148, 47.2843120228 ], [ -122.9072628203, 47.3196228278 ], [ -122.8804463364, 47.3319204562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8996061797, 46.3980707203 ], [ -122.8901249197, 46.4071066469 ], [ -122.8903778041, 46.415684535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9079763288, 46.6939358446 ], [ -120.9004508404, 46.6954723221 ], [ -120.8993401827, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.1970266396 ], [ -122.2014569021, 47.1941769535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9191199125, 48.7058888906 ], [ -120.9018788234, 48.6993047307 ], [ -120.8869329514, 48.6878706293 ], [ -120.8730632183, 48.6662149503 ], [ -120.860204576, 48.6580196228 ], [ -120.8570944966, 48.6471093566 ], [ -120.8396554817, 48.6236676701 ], [ -120.8052610988, 48.5968427615 ], [ -120.7910556031, 48.5753448227 ], [ -120.7719880724, 48.5619204268 ], [ -120.7559189364, 48.5360943197 ], [ -120.735353297, 48.5237714938 ], [ -120.7300186258, 48.5053914965 ], [ -120.7047351948, 48.5014054647 ], [ -120.6742675651, 48.5197397944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.7502820303 ], [ -122.329647234, 47.751023302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1686914859, 48.4567062705 ], [ -120.1641201079, 48.4482031158 ], [ -120.162657037, 48.4277004159 ], [ -120.1427507914, 48.4096480739 ], [ -120.1394581142, 48.3955959557 ], [ -120.1224530293, 48.3673427778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5903662442, 47.4195793911 ], [ -121.5776035522, 47.4100021272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152583563, 47.0751224812 ], [ -119.2297404096, 47.0873925614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6550097756, 48.2961690914 ], [ -122.6459065292, 48.3044536381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.3479609208 ], [ -122.6144392443, 48.3571507648 ], [ -122.6376502047, 48.35872899 ], [ -122.6481358695, 48.3629663488 ], [ -122.6529393278, 48.3694852783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.2363292108 ], [ -122.0527912833, 48.2449618787 ], [ -122.0422700836, 48.2472730431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5109061448, 46.6442084502 ], [ -120.523724998, 46.6377396167 ], [ -120.5176792513, 46.6312271302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2460880266, 47.4822140792 ], [ -122.2262812506, 47.4777333495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6063379125, 48.8732863748 ], [ -118.6042284774, 48.8798283082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1155512302, 47.4448279782 ], [ -123.1250572733, 47.4302399209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8889879118, 46.4359167363 ], [ -122.8874838161, 46.4465601034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3302489185, 47.653713239 ], [ -117.3059533997, 47.6666196591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5100857559, 46.9261498028 ], [ -120.4979769108, 46.9262182292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1935312742, 47.3693743374 ], [ -122.1892028116, 47.3678526781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5798147835, 47.2816012149 ], [ -119.5666738127, 47.2998586553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1705524126, 46.261830974 ], [ -119.1232845443, 46.2486626016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.2675770829 ], [ -122.9002465055, 46.2807315191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356442883, 47.5965279925 ], [ -122.3366115131, 47.6017705053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4984055596, 47.7996307337 ], [ -122.4980484153, 47.7985063825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328642069, 47.5666355148 ], [ -122.6329469401, 47.5673326833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2138635159, 47.9989436144 ], [ -122.2139005694, 48.0088660673 ], [ -122.2066792685, 48.0166928257 ], [ -122.194138329, 48.0143287806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2658705764, 47.8207446489 ], [ -122.2603550037, 47.8200633469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5178051863, 46.8292156508 ], [ -117.5056679509, 46.8329591528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126146998, 48.512615782 ], [ -122.6158073359, 48.5126368227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6811544626, 47.5662461986 ], [ -122.6872359291, 47.5754584422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.5049651039 ], [ -122.2441256362, 48.5062952131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501999692, 46.3407700726 ], [ -117.0544483353, 46.341189423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5568485792, 46.6355163281 ], [ -118.5524895136, 46.6414946812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0341737891, 46.1565283618 ], [ -119.0404861073, 46.1612119681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2087469564, 46.519219156 ], [ -120.187902884, 46.5060599518 ], [ -120.1512170077, 46.5057690001 ], [ -120.1348556679, 46.5011777327 ], [ -120.0122059948, 46.5197458542 ], [ -119.9692099003, 46.519651668 ], [ -119.9107885567, 46.5364205054 ], [ -119.8800763033, 46.5339933138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8767342334, 47.9058643793 ], [ -122.8695985586, 47.8935341078 ], [ -122.8767758264, 47.8864421761 ], [ -122.8788699014, 47.8660279857 ], [ -122.8891886293, 47.8487536576 ], [ -122.8869762632, 47.8341940965 ], [ -122.8782146319, 47.8269872076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6827030778, 47.7012362102 ], [ -122.6601620541, 47.7045647028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9552434055, 46.1471068295 ], [ -122.9517110134, 46.1469021572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856549623, 48.8698410399 ], [ -122.4853470894, 48.891721005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922988122, 47.3324960837 ], [ -118.6922310931, 47.3333156666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4712654383, 46.5394142128 ], [ -120.4716805803, 46.5315434526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4568888894, 47.7154157955 ], [ -117.4586693868, 47.7154118844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0917467448, 46.2503035218 ], [ -119.0719934512, 46.2494836918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.2268141567 ], [ -117.0426450193, 47.2398211593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2504477979, 46.5248889015 ], [ -120.2087469564, 46.519219156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2613682363, 47.6314977852 ], [ -119.2620674833, 47.6387927373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0494766974, 46.168670079 ], [ -119.0547323353, 46.1734065603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5841213566, 48.8552680454 ], [ -122.5884452443, 48.8674825234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0032812985, 47.947389362 ], [ -119.0052660577, 47.9449095756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4503868347, 48.6949331433 ], [ -119.4426701243, 48.701328551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753566144, 48.5985793743 ], [ -118.0751698208, 48.6068991662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2257453992, 46.7363553939 ], [ -117.2088606428, 46.7337475063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3359326659, 48.3471746589 ], [ -122.3353139183, 48.3777532366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.7916254829 ], [ -118.735554338, 46.7937508078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1223453784, 47.6671817737 ], [ -122.1151578787, 47.6670962794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4176648406, 46.2468890125 ], [ -120.4107130626, 46.2554072697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8756714308, 47.8241423181 ], [ -122.8784338391, 47.8213945565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4105237126, 47.7523163592 ], [ -117.4066398664, 47.7632226212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650050712, 48.9927318071 ], [ -122.2650029443, 48.993579316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2693756681, 47.4848401945 ], [ -122.271537638, 47.4774623884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8631442072, 47.4386387656 ], [ -122.8510893599, 47.4467178579 ], [ -122.8432290715, 47.4472414198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3337342412, 46.9675559139 ], [ -119.3209799294, 46.9653642782 ], [ -119.2905893437, 46.9819785317 ], [ -119.2546464371, 46.9816911587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8823688809, 47.6904307157 ], [ -117.8721214923, 47.7133784629 ], [ -117.8705301943, 47.7320770346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2920566884, 47.4105282137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4801819768, 47.1632148502 ], [ -122.4736786558, 47.1615792122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5836844979, 47.8135870398 ], [ -122.575679242, 47.8083982974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1709978885, 48.2679601252 ], [ -122.2108149261, 48.3083495968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.5933681002 ], [ -117.564917202, 47.5916927028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847688223, 48.0681379541 ], [ -122.1846880578, 48.0816069517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3712410754, 46.1000850053 ], [ -118.3752602576, 46.1297165624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9976415411, 47.6844844298 ], [ -118.9853528685, 47.684966131 ], [ -118.9278071982, 47.7098400514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1795081855, 47.5879075274 ], [ -122.1799148927, 47.5984958939 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4071070263, 45.6049828823 ], [ -122.4068708389, 45.6018672646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4904926467, 47.3759248116 ], [ -119.4885964173, 47.3774858912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859651634, 48.8333491544 ], [ -122.4859682883, 48.8551455389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.0661116568 ], [ -124.1277743569, 48.0610891429 ], [ -124.0856497531, 48.0682445214 ], [ -124.0376981686, 48.0703874967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.8132799743 ], [ -121.5578566858, 47.8076375665 ], [ -121.540417972, 47.8101587782 ], [ -121.5174716436, 47.8040718423 ], [ -121.5124008767, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6612770989, 45.7464677187 ], [ -122.6644148519, 45.7566399081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1355017102, 47.9728688256 ], [ -122.1147445638, 47.9546186275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2980615002, 47.4097420223 ], [ -120.3006072071, 47.4096540761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473526853, 47.3779583767 ], [ -122.2473765563, 47.3813544414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442388387, 46.5318795567 ], [ -122.6340930823, 46.5322486745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.2226311076, 46.7258475583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4001255166, 45.5869987019 ], [ -122.4026413273, 45.5856862701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937875847, 47.2001491986 ], [ -122.2938700472, 47.204398406 ], [ -122.2900662647, 47.2038050564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068844997, 47.1589588837 ], [ -122.3938232704, 47.1581372397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3709598621, 47.979159491 ], [ -122.3858313632, 47.9827480539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938144583, 47.1988803768 ], [ -122.2937875847, 47.2001491986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.6490423139 ], [ -122.6555581763, 47.650535837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738336898, 45.6318598942 ], [ -122.6726646061, 45.6318665894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9122848657, 46.0569707003 ], [ -118.9099471422, 46.0583086547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4742083499, 46.700892472 ], [ -120.4658299611, 46.7110974278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3776962209, 47.7986124147 ], [ -122.3736956575, 47.7951965131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961576193, 48.435565171 ], [ -122.2918401179, 48.4355506598 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885119703, 47.6116238629 ], [ -122.188529648, 47.6167655089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6533156313, 47.5673798823 ], [ -122.6532972455, 47.5655345715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9165979703, 46.1447449432 ], [ -122.9162646971, 46.1456053501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0285168926, 46.3059630059 ], [ -120.0130934852, 46.3059829046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205534208, 48.891030585 ], [ -122.3207228659, 48.9128299651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0389832338, 46.2269143007 ], [ -119.0271462337, 46.2187179874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5282531262, 46.6540390188 ], [ -120.5271133231, 46.6559435532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1182659294, 47.2502870454 ], [ -122.1121601288, 47.2429315526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7937991559, 47.4331327858 ], [ -117.7834183624, 47.4410207892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939939147, 47.3262355559 ], [ -122.2926147175, 47.3445454758 ], [ -122.2958194243, 47.3530329299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6208507752, 47.3727205294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104239582, 47.7407128065 ], [ -117.4070872362, 47.7441952253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3995222327, 48.7939812329 ], [ -119.4010786247, 48.8149632644 ], [ -119.4098917758, 48.8417212767 ], [ -119.4075491533, 48.8590815563 ], [ -119.4237602533, 48.8850520385 ], [ -119.4267945588, 48.8988015987 ], [ -119.420443464, 48.9195242197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6214626929, 46.3469762238 ], [ -123.6093516169, 46.3560125261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030769375, 46.2842542837 ], [ -122.9017000705, 46.2852760142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446706564, 47.9041485453 ], [ -122.24100502, 47.9048928592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3192746176, 47.5777213746 ], [ -122.3189900834, 47.5793697605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3326182621, 48.3411594036 ], [ -122.3223136019, 48.340974526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2175661581, 47.8496908765 ], [ -122.2180791238, 47.8520936404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0626914872, 47.6565133547 ], [ -122.0246598026, 47.644263262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2111007099, 47.8781842656 ], [ -122.2064495037, 47.8781807663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6038968536, 47.6429304571 ], [ -117.5930897565, 47.6429188126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6883954382, 45.8215294532 ], [ -122.6994969166, 45.8454016677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5142285605, 45.8854969434 ], [ -122.5141163677, 45.8882670084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4127871024, 47.4225424219 ], [ -121.4125086133, 47.4188575024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0670005531, 48.0311344173 ], [ -122.0515149974, 48.0347413646 ], [ -122.0154120928, 48.0674017673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.0478652505 ], [ -122.8677373906, 46.0662316544 ], [ -122.8667316652, 46.0815539497 ], [ -122.8766472391, 46.1027391181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.6610600414 ], [ -122.2923848001, 47.661192848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7288442607, 46.3273755528 ], [ -122.7096040658, 46.3413062589 ], [ -122.705966832, 46.3506258111 ], [ -122.6957643354, 46.3590260443 ], [ -122.6794982425, 46.3616185155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1260566825, 47.8338193781 ], [ -122.1240043387, 47.8375143859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0449313771, 48.7513776852 ], [ -118.0341098319, 48.763627811 ], [ -118.0029204082, 48.7817155245 ], [ -117.9984594154, 48.7930237893 ], [ -118.0035439323, 48.8008410224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.7060084758, 48.282630412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004841678, 46.8873929159 ], [ -122.2956838746, 46.9101470708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159443381, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.4755009726, 47.7154054601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9487451622, 47.3816100186 ], [ -122.9147576786, 47.3880434547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5973616913, 47.8288659688 ], [ -117.6086838618, 47.8395393993 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938851325, 47.1496369098 ], [ -119.2942188172, 47.1497279489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1696161125, 47.8778286457 ], [ -122.1659527236, 47.8777990754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0802022582, 46.218655692 ], [ -119.0767280097, 46.2265908318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.632862566, 47.5657555269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0037700013, 46.3053205372 ], [ -117.9916818783, 46.3128548734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0447131335, 46.331198202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0311381455, 46.5464572368 ], [ -124.0345305238, 46.549222742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2905265819, 47.6724838661 ], [ -117.2740595055, 47.6747650499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2068183241, 47.898121112 ], [ -122.2070072355, 47.9049606299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2819653483, 47.864172748 ], [ -122.2804789478, 47.865772013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1493385256, 45.627246477 ], [ -121.1535252294, 45.6362913178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8878973615, 46.2290248549 ], [ -122.8855586956, 46.2431363274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2916134708, 47.299067816 ], [ -121.2855990411, 47.2943430614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7300920583, 45.9194293595 ], [ -122.7339030885, 45.9187733832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0795201794, 46.2322979284 ], [ -119.0800536366, 46.2333845599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393673303, 47.0263156043 ], [ -119.865717202, 47.0813852641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5851724439, 47.0928828595 ], [ -117.5970369922, 47.0955432506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.8650299972 ], [ -118.214404576, 48.874449448 ], [ -118.2191997319, 48.8911689414 ], [ -118.2184898942, 48.8962055128 ], [ -118.2049135992, 48.9088799037 ], [ -118.2224810046, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.2231937044, 48.9714536855 ], [ -118.2244399208, 48.9981157805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0565323603, 47.1958256105 ], [ -121.0467690066, 47.1906721316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159983682, 47.4737702544 ], [ -122.2162633519, 47.4784706076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.9560020349 ], [ -119.0023772267, 47.9485330892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433824839, 46.311738539 ], [ -124.0446066182, 46.3179898662 ], [ -124.0547726708, 46.3234251581 ], [ -124.0549477321, 46.3302467729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2341478641, 46.3874544653 ], [ -120.2006801889, 46.3575732877 ], [ -120.182959056, 46.3492095996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4110973876, 47.6862388811 ], [ -117.4111019043, 47.687150654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5826104882, 47.642912863 ], [ -117.5772145701, 47.6429329048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6439469399, 47.5027845218 ], [ -122.6342473786, 47.5049271741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1475130648, 47.3390747692 ], [ -122.1437673624, 47.3450660019 ], [ -122.1282072982, 47.3535748936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6508855836, 47.5374447335 ], [ -122.6378486297, 47.5421872915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4958895454, 48.7835005491 ], [ -122.4978200864, 48.7835877334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.1825112217, 46.7290233594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646334439, 47.5135895893 ], [ -117.5670476974, 47.526881555 ], [ -117.5936292327, 47.5547380914 ], [ -117.5941205276, 47.5625995288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1595614502, 47.2522250859 ], [ -123.1457654709, 47.2521210376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3035133121, 47.1100072069 ], [ -119.2942457468, 47.1191324392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6158073359, 48.5126368227 ], [ -122.6361324861, 48.5127555405 ], [ -122.6579787417, 48.5069926006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6689386318, 48.0733486098 ], [ -123.598965558, 48.0638062914 ], [ -123.5830787762, 48.0658416901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2871149715, 47.8209339215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7462246084, 48.1373562819 ], [ -123.7455869752, 48.1372852387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4626535561, 48.1066210145 ], [ -123.4625406534, 48.1078996274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6685724818, 47.8943422934 ], [ -117.6861862014, 47.8907180121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4410919266, 48.7031509182 ], [ -119.4398134853, 48.7045718994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.2883683977 ], [ -122.1779414139, 47.2881307235 ], [ -122.1548282244, 47.2749677214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9500747094, 47.8613131638 ], [ -119.930668758, 47.8631043834 ], [ -119.9204424478, 47.8725821754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3241499511, 46.9733140337 ], [ -117.3499111171, 46.9874191495 ], [ -117.354064457, 47.0058824451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.3964616362, 48.6672895858 ], [ -117.3713854649, 48.6388347877 ], [ -117.3629222732, 48.6033481158 ], [ -117.3526555573, 48.5904367859 ], [ -117.3546444992, 48.5669664902 ], [ -117.3455588826, 48.5553675301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510483527, 47.7829431864 ], [ -122.3487077695, 47.7814262958 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.3333178275 ], [ -118.69367346, 47.3333652583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0476765238, 47.7333586658 ], [ -117.0419553671, 47.7358000914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654432539, 46.8668033464 ], [ -122.2654507751, 46.8691413663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0536764297, 47.3579952591 ], [ -122.0435504851, 47.3579738218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7096706618, 47.4632751617 ], [ -121.696592014, 47.4467696564 ], [ -121.6749565537, 47.443251501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.7323152241 ], [ -122.6370754284, 47.7334671319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1250572733, 47.4302399209 ], [ -123.1403335938, 47.4070557775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7624088379, 47.1468189921 ], [ -119.7380298017, 47.1620255285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0239885328, 47.836037193 ], [ -120.0148836023, 47.8388580147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3642787688, 47.8215067044 ], [ -122.3617083091, 47.8214854076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.6441332225 ], [ -122.3678919314, 48.6545170814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9809250496, 47.2078375727 ], [ -120.9825252207, 47.2092344825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738387769, 45.6325598997 ], [ -122.6770752412, 45.6327721391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8110700669, 46.9732623777 ], [ -123.8132785951, 46.9750588263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9356420479, 47.5224107728 ], [ -121.9034935566, 47.5065417758 ], [ -121.8899669956, 47.507262303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1693615258, 46.2688128518 ], [ -118.1599270282, 46.2701832514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.3612124716 ], [ -120.1178922765, 48.3599953038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1794448564, 47.6657680173 ], [ -117.1433040389, 47.6655064295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.5270485575 ], [ -122.6680239887, 47.5318789785 ], [ -122.6620910392, 47.5392820916 ], [ -122.6508855836, 47.5374447335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8910176347, 46.421545267 ], [ -122.8889879118, 46.4359167363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2986045804, 47.2906745073 ], [ -122.2844861848, 47.2982208758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0654021951, 46.5056331844 ], [ -118.109757182, 46.5129212108 ], [ -118.1404188433, 46.5276658723 ], [ -118.1547520035, 46.5394792517 ], [ -118.1780336772, 46.5472938895 ], [ -118.1787324832, 46.5582109589 ], [ -118.2175509794, 46.5840153341 ], [ -118.2223022809, 46.5981111151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7226222255, 45.9280008842 ], [ -122.7255915614, 45.9205289409 ], [ -122.7300920583, 45.9194293595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3331696319, 46.3769677074 ], [ -120.3597576147, 46.3905484679 ], [ -120.3933744977, 46.4150549766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.9060034469, 47.0215459655 ], [ -122.8983905827, 47.0254310319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6251575619, 46.6007463777 ], [ -123.6187441805, 46.5926082182 ], [ -123.6185028529, 46.5642568928 ], [ -123.6111780751, 46.555555809 ], [ -123.6035760875, 46.5548361522 ], [ -123.5879273803, 46.5630859685 ], [ -123.5746576675, 46.5626246259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6752481496, 47.5885745711 ], [ -120.67150803, 47.5902637122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8891124761, 46.5836691379 ], [ -122.8857507292, 46.5838092047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7787592741, 48.9171693044 ], [ -117.7772882632, 48.9177594411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9615435138, 47.60154051 ], [ -121.9532472828, 47.5883720957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1147445638, 47.9546186275 ], [ -122.1063789003, 47.9520311616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7293771219, 46.6866295208 ], [ -123.7300519299, 46.6888584117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5176792513, 46.6312271302 ], [ -120.5135770418, 46.6284896582 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1825112217, 46.7290233594 ], [ -117.1800952459, 46.7289180943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3051164258, 47.5266969435 ], [ -120.2930920819, 47.5434095413 ], [ -120.262078237, 47.5688721141 ], [ -120.2491764405, 47.5869624313 ], [ -120.2392421914, 47.6211257043 ], [ -120.2414203985, 47.6309835125 ], [ -120.2282667897, 47.6502596506 ], [ -120.2245455295, 47.6632648417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.5712733617 ], [ -121.8880335642, 47.567584502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3792847178, 48.2409791825 ], [ -122.3706721348, 48.2410706967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0858231048, 46.1966150682 ], [ -119.0933468628, 46.1991336316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1525821693, 47.8602012466 ], [ -120.114481517, 47.8477254195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9716062284, 46.5097445742 ], [ -117.977840654, 46.5125790079 ], [ -118.0295588988, 46.5029503931 ], [ -118.050008143, 46.5072926137 ], [ -118.0654021951, 46.5056331844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6399785669, 47.7561660923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5947129537, 47.504905792 ], [ -122.5927942323, 47.5049278803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0528218155, 47.1410552733 ], [ -122.036341396, 47.1564220776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2043379911, 46.7058457651 ], [ -117.2035165481, 46.708001321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.9428804513 ], [ -117.4815523866, 47.9470052096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1413008619, 47.4050125018 ], [ -123.1477743844, 47.3845206777 ], [ -123.159376622, 47.3704053086 ], [ -123.1611162657, 47.3406418157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5551539066, 48.3113332029 ], [ -121.5543923163, 48.3214625286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8191660399, 48.3201502053 ], [ -117.8266708398, 48.3271469455 ], [ -117.8339867358, 48.3531223429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3298290597, 47.7041346347 ], [ -122.3299521063, 47.7048820072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1548282244, 47.2749677214 ], [ -122.1526290082, 47.2744486003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8383635311, 47.4109223756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854821185, 47.9460570961 ], [ -124.3854576502, 47.9480859363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1611162657, 47.3406418157 ], [ -123.1613235363, 47.333867098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8605402927, 47.4233280775 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0279928055, 47.3596803479 ], [ -122.0209265407, 47.3613941171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3752602576, 46.1297165624 ], [ -118.3726222715, 46.147436197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525923868, 45.6672693746 ], [ -122.5525552477, 45.6778313417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1371263893, 46.2216194455 ], [ -119.134005824, 46.2288412929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3482490253, 48.4942122629 ], [ -122.3773305642, 48.5155613349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5095189303, 45.8498089062 ], [ -121.5108648914, 45.8655058663 ], [ -121.5212328319, 45.8847480557 ], [ -121.4996741979, 45.915317054 ], [ -121.489450713, 45.9608115296 ], [ -121.4935352823, 45.9684352892 ], [ -121.5252103086, 45.9957998151 ], [ -121.5337335651, 45.9984030688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7944730895, 48.0983151568 ], [ -119.7901966083, 48.1001446551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.4457098369 ], [ -122.5823712081, 48.4544018047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7996236578, 48.0504853323 ], [ -122.8155297756, 48.0684125491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6641643838, 45.6564855831 ], [ -122.6669203097, 45.6632919305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.3341920495, 47.5902797808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454920241, 47.7526354194 ], [ -122.345920634, 47.7708341637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6738118915, 48.6504316995 ], [ -118.6706352632, 48.6541388326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2287970334, 46.322331888 ], [ -120.1173782267, 46.2487258708 ], [ -120.0419262876, 46.2219914931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843966097, 46.5334326776 ], [ -118.5651606624, 46.537428166 ], [ -118.534825247, 46.5721567274 ], [ -118.5611540342, 46.6273261384 ], [ -118.5568485792, 46.6355163281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2464336415, 46.0556053087 ], [ -122.2456091349, 46.0556807198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2628122677, 48.9927495948 ], [ -122.2650050712, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.4839534054, 46.7954711602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.4967354264 ], [ -122.2527825057, 48.5028862443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0562083367, 48.7288096268 ], [ -121.0248123581, 48.7241331 ], [ -120.9683186319, 48.7052249613 ], [ -120.9191199125, 48.7058888906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7880909112, 46.967896691 ], [ -123.801005869, 46.9715394508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126265866, 48.4934511275 ], [ -122.6128336455, 48.4963987197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6377513794, 48.0630093485 ], [ -117.6367704982, 48.0627193371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9545771246, 48.0754505177 ], [ -123.9167844502, 48.067797845 ], [ -123.8588524092, 48.0494599267 ], [ -123.8267789051, 48.0522912919 ], [ -123.8076778624, 48.0488636487 ], [ -123.7799058231, 48.0601192625 ], [ -123.7697626403, 48.0758388116 ], [ -123.7358376193, 48.0813231124 ], [ -123.7306682808, 48.0861363728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.6483088559 ], [ -122.5794120249, 45.6676715094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3759701159, 47.2469906191 ], [ -122.3730388085, 47.247348751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.0861911278 ], [ -119.8628433861, 47.0896867872 ], [ -119.8540034289, 47.093700135 ], [ -119.8535479607, 47.1032529839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0803644861, 46.7452804885 ], [ -124.0824521881, 46.7544029188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0609392727, 46.1762466146 ], [ -119.0745599425, 46.1865269366 ], [ -119.077331005, 46.1940733709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.4305793587 ], [ -122.8763595467, 47.4318329878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.4968769556, 47.7970409839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1688952325, 47.7523661354 ], [ -122.1611915713, 47.7452096371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5666738127, 47.2998586553 ], [ -119.561131671, 47.3075520766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1445158196, 48.2276178924 ], [ -117.1147080098, 48.2225207152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929937518, 47.1566288415 ], [ -122.2940695704, 47.1604934513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2714942577, 47.3774662501 ], [ -122.24684628, 47.3779642912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617016336, 45.7795054863 ], [ -122.6565486135, 45.7796107255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3949918933, 47.6575846328 ], [ -117.3965543236, 47.6618427629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2016705042, 47.7214958149 ], [ -120.1970669834, 47.7355209682 ], [ -120.1884165074, 47.7450718323 ], [ -120.1489577681, 47.7627227749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2838095032, 47.7600084566 ], [ -122.2805998666, 47.756565837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4004187802, 46.4742779497 ], [ -120.3873706387, 46.4670041855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7547734432, 46.6823312222 ], [ -123.7457821436, 46.6828253187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646472962, 47.5079585085 ], [ -117.5646334439, 47.5135895893 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.1034506094 ], [ -119.5588936409, 47.1038824628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3147914885, 47.7977880413 ], [ -122.3109574982, 47.8036768463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0162894195, 46.1394401375 ], [ -119.0136095347, 46.1478903111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7975638125, 46.2245562959 ], [ -119.7793761782, 46.2212051746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485845591, 47.8886416262 ], [ -122.144284589, 47.8911732556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2576809614, 47.4624296733 ], [ -122.2538113908, 47.4617511143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511977801, 48.3765935554 ], [ -122.6469511117, 48.3911357861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899748205, 47.6377977945 ], [ -117.4834194345, 47.6349163355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694634271, 48.2806289911 ], [ -122.6686935469, 48.2839223474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2883400594, 47.3993847963 ], [ -120.2863393433, 47.3982856502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.7338069071 ], [ -122.2965384457, 47.7337970814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.1429892693 ], [ -123.0963235193, 47.1342723946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.9813954636, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0728624554, 48.6070846621 ], [ -118.0754032266, 48.6062200924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455562905, 46.4072575118 ], [ -117.0455667913, 46.4144864199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.4199328277 ], [ -117.0418858195, 46.4199930726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7811517034, 48.1041817295 ], [ -119.7756848413, 48.1086426578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9203722024, 48.5548430412 ], [ -117.9251619366, 48.557993926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8974973541, 46.4793963978 ], [ -122.881749481, 46.4752593869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3632090748, 47.2405896685 ], [ -122.3444902745, 47.2410622326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1502609571, 46.1420400459 ], [ -118.1326510755, 46.1574552913 ], [ -118.1306968579, 46.1654154745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.2057419837 ], [ -122.909567729, 46.2331832879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.8868591474 ], [ -124.1042307641, 46.8878717782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.9195242197 ], [ -119.4341632669, 48.9323868359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3857593028, 47.9408546394 ], [ -124.3855106235, 47.9441729563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9380954914, 46.1457035998 ], [ -118.9357957557, 46.1384811775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5615375286, 47.710001753 ], [ -122.5707855947, 47.7139681507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3232041563, 47.5929897168 ], [ -122.3156584943, 47.5948454186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764136146, 46.7968582865 ], [ -119.1766968441, 46.8046382853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3643429172, 46.8885261173 ], [ -117.3642482346, 46.8895898765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2731333424, 47.5407820544 ], [ -124.287584452, 47.5365770819 ], [ -124.3198478847, 47.5165241792 ], [ -124.3334309825, 47.5191415285 ], [ -124.3376247694, 47.5271647394 ], [ -124.3334713323, 47.5382230035 ], [ -124.3564280609, 47.5540059408 ], [ -124.3744668125, 47.6129385181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.4652569769 ], [ -122.2191991764, 47.4676990124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6873276483, 45.815867042 ], [ -122.6854710172, 45.8159186028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282072982, 47.3535748936 ], [ -122.1105727106, 47.3639441595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.0565323603, 47.1958256105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5792543891, 45.780262944 ], [ -122.5632686852, 45.7805094295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3446807868, 47.6717289639 ], [ -117.3419659665, 47.6723961843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.8505614694, 46.6606108889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295211986, 48.3202909794 ], [ -122.6286423009, 48.325690041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5798641373, 47.8122645365 ], [ -121.570503455, 47.8132799743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4600900511, 47.1585657847 ], [ -122.4440605013, 47.158268456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931688795, 47.8504172566 ], [ -122.2875761547, 47.8581507051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1895522829, 47.9817536396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526476236, 47.8049830492 ], [ -122.1434306209, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9067208674, 46.2922496265 ], [ -122.9144562174, 46.3202165297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1949845235, 47.5021417776 ], [ -122.1871847394, 47.5018573254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1299980522, 48.2057570202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8714099605, 47.5666180383 ], [ -121.8655443332, 47.5625960148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6823651856, 46.6537194229 ], [ -123.6623988407, 46.6469519661 ], [ -123.6542600354, 46.633500722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002077406, 47.1262326925 ], [ -123.102377983, 47.1126716861 ], [ -123.09520306, 47.1066616235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4851566888, 48.9933456178 ], [ -122.48508877, 49.0005739703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4746332727, 47.3939164723 ], [ -121.4469739493, 47.3982243324 ], [ -121.4312142261, 47.4244614737 ], [ -121.4223417195, 47.4282688783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266798027, 45.6184887446 ], [ -122.5989397766, 45.6129740168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.8116126602 ], [ -122.1921188204, 47.8129694111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001156286, 47.9185854039 ], [ -122.3001742723, 47.9219962025 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.6304436393, 47.5650259077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111371057, 47.6944973222 ], [ -117.4111387601, 47.6953642106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6392561156, 47.8677305236 ], [ -122.6090544172, 47.8521256366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495866356, 47.9814746809 ], [ -117.3496454526, 48.0068914762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.7437352957, 48.0253259826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1255239767, 47.4635158088 ], [ -122.1376219385, 47.4652954001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4174728874, 48.7462831433 ], [ -117.4146881423, 48.7566267665 ], [ -117.402437726, 48.7676671259 ], [ -117.4076382091, 48.7764590477 ], [ -117.4220851353, 48.7827080731 ], [ -117.4232350107, 48.7883712057 ], [ -117.3946339612, 48.8268190888 ], [ -117.3880478769, 48.8570115349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.6963748835 ], [ -120.8245348679, 45.6980196603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7238512322, 47.772533091 ], [ -118.7225935085, 47.7708524695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.8293869076, 47.1408764113 ], [ -117.8448910097, 47.1542913283 ], [ -117.8710413696, 47.1578138772 ], [ -117.8713875973, 47.1878396227 ], [ -117.8903636196, 47.2092221227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7936594895, 48.0437626987 ], [ -122.7996236578, 48.0504853323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.4915532327 ], [ -122.9103335991, 46.482928058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4960377839, 46.8670870363 ], [ -119.4753373648, 46.862537997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347023936, 47.5375284994 ], [ -122.3347269484, 47.5378318312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0560803608, 46.3250305409 ], [ -117.0639679546, 46.3288210403 ], [ -117.0533201894, 46.3352565084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9698911237, 46.4019382554 ], [ -122.9615212742, 46.401988221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455667913, 46.4144864199 ], [ -117.0451921636, 46.416527455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393652388, 47.5748709959 ], [ -122.3363467181, 47.5916540334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7062185932, 46.8779876268 ], [ -123.7095800286, 46.8824221446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.4651180339, 46.2822112261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1823923289, 46.7153301884 ], [ -117.184576053, 46.7209092456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3613918472, 46.5494638956 ], [ -120.335129764, 46.5487710681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.8810185511 ], [ -117.3643429172, 46.8885261173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7695997378, 46.9546351666 ], [ -123.7703914682, 46.9553073045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024622981, 47.0953255419 ], [ -122.1877595188, 47.0819384727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1986940231, 47.2401706315 ], [ -123.1912428882, 47.2429358128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0976103078, 45.8260671911 ], [ -121.0775669185, 45.8369135892 ], [ -121.0642894236, 45.8376125847 ], [ -121.0608960245, 45.8431779335 ], [ -121.0440024936, 45.8433714611 ], [ -121.042019508, 45.8485283308 ], [ -121.0374313104, 45.8410607376 ], [ -121.0154166753, 45.8413818742 ], [ -121.0043878428, 45.8462946752 ], [ -121.0038482918, 45.8572379269 ], [ -120.9972196495, 45.8575744394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2339586384, 48.510507948 ], [ -122.2323979204, 48.5104945464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174730359, 47.3653428749 ], [ -122.6177931336, 47.3660514733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4964887302, 47.7981317254 ], [ -122.4975542478, 47.7988312911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8236282381, 45.6963748835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304207056, 46.6430874404 ], [ -120.5304211479, 46.6486735819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370754284, 47.7334671319 ], [ -122.6377776889, 47.7367740872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873059636, 46.0008733795 ], [ -118.3895048351, 46.0116896783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.1863524437, 46.8303419645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5710608079, 46.9700238316 ], [ -118.5888210566, 46.9701558628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8131962319, 47.6126343481 ], [ -119.755706339, 47.6121641933 ], [ -119.7378232275, 47.6051578842 ], [ -119.7207218172, 47.5911027894 ], [ -119.6946295812, 47.5841828284 ], [ -119.6697674526, 47.5997916763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2430570827, 47.378057579 ], [ -122.2373624055, 47.3779147052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3617083091, 47.8214854076 ], [ -122.3518259847, 47.821404826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1932937046, 47.6371487563 ], [ -122.1881596197, 47.6322979443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3155342499, 47.1016304023 ], [ -119.312911608, 47.1034589548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1601671048, 47.6539518845 ], [ -118.1576684527, 47.6540467209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.9706138586 ], [ -123.8023146967, 46.9715050749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714795546, 47.648195998 ], [ -120.0714484595, 47.6491744077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3470868548, 46.0613934646 ], [ -118.3484813064, 46.0630851666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3291013409, 47.7873237723 ], [ -117.303824325, 47.7875196843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.1976527666, 47.5284479262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4322202216, 47.2386425935 ], [ -122.4330740998, 47.2403048183 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984506931, 47.2150788727 ], [ -123.0827870167, 47.2167787857 ], [ -123.0541037369, 47.2368676818 ], [ -123.0463421603, 47.2472806543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0542260413, 47.6939743273 ], [ -117.0483767272, 47.6956888561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9169607763, 46.7378528943 ], [ -119.9181387188, 46.7453195258 ], [ -119.9303833583, 46.7566116646 ], [ -119.9250609686, 46.7992595246 ], [ -119.9194676679, 46.8134191374 ], [ -119.9295645603, 46.8257316077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422256352, 46.9696837609 ], [ -119.0406007171, 46.9696767228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9594136168, 46.8965445916 ], [ -122.9504462358, 46.8962553703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5901063759, 48.4885682085 ], [ -121.5827190303, 48.4888446329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0740512207, 47.3581005334 ], [ -122.056859545, 47.3579998249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1552091714, 45.6491568269 ], [ -121.1043883879, 45.6485914606 ], [ -121.0817415229, 45.6584905199 ], [ -121.0373692153, 45.6641740956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.3040619068 ], [ -122.5141387154, 47.305285326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947521893, 47.3943368889 ], [ -122.2966747787, 47.399436909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3314940653, 48.4135964059 ], [ -122.3351426952, 48.421566968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0312749766, 46.6723519543 ], [ -120.9751255601, 46.6711716406 ], [ -120.9539742197, 46.6836791847 ], [ -120.9423362381, 46.6834592118 ], [ -120.9236598936, 46.6901898346 ], [ -120.919967452, 46.6953639912 ], [ -120.9079763288, 46.6939358446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8793107352, 46.9778455486 ], [ -123.8823509757, 46.9792200862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4755009726, 47.7154054601 ], [ -117.4775864514, 47.7155036924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9615212742, 46.401988221 ], [ -122.9490131702, 46.4020849219 ], [ -122.9279330238, 46.4116100688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6701869958, 45.7753317642 ], [ -122.6742471673, 45.7884633898 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5695221755, 47.2976027952 ], [ -122.5728475744, 47.3013604296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6656137967, 46.8138014312 ], [ -117.6550649229, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207228659, 48.9128299651 ], [ -122.3206641784, 48.920195997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9183274849, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.0530641068 ], [ -122.2947627706, 47.0592610847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0517810734, 46.3795878122 ], [ -117.0448176781, 46.3941409901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1825622133, 47.6861532736 ], [ -122.1796695496, 47.6992447918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216151872, 47.6765956856 ], [ -122.1216193183, 47.6754410608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006964497, 46.8856559346 ], [ -122.3004841678, 46.8873929159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5192085128, 46.0499502566 ], [ -118.480204124, 46.0490486428 ], [ -118.4380859373, 46.0577292113 ], [ -118.4150633113, 46.0706784483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410552917, 48.4313110136 ], [ -122.3410260439, 48.4420756317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2536978763, 46.7208346039 ], [ -117.2226311076, 46.7258475583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3636245159, 46.8909558494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1790908365, 48.0404147216 ], [ -122.1778352269, 48.046828316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5739759223, 47.6429386574 ], [ -117.5662058166, 47.642947503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.9142967877, 47.0151102563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1915989356, 48.0125732298 ], [ -122.190360403, 48.0112588295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4949520588, 45.7249743594 ], [ -121.4899695301, 45.724018802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3750456098, 46.5493985238 ], [ -120.3613918472, 46.5494638956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6224996657, 46.0271360717 ], [ -120.5755323972, 46.0394288913 ], [ -120.5347510985, 46.1239501497 ], [ -120.5155304936, 46.1430933666 ], [ -120.5037936831, 46.1723589628 ], [ -120.4878548002, 46.1971162847 ], [ -120.4797089864, 46.2036499179 ], [ -120.4298698764, 46.2228395437 ], [ -120.419279593, 46.2335193656 ], [ -120.4176648406, 46.2468890125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3460982766, 46.053273733 ], [ -118.3463687355, 46.0605179899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2917105696, 46.5347459334 ], [ -120.2504477979, 46.5248889015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6692405052, 46.0403350228 ], [ -118.6587450787, 46.0394084907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3384306266, 47.7875972066 ], [ -117.3291013409, 47.7873237723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6960888319, 47.5248350158 ], [ -122.6971089618, 47.524879573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.2842547986 ], [ -122.3028757982, 47.3000530138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1811585184, 47.3649772586 ], [ -122.1761180844, 47.3631667878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8090468875, 46.9772106863 ], [ -123.8132040823, 46.9766495807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7307102829, 46.6823557798 ], [ -123.7094384198, 46.6776841454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2447763261, 47.3180985045 ], [ -122.2446858124, 47.3297219858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3037605642, 47.5106094253 ], [ -122.3124883705, 47.5167348211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0400651005, 47.2403316548 ], [ -117.0398725383, 47.2402750621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4627470202, 47.2159591708 ], [ -122.4615526157, 47.2287362725 ], [ -122.4466273692, 47.2301579669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3248627173, 47.6754104751 ], [ -117.2827858737, 47.6810526384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4189331528, 48.1130399131 ], [ -123.4171863107, 48.1123263385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245604481, 47.4752697078 ], [ -122.642332524, 47.4978831795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3035547655, 47.410929097 ], [ -120.3041069002, 47.4122978378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0453814357, 48.1774974633 ], [ -117.0441181005, 48.1780553435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3236068716, 47.7340600888 ], [ -122.3127959962, 47.7339766531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872965039, 48.1444384712 ], [ -122.1900214152, 48.1598254833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.6674773757 ], [ -117.3594319704, 47.6686111382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5170315735, 46.5330350165 ], [ -122.4853465728, 46.5342767318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1954842634, 48.8206495581 ], [ -122.1716283618, 48.8323550601 ], [ -122.155341196, 48.853030999 ], [ -122.1523151666, 48.8665218931 ], [ -122.1570234366, 48.8806206725 ], [ -122.1433236191, 48.9047123737 ], [ -122.1380018087, 48.9060853167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1545590892, 47.0396761869 ], [ -117.1608612896, 47.0509546305 ], [ -117.146111612, 47.067878035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8765100174, 46.5439285548 ], [ -122.8764947699, 46.5550803084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9295645603, 46.8257316077 ], [ -119.9387815067, 46.8353151904 ], [ -119.9378634013, 46.8432344905 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0431258874, 48.3481890608 ], [ -120.0362435031, 48.3607879462 ], [ -119.9809763065, 48.371736888 ], [ -119.9321337254, 48.3695684578 ], [ -119.9141758591, 48.3742424396 ], [ -119.8984187896, 48.3889279841 ], [ -119.8882430796, 48.3877996604 ], [ -119.8648010839, 48.3969338528 ], [ -119.8235449654, 48.3808931536 ], [ -119.784579131, 48.3798347197 ], [ -119.7497426686, 48.3660865683 ], [ -119.7287666335, 48.3671066996 ], [ -119.7065630171, 48.3627406411 ], [ -119.6993334105, 48.3467648995 ], [ -119.6680924655, 48.3230367393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4284944729, 47.078773705 ], [ -122.4350543494, 47.0839448876 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2689243165, 47.0679844678 ], [ -123.2525189659, 47.0789963959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1832082778, 47.2443206311 ], [ -121.1768999971, 47.2389448117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0378003229, 46.5491873736 ], [ -124.0373317269, 46.5672415916 ], [ -124.0265521556, 46.58429985 ], [ -124.0397283027, 46.5978816985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0440853494, 47.0525732949 ], [ -124.0505531099, 47.0566292363 ], [ -124.1082174747, 47.0560237504 ], [ -124.1531482322, 47.0433503074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5510696792, 47.5051569339 ], [ -122.5298400174, 47.5049019302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7212000555, 48.2626191576 ], [ -119.7049060391, 48.2782037899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472598635, 45.7589462816 ], [ -122.5473330202, 45.7703035237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3335812302, 48.341165856 ], [ -122.3326182621, 48.3411594036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2141719319, 47.6561755599 ], [ -120.1924709331, 47.6838275242 ], [ -120.1902327501, 47.6940236402 ], [ -120.1937187948, 47.6998534485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209191677, 48.9438094983 ], [ -122.3202363813, 48.949281296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799369192, 47.8125762494 ], [ -122.1754150379, 47.811547043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9591582091, 46.3481677178 ], [ -123.9555447472, 46.3504543 ], [ -123.949867913, 46.3732697997 ], [ -123.9531883892, 46.3784215418 ], [ -123.9495211568, 46.3843983473 ], [ -123.951959767, 46.4025025126 ], [ -123.938858253, 46.4032384098 ], [ -123.9346445705, 46.4158252959 ], [ -123.9242989372, 46.4190929551 ], [ -123.9160104721, 46.4297961412 ], [ -123.9058517568, 46.4293200912 ], [ -123.9003658782, 46.4347974243 ], [ -123.8906810599, 46.4350146931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9279330238, 46.4116100688 ], [ -122.9121178886, 46.4105521332 ], [ -122.8916600156, 46.4181629111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1801941156, 46.3452788522 ], [ -120.1791144823, 46.3455191654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9915686193, 47.2044466268 ], [ -121.9910780054, 47.2049216282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1333443494, 46.8263220149 ], [ -119.1331872975, 46.8409896084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282861482, 46.5773297724 ], [ -119.7248439418, 46.5683166901 ], [ -119.6902811291, 46.5463805823 ], [ -119.6790929472, 46.5263482722 ], [ -119.6634202728, 46.5132991887 ], [ -119.6166058605, 46.5023813913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.2826226664 ], [ -122.3178488457, 47.2898411383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2752765933, 47.1325238534 ], [ -119.2740001981, 47.1335512955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3214916682, 47.561289773 ], [ -122.320109391, 47.5692199392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1587898641, 46.2094963127 ], [ -119.1588364929, 46.2122195073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2804789478, 47.865772013 ], [ -122.2789804626, 47.867386825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2029385026, 46.1652739565 ], [ -119.1975722229, 46.1692293994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111387601, 47.6953642106 ], [ -117.4111538627, 47.7133751719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4727205134, 46.9377338042 ], [ -122.4716597285, 46.9377123473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6754402986, 48.8651910486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1379808146, 48.9172113904 ], [ -122.1432040179, 48.9173881457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3961715735, 47.919272726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9799410614, 46.666273563 ], [ -122.9784909888, 46.6723810975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2522187666, 47.3034827803 ], [ -122.2536584722, 47.3012935761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.3579998249 ], [ -122.0536764297, 47.3579952591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3533511027, 47.7851161679 ], [ -122.3510483527, 47.7829431864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0689280259, 47.7241616056 ], [ -117.0476765238, 47.7333586658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9062715578, 46.9810823154 ], [ -123.9083860539, 46.9811017411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5440284191, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.2938519207, 47.2509469514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0395446219, 47.033662887 ], [ -122.0436590305, 47.0516887209 ], [ -122.0410310566, 47.0734128335 ], [ -122.0474726563, 47.0804529811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4122698552, 46.7012162608 ], [ -118.3441820755, 46.7361724356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9493878602, 47.6583110212 ], [ -117.9379417422, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5624136586, 45.6062101725 ], [ -122.5274842124, 45.5979967225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0548732503, 46.3323172772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940652218, 47.0777178732 ], [ -122.2939240773, 47.0800385113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8137272987, 47.9229521483 ], [ -122.7947100987, 47.9175473278 ], [ -122.7581000772, 47.8945415035 ], [ -122.7396338722, 47.8911395035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446210177, 47.7050638875 ], [ -122.3447339385, 47.7065541178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649931364, 46.8746110638 ], [ -117.3650011171, 46.8751003196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5521517487, 45.68208727 ], [ -122.5318979045, 45.6826849971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323106527, 46.3245338278 ], [ -122.7288442607, 46.3273755528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0340311094, 48.9278686212 ], [ -122.0227559288, 48.9270850303 ], [ -122.0075390683, 48.9193687906 ], [ -121.9849997675, 48.9008367068 ], [ -121.9450533075, 48.8896410913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7780253279, 48.1083589075 ], [ -122.7728740575, 48.109600754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3455787056, 47.7806814889 ], [ -122.3446909131, 47.7817536234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2490284682, 47.4830589416 ], [ -122.2460880266, 47.4822140792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8868033166, 47.5690968006 ], [ -121.887427285, 47.5718451267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6579787417, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8853301763, 47.9139270916 ], [ -122.8767342334, 47.9058643793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3420450241, 47.2135776972 ], [ -122.3138098088, 47.2044681618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3320582967, 47.6264826812 ], [ -119.2978771665, 47.6166084807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.5873771825 ], [ -117.4117450085, 47.6019773285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3038736838, 46.4140405564 ], [ -120.2842524512, 46.4056644379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0470850116, 47.1062792018 ], [ -122.0554197251, 47.112433828 ], [ -122.0490317008, 47.1302879626 ], [ -122.0557206222, 47.1388187332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9908494983, 47.8657174136 ], [ -121.9791204594, 47.8613218296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3064146166, 48.2617164172 ], [ -124.2647934958, 48.2531691393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8412727199, 48.8719526263 ], [ -117.827799169, 48.8882487868 ], [ -117.8136926167, 48.8971177199 ], [ -117.8009917503, 48.899088371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1836148532, 48.0518643974 ], [ -122.1822932343, 48.0518738744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.5650153276 ], [ -122.6269686691, 47.5636496207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114600933, 45.7166372424 ], [ -120.4769148344, 45.7027025383 ], [ -120.4083086691, 45.705944172 ], [ -120.3209109655, 45.7192547167 ], [ -120.2633497092, 45.7339077039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5853439854, 48.3602159749 ], [ -119.5835757391, 48.3616001759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2084243459, 47.9195131157 ], [ -122.2074382827, 47.9188560677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9775744375, 48.130752286 ], [ -118.9762561497, 48.135096529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.6483371933 ], [ -119.1237574553, 47.6846698514 ], [ -118.9976415411, 47.6844844298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169944864, 47.1654459949 ], [ -120.8108589679, 47.1638387052 ], [ -120.8043961298, 47.1513524322 ], [ -120.7835732851, 47.1325177974 ], [ -120.7268634764, 47.1248477284 ], [ -120.7165569761, 47.1159003737 ], [ -120.7145912511, 47.1089655258 ], [ -120.691960834, 47.0992611593 ], [ -120.6235085123, 47.0432551254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1170200605, 48.2084489517 ], [ -122.1043084158, 48.222137855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6399303545, 47.813732472 ], [ -119.6380760967, 47.8121912953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4842297169, 47.3934848684 ], [ -119.4973048928, 47.4245366123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1069288247, 48.0063280675 ], [ -122.1080928359, 48.0132540479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.4720497684 ], [ -122.2159983682, 47.4737702544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3419659665, 47.6723961843 ], [ -117.3283026635, 47.6754413596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7132594935, 47.5239714664 ], [ -122.7066290132, 47.5247891631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1615462137, 48.7118489675 ], [ -121.1354894847, 48.7101414512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9535543166, 46.5073208118 ], [ -121.9542721665, 46.5167411946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9790026711, 46.3316725974 ], [ -119.9790994297, 46.3654277374 ], [ -119.970594385, 46.3753130226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714484595, 47.6491744077 ], [ -120.0634672167, 47.6491812786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9346988288, 47.1921997068 ], [ -121.9113034403, 47.1660060551 ], [ -121.9032240437, 47.1642334315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3627410114, 46.0415078207 ], [ -118.3464591984, 46.0510569216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0072302557, 47.1840617967 ], [ -120.9658761326, 47.1936165169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.6777404653 ], [ -123.7547734432, 46.6823312222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2090874074, 46.5114897943 ], [ -122.1827981053, 46.5094011436 ], [ -122.1563756705, 46.5189965757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127959962, 47.7339766531 ], [ -122.3100733649, 47.7339389204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.1422545472 ], [ -119.1719528856, 46.1538172927 ], [ -119.1495477506, 46.1541704221 ], [ -119.1242140583, 46.1493404787 ], [ -119.0668149366, 46.1268888879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2313987649, 47.3961663604 ], [ -122.2214808618, 47.4035987998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405321497, 48.0270703271 ], [ -122.7350638939, 48.0308244206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1515895973, 48.9460909964 ], [ -122.1536154484, 48.9498823783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059518963, 45.815636231 ], [ -122.7026610905, 45.8155477016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.7875196843 ], [ -117.2582087731, 47.7876105753 ], [ -117.2290446727, 47.8020950345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.4370383266 ], [ -122.60172507, 48.4418166919 ], [ -122.602890707, 48.4457098369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5414842419, 48.011987346 ], [ -122.5455047346, 48.0151911959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1304728709, 47.2420790028 ], [ -117.132009721, 47.2741237154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4998793264, 48.7103012557 ], [ -122.5020729469, 48.7159651259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1676525064, 46.7262385037 ], [ -117.1648061028, 46.7232723565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.3249495062, 47.760975014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179559351, 48.0780690922 ], [ -122.8150974014, 48.097207949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0197980383, 47.1768730848 ], [ -122.016253916, 47.1784207654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4266731536, 45.5798853327 ], [ -122.4170054578, 45.5751977401 ], [ -122.3962982687, 45.5785567586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4017832625, 47.9345882869 ], [ -124.3857593028, 47.9408546394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1925948411, 47.4136830468 ], [ -123.2179596822, 47.4327965248 ], [ -123.2105622712, 47.4554072848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5867415871, 47.0023957095 ], [ -120.5555025637, 46.9769598385 ], [ -120.5309634911, 46.9718013391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.7754696717 ], [ -119.1764946499, 46.7820725916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443830084, 48.2398913159 ], [ -122.3303084037, 48.2396939589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6292421446, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9764083197, 47.306520851 ], [ -117.9640727762, 47.3120619457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3330101537, 46.3081349737 ], [ -120.321048285, 46.3210895826 ], [ -120.3205033055, 46.3313990906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5767646402, 47.4862221857 ], [ -117.5759657586, 47.4868903381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1646271104, 47.7572105358 ], [ -122.1653460578, 47.754516793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0581786213, 47.8560176572 ], [ -120.0540259825, 47.8553267629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5294843284, 47.134748182 ], [ -122.5173391489, 47.1402583462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7774669653, 47.8678385583 ], [ -121.7488390649, 47.8671786834 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1680910014, 46.1910275512 ], [ -123.1527181306, 46.1932619624 ], [ -123.1210814025, 46.1900650322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2805998666, 47.756565837 ], [ -122.2764080485, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161178049, 47.7897600047 ], [ -122.3147914885, 47.7977880413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9454549934, 47.2361778754 ], [ -123.9311452495, 47.2437964738 ], [ -123.9182891747, 47.2672889111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.3028065567 ], [ -122.2443021409, 47.3027122504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.3206709228, 47.4319777068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7044893922, 48.8921934089 ], [ -122.7263837289, 48.8921522797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2615653431, 47.8313484071 ], [ -122.263270535, 47.832397759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.2729982561, 48.1220493345 ], [ -117.3034353999, 48.1517951643 ], [ -117.3014134068, 48.1726073855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4200144031, 48.1146846853 ], [ -123.4272112907, 48.1176420477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.8551455389 ], [ -122.4859559588, 48.8624202184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249495062, 47.760975014 ], [ -122.3218213184, 47.7696559418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981579128, 47.312895011 ], [ -122.2939939147, 47.3262355559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7130750207, 47.7604898372 ], [ -118.710341624, 47.7597380108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3725290396, 48.86403205 ], [ -117.3690791376, 48.8628154536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1105727106, 47.3639441595 ], [ -122.0987142773, 47.3694924181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.7424904094 ], [ -117.1724700156, 46.747419563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2307337316, 47.8178356076 ], [ -122.2240130735, 47.8097214635 ], [ -122.2089308735, 47.8094374485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.1671440586 ], [ -118.2328452333, 47.2083784844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6996522214, 47.5252936288 ], [ -122.7009258111, 47.5254077892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527645121, 45.6654147454 ], [ -122.5525923868, 45.6672693746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4210503145, 45.9241386589 ], [ -122.3807106015, 45.9242785728 ], [ -122.3796927801, 45.9278618295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.5255219108, 46.9585895789 ], [ -121.5323324952, 46.9469316686 ], [ -121.5310753106, 46.9309435343 ], [ -121.5357945169, 46.9156045355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9839763366, 47.4320430934 ], [ -121.9672362186, 47.4364490931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3656317125, 47.112475028 ], [ -118.3656748512, 47.1169194581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444902745, 47.2410622326 ], [ -122.335050748, 47.2440622941 ], [ -122.3298337748, 47.2573665594 ], [ -122.3081914375, 47.2842547986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5524895136, 46.6414946812 ], [ -118.5525255652, 46.6422285199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2657579644, 45.7111535352 ], [ -121.2472721676, 45.7217111035 ], [ -121.244181878, 45.7277440027 ], [ -121.2298688243, 45.729292887 ], [ -121.2314235606, 45.7372612846 ], [ -121.2216216322, 45.7415590831 ], [ -121.222903344, 45.7481715948 ], [ -121.2084891518, 45.7508996878 ], [ -121.2109028554, 45.7604785601 ], [ -121.2053953573, 45.7679900328 ], [ -121.2131840999, 45.7724150705 ], [ -121.207883874, 45.779291027 ], [ -121.2055702737, 45.7925570852 ], [ -121.1946499217, 45.795047038 ], [ -121.1698278704, 45.8122766544 ], [ -121.1531193879, 45.814953813 ], [ -121.1511457837, 45.8183340264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4029149867, 46.9715198957 ], [ -120.3533610061, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.2565740747, 46.9499582027 ], [ -120.2382852234, 46.9439637651 ], [ -120.1517837822, 46.9437951339 ], [ -120.1285297362, 46.9384099074 ], [ -120.0923317195, 46.9449475663 ], [ -120.0434710898, 46.9363097921 ], [ -119.9856684909, 46.9399239995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2878185998, 47.9245144886 ], [ -122.2845197408, 47.9244871101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3352626539, 47.4160570962 ], [ -122.335244606, 47.4239544628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487379362, 46.3397717715 ], [ -117.0487788952, 46.3406500803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0136095347, 46.1478903111 ], [ -119.0241882947, 46.1498712277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.1034589548 ], [ -119.3094973132, 47.1058411746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398468351, 47.6445327832 ], [ -117.2398564282, 47.6462120527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6604109342, 45.7097319074 ], [ -121.6267665064, 45.7104802065 ], [ -121.60448404, 45.7208746315 ], [ -121.5608783461, 45.7230552598 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0826339712, 48.3485688069 ], [ -120.0782317267, 48.3464626059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3772473125, 46.1712612786 ], [ -123.3771418088, 46.1802763744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217992709, 46.5244556466 ], [ -117.7919594302, 46.5168198788 ], [ -117.7655768761, 46.4909720703 ], [ -117.738467898, 46.4823433881 ], [ -117.7038766685, 46.4643254572 ], [ -117.6880711236, 46.4627464745 ], [ -117.6625486269, 46.4746878646 ], [ -117.6287453364, 46.4780216163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9797708505, 46.6600221281 ], [ -122.978020353, 46.6605706614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126173187, 48.5117929838 ], [ -122.6126146998, 48.512615782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348569541, 47.1194809791 ], [ -122.4344162199, 47.1475294086 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.9256460771 ], [ -122.3028100586, 47.9298175191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9102593964, 47.6591206418 ], [ -121.90705395, 47.6776154772 ], [ -121.9203962911, 47.682901991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1816312316, 48.0344874481 ], [ -122.1798921353, 48.0395761426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.8363142697 ], [ -120.7921120527, 45.8483754133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5538906727, 46.3719036566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5830787762, 48.0658416901 ], [ -123.5764716685, 48.0656101736 ], [ -123.5586292146, 48.0819562696 ], [ -123.5590674702, 48.088831529 ], [ -123.542425415, 48.0963861688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2521475758, 47.7981298006 ], [ -124.2505086155, 47.804211862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3080765164, 47.2755685609 ], [ -122.3098328416, 47.2779256038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9658681376, 47.1991869215 ], [ -121.9637319287, 47.1991468956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6596669668, 48.2863597414 ], [ -122.6578697003, 48.2871805041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5953819331, 48.34623453 ], [ -119.5910782183, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6031230684, 45.9389260974 ], [ -119.6018306923, 46.1025658531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343590195, 47.548548451 ], [ -122.3393798517, 47.5620616142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.0304443672 ], [ -122.0670005531, 48.0311344173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979507857, 46.9800944856 ], [ -122.2963449954, 47.0166678167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8467102726, 46.8590457137 ], [ -122.8283708435, 46.8574846811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7690696693, 48.1396769458 ], [ -123.7462246084, 48.1373562819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3858313632, 47.9827480539 ], [ -122.3921711474, 47.9866051994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0474726563, 47.0804529811 ], [ -122.0480328101, 47.0854558399 ], [ -122.0576029409, 47.0916817763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.3580988636 ], [ -122.1070219689, 47.3580601805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3499243544, 46.069095536 ], [ -118.3512395456, 46.0690998662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3245445805, 47.4367115543 ], [ -120.3225528424, 47.434276469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4552598905, 48.240034233 ], [ -122.4474690781, 48.2419384688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8167074126, 46.9748418645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1322464977, 48.9173156398 ], [ -122.1029841609, 48.9169970403 ], [ -122.0799094982, 48.9241796486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4469167382, 45.910167278 ], [ -122.4468006629, 45.9137020329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1130354822, 48.6245416722 ], [ -118.1227222823, 48.6274371967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9600764508, 46.9404487329 ], [ -119.9569337464, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4671998581, 47.0097954879 ], [ -117.4906995248, 47.0151488088 ], [ -117.4989078005, 47.0330331256 ], [ -117.5122620252, 47.0407236956 ], [ -117.5240910538, 47.0622032228 ], [ -117.545125112, 47.08432072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.6557377147 ], [ -122.0706839733, 47.6560836936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3334887527, 46.9374674228 ], [ -117.3351658289, 46.9428080119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565486135, 45.7796107255 ], [ -122.605320177, 45.7801298015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0098989742, 48.071628269 ], [ -121.9900538253, 48.0834098562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4841720635, 46.9380070182 ], [ -122.4727205134, 46.9377338042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.4859005831 ], [ -121.5901063759, 48.4885682085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2162633519, 47.4784706076 ], [ -122.2170772731, 47.4799087614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4036573523, 47.9700998663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2525189659, 47.0789963959 ], [ -123.2330370728, 47.0832760605 ], [ -123.2217285778, 47.0961529866 ], [ -123.169892022, 47.0993233299 ], [ -123.1370118344, 47.1061275572 ], [ -123.1327675392, 47.1108867882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2753035387, 46.5534563356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1550212915, 47.0173446802 ], [ -124.1585629313, 47.0421430903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6633194815, 45.6889511168 ], [ -122.6587268784, 45.6977308437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4421245304, 48.1073235415 ], [ -123.4409541321, 48.1081108568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.9784278916 ], [ -118.5439795491, 46.9969936414 ], [ -118.4763407681, 47.0248252936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3888808965, 46.0238641947 ], [ -118.387709362, 46.0274510129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454890434, 47.7524905174 ], [ -122.3454920241, 47.7526354194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0149147028, 48.26670449 ], [ -122.0102677154, 48.2683045733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.7277580783 ], [ -121.4875027306, 45.727786525 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938519207, 47.2509469514 ], [ -122.2947362877, 47.2575680773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3307967988, 47.6088249044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9031362266, 46.3853907412 ], [ -122.8996061797, 46.3980707203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3098328416, 47.2779256038 ], [ -122.3113887255, 47.2800166221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8960512885, 46.9809985306 ], [ -123.8970765547, 46.9810040205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244634331, 45.6433255811 ], [ -122.4176943396, 45.6411075661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6513860232, 48.5041934528 ], [ -121.6421804262, 48.4953349997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2883273553, 48.8540652293 ], [ -122.2938609707, 48.8575655792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1485141514, 47.3218092821 ], [ -123.1336820514, 47.3186667549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9858303482, 47.7426828709 ], [ -121.9856625426, 47.7451686523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6232200849, 47.4699050473 ], [ -117.6134262665, 47.471353912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155515131, 48.2809311397 ], [ -117.7179594226, 48.2854700064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2556345682, 48.8390461836 ], [ -122.2395042525, 48.8318235121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075451443, 47.7371619655 ], [ -117.5075109583, 47.7416381565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9896415159, 47.2138839771 ], [ -121.9897117864, 47.2283165519 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814936102, 47.4639104191 ], [ -122.2737587614, 47.465095805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4221853179, 48.5654425158 ], [ -122.4228327812, 48.5993312853 ], [ -122.4314758594, 48.6044132215 ], [ -122.4393550103, 48.6177939656 ], [ -122.4424111234, 48.6153877975 ], [ -122.4480779306, 48.6237425278 ], [ -122.4627144951, 48.6265007902 ], [ -122.4898137335, 48.6488973023 ], [ -122.4921519068, 48.6617064112 ], [ -122.4852398362, 48.6680694691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6314890754, 47.5049287108 ], [ -122.624429651, 47.504849437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7497223484, 45.9177650679 ], [ -122.7534494161, 45.9236451726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942188172, 47.1497279489 ], [ -119.3118431702, 47.1567249837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.2007870052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924416665, 47.7355851423 ], [ -122.2802973866, 47.7520027511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.9794305969 ], [ -122.185861118, 47.9794731965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7207360254, 48.0268110537 ], [ -122.697769073, 48.018281475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8619828359, 46.8516552572 ], [ -122.8586957254, 46.8532935721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0971571723, 47.1818128402 ], [ -123.0973376697, 47.1826544128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4202576394, 46.4360420895 ], [ -117.4021567544, 46.4441973722 ], [ -117.3351453534, 46.4329973878 ], [ -117.3236818665, 46.4364355288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791170661, 47.1993968717 ], [ -121.9658681376, 47.1991869215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.6430952782 ], [ -117.6686114771, 47.6429513017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6287660452, 47.5891210126 ], [ -120.6139689585, 47.5807454549 ], [ -120.6128019629, 47.5735910457 ], [ -120.605716968, 47.5674428282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3105284378, 46.0417807035 ], [ -122.305684987, 46.0490596047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3662844632, 46.1972420441 ], [ -123.3633339712, 46.1950290192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0342099984, 47.1595496539 ], [ -122.0197980383, 47.1768730848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1205538564, 48.5260765992 ], [ -122.1053402812, 48.5269357635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7266598296, 48.9068699571 ], [ -122.7265048358, 48.9175984132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4711841566, 46.2575715157 ], [ -119.4254807685, 46.2734329699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497942054, 48.0321149063 ], [ -117.343635146, 48.0474039493 ], [ -117.3442020338, 48.061754727 ], [ -117.3241634322, 48.07997589 ], [ -117.3249905541, 48.0919186256 ], [ -117.3006048247, 48.0985048663 ], [ -117.2841686904, 48.0967467483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0044486257, 48.0205093633 ], [ -122.9958042256, 48.0240557605 ], [ -122.9785167145, 48.046585562 ], [ -122.9614934821, 48.0502939774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3627497487, 48.1085599202 ], [ -123.3601967875, 48.1093444067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023983763, 46.9678877123 ], [ -123.8023974793, 46.9687249499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.8181848035 ], [ -122.3049767143, 48.8323888064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0482198121, 46.7995487771 ], [ -119.0141231869, 46.7946592408 ], [ -118.8990911424, 46.7940102212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.2007870052 ], [ -123.0997120272, 47.2056969535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0735179834, 48.3417951846 ], [ -120.0782317267, 48.3464626059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5935764168, 47.5639483159 ], [ -117.5935996573, 47.5661401873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1838778814, 47.174736546 ], [ -122.1691805082, 47.1698966439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6926355567, 47.6632523312 ], [ -122.6929889274, 47.661397052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.8601052658 ], [ -117.6601956757, 47.887269221 ], [ -117.6600246954, 47.8932611587 ], [ -117.6685724818, 47.8943422934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693763413, 45.6325719706 ], [ -122.6704395067, 45.6325772078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.2349767545 ], [ -122.4919517544, 47.2348877891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5548980955, 47.3064820526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4631661079, 48.9646150404 ], [ -122.4519714718, 48.9646510378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1466151724, 46.2179686599 ], [ -119.1457324057, 46.2175957254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9040186992, 47.1886262402 ], [ -120.9097237692, 47.1901067626 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430545767, 47.9779093221 ], [ -122.1355017102, 47.9728688256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6822629215, 47.5797908647 ], [ -117.675621899, 47.5794106007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2630218055, 47.6371835441 ], [ -119.2633718554, 47.6383063062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7760452677, 48.928358074 ], [ -117.7722499943, 48.9449959503 ], [ -117.7903100301, 48.9444725584 ], [ -117.7934587589, 48.9555653693 ], [ -117.8035781755, 48.9610755132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.3753130226 ], [ -119.9667501531, 46.379458651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6802674022, 48.0089902272 ], [ -119.6854728087, 48.0097116078 ], [ -119.6910758978, 48.0187094102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6405403984, 46.3349412244 ], [ -123.6384906851, 46.3352078778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4310307746, 48.5268378739 ], [ -121.4239720128, 48.5491341646 ], [ -121.4107258263, 48.5644580515 ], [ -121.4024787094, 48.5831365172 ], [ -121.3759759036, 48.5918905668 ], [ -121.3623196615, 48.6062560597 ], [ -121.3610583314, 48.6145142947 ], [ -121.3232006326, 48.6329219791 ], [ -121.3028444423, 48.6504520462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2950977171, 47.0475551508 ], [ -122.294801654, 47.0530641068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.0439992941 ], [ -123.2864367852, 47.0541062901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8196628775, 48.04931957 ], [ -122.8179486123, 48.0711563886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8249346802, 46.9706520307 ], [ -123.8258142714, 46.9714747617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5632686852, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2057386717, 47.9819494434 ], [ -122.212960739, 47.9820295137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6987076385, 48.1034031892 ], [ -119.6853721482, 48.1040204491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1043084158, 48.222137855 ], [ -122.0696796026, 48.23396758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1636458554, 47.8796014922 ], [ -122.1608618478, 47.8814089364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5232713274, 47.6536299928 ], [ -122.5320368544, 47.6720530531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5213936247, 48.4084338469 ], [ -119.5232962062, 48.4094700138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339661209, 47.2054048624 ], [ -122.4339668077, 47.2064012989 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5851623994, 47.0923339805 ], [ -121.567425209, 47.0403791961 ], [ -121.5551957128, 47.0303667214 ], [ -121.5340919383, 47.0225756397 ], [ -121.5276445988, 47.0128757583 ], [ -121.5359529209, 46.980696515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.5681320318 ], [ -117.1454454815, 46.5721918556 ], [ -117.1570846795, 46.5836610466 ], [ -117.172901762, 46.5919223495 ], [ -117.1607245203, 46.616443833 ], [ -117.1875760408, 46.6478028536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.5319334082 ], [ -122.3347023936, 47.5375284994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.6174517277 ], [ -118.6526722344, 48.6000038884 ], [ -118.6443296317, 48.5973721967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9422723546, 47.9168139511 ], [ -118.9115553996, 47.9213656063 ], [ -118.8633547045, 47.9011540071 ], [ -118.8537392978, 47.8838687759 ], [ -118.7238512322, 47.772533091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1327675392, 47.1108867882 ], [ -123.1050673886, 47.1296410636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5283321717, 46.937764175 ], [ -122.4923909755, 46.9379773099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7671904335, 46.6744470342 ], [ -123.7615325079, 46.6777404653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4871230724, 46.2579063443 ], [ -119.4873304151, 46.2607553775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5530762786, 48.8225160709 ], [ -122.573687598, 48.8448314506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5234705645, 46.6619857363 ], [ -120.5197381527, 46.6681259529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3320582967, 47.6264826812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511293212, 47.5655459942 ], [ -122.6475719156, 47.5652581761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3294181035, 46.960126358 ], [ -123.3110133365, 46.9385525926 ], [ -123.2898816838, 46.9008637133 ], [ -123.2480621901, 46.8458842903 ], [ -123.2399893883, 46.8414422249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1587937139, 48.2389534668 ], [ -122.1669055996, 48.2550164627 ], [ -122.1666333463, 48.2648550145 ], [ -122.1709978885, 48.2679601252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0544043707, 46.3526539161 ], [ -124.0536804079, 46.3675828583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.7408549752, 45.9111701973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5023027759, 48.4022781572 ], [ -119.5084842224, 48.4031367389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4828848568, 45.7225399831 ], [ -121.4677352564, 45.7152835978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6621267697, 47.5713620353 ], [ -122.6565626099, 47.5703304581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7437635985, 46.7153016927 ], [ -123.7406630722, 46.7253864815 ], [ -123.7479211083, 46.7335674173 ], [ -123.7439044996, 46.7393430715 ], [ -123.7547337825, 46.760574447 ], [ -123.7406552867, 46.7781576345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.7209092456 ], [ -117.1830985465, 46.7284162635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5578353614, 46.6431253994 ], [ -118.5579970591, 46.6445599995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395528608, 48.1829538969 ], [ -117.0395862835, 48.1810552137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.6021829664 ], [ -121.668828194, 46.6101927227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674967694, 46.9781722496 ], [ -121.1273817826, 46.9810074692 ], [ -121.1143805148, 46.9870756134 ], [ -121.0946681442, 46.989267303 ], [ -121.0913821846, 46.9856181514 ], [ -121.0946111848, 46.9703427133 ], [ -121.0472905443, 46.9283246192 ], [ -121.0467429429, 46.9201906131 ], [ -121.0000086641, 46.8921406888 ], [ -120.9874184029, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6575921778, 48.2930446922 ], [ -122.6550097756, 48.2961690914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3626574045, 47.8153679549 ], [ -119.3622628388, 47.8600857655 ], [ -119.3707232114, 47.8738309699 ], [ -119.3726440441, 47.9045679707 ], [ -119.3923586085, 47.9188641837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174443607, 48.891747907 ], [ -122.6385290374, 48.8917094095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6834705983, 47.5695963871 ], [ -122.6731435739, 47.568179933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8356431118, 47.2340276704 ], [ -119.8320237301, 47.2340352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3255247068, 46.0817350589 ], [ -118.3043819814, 46.0811339747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2976491615, 46.57004764 ], [ -123.2963177918, 46.576533839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8895230263, 46.980961881 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5589351838, 47.5953615292 ], [ -117.4957532497, 47.6240627613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217148556, 46.5248555558 ], [ -117.8138228982, 46.5221815136 ], [ -117.7891868451, 46.5254691689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1974936697, 46.8114235517 ], [ -119.1737083937, 46.8115310782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2127462556, 47.4576868663 ], [ -123.2163741784, 47.4625535041 ], [ -123.2105495803, 47.4764348581 ], [ -123.2103050963, 47.4923049652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3052567416, 47.5434675701 ], [ -122.3166355729, 47.5517627468 ], [ -122.3214916682, 47.561289773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9354180565, 46.9596763245 ], [ -122.9303556413, 46.9761338415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7437352957, 48.0253259826 ], [ -122.7405321497, 48.0270703271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8857715571, 46.9892213843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966981396, 47.1766290629 ], [ -122.2848476708, 47.1815733492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730012011, 47.2221634757 ], [ -117.073000361, 47.2230431561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8792825759, 47.6694839326 ], [ -117.8779176066, 47.6694929404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501760455, 46.4755815152 ], [ -117.0698189183, 46.4861909917 ], [ -117.0774650496, 46.4977862967 ], [ -117.0874842611, 46.5393952983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8141567727, 46.974248551 ], [ -123.8110700669, 46.9732623777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8272576766, 47.106307188 ], [ -119.7624088379, 47.1468189921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.8926430173, 47.1852194677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1799080975, 46.7296299262 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3097289325, 46.3650774694 ], [ -120.2518435554, 46.3315396164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4978200864, 48.7835877334 ], [ -122.5056560072, 48.7850058356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3634161418, 47.7906222233 ], [ -122.3582161004, 47.7917297211 ], [ -122.3533511027, 47.7851161679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8889929685, 47.1441925406 ], [ -123.879496601, 47.1617156776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4019360634, 47.239469308 ], [ -122.3969871323, 47.2375843118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3567064191, 47.7812867521 ], [ -117.3531916555, 47.7872080515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7114277659, 47.3745220756 ], [ -122.6947937623, 47.381239063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3760304765, 48.891834109 ], [ -122.3745657943, 48.904788295 ], [ -122.3585353638, 48.9093392192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2772565713, 46.772497546 ], [ -117.3083636026, 46.7884099837 ], [ -117.3280662082, 46.8301233694 ], [ -117.3384016743, 46.8380692715 ], [ -117.339143604, 46.8504355115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3787722403, 47.8124279259 ], [ -122.3721262643, 47.8177762685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0878490265, 46.7317943321 ], [ -117.0573687, 46.739057813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3370509632, 48.503991479 ], [ -122.3426003903, 48.5134790031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6706352632, 48.6541388326 ], [ -118.6655296037, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.6640345732, 48.6790336908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1536154484, 48.9498823783 ], [ -122.163014477, 48.9673328212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6008744257, 45.6874395737 ], [ -122.6403863597, 45.7125037539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768951726, 46.9105822359 ], [ -117.0769824862, 46.9108621348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0155804532, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.0728624554, 48.6070846621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1895052521, 46.2676902573 ], [ -119.1705524126, 46.261830974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112982729, 47.739633774 ], [ -117.4104239582, 47.7407128065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.7699869803 ], [ -122.2838095032, 47.7600084566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4426701243, 48.701328551 ], [ -119.4421071548, 48.7019949179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6965194533, 48.0612450071 ], [ -122.7017450146, 48.0668212303 ], [ -122.7018643165, 48.078607276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753761557, 48.5902114462 ], [ -118.0753566144, 48.5985793743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1287547466, 46.6004969457 ], [ -123.1262630128, 46.6018315229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064752256, 47.7910831404 ], [ -122.2236011158, 47.8003896824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9166346542, 46.6972957966 ], [ -119.9169607763, 46.7378528943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8104269171, 46.3376105866 ], [ -123.8156493827, 46.3543833279 ], [ -123.8118111203, 46.365574241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5963933831, 47.1027062195 ], [ -122.5793216715, 47.1078928315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6205066365, 48.0600760065 ], [ -117.630503668, 48.080995459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8173067572, 46.9516445414 ], [ -123.8119261196, 46.9521234492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4231498311, 47.236217271 ], [ -122.4176442321, 47.2382129228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8122602395, 45.8229926828 ], [ -120.8081064714, 45.8245819424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.5474855069, 45.7852017578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260465116, 48.1503593139 ], [ -117.7257805786, 48.1562291862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7518491007, 46.203691501 ], [ -119.7486010675, 46.2060790676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2688269551, 48.0803462317 ], [ -124.2633119054, 48.0859667646 ], [ -124.2672293, 48.093890668 ], [ -124.2620344907, 48.1020870424 ], [ -124.2509273881, 48.1119690255 ], [ -124.2237423366, 48.1213082047 ], [ -124.2125310381, 48.1338196202 ], [ -124.2202931828, 48.1428270627 ], [ -124.2160466622, 48.1476159031 ], [ -124.2206359525, 48.1539900319 ], [ -124.2077081318, 48.1578243181 ], [ -124.2046323962, 48.1671867394 ], [ -124.2103459096, 48.1692167689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148836023, 47.8388580147 ], [ -120.0148285272, 47.8398314423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3091430991, 47.7743773963 ], [ -122.3064040791, 47.7725385808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4558097511, 46.5163581409 ], [ -120.4495337758, 46.5039654868 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7541782353, 47.0644445369 ], [ -122.7253740372, 47.0679296901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6328542511, 46.9587926513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104336223, 48.6904887705 ], [ -117.4135449594, 48.7213796222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9735363079, 47.8450645396 ], [ -119.9500747094, 47.8613131638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.5269357635 ], [ -122.0611804157, 48.5291856242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3771647615, 48.8041341038 ], [ -122.3506314591, 48.8036905292 ], [ -122.3437891671, 48.8073210548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1224530293, 48.3673427778 ], [ -120.1210178754, 48.3612124716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.0864775034 ], [ -118.2564997683, 46.0930373464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4880037429, 46.6075314018 ], [ -120.4798850922, 46.5977376972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147576786, 47.3880434547 ], [ -122.8923661472, 47.4040437156 ], [ -122.8777100282, 47.4088016187 ], [ -122.8605402927, 47.4233280775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4690438843, 47.3852988959 ], [ -119.426913667, 47.3955134929 ], [ -119.3873405431, 47.4145207367 ], [ -119.3006349454, 47.4249031098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1212539974, 47.0877998117 ], [ -119.0508055026, 47.0857677636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8883863985, 46.9801777553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.1410473188, 47.6647648556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1608618478, 47.8814089364 ], [ -122.1485845591, 47.8886416262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537824167, 46.7366928914 ], [ -122.9538231518, 46.7487811507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1331872975, 46.8409896084 ], [ -119.1331481081, 46.886685746 ], [ -119.1384722057, 46.892262265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288340771, 47.6158812787 ], [ -122.6288682299, 47.6213371579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709737986, 48.4626357523 ], [ -122.5588999199, 48.4598549429 ], [ -122.5406484136, 48.4629524261 ], [ -122.4987396272, 48.4522633023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143482637, 48.2063281505 ], [ -122.2183218859, 48.2166037115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.3814692054 ], [ -119.4690438843, 47.3852988959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.4748414789 ], [ -122.3277374047, 47.4792708197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.3049498032, 47.6441648565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5543923163, 48.3214625286 ], [ -121.5500581076, 48.3318886554 ], [ -121.5514534858, 48.3437440639 ], [ -121.540112692, 48.346215164 ], [ -121.5399069254, 48.366375817 ], [ -121.5420248636, 48.372287589 ], [ -121.5544254592, 48.3801274364 ], [ -121.5500133803, 48.3934668631 ], [ -121.5568722682, 48.4135875649 ], [ -121.566872919, 48.4288842168 ], [ -121.5917001012, 48.4513276442 ], [ -121.5855182759, 48.4609275735 ], [ -121.5934495363, 48.4859005831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7345700167, 47.1169266042 ], [ -117.7429251101, 47.1174596066 ], [ -117.7549057664, 47.1257164324 ], [ -117.8175092803, 47.1110932633 ], [ -117.8229123252, 47.1144427701 ], [ -117.8293478123, 47.1355148253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0677532163, 46.2468045298 ], [ -119.046642025, 46.2322064702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1248280167, 47.5008402591 ], [ -122.1219053901, 47.5005304078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133014011, 47.3166524228 ], [ -122.3119901397, 47.333987546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343743094, 47.5297826683 ], [ -122.334499835, 47.5319334082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9795868328, 47.9655777499 ], [ -118.9796978543, 47.9684303804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854576502, 47.9480859363 ], [ -124.3854471652, 47.9489554101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859559588, 48.8624202184 ], [ -122.4856871492, 48.8695370939 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3455588826, 48.5553675301 ], [ -117.3064321854, 48.5419409683 ], [ -117.3028045022, 48.5360504548 ], [ -117.3046502589, 48.5270311029 ], [ -117.2785248998, 48.5118456191 ], [ -117.2690246326, 48.4992561871 ], [ -117.269265238, 48.4873224193 ], [ -117.2758540173, 48.4791546803 ], [ -117.320541457, 48.4685163989 ], [ -117.3259425988, 48.4587617195 ], [ -117.3237809205, 48.4393180608 ], [ -117.3166271068, 48.4252140684 ], [ -117.3190973569, 48.4189460662 ], [ -117.3131204854, 48.4113756271 ], [ -117.3146309013, 48.3944502706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4980484153, 47.7985063825 ], [ -122.497295586, 47.7975770117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4354637214, 46.5745924593 ], [ -120.3933243152, 46.5563517375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.3953989959 ], [ -122.3309115081, 48.4060252156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6448015914, 47.5019616092 ], [ -122.6439469399, 47.5027845218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3721262643, 47.8177762685 ], [ -122.3673070896, 47.8179585281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.8777990754 ], [ -122.1636458554, 47.8796014922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4272112907, 48.1176420477 ], [ -123.4309020008, 48.1191579416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5038218235, 48.1027548736 ], [ -123.4685453921, 48.1061906064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.2399283143 ], [ -119.4710716591, 47.2737539701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2904509822, 45.6962586457 ], [ -121.2796331186, 45.6906882361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.9366422092 ], [ -122.3579343412, 46.9802243895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4955876896, 47.7975252491 ], [ -122.4964887302, 47.7981317254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9342408253, 46.9527666325 ], [ -122.9357154749, 46.9527589941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4625406534, 48.1078996274 ], [ -123.4595741397, 48.1100676892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3238832466, 47.6326989707 ], [ -122.3226285715, 47.6386200098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3367493104, 48.4846390125 ], [ -122.3385001064, 48.4862281599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.0998571166 ], [ -117.2193213409, 48.1133107789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2731213214, 47.6686054126 ], [ -122.2710615487, 47.6700439942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3610664207, 47.2534566306 ], [ -117.3705856786, 47.2680751418 ], [ -117.3612540092, 47.2908793053 ], [ -117.390138784, 47.3103620664 ], [ -117.3885977334, 47.3194727622 ], [ -117.3806624631, 47.3300797576 ], [ -117.3806731936, 47.3606575442 ], [ -117.3913392846, 47.3891157864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.4544018047 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9943545429, 46.5674942159 ], [ -119.0040609275, 46.5740844587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6659555363, 45.631898547 ], [ -122.6693763413, 45.6325719706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4657592482, 48.106460575 ], [ -123.4611381511, 48.1069352467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4999178784, 48.7176529255 ], [ -122.486331208, 48.7148245953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133672387, 48.3723792401 ], [ -122.2296735711, 48.3852564968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829723721, 48.1524164911 ], [ -122.1722962078, 48.1522897092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1670085036, 46.1917196627 ], [ -119.1591587709, 46.198638478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1570442192, 47.2803282022 ], [ -123.1457654709, 47.2521210376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1738772879, 47.1121270494 ], [ -124.1696146509, 47.1148944779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.5754644577, 47.0918016783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2484756693, 47.9000726144 ], [ -122.2446706564, 47.9041485453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329070414, 47.5726953913 ], [ -122.6329554592, 47.5769885266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356088428, 48.4755713741 ], [ -122.3355650196, 48.4778597679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6855035616, 48.6448826019 ], [ -118.667711126, 48.6174517277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9056916194, 46.2824568896 ], [ -122.9035782953, 46.2838610024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4586693868, 47.7154118844 ], [ -117.4605875174, 47.7154071362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2704255183, 46.9127594447 ], [ -117.2498341606, 46.9246457969 ], [ -117.2343310278, 46.9253099478 ], [ -117.2205297119, 46.9331066712 ], [ -117.1593520644, 46.9417057905 ], [ -117.1360809196, 46.9326332476 ], [ -117.1104760713, 46.9284629569 ], [ -117.1027698079, 46.9174522008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7009258111, 47.5254077892 ], [ -122.7045017857, 47.525661698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1508809942, 47.779603159 ], [ -122.1387763237, 47.7848706123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6910758978, 48.0187094102 ], [ -119.6976870253, 48.0311183966 ], [ -119.6937254895, 48.039290469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472711494, 47.6539867202 ], [ -122.3472698982, 47.6642399557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8753021958, 47.036689104 ], [ -122.8593818839, 47.0403533748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2527825057, 48.5028862443 ], [ -122.247228536, 48.5049651039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6250128565, 47.5624369619 ], [ -122.629614867, 47.5650234096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3358813394, 47.8214508721 ], [ -122.3250529195, 47.8213297085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8360736283, 46.4372194695 ], [ -122.8140314886, 46.4381206875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0422413047, 46.4742309777 ], [ -117.0475174649, 46.4744614231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0515162551, 47.3916599978 ], [ -122.0448319243, 47.3997061319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6587268784, 45.6977308437 ], [ -122.6529868883, 45.7094550401 ], [ -122.6545494275, 45.7173002417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3476245074, 48.0559531272 ], [ -124.3376838924, 48.0547329997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205390391, 46.3386430967 ], [ -120.3201947507, 46.3605182529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742071117, 45.781370643 ], [ -122.6672617257, 45.779820175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.7599890779 ], [ -117.1644381544, 46.7697549283 ], [ -117.1514171761, 46.7802864678 ], [ -117.147368489, 46.7904698955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0273681586, 46.4021888563 ], [ -122.9987012021, 46.4136116155 ], [ -122.9750403018, 46.4047023004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5468403017, 46.9927649775 ], [ -122.545777661, 46.9961770865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6943596205, 47.1892246234 ], [ -119.6860494601, 47.1944007257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7709004569, 45.8615514769 ], [ -120.7561380643, 45.871859525 ], [ -120.7488870427, 45.8832756597 ], [ -120.7124593609, 45.8992628538 ], [ -120.7115773862, 45.9077401324 ], [ -120.7006339016, 45.9221097398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5853439854, 48.3602159749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150855528, 47.8211917901 ], [ -122.2945690698, 47.8468435945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6115664545, 47.5340329479 ], [ -122.6096358266, 47.5340033861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.7848706123 ], [ -122.1351159494, 47.7942908882 ], [ -122.1160881425, 47.7949538411 ], [ -122.1114164195, 47.8021101024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649675878, 46.8759309573 ], [ -117.3649034503, 46.8772762302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5274842124, 45.5979967225 ], [ -122.5158228483, 45.5949143216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.0719970341, 47.4423650536 ], [ -122.0796037239, 47.4579919468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.5707549865 ], [ -122.6621267697, 47.5713620353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201947507, 46.3605182529 ], [ -120.3229788958, 46.3718043346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0721004876, 47.859499395 ], [ -120.0581786213, 47.8560176572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3248167693, 47.4409909149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3283026635, 47.6754413596 ], [ -117.3248627173, 47.6754104751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.5539369573 ], [ -122.6552199252, 47.5591158808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396318808, 47.6716727121 ], [ -117.2395845311, 47.6725795615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.9022648982 ], [ -124.1110123877, 46.9040127541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.063917083, 46.4199191264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3667991767, 47.790544377 ], [ -122.3634161418, 47.7906222233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4468006629, 45.9137020329 ], [ -122.4272617564, 45.9171272208 ], [ -122.4211179737, 45.9198035212 ], [ -122.4210503145, 45.9241386589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2777833248, 47.1316521718 ], [ -119.2752765933, 47.1325238534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.3360585763 ], [ -120.5660395573, 47.3455525678 ], [ -120.5715152011, 47.3505855892 ], [ -120.563363344, 47.3591576642 ], [ -120.5767497151, 47.3638196119 ], [ -120.5942345354, 47.3816799159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9162959671, 47.6372969855 ], [ -121.9163495454, 47.639117271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4873304151, 46.2607553775 ], [ -119.4876083086, 46.2698315286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5679132072, 47.5937450378 ], [ -117.5675988781, 47.5933681002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8039379118, 45.8264664938 ], [ -120.801473643, 45.8363142697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9949382898, 46.1422801927 ], [ -122.9876098497, 46.1378429021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443533309, 48.4699161341 ], [ -122.3407517853, 48.4711363705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3385001064, 48.4862281599 ], [ -122.3482490253, 48.4942122629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8201543029, 47.4545979618 ], [ -122.8042667838, 47.4677635998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8800763033, 46.5339933138 ], [ -119.8278954802, 46.5493399359 ], [ -119.791445814, 46.569212579 ], [ -119.7282935394, 46.5780534778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4597485486, 48.7724340267 ], [ -122.4491781665, 48.7760427514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159507876, 47.2584346491 ], [ -122.5159443381, 47.2599591042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886549992, 47.644785095 ], [ -122.2319230755, 47.6360628163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2638528237, 47.7582985129 ], [ -122.2518648885, 47.7585697854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2366664186, 47.1398909033 ], [ -122.2373000311, 47.1324526387 ], [ -122.2292381501, 47.1179506292 ], [ -122.2143535286, 47.1036076158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.6820267252 ], [ -123.7896436506, 46.6852246296 ], [ -123.8114502592, 46.6993848447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4321127257, 47.2333231589 ], [ -122.4318739382, 47.234680353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.7713428245 ], [ -122.4597485486, 48.7724340267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991152602, 47.3325467605 ], [ -118.6953209574, 47.3333178275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9796119878, 48.0909954069 ], [ -121.9615776667, 48.0935920542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6795231234, 47.662857905 ], [ -122.6888093798, 47.6646633668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8344961907, 47.4399094921 ], [ -122.8302534091, 47.4465115389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1566237324, 47.4685018085 ], [ -122.1886206387, 47.478462399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3014134068, 48.1726073855 ], [ -117.3015320727, 48.1814415097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2512032791, 47.0452823163 ], [ -123.2311640554, 47.0504387055 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.0978930871, 47.6573058522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965384457, 47.7337970814 ], [ -122.2924586232, 47.7337786904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975233079, 46.7384199394 ], [ -119.189779697, 46.7381439938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1791144823, 46.3455191654 ], [ -120.1776037055, 46.3458600603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7523454393, 48.9971567896 ], [ -122.7520472898, 48.9978652764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5090316719, 46.6767027963 ], [ -120.4872923805, 46.6801245233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.6618427629 ], [ -117.3871932194, 47.6619140206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7461434353, 45.8153622443 ], [ -122.7448931286, 45.8153696587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.6264046411 ], [ -122.6664314526, 45.6289361692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1105630412, 46.2485229568 ], [ -119.0939413826, 46.2498784583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2231765605, 47.9226576514 ], [ -122.2125640998, 47.9215909937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.4885408949 ], [ -124.1139224833, 47.4962623066 ], [ -124.1614780369, 47.506903678 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2059547126, 46.9847954432 ], [ -119.1179298675, 46.9846708775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3985480747, 45.5841573262 ], [ -122.3855189782, 45.5821082164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2688269551, 48.0803462317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8763595467, 47.4318329878 ], [ -122.8631442072, 47.4386387656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2049625221, 48.8611827903 ], [ -118.205892243, 48.8650299972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3855106235, 47.9441729563 ], [ -124.3854821185, 47.9460570961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3912683196, 47.0040697768 ], [ -123.3875067629, 47.0051795465 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.0095725516 ], [ -122.8897294603, 47.9923528191 ], [ -122.8856837159, 47.9870204643 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455904637, 47.1960629254 ], [ -122.238361396, 47.1927344595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3309115081, 48.4060252156 ], [ -122.3314940653, 48.4135964059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9910780054, 47.2049216282 ], [ -121.9896415159, 47.2138839771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4351159777, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0320320146, 45.6195630227 ], [ -122.0246218752, 45.6254040131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1390119706, 47.3580153681 ], [ -122.1340104468, 47.3579773429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.5794106007 ], [ -117.6687451729, 47.5798764344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5608783461, 45.7230552598 ], [ -121.5511752614, 45.7278450651 ], [ -121.524779511, 45.7292158488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289013941, 47.6322348249 ], [ -122.6293597294, 47.645556277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3620580135, 46.0686467543 ], [ -118.3697805104, 46.0698478744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7830173029, 47.1120217119 ], [ -120.7666038672, 47.1063778563 ], [ -120.7599445753, 47.0960137622 ], [ -120.7451378467, 47.0902835956 ], [ -120.7388834285, 47.0833211577 ], [ -120.6585157988, 47.0514934706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1722962078, 48.1522897092 ], [ -122.1616167206, 48.1521235496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8857327674, 46.9809356695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9825252207, 47.2092344825 ], [ -120.9931524128, 47.222746832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8840388543, 46.6627688809 ], [ -118.8714816681, 46.6542060226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3978963103, 48.1061923633 ], [ -123.3759552613, 48.1048555471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135771849, 48.7285818258 ], [ -117.4135602609, 48.7325006416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070289838, 47.914243946 ], [ -122.2062759693, 47.9180096463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6064434153, 48.1635594746 ], [ -122.609133392, 48.1712861629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9095592146, 47.3467924075 ], [ -123.9114875209, 47.3617916606 ], [ -123.9025771354, 47.3722950666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282727742, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2802973866, 47.7520027511 ], [ -122.2764080485, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2953114868, 47.0439310162 ], [ -122.2950977171, 47.0475551508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0994911249, 46.8588806371 ], [ -124.0614923955, 46.8642889165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.5709737986, 48.4626357523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4876083086, 46.2698315286 ], [ -119.4903066566, 46.2723445732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1227222823, 48.6274371967 ], [ -118.1196487386, 48.6350042505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078191986, 47.09966335 ], [ -122.2024622981, 47.0953255419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4036102525, 45.6993830974 ], [ -121.3949453382, 45.6982231146 ], [ -121.3829577285, 45.705115008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6937254895, 48.039290469 ], [ -119.6904472484, 48.0614812616 ], [ -119.7191866099, 48.0659006898 ], [ -119.7247200058, 48.0764391164 ], [ -119.7432426466, 48.0767810116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6107084925, 45.647880158 ], [ -122.5974622536, 45.6497283577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9375719089, 46.7539095544 ], [ -122.9232462415, 46.7732075734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6690587997, 47.7496337056 ], [ -122.6513721365, 47.7650327884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.3088525506 ], [ -124.0433848336, 46.3088545203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4499029188, 48.52736977 ], [ -121.4310307746, 48.5268378739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7149150326, 47.8093423824 ], [ -120.7169624148, 47.8114972148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1599270282, 46.2701832514 ], [ -118.1547729075, 46.2701299684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2019957815, 47.9271375522 ], [ -122.1958275845, 47.933021241 ], [ -122.1992457496, 47.9616091692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6494078234, 47.8021122484 ], [ -122.6433193726, 47.8181068479 ], [ -122.6300911575, 47.828750694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3695963283, 46.2371507033 ], [ -118.3397268843, 46.2877259981 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3579343412, 46.9802243895 ], [ -122.3592526243, 46.9990763609 ], [ -122.3689169614, 47.0093696581 ], [ -122.3694769065, 47.0202996688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430161763, 48.0536913707 ], [ -122.140842334, 48.0536557708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.1998163094, 46.3311315335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2000543534, 47.5787190739 ], [ -122.1810983468, 47.5797602872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8511888124, 46.6508402423 ], [ -118.8083617087, 46.6349016892 ], [ -118.7623864594, 46.6345593673 ], [ -118.7266393872, 46.6292584921 ], [ -118.7090644842, 46.6200739782 ], [ -118.6519632501, 46.6233243007 ], [ -118.6414940671, 46.631430572 ], [ -118.6195197634, 46.6393677099 ], [ -118.6117553593, 46.6490485607 ], [ -118.5884939945, 46.6478136609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9365504311, 48.5667945753 ], [ -117.9526076358, 48.5773917833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3154029102, 47.6847104504 ], [ -122.3151264897, 47.6852564017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8272592504, 47.454059906 ], [ -122.8269220429, 47.4513256561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.5718451267 ], [ -121.9131923547, 47.5965925443 ], [ -121.9096907598, 47.6249890342 ], [ -121.9162959671, 47.6372969855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9709937008, 47.2786751606 ], [ -122.9601733292, 47.2820553805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413735185, 48.0566594172 ], [ -117.704874261, 48.0670618915 ], [ -117.6731595914, 48.062248924 ], [ -117.6377513794, 48.0630093485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2747094226, 47.4287124851 ], [ -122.2690111833, 47.4377897666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3388800342, 47.7781146434 ], [ -122.3462274907, 47.7777955542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3161032894, 46.3779887108 ], [ -120.318493365, 46.3762548928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6990664231, 45.6412649874 ], [ -122.7041423514, 45.6445770609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0051151642, 46.203549009 ], [ -118.9642066552, 46.1752198269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.1009448607 ], [ -119.3155342499, 47.1016304023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5155441649, 47.6357793786 ], [ -122.5198277142, 47.6444797699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.5366364133 ], [ -117.2147701782, 47.5416733174 ], [ -117.2144352224, 47.561959096 ], [ -117.2229100098, 47.5730667428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.9948947943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2035861347, 47.4751805773 ], [ -122.2002742877, 47.4803239853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3623803381, 46.2440184404 ], [ -119.3531195123, 46.244832268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9259280616, 46.1463384374 ], [ -122.923520705, 46.1460689953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.3193801568, 46.2995221994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5961697621, 48.4872753789 ], [ -121.5901063759, 48.4885682085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3731501041, 45.946680716 ], [ -119.3513796962, 45.9446481587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2607429983, 47.2688990575 ], [ -122.2583295166, 47.2805652971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7784777487, 48.0301901157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903978445, 48.0112262144 ], [ -122.1860840265, 48.0219150499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4861031431, 48.7826912501 ], [ -122.4860962019, 48.7836284125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4903066566, 46.2723445732 ], [ -119.4942417879, 46.2795434721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158979379, 47.271095951 ], [ -122.5157647305, 47.2798223974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.1936544175, 46.7645544522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.4369512503, 48.9352749432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693837427, 45.6318469625 ], [ -122.6659555363, 45.631898547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987245907, 48.0961085325 ], [ -123.2912512618, 48.0954124931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8542222764, 46.9751663099 ], [ -123.8318384982, 46.9750779012 ], [ -123.8278685905, 46.9716853763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3797163114, 47.6619387511 ], [ -117.3720613135, 47.6630728307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.6446017537, 46.6167403971 ], [ -123.6251575619, 46.6007463777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1830985465, 46.7284162635 ], [ -117.1825112217, 46.7290233594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.2913280407 ], [ -122.6575921778, 48.2930446922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3049039776, 46.2928299037 ], [ -119.306688915, 46.2788022155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3894049745, 47.9191328124 ], [ -119.388810295, 47.917927027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1720418434, 47.3177075499 ], [ -123.1814871799, 47.2998745064 ], [ -123.1749055913, 47.289039031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7840000547, 47.472842312 ], [ -118.7842634529, 47.6121559913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8450829264, 46.2935798136 ], [ -122.8351070251, 46.2928789335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3573827719, 46.9297368504 ], [ -122.35740693, 46.9366422092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.8293481757, 45.7148576644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4002907153, 47.3993957355 ], [ -121.3901248718, 47.3932302588 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5195878632, 48.4074511711 ], [ -119.5216611447, 48.408142504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4532860957, 46.8561637408 ], [ -119.3464529029, 46.8107648966 ], [ -119.2569845795, 46.810235263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2842524512, 46.4056644379 ], [ -120.2682351433, 46.4011783488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0910571193, 46.7988293856 ], [ -124.1062823585, 46.8495197001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2373624055, 47.3779147052 ], [ -122.2306881417, 47.3778354946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6293597294, 47.645556277 ], [ -122.6335380628, 47.6490423139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8906810599, 46.4350146931 ], [ -123.8576433404, 46.4293681134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8350369221, 45.6826649603 ], [ -120.8176061098, 45.6914545332 ], [ -120.8153769492, 45.6979289463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9638147974, 47.8578165968 ], [ -121.9270653363, 47.8558599343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405471815, 45.9025011825 ], [ -122.7497223484, 45.9177650679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8637575163, 47.0867688468 ], [ -118.7208744803, 47.0861552891 ], [ -118.6756358928, 47.096990195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4989356807, 46.6492770518 ], [ -120.5109061448, 46.6442084502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0947304936, 47.139868914 ], [ -122.0915871421, 47.1407602078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2687488564, 47.4721785489 ], [ -122.2710239707, 47.4775799592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5338227757, 46.2908205864 ], [ -118.4933906402, 46.2879872582 ], [ -118.4287615677, 46.2992203509 ], [ -118.3562019376, 46.2999263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1748375091, 47.7679692019 ], [ -120.16517224, 47.7707983028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5074826876, 47.7443815862 ], [ -117.5203800137, 47.7582970266 ], [ -117.5472646731, 47.7659238189 ], [ -117.5450441479, 47.7703887266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3247753913, 47.4057300867 ], [ -122.3251389542, 47.4075113691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1840627382, 47.7606381882 ], [ -122.1858412261, 47.7634469513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2946343778, 47.3643588625 ], [ -122.2900428301, 47.3837562417 ], [ -122.2920536467, 47.4006698004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7270084609, 45.8156734191 ], [ -122.7059518963, 45.815636231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7360584616, 46.6468473933 ], [ -119.7073340223, 46.6539357057 ], [ -119.6862564867, 46.6685040964 ], [ -119.6817502839, 46.6750016961 ], [ -119.682116182, 46.701919444 ], [ -119.6415240103, 46.7308902277 ], [ -119.6270510219, 46.735547573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5772145701, 47.6429329048 ], [ -117.5739759223, 47.6429386574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2744143572, 47.4850652066 ], [ -122.2816435896, 47.4911976441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8964164726, 47.6985807685 ], [ -122.8979905603, 47.6935842347 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6757381114, 47.0813300502 ], [ -122.6588479006, 47.0844194177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.5286763644, 48.4060519843 ], [ -119.5284987148, 48.409540793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2963177918, 46.576533839 ], [ -123.2943647479, 46.5783948474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9316246804, 47.0277555011 ], [ -122.9281707668, 47.0261889833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7913837991, 46.6144419053 ], [ -117.7931037677, 46.617894857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468945815, 46.4199295935 ], [ -117.045583721, 46.4199358176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1924425951, 47.69589869 ], [ -117.1520827446, 47.701179935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3828654748, 47.8126422945 ], [ -122.3819741537, 47.8121145139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5153285839, 47.3019754864 ], [ -122.514518613, 47.3040619068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3538626087, 47.8381496765 ], [ -117.3555823489, 47.8588071968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3719971108, 46.837063334 ], [ -120.3539257338, 46.8125656869 ], [ -120.3617492551, 46.8021851778 ], [ -120.3587542368, 46.7928184397 ], [ -120.3728367715, 46.7819036429 ], [ -120.380605613, 46.7593890779 ], [ -120.3901167664, 46.7494451154 ], [ -120.3864596626, 46.7305671826 ], [ -120.4052961815, 46.7241356625 ], [ -120.4136797599, 46.7142727147 ], [ -120.433016451, 46.7109789933 ], [ -120.4433236404, 46.6963442824 ], [ -120.4759788061, 46.681083667 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2062759693, 47.9180096463 ], [ -122.2074382827, 47.9188560677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674102459, 47.2309146691 ], [ -121.1487724368, 47.2203984665 ], [ -121.1352981522, 47.2179205415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4353841771, 48.9477318207 ], [ -119.4362799721, 48.9485573498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3509475564, 46.221897885 ], [ -119.3418776019, 46.2095624858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2150358593, 47.6419810064 ], [ -120.2141719319, 47.6561755599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.4679946321 ], [ -120.3355466203, 47.469450059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.6990664231, 45.6412649874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.0878490265, 46.7317943321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342994903, 47.3048223444 ], [ -122.4275808374, 47.3168023421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424962708, 48.1830235936 ], [ -117.0424418871, 48.1840101705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3311899204, 48.9637972205 ], [ -122.3092045302, 48.9638603752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2193213409, 48.1133107789 ], [ -117.143191344, 48.145029846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4553319322, 46.8189351153 ], [ -120.4606744462, 46.8275834233 ], [ -120.4543648479, 46.8377527814 ], [ -120.4626117535, 46.8442414628 ], [ -120.4613240439, 46.8503228942 ], [ -120.4652792529, 46.8539700858 ], [ -120.4821044215, 46.8553247767 ], [ -120.4794449453, 46.8672769035 ], [ -120.4952645744, 46.8767882515 ], [ -120.4795790401, 46.8754558646 ], [ -120.4748174542, 46.8828844989 ], [ -120.4922204016, 46.8840899703 ], [ -120.5035033529, 46.8966105451 ], [ -120.4928844335, 46.9020156297 ], [ -120.504769142, 46.910050121 ], [ -120.5100857559, 46.9261498028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3547293908, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.3143915695, 46.0302126494 ], [ -122.3105284378, 46.0417807035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470734178, 47.3105055416 ], [ -122.2447763261, 47.3180985045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3177802121, 47.3354233521 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1680072039, 47.7574084421 ], [ -122.1598186601, 47.7602527368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.2741237154 ], [ -117.1591731962, 47.2805495454 ], [ -117.1640556864, 47.2925563208 ], [ -117.1644445088, 47.3113387619 ], [ -117.1924139288, 47.3317954981 ], [ -117.1780365249, 47.3581047791 ], [ -117.1809160774, 47.3646637735 ], [ -117.174270773, 47.3797829152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3361482633, 48.4175077145 ], [ -122.3336059484, 48.4174954237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1071132149, 46.2075458387 ], [ -119.1020141523, 46.2227420627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930833684, 47.1256521371 ], [ -122.2930223395, 47.1364690107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6524298189, 47.7572284351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9196173248, 46.147218448 ], [ -122.9103992419, 46.147036878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2099835359, 48.0853786216 ], [ -123.1998425884, 48.0838545215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9099471422, 46.0583086547 ], [ -118.9075966187, 46.0562013963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3597169341, 47.2569450563 ], [ -122.3574461631, 47.26443574 ], [ -122.3794534635, 47.2749697278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3223743924, 48.543587961 ], [ -120.3152493003, 48.5356655747 ], [ -120.2746920614, 48.5208934314 ], [ -120.2595111993, 48.5117976986 ], [ -120.2514198263, 48.501356904 ], [ -120.2272728853, 48.4882565885 ], [ -120.1928315035, 48.4779351239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2831461268, 48.0697565692 ], [ -124.2809185137, 48.0699570958 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966747787, 47.399436909 ], [ -122.2967521172, 47.4190994152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.6660998622 ], [ -122.3217057205, 47.670374577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0448176781, 46.3941409901 ], [ -117.044476644, 46.4040732772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112120534, 47.6843406722 ], [ -117.4111934872, 47.6661553637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5945415128, 48.3551234308 ], [ -119.5916519331, 48.3502168576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4957046659, 48.4279752811 ], [ -119.4793203116, 48.4427106768 ], [ -119.47455389, 48.4565074029 ], [ -119.504726913, 48.4971895169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0644490268, 46.6269757944 ], [ -123.0540392956, 46.6280909268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111435799, 47.6590755437 ], [ -117.411162631, 47.6609810366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3484813064, 46.0630851666 ], [ -118.3491644277, 46.0639266399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.3128548734 ], [ -117.9908694542, 46.3149359546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.1460797472 ], [ -119.2938851325, 47.1496369098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4474690781, 48.2419384688 ], [ -122.3792847178, 48.2409791825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2651299683, 47.4614024105 ], [ -122.2629302431, 47.4619229895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6207841642, 46.9343746994 ], [ -122.6075822125, 46.9413631902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3236818665, 46.4364355288 ], [ -117.3010762949, 46.426715932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4607123542, 46.9566297084 ], [ -119.3970757589, 46.9577736802 ], [ -119.3641548064, 46.9706876163 ], [ -119.3337342412, 46.9675559139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0696796026, 48.23396758 ], [ -122.061555391, 48.2363292108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6765472999, 48.0110069203 ], [ -119.6774926459, 48.0103631519 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8482332243, 46.8586162126 ], [ -122.8467102726, 46.8590457137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6550649229, 46.809179515 ], [ -117.6413017681, 46.8104615568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -118.9752267156, 46.6637302723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2520093383, 47.8571419291 ], [ -122.2369577595, 47.8790697395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9301268685, 48.5264239752 ], [ -121.8440165577, 48.5411010945 ], [ -121.8251820674, 48.538972313 ], [ -121.7933270019, 48.5435073143 ], [ -121.7727025488, 48.5378235193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2884988914, 48.963997296 ], [ -122.2762249884, 48.9650220251 ], [ -122.2715285544, 48.9748696672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0508055026, 47.0857677636 ], [ -119.0351635573, 47.0854260018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8021513026, 47.4912692217 ], [ -121.7916752446, 47.4832690795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9701538655, 47.8449608786 ], [ -121.9707726081, 47.8570932647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.7882975717 ], [ -117.8494574336, 46.7998322141 ], [ -117.8101743201, 46.8136488638 ], [ -117.7811267138, 46.8048818024 ], [ -117.7571242819, 46.8027239184 ], [ -117.716713311, 46.8103507878 ], [ -117.6914546669, 46.808715409 ], [ -117.6656137967, 46.8138014312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.5158418422, 47.2671438187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4497167189, 47.6443092509 ], [ -117.4516120669, 47.6469017259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0175921586, 46.4482685616 ], [ -119.0104657492, 46.4807072897 ], [ -119.0151184142, 46.4974458958 ], [ -119.0114262534, 46.514580199 ], [ -119.0147753835, 46.5330492641 ], [ -118.9959923537, 46.5612283389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2563379619, 46.2519667264 ], [ -119.2461272383, 46.2409894234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.9636327884 ], [ -122.3311899204, 48.9637972205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4798570338, 45.5857517212 ], [ -122.466151024, 45.5838225286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1591587709, 46.198638478 ], [ -119.1588244536, 46.2022230907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6673528658, 47.5490597613 ], [ -122.65895148, 47.5539369573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6377776889, 47.7367740872 ], [ -122.6391820613, 47.7464774496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114853073, 46.6260626792 ], [ -120.5069976359, 46.6257073162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6260861992, 47.428820891 ], [ -121.6131737911, 47.4285755837 ], [ -121.5903662442, 47.4195793911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5271133231, 46.6559435532 ], [ -120.5258992491, 46.6579574794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1766968441, 46.8046382853 ], [ -119.1767648181, 46.809746805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6040808647, 47.5533601555 ], [ -120.5989270885, 47.5553611869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5592550475, 46.9339839558 ], [ -122.5556609589, 46.9361969309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8650512546, 46.5465667665 ], [ -122.8011596478, 46.5439467679 ], [ -122.747421571, 46.532339046 ], [ -122.7197711644, 46.5320488595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3805172543, 46.0318115343 ], [ -118.3627410114, 46.0415078207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9134448464, 47.0253389513 ], [ -122.9094874642, 47.0217506114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3414018352, 48.4590968726 ], [ -122.3424452974, 48.4769135735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3426003903, 48.5134790031 ], [ -122.3515399574, 48.5305200558 ], [ -122.3502009691, 48.5531647768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7772882632, 48.9177594411 ], [ -117.7760452677, 48.928358074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5204986539, 45.7575928617 ], [ -121.52754616, 45.7606234938 ], [ -121.5279890656, 45.7661176923 ], [ -121.5121334624, 45.776374164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5339872909, 48.0097622963 ], [ -122.5414842419, 48.011987346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7367980221, 46.6805525735 ], [ -123.7303182124, 46.6823391023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7334805954, 47.7623342902 ], [ -118.7212439358, 47.7631466252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079523143, 47.3909890982 ], [ -122.3004124588, 47.3957738513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6872359291, 47.5754584422 ], [ -122.6901316239, 47.5798542029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.0536511041 ], [ -122.1193130939, 48.0535474274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0732200773, 47.347496595 ], [ -123.0293255922, 47.3508042021 ], [ -122.9868725272, 47.3733995692 ], [ -122.9487451622, 47.3816100186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3064040791, 47.7725385808 ], [ -122.302597486, 47.7699869803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0533201894, 46.3352565084 ], [ -117.0523623815, 46.336389697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7784777487, 48.0301901157 ], [ -122.7579724158, 48.0317552349 ], [ -122.745826823, 48.0252187014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0719934512, 46.2494836918 ], [ -119.0677532163, 46.2468045298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2359717776, 48.0661116568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3875067629, 47.0051795465 ], [ -123.382100299, 47.0068490189 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2626695043, 47.1398689271 ], [ -119.2701126525, 47.1419665364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1771557033, 46.1884708528 ], [ -123.1680910014, 46.1910275512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2311640554, 47.0504387055 ], [ -123.175467152, 47.0586866535 ], [ -123.1546990371, 47.0552496291 ], [ -123.1112802946, 47.0325956026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1020141523, 46.2227420627 ], [ -119.101122588, 46.2240920293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2369577595, 47.8790697395 ], [ -122.2268964445, 47.8867919049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8271538347, 45.8696991389 ], [ -119.7799581015, 45.8660328507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0824521881, 46.7544029188 ], [ -124.0813424614, 46.7757934066 ], [ -124.0868475896, 46.7892994633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.9782340718 ], [ -122.1430545767, 47.9779093221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0536804079, 46.3675828583 ], [ -124.053438936, 46.3706285622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9420074404, 46.8959196782 ], [ -122.9086394896, 46.8991466854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.8540700226, 47.0883824388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1767648181, 46.809746805 ], [ -119.1767815159, 46.8114994409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4227108674, 46.6969057794 ], [ -118.4122698552, 46.7012162608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1863875328, 47.6405133468 ], [ -122.1869038184, 47.6636304786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9389895243, 46.9474951907 ], [ -122.9354180565, 46.9596763245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4871781519, 46.6713847636 ], [ -120.49646088, 46.6596353982 ], [ -120.4989356807, 46.6492770518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6914263595, 45.6358581387 ], [ -122.6938570638, 45.637225155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.9765640486 ], [ -123.6272286689, 46.9765532394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111019043, 47.687150654 ], [ -117.4111371057, 47.6944973222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7831803897, 46.6698379874 ], [ -123.7671904335, 46.6744470342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4351007945, 47.7154472911 ], [ -117.4364218141, 47.7154395468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.1987611119 ], [ -122.1296885992, 48.2003311116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.1230525484 ], [ -122.5946667739, 48.1516803947 ], [ -122.6064434153, 48.1635594746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6532972455, 47.5655345715 ], [ -122.6511293212, 47.5655459942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.6101927227 ], [ -121.6663638136, 46.6141909864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5888375562, 45.9758111476 ], [ -121.6125293313, 45.9625721062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7397102898, 46.7012896138 ], [ -123.7437635985, 46.7153016927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304093084, 47.6079523826 ], [ -122.3286460195, 47.6218398679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0051653665, 47.2658148473 ], [ -123.0029655026, 47.2660406347 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588364929, 46.2122195073 ], [ -119.1509779825, 46.2148765642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.9792119734 ], [ -122.7482397955, 48.9864873577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8859488488, 46.5202816438 ], [ -123.8934297223, 46.5484187108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857699354, 46.9900928031 ], [ -123.8857527631, 46.9927676585 ], [ -123.8939276953, 46.9931418107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1898949617, 47.9790684157 ], [ -122.188666249, 47.9794305969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.5508465619 ], [ -122.4221853179, 48.5654425158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.2652637647, 49.0023331331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578488817, 48.2895410127 ], [ -122.657837721, 48.2913280407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1703775752, 47.7449382474 ], [ -118.1736598311, 47.7883685846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1625335373, 47.628203114 ], [ -118.159705125, 47.6427340926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9070616699, 46.6806375323 ], [ -119.9166346542, 46.6972957966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063789003, 47.9520311616 ], [ -122.094618564, 47.9514925058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6959320726, 48.9034555044 ], [ -121.6713565113, 48.8871755279 ], [ -121.6683746385, 48.8735964021 ], [ -121.6739808813, 48.8758038472 ], [ -121.6594897464, 48.8688630894 ], [ -121.6580262283, 48.8640419461 ], [ -121.6547619135, 48.8663081545 ], [ -121.6589172471, 48.8590433627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.9468811492 ], [ -118.6917968125, 47.9537164275 ], [ -118.7001439176, 47.9612741069 ], [ -118.7007666934, 47.9715755988 ], [ -118.6932366444, 47.9858042203 ], [ -118.6928786502, 47.9958498529 ], [ -118.6865576547, 48.0003976807 ], [ -118.6881097384, 48.0051631789 ], [ -118.6811911375, 48.013475131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7300552535, 48.6419111855 ], [ -118.7010950406, 48.6529300754 ], [ -118.6850050975, 48.6506492932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155190209, 48.2762460851 ], [ -117.7155515131, 48.2809311397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5813429939, 47.3109726485 ], [ -122.5934601063, 47.3246446179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6425828517, 46.9708731434 ], [ -118.6598639151, 46.9705949371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350299238, 47.2432097813 ], [ -122.4199297039, 47.2443571022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7849363108, 46.3717532207 ], [ -123.7567194267, 46.3556632852 ], [ -123.7347135662, 46.3543537474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3536592638, 47.6310538708 ], [ -119.3595018472, 47.6413739111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6730634499, 47.4637949376 ], [ -117.6232200849, 47.4699050473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2827858737, 47.6810526384 ], [ -117.2799050476, 47.6816356586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3041069002, 47.4122978378 ], [ -120.3055238703, 47.415408638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3405498465, 46.0739014753 ], [ -118.3255247068, 46.0817350589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6082425787, 48.4287878768 ], [ -122.6067917986, 48.4370383266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4857687926, 48.8914094656 ], [ -122.464240563, 48.891667265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8144960068, 46.9745245963 ], [ -123.8141567727, 46.974248551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924369341, 47.3216137304 ], [ -122.3903629125, 47.3216340622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9090833449, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2978771665, 47.6166084807 ], [ -119.2928419495, 47.6157241973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6661977768, 48.2841306381 ], [ -122.6596669668, 48.2863597414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5785447315, 46.6857085787 ], [ -121.5789679391, 46.6896872972 ], [ -121.562292404, 46.6954679099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3134257955, 47.2979565948 ], [ -122.3133300405, 47.303094966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742471673, 45.7884633898 ], [ -122.6813333636, 45.8063615363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3592834167, 46.069578111 ], [ -118.3538671999, 46.0696978456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.5553173378, 47.8095387896 ], [ -122.5310414126, 47.8095136583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.5091003278 ], [ -122.3329165329, 47.5234893652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1404542596, 47.7309772963 ], [ -122.1317677799, 47.7144009727 ], [ -122.1321920922, 47.6952826792 ], [ -122.1282535153, 47.6874070809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9814105695, 46.7572813912 ], [ -121.9474994672, 46.7550419284 ], [ -121.9273783017, 46.7493552016 ], [ -121.9220375425, 46.7426875865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.7937508078 ], [ -118.5684177308, 46.7947224844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5009591571, 46.6232675075 ], [ -120.4880037429, 46.6075314018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9401799875, 47.1960778907 ], [ -120.9437717492, 47.1965328965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042307641, 46.8878717782 ], [ -124.104302567, 46.8959740416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6384906851, 46.3352078778 ], [ -123.6214626929, 46.3469762238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1277899267, 46.2435755653 ], [ -119.1266194124, 46.246327603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9741828621, 46.3270182624 ], [ -117.9793951542, 46.3369573434 ], [ -117.9785387727, 46.3464638557 ], [ -117.9524909367, 46.3563728876 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8655443332, 47.5625960148 ], [ -121.8347869038, 47.5539873994 ], [ -121.8406843431, 47.5514635735 ], [ -121.8313657266, 47.5369638292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9856625426, 47.7451686523 ], [ -121.9845733907, 47.7513804106 ], [ -121.9557053136, 47.7697208879 ], [ -121.9740171693, 47.7885071981 ], [ -121.9823417916, 47.8127801291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7542359838, 46.978403612 ], [ -123.7445979677, 46.9735726358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0130934852, 46.3059829046 ], [ -119.9861758662, 46.3060765495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1251815178, 48.2002933787 ], [ -122.1236120707, 48.2002782394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4371558585, 48.7076989882 ], [ -119.4360006417, 48.7109840533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158228483, 45.5949143216 ], [ -122.5156287011, 45.5948612042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5964124559, 48.8920606997 ], [ -122.5983885994, 48.8916617976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0078653292, 47.872487544 ], [ -121.9908494983, 47.8657174136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3648165287, 46.8790297995 ], [ -117.364773078, 46.8799063068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.2348611365 ], [ -122.5100030807, 47.2490381759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.3946951929, 47.7570939377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4598946117, 45.7123396511 ], [ -121.4253522035, 45.6996005372 ], [ -121.4036102525, 45.6993830974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9598608634, 46.7119804203 ], [ -122.9564753528, 46.7112869506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.0490596047 ], [ -122.2748305032, 46.0636006917 ], [ -122.2464336415, 46.0556053087 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0654931199, 47.8179312301 ], [ -122.0562501932, 47.8299985078 ], [ -122.0295956843, 47.8298762266 ], [ -121.9992299624, 47.8523397018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1364781908, 47.6384421787 ], [ -122.1351290082, 47.640071799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5469856665, 45.8168217556 ], [ -122.5220688196, 45.8532467256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2328875048, 47.9233521925 ], [ -122.2231765605, 47.9226576514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1299980522, 48.2057570202 ], [ -122.143389182, 48.2246779017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2096024616, 48.821069883 ], [ -122.2025293491, 48.8159609661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9379417422, 47.660685361 ], [ -117.9167021499, 47.6653110039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4919517544, 47.2348877891 ], [ -122.493797523, 47.2348611365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7648711374, 47.0612918893 ], [ -122.7645455776, 47.0564842559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.0115068577 ], [ -122.6881983355, 47.0090276156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3499363576, 47.2430303348 ], [ -122.3365632968, 47.2450397981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119629623, 47.3522809023 ], [ -122.3092462539, 47.3580817971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1579964315, 46.1391116684 ], [ -118.1502609571, 46.1420400459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205033055, 46.3313990906 ], [ -120.3205390391, 46.3386430967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5808735402, 47.3353309836 ], [ -120.568278873, 47.3360585763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.3725592844 ], [ -122.2006150998, 47.3722720586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7334112553, 47.6434838531 ], [ -117.690253067, 47.6430952782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3250529195, 47.8213297085 ], [ -122.3228862469, 47.8212957342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2574451577, 47.2018821101 ], [ -122.254047685, 47.2009435128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.6141909864 ], [ -121.6577255991, 46.6239161848 ], [ -121.6160035758, 46.6478940682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9727960208, 46.3237819677 ], [ -117.9741828621, 46.3270182624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5243096729, 47.5048277184 ], [ -122.5104823423, 47.5048487373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224579886, 47.646211059 ], [ -122.322462732, 47.6496170314 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2569845795, 46.810235263 ], [ -119.2181964942, 46.8141634951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4460453581, 46.3716676172 ], [ -119.4406556774, 46.3808764649 ], [ -119.4228141497, 46.3832991036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4275808374, 47.3168023421 ], [ -122.4233116711, 47.3170469005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8577283824, 46.6939486439 ], [ -123.8431696828, 46.6984120458 ], [ -123.8153513788, 46.6707407117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0991109684, 47.18070609 ], [ -123.0971571723, 47.1818128402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8597476834, 45.8244297002 ], [ -120.8318672716, 45.8230595037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5799543409, 48.3644758133 ], [ -119.5450859846, 48.396250068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2857890361, 46.5613718886 ], [ -122.2752434827, 46.5583246063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932262899, 47.1183648911 ], [ -122.2930833684, 47.1256521371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7921120527, 45.8483754133 ], [ -120.7709004569, 45.8615514769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6811911375, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.6745338956, 48.0329393311 ], [ -118.668829663, 48.0503155854 ], [ -118.6738246026, 48.0692605239 ], [ -118.69074626, 48.0828527406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8936094988, 46.5891345777 ], [ -122.904494363, 46.6021302692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1135516316, 47.4532319373 ], [ -123.1155512302, 47.4448279782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176442321, 47.2382129228 ], [ -122.4083499421, 47.2391797955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259718026, 47.398107085 ], [ -122.6257721122, 47.4000022997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2243682744, 47.4778018949 ], [ -122.220911129, 47.4788254663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5514961681, 47.9936326927 ], [ -117.5663025103, 47.9938759436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.6999410067, 45.923000308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.9425126462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6181368996, 47.2500373035 ], [ -119.5985546782, 47.2518971615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045144925, 47.6452852227 ], [ -122.3045734555, 47.6490440633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4447329829, 47.6326990173 ], [ -117.4483713102, 47.6410080356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002782834, 47.2119732363 ], [ -123.1001117785, 47.2128066209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8844965185, 46.2561969531 ], [ -122.8921920489, 46.2675770829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3411431465, 48.4469767522 ], [ -122.3414018352, 48.4590968726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9504462358, 46.8962553703 ], [ -122.9420074404, 46.8959196782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007887846, 46.1084782427 ], [ -122.8925432587, 46.1068065797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838252738, 47.9522510714 ], [ -122.8817445196, 47.9446523903 ], [ -122.8536693945, 47.9407898169 ], [ -122.8137272987, 47.9229521483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.565213602, 46.5434407828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4968769556, 47.7970409839 ], [ -122.4959840812, 47.795839855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8132595013, 48.1004014814 ], [ -122.7885589611, 48.1029421282 ], [ -122.7831995028, 48.1070075798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397125029, 47.6897536118 ], [ -117.2184787446, 47.6944938171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4114871909, 47.7396505482 ], [ -117.411427803, 47.7408474959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395845311, 47.6725795615 ], [ -117.2395516805, 47.6729939622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6947937623, 47.381239063 ], [ -122.680812527, 47.3887654485 ], [ -122.6613065763, 47.3889764709 ], [ -122.6518676217, 47.3854416573 ], [ -122.6528510166, 47.3773323215 ], [ -122.6418945651, 47.3795057214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8008176143, 45.7117126858 ], [ -120.8080597843, 45.7199565014 ], [ -120.8144502763, 45.72130035 ], [ -120.8224992697, 45.743168923 ], [ -120.8229476469, 45.7771798533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6090544172, 47.8521256366 ], [ -122.6020428046, 47.8547635857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1699835707, 47.7530524149 ], [ -122.1688952325, 47.7523661354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4450607281, 47.0665796514 ], [ -122.4346867332, 47.0834174301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0404861073, 46.1612119681 ], [ -119.0494766974, 46.168670079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293907946, 47.1928634023 ], [ -122.22939549, 47.1916397461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7868512068, 46.9671019999 ], [ -123.7880909112, 46.967896691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114938746, 46.8624815133 ], [ -122.3309551779, 46.8686509313 ], [ -122.3461519832, 46.8646712563 ], [ -122.3485996117, 46.8698964015 ], [ -122.3412473353, 46.8783735591 ], [ -122.3590200387, 46.8898382458 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2184787446, 47.6944938171 ], [ -117.1924425951, 47.69589869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2088000662, 47.9150721941 ], [ -122.2075664829, 47.9152876806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1327070433, 48.1526864406 ], [ -122.1167643996, 48.1516314237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.8214634366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8880451706, 47.0349627247 ], [ -122.8753021958, 47.036689104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4923909755, 46.9379773099 ], [ -122.4841720635, 46.9380070182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2203529267, 47.5824516264 ], [ -122.2000543534, 47.5787190739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4694374549, 46.5065542918 ], [ -120.4796170905, 46.5164951013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754010062, 47.4873552206 ], [ -117.5647334404, 47.498272492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4676807101, 46.7023866982 ], [ -117.4672879853, 46.7034528115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1998163094, 46.3311315335 ], [ -120.1801941156, 46.3452788522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.6614633424 ], [ -122.2859448482, 47.6619893558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2756369244, 47.8708807894 ], [ -122.2748522475, 47.8718113531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299573082, 48.0326119562 ], [ -122.7207360254, 48.0268110537 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3065286882, 47.4166683919 ], [ -120.3170457721, 47.4294662441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6206863347, 46.6605003365 ], [ -120.6142357749, 46.6544908714 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3642482346, 46.8895898765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.2142916788 ], [ -122.4627470202, 47.2159591708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0448319243, 47.3997061319 ], [ -122.0393244339, 47.4079731902 ], [ -122.0050649195, 47.4194364888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4343801512, 47.1489709589 ], [ -122.434250602, 47.1554309896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2947757571, 47.4153242228 ], [ -120.2941276522, 47.4130153494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969253171, 47.4452667572 ], [ -122.1982503924, 47.4471972302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5706924506, 47.8037291147 ], [ -122.563306341, 47.80561327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2449869401, 48.1566054926 ], [ -122.2383520005, 48.1519754742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5528157131, 45.6121505059 ], [ -122.5563050504, 45.6167350271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6248931708, 45.9283298654 ], [ -119.603047109, 45.9369049065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.8423792383, 47.8397664657 ], [ -117.8553269485, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9719468032, 47.5356190389 ], [ -121.9423990512, 47.5302140606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.3633416819 ], [ -119.5799543409, 48.3644758133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1900214152, 48.1598254833 ], [ -122.1930283776, 48.176135222 ], [ -122.1994394218, 48.1842323462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.8848116859 ], [ -118.3329102877, 46.9112865847 ], [ -118.3434404794, 46.915750159 ], [ -118.3453584296, 47.002118431 ], [ -118.3523615276, 47.0106200548 ], [ -118.3478251995, 47.0405415449 ], [ -118.3651684181, 47.0601072344 ], [ -118.3656317125, 47.112475028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206620248, 47.6769065098 ], [ -122.32934455, 47.6957536487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9384153356, 47.1948996063 ], [ -120.9401799875, 47.1960778907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0926019856, 47.8681495864 ], [ -119.0928254707, 47.8804577602 ], [ -119.0773477173, 47.8901190715 ], [ -119.0641730438, 47.9058725038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543101229, 46.7193545946 ], [ -122.9555240563, 46.7165039902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922430833, 47.4941319797 ], [ -122.1953416359, 47.4994564392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1511457837, 45.8183340264 ], [ -121.1463960115, 45.8217818712 ], [ -121.1203944047, 45.8182961934 ], [ -121.1152881651, 45.8250288655 ], [ -121.1000196081, 45.8249268805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1340104468, 47.3579773429 ], [ -122.1281070641, 47.3580335124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375517758, 45.9498941429 ], [ -119.3324665654, 45.9393404761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8225853934, 48.534895129 ], [ -117.8178886082, 48.5253988774 ], [ -117.804791347, 48.5147408998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0898201478, 47.8397078467 ], [ -120.0538459389, 47.8359849929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.6124988865 ], [ -118.7206203577, 47.6136015226 ], [ -118.7216865022, 47.7565875063 ], [ -118.7101114713, 47.7579202996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7645455776, 47.0564842559 ], [ -122.7646365596, 47.0522855716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9450533075, 48.8896410913 ], [ -121.9420276289, 48.8891584197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2167143776, 47.9113439649 ], [ -122.2129385008, 47.91279953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2247355074, 47.5862739437 ], [ -117.2216074513, 47.5969812615 ], [ -117.2235791152, 47.6164555058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0154120928, 48.0674017673 ], [ -122.0098989742, 48.071628269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1509779825, 46.2148765642 ], [ -119.1411095244, 46.2154260444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7189725743, 47.1993671783 ], [ -120.7080243736, 47.2036487713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0987142773, 47.3694924181 ], [ -122.0815564766, 47.3772542241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5906026172, 45.6527948204 ], [ -122.5816054123, 45.655987363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2975114504, 46.3001018541 ], [ -119.3049039776, 46.2928299037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.1047382405 ], [ -122.9512089429, 46.1157614264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2796331186, 45.6906882361 ], [ -121.2138792304, 45.6734611598 ], [ -121.1928665076, 45.6576560325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.398065622, 47.3956087457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9770150376, 47.8170244607 ], [ -119.9747908435, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7043255452, 46.7738226067 ], [ -117.6939737271, 46.7889237158 ], [ -117.6778315328, 46.7936524449 ], [ -117.6550649229, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2579004931, 47.2918141977 ], [ -122.254118291, 47.2998428644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.7703035237 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.0143287806 ], [ -122.1915989356, 48.0125732298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8548278199, 47.23342187 ], [ -119.8533663973, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.6538234455 ], [ -117.3302489185, 47.653713239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7656400398, 46.9512725149 ], [ -123.7695997378, 46.9546351666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4512101301, 46.5770853276 ], [ -120.4354637214, 46.5745924593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -119.0058747596, 46.7008068298 ], [ -119.0098352163, 46.7101063353 ], [ -119.022009186, 46.7204224263 ], [ -119.0487109157, 46.7291966819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.9577400504 ], [ -122.619337819, 45.9439148266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4117450085, 47.6019773285 ], [ -117.4390078118, 47.6240624799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6164943357, 48.7884410173 ], [ -118.616803513, 48.7959551869 ], [ -118.6034157792, 48.8049107122 ], [ -118.5916182675, 48.8270264864 ], [ -118.5921296026, 48.8354347926 ], [ -118.6039372517, 48.8559091636 ], [ -118.6063379125, 48.8732863748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8642395904, 47.5111841759 ], [ -121.8530540341, 47.5118709577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.251298774, 48.0998571166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5832793235, 47.4818861833 ], [ -117.581932979, 47.4825221847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7004740827, 46.8819430195 ], [ -122.6888591294, 46.8883629314 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356102101, 45.5801631372 ], [ -122.4266731536, 45.5798853327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.3241654589, 47.7296158195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4698317487, 47.5426197192 ], [ -119.4532411733, 47.5665696629 ], [ -119.4362688029, 47.5726405798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471693341, 48.9195294698 ], [ -122.3234409469, 48.9201959718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0997120272, 47.2056969535 ], [ -123.1011620507, 47.2072125648 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219074037, 45.8568488308 ], [ -122.5200551004, 45.865996916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4131299621, 48.4502154271 ], [ -122.3810673208, 48.4573156123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.5417260081 ], [ -122.6349019011, 47.5414235496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9527396272, 46.720041065 ], [ -122.9522499816, 46.7274803396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3647146566, 46.8810185511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3123636673, 47.3477991611 ], [ -122.3119629623, 47.3522809023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.1848015959 ], [ -120.8977278871, 47.1804239536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9526076358, 48.5773917833 ], [ -117.9894375686, 48.5890571016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329469401, 47.5673326833 ], [ -122.6329141514, 47.5710682046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.9961770865 ], [ -122.5440284191, 47.00195264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3452527917, 47.741452447 ], [ -122.3454890434, 47.7524905174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4986984819, 47.3690721351 ], [ -119.4972510691, 47.3702850298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6572408493, 47.5983589324 ], [ -120.6540439356, 47.5990844387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156287011, 45.5948612042 ], [ -122.4943892728, 45.5890557217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1415565005, 47.4513001292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.7323956011 ], [ -117.1741648142, 46.7379128734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157587458, 47.281707768 ], [ -122.5157406775, 47.2908042195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455886366, 47.4412210855 ], [ -122.2438389364, 47.4568632492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5232962062, 48.4094700138 ], [ -119.5256803341, 48.4105086385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.8115322114 ], [ -122.4859938914, 48.8150001938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9658761326, 47.1936165169 ], [ -120.9280333907, 47.1893145679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5087171766, 47.1447737983 ], [ -122.4989188555, 47.1501796155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2635417231, 47.9221791593 ], [ -122.2510997896, 47.9232511801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.9040186992, 47.1886262402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871847394, 47.5018573254 ], [ -122.1826210947, 47.4988151232 ], [ -122.1740778642, 47.5058207686 ], [ -122.1598568622, 47.5046576599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299951107, 48.9621767777 ], [ -122.7284141787, 48.9757559926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4189635614, 47.8314948096 ], [ -117.4231431671, 47.8843518204 ], [ -117.4538503546, 47.9182613584 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7195199906, 45.6499177453 ], [ -122.7308174939, 45.655963797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.0903093008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9667501531, 46.379458651 ], [ -119.9507168728, 46.3970662882 ], [ -119.9479351658, 46.4141956254 ], [ -119.9373599037, 46.4337298932 ], [ -119.938319542, 46.4575952693 ], [ -119.9310180931, 46.4741304562 ], [ -119.9017083155, 46.497304085 ], [ -119.8843350959, 46.5050823884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9247009245, 46.1221385232 ], [ -122.9183274849, 46.1179762286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.6599920959 ], [ -117.4133229534, 47.6590747649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1523661986, 47.7330804139 ], [ -122.1404542596, 47.7309772963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044776202, 47.5482634566 ], [ -117.7044515804, 47.551027418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7888286163, 48.0414353719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8979905603, 47.6935842347 ], [ -122.9000668498, 47.6772665999 ], [ -122.9323014096, 47.6518739395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0036329276, 47.3094647022 ], [ -122.0116242643, 47.3330404711 ], [ -122.0182971717, 47.3410067723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598186601, 47.7602527368 ], [ -122.1570006357, 47.765024263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6816043754, 48.269260962 ], [ -121.6743723204, 48.2692255901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.5271301706, 47.0069958392 ], [ -122.460282873, 47.0590365811 ], [ -122.4450607281, 47.0665796514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5259931748, 48.7945741767 ], [ -122.5446847676, 48.8138630642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3070123443, 46.567981686 ], [ -123.2999170842, 46.5700274981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3197480792, 47.6816333663 ], [ -122.318091806, 47.6824319974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9051023405, 46.1847118489 ], [ -122.9070746013, 46.1900492586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1727879342, 46.7397697342 ], [ -117.1710414458, 46.7424904094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8823509757, 46.9792200862 ], [ -123.8857480999, 46.9806448411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0065316221, 47.0552123027 ], [ -122.9998190814, 47.0505006375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3235459955, 47.4769045316 ], [ -120.3207059196, 47.4808771816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7872865838, 47.4951204522 ], [ -121.788376675, 47.4940653907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.8251972811 ], [ -122.2431153196, 47.8256765678 ], [ -122.2331720885, 47.8210669673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.8829802143, 46.7127174081 ], [ -120.8736869896, 46.7122569007 ], [ -120.8457986157, 46.7214615642 ], [ -120.8187846966, 46.7194429167 ], [ -120.8111956085, 46.7266981663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5746576675, 46.5626246259 ], [ -123.5402947407, 46.5576923778 ], [ -123.5203150937, 46.5452203474 ], [ -123.494926021, 46.5410094666 ], [ -123.4164514949, 46.5508891636 ], [ -123.3938977324, 46.5443022941 ], [ -123.3746653206, 46.5519403275 ], [ -123.3387554018, 46.5498400922 ], [ -123.3181533134, 46.5537699057 ], [ -123.3070123443, 46.567981686 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7445979677, 46.9735726358 ], [ -123.7381959686, 46.9710907007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0641730438, 47.9058725038 ], [ -119.0563552656, 47.9153765852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6507363437, 47.7695891636 ], [ -122.6515427568, 47.7916136315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7477462633, 46.6933741544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616138919, 48.7607636257 ], [ -122.4622283159, 48.7681610573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8037680338, 46.4381163639 ], [ -122.7267485599, 46.4373575595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.2472806543 ], [ -123.045670011, 47.2478374662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.6090058957 ], [ -122.5709358838, 45.6080222232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538347685, 46.9524134967 ], [ -122.5468403017, 46.9927649775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525513618, 46.6447887503 ], [ -118.5495094772, 46.6453560334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2193270337, 47.30338806 ], [ -122.1869343886, 47.298301147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6581170517, 45.6185588654 ], [ -122.6334221513, 45.6184980719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8422504198, 46.4113220356 ], [ -123.8349983211, 46.3948956565 ], [ -123.8281981659, 46.3913609219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1468751595, 48.3068128255 ], [ -118.1631186706, 48.3520288123 ], [ -118.1715522275, 48.4091006331 ], [ -118.1708437963, 48.4288296254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534053473, 47.2223294365 ], [ -119.8533828874, 47.231885111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7619942648, 48.0632663696 ], [ -117.7552102892, 48.1167618601 ], [ -117.7327781122, 48.1383013951 ], [ -117.7260465116, 48.1503593139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7227122233, 48.1685422116 ], [ -117.7262847571, 48.1762204765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.5902637122 ], [ -120.6676433679, 47.5927812587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2546464371, 46.9816911587 ], [ -119.2059547126, 46.9847954432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857415687, 47.7548599981 ], [ -122.1840627382, 47.7606381882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.7801298015 ], [ -122.599982644, 45.7801453767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0957237818, 47.1572988202 ], [ -123.095106414, 47.1429892693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2755457279, 47.8209143725 ], [ -122.2658705764, 47.8207446489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.7740832951 ], [ -118.2886572256, 46.7879317008 ], [ -118.3097453971, 46.8098489829 ], [ -118.3099862619, 46.8161196557 ], [ -118.3217641545, 46.822539058 ], [ -118.3321392421, 46.8389818766 ], [ -118.3362638132, 46.8534807148 ], [ -118.334575397, 46.8848116859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876095018, 46.1576443082 ], [ -122.9833545966, 46.1555474575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9179703845, 46.9819334325 ], [ -123.92417003, 46.9825144102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.3333652583 ], [ -118.6922310931, 47.3333156666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2554591689, 47.1454962289 ], [ -117.2677060281, 47.1615080182 ], [ -117.2891774357, 47.1679524761 ], [ -117.2958452372, 47.1833254981 ], [ -117.3295786243, 47.1869824575 ], [ -117.3546879112, 47.2034961093 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8324499347, 47.1042259268 ], [ -119.8307822154, 47.1036973105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8114502592, 46.6993848447 ], [ -123.8253745361, 46.709170275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.2240920293 ], [ -119.0997711539, 46.223724902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8847738398, 47.9855759007 ], [ -122.8820241615, 47.968795396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7468893165, 47.2346362782 ], [ -119.7251709256, 47.2489121615 ], [ -119.6181368996, 47.2500373035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6613049438, 45.647498224 ], [ -122.6496497972, 45.6504231837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068708389, 45.6018672646 ], [ -122.4055026586, 45.5961003788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.7289642557 ], [ -122.9536737749, 46.7289461561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151301203, 47.6720446521 ], [ -122.1133617704, 47.671528366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3015320727, 48.1814415097 ], [ -117.3012126424, 48.191267265 ], [ -117.2897176202, 48.2065229267 ], [ -117.2914802502, 48.2273126077 ], [ -117.2830862535, 48.2366828375 ], [ -117.2845754339, 48.2812765736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3271587307, 47.7136272159 ], [ -122.3242862882, 47.7185219104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7384627186, 48.5359258924 ], [ -121.7223369447, 48.5319460862 ], [ -121.7075219149, 48.5191466035 ], [ -121.6760393017, 48.5151612873 ], [ -121.6513860232, 48.5041934528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6585157988, 47.0514934706 ], [ -120.6291812643, 47.0396007246 ], [ -120.5867415871, 47.0023957095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380018087, 48.9060853167 ], [ -122.1375909505, 48.9171432802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.3982856502 ], [ -120.2564967356, 47.3853137258 ], [ -120.1922237193, 47.3773145311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8505614694, 46.6606108889 ], [ -118.8367462093, 46.6949715887 ], [ -118.8348854358, 46.7191386362 ], [ -118.8208435355, 46.7340210389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9517110134, 46.1469021572 ], [ -122.9259280616, 46.1463384374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8566143534, 46.4366406332 ], [ -123.8714474882, 46.4476360198 ], [ -123.8740416373, 46.4591167752 ], [ -123.8878297764, 46.4791584777 ], [ -123.8859488488, 46.5202816438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4389284985, 48.705561124 ], [ -119.4373980431, 48.7072992033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7667323197, 48.110171865 ], [ -122.7608305412, 48.1125877254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6459065292, 48.3044536381 ], [ -122.6434331584, 48.3065806606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8464511089, 47.4246031872 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260927168, 47.3890549862 ], [ -122.6259718026, 47.398107085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.0525359155, 46.466597142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0967671874, 47.0341238279 ], [ -123.0754529552, 47.0405018922 ], [ -123.0577148184, 47.0409268562 ], [ -123.0223763118, 47.0580771821 ], [ -123.0124274602, 47.0563166427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9923916449, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2705939775, 46.2873405261 ], [ -122.2586933356, 46.2829628948 ], [ -122.2184077423, 46.290256532 ], [ -122.1949063653, 46.2823305403 ], [ -122.2019102926, 46.2789405654 ], [ -122.2166918782, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.2185321118, 46.2775970571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546693813, 47.479786644 ], [ -118.2546196045, 47.4837941362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8311550343, 47.1038712566 ], [ -119.8272576766, 47.106307188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8970765547, 46.9810040205 ], [ -123.902252551, 46.9810452868 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940156325, 48.5236742491 ], [ -122.149310257, 48.5311401242 ], [ -122.1205538564, 48.5260765992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2158884218, 47.8443983695 ], [ -122.2175661581, 47.8496908765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5712528402, 48.1146712556 ], [ -123.5666907268, 48.114021332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.5375786595 ], [ -122.2251116552, 48.5503306146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.8504355115 ], [ -117.3497979206, 46.8597063959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9524909367, 46.3563728876 ], [ -117.9392616292, 46.382620523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3062213119, 47.416281941 ], [ -120.3065286882, 47.4166683919 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2777737236, 47.879481564 ], [ -122.2799690003, 47.8826891954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426668622, 48.1780973091 ], [ -117.0424962708, 48.1830235936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5138862172, 45.7429041091 ], [ -121.5204986539, 45.7575928617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4478142216, 47.6480936772 ], [ -117.4195602915, 47.6526347407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3195807175, 47.4716032095 ], [ -120.3025873431, 47.4686065666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.8448314506 ], [ -122.5812917606, 48.852425293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.0317308992 ], [ -119.2267789418, 46.0180871043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1384722057, 46.892262265 ], [ -119.1444896159, 46.8984851562 ], [ -119.1363999204, 46.9111066773 ], [ -119.1279706055, 46.9485582437 ], [ -119.1186109827, 46.9595266729 ], [ -119.1179382964, 46.9701782337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0023772267, 47.9485330892 ], [ -119.0032812985, 47.947389362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0973376697, 47.1826544128 ], [ -123.0984327789, 47.1898992789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.1010693917, 47.9456237913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207560536, 47.5899474422 ], [ -122.3205050716, 47.5975079138 ], [ -122.3265267058, 47.6034433933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6168907485, 47.0952000036 ], [ -122.5963933831, 47.1027062195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1099317298, 48.0262394664 ], [ -122.1102365439, 48.0279042262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523268647, 47.8961954425 ], [ -117.3511036365, 47.903873351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.4104336223, 48.6904887705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059141852, 48.2122640442 ], [ -122.7254611419, 48.2111110539 ], [ -122.7399066254, 48.2292007745 ], [ -122.7148061182, 48.2403092978 ], [ -122.7098709231, 48.2523750469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5794120249, 45.6676715094 ], [ -122.587012075, 45.6793317854 ], [ -122.6008744257, 45.6874395737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.4788254663 ], [ -122.2194720778, 47.4795067364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6718045785, 45.623437204 ], [ -122.6654874391, 45.6200688002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.9066976691 ], [ -122.4854389282, 48.9351240348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447271345, 46.3081264556 ], [ -124.0447225968, 46.3088719536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499665548, 45.5969306355 ], [ -122.5509906905, 45.6012653728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0939413826, 46.2498784583 ], [ -119.0917467448, 46.2503035218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5220688196, 45.8532467256 ], [ -122.5219074037, 45.8568488308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3502034489, 47.9137043437 ], [ -117.3506178988, 47.9432704768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0050649195, 47.4194364888 ], [ -121.9839763366, 47.4320430934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8072496646, 45.8123784315 ], [ -120.8039379118, 45.8264664938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931738148, 47.9220879011 ], [ -122.2914374281, 47.9220287545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.9460567842 ], [ -122.4852153791, 48.9642388691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647296934, 47.4988542076 ], [ -117.5647059706, 47.5011897492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0476299632, 46.6285743251 ], [ -123.0183397646, 46.6437586626 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7225935085, 47.7708524695 ], [ -118.72180243, 47.8307542065 ], [ -118.7158171633, 47.8418244835 ], [ -118.7177993581, 47.8557884326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4220672954, 48.4427374565 ], [ -122.390445812, 48.4422989059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.9818766144 ], [ -122.2043471222, 47.9819297636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074561545, 47.7875219182 ], [ -117.4059782511, 47.8001660961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.8660328507 ], [ -119.7003175758, 45.8904645213 ], [ -119.6631819174, 45.9131840003 ], [ -119.6248931708, 45.9283298654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0561354019, 46.2902587967 ], [ -124.0480975411, 46.3020519269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2233288919, 47.9095861548 ], [ -122.2167143776, 47.9113439649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.4691766915 ], [ -123.9291735447, 47.4763535553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6987408734, 47.5866961105 ], [ -122.6986407419, 47.5960190089 ], [ -122.7047490044, 47.6007985246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8819927368, 48.5472128187 ], [ -117.8800458807, 48.5473265211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2236317238, 47.6278867921 ], [ -117.2398468351, 47.6445327832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6993155614, 48.2593609442 ], [ -122.6730425589, 48.2671633791 ], [ -122.6694634271, 48.2806289911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4223417195, 47.4282688783 ], [ -121.4110411782, 47.4243576922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.0374844302 ], [ -120.6092218493, 47.0480585921 ], [ -120.6294282804, 47.0744775232 ], [ -120.6552820758, 47.0921616821 ], [ -120.6686598398, 47.12002506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710228472, 47.4819453096 ], [ -122.2744143572, 47.4850652066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2742164355, 47.8479952638 ], [ -122.2768149357, 47.8726630238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4072691049, 47.2393529405 ], [ -122.4019360634, 47.239469308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485727781, 47.1677245225 ], [ -122.1441855248, 47.1674591072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5691788837, 47.5946199775 ], [ -117.5679132072, 47.5937450378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288644625, 47.741140359 ], [ -122.3297726533, 47.7436959378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6075822125, 46.9413631902 ], [ -122.6065410768, 46.9419413133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7728740575, 48.109600754 ], [ -122.7706871351, 48.109957957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3268526166, 46.297790684 ], [ -119.3204993439, 46.2934725609 ], [ -119.3085183423, 46.2931233698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6024268764, 48.353805119 ], [ -119.5950487686, 48.3559969968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127555504, 47.4701556709 ], [ -122.3009682136, 47.4657531835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1698418075, 47.5801249842 ], [ -122.1380752869, 47.5786572039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148285272, 47.8398314423 ], [ -120.0127832253, 47.8398059908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.7163662119, 47.8813080117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2497713089, 47.7583930838 ], [ -122.2436783372, 47.757435704 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939186583, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413820969, 48.0569482281 ], [ -117.7562347833, 48.0595083721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.3833072606 ], [ -122.22977526, 47.3833226703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473765563, 47.3813544414 ], [ -122.2474225905, 47.3852649438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.2478374662 ], [ -123.0350161303, 47.253938049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.5047904492 ], [ -122.5947129537, 47.504905792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5211794514, 48.4039684769 ], [ -119.5082283693, 48.4171152484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4341632669, 48.9323868359 ], [ -119.4351159777, 48.9331846153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832074613, 47.3815237106 ], [ -119.4832088344, 47.3835435175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.8850832339 ], [ -124.1116144402, 46.8868092337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0977227603, 47.4988510864 ], [ -122.0870325094, 47.5100083536 ], [ -122.0698540138, 47.5181410628 ], [ -122.0619448123, 47.5311845564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2485902926, 46.2609157729 ], [ -119.2279364121, 46.2727922262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1798921353, 48.0395761426 ], [ -122.1790908365, 48.0404147216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0422700836, 48.2472730431 ], [ -122.026469474, 48.2565227693 ], [ -122.0229079186, 48.2627125108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284987148, 48.409540793 ], [ -119.5284865191, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046484797, 46.9587267173 ], [ -123.8025700515, 46.9620278945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.9984489029 ], [ -117.2767589116, 46.0044012908 ], [ -117.2809410701, 45.9989894093 ], [ -117.2798172641, 46.0054474608 ], [ -117.2576613456, 46.0272223173 ], [ -117.2517268724, 46.0417290027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8107624661, 47.2341040289 ], [ -119.7681464636, 47.2343020206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -119.998439324, 46.2111215603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9919981435, 46.5668134388 ], [ -118.9943545429, 46.5674942159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.3898783885, 47.3927710931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3295269338, 46.375119312 ], [ -120.3331696319, 46.3769677074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7647638069, 47.0392228487 ], [ -122.7386443358, 47.0349276176 ], [ -122.7287961018, 47.0250540857 ], [ -122.7271458299, 47.0178712921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2865268063, 47.3906729649 ], [ -122.2793135196, 47.389970334 ], [ -122.2714942577, 47.3774662501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4226493275, 46.383209281 ], [ -119.3989176751, 46.3702741916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9033027171, 47.1830360818 ], [ -120.9008694447, 47.1862212903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8153513788, 46.6707407117 ], [ -123.8122989005, 46.6665841945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.1390929944 ], [ -122.0684124432, 47.1438395525 ], [ -122.059029398, 47.1421956268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9075966187, 46.0562013963 ], [ -118.8913479904, 46.0543459185 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509605497, 47.690504212 ], [ -122.5615375286, 47.710001753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159243491, 47.8953256029 ], [ -122.2102027734, 47.9096841492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.5767646402, 47.4862221857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5336093333, 48.5756042234 ], [ -119.5247105217, 48.5852161614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3370276268, 46.2969163285 ], [ -119.3268526166, 46.297790684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4716597285, 46.9377123473 ], [ -122.4423826497, 46.937291079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.6730634499, 47.4637949376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3156584943, 47.5948454186 ], [ -122.3087595806, 47.5900994807 ], [ -122.2940286061, 47.590082601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9833545966, 46.1555474575 ], [ -122.9811418748, 46.1544576439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4363817139, 47.23258819 ], [ -122.4304655405, 47.2333702661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2006150998, 47.3722720586 ], [ -122.1935312742, 47.3693743374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6930399694, 48.5196228035 ], [ -117.6874542357, 48.5197336235 ], [ -117.669804598, 48.503722179 ], [ -117.6364219092, 48.5278741835 ], [ -117.593606156, 48.5397640332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397947306, 47.6583760906 ], [ -117.2397118795, 47.6707021684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9900538253, 48.0834098562 ], [ -121.9904268316, 48.0866632894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1458871745, 45.6207464818 ], [ -121.1493385256, 45.627246477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.3762548928 ], [ -120.3199265565, 46.3750583048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3141855934, 46.416664953 ], [ -120.3142184025, 46.4146304102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0029655026, 47.2660406347 ], [ -122.9709937008, 47.2786751606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5310414126, 47.8095136583 ], [ -122.5178867416, 47.8084398669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4905907506, 47.3968832449 ], [ -121.4746332727, 47.3939164723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.5778363862 ], [ -122.1795081855, 47.5879075274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0036157589, 46.14714661 ], [ -122.9949382898, 46.1422801927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6590763437, 48.2086905534 ], [ -122.6671028849, 48.208880163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0540392956, 46.6280909268 ], [ -123.0476299632, 46.6285743251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.2009435128 ], [ -122.2455904637, 47.1960629254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9569337464, 46.9310727047 ], [ -119.8960760978, 46.9263943244 ], [ -119.8716336143, 46.9032686178 ], [ -119.8543075131, 46.8986913821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0827548583, 46.252250739 ], [ -119.084694014, 46.2595150494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.1553108605 ], [ -122.2929937518, 47.1566288415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0202611393, 47.8413912452 ], [ -120.0194056477, 47.8409567731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4056484865, 47.7456876175 ], [ -117.402291177, 47.749169702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.0607928531, 46.4309790988 ], [ -117.0397725467, 46.4312642493 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3351658289, 46.9428080119 ], [ -117.3342443282, 46.9502697374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8800458807, 48.5473265211 ], [ -117.8743970818, 48.5473938298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.9007887846, 46.1084782427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4344162199, 47.1475294086 ], [ -122.4343801512, 47.1489709589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5675237104, 45.6073013401 ], [ -122.5624136586, 45.6062101725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7488390649, 47.8671786834 ], [ -121.7350857122, 47.8671728801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0562728458, 47.1405796821 ], [ -122.0528218155, 47.1410552733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0009880199, 46.2136750464 ], [ -119.9996278638, 46.2207119718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2638042622, 47.8258077379 ], [ -124.2849702887, 47.8484497473 ], [ -124.3217492312, 47.8548954983 ], [ -124.3313184873, 47.8601934071 ], [ -124.3378207285, 47.8710935066 ], [ -124.3564028382, 47.8868367862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.0446019994 ], [ -124.1654679307, 47.0715130267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7271458299, 47.0178712921 ], [ -122.7247120976, 47.0145460302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3055238703, 47.415408638 ], [ -120.3062213119, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5967641772, 47.4763429271 ], [ -117.5899202161, 47.4791586755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.1315509218 ], [ -123.6671258406, 48.1191174479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2878136748, 46.2595687001 ], [ -119.2860031075, 46.2585535412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3947912458, 46.2315766109 ], [ -123.3894612533, 46.2116841789 ], [ -123.3840920127, 46.2062528444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922736805, 47.4901260728 ], [ -122.1922430833, 47.4941319797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3953437269, 47.0507021736 ], [ -122.3977887884, 47.0531477811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5945415128, 48.3551234308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141163677, 45.8882670084 ], [ -122.5115938422, 45.8889120074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.7546910576 ], [ -121.5492834565, 46.7628032231 ], [ -121.5483113382, 46.7701921391 ], [ -121.554831628, 46.7875507315 ], [ -121.5563143316, 46.8134073659 ], [ -121.5345232327, 46.8339911582 ], [ -121.5189752718, 46.8309746734 ], [ -121.5306436293, 46.8388115136 ], [ -121.5305321021, 46.8422134405 ], [ -121.514777234, 46.8543886165 ], [ -121.5282509494, 46.8561937641 ], [ -121.5302148924, 46.8635071098 ], [ -121.5399470088, 46.8668971706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5896360866, 47.0059926881 ], [ -120.5859736555, 47.0066138323 ], [ -120.5943172222, 47.0140340001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1266194124, 46.246327603 ], [ -119.1264880523, 46.2492677583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156424716, 47.3005954736 ], [ -122.5153285839, 47.3019754864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1012651236, 48.6145465613 ], [ -118.1130354822, 48.6245416722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643165436, 47.8830950253 ], [ -122.2583128195, 47.8895409718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921631348, 48.1882508645 ], [ -122.1437081841, 48.18863098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6524298189, 47.7572284351 ], [ -122.6551873979, 47.7579966203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8303255251, 45.9865466391 ], [ -122.8439980452, 46.0036486101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249389869, 47.5271305474 ], [ -122.3269269693, 47.5291188556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9095978806, 46.3282371415 ], [ -122.9058084856, 46.3540274103 ], [ -122.9078330534, 46.3671239838 ], [ -122.9031362266, 46.3853907412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1024989284, 47.9747837779 ], [ -122.1027482966, 47.978079114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3489538413, 47.8018716143 ], [ -117.3472122709, 47.8244633117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2564882876, 47.6744377468 ], [ -117.2332386303, 47.6740978586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3312487114, 47.4630152497 ], [ -122.3322816003, 47.4672044794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1352981522, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8926430173, 47.1852194677 ], [ -120.8544979241, 47.1749253538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8158546232, 46.9740606365 ], [ -123.8144960068, 46.9745245963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6086838618, 47.8395393993 ], [ -117.6248994904, 47.8447512634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050754567, 45.8579274145 ], [ -122.7086008695, 45.8700022682 ], [ -122.7304474004, 45.8859692149 ], [ -122.7405471815, 45.9025011825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2323979204, 48.5104945464 ], [ -122.2283833788, 48.5104834855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538906727, 46.3719036566 ], [ -122.5340666871, 46.3650761505 ], [ -122.5220157903, 46.3531056437 ], [ -122.5208405998, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.4600261231, 46.3341989605 ], [ -122.4436211994, 46.3327194151 ], [ -122.4239755806, 46.3243794359 ], [ -122.4116026874, 46.3288268712 ], [ -122.4065880617, 46.3248804093 ], [ -122.4105058581, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.3741708168, 46.3113203362 ], [ -122.3510605635, 46.3071011772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2245455295, 47.6632648417 ], [ -120.2234272269, 47.6648157581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471628144, 48.4689593505 ], [ -122.3443533309, 48.4699161341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4651180339, 46.2822112261 ], [ -123.4572843275, 46.2706003653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114439556, 47.4631544785 ], [ -122.1255239767, 47.4635158088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7901966083, 48.1001446551 ], [ -119.7868478019, 48.101573517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.1003946329, 46.424564911 ], [ -117.1253712638, 46.4309663929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4644208312, 46.2537605149 ], [ -119.3970004337, 46.2614856786 ], [ -119.3679545991, 46.2490442826 ], [ -119.3600450664, 46.2396584936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6172366357, 48.3298494085 ], [ -119.6125603258, 48.3338920433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5108612391, 48.7867012138 ], [ -122.5259931748, 48.7945741767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8283708435, 46.8574846811 ], [ -122.7812799701, 46.8608150774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398690039, 47.6488703847 ], [ -117.2398365744, 47.6534457073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3617197932, 48.8661339983 ], [ -117.3624241485, 48.8688400718 ], [ -117.3572304808, 48.8661780923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2764080485, 47.7535766576 ], [ -122.2638528237, 47.7582985129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7973817559, 47.8650366901 ], [ -121.7774669653, 47.8678385583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7803536315, 48.0276618969 ], [ -122.7809989146, 48.0297888001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5324173506, 47.3958007915 ], [ -121.5160199943, 47.3953842075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.1032121332 ], [ -119.322729826, 47.1025870681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5905461616, 47.6429198089 ], [ -117.5826104882, 47.642912863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6437803284, 47.5650600843 ], [ -122.6356948558, 47.5650400988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2995949834, 47.4678600276 ], [ -120.2975047463, 47.4351022237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9365744608, 47.6873896384 ], [ -121.9716304243, 47.6944719968 ], [ -121.9810154345, 47.7012895486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869343886, 47.298301147 ], [ -122.1774995641, 47.3024217933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2103050963, 47.4923049652 ], [ -123.2231492867, 47.4962089759 ], [ -123.2418846075, 47.4953345304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8351070251, 46.2928789335 ], [ -122.8112469946, 46.2969576394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0397574174, 46.474224958 ], [ -117.0422413047, 46.4742309777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5645756943, 48.3674740397 ], [ -119.5324591897, 48.3860626961 ], [ -119.5211794514, 48.4039684769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223421817, 47.6560094062 ], [ -122.321753728, 47.6660998622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622122897, 48.7536867617 ], [ -122.4616138919, 48.7607636257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2538113908, 47.4617511143 ], [ -122.2498888662, 47.4623828171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4107130626, 46.2554072697 ], [ -120.3982811706, 46.2753155879 ], [ -120.3693689354, 46.2786231674 ], [ -120.3580676477, 46.2967738517 ], [ -120.3330101537, 46.3081349737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.2513545129 ], [ -119.0827548583, 46.252250739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276587856, 47.2283207799 ], [ -122.4280346059, 47.2286568082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7194158446, 46.5756303426 ], [ -122.7173359337, 46.5756310576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0451921636, 46.416527455 ], [ -117.0442671142, 46.4171675734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5169772116, 46.6260720818 ], [ -120.5114853073, 46.6260626792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8245858874, 45.6986339731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4156991339, 48.7941935233 ], [ -122.395950267, 48.8041008656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3961715735, 47.919272726 ], [ -119.4353927693, 47.9216556451 ], [ -119.5135000122, 47.950443261 ], [ -119.5329788462, 47.9510554207 ], [ -119.5422997674, 47.9443701814 ], [ -119.564793237, 47.9428888341 ], [ -119.6371724962, 47.9520756207 ], [ -119.6479252829, 47.9603062437 ], [ -119.6534084763, 47.9721497191 ], [ -119.6485168005, 47.9848915126 ], [ -119.6506748055, 47.9912018634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4055514032, 47.6207224415 ], [ -119.3805932317, 47.6235798402 ], [ -119.3647672058, 47.6193901694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8122989005, 46.6665841945 ], [ -123.809145399, 46.6649346237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.2060951858 ], [ -119.1071132149, 46.2075458387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3362411853, 47.4550266445 ], [ -120.3360094985, 47.4608143832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730113456, 47.2256809047 ], [ -117.0730185905, 47.2267941681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289242991, 47.7341017926 ], [ -122.3236068716, 47.7340600888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0941270076, 47.7457487872 ], [ -121.0893942423, 47.7454347093 ], [ -121.0764752001, 47.7551681673 ], [ -121.0775873896, 47.7686150769 ], [ -121.0729087438, 47.773323135 ], [ -121.060451893, 47.7803801069 ], [ -121.0353893482, 47.7843056375 ], [ -121.0149919147, 47.7731379178 ], [ -120.9890649278, 47.7669597776 ], [ -120.9403149112, 47.7817991783 ], [ -120.926773205, 47.7835826432 ], [ -120.911885984, 47.7797192708 ], [ -120.8736181816, 47.7912719586 ], [ -120.8260870372, 47.777964567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8553269485, 47.8483119805 ], [ -117.8483182897, 47.8533575039 ], [ -117.838164281, 47.8740349974 ], [ -117.8385186675, 47.8839866036 ], [ -117.8160774557, 47.904185807 ], [ -117.7729376468, 47.9319295106 ], [ -117.7601643293, 47.9514802553 ], [ -117.7306706015, 47.9778797622 ], [ -117.730227038, 47.9908989454 ], [ -117.7260701767, 47.9948236433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6235085123, 47.0432551254 ], [ -120.6108296856, 47.0345615907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3360094985, 47.4608143832 ], [ -120.3370917545, 47.4657444174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9357154749, 46.9527589941 ], [ -122.9380064027, 46.9527490926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286460195, 47.6218398679 ], [ -122.3255888568, 47.6309781209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4001468865, 46.2808655483 ], [ -119.3888239449, 46.2866351388 ], [ -119.3850550864, 46.2969567513 ], [ -119.3798468993, 46.3001340733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1147080098, 48.2225207152 ], [ -117.0718319169, 48.2146041919 ], [ -117.0491706107, 48.1875683679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6640345732, 48.6790336908 ], [ -118.6592835463, 48.69353696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2343676861, 48.3157860192 ], [ -122.2346365429, 48.3169213007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2010536613, 46.7337602693 ], [ -117.1937212048, 46.7334218163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112846076, 47.6862395483 ], [ -117.4112120534, 47.6843406722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339867358, 48.3531223429 ], [ -117.854425242, 48.4239853112 ], [ -117.9008434138, 48.4812158123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0547323353, 46.1734065603 ], [ -119.0609392727, 46.1762466146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.8299990291 ], [ -117.1906863712, 47.8382800486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8839143851, 46.9770579066 ], [ -123.8824654132, 46.9762996857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3363467181, 47.5916540334 ], [ -122.3366396811, 47.6036659781 ], [ -122.3448873174, 47.6170758429 ], [ -122.3435956074, 47.6246542116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0102677154, 48.2683045733 ], [ -121.9969976219, 48.2744489921 ], [ -121.9882608553, 48.2735411001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1018056421, 47.1837746945 ], [ -123.0966058497, 47.1747523811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2601698309, 48.2506931926 ], [ -124.2595417057, 48.249031188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.4259053325 ], [ -117.2640416943, 46.4083472778 ], [ -117.2471726354, 46.4035618315 ], [ -117.2263614526, 46.4056970206 ], [ -117.2143023696, 46.4117358872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153052769, 48.1518278439 ], [ -122.1937378718, 48.1522064888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796927801, 45.9278618295 ], [ -122.3796394499, 45.9403750242 ], [ -122.3704124175, 45.9461267079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2271386392, 48.1520086536 ], [ -122.2153052769, 48.1518278439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2379325105, 48.3993275149 ], [ -122.2406467581, 48.4027244437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3874436362, 47.0046753037 ], [ -123.3831477693, 46.998968611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133077561, 47.3151824274 ], [ -122.3133014011, 47.3166524228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0229079186, 48.2627125108 ], [ -122.0149147028, 48.26670449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393798517, 47.5620616142 ], [ -122.339393127, 47.5668492127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2028039844, 47.8632306636 ], [ -120.1924069122, 47.866359942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6154441079, 47.5048209466 ], [ -122.6100956059, 47.5047904492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8030737493, 46.9773424769 ], [ -123.7745905953, 46.9816357852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.8022660378 ], [ -122.9278853234, 47.7838704693 ], [ -122.9185752836, 47.7735579364 ], [ -122.8995415369, 47.7691442355 ], [ -122.8927871706, 47.7538639977 ], [ -122.8777886746, 47.743200821 ], [ -122.8964164726, 47.6985807685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989034271, 47.8005733284 ], [ -122.4984055596, 47.7996307337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8764947699, 46.5550803084 ], [ -122.8769701281, 46.5656688487 ], [ -122.886654867, 46.5818960485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.0718480284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426450193, 47.2398211593 ], [ -117.0400651005, 47.2403316548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.5692199392 ], [ -122.3192746176, 47.5777213746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7255609263, 47.1697949724 ], [ -119.6943596205, 47.1892246234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6669203097, 45.6632919305 ], [ -122.6645970993, 45.6715670557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6468785968, 48.7737685937 ], [ -118.6164943357, 48.7884410173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1332932554, 47.7045387135 ], [ -117.0986362805, 47.712113508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2801945178, 48.4926127654 ], [ -122.2745076704, 48.4947462696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007224617, 46.1436344597 ], [ -122.8991903157, 46.1440948709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9437717492, 47.1965328965 ], [ -120.9462399136, 47.1968530327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4406634454, 48.3884548136 ], [ -119.4751978366, 48.3959072026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9072875101, 48.5485390558 ], [ -117.9122497826, 48.5496184382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.2331168365 ], [ -119.8640137768, 47.2332276959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6018306923, 46.1025658531 ], [ -119.6010199635, 46.1841411231 ], [ -119.6325132774, 46.1868027068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152365358, 46.2321748638 ], [ -119.1978814184, 46.2296948397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7065027719, 48.2686887461 ], [ -121.6816043754, 48.269260962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3312866855, 46.3333696967 ], [ -119.3168183585, 46.3257612363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.4040732772 ], [ -117.0455119005, 46.4058071413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730024916, 47.2240691944 ], [ -117.0730113456, 47.2256809047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5900304239, 46.9331912019 ], [ -122.563890205, 46.9320426175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5509551438, 47.3216616972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8916600156, 46.4181629111 ], [ -122.8895694243, 46.4396122337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1403017666, 47.3713844944 ], [ -120.1145793468, 47.3620058597 ], [ -120.091885291, 47.3467454248 ], [ -120.0759154793, 47.3283402333 ], [ -120.0718463794, 47.3150765031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266865938, 48.1904292048 ], [ -122.6268548608, 48.1963630554 ], [ -122.6340939948, 48.1993242257 ], [ -122.634532628, 48.2055146884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.7170064104 ], [ -117.4113416177, 47.7366272099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873052723, 46.0007282614 ], [ -118.3873059636, 46.0008733795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021438178, 46.1517167071 ], [ -119.2021936567, 46.1479617048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561483502, 45.5765439754 ], [ -122.3371199918, 45.5743187936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.1318940785, 46.233167577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.7904698955 ], [ -117.1171469709, 46.81324534 ], [ -117.1147380578, 46.8287560939 ], [ -117.1250730248, 46.8420876815 ], [ -117.1254311457, 46.8526895018 ], [ -117.1311720543, 46.8600078141 ], [ -117.1257662315, 46.8805636369 ], [ -117.1162608729, 46.8915969469 ], [ -117.0768183035, 46.9087074668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7380382951, 48.6477058434 ], [ -118.7340738301, 48.6404765011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3371199918, 45.5743187936 ], [ -122.3368309639, 45.5742854262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622283159, 48.7681610573 ], [ -122.468301725, 48.7760746279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643571316, 48.430063418 ], [ -122.2633531437, 48.4386943331 ], [ -122.2563532279, 48.4450517182 ], [ -122.2437846159, 48.4455328201 ], [ -122.2376759016, 48.4518050892 ], [ -122.2340372998, 48.459902027 ], [ -122.2364699855, 48.4678814769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3600916592, 46.8977782002 ], [ -117.3480763006, 46.9039214532 ], [ -117.3512048046, 46.911617455 ], [ -117.3488390721, 46.920878082 ], [ -117.3334887527, 46.9374674228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1948130997, 47.7039806698 ], [ -120.2022962075, 47.715799214 ], [ -120.2016705042, 47.7214958149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9791440454, 46.3170643063 ], [ -119.9790026711, 46.3316725974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9813954636, 47.1994152348 ], [ -121.9791170661, 47.1993968717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2977336595, 47.4242381539 ], [ -120.2969810046, 47.4206856987 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2332386303, 47.6740978586 ], [ -117.2196536686, 47.6737301547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0194056477, 47.8409567731 ], [ -120.0148285272, 47.8398314423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1886206387, 47.478462399 ], [ -122.1965538402, 47.4840107581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.2805652971 ], [ -122.2579004931, 47.2918141977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5942584951, 45.6125607215 ], [ -122.5755446732, 45.6090058957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.1597721166 ], [ -122.6377635069, 48.1650503371 ], [ -122.6372168781, 48.1706516249 ], [ -122.6311760448, 48.1709418294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3923505431, 47.9892462948 ], [ -124.390330186, 48.0234983063 ], [ -124.3861356451, 48.0343724022 ], [ -124.3771964333, 48.0428294994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9414768713, 46.633570246 ], [ -122.9550744316, 46.6440853642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2262812506, 47.4777333495 ], [ -122.2243682744, 47.4778018949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398365744, 47.6534457073 ], [ -117.2398112843, 47.6571200997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8612713575, 47.0847839089 ], [ -119.862512719, 47.0861911278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9672362186, 47.4364490931 ], [ -121.9463085291, 47.4610684243 ], [ -121.8925478736, 47.4771180887 ], [ -121.884585692, 47.504313222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9899301488, 48.0831794362 ], [ -121.9880421437, 48.0837433176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9623607954, 46.955497291 ], [ -119.9739327012, 47.0005510232 ], [ -119.9555037804, 47.0083586637 ], [ -119.9485401068, 47.0155594946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249301321, 47.4940508534 ], [ -122.325629622, 47.5091003278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6017358428, 48.2552691488 ], [ -121.6020400669, 48.2595802573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.300279957, 47.9256460771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.2111215603 ], [ -119.9393101914, 46.196885705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4672397114, 45.719390102 ], [ -121.486682184, 45.7277580783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9996278638, 46.2207119718 ], [ -119.9995278053, 46.2401318028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646817112, 47.503963135 ], [ -117.5646472962, 47.5079585085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2701126525, 47.1419665364 ], [ -119.285225107, 47.1460797472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0661637707, 47.9143207671 ], [ -122.0436242083, 47.9056634606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5056560072, 48.7850058356 ], [ -122.5108612391, 48.7867012138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.6365454184 ], [ -120.5304207056, 46.6430874404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1814065807, 48.04479845 ], [ -122.1839911758, 48.0494099826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.2214727186 ], [ -123.959008749, 47.2322639062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6056799649, 46.4748288907 ], [ -117.6041932764, 46.4748995993 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6938570638, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4819452858, 46.2520832532 ], [ -119.4644208312, 46.2537605149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2317004486, 47.8819477141 ], [ -122.2196680439, 47.8802932531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0372995865, 47.9328968903 ], [ -119.0177040011, 47.9367931061 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7681464636, 47.2343020206 ], [ -119.7468893165, 47.2346362782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.9818595874 ], [ -122.2471159221, 48.9855358738 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1417952785, 48.074895211 ], [ -123.1231539266, 48.0732680847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255548441, 48.5141869713 ], [ -122.2261409872, 48.5282544504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444983864, 47.6942136653 ], [ -122.3445897421, 47.7021703261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8208435355, 46.7340210389 ], [ -118.7557863554, 46.7871441721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0986125857, 47.6645874444 ], [ -122.0911114715, 47.6582107586 ], [ -122.078551081, 47.6557377147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9074799263, 46.1442853545 ], [ -122.9007224617, 46.1436344597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3255888568, 47.6309781209 ], [ -122.3224725894, 47.655393277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5495094772, 46.6453560334 ], [ -118.4999251675, 46.6516187698 ], [ -118.4903184729, 46.6611044962 ], [ -118.4227108674, 46.6969057794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0106509547, 47.9393125368 ], [ -118.9560547959, 47.9246186729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8277972731, 47.3865787228 ], [ -122.8288444363, 47.396432791 ], [ -122.8375622701, 47.402573245 ], [ -122.8415602841, 47.410924864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6823571827, 47.7086751463 ], [ -122.6690587997, 47.7496337056 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8903778041, 46.415684535 ], [ -122.8910176347, 46.421545267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663139585, 47.8342508992 ], [ -122.2724340167, 47.8395507144 ], [ -122.2742164355, 47.8479952638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9055307646, 48.5363629877 ], [ -117.9058230966, 48.5454377559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6869120748, 47.6932883974 ], [ -122.6823571827, 47.7086751463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1636333379, 47.4006707974 ], [ -123.1789488644, 47.4041675409 ], [ -123.1925948411, 47.4136830468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3521889436, 48.8735003742 ], [ -117.3286715777, 48.892802401 ], [ -117.3238638229, 48.9174144214 ], [ -117.3133128707, 48.9245515322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.4111862674 ], [ -122.623334611, 47.4284900867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.6957536487 ], [ -122.3295202166, 47.7043262966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9172628783, 46.1916920438 ], [ -119.8764960512, 46.187636732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.6108296856, 47.0345615907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146803025, 46.3895637812 ], [ -120.3149961011, 46.3824800478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7922032406, 47.476414011 ], [ -122.7663244649, 47.4942350849 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7347455537, 48.2990724352 ], [ -118.7493162362, 48.337391075 ], [ -118.7408226152, 48.3606961167 ], [ -118.7499280968, 48.3721707244 ], [ -118.7467825618, 48.3916586524 ], [ -118.7320955432, 48.399702401 ], [ -118.737561094, 48.4139729393 ], [ -118.7275775146, 48.4265108249 ], [ -118.7403276827, 48.4401809605 ], [ -118.7536657363, 48.4657381976 ], [ -118.7469823226, 48.4725287776 ], [ -118.7358955757, 48.4734852504 ], [ -118.7280051955, 48.4797806169 ], [ -118.7365952788, 48.4817782442 ], [ -118.7412126364, 48.4967914056 ], [ -118.7340631192, 48.5303352221 ], [ -118.7496554917, 48.5477265072 ], [ -118.7437512212, 48.5542247409 ], [ -118.7430996768, 48.5612042754 ], [ -118.7481235162, 48.5686839207 ], [ -118.7432636175, 48.5766708895 ], [ -118.7392164438, 48.6029509222 ], [ -118.7301109365, 48.6209221799 ], [ -118.7302329781, 48.6349158109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1638845081, 47.7585835533 ], [ -122.1646271104, 47.7572105358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526290082, 47.2744486003 ], [ -122.1407606558, 47.2634183904 ], [ -122.1282708819, 47.2605031318 ], [ -122.1182659294, 47.2502870454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6687451729, 47.5798764344 ], [ -117.6629212073, 47.5817195825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.5105092144 ], [ -122.2352752464, 48.510504468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.2742763685, 46.855512758 ], [ -122.2666996294, 46.8629061998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7022061254, 47.8572690469 ], [ -121.6924466276, 47.8522943399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6813768359, 48.8537575857 ], [ -121.6884690105, 48.8489003507 ], [ -121.6870544478, 48.8446393966 ], [ -121.6927461801, 48.8468788469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.6648157581 ], [ -120.2080808869, 47.675976654 ], [ -120.2072556027, 47.690389145 ], [ -120.2161904322, 47.7091769834 ], [ -120.2275722374, 47.7218054046 ], [ -120.2262456476, 47.7319503729 ], [ -120.2137503235, 47.7509668337 ], [ -120.1983417337, 47.7602672279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1411095244, 46.2154260444 ], [ -119.1371263893, 46.2216194455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5198277142, 47.6444797699 ], [ -122.5232713274, 47.6536299928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6127739583, 48.5004551192 ], [ -122.612637467, 48.5100800768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4347516102, 47.1123943169 ], [ -122.4348569541, 47.1194809791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7584799402, 47.3744092288 ], [ -122.7478911271, 47.3780569673 ], [ -122.7162522863, 47.3743552356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3464829935, 47.2161092989 ], [ -122.3420450241, 47.2135776972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8085220192, 47.3154321744 ], [ -118.7556512324, 47.3133928496 ], [ -118.6991152602, 47.3325467605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496648896, 48.0177222579 ], [ -117.3497942054, 48.0321149063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8665119074, 46.3036401573 ], [ -122.8562709135, 46.2938613758 ], [ -122.8450829264, 46.2935798136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9699877988, 46.7110483932 ], [ -122.9675307628, 46.7105506649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3798468993, 46.3001340733 ], [ -119.3680598924, 46.3027624934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6305634117, 47.0911974641 ], [ -122.6168907485, 47.0952000036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1050710923, 46.5588432113 ], [ -117.1186833573, 46.5672526465 ], [ -117.133768563, 46.5681320318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0997711539, 46.223724902 ], [ -119.0836074304, 46.2194354617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.7115319431, 47.7789042748 ], [ -120.7149150326, 47.8093423824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0367508916, 47.9006838682 ], [ -122.0166827624, 47.8768683004 ], [ -122.0078653292, 47.872487544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": 170 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.8120676338 ], [ -119.6287415959, 47.8154486037 ], [ -119.3841243851, 47.8153402952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619448123, 47.5311845564 ], [ -122.0632060501, 47.5412525635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7162522863, 47.3743552356 ], [ -122.7114277659, 47.3745220756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9531139031, 46.7191026108 ], [ -122.9527396272, 46.720041065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2754741187, 46.7999623833 ], [ -122.2907543651, 46.8008242314 ], [ -122.2999838929, 46.812840824 ], [ -122.3010136823, 46.8299402753 ], [ -122.3179158372, 46.8309769948 ], [ -122.3198113886, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3895298763, 47.9579786515 ], [ -124.4034665195, 47.9674631851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220411659, 47.6652612865 ], [ -122.3206620248, 47.6769065098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826564308, 47.5676722178 ], [ -117.6826777243, 47.5721438687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3637055225, 46.8798827877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2916171614, 47.4596862569 ], [ -122.2896393743, 47.4638618378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055405288, 45.5917612872 ], [ -122.4055508584, 45.5906041586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446909131, 47.7817536234 ], [ -122.3181975005, 47.8175907621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8130784885, 47.8092766362 ], [ -119.8071947642, 47.81403994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567735413, 47.1311262985 ], [ -119.2576559361, 47.13692103 ], [ -119.2626695043, 47.1398689271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353283591, 47.7777753423 ], [ -122.3245572303, 47.7776430656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4369512503, 48.9352749432 ], [ -119.4353841771, 48.9477318207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1407187037, 46.2701649585 ], [ -118.1377253327, 46.2707786892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.4825221847 ], [ -117.580789949, 47.4831439672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586957254, 46.8532935721 ], [ -122.8586860494, 46.8548429235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3570622964, 47.2404187331 ], [ -122.356727114, 47.2430577065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4665031792, 47.1763219389 ], [ -122.4630590407, 47.1874722949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5876777121, 48.1210599346 ], [ -122.588157825, 48.1230525484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288917189, 47.6068663319 ], [ -122.6288029427, 47.6101244229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2079538886, 46.7335435597 ], [ -122.1961396485, 46.7486771117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289448539, 47.4433692551 ], [ -122.3239010868, 47.4397926017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.3415217482 ], [ -119.3312866855, 46.3333696967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383520005, 48.1519754742 ], [ -122.2271386392, 48.1520086536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7766696657, 48.0135236739 ], [ -122.7803536315, 48.0276618969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2518648885, 47.7585697854 ], [ -122.2497713089, 47.7583930838 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3531195123, 46.244832268 ], [ -119.3263441939, 46.2473869538 ], [ -119.2942399537, 46.2575534355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2065091301, 47.3725609481 ], [ -122.2022136155, 47.3725592844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2076567487, 47.8095958449 ], [ -122.2074687841, 47.8201159821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4110411782, 47.4243576922 ], [ -121.4105333679, 47.412298435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535287712, 47.1322250265 ], [ -119.8534565369, 47.1904786655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6011440864, 46.7379133851 ], [ -119.2452761336, 46.7382468305 ], [ -119.2171199962, 46.7443848693 ], [ -119.1975233079, 46.7384199394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5888210566, 46.9701558628 ], [ -118.6425828517, 46.9708731434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6145007274, 47.7154775691 ], [ -122.6156582337, 47.7161387981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.6536361132 ], [ -118.1601671048, 47.6539518845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3189900834, 47.5793697605 ], [ -122.3207560536, 47.5899474422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3594319704, 47.6686111382 ], [ -117.3578020835, 47.6693777985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.8226983388 ], [ -118.6450781398, 46.8426071143 ], [ -118.6291145158, 46.8726381998 ], [ -118.6142343677, 46.889912435 ], [ -118.610684004, 46.9065381072 ], [ -118.5819937965, 46.9413896332 ], [ -118.571639149, 46.9627633161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1953416359, 47.4994564392 ], [ -122.1979386219, 47.5094150608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899095304, 47.721909145 ], [ -117.4957696028, 47.7261247472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4070872362, 47.7441952253 ], [ -117.4056484865, 47.7456876175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2267789418, 46.0180871043 ], [ -119.2574764079, 46.0002405136 ], [ -119.3328114294, 45.9767889078 ], [ -119.3425714208, 45.9645105136 ], [ -119.3375517758, 45.9498941429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7082095882, 46.4297795526 ], [ -122.703586609, 46.4274712477 ], [ -122.7097401995, 46.4213142088 ], [ -122.7094939136, 46.4057567359 ], [ -122.689147502, 46.3885347527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.5708280871 ], [ -117.5687388318, 47.5884737405 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6525696935, 48.0041955683 ], [ -119.676555192, 48.0264537662 ], [ -119.6600734659, 48.0750839441 ], [ -119.6601971396, 48.0871726218 ], [ -119.6677344082, 48.0980217898 ], [ -119.67945547, 48.1025546083 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.6731312949 ], [ -122.1151301203, 47.6720446521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5209883629, 45.728362545 ], [ -121.4949520588, 45.7249743594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9617770984, 46.9451030468 ], [ -119.9600764508, 46.9404487329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9781878444, 46.3023441821 ], [ -119.9783785412, 46.3052986594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395409867, 47.6757907672 ], [ -117.2396887191, 47.6862002896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3998093609, 47.2472450781 ], [ -122.3759701159, 47.2469906191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3812522854, 47.6538559571 ], [ -117.3696991532, 47.6539119327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4770208515, 46.690052266 ], [ -120.4742083499, 46.700892472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5818052442, 46.629370911 ], [ -120.5724635589, 46.6251660017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0435504851, 47.3579738218 ], [ -122.0376047767, 47.3579773831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1754150379, 47.811547043 ], [ -122.1526476236, 47.8049830492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1603852076, 46.8270351021 ], [ -123.139226139, 46.8258098296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7947532586, 47.4893941273 ], [ -121.7957761395, 47.4887865294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5446847676, 48.8138630642 ], [ -122.5530762786, 48.8225160709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0380002259, 47.9325544575 ], [ -119.0372995865, 47.9328968903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5784341072, 46.6855847693 ], [ -121.5805077567, 46.6890208076 ], [ -121.5774144898, 46.6931081642 ], [ -121.5824741364, 46.7004388608 ], [ -121.5754153801, 46.7106518512 ], [ -121.5775304787, 46.7192388112 ], [ -121.5687127572, 46.732258391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6923069088, 47.6636431264 ], [ -122.6926355567, 47.6632523312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4133229534, 47.6590747649 ], [ -117.4134370239, 47.6535198038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.4347156331 ], [ -120.3248875214, 47.4382457109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023974793, 46.9687249499 ], [ -123.8029450786, 46.9697219828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2103710587, 46.9691134856 ], [ -121.1674967694, 46.9781722496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3418776019, 46.2095624858 ], [ -119.3224569911, 46.1995501523 ], [ -119.2767500174, 46.1970146173 ], [ -119.2565858958, 46.1882981658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.4409909149 ], [ -120.3362411853, 47.4550266445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7477078919, 46.8989696084 ], [ -119.6446041548, 46.89906961 ], [ -119.6184725877, 46.8939308682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9762561497, 48.135096529 ], [ -118.9780832374, 48.1620197263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3601967875, 48.1093444067 ], [ -123.355714051, 48.1030129375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3450935078, 47.7322891749 ], [ -122.3451133369, 47.7341530585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5639273641, 46.9693979048 ], [ -118.5710608079, 46.9700238316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.0489497271, 46.7350588091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3134257955, 47.2979565948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3625630309, 47.6667062903 ], [ -117.361293531, 47.6674773757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7649510613, 47.0430902917 ], [ -122.7647638069, 47.0392228487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200293789, 46.4169522648 ], [ -120.3038736838, 46.4140405564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3113887255, 47.2800166221 ], [ -122.3135126494, 47.2840032145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6929086258, 47.0122908625 ], [ -122.691647237, 47.0115068577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4751894509, 48.7143961658 ], [ -122.4744175105, 48.7139080205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2997979412, 47.4682860937 ], [ -120.3005913938, 47.4765744345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2374372336, 48.2352708759 ], [ -122.2456895186, 48.2439992336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2231220368, 46.277953835 ], [ -118.2202318761, 46.2679666309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9991848792, 47.2312647073 ], [ -119.9790240031, 47.2432862158 ], [ -119.9536791305, 47.233042477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.6050020592 ], [ -122.4838497619, 46.6021253382 ], [ -122.4732795737, 46.6069408848 ], [ -122.4673707706, 46.6036301167 ], [ -122.4500625677, 46.6041140274 ], [ -122.4409160896, 46.6008817765 ], [ -122.4151954073, 46.5784671948 ], [ -122.4059420339, 46.576299297 ], [ -122.3424654966, 46.5855862749 ], [ -122.3033441932, 46.5641172674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3578020835, 47.6693777985 ], [ -117.3500629955, 47.6709209625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0800536366, 46.2333845599 ], [ -119.0824824346, 46.2383223812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376831738, 47.9777063656 ], [ -122.1376928426, 47.9781939272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050597877, 47.6433614356 ], [ -122.7045690526, 47.6571681504 ], [ -122.6927958127, 47.661573015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.7162401177 ], [ -122.9531139031, 46.7191026108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4975542478, 47.7988312911 ], [ -122.4984055596, 47.7996307337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0105057584, 47.9398197883 ], [ -119.0005313016, 47.9426815467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3664685234, 47.6539039945 ], [ -117.3473440936, 47.6538234455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6707470211, 47.5494494474 ], [ -122.6709875264, 47.5540420396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5417481504, 46.93783701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0801746668, 47.6417804378 ], [ -120.0767740067, 47.6417886706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1937187948, 47.6998534485 ], [ -120.1948130997, 47.7039806698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.3038957285, 46.7578975125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1354894847, 48.7101414512 ], [ -121.1220771925, 48.7109441126 ], [ -121.1150297344, 48.7073618219 ], [ -121.1093361213, 48.6954098047 ], [ -121.0998434043, 48.6894739435 ], [ -121.0945409463, 48.6918135397 ], [ -121.0962773257, 48.7095518988 ], [ -121.0828527337, 48.7097458743 ], [ -121.0780622172, 48.7166359531 ], [ -121.0562083367, 48.7288096268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9761197664, 46.7176133986 ], [ -122.9752113547, 46.7336230278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3637186054, 47.1582777108 ], [ -122.3478885514, 47.157627397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839911758, 48.0494099826 ], [ -122.1844675978, 48.0584615787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4066398664, 47.7632226212 ], [ -117.4044843472, 47.7691968077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0611804157, 48.5291856242 ], [ -121.9951021272, 48.5298846785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3151264897, 47.6852564017 ], [ -122.3059209037, 47.6920504533 ], [ -122.3055000322, 47.6975803085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.3492095996 ], [ -120.1698660388, 46.3410315909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1777008261, 47.2523092089 ], [ -123.1595614502, 47.2522250859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.6248548642 ], [ -122.5155441649, 47.6357793786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1611915713, 47.7452096371 ], [ -122.1523661986, 47.7330804139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.7870908551 ], [ -117.3384306266, 47.7875972066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1027482966, 47.978079114 ], [ -122.1055377983, 47.9978871915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.1580428725 ], [ -122.0342099984, 47.1595496539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6680924655, 48.3230367393 ], [ -119.6615285314, 48.3191457527 ], [ -119.629552896, 48.3205927715 ], [ -119.6172366357, 48.3298494085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.9501761308, 46.9833007241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4622475833, 48.9998737464 ], [ -119.4638532324, 49.0000867262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241669698, 46.4325560871 ], [ -119.0175921586, 46.4482685616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1479862888, 47.6503824795 ], [ -120.1271739213, 47.6633503955 ], [ -120.1265553381, 47.657244559 ], [ -120.1204618275, 47.6534221606 ], [ -120.0801746668, 47.6417804378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.5100800768 ], [ -122.6126173187, 48.5117929838 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0631995935, 46.2983588775 ], [ -124.0561354019, 46.2902587967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943463684, 46.6386317502 ], [ -120.5818052442, 46.629370911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802638858, 47.8059839555 ], [ -122.3802579386, 47.804112396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1563756705, 46.5189965757 ], [ -122.1144886609, 46.5370987947 ], [ -122.0753610512, 46.5476298644 ], [ -122.0066412409, 46.5359150399 ], [ -121.9865919137, 46.5386883542 ], [ -121.9572975987, 46.5353534207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260671635, 48.3402015788 ], [ -122.6126424216, 48.3479609208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.7571184025 ], [ -121.5176267241, 45.7510393509 ], [ -121.5237581372, 45.7438284052 ], [ -121.5209883629, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0445267647, 47.980223996 ], [ -119.0128652831, 47.9734162413 ], [ -119.0033625218, 47.9639235084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885742414, 47.9807304066 ], [ -122.188128621, 47.9807982931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6057120793, 46.9414897752 ], [ -122.593279583, 46.934769492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940286061, 47.590082601 ], [ -122.2539138096, 47.5892523535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0194447706, 47.3543865463 ], [ -122.0202766541, 47.3583922895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567131133, 47.1164713022 ], [ -119.2567735413, 47.1311262985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0548732503, 46.3323172772 ], [ -124.054617725, 46.3453645423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478874183, 46.4418799904 ], [ -122.8408960953, 46.4378300484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3600450664, 46.2396584936 ], [ -119.3509475564, 46.221897885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754291602, 47.8437264887 ], [ -121.6542540009, 47.8363873413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6636624539, 48.1604813241 ], [ -119.6696000423, 48.1820762782 ], [ -119.713417765, 48.2196444485 ], [ -119.7243645351, 48.2458410328 ], [ -119.7212000555, 48.2626191576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0298502289, 46.1536456355 ], [ -119.0341737891, 46.1565283618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281070641, 47.3580335124 ], [ -122.1254159669, 47.3580621765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9810154345, 47.7012895486 ], [ -121.9842126941, 47.7093339084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4638096383, 48.7709035452 ], [ -122.4626339661, 48.7713428245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7516443954, 48.9896016788 ], [ -122.7520415456, 48.9961053398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667315548, 47.4648600499 ], [ -122.2643040212, 47.455548918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3487077695, 47.7814262958 ], [ -122.338699596, 47.7777824155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9199492819, 46.1384787271 ], [ -122.9165979703, 46.1447449432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2900662647, 47.2038050564 ], [ -122.2839041915, 47.2030418132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.5604385799, 47.2858209621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074639212, 47.8123509195 ], [ -117.4189635614, 47.8314948096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.5147408998 ], [ -117.7309310756, 48.5140766628 ], [ -117.7123099829, 48.5025346103 ], [ -117.6930399694, 48.5196228035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1360883381, 48.2791408008 ], [ -118.1492755058, 48.3030819249 ], [ -118.1468751595, 48.3068128255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.1234239447 ], [ -122.9228006992, 46.1347958394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954733672, 48.3369797762 ], [ -122.2917893864, 48.3357459775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500629955, 47.6709209625 ], [ -117.3468192298, 47.6709658181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9303556413, 46.9761338415 ], [ -122.920784729, 46.9880445401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224725894, 47.655393277 ], [ -122.3220411659, 47.6652612865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6419803649, 47.815343803 ], [ -119.6399303545, 47.813732472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2911115679, 47.1240365899 ], [ -119.289772823, 47.1254917575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7090034211, 47.0697237816 ], [ -122.6757381114, 47.0813300502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.5207872011 ], [ -120.4282769273, 47.5058028204 ], [ -120.4193833846, 47.4918919015 ], [ -120.4098706126, 47.4855387729 ], [ -120.3692193944, 47.4758683659 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4026413273, 45.5856862701 ], [ -122.3997578511, 45.5841944043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0868227043, 46.7395693677 ], [ -119.1283965501, 46.7547549812 ], [ -119.1339570633, 46.7636604311 ], [ -119.1343073841, 46.7823988651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0209265407, 47.3613941171 ], [ -122.0237569069, 47.3733367643 ], [ -122.0334896745, 47.3838222996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.2158884218, 47.8443983695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2314445716, 47.7181510912 ], [ -121.1535414241, 47.7117866081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446858124, 47.3297219858 ], [ -122.2446131424, 47.3498974886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8743970818, 48.5473938298 ], [ -117.8572715742, 48.5473213018 ], [ -117.8460715424, 48.5415018691 ], [ -117.826594003, 48.539435667 ], [ -117.8225853934, 48.534895129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6025149847, 48.8920541634 ], [ -122.6040527531, 48.8920780487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.5434407828 ], [ -122.5476099457, 46.5481464139 ], [ -122.5335953997, 46.5573604122 ], [ -122.5226130373, 46.5528220874 ], [ -122.4976698793, 46.5583568324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.0771858995 ], [ -118.3569757559, 46.0850910738 ], [ -118.3672015566, 46.0864838173 ], [ -118.3712410754, 46.1000850053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -120.0009880199, 46.2136750464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.1247339542 ], [ -117.2426019261, 47.1282451493 ], [ -117.2426281993, 47.1322797485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5476135901, 45.7518906262 ], [ -122.5472598635, 45.7589462816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1437081841, 48.18863098 ], [ -122.1370320197, 48.1971826047 ], [ -122.1294755917, 48.1987611119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2145371798, 47.794421606 ], [ -122.2120593513, 47.7984747561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0356242216, 47.8496165293 ], [ -120.0277101274, 47.8474213611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8824654132, 46.9762996857 ], [ -123.8542222764, 46.9751663099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3761260037, 47.2404869197 ], [ -122.3632090748, 47.2405896685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469511117, 48.3911357861 ], [ -122.6446295806, 48.4078455473 ], [ -122.6491078895, 48.4120594291 ], [ -122.6442962662, 48.4167133772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1729427957, 48.0794522238 ], [ -123.1566785185, 48.0769008073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5472933615, 46.8097314034 ], [ -118.5469762937, 46.8696432609 ], [ -118.5691269289, 46.8875794467 ], [ -118.5671299854, 46.9387620133 ], [ -118.560421084, 46.9671994532 ], [ -118.5639273641, 46.9693979048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0029911997, 47.22593134 ], [ -121.0142157637, 47.2278486397 ], [ -121.0266377118, 47.2381146494 ], [ -121.0376452727, 47.2410571348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.2209096911 ], [ -122.4340520373, 47.2230930942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7391181737, 48.6476256888 ], [ -118.7380382951, 48.6477058434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6342473786, 47.5049271741 ], [ -122.6314890754, 47.5049287108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8957472001, 48.038517837 ], [ -119.9013270478, 48.0482824988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0541413502, 48.0609123727 ], [ -123.0317850249, 48.0444695397 ], [ -123.0308034821, 48.0385584263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1722002227, 47.1818280167 ], [ -117.1403329492, 47.1963834582 ], [ -117.1115675348, 47.1932573716 ], [ -117.097512456, 47.1960429801 ], [ -117.0740899923, 47.2211975001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217331431, 48.4069900346 ], [ -119.5217501674, 48.4051129342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9981202664, 47.8393603968 ], [ -119.9735363079, 47.8450645396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.2030418132 ], [ -122.2673512221, 47.2007333641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8983905827, 47.0254310319 ], [ -122.8880451706, 47.0349627247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1213708923, 48.2002565193 ], [ -122.1170200605, 48.2084489517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3243406744, 47.397956274 ], [ -122.3247753913, 47.4057300867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.2331134363 ], [ -119.869200631, 47.2331168365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588244536, 46.2022230907 ], [ -119.1588003107, 46.2077511977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975047463, 47.4351022237 ], [ -120.2975325983, 47.4333562129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1014661015, 47.9532966926 ], [ -122.1024989284, 47.9747837779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8766375645, 47.6695099085 ], [ -117.8632239331, 47.6690209762 ], [ -117.8204632094, 47.6577245072 ], [ -117.7893280679, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375995228, 47.1039064442 ], [ -119.325419947, 47.1032121332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.9320426175 ], [ -122.5592550475, 46.9339839558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754644577, 47.0918016783 ], [ -117.5851724439, 47.0928828595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9142967877, 47.0151102563 ], [ -123.9223395487, 47.0316557254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2364699855, 48.4678814769 ], [ -122.2465744052, 48.4914276823 ], [ -122.2470226925, 48.5030308196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4373980431, 48.7072992033 ], [ -119.4371558585, 48.7076989882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2666996294, 46.8629061998 ], [ -122.2667035384, 46.8634865679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3730388085, 47.247348751 ], [ -122.3597169341, 47.2569450563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4611381511, 48.1069352467 ], [ -123.4439905727, 48.1073916924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1761180844, 47.3631667878 ], [ -122.1654405965, 47.3580279441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.3088719536 ], [ -124.0487521206, 46.3101897606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119901397, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3933590552, 47.3223798088 ], [ -122.3924369341, 47.3216137304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3207059196, 47.4808771816 ], [ -120.3133639391, 47.4952529972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.5070572661, 46.9588101485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854064267, 47.9516809103 ], [ -124.3854508575, 47.9541150576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526401143, 45.7079886815 ], [ -122.552276004, 45.7299131095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7340738301, 48.6404765011 ], [ -118.7302441008, 48.641839496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4722108146, 47.2351167316 ], [ -122.482796616, 47.2349767545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9726938016, 46.7033062755 ], [ -122.9761197664, 46.7176133986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6260927168, 47.3890549862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6268938205, 46.9614926076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0634672167, 47.6491812786 ], [ -120.0621815719, 47.6491753159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.6738932335 ], [ -122.118861794, 47.6731312949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2740595055, 47.6747650499 ], [ -117.2564882876, 47.6744377468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2120593513, 47.7984747561 ], [ -122.2108693497, 47.8004619779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0769824862, 46.9108621348 ], [ -117.0799320523, 46.9114350689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6997242328, 47.5273550716 ], [ -122.6974328926, 47.5290055297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.3075520766 ], [ -119.5605106245, 47.308418187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6974328926, 47.5290055297 ], [ -122.6759314616, 47.5414115006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6684791314, 48.0046240362 ], [ -119.6765472999, 48.0110069203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.3616303229 ], [ -122.3012698346, 47.3733093484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0867809993, 47.0992170671 ], [ -123.0824021199, 47.0918214053 ], [ -123.0718667587, 47.0910580253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6756358928, 47.096990195 ], [ -118.6564062372, 47.0966738492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3059533997, 47.6666196591 ], [ -117.2905265819, 47.6724838661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9462399136, 47.1968530327 ], [ -120.9809250496, 47.2078375727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.6943145242 ], [ -122.3295502762, 47.7047809866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.8125064907 ], [ -117.5783351988, 47.8151367824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7706871351, 48.109957957 ], [ -122.7693087634, 48.1100024605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.1073463507 ], [ -121.5851623994, 47.0923339805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9094874642, 47.0217506114 ], [ -122.9056444809, 47.0217112789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5835757391, 48.3616001759 ], [ -119.5813873763, 48.3633416819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1413008619, 47.4050125018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7808845315, 48.0899344903 ], [ -119.7809433235, 48.1019970336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2751954315, 46.5570314235 ], [ -122.2752434827, 46.5583246063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8123515795, 46.9758626922 ], [ -123.8089625952, 46.9762253006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6624695676, 47.5269884954 ], [ -122.6824612226, 47.5278472097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6306952505, 47.5117651765 ], [ -120.6179840298, 47.5420496525 ], [ -120.6040808647, 47.5533601555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3997578511, 45.5841944043 ], [ -122.3985480747, 45.5841573262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586860494, 46.8548429235 ], [ -122.8482332243, 46.8586162126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.3150765031 ], [ -120.0677060263, 47.3008399269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860125357, 48.8005515797 ], [ -122.4860492264, 48.8043084991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6498450788, 47.5081639767 ], [ -122.6624695676, 47.5269884954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6399785669, 47.7561660923 ], [ -122.6261548579, 47.7579682585 ], [ -122.6124487235, 47.7661835383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4302739529, 48.7826189223 ], [ -122.4251466525, 48.7865571974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9783785412, 46.3052986594 ], [ -119.9785905771, 46.3125656122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.8318583594 ], [ -119.9823239969, 47.8274002482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4345227013, 47.2433241411 ], [ -122.4352497488, 47.247047007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.0858231048, 46.1966150682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2279364121, 46.2727922262 ], [ -119.2095736808, 46.2738751293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3135246441, 47.2896891115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349820374, 48.3411737625 ], [ -122.3335812302, 48.341165856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2072319883, 47.8094477645 ], [ -122.2010578056, 47.8100663059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4042122878, 46.6342410524 ], [ -121.3526072751, 46.656816854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9527847195, 46.5056599317 ], [ -121.9535543166, 46.5073208118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6166058605, 46.5023813913 ], [ -119.4960911537, 46.4454935227 ], [ -119.4508754515, 46.408809451 ], [ -119.4365304918, 46.3912099912 ], [ -119.4226493275, 46.383209281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3438028842, 47.6246441895 ], [ -122.3449275043, 47.6170721864 ], [ -122.3364121007, 47.6028461051 ], [ -122.3366560906, 47.5916921726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6391820613, 47.7464774496 ], [ -122.6456845104, 47.7518428642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311588032, 47.5832738305 ], [ -122.6298307615, 47.5875749972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063755906, 48.0032207303 ], [ -122.1069288247, 48.0063280675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8714816681, 46.6542060226 ], [ -118.8614321809, 46.652330978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.8459444194 ], [ -120.3719971108, 46.837063334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4399901193, 47.1039813699 ], [ -119.3554512716, 47.1039652908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398112843, 47.6571200997 ], [ -117.2397947306, 47.6583760906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9223395487, 47.0316557254 ], [ -123.92729038, 47.0572059596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.0184137758, 47.5633683425 ], [ -123.0326396214, 47.5528390438 ], [ -123.0434763305, 47.5508843024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770752412, 45.6327721391 ], [ -122.6833369779, 45.6328269221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2128688346, 47.8047418564 ], [ -117.2151570287, 47.8163391381 ], [ -117.2093060077, 47.8264252345 ], [ -117.202021796, 47.8299990291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8820241615, 47.968795396 ], [ -122.8828899247, 47.9544833493 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7173359337, 46.5756310576 ], [ -122.7046470526, 46.5756017902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3146309013, 48.3944502706 ], [ -117.3047886437, 48.3742846879 ], [ -117.3044608349, 48.3394634583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1285221878, 48.1877057823 ], [ -122.1294755917, 48.1987611119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1992457496, 47.9616091692 ], [ -122.1976360012, 47.9682783923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9750135429, 45.6406654273 ], [ -121.9427830991, 45.6519065923 ], [ -121.9293820456, 45.6481653356 ], [ -121.9186778089, 45.6533510839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6889327532, 47.3381121478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3774493287, 46.1875902746 ], [ -123.3857452066, 46.1923877924 ], [ -123.3830261382, 46.2040132418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.6721730664 ], [ -122.5018408354, 45.6721275722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1800952459, 46.7289180943 ], [ -117.1781385805, 46.7289018557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3548548851, 47.3236743586 ], [ -122.3473241981, 47.3305148272 ], [ -122.332027696, 47.3318236437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7438998103, 45.6694309117 ], [ -122.757700882, 45.6667941909 ], [ -122.7613328587, 45.6812652178 ], [ -122.7620622456, 45.6936966786 ], [ -122.7542852587, 45.7237947042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9793695341, 48.1656172167 ], [ -118.9854808281, 48.1713371337 ], [ -118.9892362024, 48.1913503797 ], [ -119.0154620195, 48.2099485026 ], [ -119.0346314742, 48.2143557736 ], [ -119.0414640789, 48.2225825553 ], [ -119.0821942308, 48.2357612309 ], [ -119.1250519203, 48.2387808307 ], [ -119.1361957578, 48.2445156021 ], [ -119.1441751598, 48.2720805565 ], [ -119.1341101995, 48.3012910934 ], [ -119.1526832951, 48.3146161547 ], [ -119.1529967173, 48.3254735625 ], [ -119.1585253129, 48.3325449322 ], [ -119.1751984327, 48.3392715776 ], [ -119.198188019, 48.3557743229 ], [ -119.235022948, 48.3647323247 ], [ -119.3957608493, 48.3747968182 ], [ -119.4406634454, 48.3884548136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1928315035, 48.4779351239 ], [ -120.1900642724, 48.4775740271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3472122709, 47.8244633117 ], [ -117.3538626087, 47.8381496765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1171685745, 47.1658351362 ], [ -122.1144319865, 47.165563315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6629212073, 47.5817195825 ], [ -117.6112069286, 47.5946127869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5307884494, 47.2588581959 ], [ -122.5427971587, 47.2623098139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9384879591, 47.6412968212 ], [ -122.9461661794, 47.6306520624 ], [ -122.9594204625, 47.6280408601 ], [ -122.9572422363, 47.6249005791 ], [ -122.9810519598, 47.6160578938 ], [ -122.9862005621, 47.609617512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2849614715, 47.889952125 ], [ -122.2913576024, 47.8992527084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940460846, 47.7553536407 ], [ -122.1913304565, 47.7557202808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1615500081, 47.3579926973 ], [ -122.1407097927, 47.3580025547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842126941, 47.7093339084 ], [ -121.9862032678, 47.7229006915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6200459422, 46.3718240773 ], [ -122.6135193095, 46.3732221214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7026610905, 45.8155477016 ], [ -122.6904808118, 45.8157027044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0124274602, 47.0563166427 ], [ -123.0095625837, 47.0558186162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3324665654, 45.9393404761 ], [ -119.3287580518, 45.9316181166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.5732225177 ], [ -118.9566975233, 46.5929642283 ], [ -118.9274458263, 46.6018334943 ], [ -118.856430317, 46.646165675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5460838145, 46.6830305932 ], [ -121.5156698827, 46.6719110445 ], [ -121.4883598873, 46.6693033481 ], [ -121.4496767451, 46.6361915585 ], [ -121.4443639435, 46.6247082632 ], [ -121.4042122878, 46.6342410524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1938148872, 47.2533046274 ], [ -121.1832082778, 47.2443206311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1112802946, 47.0325956026 ], [ -123.0967671874, 47.0341238279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218771342, 46.2762832574 ], [ -122.9073058758, 46.275376903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9992119183, 46.2864963221 ], [ -119.9990847026, 46.3019803085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2214808618, 47.4035987998 ], [ -122.2202025787, 47.4072374973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9904268316, 48.0866632894 ], [ -121.9801847421, 48.0911670151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1457654709, 47.2521210376 ], [ -123.1320219502, 47.2363423355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3038957285, 46.7578975125 ], [ -118.226642999, 46.7417055801 ], [ -118.2054032125, 46.7447486856 ], [ -118.1732608373, 46.756869523 ], [ -118.1532014075, 46.7691930635 ], [ -118.1296213053, 46.7680723413 ], [ -118.0927817262, 46.7803397001 ], [ -118.0482580436, 46.7753326706 ], [ -118.0239734671, 46.7645457326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3616814048, 47.0290559539 ], [ -117.3802689604, 47.0508567122 ], [ -117.3831396249, 47.0764132167 ], [ -117.378854292, 47.0964231841 ], [ -117.3800291539, 47.1741955658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2227369424, 47.6269803184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3777122398, 46.153926303 ], [ -123.3770778203, 46.155161435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8853526517, 45.6928459455 ], [ -121.8772638059, 45.6967885603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455743548, 46.418180045 ], [ -117.045583721, 46.4199358176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860962019, 48.7836284125 ], [ -122.4860786255, 48.7843780074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.3702712669 ], [ -120.3149587825, 46.3677298266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021936567, 46.1479617048 ], [ -119.2023511627, 46.1347113914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891848021, 48.4355524149 ], [ -122.2671353579, 48.4299276122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2546724797, 47.2425035856 ], [ -122.2559001868, 47.2460061029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5759657586, 47.4868903381 ], [ -117.5754010062, 47.4873552206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0786692359, 46.6270297677 ], [ -123.0644490268, 46.6269757944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9961129273, 46.1618451049 ], [ -122.9876095018, 46.1576443082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8977278871, 47.1804239536 ], [ -120.8726143169, 47.1638584395 ], [ -120.8239451755, 47.1552275616 ], [ -120.7990004612, 47.1178706255 ], [ -120.7830173029, 47.1120217119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6247422202, 48.5816115228 ], [ -120.6012081348, 48.5966187591 ], [ -120.5895452075, 48.5986625905 ], [ -120.5331599851, 48.5993765517 ], [ -120.511770525, 48.5910610484 ], [ -120.4841673108, 48.5868442115 ], [ -120.4550821729, 48.5962101881 ], [ -120.4360496304, 48.597849873 ], [ -120.3929476235, 48.5798058288 ], [ -120.3665628256, 48.5612770736 ], [ -120.3389607734, 48.5486028042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157406775, 47.2908042195 ], [ -122.5156731861, 47.2981065252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.2938084119, 46.3141920165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2845754339, 48.2812765736 ], [ -117.2839019256, 48.3051822196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0677994513, 46.9127572907 ], [ -117.0547386882, 46.9253808035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.2246779017 ], [ -122.1587937139, 48.2389534668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6041932764, 46.4748995993 ], [ -117.5915790813, 46.4740027276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.179623886, 46.7323956011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2181964942, 46.8141634951 ], [ -119.2078614274, 46.8115731743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3916711004, 47.6542957701 ], [ -117.3949918933, 47.6575846328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343129277, 46.818765882 ], [ -119.1333443494, 46.8263220149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2095736808, 46.2738751293 ], [ -119.1895052521, 46.2676902573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8143955605, 46.9760348973 ], [ -123.8155189414, 46.9754642319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.2663296776, 47.4869149652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8025700515, 46.9620278945 ], [ -123.8023983763, 46.9678877123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.538034814, 47.9138188412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.5629051119 ], [ -122.2857890361, 46.5613718886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4155325399, 47.4269333661 ], [ -121.4158570632, 47.425849765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5479047169, 47.1238498878 ], [ -122.5362836535, 47.1307921694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6367704982, 48.0627193371 ], [ -117.6217227567, 48.0596769549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2002742877, 47.4803239853 ], [ -122.1922736805, 47.4901260728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3137091087, 47.7773380757 ], [ -122.3091430991, 47.7743773963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3357219408, 48.4717196536 ], [ -122.3356088428, 48.4755713741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0215352259, 46.3175795065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5063250059, 45.6848578255 ], [ -122.5059632705, 45.6819748617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1377253327, 46.2707786892 ], [ -118.1238524112, 46.2737500843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5056679509, 46.8329591528 ], [ -117.4900970503, 46.8410354631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.1554309896 ], [ -122.4342002903, 47.1593449432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9507202106, 48.050275 ], [ -122.9489928608, 48.0502722096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0126506285, 46.2084245812 ], [ -119.0078943102, 46.2117237268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6727169645, 48.1593548477 ], [ -122.672541743, 48.1597721166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.6021302692 ], [ -122.9111972398, 46.6100100981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.8026940324 ], [ -123.0066964764, 46.8028020636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854225052, 47.9505814332 ], [ -124.3854064267, 47.9516809103 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2943489103, 47.4098769599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.8116079214 ], [ -119.63597552, 47.8120676338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3168183585, 46.3257612363 ], [ -119.302112785, 46.3183716498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5021999805, 48.71608606 ], [ -122.502234449, 48.7176604348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0261661571, 46.1622220249 ], [ -123.0182415473, 46.1554301629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3522945196, 47.9747750631 ], [ -122.3555721402, 47.978279434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957696028, 47.7261247472 ], [ -117.5075451443, 47.7371619655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828043572, 47.4234223225 ], [ -122.2747094226, 47.4287124851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6672617257, 45.779820175 ], [ -122.6617016336, 45.7795054863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.2035861347, 47.4751805773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2420963329, 46.1031326564 ], [ -118.2049176459, 46.123542948 ], [ -118.1579964315, 46.1391116684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9550744316, 46.6440853642 ], [ -122.9670970658, 46.649895724 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8960512885, 46.9809985306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.7483083341 ], [ -120.7718342941, 46.7474467101 ], [ -120.7239880846, 46.7348744488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2437055114, 48.507550046 ], [ -122.2414121493, 48.5104075699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2456895186, 48.2439992336 ], [ -122.2649177077, 48.2647143139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3610242433, 47.7115372115 ], [ -121.3542348939, 47.711904269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564578154, 46.074867789 ], [ -118.3564482172, 46.0758820358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7842634529, 47.6121559913 ], [ -118.763698451, 47.6124988865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8439980452, 46.0036486101 ], [ -122.852240996, 46.0234388073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6851289986, 47.5272359279 ], [ -122.6952180995, 47.5247783015 ], [ -122.6997242328, 47.5273550716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3148725381, 47.8211912078 ], [ -122.3121013887, 47.8211831696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3602316649, 47.1201988782 ], [ -118.3033025513, 47.1598935483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9716314101, 46.2117605619 ], [ -118.9100284707, 46.215109501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8221883958, 47.0469869506 ], [ -122.8133324553, 47.0524920951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0182415473, 46.1554301629 ], [ -123.0036157589, 46.14714661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1983417337, 47.7602672279 ], [ -120.1748375091, 47.7679692019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1653460578, 47.754516793 ], [ -122.1699835707, 47.7530524149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1786722275, 48.0518497151 ], [ -122.1770255475, 48.0518456949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0047956327, 46.1661237024 ], [ -123.0003727518, 46.1639381329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.7176604348 ], [ -122.4999178784, 48.7176529255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5070572661, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.4959893931, 46.9237521292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.3232041563, 47.5929897168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.6824319974 ], [ -122.3154029102, 47.6847104504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.1878232468 ], [ -122.2014846937, 48.1878947696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6861862014, 47.8907180121 ], [ -117.6975572419, 47.8844035353 ], [ -117.7022161214, 47.8768022172 ], [ -117.7066202358, 47.879310378 ], [ -117.7063360951, 47.8688643657 ], [ -117.7119483787, 47.8632977854 ], [ -117.7145821243, 47.8520405468 ], [ -117.74506215, 47.8401106032 ], [ -117.760735503, 47.8384094476 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0523540333, 47.8358056633 ], [ -120.0272288264, 47.8361946595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525698301, 45.6820848992 ], [ -122.5525729281, 45.6855805745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.5818960485 ], [ -122.8936094988, 46.5891345777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0208342666, 47.0780579889 ], [ -123.0127415099, 47.0564079291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.263463248, 49.0000254737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7562347833, 48.0595083721 ], [ -117.7619942648, 48.0632663696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0754032266, 48.6062200924 ], [ -118.1012651236, 48.6145465613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.9797708505, 46.6600221281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2073503784, 48.1930549968 ], [ -122.2143482637, 48.2063281505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4413167587, 48.7028924991 ], [ -119.440005912, 48.7023795423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.0005739703 ], [ -122.484170717, 49.0022047393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.7299131095 ], [ -122.5476135901, 45.7518906262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1878139945, 47.6319385932 ], [ -122.1863875328, 47.6405133468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.9880445401 ], [ -122.9090833449, 47.005153403 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5816054123, 45.655987363 ], [ -122.5649359725, 45.6591474533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9079204529, 46.9326825401 ], [ -122.9078901312, 46.9418030245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2103459096, 48.1692167689 ], [ -124.2149004639, 48.1767680441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872101016, 47.5612869027 ], [ -122.1839184276, 47.5658400246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3036135383, 47.6515712549 ], [ -122.3008871177, 47.6593020345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3405862296, 47.4683902338 ], [ -120.3385227247, 47.4670473491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044515804, 47.551027418 ], [ -117.7040622718, 47.5520049051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.7708341637 ], [ -122.3462274907, 47.7777955542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5728475744, 47.3013604296 ], [ -122.5813429939, 47.3109726485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7456908937, 46.2158646763 ], [ -119.7350013936, 46.2109623873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9127332439, 48.045239571 ], [ -119.9336567593, 48.052435164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2737587614, 47.465095805 ], [ -122.2651299683, 47.4614024105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1251815178, 48.2002933787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8887436919, 48.2715237891 ], [ -121.8794090981, 48.2691129164 ], [ -121.8393410726, 48.2773006503 ], [ -121.7712088124, 48.2788001675 ], [ -121.7475431859, 48.2765709941 ], [ -121.7257388719, 48.26881907 ], [ -121.7065027719, 48.2686887461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5065371663, 45.7819263952 ], [ -121.4854380467, 45.7986174954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.8212139394 ], [ -122.3148725381, 47.8211912078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6868873255, 47.1525952933 ], [ -118.6848539763, 47.1673793172 ], [ -118.6915299321, 47.1733521134 ], [ -118.6870124756, 47.1851546319 ], [ -118.6859186821, 47.2602317232 ], [ -118.6913794976, 47.2616081181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9743825684, 46.7068491655 ], [ -122.9732816215, 46.70702645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4775864514, 47.7155036924 ], [ -117.4828080327, 47.7179633653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7265829537, 46.6211619976 ], [ -119.7275110118, 46.6340824621 ], [ -119.7360584616, 46.6468473933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923848001, 47.661192848 ], [ -122.2869879295, 47.6614633424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2399893883, 46.8414422249 ], [ -123.2289306877, 46.8407885562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969627885, 47.4415056535 ], [ -122.1969253171, 47.4452667572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9228006992, 46.1347958394 ], [ -122.9199492819, 46.1384787271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5129709245, 47.6238643156 ], [ -122.51414874, 47.6248548642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.7081930584 ], [ -117.2536978763, 46.7208346039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9043342814, 48.5465658408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5036732886, 47.8027461252 ], [ -122.4989034271, 47.8005733284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564762608, 46.0687349432 ], [ -118.3606111002, 46.0686802253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.8553269485, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2036492399, 47.8781466533 ], [ -122.1696161125, 47.8778286457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1720418434, 47.3177075499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.1059122858 ], [ -122.1872965039, 48.1444384712 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6208329268, 47.3728531728 ], [ -122.6188217045, 47.371309362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2682387314, 47.1364387388 ], [ -119.262380566, 47.1396746477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103992419, 46.147036878 ], [ -122.9085060615, 46.1467022322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4259416139, 47.9626411024 ], [ -124.4403885401, 47.9637407852 ], [ -124.4509429615, 47.9548776677 ], [ -124.4606869786, 47.9524141752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2924574784, 47.4062158074 ], [ -120.2883400594, 47.3993847963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4432829491, 45.5785312538 ], [ -122.4356102101, 45.5801631372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3226285715, 47.6386200098 ], [ -122.3224579886, 47.646211059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4942417879, 46.2795434721 ], [ -119.4935889943, 46.301316915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6774926459, 48.0103631519 ], [ -119.6802674022, 48.0089902272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7228989931, 47.4670798095 ], [ -121.7096706618, 47.4632751617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2226311076, 46.7258475583 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.7413459926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.4199358176 ], [ -117.0442946621, 46.4199328277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2012702922, 47.4487938305 ], [ -122.2070364986, 47.4594077387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1846880578, 48.0816069517 ], [ -122.1847277876, 48.0959977763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0632060501, 47.5412525635 ], [ -122.0627483977, 47.5457057767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5256803341, 48.4105086385 ], [ -119.5284865191, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.8890619205, 47.1756198843 ], [ -123.9182389975, 47.1855844879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176943396, 45.6411075661 ], [ -122.3987238562, 45.6383313319 ], [ -122.3986727941, 45.6242774567 ], [ -122.403423195, 45.6233802439 ], [ -122.4043216331, 45.615225457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1000196081, 45.8249268805 ], [ -121.0976103078, 45.8260671911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1061717246, 48.2554318205 ], [ -120.0842561584, 48.2705971119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156731861, 47.2981065252 ], [ -122.5156562553, 47.2992775357 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4421071548, 48.7019949179 ], [ -119.4410919266, 48.7031509182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7154506529, 48.2699984918 ], [ -117.7155190209, 48.2762460851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3959492409, 46.4169433277 ], [ -120.4287975969, 46.4412917927 ], [ -120.4311662019, 46.4575378002 ], [ -120.4694374549, 46.5065542918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6551873979, 47.7579966203 ], [ -122.6566045869, 47.7584154673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0813867451, 46.6270365528 ], [ -123.0786692359, 46.6270297677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8309651195, 47.8579919705 ], [ -121.8165310712, 47.861761082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.0844287634 ], [ -119.7808845315, 48.0899344903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3502009691, 48.5531647768 ], [ -122.3476324959, 48.5639822624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1736598311, 47.7883685846 ], [ -118.1739846457, 47.8032868437 ], [ -118.1835057815, 47.8219514158 ], [ -118.2018883606, 47.8250490347 ], [ -118.2117772806, 47.8341073865 ], [ -118.2155107555, 47.8597323298 ], [ -118.26205996, 47.8659297604 ], [ -118.2670575361, 47.8760419568 ], [ -118.2644176885, 47.886536003 ], [ -118.2735123185, 47.8953985288 ], [ -118.2764458192, 47.9099818571 ], [ -118.3022156948, 47.9032411497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9707179801, 47.8103117805 ], [ -119.9747908435, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3052799217, 47.1087851264 ], [ -119.3035133121, 47.1100072069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783351988, 47.8151367824 ], [ -117.5973616913, 47.8288659688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8814721275, 47.0869161419 ], [ -118.8637575163, 47.0867688468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6069922762, 48.3197133157 ], [ -119.6017185779, 48.3403277867 ], [ -119.5953819331, 48.34623453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.1071331596 ], [ -123.40157192, 48.1066836471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9017000705, 46.2852760142 ], [ -122.900982517, 46.2858307257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3584633908, 47.2145021441 ], [ -117.3533823933, 47.2237692463 ], [ -117.3626242176, 47.2400995255 ], [ -117.3610664207, 47.2534566306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3327432015, 47.408543256 ], [ -122.3352626539, 47.4160570962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2292841665, 47.1772685985 ], [ -122.2295427682, 47.1570738062 ], [ -122.2329885436, 47.1517472612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975325983, 47.4333562129 ], [ -120.2977336595, 47.4242381539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9555240563, 46.7165039902 ], [ -122.9559416042, 46.7155463073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.6592960376, 47.4422385912 ], [ -121.6260861992, 47.428820891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.07298877, 48.0304443672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576841858, 47.6460001316 ], [ -118.1576753991, 47.6531948538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113132819, 47.7151012213 ], [ -117.4127242746, 47.7151457037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.0022066171 ], [ -122.48508877, 49.0005739703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3022156948, 47.9032411497 ], [ -118.3095884413, 47.9083492944 ], [ -118.3318773139, 47.9059107248 ], [ -118.3362657699, 47.9100541107 ], [ -118.3214853554, 47.9295013757 ], [ -118.3161620627, 47.9460652358 ], [ -118.295303866, 47.9811201405 ], [ -118.2863301117, 47.9929868084 ], [ -118.2668970833, 48.0067931754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.9175984132 ], [ -122.7261530122, 48.9551626572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2682351433, 46.4011783488 ], [ -120.2470329935, 46.3943389424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.3943389424 ], [ -120.2341478641, 46.3874544653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891754017, 48.1552836007 ], [ -122.2891839532, 48.1557176379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5010531946, 47.5121479033 ], [ -122.4973049137, 47.5119962431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.7098400514 ], [ -118.925005797, 47.7108243237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6471818385, 47.6429287965 ], [ -117.6441483202, 47.6429238878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2824397667, 47.8189715088 ], [ -122.2622221319, 47.8312276667 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.4736376931, 48.7183214397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9761773375, 46.0002961924 ], [ -118.9326857937, 46.0274987811 ], [ -118.9404675059, 46.0421843021 ], [ -118.9362682108, 46.051675932 ], [ -118.9281091224, 46.0567461789 ], [ -118.9122848657, 46.0569707003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9266228383, 46.1230578452 ], [ -122.9247009245, 46.1221385232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829331211, 47.9885511027 ], [ -122.1739059983, 47.999571344 ], [ -122.1814065807, 48.04479845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239010868, 47.4397926017 ], [ -122.3228061274, 47.4391963694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2622221319, 47.8312276667 ], [ -122.2598462586, 47.83972786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7864369592, 48.651103998 ], [ -118.7770276759, 48.649473503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6597780517, 47.3328929749 ], [ -118.6064394101, 47.3438463019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.1680072039, 47.7574084421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4721515928, 46.9484503801 ], [ -119.4749052078, 46.9528591823 ], [ -119.4607123542, 46.9566297084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3437891671, 48.8073210548 ], [ -122.3325641688, 48.8145942815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3977887884, 47.0531477811 ], [ -122.4005142886, 47.0558581985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7306682808, 48.0861363728 ], [ -123.7093296363, 48.0846676243 ], [ -123.7009703045, 48.0785930438 ], [ -123.6786220988, 48.073901581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3241654589, 47.7296158195 ], [ -122.3288644625, 47.741140359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2941276522, 47.4130153494 ], [ -120.2929566067, 47.408097835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3542348939, 47.711904269 ], [ -121.3352211475, 47.7132173725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5899202161, 47.4791586755 ], [ -117.5832793235, 47.4818861833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220553649, 48.3133080082 ], [ -122.3344939127, 48.3373547839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302441008, 48.641839496 ], [ -118.7300552535, 48.6419111855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1183933229, 47.358083689 ], [ -122.1091619452, 47.3580988636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1760994752, 47.580180733 ], [ -122.1698418075, 47.5801249842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237320393, 47.533996747 ], [ -122.6115664545, 47.5340329479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.6656995892 ], [ -122.0986125857, 47.6645874444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8320237301, 47.2340352 ], [ -119.8107624661, 47.2341040289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5793216715, 47.1078928315 ], [ -122.5623879036, 47.1153885874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2180791238, 47.8520936404 ], [ -122.2163760183, 47.8727847101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9195012753, 46.6405634658 ], [ -123.921074264, 46.6714807055 ], [ -123.9175764369, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.8848656803, 46.6854928239 ], [ -123.8753762267, 46.68435008 ], [ -123.8577283824, 46.6939486439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501498005, 46.2873666617 ], [ -117.0395127862, 46.3149805998 ], [ -117.0421390618, 46.3267145152 ], [ -117.0484351291, 46.3174465631 ], [ -117.0560803608, 46.3250305409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5989270885, 47.5553611869 ], [ -120.5927019605, 47.5589757239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6270510219, 46.735547573 ], [ -119.6011440864, 46.7379133851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2517852789, 47.1061646856 ], [ -119.2566876381, 47.112363657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0767280097, 46.2265908318 ], [ -119.0795201794, 46.2322979284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3301905624, 47.6128797259 ], [ -122.329134167, 47.615596198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2277030428, 47.6241332137 ], [ -120.2219122891, 47.6270557243 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.7760746279 ], [ -122.4832840697, 48.7824744802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147539076, 46.1502452965 ], [ -122.9157314952, 46.1667895778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.0518594289 ], [ -122.1836148532, 48.0518643974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3118431702, 47.1567249837 ], [ -119.3235519617, 47.1618045752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4203948955, 46.9081166471 ], [ -121.4074499246, 46.9139103029 ], [ -121.3738765638, 46.9171172093 ], [ -121.3590945902, 46.9323858894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9052657624, 45.6630172635 ], [ -121.9096745256, 45.6749940647 ], [ -121.9015325687, 45.6823424191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.7983597125 ], [ -123.0025596088, 46.8100089469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6225935687, 47.4383788471 ], [ -122.6237970067, 47.4635938226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1086623321, 48.0731296075 ], [ -123.0929136587, 48.0727563835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1956583824, 47.5351014559 ], [ -122.1926629037, 47.5532945477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3355650196, 48.4778597679 ], [ -122.322498894, 48.4777584669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3009682136, 47.4657531835 ], [ -122.2814936102, 47.4639104191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6686114771, 47.6429513017 ], [ -117.6471818385, 47.6429287965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2565858958, 46.1882981658 ], [ -119.2336452151, 46.1773089437 ], [ -119.2075559409, 46.1709700044 ], [ -119.2024028139, 46.1646696372 ], [ -119.2021438178, 46.1517167071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6592835463, 48.69353696 ], [ -118.6540124627, 48.7299295462 ], [ -118.6607397326, 48.7395905415 ], [ -118.6474199782, 48.7574573152 ], [ -118.6471151083, 48.7653809106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4877195547, 46.7310206754 ], [ -117.4828769965, 46.7374678823 ], [ -117.4606604412, 46.7478475633 ], [ -117.4529845524, 46.7578502771 ], [ -117.3966878381, 46.7692818303 ], [ -117.3754489745, 46.7524284104 ], [ -117.364269794, 46.7482639317 ], [ -117.3576285651, 46.7370046508 ], [ -117.3411179936, 46.7369182867 ], [ -117.3330136617, 46.7429594848 ], [ -117.3176622842, 46.7318138607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6671028849, 48.208880163 ], [ -122.6861432864, 48.2123143699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1822932343, 48.0518738744 ], [ -122.1786722275, 48.0518497151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588003107, 46.2077511977 ], [ -119.1587898641, 46.2094963127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0824824346, 46.2383223812 ], [ -119.083420541, 46.2402395389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3044461333, 47.9446172164 ], [ -122.3040566842, 47.947165397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478646508, 46.4428982556 ], [ -122.8478874183, 46.4418799904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.2123094716 ], [ -122.7059141852, 48.2122640442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4379008219, 47.7154498354 ], [ -117.4568888894, 47.7154157955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442962662, 48.4167133772 ], [ -122.620384397, 48.4202646652 ], [ -122.6082425787, 48.4287878768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.6729939622 ], [ -117.2395409867, 47.6757907672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2952486802, 47.4309838514 ], [ -122.2954198113, 47.4345568351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7878727232, 47.0597313969 ], [ -122.7541782353, 47.0644445369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963449954, 47.0166678167 ], [ -122.2955397516, 47.040162607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869038184, 47.6636304786 ], [ -122.1862142566, 47.6722701693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4413239323, 48.96428992 ], [ -122.407449955, 48.9640230526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5981693413, 48.116751797 ], [ -123.5712528402, 48.1146712556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6298307615, 47.5875749972 ], [ -122.6295353398, 47.5924775695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4040031937, 47.6521238544 ], [ -117.3993131644, 47.6520356027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2487949553, 47.4322754113 ], [ -122.2455886366, 47.4412210855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.7159651259 ], [ -122.5021999805, 48.71608606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4807360568, 46.6775327893 ], [ -120.4821709855, 46.6784018527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3962982687, 45.5785567586 ], [ -122.3924335271, 45.5795236375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4851566888, 48.9933456178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9685280902, 46.3037202391 ], [ -119.9283205921, 46.2720687974 ], [ -119.9106353482, 46.2675619431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8209479482, 45.9765215085 ], [ -122.8303255251, 45.9865466391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8030737493, 46.9773424769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0892586477, 46.5431821646 ], [ -117.0929578437, 46.5461114405 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9030142887, 48.4912950401 ], [ -117.9000321633, 48.514822412 ], [ -117.9050816787, 48.5343812278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0350161303, 47.253938049 ], [ -123.0051653665, 47.2658148473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067256114, 48.3642645921 ], [ -122.2133672387, 48.3723792401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4629980998, 45.7135052501 ], [ -121.4598946117, 45.7123396511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2943489103, 47.4098769599 ], [ -120.2980615002, 47.4097420223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598568622, 47.5046576599 ], [ -122.1565310736, 47.5057272643 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2912512618, 48.0954124931 ], [ -123.2099835359, 48.0853786216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0848828452, 46.3284729616 ], [ -120.0687629907, 46.3226150928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8705301943, 47.7320770346 ], [ -117.8747890388, 47.7387575067 ], [ -117.8833228393, 47.7409083111 ], [ -117.8904928702, 47.7562433053 ], [ -117.8937348179, 47.7731562335 ], [ -117.8885889763, 47.7791596603 ], [ -117.8899260404, 47.7887506445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.0732144226 ], [ -119.8060994957, 48.0932061459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.7170064104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.5674428282 ], [ -120.6020684242, 47.564209197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966058497, 47.1747523811 ], [ -123.0957237818, 47.1572988202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0202766541, 47.3583922895 ], [ -122.0209265407, 47.3613941171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1179298675, 46.9846708775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.6427340926 ], [ -118.1576841858, 47.6460001316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.41331834, 47.6599920959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1854211418, 48.4778068438 ], [ -120.1781092963, 48.4725882896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351942988, 47.7341436296 ], [ -122.3343328973, 47.7341445146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2514945992, 46.6301019034 ], [ -123.1801433805, 46.6342000658 ], [ -123.1684652608, 46.6306801314 ], [ -123.1744197292, 46.6133083665 ], [ -123.1581776639, 46.5974973747 ], [ -123.1287547466, 46.6004969457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2183218859, 48.2166037115 ], [ -122.2374372336, 48.2352708759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0715404689, 46.1959222812 ], [ -117.069636538, 46.2278518737 ], [ -117.0596360072, 46.2294936931 ], [ -117.0595040673, 46.2749822247 ], [ -117.0501498005, 46.2873666617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6380141443, 48.3112290202 ], [ -122.6295211986, 48.3202909794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3605429103, 47.3207278571 ], [ -122.356089198, 47.3225056037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4834194345, 47.6349163355 ], [ -117.4797001096, 47.6332845094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3099371955, 47.3075733984 ], [ -121.3016866652, 47.3019511926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281613908, 47.6226631987 ], [ -120.2281213808, 47.6241276789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.0768951726, 46.9105822359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108409752, 48.6851321517 ], [ -117.4053808879, 48.6851320533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1936544175, 46.7645544522 ], [ -122.1942019738, 46.765336616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2914374281, 47.9220287545 ], [ -122.2878185998, 47.9245144886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764946499, 46.7820725916 ], [ -119.1764136146, 46.7968582865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5264716482, 45.9932175677 ], [ -122.5417332574, 45.9878702719 ], [ -122.5419737599, 45.9758418071 ], [ -122.5529555129, 45.9643382543 ], [ -122.5628644515, 45.9583082261 ], [ -122.575637757, 45.9577400504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2296735711, 48.3852564968 ], [ -122.2379325105, 48.3993275149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5942345354, 47.3816799159 ], [ -120.6127201842, 47.3953748749 ], [ -120.6432823873, 47.3933824989 ], [ -120.6561236285, 47.4026118042 ], [ -120.6594863695, 47.4174344817 ], [ -120.6560779809, 47.4316964265 ], [ -120.6625922847, 47.4410037523 ], [ -120.6536874982, 47.450987204 ], [ -120.6605838276, 47.4614951171 ], [ -120.6556188415, 47.4745007676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7640925019, 47.3690425701 ], [ -122.7584799402, 47.3744092288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.2982624881, 47.2176069027 ], [ -122.2940086764, 47.2249092263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.0512475527 ], [ -122.6907759825, 48.0567497671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3341920495, 47.5902797808 ], [ -122.3356442883, 47.5965279925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.1177226749 ], [ -119.8535293221, 47.1191977539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8913479904, 46.0543459185 ], [ -118.8674748422, 46.0534348511 ], [ -118.8396224202, 46.0652521005 ], [ -118.7880122841, 46.072450643 ], [ -118.7111374641, 46.0531567281 ], [ -118.6849142545, 46.0415021587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2920536467, 47.4006698004 ], [ -122.2893783047, 47.416887971 ], [ -122.2828043572, 47.4234223225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3538671999, 46.0696978456 ], [ -118.3405498465, 46.0739014753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1926629037, 47.5532945477 ], [ -122.1872101016, 47.5612869027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9992299624, 47.8523397018 ], [ -121.9893266233, 47.8585504619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8539819045, 46.9760751104 ], [ -123.8793107352, 46.9778455486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8804463364, 47.3319204562 ], [ -122.8514198777, 47.3498457097 ], [ -122.8364747547, 47.374286003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1407097927, 47.3580025547 ], [ -122.1390119706, 47.3580153681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118923903, 46.626211773 ], [ -120.5261373787, 46.6365454184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2995385636, 47.7120544754 ], [ -122.2923996871, 47.7318031538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282935394, 46.5780534778 ], [ -119.7274029528, 46.6018834593 ], [ -119.7367554772, 46.6080827525 ], [ -119.7270556249, 46.6125948511 ], [ -119.7265829537, 46.6211619976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.3133077561, 47.3151824274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.6649346237 ], [ -123.7946033875, 46.6644384378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472570211, 47.6739649907 ], [ -122.3444365005, 47.6869595926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7239880846, 46.7348744488 ], [ -120.7002079559, 46.7282037986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9281707668, 47.0261889833 ], [ -122.9134448464, 47.0253389513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2227951042, 45.7429753339 ], [ -120.1980379335, 45.7506530042 ], [ -120.1858099878, 45.7626742717 ], [ -120.1496144498, 45.7796028041 ], [ -120.0728889721, 45.7937322728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7693087634, 48.1100024605 ], [ -122.7667323197, 48.110171865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.4088507662 ], [ -120.2895900621, 47.4060388964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.3110237562, 46.8548826409 ], [ -122.3028894715, 46.8561801881 ], [ -122.3114938746, 46.8624815133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1545187673, 47.5061214996 ], [ -122.1514985886, 47.5062570131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.3281449889, 47.6228434601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.4871309015 ], [ -122.25450026, 47.4846758275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1178922765, 48.3599953038 ], [ -120.0826339712, 48.3485688069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8903636196, 47.2092221227 ], [ -117.8935451035, 47.2124822553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2187031003, 47.4362642827 ], [ -122.2153057722, 47.4499572937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3281449889, 47.6228434601 ], [ -122.324181676, 47.6321012475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7212439358, 47.7631466252 ], [ -118.7130750207, 47.7604898372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1406082627, 48.151913289 ], [ -122.1327070433, 48.1526864406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943172222, 47.0140340001 ], [ -120.5925213891, 47.0219833385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.5573335962 ], [ -120.4712654383, 46.5394142128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134510032, 47.6126348451 ], [ -119.8134804078, 47.6996424338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3786436215, 48.5169464302 ], [ -122.410855576, 48.5508465619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9167021499, 47.6653110039 ], [ -117.8792825759, 47.6694839326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.6167655089 ], [ -122.1878139945, 47.6319385932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3436176395, 47.6252248523 ], [ -122.3470322877, 47.6426862378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3423037081, 47.7341359849 ], [ -122.3351942988, 47.7341436296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5989397766, 45.6129740168 ], [ -122.5942584951, 45.6125607215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.6419803649, 47.815343803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9998190814, 47.0505006375 ], [ -122.9910016143, 47.0450336894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803526133, 46.3061126605 ], [ -122.8665119074, 46.3036401573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6020684242, 47.564209197 ], [ -120.5983470734, 47.5620792828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4004674284, 47.5364053504 ], [ -117.398395829, 47.5437706657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4885964173, 47.3774858912 ], [ -119.482679815, 47.3814692054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4423826497, 46.937291079 ], [ -122.35740693, 46.9366422092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.9108595721 ], [ -117.0677994513, 46.9127572907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.9048928592 ], [ -122.2280903322, 47.9083247357 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3523152371, 47.7871149729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142960975, 46.2001388421 ], [ -122.916599885, 46.2057419837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4025141886, 47.775377664 ], [ -117.4024404199, 47.7757947974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6569907612, 45.7325461642 ], [ -122.6612770989, 45.7464677187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6853721482, 48.1040204491 ], [ -119.6682838379, 48.1388517209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4733228614, 46.5849707648 ], [ -120.4709892732, 46.5848762904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9664209143, 46.1480268532 ], [ -122.9552434055, 46.1471068295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3176622842, 46.7318138607 ], [ -117.2900757121, 46.7253930498 ], [ -117.267322546, 46.7081930584 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4439905727, 48.1073916924 ], [ -123.4421245304, 48.1073235415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0602108175, 48.0644077043 ], [ -123.0541413502, 48.0609123727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1131838766, 46.9081888251 ], [ -124.1124683872, 46.9087203442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339726068, 47.2074131032 ], [ -122.4340414925, 47.2209096911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9501761308, 46.9833007241 ], [ -123.9584649473, 46.9824304524 ], [ -123.9638816639, 46.9871110108 ], [ -123.9991960461, 46.9934266102 ], [ -124.0040880972, 47.00857363 ], [ -124.0381349997, 47.0457147607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7015013824, 47.7577620281 ], [ -118.7003253167, 47.7576668992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.7408474959 ], [ -117.411487897, 47.7439536479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.3502034489, 47.9137043437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.4156833158 ], [ -122.2187031003, 47.4362642827 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2647934958, 48.2531691393 ], [ -124.260389031, 48.2542321886 ], [ -124.2601698309, 48.2506931926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8843350959, 46.5050823884 ], [ -119.8766764568, 46.5100011675 ], [ -119.8734670054, 46.5215778241 ], [ -119.8802809007, 46.5340131046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8246818019, 45.8230059935 ], [ -120.8226283862, 45.8229903949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3292431802, 47.3317433744 ], [ -122.3219018806, 47.3326977386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0289352268, 46.5118174067 ], [ -124.0306794602, 46.5320120219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7745905953, 46.9816357852 ], [ -123.7542359838, 46.978403612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.0536557708 ], [ -122.139335004, 48.0536511041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.6462120527 ], [ -117.2398690039, 47.6488703847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984249952, 47.1999364331 ], [ -122.2938144583, 47.1988803768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932337855, 47.9103754832 ], [ -122.2914374281, 47.9220287545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.4452102491, 45.9475940632 ], [ -119.410562102, 45.9583557066 ], [ -119.4001606196, 45.9493259325 ], [ -119.3731501041, 45.946680716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8146581289, 46.9746674338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1881596197, 47.6322979443 ], [ -122.1541290261, 47.6295235952 ], [ -122.1364781908, 47.6384421787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7756848413, 48.1086426578 ], [ -119.765463651, 48.1095610147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2319230755, 47.6360628163 ], [ -122.2133341775, 47.6416718327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8322700503, 47.0459335687 ], [ -122.8221883958, 47.0469869506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2841686904, 48.0967467483 ], [ -117.2785898294, 48.0970199696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736786558, 47.1615792122 ], [ -122.4600900511, 47.1585657847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.2980321898 ], [ -117.9728133998, 47.3032197247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6676433679, 47.5927812587 ], [ -120.6615401387, 47.5961287953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3571398555, 48.6273196202 ], [ -122.363905077, 48.6441332225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6900708232, 47.6742545713 ], [ -122.6891411882, 47.6839322136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3491644277, 46.0639266399 ], [ -118.3499243544, 46.069095536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4722493593, 46.5674944544 ], [ -120.4705735995, 46.5573335962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.9790612199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2651804981, 46.6565738532 ], [ -118.2875256298, 46.6685119832 ], [ -118.3072819323, 46.6686867919 ], [ -118.3344458773, 46.6776884871 ], [ -118.3783577002, 46.6777368746 ], [ -118.389137803, 46.6893958146 ], [ -118.391198589, 46.6972092027 ], [ -118.4122698552, 46.7012162608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9213159644, 47.1927732879 ], [ -120.9384153356, 47.1948996063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9450001967, 48.1636797033 ], [ -123.9244093839, 48.1547303657 ], [ -123.9317581136, 48.1536438133 ], [ -123.9295399819, 48.1451803052 ], [ -123.9164706989, 48.1365715012 ], [ -123.8875301745, 48.1363486659 ], [ -123.8597889454, 48.14722078 ], [ -123.8001282546, 48.1395893198 ], [ -123.7690696693, 48.1396769458 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.2498304367 ], [ -117.2293777746, 48.2389717477 ], [ -117.2149572114, 48.2326927422 ], [ -117.1445158196, 48.2276178924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9378384893, 47.6579307436 ], [ -117.9379417422, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1781092963, 48.4725882896 ], [ -120.1686914859, 48.4567062705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.1698966439 ], [ -122.1637086417, 47.1693190408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8894036808, 46.6634446901 ], [ -118.8840388543, 46.6627688809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6851132626, 47.8485151937 ], [ -121.6754291602, 47.8437264887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7472041173, 46.7900290895 ], [ -118.740366325, 46.7916254829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0799094982, 48.9241796486 ], [ -122.0772800593, 48.924155999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7002079559, 46.7282037986 ], [ -120.6947545489, 46.7266771426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1320120548, 47.4522702959 ], [ -117.1273008596, 47.4454628501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5450859846, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.4031367389 ], [ -119.5123492002, 48.4036826294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4364218141, 47.7154395468 ], [ -117.4379008219, 47.7154498354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1820573236, 47.7095901821 ], [ -122.1889808432, 47.7236094662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.7108243237 ], [ -118.7941217724, 47.7561814138 ], [ -118.7334805954, 47.7623342902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8026031248, 46.3760022496 ], [ -123.7936542735, 46.3767488327 ], [ -123.7849363108, 46.3717532207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535414241, 47.7117866081 ], [ -121.1229137378, 47.7173047025 ], [ -121.1378413571, 47.7241816479 ], [ -121.1210115785, 47.7462420572 ], [ -121.0941270076, 47.7457487872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6813333636, 45.8063615363 ], [ -122.6883954382, 45.8215294532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5687388318, 47.5884737405 ], [ -117.5589351838, 47.5953615292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535252294, 45.6362913178 ], [ -121.1561709747, 45.6490463651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.3779642912 ], [ -122.2430570827, 47.378057579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8089625952, 46.9762253006 ], [ -123.8076362509, 46.9772463001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182891747, 47.2672889111 ], [ -123.9082461392, 47.2954525638 ], [ -123.9065191783, 47.3328554188 ], [ -123.9095592146, 47.3467924075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6184725877, 46.8939308682 ], [ -119.6021851057, 46.8903722209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030469817, 46.1632969984 ], [ -122.9042918419, 46.1726255536 ], [ -122.8992668381, 46.1802918975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1400802554, 47.8145116129 ], [ -122.1281371157, 47.8306336416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8868341203, 47.9877015289 ], [ -122.8848678307, 47.9879382073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.7801453767 ], [ -122.5792543891, 45.780262944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9732816215, 46.70702645 ], [ -122.9747719324, 46.7112626752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3389607734, 48.5486028042 ], [ -120.3223743924, 48.543587961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1702535399, 46.7278386224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4685453921, 48.1061906064 ], [ -123.4657592482, 48.106460575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9946857537, 47.1974841035 ], [ -121.9923916449, 47.199177298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478831901, 46.7533571733 ], [ -122.9375719089, 46.7539095544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237970067, 47.4635938226 ], [ -122.6245604481, 47.4752697078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3297726533, 47.7436959378 ], [ -122.3291037047, 47.7469054111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7810617654, 48.1076558595 ], [ -122.7780253279, 48.1083589075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6124487235, 47.7661835383 ], [ -122.607158394, 47.7724672092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3706721348, 48.2410706967 ], [ -122.3443830084, 48.2398913159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4158570632, 47.425849765 ], [ -121.4127871024, 47.4225424219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874609685, 46.4153003586 ], [ -117.069154655, 46.4199117494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5724635589, 46.6251660017 ], [ -120.5436645551, 46.6226773126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096344556, 48.4932908483 ], [ -122.6126265866, 48.4934511275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3044608349, 48.3394634583 ], [ -117.2844096141, 48.3059359445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3441820755, 46.7361724356 ], [ -118.3231691836, 46.7431650717 ], [ -118.3104348324, 46.7563777105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474311421, 47.3867136062 ], [ -122.2493486901, 47.3976177556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342002903, 47.1593449432 ], [ -122.4341705298, 47.1628256566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798684236, 46.8216532259 ], [ -123.0761547764, 46.8206396917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5579970591, 46.6445599995 ], [ -118.5495267257, 46.655378434 ], [ -118.5443798132, 46.6742594979 ], [ -118.5291894222, 46.6893914363 ], [ -118.527862787, 46.697937023 ], [ -118.5289309614, 46.709283549 ], [ -118.5479758394, 46.7134582569 ], [ -118.547381969, 46.7802658991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4872923805, 46.6801245233 ], [ -120.482692837, 46.6807839356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1130005817, 48.1517401354 ], [ -122.1187528092, 48.1643133094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1565942739, 47.6540477597 ], [ -118.1420864524, 47.6544054526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9392616292, 46.382620523 ], [ -117.9322110467, 46.3985709129 ], [ -117.9413605818, 46.4060696422 ], [ -117.9479137743, 46.4225642672 ], [ -117.9469665414, 46.4295031017 ], [ -117.9587274494, 46.4507231244 ], [ -117.962632911, 46.4685024932 ], [ -117.9609825539, 46.4873044859 ], [ -117.9734724736, 46.4998726264 ], [ -117.9712249078, 46.5098672609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1099088867, 46.9701523567 ], [ -119.0422256352, 46.9696837609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2352979381, 46.2341237242 ], [ -119.2152365358, 46.2321748638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3094973132, 47.1058411746 ], [ -119.3052799217, 47.1087851264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5396953537, 48.0975545684 ], [ -123.5353377768, 48.098941472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074296103, 47.7589886736 ], [ -122.1940460846, 47.7553536407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.6031230684, 45.9389260974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814765504, 48.1399591811 ], [ -122.2820740303, 48.1477548637 ], [ -122.2891754017, 48.1552836007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284865191, 48.4108456019 ], [ -119.5284561857, 48.4123674853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432290715, 47.4472414198 ], [ -122.8272592504, 47.454059906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470226925, 48.5030308196 ], [ -122.247228536, 48.5049651039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2088606428, 46.7337475063 ], [ -117.2059069062, 46.7337520183 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0402216819, 47.4051375238 ], [ -122.0384117208, 47.4089744879 ], [ -122.0506265625, 47.4234707779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.3619718598, 48.4277546105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0584176535, 47.257382574 ], [ -121.0623455971, 47.2605734637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583128195, 47.8895409718 ], [ -122.2572398494, 47.8906887228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.1093210645, 47.8989017492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.2611443687 ], [ -119.2878136748, 46.2595687001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7653032241, 47.0638310719 ], [ -122.7651140331, 47.0629504411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020091618, 46.6572102746 ], [ -121.5939929334, 46.6677239868 ], [ -121.5771726696, 46.6750081624 ], [ -121.5748775018, 46.6824470233 ], [ -121.5785447315, 46.6857085787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1012238708, 46.2052016642 ], [ -119.1061582106, 46.2060951858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676487456, 47.5684242426 ], [ -122.663594378, 47.5707549865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6496497972, 45.6504231837 ], [ -122.6493044391, 45.6503500709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0929578437, 46.5461114405 ], [ -117.1050710923, 46.5588432113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1426715191, 48.7772362922 ], [ -118.1497710826, 48.7873239168 ], [ -118.1606954688, 48.7925791711 ], [ -118.1610621477, 48.8013491924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2564997683, 46.0930373464 ], [ -118.2526403206, 46.0995793775 ], [ -118.2420963329, 46.1031326564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2828183812, 47.6193764429 ], [ -119.2613682363, 47.6314977852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6589172471, 48.8590433627 ], [ -121.6630290925, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.6754402986, 48.8651910486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3658073843, 47.7605601689 ], [ -117.3673481617, 47.7688728977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9522499816, 46.7274803396 ], [ -122.952269366, 46.7289642557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3476324959, 48.5639822624 ], [ -122.3437035716, 48.5958995493 ], [ -122.3462428337, 48.6070259278 ], [ -122.3545679756, 48.6174704326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5983470734, 47.5620792828 ], [ -120.5889958565, 47.5568399451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2498888662, 47.4623828171 ], [ -122.2408435002, 47.4652569769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8169944864, 47.1654459949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9049232747, 47.5724947503 ], [ -121.8981135123, 47.5712733617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0933996402, 48.1811071167 ], [ -120.096475565, 48.1968467764 ], [ -120.1071532972, 48.1976887965 ], [ -120.1282560949, 48.2086361697 ], [ -120.1174787599, 48.2312124652 ], [ -120.1161853491, 48.2490366875 ], [ -120.1061717246, 48.2554318205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1236120707, 48.2002782394 ], [ -122.1213708923, 48.2002565193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0779731302, 47.442965311 ], [ -117.0397889595, 47.4349031524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5337335651, 45.9984030688 ], [ -121.5549969267, 45.9998011977 ], [ -121.5636114982, 45.9901163052 ], [ -121.5837003451, 45.9826021001 ], [ -121.5888375562, 45.9758111476 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3298805519, 47.1732555069 ], [ -119.337592942, 47.1824916579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3376838924, 48.0547329997 ], [ -124.3149717617, 48.0584677954 ], [ -124.3028014989, 48.0673395518 ], [ -124.2831461268, 48.0697565692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0767740067, 47.6417886706 ], [ -120.0747632734, 47.641906708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0376981686, 48.0703874967 ], [ -123.9545771246, 48.0754505177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2823985099, 47.1941934807 ], [ -122.281111013, 47.1984410996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9070746013, 46.1900492586 ], [ -122.9142960975, 46.2001388421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525729281, 45.6855805745 ], [ -122.55279656, 45.6913817983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8060994957, 48.0932061459 ], [ -119.7944730895, 48.0983151568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5100030807, 47.2490381759 ], [ -122.5111157203, 47.2502531629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4811308047, 46.4673204627 ], [ -117.4724796642, 46.4594841871 ], [ -117.4670539222, 46.4470649257 ], [ -117.4444691861, 46.4466269014 ], [ -117.4311649833, 46.4362139804 ], [ -117.4202576394, 46.4360420895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6601620541, 47.7045647028 ], [ -122.6546046376, 47.70607599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9559416042, 46.7155463073 ], [ -122.9571866974, 46.7126430488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1815164346, 46.226705456 ], [ -119.1466151724, 46.2179686599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.1460689953 ], [ -122.9222411132, 46.1464872396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3204263512, 47.4439375555 ], [ -122.3268233106, 47.4554520402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.3580817971 ], [ -122.3074304764, 47.3616303229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.3580601805 ], [ -122.0859358901, 47.3580748666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.7334112553, 47.6434838531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4483713102, 47.6410080356 ], [ -117.4497167189, 47.6443092509 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6156582337, 47.7161387981 ], [ -122.6353165012, 47.7250143013 ], [ -122.6370291084, 47.7323152241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004396604, 47.7105219184 ], [ -122.2995385636, 47.7120544754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7475393038, 46.2094125334 ], [ -119.7476202885, 46.2140157031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348020717, 45.6649138902 ], [ -122.429621236, 45.6621546541 ], [ -122.4288846042, 45.6543939777 ], [ -122.4244049035, 45.6505489649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.4777584669 ], [ -122.321610488, 48.4780418815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.9932136954 ], [ -122.5264716482, 45.9932175677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1992324539, 47.1773708328 ], [ -117.1722002227, 47.1818280167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219385669, 47.258344291 ], [ -122.5307884494, 47.2588581959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5469623321, 47.3271872736 ], [ -119.4986984819, 47.3690721351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7261530122, 48.9551626572 ], [ -122.7299951107, 48.9621767777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2006505617, 47.1259714675 ], [ -117.2204392685, 47.120872 ], [ -117.2311497101, 47.1220696502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6682838379, 48.1388517209 ], [ -119.6636624539, 48.1604813241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2918401179, 48.4355506598 ], [ -122.2891848021, 48.4355524149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3518193824, 47.7919039464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.0693320216, 46.4212282179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3564028382, 47.8868367862 ], [ -124.3561155367, 47.8937677247 ], [ -124.3644243308, 47.8948319873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1614780369, 47.506903678 ], [ -124.2004830222, 47.5303993959 ], [ -124.2229369627, 47.5343029792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059582917, 45.6758268864 ], [ -122.505932908, 45.6721730664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3877903612, 46.8866484089 ], [ -117.3817100757, 46.8906071029 ], [ -117.3649144653, 46.8905633877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6542540009, 47.8363873413 ], [ -121.6418257139, 47.8341761604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.2331832879 ], [ -122.8996825001, 46.2497847546 ], [ -122.9131016887, 46.2630638015 ], [ -122.9250895302, 46.2644933419 ], [ -122.9237811251, 46.2715083431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.2509192818 ], [ -119.4752230368, 46.2516861086 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.1817811528, 46.731695621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2809503607, 48.235572681 ], [ -122.2423008133, 48.2388120168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5608436626, 47.6428844249 ], [ -117.509427539, 47.6430053975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.1984410996 ], [ -122.2782598167, 47.2029152075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4572843275, 46.2706003653 ], [ -123.4109919609, 46.2617089223 ], [ -123.4005832438, 46.2531192037 ], [ -123.3947912458, 46.2315766109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.3677298266 ], [ -120.3097289325, 46.3650774694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.6321012475 ], [ -122.3238832466, 47.6326989707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3641647883, 46.8740109029 ], [ -117.3649931364, 46.8746110638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075109583, 47.7416381565 ], [ -117.5074826876, 47.7443815862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7455869752, 48.1372852387 ], [ -123.7345388535, 48.1360534594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647334404, 47.498272492 ], [ -117.5647296934, 47.4988542076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6748917772, 47.5440202547 ], [ -122.6707470211, 47.5494494474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.1780553435 ], [ -117.0426668622, 48.1780973091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2395042525, 48.8318235121 ], [ -122.2195423891, 48.8277065549 ], [ -122.2096024616, 48.821069883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9044761844, 45.8247380049 ], [ -120.8744708695, 45.824429695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9237811251, 46.2715083431 ], [ -122.9218771342, 46.2762832574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.4780418815 ], [ -122.2801945178, 48.4926127654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549477321, 46.3302467729 ], [ -124.0549134209, 46.3311573646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5109341748, 47.6229691778 ], [ -122.5129709245, 47.6238643156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350085187, 47.5157381772 ], [ -122.7222646763, 47.5233205646 ], [ -122.7132594935, 47.5239714664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2244399208, 48.9981157805 ], [ -118.2239337521, 49.0001142503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.1342723946 ], [ -123.1002077406, 47.1262326925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6644148519, 45.7566399081 ], [ -122.6701869958, 45.7753317642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.1712861629 ], [ -122.6262008512, 48.183153552 ], [ -122.6266865938, 48.1904292048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3304093084, 47.6079523826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8229476469, 45.7771798533 ], [ -120.8225764326, 45.7876068164 ], [ -120.8169355081, 45.795557156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510605635, 46.3071011772 ], [ -122.3527972938, 46.2965836771 ], [ -122.3455373962, 46.2931384349 ], [ -122.337001989, 46.3047142862 ], [ -122.3278036317, 46.3078440811 ], [ -122.3208730727, 46.3036524423 ], [ -122.313153103, 46.3066262779 ], [ -122.3100082852, 46.3001431608 ], [ -122.3022619974, 46.2970256355 ], [ -122.2938372103, 46.3000796883 ], [ -122.295182346, 46.3062068691 ], [ -122.2807292786, 46.3116469727 ], [ -122.2731898668, 46.303082327 ], [ -122.2662981155, 46.301502894 ], [ -122.2789228699, 46.3034457986 ], [ -122.2705939775, 46.2873405261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.7811795472 ], [ -117.4074561545, 47.7875219182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6947330224, 47.501473805 ], [ -117.6842799668, 47.508587719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7483034155, 48.9956575306 ], [ -122.7547026936, 49.0004770596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8858510006, 47.9902643238 ], [ -119.8838607234, 47.9987453856 ], [ -119.8957472001, 48.038517837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6671258406, 48.1191174479 ], [ -123.6561026165, 48.1181029102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.8574461597, 46.2510844587 ], [ -123.8514330153, 46.2602496978 ], [ -123.8402134294, 46.2625073673 ], [ -123.8325797811, 46.2695656832 ], [ -123.8166527548, 46.2712834502 ], [ -123.8074451874, 46.2860891421 ], [ -123.8110220943, 46.292755949 ], [ -123.8005818248, 46.3043543061 ], [ -123.7980280188, 46.329180811 ], [ -123.8010026466, 46.3344527096 ], [ -123.8104269171, 46.3376105866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9408254869, 45.6665296294 ], [ -120.9297714065, 45.6654121621 ], [ -120.9256409171, 45.6605136294 ], [ -120.8955780583, 45.6660810678 ], [ -120.8292860584, 45.6940654066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828899445, 47.1858920985 ], [ -122.2823985099, 47.1941934807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.6486735819 ], [ -120.5282531262, 46.6540390188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.6716912752, 45.622917794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6217227567, 48.0596769549 ], [ -117.6204333436, 48.0599351891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6175832531, 46.9743856487 ], [ -123.608437708, 46.9733591072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9043342814, 48.5465658408 ], [ -117.8819927368, 48.5472128187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9951021272, 48.5298846785 ], [ -121.9651128936, 48.5240655431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9506147609, 46.1164898023 ], [ -122.9437335833, 46.1159145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6881983355, 47.0090276156 ], [ -122.6694499846, 47.0015817743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1944912719, 46.7123163464 ], [ -117.1823923289, 46.7153301884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.8911732556 ], [ -122.1282727742, 47.8811551589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1994394218, 48.1842323462 ], [ -122.2073503784, 48.1930549968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3082024553, 48.987334862 ], [ -117.300957911, 48.9914893657 ], [ -117.2997854183, 48.9998091485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4658299611, 46.7110974278 ], [ -120.4499387893, 46.725476403 ], [ -120.4529597593, 46.7328663314 ], [ -120.4474798796, 46.7417500389 ], [ -120.4584088633, 46.7479232715 ], [ -120.4557031883, 46.7526547977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9025771354, 47.3722950666 ], [ -123.8886284736, 47.4026822769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0695554806, 47.5516320142 ], [ -122.0518753525, 47.5453888035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0728889721, 45.7937322728 ], [ -119.99534977, 45.8239202871 ], [ -119.9346212323, 45.8356923036 ], [ -119.9093114186, 45.8357642984 ], [ -119.8779729096, 45.8417460874 ], [ -119.848685047, 45.8673243697 ], [ -119.8271538347, 45.8696991389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1306968579, 46.1654154745 ], [ -118.1391201391, 46.1784782697 ], [ -118.1360940572, 46.1845933366 ], [ -118.1377890482, 46.2310216136 ], [ -118.1530953054, 46.2591521015 ], [ -118.1532476863, 46.2701348718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.4422989059 ], [ -122.378756131, 48.4364435691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2125630243, 47.2479722468 ], [ -124.222223573, 47.2566679804 ], [ -124.2418234024, 47.2957168744 ], [ -124.2808034862, 47.3214481125 ], [ -124.2880206391, 47.3359121435 ], [ -124.2850104072, 47.3470290113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6901316239, 47.5798542029 ], [ -122.6987408734, 47.5866961105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2945690698, 47.8468435945 ], [ -122.2931688795, 47.8504172566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9856684909, 46.9399239995 ], [ -119.9617666156, 46.9450388749 ], [ -119.9623607954, 46.955497291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354436719, 48.4902753934 ], [ -122.3370509632, 48.503991479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4935889943, 46.301316915 ], [ -119.4933154474, 46.3115165199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024279178, 47.3725593313 ], [ -122.2024048555, 47.3748567353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939107442, 47.2065716074 ], [ -122.2939186583, 47.209493222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9874606417, 47.6279947984 ], [ -121.9593727364, 47.6196353188 ], [ -121.9574628206, 47.6132115201 ], [ -121.9615435138, 47.60154051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4653744706, 45.7143933277 ], [ -121.4629980998, 45.7135052501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3997755612, 47.5144285359 ], [ -117.3939373287, 47.5212232747 ], [ -117.3968245294, 47.5274308586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113416177, 47.7366272099 ], [ -117.4112982729, 47.739633774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.8277972731, 47.3865787228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4744048469, 48.9644201365 ], [ -122.4631661079, 48.9646150404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4606869786, 47.9524141752 ], [ -124.4631155918, 47.9407965872 ], [ -124.4817162701, 47.9308967011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9599282089, 47.199071826 ], [ -121.9346988288, 47.1921997068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7686405015, 48.0112283115 ], [ -122.7766696657, 48.0135236739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1961396485, 46.7486771117 ], [ -122.1934957289, 46.7573170831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5733355827, 47.8027671644 ], [ -122.5706924506, 47.8037291147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1378345116, 47.804839361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.6610541746 ], [ -122.1304517336, 47.6661307578 ], [ -122.1223453784, 47.6671817737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4690215411, 45.664782696 ], [ -122.4348020717, 45.6649138902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1749055913, 47.289039031 ], [ -123.1570442192, 47.2803282022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7194853839, 46.9182048549 ], [ -123.7133142809, 46.9289642039 ], [ -123.6707784483, 46.9375606362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4026394998, 47.7808179884 ], [ -117.402846948, 47.7809972131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.4752593869 ], [ -122.8657551158, 46.4709082251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2776857935, 48.8435345933 ], [ -122.2556345682, 48.8390461836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4736324891, 46.5393860319 ], [ -120.4705376957, 46.5410320836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6556188415, 47.4745007676 ], [ -120.6528625036, 47.482823007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8146581289, 46.9746674338 ], [ -123.8135123607, 46.9752656303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4290787927, 47.2340191897 ], [ -122.4348320946, 47.2331712422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7328423678, 48.9841695596 ], [ -122.7483034155, 48.9956575306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5983885994, 48.8916617976 ], [ -122.6025149847, 48.8920541634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.8137027141 ], [ -119.9770150376, 47.8170244607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6385290374, 48.8917094095 ], [ -122.7044893922, 48.8921934089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7753068821, 46.3188415766 ], [ -122.7622997913, 46.31964321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533663973, 47.2334497115 ], [ -119.8356431118, 47.2340276704 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8925432587, 46.1068065797 ], [ -122.8785910075, 46.1067733831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1565310736, 47.5057272643 ], [ -122.1545187673, 47.5061214996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8907960803, 46.3012804426 ], [ -122.8803526133, 46.3061126605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447131335, 46.331198202 ], [ -124.0053179052, 46.3309294575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.8767504028, 47.9921025165 ], [ -122.8590822264, 47.9899083019 ], [ -122.8376261196, 48.0017582789 ], [ -122.8300886216, 48.0107987872 ], [ -122.8301978646, 48.0210112267 ], [ -122.8196628775, 48.04931957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228133919, 48.4357262199 ], [ -122.3174867795, 48.4356661942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.8150001938 ], [ -122.4859651634, 48.8333491544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4957096235, 48.6976302874 ], [ -122.4889163396, 48.702409161 ], [ -122.4998793264, 48.7103012557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.3874436362, 47.0046753037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5135770418, 46.6284896582 ], [ -120.5009591571, 46.6232675075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1570006357, 47.765024263 ], [ -122.1508809942, 47.779603159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074687841, 47.8201159821 ], [ -122.2074577992, 47.821711911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344227391, 47.4416515583 ], [ -122.3339487259, 47.4475073103 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3199265565, 46.3750583048 ], [ -120.3201578547, 46.3713384075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344939127, 48.3373547839 ], [ -122.3359326659, 48.3471746589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4976698793, 46.5583568324 ], [ -122.4954759572, 46.5519074288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4131299621, 48.4502154271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8480154625, 46.9435702245 ], [ -123.8173067572, 46.9516445414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860492264, 48.8043084991 ], [ -122.4860458418, 48.8077759805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963791173, 47.3865201952 ], [ -122.2947521893, 47.3943368889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294448552, 46.6856170888 ], [ -123.7293771219, 46.6866295208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3445897421, 47.7021703261 ], [ -122.3446210177, 47.7050638875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862142566, 47.6722701693 ], [ -122.1852889074, 47.6742929009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6493044391, 45.6503500709 ], [ -122.6469881652, 45.6495101668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8226283862, 45.8229903949 ], [ -120.8122602395, 45.8229926828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.2927627536, 46.7640966507 ], [ -118.286718814, 46.7740832951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2972004015, 46.9531905355 ], [ -122.2979507857, 46.9800944856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293212399, 47.1843499681 ], [ -122.2293015421, 47.1806601772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7406552867, 46.7781576345 ], [ -123.738474948, 46.7947691985 ], [ -123.7460823296, 46.7987604942 ], [ -123.7468410221, 46.8042726776 ], [ -123.7198612579, 46.8296809218 ], [ -123.7193448689, 46.8429886225 ], [ -123.7093258609, 46.8603697186 ], [ -123.7108617816, 46.8670798808 ], [ -123.7062185932, 46.8779876268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111538627, 47.7133751719 ], [ -117.4111252748, 47.7150977748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.3833226703 ], [ -122.2214820038, 47.3825173806 ], [ -122.2065091301, 47.3725609481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2871149715, 47.8209339215 ], [ -122.2755457279, 47.8209143725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0978930871, 47.6573058522 ], [ -117.9493878602, 47.6583110212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.3249389869, 47.5271305474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3006072071, 47.4096540761 ], [ -120.3029610908, 47.4095632747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8976072607, 46.1404539675 ], [ -122.8998676031, 46.1496842122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4508888194, 48.973570904 ], [ -119.459484559, 48.9953117488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5054795183, 47.7584305503 ], [ -118.4817145594, 47.7503088944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.6888584117 ], [ -123.7313710506, 46.6903743354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7124496038, 47.6114063118 ], [ -122.7097773434, 47.6324886961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1489577681, 47.7627227749 ], [ -120.1222565242, 47.7683337153 ], [ -120.0939451422, 47.7618733285 ], [ -120.0771113094, 47.7623555736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2406467581, 48.4027244437 ], [ -122.2643571316, 48.430063418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533828874, 47.231885111 ], [ -119.8533663973, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.6681259529 ], [ -120.5170629867, 46.6712561513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8455160853, 47.415535475 ], [ -122.8464511089, 47.4246031872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872561406, 48.1523209798 ], [ -122.1857562885, 48.1523511436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6312757821, 47.5427369679 ], [ -122.6269725806, 47.5417504284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5877830321, 47.5561469233 ], [ -120.5501706085, 47.5350150951 ], [ -120.5136715771, 47.5356194902 ], [ -120.4890479152, 47.5280979623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7041423514, 45.6445770609 ], [ -122.7195199906, 45.6499177453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7514620424, 48.9886011741 ], [ -122.7516443954, 48.9896016788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981196901, 47.5020226852 ], [ -122.3037605642, 47.5106094253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2939892909, 46.0823692123 ], [ -118.2736672441, 46.0850299125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1428018792, 48.7736597705 ], [ -118.1426715191, 48.7772362922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3100733649, 47.7339389204 ], [ -122.297844387, 47.7338069071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649877502, 48.9991015764 ], [ -122.2649591411, 49.0000309604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2517268724, 46.0417290027 ], [ -117.2515257215, 46.0417663171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6686935469, 48.2839223474 ], [ -122.6661977768, 48.2841306381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4748023779, 46.5896995193 ], [ -120.4720339463, 46.5745548829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.3982856502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1062823585, 46.8495197001 ], [ -124.1079704304, 46.8588588821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6794982425, 46.3616185155 ], [ -122.6734966352, 46.3612844656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4283589995, 48.4448569455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014569021, 47.1941769535 ], [ -122.1990213709, 47.1844363574 ], [ -122.1869699983, 47.1769776673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9489928608, 48.0502722096 ], [ -122.9240212026, 48.050093762 ], [ -122.8785401303, 48.0405591613 ], [ -122.8671620679, 48.0307219954 ], [ -122.8622427496, 48.0164767191 ], [ -122.863957586, 48.0095725516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9085060615, 46.1467022322 ], [ -122.9093031811, 46.1446137165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7651585878, 47.4732140567 ], [ -121.7482609923, 47.473255323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.7206992742 ], [ -122.2022010791, 48.7460185067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1277858514, 47.2236494996 ], [ -123.1265910273, 47.2001121701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.6422285199 ], [ -118.5525513618, 46.6447887503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393101914, 46.196885705 ], [ -119.9172628783, 46.1916920438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991242989, 47.3709132653 ], [ -118.6920130217, 47.3791633099 ], [ -118.6836868334, 47.4153657335 ], [ -118.7129232612, 47.426961387 ], [ -118.7741833699, 47.47212032 ], [ -118.7840000547, 47.472842312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.6495101668 ], [ -122.6340284894, 45.6462602442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3487894025, 48.2702583288 ], [ -124.3463796883, 48.2675248649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3803488731, 47.8097254242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4879877343, 48.6747508138 ], [ -122.4957096235, 48.6976302874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854471652, 47.9489554101 ], [ -124.3854225052, 47.9505814332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982503924, 47.4471972302 ], [ -122.2012702922, 47.4487938305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259425977, 46.9314301096 ], [ -122.6207841642, 46.9343746994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7414617067, 48.0549272619 ], [ -117.7413820969, 48.0569482281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1912428882, 47.2429358128 ], [ -123.1777008261, 47.2523092089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855189782, 45.5821082164 ], [ -122.3857916688, 45.5806082164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219125052, 48.9201922455 ], [ -122.3217483631, 48.934759017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.8781807663 ], [ -122.2036492399, 47.8781466533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1116525558, 48.0918800123 ], [ -122.1130005817, 48.1517401354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2896666816, 45.6971356795 ], [ -121.2657579644, 45.7111535352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8874838161, 46.4465601034 ], [ -122.8839891536, 46.4708944372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0254965582, 46.1765544591 ], [ -123.0155186397, 46.1714070706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8718350067, 46.2347671028 ], [ -123.8750691469, 46.2411694514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4254807685, 46.2734329699 ], [ -119.4001468865, 46.2808655483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.3394444319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.4239544628 ], [ -122.3354523656, 47.4339530916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9571866974, 46.7126430488 ], [ -122.9576609885, 46.7115370036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.2430577065 ], [ -122.3499363576, 47.2430303348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5884452443, 48.8674825234 ], [ -122.5886565352, 48.8850365558 ], [ -122.5918452042, 48.8890326206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8118111203, 46.365574241 ], [ -123.8026031248, 46.3760022496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9125576769, 46.0999090238 ], [ -118.9077542093, 46.0783797271 ], [ -118.9099471422, 46.0583086547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0799320523, 46.9114350689 ], [ -117.0785645783, 46.9168637491 ], [ -117.0882427081, 46.9224279211 ], [ -117.0888409787, 46.92764545 ], [ -117.1008535829, 46.9394396989 ], [ -117.0895173373, 46.9526956733 ], [ -117.0915584637, 46.9622979365 ], [ -117.1061815936, 46.9621618746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9602028302, 47.0399823411 ], [ -122.9478299761, 47.0358210791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2620674833, 47.6387927373 ], [ -119.2528967959, 47.6483371933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888591294, 46.8883629314 ], [ -122.6775668388, 46.8986798288 ], [ -122.6531750965, 46.9072166327 ], [ -122.6259425977, 46.9314301096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6824612226, 47.5278472097 ], [ -122.6851289986, 47.5272359279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4195602915, 47.6526347407 ], [ -117.415831441, 47.6526577026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462274907, 47.7777955542 ], [ -122.3455787056, 47.7806814889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7046470526, 46.5756017902 ], [ -122.6933366335, 46.5767605568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9280333907, 47.1893145679 ], [ -120.9071870107, 47.1848015959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6913794976, 47.2616081181 ], [ -118.6909098997, 47.2757797492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1061815936, 46.9621618746 ], [ -117.1201266623, 46.9711349318 ], [ -117.1201099165, 46.978540374 ], [ -117.1261890475, 46.982384562 ], [ -117.1247530484, 46.9889983791 ], [ -117.1331982378, 46.9962242171 ], [ -117.1333198621, 47.0068232969 ], [ -117.1420392981, 47.0070763388 ], [ -117.1430372318, 47.0139495218 ], [ -117.1490857648, 47.0180587777 ], [ -117.1458226963, 47.0248832352 ], [ -117.1531459312, 47.0298429488 ], [ -117.1545590892, 47.0396761869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7557863554, 46.7871441721 ], [ -118.7402153352, 46.7962897708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.1019028785, 47.463429943 ], [ -123.1150336799, 47.4621474593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9876439189, 47.202569875 ], [ -121.9842574706, 47.200949296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9485401068, 47.0155594946 ], [ -119.9393673303, 47.0263156043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4262909226, 47.225964252 ], [ -122.4276587856, 47.2283207799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3637055225, 46.8798827877 ], [ -117.3460816248, 46.8885837829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583869574, 47.8454224344 ], [ -122.2520093383, 47.8571419291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.3246446179 ], [ -122.6046693406, 47.337400484 ], [ -122.612537009, 47.3544077565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1928794609, 47.4781166157 ], [ -118.2501056872, 47.4783678971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9940435568, 47.2237272029 ], [ -121.0006237988, 47.2257561758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7098709231, 48.2523750469 ], [ -122.6993155614, 48.2593609442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6742675651, 48.5197397944 ], [ -120.6562834707, 48.5242436672 ], [ -120.6424628179, 48.5146645083 ], [ -120.6457283822, 48.5241251482 ], [ -120.6309912378, 48.5489299064 ], [ -120.6353352442, 48.5625862633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4900236905, 47.6081531287 ], [ -119.4635639051, 47.6196933691 ], [ -119.4055514032, 47.6207224415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142238248, 46.952800067 ], [ -122.9289732825, 46.9527927439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269269693, 47.5291188556 ], [ -122.3324821085, 47.534523388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3473316285, 47.6527710843 ], [ -122.3472711494, 47.6539867202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2078614274, 46.8115731743 ], [ -119.1974936697, 46.8114235517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7101114713, 47.7579202996 ], [ -118.7091478999, 47.7594544328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5623879036, 47.1153885874 ], [ -122.5526964173, 47.1210261719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3519395171, 48.9160269917 ], [ -122.3471693341, 48.9195294698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3468192298, 47.6709658181 ], [ -117.3446807868, 47.6717289639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.3462357173, 48.4217075774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2943647479, 46.5783948474 ], [ -123.2852999716, 46.5856826341 ], [ -123.275877446, 46.6016351381 ], [ -123.2741181864, 46.6204039176 ], [ -123.2799704551, 46.6290987029 ], [ -123.2514945992, 46.6301019034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.3476245074, 48.0559531272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6905925202, 47.5040657699 ], [ -117.6929707776, 47.5042331597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.9502697374 ], [ -117.3317752495, 46.9591639644 ], [ -117.3228188395, 46.9678793785 ], [ -117.3241499511, 46.9733140337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246598026, 47.644263262 ], [ -122.0103610919, 47.6398424818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.3225056037 ], [ -122.3548548851, 47.3236743586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6782492386, 47.3327708536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.1310325774 ], [ -119.2777833248, 47.1316521718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9801847421, 48.0911670151 ], [ -121.9796119878, 48.0909954069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0467690066, 47.1906721316 ], [ -121.0383554468, 47.1821664468 ], [ -121.0072302557, 47.1840617967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6640303518, 46.1872361321 ], [ -119.7026562788, 46.1875112252 ], [ -119.7058767846, 46.1902186961 ], [ -119.7065869381, 46.2050788695 ], [ -119.716955895, 46.1992803057 ], [ -119.7276384693, 46.2085860486 ], [ -119.7426319216, 46.20699312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2603550037, 47.8200633469 ], [ -122.254854845, 47.8251972811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4452973982, 48.7767299988 ], [ -122.4302739529, 48.7826189223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.8344961907, 47.4399094921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4828080327, 47.7179633653 ], [ -117.4899095304, 47.721909145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9959923537, 46.5612283389 ], [ -118.985089341, 46.5732225177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5910782183, 48.349487973 ], [ -119.5645756943, 48.3674740397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235791152, 47.6164555058 ], [ -117.2235907413, 47.620646532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329381771, 47.3035228844 ], [ -122.2274240044, 47.30291529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302329781, 48.6349158109 ], [ -118.7340738301, 48.6404765011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.0915688757 ], [ -119.1344405077, 47.0889844077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0518753525, 47.5453888035 ], [ -122.0411447066, 47.5428659307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1654405965, 47.3580279441 ], [ -122.1615500081, 47.3579926973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.6792543224, 48.5015614918 ], [ -122.6781254572, 48.5066895682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2282190803, 47.6193373774 ], [ -120.2277030428, 47.6241332137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3770778203, 46.155161435 ], [ -123.376808335, 46.1600802384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3421710669, 47.9339530573 ], [ -119.2692290678, 47.9499931301 ], [ -119.1829190953, 47.9759837264 ], [ -119.1165798222, 47.9732123098 ], [ -119.0445267647, 47.980223996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.7141304128 ], [ -121.7366031924, 45.6987633896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8293481757, 45.7148576644 ], [ -121.7924840113, 45.7161680262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940695704, 47.1604934513 ], [ -122.2959770656, 47.1610814791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3734287129, 47.0252556279 ], [ -122.3953437269, 47.0507021736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9203962911, 47.682901991 ], [ -121.9365744608, 47.6873896384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.1025546083 ], [ -119.6853721482, 48.1040204491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2595417057, 48.249031188 ], [ -124.2551176147, 48.2434973886 ], [ -124.25782102, 48.2357494947 ], [ -124.2487012457, 48.2130439318 ], [ -124.249669383, 48.206221953 ], [ -124.2337464478, 48.1994776202 ], [ -124.2164172902, 48.1837230479 ], [ -124.2149004639, 48.1767680441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7432426466, 48.0767810116 ], [ -119.780711497, 48.0844287634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0815564766, 47.3772542241 ], [ -122.0515162551, 47.3916599978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6506748055, 47.9912018634 ], [ -119.6565631198, 47.9990210152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3642482346, 46.8895898765 ], [ -117.3600916592, 46.8977782002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2864988953, 48.1556958232 ], [ -122.2449869401, 48.1566054926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4719132383, 46.252522673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6287453364, 46.4780216163 ], [ -117.6056799649, 46.4748288907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7878973606, 47.7642158415 ], [ -120.7730335346, 47.7672787698 ], [ -120.7466541795, 47.7635382143 ], [ -120.7393994237, 47.7563801327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3562019376, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.8407885562 ], [ -123.2217410927, 46.8391963722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1055377983, 47.9978871915 ], [ -122.1063755906, 48.0032207303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0376047767, 47.3579773831 ], [ -122.0279928055, 47.3596803479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.8211831696 ], [ -122.2978040809, 47.8210601157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276134438, 47.1581515823 ], [ -122.4068844997, 47.1589588837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.4648670181, 47.2345482875 ], [ -122.4722108146, 47.2351167316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8998676031, 46.1496842122 ], [ -122.9012940427, 46.1535561469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178750419, 47.4671156335 ], [ -122.2178776034, 47.4696365374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.0567497671 ], [ -122.6965194533, 48.0612450071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3663582961, 47.8214821079 ], [ -122.3642787688, 47.8215067044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6441483202, 47.6429238878 ], [ -117.6038968536, 47.6429304571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349383438, 48.9890983509 ], [ -122.7349579061, 48.9905390378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649034503, 46.8772762302 ], [ -117.3648165287, 46.8790297995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376542721, 47.9813261844 ], [ -122.1217698707, 47.9948572706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179298675, 46.9846708775 ], [ -119.1185803577, 46.992286446 ], [ -119.1257014177, 46.9990395411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4709892732, 46.5848762904 ], [ -120.4674043677, 46.5847787764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6717054661, 48.9414820309 ], [ -122.7201925534, 48.9725563663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8828899247, 47.9544833493 ], [ -122.886536485, 47.9460455733 ], [ -122.8853301763, 47.9139270916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1817811528, 46.731695621 ], [ -117.1809848194, 46.7306947672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.1416754861, 45.5914800209 ], [ -122.0320320146, 45.6195630227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1981225594, 47.2096549901 ], [ -124.2121521075, 47.2310327987 ], [ -124.2144799519, 47.2389866166 ], [ -124.2090169893, 47.2434071564 ], [ -124.2125630243, 47.2479722468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2970255151, 47.5111002228 ], [ -120.2972233483, 47.5139558554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0480975411, 46.3020519269 ], [ -124.0437707451, 46.3032611115 ], [ -124.0447271345, 46.3081264556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6272286689, 46.9765532394 ], [ -123.6175832531, 46.9743856487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.6593020345 ], [ -122.2999619988, 47.6603776807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5146878293, 48.1016682747 ], [ -123.5038218235, 48.1027548736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6463329022, 47.5650689234 ], [ -122.6437803284, 47.5650600843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6353352442, 48.5625862633 ], [ -120.6247422202, 48.5816115228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3452527917, 47.741452447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.9138188412 ], [ -124.5816396399, 47.9176697804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028100586, 47.9298175191 ], [ -122.306318668, 47.9330305052 ], [ -122.3051065733, 47.9435748501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.1017760996 ], [ -119.2517852789, 47.1061646856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.1036076158 ], [ -122.2078191986, 47.09966335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6403863597, 45.7125037539 ], [ -122.6538586045, 45.7228492671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4791481927, 47.3691228237 ], [ -119.4832074613, 47.3815237106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223136019, 48.340974526 ], [ -122.3127725976, 48.3407796335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9670970658, 46.649895724 ], [ -122.9768718108, 46.656330602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4317237119, 48.1182747731 ], [ -123.4299729836, 48.1175659952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362688029, 47.5726405798 ], [ -119.4024814133, 47.5956212233 ], [ -119.3831872355, 47.5969465281 ], [ -119.3320582967, 47.6264826812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546196045, 47.4837941362 ], [ -118.2546862005, 47.4856106964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.4358920299 ], [ -122.3257332902, 48.4357585766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310615854, 47.3798227122 ], [ -122.2310669107, 47.3816510809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150421028, 47.158578655 ], [ -122.2984075597, 47.1601271572 ], [ -122.2965893904, 47.1697800021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2781342919, 47.5038105301 ], [ -122.2798420437, 47.5057734725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979467991, 47.2619638744 ], [ -122.3080765164, 47.2755685609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.5057734725 ], [ -122.2844136914, 47.5118003255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1745117574, 47.5764197452 ], [ -122.1765263234, 47.5839351811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4251466525, 48.7865571974 ], [ -122.4156991339, 48.7941935233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3678919314, 48.6545170814 ], [ -122.3737540854, 48.6673698213 ], [ -122.3929591717, 48.6767773163 ], [ -122.3959171546, 48.6866733018 ], [ -122.4073092626, 48.6901697434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7308174939, 45.655963797 ], [ -122.7438998103, 45.6694309117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2153325712, 47.2145095436 ], [ -118.1150962411, 47.2443549894 ], [ -118.0820522942, 47.2578651152 ], [ -118.0234915918, 47.2986486916 ], [ -117.9764083197, 47.306520851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5111157203, 47.2502531629 ], [ -122.5150756745, 47.2568775022 ], [ -122.5219385669, 47.258344291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860786255, 48.7843780074 ], [ -122.4860047444, 48.7952060269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9640727762, 47.3120619457 ], [ -117.9134293815, 47.3361142767 ], [ -117.8797406624, 47.3697640598 ], [ -117.8450444219, 47.3928212867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.8400447632 ], [ -122.2886644352, 48.8433410199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5914996503, 47.0056760416 ], [ -120.5896360866, 47.0059926881 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4125086133, 47.4188575024 ], [ -121.4114287309, 47.405602473 ], [ -121.3981391089, 47.395175907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8839891536, 46.4708944372 ], [ -122.8803797924, 46.4829246021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8112469946, 46.2969576394 ], [ -122.7988517363, 46.3024562624 ], [ -122.7946174518, 46.3111351239 ], [ -122.7753068821, 46.3188415766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0334896745, 47.3838222996 ], [ -122.0453893577, 47.3903330933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0182971717, 47.3410067723 ], [ -122.0194447706, 47.3543865463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.2055146884 ], [ -122.6590763437, 48.2086905534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2923508391, 47.8173374386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1585629313, 47.0421430903 ], [ -124.1580458631, 47.0446019994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3006349454, 47.4249031098 ], [ -119.2762951487, 47.4275043915 ], [ -119.2594662735, 47.4250049904 ], [ -119.21615798, 47.432584836 ], [ -119.1587375545, 47.4191382519 ], [ -119.1328213855, 47.4183288429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854389282, 48.9351240348 ], [ -122.485447935, 48.9391322618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2559001868, 47.2460061029 ], [ -122.2593033654, 47.2570246683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5247105217, 48.5852161614 ], [ -119.5087900733, 48.6126127152 ], [ -119.4740104061, 48.6441487529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970611649, 47.4220162124 ], [ -122.1969627885, 47.4415056535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2699380817, 47.6708379539 ], [ -122.2639807772, 47.6750826193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096358266, 47.5340033861 ], [ -122.601757504, 47.5339879331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7253740372, 47.0679296901 ], [ -122.7090034211, 47.0697237816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6163705941, 45.6478697622 ], [ -122.6107084925, 45.647880158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2442490763, 47.3856159218 ], [ -122.2313987649, 47.3961663604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0078943102, 46.2117237268 ], [ -118.9716314101, 46.2117605619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5123492002, 48.4036826294 ], [ -119.5195878632, 48.4074511711 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.11013683, 46.7534531953 ], [ -122.0309120554, 46.7587001203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2781150352, 46.2587418451 ], [ -119.2485902926, 46.2609157729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0326707223, 47.0850835188 ], [ -123.0208342666, 47.0780579889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150062176, 46.3807401139 ], [ -120.3150102837, 46.3792337657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4900970503, 46.8410354631 ], [ -117.485569689, 46.8462038031 ], [ -117.4728550026, 46.8484992365 ], [ -117.4491740407, 46.8620068645 ], [ -117.4229038284, 46.8656513628 ], [ -117.3996057791, 46.8749458131 ], [ -117.3877903612, 46.8866484089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0930271133, 47.8390930772 ], [ -120.0898201478, 47.8397078467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0304642178, 46.1645370289 ], [ -123.0261661571, 46.1622220249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1167643996, 48.1516314237 ], [ -122.1130429581, 48.1514951182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1429848329, 47.5057588479 ], [ -122.1414184657, 47.5061993756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904086007, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2348413671, 47.588418258 ], [ -122.2203529267, 47.5824516264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8053708556, 45.8265045706 ], [ -120.8039379118, 45.8264664938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4839759446, 47.158948731 ], [ -122.4725322952, 47.1701115828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6529393278, 48.3694852783 ], [ -122.6511977801, 48.3765935554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354523656, 47.4339530916 ], [ -122.3344227391, 47.4416515583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4832840697, 48.7824744802 ], [ -122.4958895454, 48.7835005491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1742498954, 47.3867659672 ], [ -117.1737248443, 47.4229162513 ], [ -117.1504802596, 47.4304049796 ], [ -117.1426102031, 47.4378155483 ], [ -117.1421354348, 47.4475636134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343328973, 47.7341445146 ], [ -122.3289242991, 47.7341017926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5560127138, 46.4751416428 ], [ -117.4811308047, 46.4673204627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4821709855, 46.6784018527 ], [ -120.482692837, 46.6807839356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7080243736, 47.2036487713 ], [ -120.698400881, 47.209642341 ], [ -120.7006997329, 47.215577636 ], [ -120.6947810491, 47.2369919331 ], [ -120.6976443009, 47.2433710848 ], [ -120.6923436564, 47.2506189178 ], [ -120.7011122103, 47.2986247569 ], [ -120.6957500975, 47.3044682452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.5315881261 ], [ -122.0171493711, 47.533899271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6291767301, 47.6025424022 ], [ -122.6288917189, 47.6068663319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3235990471, 48.0975676978 ], [ -123.2987245907, 48.0961085325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7267485599, 46.4373575595 ], [ -122.7177660143, 46.4300338266 ], [ -122.7082095882, 46.4297795526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923508391, 47.8173374386 ], [ -122.2923358096, 47.816111394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676311053, 47.6547183962 ], [ -122.6759360238, 47.659448765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.1686131052, 48.5922259084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0544483353, 46.341189423 ], [ -117.0559678999, 46.3418155618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2746840212, 48.2730370256 ], [ -122.3124253164, 48.3052893759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4943892728, 45.5890557217 ], [ -122.4798570338, 45.5857517212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1084072105, 47.9196070975 ], [ -122.1077045908, 47.9288634652 ], [ -122.100879718, 47.9337909869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2461272383, 46.2409894234 ], [ -119.2352979381, 46.2341237242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768183035, 46.9087074668 ], [ -117.0767523409, 46.9097212815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4959893931, 46.9237521292 ], [ -120.430333448, 46.8881638576 ], [ -120.4212005019, 46.8724889781 ], [ -120.3996856862, 46.8614101436 ], [ -120.3929861408, 46.8503722268 ], [ -120.3829623596, 46.8459444194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2174597214, 47.2971248747 ], [ -122.1920375216, 47.2883683977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9287037815, 47.0601524957 ], [ -123.9302808397, 47.0618284552 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8991903157, 46.1440948709 ], [ -122.8982557871, 46.1444215752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3644243308, 47.8948319873 ], [ -124.3806106649, 47.8957632885 ], [ -124.3925708525, 47.9077321088 ], [ -124.4096776218, 47.9282853343 ], [ -124.4017832625, 47.9345882869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3960419117, 47.002634929 ], [ -123.3912683196, 47.0040697768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0006237988, 47.2257561758 ], [ -121.0029911997, 47.22593134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.4342994903, 47.3048223444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6904593755, 46.9737613337 ], [ -123.6476283043, 46.9765640486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3463796883, 48.2675248649 ], [ -124.3064146166, 48.2617164172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4366735302, 48.9489071813 ], [ -119.4441638638, 48.9563167486 ], [ -119.4508888194, 48.973570904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7415652617, 45.9061801375 ], [ -122.7425010819, 45.9056627104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6076139263, 47.472278094 ], [ -117.5967641772, 47.4763429271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9810776369, 45.663863346 ], [ -120.9541625183, 45.6629024253 ], [ -120.9408254869, 45.6665296294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.9743066653 ], [ -118.6636857174, 46.9998165576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6058982049, 47.2443593024 ], [ -119.6003280753, 47.2499775307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0351635573, 47.0854260018 ], [ -118.8814721275, 47.0869161419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3736956575, 47.7951965131 ], [ -122.3700729113, 47.7924504549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3364704335, 48.4212504751 ], [ -122.3361482633, 48.4175077145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2109843601, 47.8772104619 ], [ -122.2069786865, 47.8783103437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.8083982974 ], [ -122.5706924506, 47.8037291147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2956838746, 46.9101470708 ], [ -122.2816151022, 46.9256466238 ], [ -122.2836719967, 46.935493017 ], [ -122.2806671696, 46.9400534634 ], [ -122.2972004015, 46.9531905355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9031806451, 48.0520592106 ], [ -119.899717106, 48.0550657238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3339487259, 47.4475073103 ], [ -122.3289448539, 47.4433692551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7812799701, 46.8608150774 ], [ -122.7122024199, 46.8760779053 ], [ -122.7004740827, 46.8819430195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9323014096, 47.6518739395 ], [ -122.9384879591, 47.6412968212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4557031883, 46.7526547977 ], [ -120.4528979621, 46.7612045639 ], [ -120.4557694597, 46.7658039465 ], [ -120.4481605409, 46.7713262375 ], [ -120.4538028284, 46.7790776556 ], [ -120.4504875687, 46.7884785604 ], [ -120.4624214807, 46.800526586 ], [ -120.4458862509, 46.8007720122 ], [ -120.4401392158, 46.8070933277 ], [ -120.4553319322, 46.8189351153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3921711474, 47.9866051994 ], [ -122.4022467347, 47.9970221327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704405811, 45.6318535726 ], [ -122.6693837427, 45.6318469625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5362836535, 47.1307921694 ], [ -122.5294843284, 47.134748182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4330740998, 47.2403048183 ], [ -122.4345227013, 47.2433241411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4720339463, 46.5745548829 ], [ -120.4722493593, 46.5674944544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0023636712, 47.8395520304 ], [ -119.9981202664, 47.8393603968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.1066616235 ], [ -123.0867809993, 47.0992170671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178365864, 47.4708583363 ], [ -122.217721755, 47.4720497684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472698982, 47.6642399557 ], [ -122.3472570211, 47.6739649907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.3778354946 ], [ -122.2310615854, 47.3798227122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3800291539, 47.1741955658 ], [ -117.3584633908, 47.2145021441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3964147136, 47.0053152401 ], [ -117.4162303684, 47.0005004291 ], [ -117.4435778528, 47.0027701026 ], [ -117.4671998581, 47.0097954879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2510997896, 47.9232511801 ], [ -122.2328875048, 47.9233521925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9035782953, 46.2838610024 ], [ -122.9030769375, 46.2842542837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.9790612199 ], [ -122.1909967909, 47.9804242172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182389975, 47.1855844879 ], [ -123.9532395545, 47.1976220274 ], [ -123.969523937, 47.2214727186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.1620197263 ], [ -118.9793695341, 48.1656172167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432117884, 46.4565616045 ], [ -122.84688053, 46.4446581265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0053179052, 46.3309294575 ], [ -123.9777350926, 46.3323489831 ], [ -123.9591582091, 46.3481677178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9752267156, 46.6637302723 ], [ -118.8894036808, 46.6634446901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559008398, 46.3750297198 ], [ -117.0517810734, 46.3795878122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5537509538, 48.0996615302 ], [ -123.5398960568, 48.0974797421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3040566842, 47.947165397 ], [ -122.3011185084, 47.9488440128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289258671, 47.6987018227 ], [ -122.6226857238, 47.702539463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0122863976, 46.8024280456 ], [ -123.007921493, 46.8026940324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.6498450788, 47.5081639767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500487942, 47.7980256738 ], [ -117.3489538413, 47.8018716143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6971089618, 47.524879573 ], [ -122.6996522214, 47.5252936288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.7381439938 ], [ -119.1773608192, 46.7412901614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649177077, 48.2647143139 ], [ -122.2746840212, 48.2730370256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1892028116, 47.3678526781 ], [ -122.1811585184, 47.3649772586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0430468348, 47.1585051205 ], [ -122.036347956, 47.1580428725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3555721402, 47.978279434 ], [ -122.3561926794, 47.9788192594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2848476708, 47.1815733492 ], [ -122.2828899445, 47.1858920985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862318775, 47.6058898709 ], [ -122.1885119703, 47.6116238629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293785955, 47.1902878983 ], [ -122.2293212399, 47.1843499681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269725806, 47.5417504284 ], [ -122.6274333676, 47.5344924995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.2998428644 ], [ -122.2470734178, 47.3105055416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078901312, 46.9418030245 ], [ -122.9078782799, 46.9473039393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4677352564, 45.7152835978 ], [ -121.4664701671, 45.7148037075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8035781755, 48.9610755132 ], [ -117.8260454275, 48.9825544193 ], [ -117.8316760948, 49.0005187362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1708437963, 48.4288296254 ], [ -118.1721144093, 48.4502822246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4360006417, 48.7109840533 ], [ -119.4060187455, 48.7641667069 ], [ -119.3995222327, 48.7939812329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3903629125, 47.3216340622 ], [ -122.3708239951, 47.3286992032 ], [ -122.3654780308, 47.3194849976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3840920127, 46.2062528444 ], [ -123.3821019742, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.8521537918 ], [ -122.5873849699, 47.8401132773 ], [ -122.5836844979, 47.8135870398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8141165471, 47.7731482573 ], [ -120.7878973606, 47.7642158415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.9640230526 ], [ -122.352240221, 48.9636327884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857562885, 48.1523511436 ], [ -122.1829723721, 48.1524164911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0747632734, 47.641906708 ], [ -120.0714795546, 47.648195998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.9367931061 ], [ -119.0105057584, 47.9398197883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3829577285, 45.705115008 ], [ -121.3759162286, 45.7092484545 ], [ -121.3443236712, 45.7108946405 ], [ -121.3062630807, 45.7050166524 ], [ -121.2904509822, 45.6962586457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5318979045, 45.6826849971 ], [ -122.5077498431, 45.6840205721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874842611, 46.5393952983 ], [ -117.0892586477, 46.5431821646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929510336, 47.905080688 ], [ -122.2933970337, 47.9108132967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2839019256, 48.3051822196 ], [ -117.2577905977, 48.2662465526 ], [ -117.2411593235, 48.2498304367 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7426319216, 46.20699312 ], [ -119.7486010675, 46.2060790676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.2595150494 ], [ -119.0867515262, 46.2655755624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2102027734, 47.9096841492 ], [ -122.2019957815, 47.9271375522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9811418748, 46.1544576439 ], [ -122.974844153, 46.1513553719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4759788061, 46.681083667 ], [ -120.4871781519, 46.6713847636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710615487, 47.6700439942 ], [ -122.2699380817, 47.6708379539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0474672026, 47.8548480152 ], [ -120.0356242216, 47.8496165293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897117864, 47.2283165519 ], [ -121.9897674878, 47.2427944952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2104399855, 48.5159581466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5663025103, 47.9938759436 ], [ -117.6038139756, 48.0324402361 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.0543832543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9423990512, 47.5302140606 ], [ -121.9356420479, 47.5224107728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6903245553, 47.5619414589 ], [ -117.6837381984, 47.566162133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6774101021, 47.5636481361 ], [ -122.6811544626, 47.5662461986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349746441, 47.5375233364 ], [ -122.3350027439, 47.5378934087 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3841243851, 47.8153402952 ], [ -119.3626574045, 47.8153679549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3142184025, 46.4146304102 ], [ -120.3146069423, 46.4038122596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7157590122, 46.3489750762 ], [ -123.7059505973, 46.3368666444 ], [ -123.694991834, 46.3327351476 ], [ -123.6898715896, 46.3183120371 ], [ -123.6592989856, 46.3330689844 ], [ -123.6405403984, 46.3349412244 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079784055, 48.4355954608 ], [ -122.2961576193, 48.435565171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0574168065, 46.4199273309 ], [ -117.0468945815, 46.4199295935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947362877, 47.2575680773 ], [ -122.2979467991, 47.2619638744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9882608553, 48.2735411001 ], [ -121.9610038225, 48.2684611163 ], [ -121.9318997964, 48.2706730135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.3978963103, 48.1061923633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5160199943, 47.3953842075 ], [ -121.4905907506, 47.3968832449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0439333142, 48.1840295652 ], [ -117.0441181005, 48.1780553435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576684527, 47.6540467209 ], [ -118.1565942739, 47.6540477597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8992668381, 46.1802918975 ], [ -122.8950160535, 46.1910097955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937941925, 47.0829397886 ], [ -122.2935392549, 47.0986145276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6413017681, 46.8104615568 ], [ -117.593064935, 46.8132659409 ], [ -117.5586417087, 46.8037170574 ], [ -117.5379557025, 46.8086463059 ], [ -117.52930964, 46.8231348395 ], [ -117.5178051863, 46.8292156508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3245445805, 47.4367115543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3424452974, 48.4769135735 ], [ -122.3416041033, 48.4806846506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645970993, 45.6715670557 ], [ -122.6645242594, 45.6843405722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1295906216, 47.8811242831 ], [ -120.1084617824, 47.8738712824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112745852, 47.6530477533 ], [ -117.4111435799, 47.6590755437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2436783372, 47.757435704 ], [ -122.2135261083, 47.7504974579 ], [ -122.2093581645, 47.7588250331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1441855248, 47.1674591072 ], [ -122.1171685745, 47.1658351362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7040622718, 47.5520049051 ], [ -117.6903245553, 47.5619414589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.7921007504 ], [ -118.7472041173, 46.7900290895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0875131805, 46.9125608238 ], [ -117.083074089, 46.9114449779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4036573523, 47.9700998663 ], [ -124.4027159358, 47.9795700328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.3547293908, 46.000879137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0993240354, 47.1390009974 ], [ -122.0947304936, 47.139868914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7476202885, 46.2140157031 ], [ -119.7431160592, 46.21487318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9888740579, 47.2031602024 ], [ -121.9876439189, 47.202569875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9277931611, 46.6221965746 ], [ -122.9414768713, 46.633570246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.1824916579 ], [ -119.3489993938, 47.189958653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0454478886, 48.1840423049 ], [ -117.0439333142, 48.1840295652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3692193944, 47.4758683659 ], [ -120.3461737894, 47.4701826048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4083499421, 47.2391797955 ], [ -122.4000472078, 47.2402668908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004124588, 47.3957738513 ], [ -122.2985045151, 47.39547624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134933014, 47.7033989052 ], [ -119.8130784885, 47.8092766362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1093210645, 47.8989017492 ], [ -122.1084072105, 47.9196070975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8766472391, 46.1027391181 ], [ -122.8834047537, 46.113522401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3857916688, 45.5806082164 ], [ -122.3855374224, 45.5797321231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6861432864, 48.2123143699 ], [ -122.6931398543, 48.2123094716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3650011171, 46.8751003196 ], [ -117.3649675878, 46.8759309573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.5432499372, 47.9032589462 ], [ -124.5843571045, 47.8989411015 ], [ -124.5896096738, 47.8935749777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.4952529972 ], [ -120.3051164258, 47.5266969435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5298400174, 47.5049019302 ], [ -122.5243096729, 47.5048277184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.8531276258 ], [ -117.645634686, 47.8601052658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7263837289, 48.8921522797 ], [ -122.7266598296, 48.9068699571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9722788914, 47.3073278653 ], [ -117.9726679277, 47.3094719647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6743723204, 48.2692255901 ], [ -121.6500900855, 48.2728153124 ], [ -121.6360735698, 48.2637676424 ], [ -121.6087560562, 48.2553398746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.1309639391 ], [ -122.0993240354, 47.1390009974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.7015013824, 47.7577620281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0890281054, 47.5593389769 ], [ -122.0695554806, 47.5516320142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7967192306, 45.7024032011 ], [ -120.7833426983, 45.7091771574 ], [ -120.7319438816, 45.7170108114 ], [ -120.7221536232, 45.7293069774 ], [ -120.6517779943, 45.7521047655 ], [ -120.6135360378, 45.7563909158 ], [ -120.5610451158, 45.7497909585 ], [ -120.5332228068, 45.7346091661 ], [ -120.5114600933, 45.7166372424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2494308353, 47.4122081687 ], [ -122.2487949553, 47.4322754113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8966827506, 47.2327403563 ], [ -119.8747183109, 47.2330604599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.9203722024, 48.5548430412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3846465219, 47.4488701305 ], [ -117.3998174003, 47.4705479987 ], [ -117.3997755612, 47.5144285359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1378345116, 47.804839361 ], [ -122.1137494257, 47.8050106332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6378671733, 46.2418590791 ], [ -119.6231476737, 46.2473883891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9708431325, 46.1276076543 ], [ -122.9627838072, 46.122637066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3591982992, 47.7502754755 ], [ -117.3658073843, 47.7605601689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.5668492127 ], [ -122.3393652388, 47.5748709959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6041613497, 46.9661133917 ], [ -123.6009036248, 46.9747491231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.1810552137 ], [ -117.039658043, 48.1780212144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4027159358, 47.9795700328 ], [ -124.3923505431, 47.9892462948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.1661035805, 47.0934677871 ], [ -117.1829751603, 47.1048097168 ], [ -117.2006505617, 47.1259714675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0693320216, 46.4212282179 ], [ -117.0739785142, 46.426337746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.329127007, 47.5903078499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.2024103912 ], [ -122.2984249952, 47.1999364331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.4929517328 ], [ -124.0332571479, 46.5053645236 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2948243841, 47.4982893333 ], [ -122.2981196901, 47.5020226852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957532497, 47.6240627613 ], [ -117.4685078514, 47.6390299187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9032240437, 47.1642334315 ], [ -121.8720051785, 47.1614029692 ], [ -121.8491037107, 47.15273018 ], [ -121.8248002007, 47.1594263485 ], [ -121.7896956437, 47.1776620458 ], [ -121.7241753305, 47.1569952423 ], [ -121.6890804036, 47.1533532154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158418422, 47.2671438187 ], [ -122.5158979379, 47.271095951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410260439, 48.4420756317 ], [ -122.3411431465, 48.4469767522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958516184, 47.4404648377 ], [ -122.2961885635, 47.4452613117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7888286163, 48.0414353719 ], [ -122.7936594895, 48.0437626987 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0820864503, 46.2486605032 ], [ -119.082542582, 46.2513545129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.9220918299 ], [ -122.2635417231, 47.9221791593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.4832690795 ], [ -121.7812157741, 47.4740748071 ], [ -121.7651585878, 47.4732140567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1773608192, 46.7412901614 ], [ -119.1764209525, 46.7675625649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.9892213843 ], [ -123.8857699354, 46.9900928031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.3560125261 ], [ -123.5796596528, 46.3569722482 ], [ -123.5716587538, 46.3606344951 ], [ -123.5279784869, 46.3476726817 ], [ -123.4985989794, 46.3468225811 ], [ -123.4940632677, 46.3246853921 ], [ -123.4668950282, 46.295217675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8524014486, 46.6510749802 ], [ -118.8511888124, 46.6508402423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.9433157516 ], [ -119.0106509547, 47.9393125368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6065410768, 46.9419413133 ], [ -122.6057120793, 46.9414897752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5927942323, 47.5049278803 ], [ -122.5510696792, 47.5051569339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897674878, 47.2427944952 ], [ -121.9855912992, 47.2608703461 ], [ -121.993396961, 47.2701490347 ], [ -121.9893553049, 47.2856086782 ], [ -121.9987441084, 47.2949136689 ], [ -122.002777857, 47.3067016972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4719132383, 46.252522673 ], [ -119.4711841566, 46.2575715157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5933186815, 46.9783764391 ], [ -123.481658804, 46.9993368592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.1970611649, 47.4220162124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0447225968, 46.3088719536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2476233983, 48.0127941378 ], [ -118.2370390967, 48.0181683325 ], [ -118.2214889113, 48.0495658171 ], [ -118.2229361425, 48.0536372397 ], [ -118.1970382045, 48.0730473236 ], [ -118.2047001305, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.2040162741, 48.1089461065 ], [ -118.200662958, 48.1160236535 ], [ -118.192017662, 48.1178376661 ], [ -118.202303033, 48.1171744248 ], [ -118.2090938982, 48.1247874877 ], [ -118.2017532025, 48.1348019428 ], [ -118.1667978159, 48.1559458942 ], [ -118.1710111219, 48.1632157542 ], [ -118.1677592146, 48.1778167061 ], [ -118.1719498116, 48.1908780528 ], [ -118.1700073083, 48.1986778218 ], [ -118.1799617419, 48.2055463123 ], [ -118.1754317167, 48.2178911392 ], [ -118.1569623818, 48.2283942399 ], [ -118.1354121563, 48.2515691219 ], [ -118.1314821032, 48.2619991359 ], [ -118.1360883381, 48.2791408008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7381959686, 46.9710907007 ], [ -123.6904593755, 46.9737613337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2274240044, 47.30291529 ], [ -122.2193270337, 47.30338806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9378634013, 46.8432344905 ], [ -119.9417957659, 46.8489960363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2815700733, 48.1364858296 ], [ -122.2814765504, 48.1399591811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0272288264, 47.8361946595 ], [ -120.0250689519, 47.8360845439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.2109843601, 47.8772104619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169355081, 45.795557156 ], [ -120.8072496646, 45.8123784315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1400802554, 47.8145116129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1568931216, 48.1895403281 ], [ -124.1366332936, 48.1896932833 ], [ -124.1191842401, 48.1973336885 ], [ -124.1119721489, 48.1930568586 ], [ -124.099026134, 48.1963808527 ], [ -124.0654490759, 48.1842032056 ], [ -124.067003423, 48.179499668 ], [ -124.0625034827, 48.1822719075 ], [ -124.0609965475, 48.1744746566 ], [ -124.0071237943, 48.1712466081 ], [ -123.9983013856, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.1599293665 ], [ -123.9544082731, 48.1651293696 ], [ -123.9450001967, 48.1636797033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.1784207654 ], [ -121.9946857537, 47.1974841035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2441256362, 48.5062952131 ], [ -122.2437055114, 48.507550046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.9970221327 ], [ -122.4150175631, 48.0010609611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5104823423, 47.5048487373 ], [ -122.5035093915, 47.505998994 ], [ -122.5010531946, 47.5121479033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736865914, 48.7254915984 ], [ -122.4674230818, 48.7381587883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8696023471, 46.2515208776 ], [ -119.8182520318, 46.2379730535 ], [ -119.7975638125, 46.2245562959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754402986, 48.8651910486 ], [ -121.6783150365, 48.8665390524 ], [ -121.6799490243, 48.8623665546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0782317267, 48.3464626059 ], [ -120.0545756911, 48.3445792629 ], [ -120.0431258874, 48.3481890608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5034799431, 45.9983583464 ], [ -122.5258480464, 45.9932136954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7477462633, 46.6933741544 ], [ -123.7523543573, 46.686064117 ], [ -123.7680296972, 46.6803622831 ], [ -123.7755784334, 46.6820267252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2505086155, 47.804211862 ], [ -124.2505172054, 47.8109376742 ], [ -124.2580730119, 47.8098225751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9230833697, 46.2536596942 ], [ -123.9486490068, 46.2763382177 ], [ -123.9684991984, 46.3063276073 ], [ -124.0020006548, 46.3205770833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.8959740416 ], [ -124.108797736, 46.9022648982 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.5775403152, 46.5133343443 ], [ -122.5624407348, 46.517004806 ], [ -122.550440133, 46.5344542826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8408960953, 46.4378300484 ], [ -122.8360736283, 46.4372194695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6538586045, 45.7228492671 ], [ -122.6539986238, 45.7231498065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1701797505, 47.1175620554 ], [ -124.1774711517, 47.126216089 ], [ -124.1826998409, 47.1546474521 ], [ -124.1877734935, 47.1568704766 ], [ -124.192508816, 47.1667261776 ], [ -124.1884261401, 47.1715589354 ], [ -124.1943335755, 47.1777040428 ], [ -124.1872853992, 47.1802398968 ], [ -124.1970883653, 47.1823629315 ], [ -124.1977866952, 47.2037633126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1774995641, 47.3024217933 ], [ -122.1583977367, 47.3298300754 ], [ -122.1475130648, 47.3390747692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.4906407097 ], [ -124.0338926368, 46.4915291514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2799690003, 47.8826891954 ], [ -122.2849614715, 47.889952125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8203461375, 47.4070484463 ], [ -122.8153357809, 47.4049429252 ], [ -122.8113444229, 47.3926501334 ], [ -122.8159977791, 47.3779028227 ], [ -122.8058112478, 47.3601334979 ], [ -122.7907640195, 47.3624582676 ], [ -122.7783007191, 47.374504504 ], [ -122.7727867254, 47.3724749266 ], [ -122.771733287, 47.3675849633 ], [ -122.7640925019, 47.3690425701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3832242727, 47.8097517091 ], [ -122.3831772587, 47.8031153818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921188204, 47.8129694111 ], [ -122.1799369192, 47.8125762494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8143955605, 46.9760348973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9532472828, 47.5883720957 ], [ -121.9327980228, 47.5785984862 ], [ -121.9049232747, 47.5724947503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.2931738148, 47.9220879011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4024404199, 47.7757947974 ], [ -117.4020716363, 47.7805975201 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8846884522, 46.2587169246 ], [ -119.8696023471, 46.2515208776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112427568, 47.6526173898 ], [ -117.4112745852, 47.6530477533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6304436393, 47.5650259077 ], [ -122.629614867, 47.5650234096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3245572303, 47.7776430656 ], [ -122.3137091087, 47.7773380757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2736672441, 46.0850299125 ], [ -118.2672424979, 46.0864775034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6565631198, 47.9990210152 ], [ -119.6525696935, 48.0041955683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.0963861688 ], [ -123.5396953537, 48.0975545684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6947545489, 46.7266771426 ], [ -120.6682357978, 46.7114791155 ], [ -120.6535718414, 46.6949663919 ], [ -120.6511837992, 46.682767821 ], [ -120.6206863347, 46.6605003365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3595018472, 47.6413739111 ], [ -119.3541224664, 47.6543643378 ], [ -119.3628837429, 47.6709101104 ], [ -119.3626574045, 47.8153679549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3654780308, 47.3194849976 ], [ -122.3605429103, 47.3207278571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694499846, 47.0015817743 ], [ -122.6553305469, 46.9933014974 ], [ -122.6470692004, 46.9763124318 ], [ -122.6325310381, 46.9646197548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1342855473, 46.7970731587 ], [ -119.1343129277, 46.818765882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.2168054788 ], [ -119.1380609673, 46.216909794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6546046376, 47.70607599 ], [ -122.6455230644, 47.699437756 ], [ -122.6289258671, 47.6987018227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7197711644, 46.5320488595 ], [ -122.6442388387, 46.5318795567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014846937, 48.1878947696 ], [ -122.1921631348, 48.1882508645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.7236094662 ], [ -122.1871980092, 47.7384984553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7402748344, 45.9071079053 ], [ -122.7415652617, 45.9061801375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3423037081, 47.7341359849 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2445299041, 47.3611482288 ], [ -122.2439880813, 47.3740667238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2633967769, 47.4587012142 ], [ -122.2670557408, 47.4665917564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616630283, 47.2001928833 ], [ -122.462495706, 47.2142916788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3277374047, 47.4792708197 ], [ -122.3272024219, 47.4854072542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8784338391, 47.8213945565 ], [ -122.8867284289, 47.8204635395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4672879853, 46.7034528115 ], [ -117.4648072806, 46.7209769351 ], [ -117.4712118709, 46.7125945025 ], [ -117.4792740728, 46.7112771519 ], [ -117.4877195547, 46.7310206754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3700729113, 47.7924504549 ], [ -122.3667991767, 47.790544377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7338240699, 47.9543732544 ], [ -122.7387409377, 47.9595773681 ], [ -122.7406674139, 47.9788642723 ], [ -122.7484287352, 47.9946458229 ], [ -122.7585868562, 48.0067586832 ], [ -122.7686405015, 48.0112283115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6021851057, 46.8903722209 ], [ -119.5806705958, 46.8856606496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803797924, 46.4829246021 ], [ -122.87656073, 46.494718014 ], [ -122.8765100174, 46.5439285548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1591468798, 47.1688389452 ], [ -122.1485727781, 47.1677245225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.8889120074 ], [ -122.5018126834, 45.8933986585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0040609275, 46.5740844587 ], [ -119.0017412812, 46.5851433384 ], [ -119.0063294763, 46.5974626974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.4475535195 ], [ -123.8797547045, 47.4557845081 ], [ -123.8856775734, 47.4568668079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7891868451, 46.5254691689 ], [ -117.7762087351, 46.5365465696 ], [ -117.774915493, 46.5482610417 ], [ -117.7695236781, 46.5563503655 ], [ -117.7807630648, 46.5681984198 ], [ -117.7751352134, 46.580586403 ], [ -117.7852894412, 46.5874957373 ], [ -117.781376055, 46.592409526 ], [ -117.7913837991, 46.6144419053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2525911983, 47.4840343924 ], [ -122.2490284682, 47.4830589416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9008434138, 48.4812158123 ], [ -117.9030142887, 48.4912950401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.2663139585, 47.8342508992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9063657838, 46.1800997708 ], [ -122.9051023405, 46.1847118489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4630590407, 47.1874722949 ], [ -122.4620882803, 47.1970495358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3544482975, 46.1872368309 ], [ -123.3284135658, 46.1638323685 ], [ -123.2823984896, 46.1526498853 ], [ -123.2628134616, 46.1553986607 ], [ -123.2326272804, 46.1727272565 ], [ -123.1771557033, 46.1884708528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1187528092, 48.1643133094 ], [ -122.1285623751, 48.1783060226 ], [ -122.1285221878, 48.1877057823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7363030997, 46.6466193959 ], [ -119.8006316104, 46.633273275 ], [ -119.8505806667, 46.6339001593 ], [ -119.8948432937, 46.6642061796 ], [ -119.9070616699, 46.6806375323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.1849328401 ], [ -119.1670085036, 46.1917196627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0381349997, 47.0457147607 ], [ -124.0440853494, 47.0525732949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7091478999, 47.7594544328 ], [ -118.707944478, 47.7591802313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6160035758, 46.6478940682 ], [ -121.6109588785, 46.6497792928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7350857122, 47.8671728801 ], [ -121.7199344676, 47.8658767679 ], [ -121.7022061254, 47.8572690469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.3893726474 ], [ -119.4842297169, 47.3934848684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1937378718, 48.1522064888 ], [ -122.1872561406, 48.1523209798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7038991686, 46.6750455817 ], [ -123.6950836877, 46.6690700815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6555581763, 47.650535837 ], [ -122.6676311053, 47.6547183962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2598462586, 47.83972786 ], [ -122.2583869574, 47.8454224344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2554591689, 47.1454962289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340930823, 46.5322486745 ], [ -122.613916913, 46.5330861252 ], [ -122.6035425582, 46.5285458674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1420864524, 47.6544054526 ], [ -118.1408999543, 47.6547957468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022010791, 48.7460185067 ], [ -122.2007828338, 48.7782923251 ], [ -122.1904825956, 48.7896980395 ], [ -122.1904549774, 48.7962085212 ], [ -122.1981325832, 48.8071844986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7831995028, 48.1070075798 ], [ -122.7810617654, 48.1076558595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4309020008, 48.1191579416 ], [ -123.4317237119, 48.1182747731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534105031, 47.2194487082 ], [ -119.8534053473, 47.2223294365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1566785185, 48.0769008073 ], [ -123.1417952785, 48.074895211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114493708, 47.3915360181 ], [ -122.3079523143, 47.3909890982 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7482609923, 47.473255323 ], [ -121.7228989931, 47.4670798095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7402153352, 46.7962897708 ], [ -118.7081501436, 46.8144289467 ], [ -118.6742632423, 46.8226983388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3058304988, 46.9520915888 ], [ -121.2558073968, 46.9665971639 ], [ -121.2103710587, 46.9691134856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6128336455, 48.4963987197 ], [ -122.6127739583, 48.5004551192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6475719156, 47.5652581761 ], [ -122.6463329022, 47.5650689234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0411447066, 47.5428659307 ], [ -122.0241863249, 47.5315881261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028757982, 47.3000530138 ], [ -122.2981579128, 47.312895011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.9310935459 ], [ -119.8822982751, 47.9420181745 ], [ -119.8757419687, 47.9580513417 ], [ -119.8879581207, 47.9724408061 ], [ -119.8895324357, 47.9825320573 ], [ -119.8858510006, 47.9902643238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0796037239, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.1114439556, 47.4631544785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7924840113, 45.7161680262 ], [ -121.786225659, 45.7141304128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.2788022155 ], [ -119.3023056898, 46.2676765369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5903183471, 46.0567683361 ], [ -118.5192085128, 46.0499502566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1344405077, 47.0889844077 ], [ -119.1212539974, 47.0877998117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.6007985246 ], [ -122.7112388207, 47.6052288214 ], [ -122.7124496038, 47.6114063118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0934185999, 46.2851671356 ], [ -119.0925020979, 46.3401794742 ], [ -119.0860022305, 46.3582053906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2702955652, 47.4970013804 ], [ -122.25791496, 47.4871309015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495747173, 47.9706537304 ], [ -117.3495866356, 47.9814746809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1900642724, 48.4775740271 ], [ -120.1854211418, 48.4778068438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8886284736, 47.4026822769 ], [ -123.8763097221, 47.4213934899 ], [ -123.877036547, 47.4475535195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3128299563, 47.4225323717 ], [ -120.3062213119, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5776035522, 47.4100021272 ], [ -121.5501634492, 47.3981832043 ], [ -121.5324173506, 47.3958007915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2331720885, 47.8210669673 ], [ -122.2307337316, 47.8178356076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3771418088, 46.1802763744 ], [ -123.3774493287, 46.1875902746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942457468, 47.1191324392 ], [ -119.2911115679, 47.1240365899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5309634911, 46.9718013391 ], [ -120.5263000656, 46.9709601801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.7967192306, 45.7024032011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.8835917466, 47.5090369919 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3307967988, 47.6088249044 ], [ -122.3301905624, 47.6128797259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.5657555269 ], [ -122.6328642069, 47.5666355148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5918452042, 48.8890326206 ], [ -122.6067680743, 48.8981282277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9608696722, 46.8965879431 ], [ -122.9594136168, 46.8965445916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1050673886, 47.1296410636 ], [ -123.0991749755, 47.1301780444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8575716456, 46.0374677293 ], [ -122.8610659653, 46.0478652505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7345388535, 48.1360534594 ], [ -123.716298311, 48.1315509218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.4802520054 ], [ -124.0276869285, 47.471479931 ], [ -124.0967538612, 47.4885408949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3585353638, 48.9093392192 ], [ -122.3580820498, 48.915412848 ], [ -122.3519395171, 48.9160269917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839184276, 47.5658400246 ], [ -122.1766955576, 47.5724700872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.0234388073 ], [ -122.8575716456, 46.0374677293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3193801568, 46.2995221994 ], [ -118.29383435, 46.2991695402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.5961003788 ], [ -122.4055405288, 45.5917612872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7284141787, 48.9757559926 ], [ -122.7335974346, 48.9792119734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5430046419, 46.2654844556 ], [ -119.523755174, 46.2613892962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.9126704949 ], [ -122.7346098799, 47.9375467064 ], [ -122.7338240699, 47.9543732544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.1117747241 ], [ -118.3686788882, 47.1150041492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.1216324995 ], [ -122.9261218499, 46.1229717137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3243406744, 47.397956274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6781103544, 45.9394909444 ], [ -122.6958656415, 45.9431672649 ], [ -122.7043424684, 45.9356642435 ], [ -122.7200617061, 45.9337898632 ], [ -122.7226222255, 45.9280008842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2882313209, 47.6170498652 ], [ -119.2828183812, 47.6193764429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1090869647, 46.8588515883 ], [ -124.1108347849, 46.868530839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6782492386, 47.3327708536 ], [ -118.6676786101, 47.3291647101 ], [ -118.6597780517, 47.3328929749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6268938205, 46.9614926076 ], [ -122.6170471339, 46.9569922317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9220375425, 46.7426875865 ], [ -121.9184730058, 46.7411984508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4933154474, 46.3115165199 ], [ -119.4925583765, 46.329979207 ], [ -119.4539087276, 46.3558692568 ], [ -119.4460453581, 46.3716676172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8258142714, 46.9714747617 ], [ -123.8309808672, 46.9760099288 ], [ -123.8521750453, 46.9760733389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6579299947, 47.9994661851 ], [ -119.6684791314, 48.0046240362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3787722403, 47.8124279259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058230966, 48.5454377559 ], [ -117.9058418724, 48.5465546852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6561026165, 48.1181029102 ], [ -123.5981693413, 48.116751797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328542511, 46.9587926513 ], [ -122.6076963808, 46.9425842125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1616167206, 48.1521235496 ], [ -122.1507870886, 48.1520523663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555823489, 47.8588071968 ], [ -117.3555936398, 47.8589452723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2799050476, 47.6816356586 ], [ -117.2448313626, 47.6887168246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2398779598, 47.5908053835 ], [ -122.2348413671, 47.588418258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093039324, 47.6428078098 ], [ -122.1932937046, 47.6371487563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6697674526, 47.5997916763 ], [ -119.6612151194, 47.6070005476 ], [ -119.6066831591, 47.5993624318 ], [ -119.519316737, 47.5996716644 ], [ -119.506659076, 47.6061494046 ], [ -119.4900236905, 47.6081531287 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4538503546, 47.9182613584 ], [ -117.4773490149, 47.9428804513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129385008, 47.91279953 ], [ -122.2088000662, 47.9150721941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462357173, 48.4217075774 ], [ -122.3364704335, 48.4212504751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5121334624, 45.776374164 ], [ -121.5065371663, 45.7819263952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3993841644, 47.6751810229 ], [ -124.4100299932, 47.6905385507 ], [ -124.4131584898, 47.7153241709 ], [ -124.3232512525, 47.7503923932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5219723944, 46.626090815 ], [ -120.5169772116, 46.6260720818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3133128707, 48.9245515322 ], [ -117.307119418, 48.9291991442 ], [ -117.3165313082, 48.9327488117 ], [ -117.3199075356, 48.941222607 ], [ -117.3159801283, 48.9518030247 ], [ -117.3175917456, 48.9601239582 ], [ -117.3114187744, 48.9688574605 ], [ -117.3132407923, 48.9844676109 ], [ -117.3082024553, 48.987334862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8307822154, 47.1036973105 ], [ -119.829366692, 47.1025741429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.7948982738, 48.9007751191 ], [ -117.7898246409, 48.9128912695 ], [ -117.7787592741, 48.9171693044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3873073485, 47.2789522223 ], [ -122.4046720676, 47.2838514749 ], [ -122.4168936072, 47.2966428978 ], [ -122.4326700109, 47.2980606258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8024187553, 46.9692826304 ], [ -123.8023268261, 46.9706138586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1724700156, 46.747419563 ], [ -117.1689737584, 46.7599890779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791204594, 47.8613218296 ], [ -121.9772544823, 47.8608534091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224229641, 47.6404419429 ], [ -122.3161312286, 47.6429143031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6170471339, 46.9569922317 ], [ -122.6116398299, 46.9565353077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288029427, 47.6101244229 ], [ -122.6288340771, 47.6158812787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6462988146, 47.596485754 ], [ -120.6287660452, 47.5891210126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1788357705, 46.7295852663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108536601, 47.7513199125 ], [ -117.4105237126, 47.7523163592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318739382, 47.234680353 ], [ -122.4322202216, 47.2386425935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8848678307, 47.9879382073 ], [ -122.883245172, 47.9882925028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6709875264, 47.5540420396 ], [ -122.6774101021, 47.5636481361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103335991, 46.482928058 ], [ -122.8974973541, 46.4793963978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4674043677, 46.5847787764 ], [ -120.4512101301, 46.5770853276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8278685905, 46.9716853763 ], [ -123.8269852287, 46.9708707418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3913392846, 47.3891157864 ], [ -117.3895677666, 47.4250017467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127725976, 48.3407796335 ], [ -122.3057217067, 48.3394359548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5077498431, 45.6840205721 ], [ -122.5063250059, 45.6848578255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4798850922, 46.5977376972 ], [ -120.4748023779, 46.5896995193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2955397516, 47.040162607 ], [ -122.2953114868, 47.0439310162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4751978366, 48.3959072026 ], [ -119.5023027759, 48.4022781572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4127242746, 47.7151457037 ], [ -117.4351007945, 47.7154472911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108693497, 47.8004619779 ], [ -122.2077141546, 47.8063531965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2223022809, 46.5981111151 ], [ -118.2257643504, 46.6045957035 ], [ -118.2223138409, 46.6097615191 ], [ -118.2404866495, 46.6279194815 ], [ -118.2450914062, 46.6416022081 ], [ -118.2651804981, 46.6565738532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134270225, 47.6531107382 ], [ -117.4134608952, 47.6527226616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7793761782, 46.2212051746 ], [ -119.7556065922, 46.2209514813 ], [ -119.7456908937, 46.2158646763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1320219502, 47.2363423355 ], [ -123.1277858514, 47.2236494996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3518193824, 47.7919039464 ], [ -117.3500487942, 47.7980256738 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2920566884, 47.4105282137 ], [ -120.2941276522, 47.4130153494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8090468875, 46.9772106863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3329165329, 47.5234893652 ], [ -122.3343743094, 47.5297826683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931085242, 47.392427434 ], [ -122.2865268063, 47.3906729649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.6497283577 ], [ -122.5906026172, 45.6527948204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.4352395576 ], [ -117.7149843296, 47.4501888753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8260870372, 47.777964567 ], [ -120.8141165471, 47.7731482573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9796978543, 47.9684303804 ], [ -118.9621464726, 47.9788971521 ], [ -118.95552571, 47.9967673661 ], [ -118.9422778312, 48.0154868034 ], [ -118.9435832543, 48.025575113 ], [ -118.9867693325, 48.0530626329 ], [ -118.9736668822, 48.0641934995 ], [ -118.9821481019, 48.0758148849 ], [ -118.9820321546, 48.0927666601 ], [ -118.9898155429, 48.1044621788 ], [ -118.9790932527, 48.1197891062 ], [ -118.9775744375, 48.130752286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547617311, 46.345935959 ], [ -124.0547456263, 46.346612471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2671353579, 48.4299276122 ], [ -122.264774667, 48.429909313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5970369922, 47.0955432506 ], [ -117.6318611212, 47.1066720807 ], [ -117.6461224106, 47.1166306215 ], [ -117.6838431177, 47.1180750089 ], [ -117.707883861, 47.1113392664 ], [ -117.7190609148, 47.1167193872 ], [ -117.7345700167, 47.1169266042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1421354348, 47.4475636134 ], [ -117.141577431, 47.4500082492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3460816248, 46.8885837829 ], [ -117.3041492589, 46.8990209551 ], [ -117.2746295508, 46.9141916061 ], [ -117.2704255183, 46.9127594447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903760819, 47.9768936616 ], [ -122.1829774552, 47.9869383211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8834047537, 46.113522401 ], [ -122.8982367501, 46.1289443409 ], [ -122.8976072607, 46.1404539675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6929707776, 47.5042331597 ], [ -117.6934989729, 47.5042678567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8081064714, 45.8245819424 ], [ -120.8053708556, 45.8265045706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9119035401, 46.1765920328 ], [ -122.9063657838, 46.1800997708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497979206, 46.8597063959 ], [ -117.3570081447, 46.8650918135 ], [ -117.3554031402, 46.8717225878 ], [ -117.3641647883, 46.8740109029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.068840619, 46.9108595721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.1916397461 ], [ -122.2293785955, 47.1902878983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0239734671, 46.7645457326 ], [ -117.9831420651, 46.7629392432 ], [ -117.9366891767, 46.7853119491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0970384228, 46.8218084668 ], [ -123.0905398888, 46.8217373497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0545804856, 46.3501186151 ], [ -124.0544043707, 46.3526539161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9747719324, 46.7112626752 ], [ -122.9699877988, 46.7110483932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376219385, 47.4652954001 ], [ -122.1566237324, 47.4685018085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4815523866, 47.9470052096 ], [ -117.5235622768, 47.9784884907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418858195, 46.4199930726 ], [ -117.0398979045, 46.4201869144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286086093, 47.4699818296 ], [ -122.3127555504, 47.4701556709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8029450786, 46.9697219828 ], [ -123.8046532988, 46.9702958878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.2781150352, 46.2587418451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3690791376, 48.8628154536 ], [ -117.364148903, 48.8597893208 ], [ -117.3617197932, 48.8661339983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3836725936, 48.891377649 ], [ -122.3760304765, 48.891834109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6786220988, 48.073901581 ], [ -123.6689386318, 48.0733486098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1922476604, 47.98179891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5384276031, 46.6224575094 ], [ -120.5219723944, 46.626090815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.9514925058 ], [ -122.0707436627, 47.9406113033 ], [ -122.0751751165, 47.9197652005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8133324553, 47.0524920951 ], [ -122.7878727232, 47.0597313969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9420276289, 48.8891584197 ], [ -121.9241996724, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.9058079495 ], [ -121.8682821094, 48.9018532858 ], [ -121.7845347292, 48.9125297162 ], [ -121.7740122508, 48.9093794354 ], [ -121.7601734233, 48.9113382708 ], [ -121.7351648161, 48.9028517067 ], [ -121.7046225873, 48.9084869163 ], [ -121.6936997501, 48.906634052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3590200387, 46.8898382458 ], [ -122.3589746896, 46.8933149788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.6496170314 ], [ -122.3223421817, 47.6560094062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1858412261, 47.7634469513 ], [ -122.1876596894, 47.7659065312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3520946491, 47.9747243569 ], [ -122.3522945196, 47.9747750631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938609707, 48.8575655792 ], [ -122.3097395207, 48.8660049753 ], [ -122.3097414265, 48.8834697321 ], [ -122.3205696751, 48.8842446664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.8121145139 ], [ -122.3832242727, 47.8097517091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6842799668, 47.508587719 ], [ -117.587167089, 47.5708280871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8364747547, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1035997262, 47.668444842 ], [ -122.0997715333, 47.6656995892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7313710506, 46.6903743354 ], [ -123.7361025624, 46.6937072147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2783410998, 47.5080120111 ], [ -122.2788666186, 47.5036332815 ], [ -122.2702955652, 47.4970013804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3295502762, 47.7047809866 ], [ -122.3271587307, 47.7136272159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7354912874, 46.5526532482 ], [ -121.6910471042, 46.5761502729 ], [ -121.6861660179, 46.5905859513 ], [ -121.6750836999, 46.6021829664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.2324653952 ], [ -122.4321127257, 47.2333231589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8747183109, 47.2330604599 ], [ -119.8700407404, 47.2331134363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7957761395, 47.4887865294 ], [ -121.7967231004, 47.488245636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6434331584, 48.3065806606 ], [ -122.6380141443, 48.3112290202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3324821085, 47.534523388 ], [ -122.3350200428, 47.5391616011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9300694121, 46.1160931581 ], [ -122.926866154, 46.1216324995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1079704304, 46.8588588821 ], [ -124.0994911249, 46.8588806371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4518693234, 45.9101122837 ], [ -122.4469167382, 45.910167278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6540439356, 47.5990844387 ], [ -120.6462988146, 47.596485754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4495337758, 46.5039654868 ], [ -120.4137225019, 46.4856279656 ], [ -120.4004187802, 46.4742779497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519709732, 45.9059295423 ], [ -122.4490361292, 45.9074852932 ], [ -122.4518693234, 45.9101122837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704395067, 45.6325772078 ], [ -122.6726772266, 45.6325544336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9538231518, 46.7487811507 ], [ -122.9478831901, 46.7533571733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1788357705, 46.7295852663 ], [ -117.1799080975, 46.7296299262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.2991695402 ], [ -118.276819223, 46.297266298 ], [ -118.2231220368, 46.277953835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2690111833, 47.4377897666 ], [ -122.2633467095, 47.4598544879 ], [ -122.2687488564, 47.4721785489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1875760408, 46.6478028536 ], [ -117.1915478685, 46.6599654613 ], [ -117.1988941769, 46.666906221 ], [ -117.195441231, 46.6743020858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.724042039, 47.9126704949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150102837, 46.3792337657 ], [ -120.3161032894, 46.3779887108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5916519331, 48.3502168576 ], [ -119.5910782183, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0626629459, 48.1752916443 ], [ -117.052759201, 48.1759897639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617032151, 45.6433830491 ], [ -122.6617020964, 45.6446264754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8540700226, 47.0883824388 ], [ -119.8347016505, 47.1010560076 ], [ -119.8239536487, 47.1032398754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0576029409, 47.0916817763 ], [ -122.0458704138, 47.0990889736 ], [ -122.0454972488, 47.103424531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5455047346, 48.0151911959 ], [ -122.5604137621, 48.0262292109 ], [ -122.5668558184, 48.0450684226 ], [ -122.5682398591, 48.0885136006 ], [ -122.5876777121, 48.1210599346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2974847948, 47.9152081943 ], [ -122.3001156286, 47.9185854039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3170457721, 47.4294662441 ], [ -120.3176595662, 47.4302249495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5138464975, 48.416820343 ], [ -119.51157568, 48.4168080215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246218752, 45.6254040131 ], [ -122.0163741662, 45.6319524828 ], [ -122.0088409823, 45.6309029624 ], [ -121.9860480217, 45.6413721887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7201925534, 48.9725563663 ], [ -122.7328423678, 48.9841695596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578563225, 48.2883491403 ], [ -122.6578488817, 48.2895410127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5263000656, 46.9709601801 ], [ -120.497732858, 46.9704790806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0419262876, 46.2219914931 ], [ -120.0027133993, 46.2121666208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2202025787, 47.4072374973 ], [ -122.2207233046, 47.4156833158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0823565056, 46.2482752943 ], [ -119.0820864503, 46.2486605032 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3556390004, 45.9892331664 ], [ -122.3647789259, 45.992938942 ], [ -122.3649925149, 45.9971019257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.5499987592 ], [ -120.3750456098, 46.5493985238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6325132774, 46.1868027068 ], [ -119.6640303518, 46.1872361321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1069520778, 47.4029037206 ], [ -119.0663191716, 47.4059245392 ], [ -119.0422944621, 47.3856092016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9561002594, 46.5266704559 ], [ -121.9572975987, 46.5353534207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4150633113, 46.0706784483 ], [ -118.3764731907, 46.0716522784 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2025293491, 48.8159609661 ], [ -122.1954842634, 48.8206495581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472358647, 45.8117200378 ], [ -122.5469856665, 45.8168217556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8269852287, 46.9708707418 ], [ -123.8261026875, 46.9700612141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478299761, 47.0358210791 ], [ -122.9316246804, 47.0277555011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.9939874349 ], [ -122.7353942026, 49.0020702071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938084119, 46.3141920165 ], [ -119.2862401307, 46.308479073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3051065733, 47.9435748501 ], [ -122.3044461333, 47.9446172164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6890804036, 47.1533532154 ], [ -121.6592910203, 47.1591358128 ], [ -121.619821252, 47.133142341 ], [ -121.6124069417, 47.1210645571 ], [ -121.5963308595, 47.1073463507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235907413, 47.620646532 ], [ -117.2236317238, 47.6278867921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.8868092337 ], [ -124.1042063039, 46.8868591474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8770396143, 46.5473587206 ], [ -122.8752641023, 46.5473525241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206641784, 48.920195997 ], [ -122.3219125052, 48.9201922455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3589746896, 46.8933149788 ], [ -122.3573827719, 46.9297368504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3515312423, 47.9748188959 ], [ -122.3520946491, 47.9747243569 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0003727518, 46.1639381329 ], [ -122.9961129273, 46.1618451049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114164195, 47.8021101024 ], [ -122.1053446624, 47.8104011539 ], [ -122.0654931199, 47.8179312301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.6316024762 ], [ -122.6659555363, 45.631898547 ] ] } } +] +} diff --git a/examples/data/origdata/points_gas.geojson b/examples/data/origdata/points_gas.geojson new file mode 100644 index 0000000..5dfa2d2 --- /dev/null +++ b/examples/data/origdata/points_gas.geojson @@ -0,0 +1,98 @@ +{ +"type": "FeatureCollection", +"name": "points_gas", +"features": [ +{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, +{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": 1.43, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille" }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, +{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC" }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, +{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI" }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, +{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI" }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, +{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE" }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, +{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": 1.785, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total" }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, +{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE" }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, +{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": 1.81, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)" }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, +{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, +{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia" }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, +{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE" }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, +{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, +{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA" }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, +{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne" }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, +{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI" }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, +{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS" }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, +{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, +{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA" }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, +{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA" }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, +{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique" }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, +{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, +{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, +{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti" }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, +{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade" }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, +{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, +{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles" }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, +{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, +{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": 1.75, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA" }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, +{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto" }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, +{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, +{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": 1.77, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES" }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, +{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA" }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, +{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi" }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, +{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, +{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, +{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL" }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, +{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José" }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, +{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS" }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, +{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres" }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, +{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS" }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, +{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO" }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, +{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE" }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, +{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse" }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, +{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA" }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, +{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO" }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, +{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc" }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, +{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": 2.02, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia" }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, +{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée" }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, +{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA" }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, +{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI" }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, +{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA" }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, +{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, +{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, +{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, +{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD" }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, +{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN" }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, +{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS" }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, +{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": 1.72, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, +{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES" }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, +{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": 1.8, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM" }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, +{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ" }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, +{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques" }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, +{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, +{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE" }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, +{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI" }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, +{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE" }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, +{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, +{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, +{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA" }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, +{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO" }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, +{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël" }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, +{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, +{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION" }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, +{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2" }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, +{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": 1.73, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare" }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, +{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO" }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, +{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI" }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, +{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal" }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, +{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH" }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, +{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI" }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, +{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari" }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, +{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA" }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, +{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André" }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, +{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA" }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, +{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution" }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } +] +} diff --git a/examples/data/origdata/points_lux_pop_osm.geojson b/examples/data/origdata/points_lux_pop_osm.geojson new file mode 100644 index 0000000..cca1d99 --- /dev/null +++ b/examples/data/origdata/points_lux_pop_osm.geojson @@ -0,0 +1,478 @@ +{ +"type": "FeatureCollection", +"name": "points_lux_pop_osm", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": 1708 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": 660 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": 1450 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": 757 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": 486 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": 853 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 4804 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, +{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, +{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, +{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": 3512 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1702 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, +{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, +{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2437 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, +{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": 736 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, +{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, +{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, +{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": 2055 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2401 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": 649 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1342 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, +{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": 1867 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": 1785 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": 140 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": 143 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": 240 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": 551 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": 752 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": 656 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": 150 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": 417 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": 66 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": 350 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": 608 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": 181 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": 328 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": 246 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": 1460 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": 1154 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": 480 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": 509 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": 2947 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, +{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": 957 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, +{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": 203 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, +{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, +{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, +{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, +{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, +{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": 2126 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": 21 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, +{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, +{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, +{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, +{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, +{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": 27 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, +{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, +{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": 364 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": 1139 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1673 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": 776 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": 4444 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } +] +} diff --git a/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson b/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson new file mode 100644 index 0000000..72ebc9d --- /dev/null +++ b/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson @@ -0,0 +1,341 @@ +{ +"type": "FeatureCollection", +"name": "polygons_hatch_eu_lifeexp_2018", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": 79.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": 79.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } +] +} diff --git a/examples/data/origdata/polygons_nz_regions.geojson b/examples/data/origdata/polygons_nz_regions.geojson new file mode 100644 index 0000000..33f5ecf --- /dev/null +++ b/examples/data/origdata/polygons_nz_regions.geojson @@ -0,0 +1,23 @@ +{ +"type": "FeatureCollection", +"name": "polygons_nz_regions2", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": "pv084qp8629.1", "id_1": 1, "name_1": "Auckland", "hasc_1": "NZ.AU", "population2022": 1695200, "areakm2": 5095.679, "density2022": 332.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.74861145, -37.34444427 ], [ 174.74708557, -37.3454895 ], [ 174.74694824, -37.34361267 ], [ 174.74861145, -37.34444427 ], [ 174.74861145, -37.34444427 ] ] ], [ [ [ 174.77009583, -37.34389114 ], [ 174.770446779999986, -37.34157944 ], [ 174.77178955, -37.3429718 ], [ 174.77009583, -37.34389114 ], [ 174.77009583, -37.34389114 ] ] ], [ [ [ 174.7555542, -37.3441658 ], [ 174.75404358, -37.34367752 ], [ 174.754516599999988, -37.34116364 ], [ 174.7555542, -37.3441658 ], [ 174.7555542, -37.3441658 ] ] ], [ [ [ 174.764160159999989, -37.34388733 ], [ 174.76008606, -37.34461975 ], [ 174.76565552, -37.33962631 ], [ 174.764160159999989, -37.34388733 ], [ 174.764160159999989, -37.34388733 ] ] ], [ [ [ 174.752990720000014, -37.34559631 ], [ 174.75141907, -37.34180832 ], [ 174.752304079999988, -37.34277725 ], [ 174.752990720000014, -37.34559631 ], [ 174.752990720000014, -37.34559631 ] ] ], [ [ [ 174.77192688, -37.33953094 ], [ 174.768737789999989, -37.3407135 ], [ 174.771835329999988, -37.33702469 ], [ 174.77192688, -37.33953094 ], [ 174.77192688, -37.33953094 ] ] ], [ [ [ 174.75320435, -37.33498001 ], [ 174.74888611, -37.34166718 ], [ 174.74491882, -37.33788681 ], [ 174.75320435, -37.33498001 ], [ 174.75320435, -37.33498001 ] ] ], [ [ [ 174.75654602, -37.33567429 ], [ 174.75642395, -37.33279037 ], [ 174.76016235, -37.33059692 ], [ 174.75654602, -37.33567429 ], [ 174.75654602, -37.33567429 ] ] ], [ [ [ 174.791107180000012, -37.32666779 ], [ 174.77305603, -37.34166718 ], [ 174.77806091, -37.33166504 ], [ 174.791107180000012, -37.32666779 ], [ 174.791107180000012, -37.32666779 ] ] ], [ [ [ 174.76023865, -37.32954788 ], [ 174.76167297, -37.32620239 ], [ 174.76620483, -37.32515717 ], [ 174.76023865, -37.32954788 ], [ 174.76023865, -37.32954788 ] ] ], [ [ [ 174.797210690000014, -37.3252449 ], [ 174.79432678, -37.3246994 ], [ 174.79898071, -37.32347488 ], [ 174.797210690000014, -37.3252449 ], [ 174.797210690000014, -37.3252449 ] ] ], [ [ [ 174.71255493000001, -37.19326782 ], [ 174.713088989999989, -37.19437408 ], [ 174.71208191, -37.19443512 ], [ 174.71255493000001, -37.19326782 ], [ 174.71255493000001, -37.19326782 ] ] ], [ [ [ 174.88668823, -37.06499863 ], [ 174.88700867, -37.06641006 ], [ 174.886077879999988, -37.06524277 ], [ 174.88668823, -37.06499863 ], [ 174.88668823, -37.06499863 ] ] ], [ [ [ 174.73410034, -36.96100998 ], [ 174.75726318, -36.96128464 ], [ 174.75708008, -36.96967316 ], [ 174.74598694, -36.97321701 ], [ 174.73286438, -36.96675491 ], [ 174.73410034, -36.96100998 ], [ 174.73410034, -36.96100998 ] ] ], [ [ [ 175.15527344, -36.92194366 ], [ 175.15943909, -36.92499924 ], [ 175.15638733, -36.92666626 ], [ 175.15527344, -36.92194366 ], [ 175.15527344, -36.92194366 ] ] ], [ [ [ 175.16471863000001, -36.90194321 ], [ 175.170837400000011, -36.90833282 ], [ 175.15028381, -36.91361237 ], [ 175.16471863000001, -36.90194321 ], [ 175.16471863000001, -36.90194321 ] ] ], [ [ [ 174.97932434, -36.87934494 ], [ 174.977310179999989, -36.87853241 ], [ 174.97924805, -36.8763237 ], [ 174.97932434, -36.87934494 ], [ 174.97932434, -36.87934494 ] ] ], [ [ [ 174.684783939999988, -36.87700653 ], [ 174.68363953, -36.87633133 ], [ 174.68690491000001, -36.87526703 ], [ 174.684783939999988, -36.87700653 ], [ 174.684783939999988, -36.87700653 ] ] ], [ [ [ 175.18833923, -36.83666611 ], [ 175.208618159999986, -36.83111191 ], [ 175.21499634, -36.83499908 ], [ 175.2124939, -36.84277725 ], [ 175.20144653, -36.84207916 ], [ 175.1958313, -36.85972214 ], [ 175.19833374000001, -36.86888885 ], [ 175.207778929999989, -36.88000107 ], [ 175.199722290000011, -36.88833237 ], [ 175.20083618000001, -36.89805603 ], [ 175.18972778, -36.90194321 ], [ 175.18804932, -36.89666748 ], [ 175.17555237, -36.89472198 ], [ 175.172775269999988, -36.88527679 ], [ 175.16111755, -36.86527634 ], [ 175.15333557, -36.86083221 ], [ 175.168884279999986, -36.86000061 ], [ 175.17805481, -36.85111237 ], [ 175.172500609999986, -36.84555435 ], [ 175.176391599999988, -36.83805466 ], [ 175.18943787, -36.83194351 ], [ 175.18833923, -36.83666611 ], [ 175.18833923, -36.83666611 ] ] ], [ [ [ 175.206542969999987, -36.82966232 ], [ 175.20561218, -36.82774734 ], [ 175.208084109999987, -36.82830429 ], [ 175.206542969999987, -36.82966232 ], [ 175.206542969999987, -36.82966232 ] ] ], [ [ [ 174.897537230000012, -36.82781601 ], [ 174.89205933, -36.83633041 ], [ 174.88879395, -36.8285675 ], [ 174.897537230000012, -36.82781601 ], [ 174.897537230000012, -36.82781601 ] ] ], [ [ [ 174.97322083, -36.81057739 ], [ 174.973724370000014, -36.8139534 ], [ 174.971206669999987, -36.81113434 ], [ 174.97322083, -36.81057739 ], [ 174.97322083, -36.81057739 ] ] ], [ [ [ 175.19805908, -36.80555725 ], [ 175.202224730000012, -36.80944443 ], [ 175.20195007, -36.82416534 ], [ 175.196105960000011, -36.82333374 ], [ 175.19805908, -36.80555725 ], [ 175.19805908, -36.80555725 ] ] ], [ [ [ 174.93743896, -36.80243683 ], [ 174.952499390000014, -36.80916595 ], [ 174.94721985000001, -36.82249832 ], [ 174.93888855, -36.82055664 ], [ 174.94277954, -36.8125 ], [ 174.93743896, -36.80243683 ], [ 174.93743896, -36.80243683 ] ] ], [ [ [ 175.19221497, -36.79277802 ], [ 175.20056152, -36.79777908 ], [ 175.196105960000011, -36.80083466 ], [ 175.19221497, -36.79277802 ], [ 175.19221497, -36.79277802 ] ] ], [ [ [ 175.2277832, -36.79083252 ], [ 175.22389221, -36.79027939 ], [ 175.22694397, -36.78777695 ], [ 175.2277832, -36.79083252 ], [ 175.2277832, -36.79083252 ] ] ], [ [ [ 174.662170409999987, -36.77856445 ], [ 174.65034485000001, -36.78217316 ], [ 174.65328979, -36.77868652 ], [ 174.662170409999987, -36.77856445 ], [ 174.662170409999987, -36.77856445 ] ] ], [ [ [ 174.898895259999989, -36.74944305 ], [ 174.896392819999988, -36.74861145 ], [ 174.89805603, -36.74361038 ], [ 174.898895259999989, -36.74944305 ], [ 174.898895259999989, -36.74944305 ] ] ], [ [ [ 175.172775269999988, -36.73916626 ], [ 175.169723510000011, -36.74861145 ], [ 175.1819458, -36.75361252 ], [ 175.19221497, -36.75111008 ], [ 175.203887939999987, -36.76444626 ], [ 175.19332886, -36.77916718 ], [ 175.18777466, -36.77361298 ], [ 175.167037959999988, -36.77801514 ], [ 175.15499878, -36.78722382 ], [ 175.15861511, -36.79944611 ], [ 175.1680603, -36.80555725 ], [ 175.16305542, -36.81416702 ], [ 175.1652832, -36.82500076 ], [ 175.16085815, -36.83246994 ], [ 175.148895259999989, -36.83527756 ], [ 175.15388489, -36.8405571 ], [ 175.13806152, -36.8488884 ], [ 175.136383059999986, -36.83638763 ], [ 175.12861633, -36.83250046 ], [ 175.12319946, -36.83744049 ], [ 175.12805176, -36.84583282 ], [ 175.112777709999989, -36.84777832 ], [ 175.11193848, -36.83027649 ], [ 175.104995730000013, -36.82389069 ], [ 175.09249878, -36.83722305 ], [ 175.079162599999989, -36.83472061 ], [ 175.07556152, -36.83805466 ], [ 175.06111145, -36.83000183 ], [ 175.07139587, -36.82583237 ], [ 175.070800780000013, -36.82086182 ], [ 175.053894039999989, -36.81833267 ], [ 175.044998170000014, -36.82083511 ], [ 175.03250122, -36.8180542 ], [ 175.047775269999988, -36.80555725 ], [ 175.03305054, -36.80110931 ], [ 175.02194214, -36.8133316 ], [ 175.018066409999989, -36.80887222 ], [ 175.02722168, -36.79750061 ], [ 175.014724730000012, -36.79000092 ], [ 175.00852966, -36.79153824 ], [ 175.006057739999989, -36.80369568 ], [ 174.99868774, -36.80368805 ], [ 174.99494934, -36.81095123 ], [ 174.987503049999987, -36.81138992 ], [ 174.988891599999988, -36.79360962 ], [ 174.98167419, -36.78777695 ], [ 174.986114500000014, -36.7705574 ], [ 174.996444700000012, -36.77493286 ], [ 174.99945068, -36.76722336 ], [ 175.016113280000013, -36.76889038 ], [ 175.00971985000001, -36.77833176 ], [ 175.017791749999986, -36.78364182 ], [ 175.02166748, -36.77833176 ], [ 175.03639221, -36.77416611 ], [ 175.04083252, -36.77944565 ], [ 175.053894039999989, -36.77444458 ], [ 175.0597229, -36.76499939 ], [ 175.06083679, -36.77527618 ], [ 175.0680542, -36.78527832 ], [ 175.08653259, -36.78783798 ], [ 175.10083008, -36.78527832 ], [ 175.10806274, -36.77639008 ], [ 175.102493290000012, -36.76944351 ], [ 175.106109620000012, -36.76333237 ], [ 175.1194458, -36.76055527 ], [ 175.124099730000012, -36.76806259 ], [ 175.13667297, -36.76250076 ], [ 175.146987919999987, -36.76496124 ], [ 175.15083313, -36.75166702 ], [ 175.16027832, -36.74250031 ], [ 175.172775269999988, -36.73916626 ], [ 175.172775269999988, -36.73916626 ] ] ], [ [ [ 174.91583252, -36.72888947 ], [ 174.92555237, -36.73860931 ], [ 174.93527222, -36.74083328 ], [ 174.93028259, -36.74888992 ], [ 174.93777466, -36.75416565 ], [ 174.93804932, -36.76666641 ], [ 174.92944336, -36.76805496 ], [ 174.928894039999989, -36.78416824 ], [ 174.91555786, -36.7891655 ], [ 174.9125061, -36.79750061 ], [ 174.90306091, -36.79000092 ], [ 174.89778137, -36.7788887 ], [ 174.89204407, -36.78447723 ], [ 174.897689820000011, -36.79029465 ], [ 174.89520264, -36.79819489 ], [ 174.87414551, -36.80767822 ], [ 174.84777832, -36.8097229 ], [ 174.826385499999986, -36.78777695 ], [ 174.83778381, -36.76861191 ], [ 174.84950256, -36.76420975 ], [ 174.86947632, -36.76311111 ], [ 174.88024902, -36.76958847 ], [ 174.892776489999989, -36.76777649 ], [ 174.893890379999988, -36.75888824 ], [ 174.90083313, -36.7519455 ], [ 174.91471863000001, -36.74611282 ], [ 174.91583252, -36.72888947 ], [ 174.91583252, -36.72888947 ] ] ], [ [ [ 174.94837952, -36.70943451 ], [ 174.95300293, -36.71068192 ], [ 174.95436096, -36.72274399 ], [ 174.943435670000014, -36.72822571 ], [ 174.94250488, -36.71972275 ], [ 174.94837952, -36.70943451 ], [ 174.94837952, -36.70943451 ] ] ], [ [ [ 175.005371090000011, -36.70791245 ], [ 175.00628662, -36.70982742 ], [ 175.00375366, -36.70896149 ], [ 175.005371090000011, -36.70791245 ], [ 175.005371090000011, -36.70791245 ] ] ], [ [ [ 174.99836731, -36.69808578 ], [ 174.99772644, -36.70172501 ], [ 174.99667358, -36.69805527 ], [ 174.99836731, -36.69808578 ], [ 174.99836731, -36.69808578 ] ] ], [ [ [ 174.971069340000014, -36.69258499 ], [ 174.97795105, -36.69343185 ], [ 174.97346497, -36.69891357 ], [ 174.971069340000014, -36.69258499 ], [ 174.971069340000014, -36.69258499 ] ] ], [ [ [ 174.96234131, -36.68624878 ], [ 174.96551514, -36.68757248 ], [ 174.96388245, -36.69218063 ], [ 174.96234131, -36.68624878 ], [ 174.96234131, -36.68624878 ] ] ], [ [ [ 174.88276672, -36.59151077 ], [ 174.8999176, -36.60185242 ], [ 174.90098572, -36.60828018 ], [ 174.89105225, -36.60912323 ], [ 174.87973022, -36.59898376 ], [ 174.88276672, -36.59151077 ], [ 174.88276672, -36.59151077 ] ] ], [ [ [ 174.39993286, -36.57617187 ], [ 174.39518738000001, -36.56950378 ], [ 174.398895259999989, -36.56694412 ], [ 174.39993286, -36.57617187 ], [ 174.39993286, -36.57617187 ] ] ], [ [ [ 174.74786377, -36.51462555 ], [ 174.747024540000012, -36.50824356 ], [ 174.749801639999987, -36.50896454 ], [ 174.74786377, -36.51462555 ], [ 174.74786377, -36.51462555 ] ] ], [ [ [ 174.801422120000012, -36.49801254 ], [ 174.802825930000012, -36.50374985 ], [ 174.78611755, -36.51388931 ], [ 174.78582764, -36.50749969 ], [ 174.801422120000012, -36.49801254 ], [ 174.801422120000012, -36.49801254 ] ] ], [ [ [ 174.801239009999989, -36.47497177 ], [ 174.792221070000011, -36.47999954 ], [ 174.78805542, -36.47611237 ], [ 174.801239009999989, -36.47497177 ], [ 174.801239009999989, -36.47497177 ] ] ], [ [ [ 174.80833435, -36.46683121 ], [ 174.81388855, -36.46895981 ], [ 174.80731201, -36.47409058 ], [ 174.80833435, -36.46683121 ], [ 174.80833435, -36.46683121 ] ] ], [ [ [ 174.72694397, -36.46194458 ], [ 174.72639465, -36.46472168 ], [ 174.72471619, -36.4636116 ], [ 174.72694397, -36.46194458 ], [ 174.72694397, -36.46194458 ] ] ], [ [ [ 174.823608400000012, -36.45055389 ], [ 174.82194519, -36.45333481 ], [ 174.81916809, -36.45111084 ], [ 174.823608400000012, -36.45055389 ], [ 174.823608400000012, -36.45055389 ] ] ], [ [ [ 174.40863037, -36.44541931 ], [ 174.406707759999989, -36.44382858 ], [ 174.40885925, -36.44260788 ], [ 174.40863037, -36.44541931 ], [ 174.40863037, -36.44541931 ] ] ], [ [ [ 174.40611267, -36.4383316 ], [ 174.40861511, -36.44138718 ], [ 174.40472412, -36.4430542 ], [ 174.40611267, -36.4383316 ], [ 174.40611267, -36.4383316 ] ] ], [ [ [ 174.795166020000011, -36.42495346 ], [ 174.793167110000013, -36.4260788 ], [ 174.79425049, -36.42292786 ], [ 174.795166020000011, -36.42495346 ], [ 174.795166020000011, -36.42495346 ] ] ], [ [ [ 174.39332581, -36.42361069 ], [ 174.392776489999989, -36.42083359 ], [ 174.3972168, -36.42083359 ], [ 174.39332581, -36.42361069 ], [ 174.39332581, -36.42361069 ] ] ], [ [ [ 174.7930603, -36.41249847 ], [ 174.795272829999988, -36.41388702 ], [ 174.79333496000001, -36.4169426 ], [ 174.7930603, -36.41249847 ], [ 174.7930603, -36.41249847 ] ] ], [ [ [ 174.840164179999988, -36.39127731 ], [ 174.87805176, -36.41523743 ], [ 174.88024902, -36.43740463 ], [ 174.87445068, -36.45416641 ], [ 174.86276245, -36.44109726 ], [ 174.857055659999986, -36.44581985 ], [ 174.83703613, -36.45054626 ], [ 174.82804871, -36.43638992 ], [ 174.82025146, -36.43609238 ], [ 174.8152771, -36.42805481 ], [ 174.829727170000012, -36.42499924 ], [ 174.840271, -36.42805481 ], [ 174.854415890000013, -36.42507553 ], [ 174.85028076, -36.41805649 ], [ 174.83805847, -36.42277908 ], [ 174.81767273, -36.41349792 ], [ 174.833618159999986, -36.41027832 ], [ 174.823883059999986, -36.40732956 ], [ 174.82943726, -36.3983345 ], [ 174.83694458, -36.39888763 ], [ 174.840164179999988, -36.39127731 ], [ 174.840164179999988, -36.39127731 ] ] ], [ [ [ 174.25444031, -36.38611221 ], [ 174.25721741000001, -36.38833237 ], [ 174.2527771, -36.38777924 ], [ 174.25444031, -36.38611221 ], [ 174.25444031, -36.38611221 ] ] ], [ [ [ 174.24221802, -36.36833191 ], [ 174.24749756, -36.37250137 ], [ 174.25138855, -36.39527893 ], [ 174.24806213, -36.40083313 ], [ 174.235839840000011, -36.3769455 ], [ 174.24221802, -36.36833191 ], [ 174.24221802, -36.36833191 ] ] ], [ [ [ 174.25332642, -36.36138916 ], [ 174.24972534, -36.36833191 ], [ 174.24333191, -36.36639023 ], [ 174.25332642, -36.36138916 ], [ 174.25332642, -36.36138916 ] ] ], [ [ [ 175.50798035, -36.34883499 ], [ 175.50305176, -36.34660721 ], [ 175.507064820000011, -36.34487915 ], [ 175.50798035, -36.34883499 ], [ 175.50798035, -36.34883499 ] ] ], [ [ [ 175.54315186, -36.33336639 ], [ 175.54083252, -36.33311844 ], [ 175.543304440000014, -36.33175659 ], [ 175.54315186, -36.33336639 ], [ 175.54315186, -36.33336639 ] ] ], [ [ [ 174.769332889999987, -36.31733704 ], [ 174.76747131, -36.32003021 ], [ 174.76461792, -36.31834412 ], [ 174.769332889999987, -36.31733704 ], [ 174.769332889999987, -36.31733704 ] ] ], [ [ [ 174.796661379999989, -36.26805496 ], [ 174.795944209999988, -36.26393127 ], [ 174.8006897, -36.26434708 ], [ 174.796661379999989, -36.26805496 ], [ 174.796661379999989, -36.26805496 ] ] ], [ [ [ 175.3694458, -36.2527771 ], [ 175.37416077, -36.25583267 ], [ 175.37277222, -36.25722122 ], [ 175.3694458, -36.2527771 ], [ 175.3694458, -36.2527771 ] ] ], [ [ [ 175.49256897, -36.2543602 ], [ 175.49009705, -36.25114441 ], [ 175.49256897, -36.25114441 ], [ 175.49256897, -36.2543602 ], [ 175.49256897, -36.2543602 ] ] ], [ [ [ 175.30278015, -36.23749924 ], [ 175.30259705, -36.23859024 ], [ 175.301132200000012, -36.23760223 ], [ 175.30278015, -36.23749924 ], [ 175.30278015, -36.23749924 ] ] ], [ [ [ 175.31599426, -36.23490906 ], [ 175.31352234, -36.23515701 ], [ 175.3155365, -36.23404312 ], [ 175.31599426, -36.23490906 ], [ 175.31599426, -36.23490906 ] ] ], [ [ [ 175.30741882, -36.23115158 ], [ 175.29585266, -36.23498154 ], [ 175.3012085, -36.22740555 ], [ 175.30741882, -36.23115158 ], [ 175.30741882, -36.23115158 ] ] ], [ [ [ 175.4936676, -36.22166824 ], [ 175.49290466, -36.22049332 ], [ 175.49467468, -36.21975327 ], [ 175.4936676, -36.22166824 ], [ 175.4936676, -36.22166824 ] ] ], [ [ [ 175.29943848, -36.21888733 ], [ 175.31195068, -36.22499847 ], [ 175.29417419, -36.22249985 ], [ 175.29943848, -36.21888733 ], [ 175.29943848, -36.21888733 ] ] ], [ [ [ 175.28639221, -36.21333313 ], [ 175.289993290000012, -36.21888733 ], [ 175.288604740000011, -36.22138977 ], [ 175.28639221, -36.21333313 ], [ 175.28639221, -36.21333313 ] ] ], [ [ [ 175.297775269999988, -36.20027924 ], [ 175.29804993, -36.20416641 ], [ 175.295837400000011, -36.20027924 ], [ 175.297775269999988, -36.20027924 ], [ 175.297775269999988, -36.20027924 ] ] ], [ [ [ 175.304901120000011, -36.1999321 ], [ 175.30366516, -36.20042419 ], [ 175.30366516, -36.19844818 ], [ 175.304901120000011, -36.1999321 ], [ 175.304901120000011, -36.1999321 ] ] ], [ [ [ 175.30844116, -36.18930054 ], [ 175.30427551, -36.1890564 ], [ 175.30551147, -36.18769455 ], [ 175.30844116, -36.18930054 ], [ 175.30844116, -36.18930054 ] ] ], [ [ [ 175.306442260000011, -36.18621063 ], [ 175.30535889, -36.1869545 ], [ 175.30474854, -36.18473053 ], [ 175.306442260000011, -36.18621063 ], [ 175.306442260000011, -36.18621063 ] ] ], [ [ [ 175.294982909999987, -36.18518066 ], [ 175.29252625, -36.1829567 ], [ 175.29437256, -36.18246078 ], [ 175.294982909999987, -36.18518066 ], [ 175.294982909999987, -36.18518066 ] ] ], [ [ [ 175.09361267, -36.16916656 ], [ 175.10583496000001, -36.16944504 ], [ 175.11610413, -36.1827774 ], [ 175.110275269999988, -36.1883316 ], [ 175.11193848, -36.21416855 ], [ 175.10667419, -36.22861099 ], [ 175.09916687, -36.23222351 ], [ 175.078338620000011, -36.23083496 ], [ 175.05999756, -36.22166824 ], [ 175.05055237, -36.2211113 ], [ 175.048614500000014, -36.20444489 ], [ 175.051391599999988, -36.18500137 ], [ 175.0708313, -36.17694473 ], [ 175.077774049999988, -36.17916489 ], [ 175.09361267, -36.16916656 ], [ 175.09361267, -36.16916656 ] ] ], [ [ [ 175.300155640000014, -36.16735458 ], [ 175.295837400000011, -36.16488266 ], [ 175.301544189999987, -36.1646347 ], [ 175.300155640000014, -36.16735458 ], [ 175.300155640000014, -36.16735458 ] ] ], [ [ [ 175.339080810000013, -36.16407394 ], [ 175.34249878, -36.17833328 ], [ 175.333892819999988, -36.18111038 ], [ 175.33778381, -36.18583298 ], [ 175.331115720000014, -36.19083405 ], [ 175.31277466, -36.18138885 ], [ 175.30332947, -36.16944504 ], [ 175.30528259, -36.16555405 ], [ 175.323608400000012, -36.17083359 ], [ 175.339080810000013, -36.16407394 ], [ 175.339080810000013, -36.16407394 ] ] ], [ [ [ 175.49806213, -36.16305542 ], [ 175.4916687, -36.16527939 ], [ 175.48971558, -36.16277695 ], [ 175.49806213, -36.16305542 ], [ 175.49806213, -36.16305542 ] ] ], [ [ [ 175.28805542, -36.1594429 ], [ 175.29444885, -36.16277695 ], [ 175.29272461, -36.1672287 ], [ 175.28805542, -36.1594429 ], [ 175.28805542, -36.1594429 ] ] ], [ [ [ 175.30888367, -36.14138794 ], [ 175.31111145, -36.14277649 ], [ 175.30833435, -36.14444351 ], [ 175.30888367, -36.14138794 ], [ 175.30888367, -36.14138794 ] ] ], [ [ [ 174.63522339, -36.14515686 ], [ 174.65336609, -36.1629715 ], [ 174.65110779, -36.16749954 ], [ 174.667343140000014, -36.18865204 ], [ 174.68914795, -36.21086502 ], [ 174.72833252, -36.24499893 ], [ 174.74720764, -36.25767899 ], [ 174.768615720000014, -36.25916672 ], [ 174.779785159999989, -36.26965332 ], [ 174.79914856, -36.26813507 ], [ 174.82028198, -36.27444458 ], [ 174.822509770000011, -36.27960587 ], [ 174.800003049999987, -36.30444336 ], [ 174.79466248, -36.30353928 ], [ 174.797775269999988, -36.32204437 ], [ 174.78379822, -36.32040024 ], [ 174.78259277, -36.30789185 ], [ 174.75750732, -36.31916809 ], [ 174.763885499999986, -36.32805634 ], [ 174.75971985000001, -36.33666611 ], [ 174.768890379999988, -36.35416794 ], [ 174.77638245, -36.35944366 ], [ 174.777771, -36.35222244 ], [ 174.768615720000014, -36.34083176 ], [ 174.77565002, -36.32389069 ], [ 174.780471799999987, -36.32223129 ], [ 174.78083801, -36.33972168 ], [ 174.78889465, -36.35111237 ], [ 174.804367070000012, -36.34745026 ], [ 174.81654358, -36.35943985 ], [ 174.839233400000012, -36.36986923 ], [ 174.856384279999986, -36.36583328 ], [ 174.86193848, -36.36000061 ], [ 174.86557007, -36.37009048 ], [ 174.84693909, -36.38083267 ], [ 174.8449707, -36.37844849 ], [ 174.82194519, -36.37666702 ], [ 174.80479431, -36.38342667 ], [ 174.79559326, -36.37924194 ], [ 174.792053220000014, -36.38952255 ], [ 174.779785159999989, -36.38541794 ], [ 174.768341060000012, -36.3912735 ], [ 174.7649231, -36.38343811 ], [ 174.75772095, -36.38233185 ], [ 174.757186890000014, -36.39266968 ], [ 174.742675780000013, -36.39739609 ], [ 174.7315979, -36.38865662 ], [ 174.73822021, -36.37300873 ], [ 174.731384279999986, -36.37333298 ], [ 174.721054079999988, -36.38892746 ], [ 174.73872375, -36.40179443 ], [ 174.72975159, -36.41090775 ], [ 174.73208618000001, -36.42351151 ], [ 174.73948669, -36.42406845 ], [ 174.74694824, -36.43638992 ], [ 174.76118469, -36.43070221 ], [ 174.76008606, -36.43761826 ], [ 174.773773190000014, -36.44091797 ], [ 174.7658844, -36.44686127 ], [ 174.766922, -36.46149063 ], [ 174.75508118, -36.4749527 ], [ 174.75213623, -36.49309921 ], [ 174.73979187, -36.49824142 ], [ 174.734725950000012, -36.48777771 ], [ 174.74414063, -36.48487473 ], [ 174.74572754, -36.47399139 ], [ 174.73944092, -36.47055435 ], [ 174.728607180000012, -36.48472214 ], [ 174.731384279999986, -36.45166779 ], [ 174.722854610000013, -36.43668365 ], [ 174.7141571, -36.43139648 ], [ 174.707931519999988, -36.43462753 ], [ 174.7134552, -36.44461441 ], [ 174.703460690000014, -36.44823456 ], [ 174.71095276, -36.4511528 ], [ 174.703613280000013, -36.4655571 ], [ 174.711837769999988, -36.46228027 ], [ 174.719665529999986, -36.47034454 ], [ 174.711425780000013, -36.47318268 ], [ 174.715271, -36.48749924 ], [ 174.70341492, -36.47452164 ], [ 174.69139099, -36.48138809 ], [ 174.70776367, -36.48524094 ], [ 174.706115720000014, -36.49472046 ], [ 174.7194519, -36.49499893 ], [ 174.71861267, -36.50361252 ], [ 174.73017883, -36.51727676 ], [ 174.722045900000012, -36.51877975 ], [ 174.72195435, -36.52544785 ], [ 174.711715700000013, -36.53026962 ], [ 174.71861267, -36.54611206 ], [ 174.71194458, -36.54888916 ], [ 174.704879760000011, -36.56425476 ], [ 174.69667053, -36.5616684 ], [ 174.69250488, -36.57527924 ], [ 174.70056152, -36.5961113 ], [ 174.72000122, -36.61027908 ], [ 174.732772829999988, -36.6222229 ], [ 174.74018860000001, -36.62414169 ], [ 174.74499512, -36.61805725 ], [ 174.75444031, -36.62861252 ], [ 174.764984129999988, -36.62617874 ], [ 174.77359009, -36.60601807 ], [ 174.7988739, -36.60061646 ], [ 174.81231689, -36.60146332 ], [ 174.82698059, -36.5920105 ], [ 174.83917236, -36.59249878 ], [ 174.841857909999987, -36.60139465 ], [ 174.83789063, -36.61478806 ], [ 174.83258057, -36.61993027 ], [ 174.823577879999988, -36.61423111 ], [ 174.81634521, -36.61763763 ], [ 174.80860901, -36.60836029 ], [ 174.80607605, -36.62430191 ], [ 174.798736569999988, -36.62942505 ], [ 174.789825439999987, -36.62469482 ], [ 174.771560670000014, -36.62540054 ], [ 174.77210999, -36.63004303 ], [ 174.76054382, -36.64135742 ], [ 174.749786379999989, -36.63983917 ], [ 174.73733521, -36.64815521 ], [ 174.727615359999987, -36.64610291 ], [ 174.7306366, -36.66270447 ], [ 174.71234131, -36.67443466 ], [ 174.730789179999988, -36.66940689 ], [ 174.744354249999986, -36.66017151 ], [ 174.74905396, -36.68097305 ], [ 174.763610840000013, -36.69583511 ], [ 174.75305176, -36.70249939 ], [ 174.74972534, -36.71416855 ], [ 174.75889587, -36.73083496 ], [ 174.75726318, -36.73915863 ], [ 174.770309450000013, -36.75818253 ], [ 174.76841736, -36.76640701 ], [ 174.77722168, -36.77388763 ], [ 174.775588989999989, -36.78743362 ], [ 174.79258728, -36.79959869 ], [ 174.81411743000001, -36.82762527 ], [ 174.79649353, -36.8332634 ], [ 174.784667969999987, -36.83230972 ], [ 174.77507019, -36.82492447 ], [ 174.78692627, -36.82000351 ], [ 174.78109741, -36.8153801 ], [ 174.762496950000013, -36.82110977 ], [ 174.77703857, -36.80975342 ], [ 174.765289309999986, -36.79846954 ], [ 174.751754760000011, -36.81555557 ], [ 174.74848938, -36.82757187 ], [ 174.74018860000001, -36.81729126 ], [ 174.73616028, -36.82245255 ], [ 174.70968628, -36.82638931 ], [ 174.6967926, -36.82323074 ], [ 174.679351809999986, -36.78834152 ], [ 174.6652832, -36.78111267 ], [ 174.66256714, -36.77205276 ], [ 174.67308044, -36.75695801 ], [ 174.65957642, -36.77095795 ], [ 174.6519165, -36.76856232 ], [ 174.63491821, -36.77178574 ], [ 174.633605960000011, -36.76700974 ], [ 174.607208250000014, -36.77388763 ], [ 174.63545227, -36.77622604 ], [ 174.64450073, -36.7746048 ], [ 174.64848328, -36.78260422 ], [ 174.64149475, -36.79126358 ], [ 174.666076659999987, -36.78504181 ], [ 174.67539978, -36.7949028 ], [ 174.67045593, -36.8055191 ], [ 174.65361023, -36.80459595 ], [ 174.638885499999986, -36.82361221 ], [ 174.64219666, -36.83140564 ], [ 174.645004269999987, -36.82194519 ], [ 174.65786743000001, -36.81516647 ], [ 174.65609741, -36.8277359 ], [ 174.661605830000013, -36.83152008 ], [ 174.663604740000011, -36.84666824 ], [ 174.65629578, -36.85379028 ], [ 174.65861511, -36.87942505 ], [ 174.66769409, -36.88144302 ], [ 174.66516113, -36.88782883 ], [ 174.67401123, -36.89351654 ], [ 174.67303467, -36.88363647 ], [ 174.664382929999988, -36.8796196 ], [ 174.65834045, -36.86536407 ], [ 174.66664124, -36.85723495 ], [ 174.6815033, -36.87699127 ], [ 174.69096375, -36.88014984 ], [ 174.703872679999989, -36.8506546 ], [ 174.70898438, -36.85595703 ], [ 174.73573303, -36.84051132 ], [ 174.74276733, -36.83430862 ], [ 174.746704099999988, -36.84137726 ], [ 174.76473999000001, -36.83957672 ], [ 174.78166199, -36.8433342 ], [ 174.78527832, -36.84000015 ], [ 174.792770389999987, -36.84860992 ], [ 174.79075623, -36.86040115 ], [ 174.81184387, -36.86079025 ], [ 174.805175780000013, -36.85333252 ], [ 174.81434631, -36.85197067 ], [ 174.82421875, -36.84395981 ], [ 174.846191409999989, -36.8504982 ], [ 174.85612488000001, -36.85035324 ], [ 174.86471558, -36.84361267 ], [ 174.87539673, -36.84647751 ], [ 174.884262080000013, -36.85935211 ], [ 174.88555908, -36.87333298 ], [ 174.877304079999988, -36.87441635 ], [ 174.86975098, -36.88442993 ], [ 174.868896479999989, -36.90222168 ], [ 174.85221863000001, -36.9141655 ], [ 174.86254883, -36.92725372 ], [ 174.85414124, -36.92984009 ], [ 174.8666687, -36.93305588 ], [ 174.857772829999988, -36.93861008 ], [ 174.85714722, -36.9468689 ], [ 174.87176514, -36.93473053 ], [ 174.87007141, -36.91969681 ], [ 174.862777709999989, -36.92250061 ], [ 174.85900879, -36.90898895 ], [ 174.87554932, -36.90472412 ], [ 174.87930298, -36.89136887 ], [ 174.887496950000013, -36.89027786 ], [ 174.89694214, -36.87888718 ], [ 174.90596008, -36.87366104 ], [ 174.898895259999989, -36.85972214 ], [ 174.89833069, -36.8461113 ], [ 174.90472412, -36.84777832 ], [ 174.90541077, -36.85891724 ], [ 174.914840700000013, -36.87380981 ], [ 174.927246090000011, -36.87918091 ], [ 174.94248962, -36.8927803 ], [ 174.95169067, -36.89477921 ], [ 174.95469666, -36.90237808 ], [ 174.951660159999989, -36.91249847 ], [ 174.962799069999988, -36.91230011 ], [ 174.97639465, -36.90750122 ], [ 174.99249268, -36.90805435 ], [ 174.9863739, -36.89934158 ], [ 174.983337400000011, -36.88277817 ], [ 175.00054932, -36.87611008 ], [ 175.01698303, -36.88047409 ], [ 175.0249939, -36.87555695 ], [ 175.038604740000011, -36.87388992 ], [ 175.043609620000012, -36.88000107 ], [ 175.05955505, -36.88559723 ], [ 175.06460571, -36.90013123 ], [ 175.07069397, -36.90451813 ], [ 175.09861755, -36.89972305 ], [ 175.081405640000014, -36.91238403 ], [ 175.08082581, -36.91999817 ], [ 175.0874939, -36.93916702 ], [ 175.0930481, -36.94527817 ], [ 175.113891599999988, -36.94416809 ], [ 175.11555481, -36.93805695 ], [ 175.12889099, -36.9394455 ], [ 175.13555908, -36.93083191 ], [ 175.143890379999988, -36.92777634 ], [ 175.1444397, -36.9383316 ], [ 175.15249634, -36.9402771 ], [ 175.15638733, -36.95000076 ], [ 175.16833496000001, -36.94666672 ], [ 175.17582703, -36.9375 ], [ 175.19166565, -36.92944336 ], [ 175.20555115, -36.94111252 ], [ 175.230270389999987, -36.94889069 ], [ 175.238891599999988, -36.95694351 ], [ 175.24888611, -36.95611191 ], [ 175.25166321, -36.96666718 ], [ 175.27444458, -36.98527908 ], [ 175.28305054, -36.98749924 ], [ 175.28782654, -36.99531174 ], [ 175.27339172, -37.02422333 ], [ 175.267211909999986, -37.02603531 ], [ 175.216308590000011, -37.03106689 ], [ 175.20687866, -37.03936005 ], [ 175.18336487, -37.03012848 ], [ 175.18638611, -37.02379227 ], [ 175.17288208, -37.01697159 ], [ 175.15328979, -37.02281189 ], [ 175.16027832, -37.03159332 ], [ 175.16073608, -37.04232407 ], [ 175.151580810000013, -37.06135941 ], [ 175.12791443, -37.05207825 ], [ 175.11830139, -37.06035995 ], [ 175.10475159, -37.05350113 ], [ 175.09165955, -37.05736542 ], [ 175.08161926, -37.05489349 ], [ 175.08465576, -37.04856491 ], [ 175.077667240000011, -37.0397644 ], [ 175.05805969, -37.04554367 ], [ 175.06155396, -37.04994583 ], [ 175.048477170000012, -37.05379486 ], [ 175.04588318, -37.07086182 ], [ 175.0328064, -37.07471085 ], [ 175.03630066, -37.07912064 ], [ 175.023223879999989, -37.08296967 ], [ 175.02061462, -37.10005188 ], [ 175.02410889, -37.10446548 ], [ 175.01101685, -37.10831833 ], [ 175.01802063, -37.11714172 ], [ 175.01496887, -37.12348175 ], [ 175.001861569999988, -37.12733841 ], [ 175.005371090000011, -37.13175201 ], [ 174.97915649, -37.13946152 ], [ 174.982208250000014, -37.13311768 ], [ 174.96911621000001, -37.13697052 ], [ 174.95864868000001, -37.12372208 ], [ 174.94554138, -37.12756729 ], [ 174.93942261, -37.14025116 ], [ 174.94332886, -37.15543365 ], [ 174.95294189, -37.14716339 ], [ 174.96690369, -37.16483307 ], [ 174.97695923, -37.16732025 ], [ 174.98396301, -37.17615128 ], [ 174.980896, -37.18249512 ], [ 174.994903560000012, -37.20016098 ], [ 174.991851809999986, -37.20650482 ], [ 175.00192261, -37.20898819 ], [ 174.979568480000012, -37.231884 ], [ 174.983078, -37.23629761 ], [ 174.96992493, -37.24015808 ], [ 174.94320679, -37.23711777 ], [ 174.93621826, -37.22828293 ], [ 174.92308044, -37.23213577 ], [ 174.937042240000011, -37.24981308 ], [ 174.93395996000001, -37.25615692 ], [ 174.920806879999986, -37.26001358 ], [ 174.927795409999987, -37.26884842 ], [ 174.92121887, -37.27077866 ], [ 174.91853333, -37.28787994 ], [ 174.884841920000014, -37.27599716 ], [ 174.86471558, -37.27100372 ], [ 174.85157776, -37.27485275 ], [ 174.85195923, -37.28562164 ], [ 174.84538269, -37.28754807 ], [ 174.852340700000013, -37.29639435 ], [ 174.849243159999986, -37.302742 ], [ 174.82292175, -37.31043625 ], [ 174.823303220000014, -37.32120895 ], [ 174.81323242, -37.3241539 ], [ 174.801391599999988, -37.32055664 ], [ 174.78222656, -37.32722092 ], [ 174.75944519, -37.34277725 ], [ 174.75527954, -37.34027863 ], [ 174.770004269999987, -37.32389069 ], [ 174.75889587, -37.32694626 ], [ 174.74610901, -37.33499908 ], [ 174.74055481, -37.34361267 ], [ 174.74583435, -37.35258102 ], [ 174.74339294, -37.36933517 ], [ 174.72793579, -37.38022995 ], [ 174.7191925, -37.38008881 ], [ 174.70744324, -37.36303329 ], [ 174.686874390000014, -37.35016632 ], [ 174.66555786, -37.30444336 ], [ 174.62750244, -37.23333359 ], [ 174.60806274, -37.19916534 ], [ 174.59635925, -37.1749115 ], [ 174.53805542, -37.07527924 ], [ 174.536193849999989, -37.05663681 ], [ 174.54148865, -37.04803467 ], [ 174.563537599999989, -37.04257202 ], [ 174.582229610000013, -37.04580688 ], [ 174.59613037, -37.04479218 ], [ 174.6033783, -37.0488739 ], [ 174.618377689999988, -37.04405975 ], [ 174.62768555, -37.03572083 ], [ 174.63929749, -37.04273987 ], [ 174.658401489999989, -37.04346085 ], [ 174.66659546, -37.05578232 ], [ 174.66238403, -37.07104874 ], [ 174.651550289999989, -37.07485199 ], [ 174.6582489, -37.08179855 ], [ 174.64932251, -37.08469772 ], [ 174.659835820000012, -37.09937286 ], [ 174.65719604, -37.1036644 ], [ 174.66603088, -37.11007309 ], [ 174.65834045, -37.11777878 ], [ 174.66726685, -37.11764908 ], [ 174.67073059, -37.1275444 ], [ 174.66278076, -37.13360977 ], [ 174.66549683, -37.13876724 ], [ 174.68989563, -37.14783478 ], [ 174.68093872, -37.1594162 ], [ 174.697479249999986, -37.15065384 ], [ 174.699020389999987, -37.15457916 ], [ 174.68888855, -37.16361237 ], [ 174.69416809, -37.18611145 ], [ 174.703887939999987, -37.1866684 ], [ 174.69416809, -37.19833374 ], [ 174.704162599999989, -37.19610977 ], [ 174.704727170000012, -37.21444321 ], [ 174.71903992, -37.21577072 ], [ 174.721740720000014, -37.23689651 ], [ 174.736114500000014, -37.23500061 ], [ 174.73854065, -37.22458649 ], [ 174.7253418, -37.22209167 ], [ 174.72193909, -37.20861053 ], [ 174.714218140000014, -37.20185089 ], [ 174.7207489, -37.18832779 ], [ 174.71542358, -37.18151855 ], [ 174.71470642, -37.16691208 ], [ 174.703460690000014, -37.15739441 ], [ 174.72558594, -37.15255737 ], [ 174.740737919999987, -37.16088867 ], [ 174.74615479, -37.17043304 ], [ 174.77471924, -37.16305542 ], [ 174.79055786, -37.16222382 ], [ 174.769210820000012, -37.15892792 ], [ 174.75379944, -37.16146088 ], [ 174.745040890000013, -37.16618347 ], [ 174.74511719, -37.15767288 ], [ 174.7361908, -37.14894485 ], [ 174.71401978, -37.152668 ], [ 174.70425415, -37.15139008 ], [ 174.70523071, -37.14375687 ], [ 174.69020081, -37.14219666 ], [ 174.69058228, -37.13669205 ], [ 174.72889709, -37.13051224 ], [ 174.74328613, -37.12337875 ], [ 174.75526428, -37.11260605 ], [ 174.77049255, -37.09150696 ], [ 174.77679443, -37.08836365 ], [ 174.79382324, -37.09136581 ], [ 174.793884279999986, -37.10111237 ], [ 174.80607605, -37.08727264 ], [ 174.823608400000012, -37.08222198 ], [ 174.83636475, -37.07331085 ], [ 174.84182739, -37.06376266 ], [ 174.85545349, -37.05511093 ], [ 174.86341858, -37.06336212 ], [ 174.8768158, -37.06953812 ], [ 174.88800049, -37.06748581 ], [ 174.89593506, -37.06103897 ], [ 174.90306091, -37.07277679 ], [ 174.91123962, -37.06416321 ], [ 174.924331669999987, -37.06008148 ], [ 174.917480469999987, -37.0536232 ], [ 174.90698242, -37.05328369 ], [ 174.90655518, -37.04590988 ], [ 174.89321899, -37.05011749 ], [ 174.88731384, -37.05898285 ], [ 174.869644169999987, -37.05386353 ], [ 174.87107849, -37.04896545 ], [ 174.885665890000013, -37.0430603 ], [ 174.874084470000014, -37.04246902 ], [ 174.86328125, -37.0529747 ], [ 174.857788090000014, -37.05137253 ], [ 174.85549927, -37.02599335 ], [ 174.84832764, -37.0336113 ], [ 174.83256531, -37.01757431 ], [ 174.8097229, -37.0055542 ], [ 174.8097229, -37.01777649 ], [ 174.793731689999987, -37.01195145 ], [ 174.76547241, -37.01953888 ], [ 174.77416992, -37.01083374 ], [ 174.751037599999989, -36.99941635 ], [ 174.7416687, -36.99208832 ], [ 174.74717712, -36.98075104 ], [ 174.76077271, -36.9774704 ], [ 174.7746582, -36.96874619 ], [ 174.77583313, -36.95972061 ], [ 174.7562561, -36.94947052 ], [ 174.75628662, -36.94068527 ], [ 174.79141235, -36.93827057 ], [ 174.802978520000011, -36.9471283 ], [ 174.81509399, -36.9428215 ], [ 174.81771851, -36.94869232 ], [ 174.82885742, -36.93861389 ], [ 174.828887939999987, -36.93102264 ], [ 174.78973389, -36.93144226 ], [ 174.7827301, -36.93377686 ], [ 174.772521970000014, -36.92459869 ], [ 174.758575439999987, -36.93213272 ], [ 174.740600590000014, -36.932827 ], [ 174.73147583, -36.93881226 ], [ 174.71430969, -36.9348793 ], [ 174.7114563, -36.92741776 ], [ 174.702789309999986, -36.93151855 ], [ 174.68081665, -36.93448639 ], [ 174.66665649, -36.94392014 ], [ 174.6643219, -36.95485687 ], [ 174.660476679999988, -36.95121765 ], [ 174.652008059999986, -36.96409988 ], [ 174.645172120000012, -36.96048737 ], [ 174.64451599, -36.96909714 ], [ 174.633270259999989, -36.97922516 ], [ 174.62127686, -36.97101593 ], [ 174.61820984, -36.9884491 ], [ 174.60464478, -36.99318314 ], [ 174.603149409999986, -37.00133514 ], [ 174.61245728, -37.0196991 ], [ 174.60089111, -37.01769257 ], [ 174.59416199, -37.00508499 ], [ 174.57286072, -37.01064301 ], [ 174.566894530000013, -36.99916458 ], [ 174.55845642, -37.02070999 ], [ 174.534805299999988, -37.0325737 ], [ 174.526412959999988, -37.03224564 ], [ 174.50762939, -37.04738617 ], [ 174.49095154, -37.0520668 ], [ 174.48316956, -37.04669952 ], [ 174.47659302, -37.02732468 ], [ 174.47538757, -36.99555206 ], [ 174.46765137, -36.98597717 ], [ 174.46028137, -36.95999908 ], [ 174.46801758, -36.95759201 ], [ 174.46606445, -36.94641876 ], [ 174.45916748, -36.93500137 ], [ 174.450271609999987, -36.92861176 ], [ 174.453338620000011, -36.92222214 ], [ 174.44389343, -36.91194534 ], [ 174.446105960000011, -36.8955574 ], [ 174.43756104, -36.88339233 ], [ 174.428894039999989, -36.87888718 ], [ 174.43360901, -36.86888885 ], [ 174.42694092, -36.85194397 ], [ 174.43110657, -36.84833145 ], [ 174.42648315, -36.83020401 ], [ 174.41694641, -36.80916595 ], [ 174.41278076, -36.80555725 ], [ 174.387496950000013, -36.76610947 ], [ 174.366394039999989, -36.73555374 ], [ 174.28250122, -36.6222229 ], [ 174.2444458, -36.57805634 ], [ 174.18110657, -36.50860977 ], [ 174.16471863000001, -36.48860931 ], [ 174.16082764, -36.47638702 ], [ 174.16166687, -36.4608345 ], [ 174.16944885, -36.44805527 ], [ 174.18861389, -36.44083405 ], [ 174.20317078, -36.42809677 ], [ 174.22583008, -36.42694473 ], [ 174.22583008, -36.42944336 ], [ 174.204162599999989, -36.43222046 ], [ 174.19332886, -36.44555664 ], [ 174.1902771, -36.45611191 ], [ 174.19778442, -36.46250153 ], [ 174.19944763, -36.44944382 ], [ 174.20555115, -36.43777847 ], [ 174.21305847, -36.4375 ], [ 174.2359314, -36.427845 ], [ 174.25250244, -36.45249939 ], [ 174.25965881, -36.45434952 ], [ 174.28012085, -36.49325943 ], [ 174.29333496000001, -36.50333405 ], [ 174.29267883, -36.5084877 ], [ 174.302505489999987, -36.52722168 ], [ 174.324996950000013, -36.5363884 ], [ 174.35083008, -36.54333496 ], [ 174.3555603, -36.55222321 ], [ 174.37971497, -36.56861115 ], [ 174.375, -36.57722092 ], [ 174.362503049999987, -36.58333206 ], [ 174.36384583, -36.5953064 ], [ 174.360000609999986, -36.60722351 ], [ 174.376464840000011, -36.59213257 ], [ 174.376190189999988, -36.60593414 ], [ 174.38534546, -36.6158638 ], [ 174.39944458, -36.6202774 ], [ 174.40306091, -36.6258316 ], [ 174.418609620000012, -36.61833191 ], [ 174.421112060000013, -36.61027908 ], [ 174.43638611, -36.61000061 ], [ 174.440643310000013, -36.60068893 ], [ 174.432678220000014, -36.5900116 ], [ 174.40834045, -36.58444595 ], [ 174.41389465, -36.57722092 ], [ 174.42971802, -36.57944489 ], [ 174.41917419, -36.57055664 ], [ 174.423751829999986, -36.55867386 ], [ 174.44221497, -36.55666733 ], [ 174.43556213, -36.54472351 ], [ 174.427505489999987, -36.53888702 ], [ 174.422225950000012, -36.52777863 ], [ 174.42666626, -36.52222061 ], [ 174.422775269999988, -36.51139069 ], [ 174.43055725, -36.51111221 ], [ 174.423889159999987, -36.49666595 ], [ 174.41172791, -36.48948288 ], [ 174.4055481, -36.47750092 ], [ 174.409729, -36.46666718 ], [ 174.41000366, -36.44777679 ], [ 174.41760254, -36.43902588 ], [ 174.43943787, -36.42750168 ], [ 174.42852783, -36.42801666 ], [ 174.42555237, -36.42083359 ], [ 174.41221619, -36.41027832 ], [ 174.413604740000011, -36.40277863 ], [ 174.397506709999988, -36.39722061 ], [ 174.393615720000014, -36.38888931 ], [ 174.41870117, -36.3806572 ], [ 174.42555237, -36.37388992 ], [ 174.41111755, -36.36777878 ], [ 174.417221070000011, -36.35889053 ], [ 174.402771, -36.3544426 ], [ 174.40499878, -36.36500168 ], [ 174.416107180000012, -36.37472153 ], [ 174.40596008, -36.38108826 ], [ 174.38555908, -36.38611221 ], [ 174.381896970000014, -36.4062233 ], [ 174.368225099999989, -36.40099716 ], [ 174.36384583, -36.40944672 ], [ 174.356109620000012, -36.41194534 ], [ 174.35028076, -36.40277863 ], [ 174.325286870000014, -36.38490295 ], [ 174.31361389, -36.38277817 ], [ 174.310775760000013, -36.39226913 ], [ 174.29055786, -36.38999939 ], [ 174.27287292, -36.39101791 ], [ 174.25138855, -36.38138962 ], [ 174.25027466, -36.37527847 ], [ 174.262496950000013, -36.35583496 ], [ 174.25889587, -36.34500122 ], [ 174.25805664, -36.3144455 ], [ 174.262496950000013, -36.32166672 ], [ 174.26333618000001, -36.3405571 ], [ 174.26832581, -36.31027603 ], [ 174.28166199, -36.30444336 ], [ 174.297225950000012, -36.30749893 ], [ 174.31333923, -36.32277679 ], [ 174.35398865, -36.32294464 ], [ 174.363891599999988, -36.31861115 ], [ 174.36610413, -36.31027603 ], [ 174.373947140000013, -36.31713867 ], [ 174.37928772, -36.31167984 ], [ 174.39144897, -36.30988693 ], [ 174.39305115, -36.30222321 ], [ 174.40750122, -36.29277802 ], [ 174.41661072, -36.2756424 ], [ 174.42778015, -36.27361298 ], [ 174.44082642, -36.26555634 ], [ 174.453338620000011, -36.25333405 ], [ 174.46499634, -36.26166534 ], [ 174.47138977, -36.25860977 ], [ 174.47721863000001, -36.23013306 ], [ 174.48692322, -36.23255539 ], [ 174.490173340000013, -36.22624207 ], [ 174.49987793, -36.22865677 ], [ 174.51280212, -36.22473526 ], [ 174.509567260000011, -36.22036743 ], [ 174.52890015, -36.21446228 ], [ 174.522399900000011, -36.20570755 ], [ 174.53198242, -36.19737625 ], [ 174.531875609999986, -36.18663406 ], [ 174.557525629999986, -36.17871094 ], [ 174.56723022, -36.1811409 ], [ 174.573440549999987, -36.16841507 ], [ 174.58314514, -36.17086792 ], [ 174.58930969, -36.15815735 ], [ 174.58268738000001, -36.14934158 ], [ 174.60180664, -36.1435051 ], [ 174.59849548, -36.13909531 ], [ 174.61122131, -36.1352272 ], [ 174.61094666, -36.12446976 ], [ 174.619506840000014, -36.12182999 ], [ 174.63522339, -36.14515686 ], [ 174.63522339, -36.14515686 ] ] ], [ [ [ 175.49740601, -36.11763382 ], [ 175.511383059999986, -36.11999893 ], [ 175.49668884, -36.13606262 ], [ 175.48693848, -36.13416672 ], [ 175.48666382, -36.12444305 ], [ 175.49740601, -36.11763382 ], [ 175.49740601, -36.11763382 ] ] ], [ [ [ 175.41055298, -36.02999878 ], [ 175.41694641, -36.03333282 ], [ 175.40249634, -36.04277802 ], [ 175.40583801, -36.05361176 ], [ 175.414993290000012, -36.06277847 ], [ 175.40415955, -36.07027817 ], [ 175.41111755, -36.07110977 ], [ 175.40499878, -36.08083344 ], [ 175.41082764, -36.0933342 ], [ 175.422500609999986, -36.08527756 ], [ 175.426391599999988, -36.09111023 ], [ 175.425003049999987, -36.10222244 ], [ 175.43110657, -36.10749817 ], [ 175.44639587, -36.10749817 ], [ 175.43972778, -36.11583328 ], [ 175.42971802, -36.11249924 ], [ 175.425277709999989, -36.11750031 ], [ 175.425277709999989, -36.13360977 ], [ 175.4291687, -36.14027786 ], [ 175.420272829999988, -36.14055634 ], [ 175.424728390000013, -36.14611053 ], [ 175.43722534, -36.14166641 ], [ 175.448608400000012, -36.15250015 ], [ 175.453338620000011, -36.15055466 ], [ 175.46360779, -36.15805435 ], [ 175.47555542, -36.1566658 ], [ 175.485000609999986, -36.16916656 ], [ 175.49694824, -36.16611099 ], [ 175.506103520000011, -36.17250061 ], [ 175.49638367, -36.17972183 ], [ 175.49667358, -36.18888855 ], [ 175.490005489999987, -36.1866684 ], [ 175.481384279999986, -36.20750046 ], [ 175.488891599999988, -36.21500015 ], [ 175.47361755, -36.23389053 ], [ 175.47639465, -36.24638748 ], [ 175.49777222, -36.26833344 ], [ 175.50971985000001, -36.26416779 ], [ 175.52194214, -36.27777863 ], [ 175.52667236, -36.27777863 ], [ 175.53666687, -36.2919426 ], [ 175.54556274, -36.29694366 ], [ 175.55082703, -36.31583405 ], [ 175.54167175, -36.3180542 ], [ 175.53694153, -36.32916641 ], [ 175.53833008, -36.33750153 ], [ 175.52915955, -36.34805679 ], [ 175.520278929999989, -36.3488884 ], [ 175.50054932, -36.33833313 ], [ 175.49028015, -36.34027863 ], [ 175.47389221, -36.33194351 ], [ 175.48445129000001, -36.31944275 ], [ 175.49194336, -36.32361221 ], [ 175.49417114, -36.31222153 ], [ 175.48944092, -36.30472183 ], [ 175.47055054, -36.30138779 ], [ 175.46833801, -36.30888748 ], [ 175.45944214, -36.3133316 ], [ 175.453887939999987, -36.30638885 ], [ 175.43222046, -36.30916595 ], [ 175.43417358, -36.28666687 ], [ 175.42944336, -36.2816658 ], [ 175.43305969, -36.27249908 ], [ 175.44250488, -36.26444626 ], [ 175.42555237, -36.26055527 ], [ 175.41471863000001, -36.26889038 ], [ 175.40333557, -36.26638794 ], [ 175.39805603, -36.25944519 ], [ 175.40361023, -36.25694275 ], [ 175.3972168, -36.2452774 ], [ 175.391113280000013, -36.24388885 ], [ 175.386383059999986, -36.2555542 ], [ 175.3722229, -36.25138855 ], [ 175.34944153, -36.22888947 ], [ 175.32278442, -36.22055435 ], [ 175.324996950000013, -36.22750092 ], [ 175.31416321, -36.22499847 ], [ 175.30860901, -36.21277618 ], [ 175.31388855, -36.20750046 ], [ 175.31195068, -36.19166565 ], [ 175.318603520000011, -36.19916534 ], [ 175.326110840000013, -36.19138718 ], [ 175.33833313, -36.21389008 ], [ 175.34222412, -36.20277786 ], [ 175.35795593, -36.20695877 ], [ 175.34693909, -36.19472122 ], [ 175.34750366, -36.1847229 ], [ 175.36694336, -36.18416595 ], [ 175.35083008, -36.17361069 ], [ 175.36054993, -36.17361069 ], [ 175.35945129000001, -36.16666794 ], [ 175.35139465, -36.16916656 ], [ 175.34555054, -36.16027832 ], [ 175.33860779, -36.15833282 ], [ 175.34777832, -36.15194321 ], [ 175.34666443, -36.14666748 ], [ 175.33555603, -36.14638901 ], [ 175.326385499999986, -36.13861084 ], [ 175.32000732, -36.1483345 ], [ 175.30944824, -36.13999939 ], [ 175.31083679, -36.1305542 ], [ 175.31832886, -36.1241684 ], [ 175.32583618000001, -36.13333511 ], [ 175.33999634, -36.13027954 ], [ 175.34472656, -36.1241684 ], [ 175.34916687, -36.13083267 ], [ 175.37333679, -36.11833191 ], [ 175.36416626, -36.11805725 ], [ 175.34916687, -36.10889053 ], [ 175.34222412, -36.0961113 ], [ 175.34777832, -36.07794189 ], [ 175.33972168, -36.07305527 ], [ 175.34666443, -36.0644455 ], [ 175.35139465, -36.06972122 ], [ 175.36785889, -36.06409073 ], [ 175.36917114, -36.05699158 ], [ 175.40083313, -36.04805374 ], [ 175.398895259999989, -36.04000092 ], [ 175.41055298, -36.02999878 ], [ 175.41055298, -36.02999878 ] ] ], [ [ [ 175.40756226, -36.02861023 ], [ 175.40632629000001, -36.0253334 ], [ 175.4085083, -36.02484512 ], [ 175.40756226, -36.02861023 ], [ 175.40756226, -36.02861023 ] ] ], [ [ [ 175.14620972, -35.93373108 ], [ 175.15499878, -35.94610977 ], [ 175.140274049999988, -35.94194412 ], [ 175.14620972, -35.93373108 ], [ 175.14620972, -35.93373108 ] ] ], [ [ [ 175.16027832, -35.92139053 ], [ 175.16221619, -35.92250061 ], [ 175.15986633, -35.92295074 ], [ 175.16027832, -35.92139053 ], [ 175.16027832, -35.92139053 ] ] ], [ [ [ 175.094360349999988, -35.91471863 ], [ 175.09463501, -35.91281128 ], [ 175.09555054, -35.91380692 ], [ 175.094360349999988, -35.91471863 ], [ 175.094360349999988, -35.91471863 ] ] ], [ [ [ 175.113891599999988, -35.91333389 ], [ 175.11444092, -35.91083145 ], [ 175.11582947, -35.91194534 ], [ 175.113891599999988, -35.91333389 ], [ 175.113891599999988, -35.91333389 ] ] ], [ [ [ 175.12083435, -35.90277863 ], [ 175.10212708, -35.91672134 ], [ 175.09555054, -35.9113884 ], [ 175.10583496000001, -35.90777588 ], [ 175.108337400000011, -35.90191269 ], [ 175.12083435, -35.90277863 ], [ 175.12083435, -35.90277863 ] ] ], [ [ [ 175.05667114, -35.9011116 ], [ 175.05471802, -35.90027618 ], [ 175.056396479999989, -35.89916611 ], [ 175.05667114, -35.9011116 ], [ 175.05667114, -35.9011116 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.2", "id_1": 2, "name_1": "Bay of Plenty", "hasc_1": "NZ.BP", "population2022": 347700, "areakm2": 13514.775, "density2022": 25.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.13305664, -38.01722336 ], [ 177.13583374000001, -38.01833344 ], [ 177.13389587, -38.02194595 ], [ 177.13305664, -38.01722336 ], [ 177.13305664, -38.01722336 ] ] ], [ [ [ 177.13166809, -38.0047226 ], [ 177.13945007, -38.00999832 ], [ 177.133605960000011, -38.01277924 ], [ 177.13166809, -38.0047226 ], [ 177.13166809, -38.0047226 ] ] ], [ [ [ 177.1555481, -37.99777603 ], [ 177.14692688, -38.00155258 ], [ 177.145004269999987, -37.99888992 ], [ 177.1555481, -37.99777603 ], [ 177.1555481, -37.99777603 ] ] ], [ [ [ 177.12416077, -37.9952774 ], [ 177.12477112, -38.00325394 ], [ 177.11471558, -38.00944519 ], [ 177.11416626, -37.99750137 ], [ 177.12416077, -37.9952774 ], [ 177.12416077, -37.9952774 ] ] ], [ [ [ 177.07139587, -37.98361206 ], [ 177.08528137, -37.99111176 ], [ 177.073883059999986, -37.99027634 ], [ 177.07139587, -37.98361206 ], [ 177.07139587, -37.98361206 ] ] ], [ [ [ 176.96972656, -37.84999847 ], [ 176.98809814, -37.85563278 ], [ 176.98742676, -37.85967636 ], [ 176.970916749999986, -37.85990143 ], [ 176.96037292, -37.85390854 ], [ 176.96333313, -37.84722137 ], [ 176.96972656, -37.84999847 ], [ 176.96972656, -37.84999847 ] ] ], [ [ [ 176.883605960000011, -37.83333206 ], [ 176.8833313, -37.83055496 ], [ 176.88694763, -37.83083344 ], [ 176.883605960000011, -37.83333206 ], [ 176.883605960000011, -37.83333206 ] ] ], [ [ [ 176.87527466, -37.83055496 ], [ 176.86860657, -37.83061981 ], [ 176.87693787, -37.82638931 ], [ 176.87527466, -37.83055496 ], [ 176.87527466, -37.83055496 ] ] ], [ [ [ 176.47917175, -37.7705574 ], [ 176.4805603, -37.77249908 ], [ 176.47805786, -37.77166748 ], [ 176.47917175, -37.7705574 ], [ 176.47917175, -37.7705574 ] ] ], [ [ [ 176.477035519999987, -37.77118683 ], [ 176.47618103, -37.77161789 ], [ 176.47547913, -37.77045059 ], [ 176.477035519999987, -37.77118683 ], [ 176.477035519999987, -37.77118683 ] ] ], [ [ [ 176.47471619, -37.76916504 ], [ 176.47361755, -37.76972198 ], [ 176.47277832, -37.76861191 ], [ 176.47471619, -37.76916504 ], [ 176.47471619, -37.76916504 ] ] ], [ [ [ 176.482223510000011, -37.76527786 ], [ 176.483612060000013, -37.76944351 ], [ 176.47666931, -37.76805496 ], [ 176.482223510000011, -37.76527786 ], [ 176.482223510000011, -37.76527786 ] ] ], [ [ [ 176.1930542, -37.6847229 ], [ 176.1958313, -37.68972397 ], [ 176.18972778, -37.68611145 ], [ 176.1930542, -37.6847229 ], [ 176.1930542, -37.6847229 ] ] ], [ [ [ 176.15249634, -37.68598938 ], [ 176.15138245, -37.6847229 ], [ 176.15377808, -37.68484497 ], [ 176.15249634, -37.68598938 ], [ 176.15249634, -37.68598938 ] ] ], [ [ [ 176.56222534, -37.66222382 ], [ 176.55805969, -37.66249847 ], [ 176.56138611, -37.65805435 ], [ 176.56222534, -37.66222382 ], [ 176.56222534, -37.66222382 ] ] ], [ [ [ 176.085479740000011, -37.63493347 ], [ 176.0665741, -37.64846802 ], [ 176.06195068, -37.64425278 ], [ 176.06929016, -37.6366272 ], [ 176.085479740000011, -37.63493347 ], [ 176.085479740000011, -37.63493347 ] ] ], [ [ [ 176.19458008, -37.63232803 ], [ 176.19332886, -37.63081741 ], [ 176.19429016, -37.63029099 ], [ 176.19458008, -37.63232803 ], [ 176.19458008, -37.63232803 ] ] ], [ [ [ 176.09092712, -37.61990738 ], [ 176.092300419999987, -37.6231041 ], [ 176.08757019, -37.62001038 ], [ 176.09092712, -37.61990738 ], [ 176.09092712, -37.61990738 ] ] ], [ [ [ 175.995346070000011, -37.6297226 ], [ 175.990310670000014, -37.6249733 ], [ 175.99446106, -37.61780167 ], [ 175.995346070000011, -37.6297226 ], [ 175.995346070000011, -37.6297226 ] ] ], [ [ [ 176.08473206, -37.61838913 ], [ 176.08369446, -37.61771774 ], [ 176.086547849999988, -37.61642456 ], [ 176.08473206, -37.61838913 ], [ 176.08473206, -37.61838913 ] ] ], [ [ [ 176.52705383, -37.60882187 ], [ 176.525894169999987, -37.6088829 ], [ 176.527145389999987, -37.60728836 ], [ 176.52705383, -37.60882187 ], [ 176.52705383, -37.60882187 ] ] ], [ [ [ 176.09280396, -37.60676193 ], [ 176.11193848, -37.6202774 ], [ 176.12306213, -37.61722183 ], [ 176.122833250000014, -37.63134384 ], [ 176.12693787, -37.63611221 ], [ 176.10723877, -37.63940811 ], [ 176.10481262, -37.61935806 ], [ 176.090591429999989, -37.60984039 ], [ 176.09280396, -37.60676193 ], [ 176.09280396, -37.60676193 ] ] ], [ [ [ 176.41667175, -37.6016655 ], [ 176.43777466, -37.61333466 ], [ 176.44000244, -37.6202774 ], [ 176.431427, -37.62984085 ], [ 176.42832947, -37.63916779 ], [ 176.41209412, -37.6425972 ], [ 176.40527344, -37.65472412 ], [ 176.40873718, -37.62427139 ], [ 176.41311646, -37.62330627 ], [ 176.41667175, -37.6016655 ], [ 176.41667175, -37.6016655 ] ] ], [ [ [ 176.018890379999988, -37.57277679 ], [ 176.02360535, -37.57583237 ], [ 176.01519775, -37.58384705 ], [ 176.00479126, -37.58496094 ], [ 176.00115967, -37.57711792 ], [ 176.018890379999988, -37.57277679 ], [ 176.018890379999988, -37.57277679 ] ] ], [ [ [ 176.024475099999989, -37.57344437 ], [ 176.022537230000012, -37.57178879 ], [ 176.02455139, -37.57227707 ], [ 176.024475099999989, -37.57344437 ], [ 176.024475099999989, -37.57344437 ] ] ], [ [ [ 176.01908875, -37.57110977 ], [ 176.015625, -37.57138824 ], [ 176.01716614, -37.56898117 ], [ 176.01908875, -37.57110977 ], [ 176.01908875, -37.57110977 ] ] ], [ [ [ 175.94778442, -37.5644455 ], [ 175.946105960000011, -37.5633316 ], [ 175.948593140000014, -37.56324005 ], [ 175.94778442, -37.5644455 ], [ 175.94778442, -37.5644455 ] ] ], [ [ [ 176.13334656, -37.52894974 ], [ 176.13269043, -37.53134918 ], [ 176.12931824, -37.52961731 ], [ 176.13334656, -37.52894974 ], [ 176.13334656, -37.52894974 ] ] ], [ [ [ 177.18083191, -37.50916672 ], [ 177.19491577, -37.51530075 ], [ 177.1930542, -37.52777863 ], [ 177.17971802, -37.52999878 ], [ 177.167221070000011, -37.51777649 ], [ 177.18083191, -37.50916672 ], [ 177.18083191, -37.50916672 ] ] ], [ [ [ 177.133605960000011, -37.47527695 ], [ 177.13583374000001, -37.47694397 ], [ 177.13194275, -37.47722244 ], [ 177.133605960000011, -37.47527695 ], [ 177.133605960000011, -37.47527695 ] ] ], [ [ [ 175.98852539, -37.47361374 ], [ 176.00416565, -37.47888947 ], [ 176.017654420000014, -37.48993301 ], [ 176.02946472, -37.50756073 ], [ 176.053924560000013, -37.53728104 ], [ 176.09513855, -37.58045578 ], [ 176.127014159999987, -37.60689926 ], [ 176.134704590000013, -37.61112213 ], [ 176.16163635, -37.63563538 ], [ 176.15208435, -37.64425278 ], [ 176.136260990000011, -37.63335419 ], [ 176.1277771, -37.63249969 ], [ 176.126861569999988, -37.61992645 ], [ 176.11875916, -37.61369324 ], [ 176.10813904, -37.61241913 ], [ 176.101760860000013, -37.60261154 ], [ 176.082229610000013, -37.59555435 ], [ 176.08100891, -37.60460281 ], [ 176.087677, -37.61185074 ], [ 176.08082581, -37.62194443 ], [ 176.07333374000001, -37.62250137 ], [ 176.064224239999987, -37.60777664 ], [ 176.03434753, -37.60134125 ], [ 176.027679440000014, -37.58443832 ], [ 176.02896118000001, -37.57270813 ], [ 176.03767395, -37.56790161 ], [ 176.056991579999988, -37.57234573 ], [ 176.068420409999987, -37.58197403 ], [ 176.068161010000011, -37.57081604 ], [ 176.053909299999987, -37.5659523 ], [ 176.03823853, -37.54964447 ], [ 176.02929688, -37.54592133 ], [ 176.015289309999986, -37.53305054 ], [ 176.00123596, -37.51208878 ], [ 175.98466492, -37.49910355 ], [ 175.98287964, -37.48009109 ], [ 175.98852539, -37.47361374 ], [ 175.98852539, -37.47361374 ] ] ], [ [ [ 175.94665527, -37.46854782 ], [ 175.94488525, -37.46573257 ], [ 175.94851685, -37.46558762 ], [ 175.94665527, -37.46854782 ], [ 175.94665527, -37.46854782 ] ] ], [ [ [ 175.9246521, -37.37372589 ], [ 175.92825317, -37.37813568 ], [ 175.94009399, -37.37508774 ], [ 175.938140870000012, -37.38247681 ], [ 175.94351196, -37.38829422 ], [ 175.939529420000014, -37.39912796 ], [ 175.9574585, -37.42624664 ], [ 175.983871459999989, -37.45849991 ], [ 175.99163818, -37.46605301 ], [ 175.978866579999988, -37.46902466 ], [ 175.97193909, -37.45444489 ], [ 175.961853029999986, -37.44865799 ], [ 175.94508362, -37.46009827 ], [ 175.94038391, -37.46871948 ], [ 175.93943787, -37.48138809 ], [ 175.947189329999986, -37.47925949 ], [ 175.93940735000001, -37.49137115 ], [ 175.93026733, -37.49583817 ], [ 175.94271851, -37.49932098 ], [ 175.95799255, -37.49225235 ], [ 175.96723938, -37.49481964 ], [ 175.978317260000011, -37.51382065 ], [ 175.960617070000012, -37.51981735 ], [ 175.94642639, -37.53164291 ], [ 175.936859129999988, -37.53033066 ], [ 175.920272829999988, -37.53416443 ], [ 175.936752320000011, -37.53646088 ], [ 175.94960022, -37.54481888 ], [ 175.95088196, -37.55825806 ], [ 175.94418335, -37.55559921 ], [ 175.93089294, -37.55924606 ], [ 175.93760681, -37.56319809 ], [ 175.92442322, -37.57474136 ], [ 175.92901611, -37.58218384 ], [ 175.94354248, -37.5689888 ], [ 175.943557739999989, -37.58070374 ], [ 175.95150757, -37.59152985 ], [ 175.96691895, -37.58249283 ], [ 175.97195435, -37.5737114 ], [ 175.98016357, -37.59008789 ], [ 175.96305847, -37.60138702 ], [ 175.96522522, -37.60536957 ], [ 175.98832703, -37.60833359 ], [ 175.99110413, -37.61639023 ], [ 175.97416687, -37.61972046 ], [ 175.991836549999988, -37.63219452 ], [ 175.99008179, -37.63947296 ], [ 176.00511169, -37.62836456 ], [ 176.01661682, -37.62411499 ], [ 176.01832581, -37.64138794 ], [ 176.03909302, -37.63681412 ], [ 176.04808044, -37.62693024 ], [ 176.04821777, -37.63459015 ], [ 176.03321838, -37.66100693 ], [ 176.04618835, -37.65228271 ], [ 176.0450592, -37.66077423 ], [ 176.05047607, -37.66926193 ], [ 176.04083252, -37.67944336 ], [ 176.05085754000001, -37.67770386 ], [ 176.05104065, -37.65898895 ], [ 176.0625, -37.66444397 ], [ 176.06364441, -37.65695953 ], [ 176.07395935, -37.65782547 ], [ 176.093261719999987, -37.66439819 ], [ 176.09509277, -37.67428589 ], [ 176.10128784, -37.67905045 ], [ 176.09378052, -37.68546677 ], [ 176.11207581, -37.67813873 ], [ 176.11860657, -37.67972183 ], [ 176.12638855, -37.67333221 ], [ 176.113632200000012, -37.66998291 ], [ 176.124542240000011, -37.65986252 ], [ 176.137496950000013, -37.66083145 ], [ 176.16296387, -37.66990662 ], [ 176.15583801, -37.67938614 ], [ 176.14756775, -37.68057632 ], [ 176.15179443, -37.69582367 ], [ 176.16098022, -37.6877594 ], [ 176.16654968, -37.66617203 ], [ 176.164825439999987, -37.66030884 ], [ 176.17694092, -37.66110992 ], [ 176.171249390000014, -37.67781067 ], [ 176.171661379999989, -37.68888855 ], [ 176.16653442, -37.69725037 ], [ 176.16648865, -37.71429825 ], [ 176.1622467, -37.71141434 ], [ 176.15222168, -37.71694565 ], [ 176.15974426, -37.72842789 ], [ 176.185317989999987, -37.70799637 ], [ 176.19128418, -37.71688461 ], [ 176.1819458, -37.72305679 ], [ 176.19917297, -37.72027588 ], [ 176.208786010000011, -37.71132278 ], [ 176.23088074, -37.7130661 ], [ 176.22619629, -37.7059021 ], [ 176.23620605, -37.69799042 ], [ 176.22200012, -37.69376373 ], [ 176.21611023, -37.6883316 ], [ 176.21217346, -37.69612885 ], [ 176.19029236, -37.70602036 ], [ 176.1791687, -37.69333267 ], [ 176.18499756, -37.68416595 ], [ 176.19781494, -37.69396591 ], [ 176.20561218, -37.68731689 ], [ 176.20132446, -37.67680359 ], [ 176.19410706, -37.68157578 ], [ 176.17930603, -37.66657639 ], [ 176.18278503, -37.64861298 ], [ 176.18008423, -37.63768387 ], [ 176.166107180000012, -37.63222122 ], [ 176.17416382, -37.6241684 ], [ 176.19644165, -37.64503479 ], [ 176.230010990000011, -37.6688118 ], [ 176.263595579999986, -37.6866951 ], [ 176.289535519999987, -37.69782257 ], [ 176.346191409999989, -37.71651077 ], [ 176.38117981, -37.73456955 ], [ 176.40541077, -37.74459076 ], [ 176.4458313, -37.75444412 ], [ 176.422637939999987, -37.75545502 ], [ 176.431991579999988, -37.76247787 ], [ 176.43760681, -37.75880432 ], [ 176.453887939999987, -37.75749969 ], [ 176.46833801, -37.73777771 ], [ 176.48051453, -37.76119614 ], [ 176.47305298, -37.76361084 ], [ 176.46888733, -37.77277756 ], [ 176.49380493000001, -37.77191544 ], [ 176.48306274, -37.75916672 ], [ 176.499069209999988, -37.7713356 ], [ 176.563568120000014, -37.80960083 ], [ 176.60649109, -37.83219147 ], [ 176.66053772, -37.85463333 ], [ 176.69010925, -37.8649826 ], [ 176.749679570000012, -37.88375473 ], [ 176.822021479999989, -37.89385605 ], [ 176.88221741000001, -37.90972137 ], [ 176.927795409999987, -37.91599655 ], [ 176.95407104, -37.92385483 ], [ 176.9831543, -37.93661499 ], [ 177.00805664, -37.94388962 ], [ 176.99316406, -37.94932556 ], [ 177.00639343, -37.94805527 ], [ 177.01306152, -37.93777847 ], [ 177.02333069, -37.94555664 ], [ 177.019195559999986, -37.95024872 ], [ 177.03416443, -37.96277618 ], [ 177.0597229, -37.9711113 ], [ 177.09944153, -37.97916794 ], [ 177.14305115, -37.98638916 ], [ 177.143890379999988, -37.99166489 ], [ 177.118896479999989, -37.98888779 ], [ 177.09666443, -37.98110962 ], [ 177.083618159999986, -37.97888947 ], [ 177.06832886, -37.98027802 ], [ 177.0625, -37.98416519 ], [ 177.06388855, -37.99305725 ], [ 177.0569458, -37.99583435 ], [ 177.06138611, -38.00972366 ], [ 177.07221985000001, -38.00916672 ], [ 177.07028198, -37.99694443 ], [ 177.08972168, -37.99611282 ], [ 177.08666992, -38.0055542 ], [ 177.09555054, -38.01583481 ], [ 177.09249878, -38.0027771 ], [ 177.1086731, -38.00219345 ], [ 177.11305237, -38.01111221 ], [ 177.10806274, -38.02249908 ], [ 177.11860657, -38.01777649 ], [ 177.13278198, -38.03694534 ], [ 177.15055847, -38.04277802 ], [ 177.15722656, -38.04027939 ], [ 177.14416504, -38.03472137 ], [ 177.13806152, -38.0205574 ], [ 177.142501829999986, -38.00916672 ], [ 177.15943909, -38.00972366 ], [ 177.16221619, -37.98749924 ], [ 177.198608400000012, -37.99111176 ], [ 177.184234620000012, -37.99274826 ], [ 177.193283079999986, -38.00144958 ], [ 177.19528198, -37.99250031 ], [ 177.2088623, -37.99084854 ], [ 177.262771609999987, -37.99194336 ], [ 177.27944946, -38.00166702 ], [ 177.2694397, -37.99166489 ], [ 177.34693909, -37.98833466 ], [ 177.38250732, -37.98361206 ], [ 177.391387939999987, -37.98555374 ], [ 177.419998170000014, -37.97722244 ], [ 177.426391599999988, -37.9663887 ], [ 177.43804932, -37.96755981 ], [ 177.443603520000011, -37.95722198 ], [ 177.44787598, -37.96107483 ], [ 177.486389159999987, -37.95027924 ], [ 177.49194336, -37.94194412 ], [ 177.488632200000012, -37.93442917 ], [ 177.52944946, -37.92055511 ], [ 177.546386719999987, -37.90750122 ], [ 177.544998170000014, -37.89666748 ], [ 177.55386353, -37.88376999 ], [ 177.57556152, -37.87333298 ], [ 177.58555603, -37.85925674 ], [ 177.58416748, -37.84444427 ], [ 177.58860779, -37.83666611 ], [ 177.606384279999986, -37.83722305 ], [ 177.612503049999987, -37.82583237 ], [ 177.611114500000014, -37.81277847 ], [ 177.61972046, -37.8069458 ], [ 177.63000488, -37.8144455 ], [ 177.64833069, -37.80638885 ], [ 177.6569519, -37.79249954 ], [ 177.65083313, -37.7863884 ], [ 177.66000366, -37.7761116 ], [ 177.67304993, -37.77111053 ], [ 177.68388367, -37.75805664 ], [ 177.678894039999989, -37.7480545 ], [ 177.66833496000001, -37.73833466 ], [ 177.7069397, -37.72166824 ], [ 177.707229610000013, -37.71472168 ], [ 177.7180481, -37.70611191 ], [ 177.727310179999989, -37.6775322 ], [ 177.75389099, -37.67388916 ], [ 177.79417419, -37.67666626 ], [ 177.80010986, -37.67329407 ], [ 177.800277709999989, -37.66444397 ], [ 177.81666565, -37.65611267 ], [ 177.83944702, -37.66249847 ], [ 177.86851501000001, -37.65096283 ], [ 177.87510681, -37.63760376 ], [ 177.883728029999986, -37.63711166 ], [ 177.88389587, -37.62916565 ], [ 177.890838620000011, -37.6269455 ], [ 177.889160159999989, -37.61916733 ], [ 177.90388489, -37.60305405 ], [ 177.91011047, -37.61603546 ], [ 177.91833496000001, -37.61888885 ], [ 177.94520569, -37.61809921 ], [ 177.95349121000001, -37.61465073 ], [ 177.95443726, -37.60638809 ], [ 177.96583557, -37.60138702 ], [ 177.9694519, -37.59361267 ], [ 177.98445129000001, -37.58388901 ], [ 177.99194336, -37.56750107 ], [ 177.983337400000011, -37.56361008 ], [ 177.97944641, -37.53777695 ], [ 177.983612060000013, -37.53583145 ], [ 178.00750732, -37.55194473 ], [ 178.03971863000001, -37.54249954 ], [ 178.0597229, -37.54000092 ], [ 178.0821228, -37.54546356 ], [ 178.07955933, -37.55147171 ], [ 178.09403992, -37.58409119 ], [ 178.105667110000013, -37.59650803 ], [ 178.03947449, -37.59576416 ], [ 178.020278929999989, -37.60207367 ], [ 177.984161379999989, -37.60866928 ], [ 177.9788208, -37.62128067 ], [ 177.972320559999986, -37.62343979 ], [ 177.97991943, -37.63170624 ], [ 177.973419189999987, -37.63385773 ], [ 177.992385860000013, -37.65461349 ], [ 177.99343872, -37.66508865 ], [ 177.9868927, -37.66723633 ], [ 177.99446106, -37.67557907 ], [ 177.98791504, -37.67772675 ], [ 177.99926758, -37.69025803 ], [ 177.99649048, -37.69659424 ], [ 177.98335266, -37.70090866 ], [ 177.98432922, -37.71144104 ], [ 177.99188232, -37.71981812 ], [ 177.97589111, -37.73050308 ], [ 177.9730835, -37.736866 ], [ 177.99591064, -37.76205063 ], [ 178.037170409999987, -37.73210144 ], [ 178.07418823, -37.76342773 ], [ 177.970489500000014, -37.84687042 ], [ 177.943115229999989, -37.91049576 ], [ 177.91697693, -37.98450089 ], [ 177.86262512, -38.11087799 ], [ 177.858764650000012, -38.1067009 ], [ 177.8494873, -38.11515808 ], [ 177.775741579999988, -38.06314087 ], [ 177.74331665, -38.04655838 ], [ 177.72399902, -38.0257225 ], [ 177.70046997, -38.02796173 ], [ 177.68887329, -38.01547241 ], [ 177.66923523, -38.02186966 ], [ 177.68467712, -38.03852081 ], [ 177.6781311, -38.04065323 ], [ 177.701263430000012, -38.06565475 ], [ 177.68815613000001, -38.06991196 ], [ 177.68930054, -38.0803833 ], [ 177.67619324, -38.08463287 ], [ 177.686599730000012, -38.08668137 ], [ 177.68774414, -38.0971489 ], [ 177.69543457, -38.10549545 ], [ 177.69271851, -38.11179733 ], [ 177.65992737, -38.12240982 ], [ 177.661056519999988, -38.13288498 ], [ 177.649063109999986, -38.14759445 ], [ 177.66056824, -38.16012955 ], [ 177.64089966, -38.1664772 ], [ 177.630508420000012, -38.16440582 ], [ 177.62779236, -38.17070007 ], [ 177.60813904, -38.17702103 ], [ 177.60430908, -38.1728363 ], [ 177.60270691, -38.18959045 ], [ 177.56350708, -38.20214462 ], [ 177.567321779999986, -38.20633316 ], [ 177.55618286, -38.21260071 ], [ 177.530899049999988, -38.21256256 ], [ 177.531997679999989, -38.22303391 ], [ 177.515151980000013, -38.22299957 ], [ 177.51135254, -38.21879959 ], [ 177.49180603, -38.22502899 ], [ 177.49940491000001, -38.23342514 ], [ 177.49667358, -38.23970032 ], [ 177.48364258, -38.24385071 ], [ 177.495040890000013, -38.25645447 ], [ 177.48851013, -38.25852966 ], [ 177.49610901, -38.26693344 ], [ 177.50263977, -38.26485443 ], [ 177.49064636, -38.27949142 ], [ 177.49276733, -38.300457 ], [ 177.471466060000012, -38.32346344 ], [ 177.46594238, -38.33602142 ], [ 177.45283508, -38.34014893 ], [ 177.4434967, -38.34848404 ], [ 177.39471436, -38.36911011 ], [ 177.34864807, -38.38344955 ], [ 177.299743650000011, -38.40407562 ], [ 177.237808230000013, -38.42886353 ], [ 177.25862122, -38.50911713 ], [ 177.249252320000011, -38.5174942 ], [ 177.245483400000012, -38.51325607 ], [ 177.23049927, -38.5342598 ], [ 177.21362305, -38.53416824 ], [ 177.206130980000012, -38.52568436 ], [ 177.199569700000012, -38.52775574 ], [ 177.19116211, -38.54670334 ], [ 177.18180847, -38.55509186 ], [ 177.18275452, -38.56565094 ], [ 177.1631012, -38.5718689 ], [ 177.17059326, -38.58036423 ], [ 177.14442444, -38.58865738 ], [ 177.14723206, -38.58233261 ], [ 177.13041687, -38.5822258 ], [ 177.12110901, -38.59062195 ], [ 177.11552429, -38.60327148 ], [ 177.10899353, -38.60534668 ], [ 177.100631709999988, -38.62432861 ], [ 177.096893310000013, -38.62007523 ], [ 177.0838623, -38.62421799 ], [ 177.08291626, -38.6136322 ], [ 177.06990051, -38.61777115 ], [ 177.060607909999987, -38.62615967 ], [ 177.04393005, -38.62598419 ], [ 177.047637939999987, -38.63026047 ], [ 177.034683230000013, -38.63433456 ], [ 177.026412959999988, -38.65325928 ], [ 177.01994324, -38.65528488 ], [ 177.02735901, -38.66384506 ], [ 177.02088928, -38.66587067 ], [ 177.0153656, -38.67847824 ], [ 177.002441409999989, -38.68251419 ], [ 177.00337219, -38.69309998 ], [ 176.98396301, -38.69913864 ], [ 176.987670900000012, -38.70342636 ], [ 176.9682312, -38.70945358 ], [ 176.967300419999987, -38.69887161 ], [ 176.95433044, -38.70288467 ], [ 176.9506073, -38.69859695 ], [ 176.93763733, -38.70261002 ], [ 176.9302063, -38.69403839 ], [ 176.90977478, -38.68947601 ], [ 176.89115906, -38.66804886 ], [ 176.87164307, -38.67407227 ], [ 176.87536621000001, -38.67835617 ], [ 176.862350459999988, -38.68237305 ], [ 176.85490417, -38.67380142 ], [ 176.84559631, -38.6821022 ], [ 176.83256531, -38.68611908 ], [ 176.82325745, -38.69441986 ], [ 176.79901123, -38.68558502 ], [ 176.795272829999988, -38.68130112 ], [ 176.77571106, -38.68732834 ], [ 176.7766571, -38.69789886 ], [ 176.76454163, -38.71247864 ], [ 176.75149536, -38.71648026 ], [ 176.752441409999989, -38.72704697 ], [ 176.73937988, -38.73104477 ], [ 176.73190308, -38.72247696 ], [ 176.71885681, -38.72647095 ], [ 176.719802859999987, -38.73703003 ], [ 176.711425780000013, -38.75586319 ], [ 176.71611023, -38.77070236 ], [ 176.70774841, -38.78952408 ], [ 176.71801758, -38.79181671 ], [ 176.70495605, -38.79579544 ], [ 176.71244812, -38.80435944 ], [ 176.6993866, -38.80833817 ], [ 176.7003479, -38.81888962 ], [ 176.711578370000012, -38.8317337 ], [ 176.70225525, -38.83998489 ], [ 176.70976257, -38.84854889 ], [ 176.619232180000012, -38.92478943 ], [ 176.603317260000011, -38.93504333 ], [ 176.600509640000013, -38.94130707 ], [ 176.60804749, -38.94984436 ], [ 176.598693849999989, -38.95811081 ], [ 176.609985349999988, -38.97091293 ], [ 176.603424069999988, -38.97291565 ], [ 176.61849976, -38.9899826 ], [ 176.61193848, -38.99198532 ], [ 176.61947632, -39.00051498 ], [ 176.54814148, -38.9952507 ], [ 176.55567932, -39.00378036 ], [ 176.45428467, -39.00237656 ], [ 176.422485349999988, -39.06100845 ], [ 176.45185852, -39.12254333 ], [ 176.437713620000011, -39.11604309 ], [ 176.42077637, -39.11582947 ], [ 176.37469482, -39.13002777 ], [ 176.38505554, -39.132267 ], [ 176.400192260000011, -39.14933014 ], [ 176.40116882, -39.15988922 ], [ 176.38800049, -39.16394806 ], [ 176.344680790000012, -39.17187119 ], [ 176.23622131, -39.09662628 ], [ 176.2559967, -39.09053802 ], [ 176.26539612, -39.08221054 ], [ 176.28515625, -39.0761261 ], [ 176.286087040000012, -39.04868698 ], [ 176.27760315, -39.02957153 ], [ 176.26725769, -39.02732086 ], [ 176.27290344, -39.01472473 ], [ 176.28889465, -39.00437927 ], [ 176.28137207, -38.99583054 ], [ 176.28044128, -38.98526001 ], [ 176.26634216, -38.97873688 ], [ 176.26165771, -38.96389008 ], [ 176.26823425, -38.96186829 ], [ 176.2635498, -38.94701767 ], [ 176.26170349, -38.9258728 ], [ 176.248550419999987, -38.92991257 ], [ 176.23822021, -38.92765427 ], [ 176.22596741000001, -38.94226837 ], [ 176.215637210000011, -38.94001007 ], [ 176.20246887, -38.94404984 ], [ 176.194976809999986, -38.93548965 ], [ 176.18838501, -38.93750763 ], [ 176.16589355, -38.91181946 ], [ 176.15931702, -38.91383743 ], [ 176.13684082, -38.88813019 ], [ 176.14343262, -38.88611603 ], [ 176.12934875, -38.87956238 ], [ 176.132202150000012, -38.8732605 ], [ 176.11723328, -38.85611343 ], [ 176.13414001000001, -38.85637665 ], [ 176.12664795, -38.84780121 ], [ 176.12007141, -38.84981537 ], [ 176.09764099, -38.82408905 ], [ 176.10421753, -38.8220787 ], [ 176.096740720000014, -38.81349945 ], [ 176.10990906, -38.80947876 ], [ 176.10243225, -38.80090332 ], [ 176.1166687, -38.76941299 ], [ 176.219802859999987, -38.79217529 ], [ 176.24145508, -38.76927948 ], [ 176.26116943, -38.76324844 ], [ 176.17713928, -38.68585587 ], [ 176.21022034, -38.63781738 ], [ 176.21875, -38.61894989 ], [ 176.21130371000001, -38.61037064 ], [ 176.22444153, -38.60636902 ], [ 176.2104187, -38.59979248 ], [ 176.19729614, -38.6037941 ], [ 176.15153503, -38.57975769 ], [ 176.141250609999986, -38.57746506 ], [ 176.12153625, -38.58346558 ], [ 176.1206665, -38.57287598 ], [ 176.10951233, -38.55999756 ], [ 176.08607483, -38.5616951 ], [ 176.07579041, -38.55939484 ], [ 176.05606079, -38.56538773 ], [ 176.048629760000011, -38.55679321 ], [ 176.0552063, -38.55479813 ], [ 176.047775269999988, -38.54620361 ], [ 176.06378174, -38.53591537 ], [ 176.05262756, -38.5230217 ], [ 176.05834961, -38.5104332 ], [ 176.085495, -38.51304245 ], [ 176.08834839, -38.5067482 ], [ 176.11946106, -38.47558594 ], [ 176.12231445, -38.46929169 ], [ 176.139160159999989, -38.46959686 ], [ 176.13829041, -38.45900726 ], [ 176.144851679999988, -38.45701218 ], [ 176.1559906, -38.46989822 ], [ 176.14942932, -38.47189713 ], [ 176.156860349999988, -38.48048782 ], [ 176.15400696, -38.48677826 ], [ 176.16143799, -38.49536896 ], [ 176.16799927, -38.49337006 ], [ 176.181991579999988, -38.49996185 ], [ 176.17913818, -38.5062561 ], [ 176.186569209999988, -38.51484299 ], [ 176.18373108, -38.52113342 ], [ 176.19685364, -38.51713943 ], [ 176.21084595, -38.5237236 ], [ 176.22396851, -38.5197258 ], [ 176.23425293, -38.52201843 ], [ 176.24737549, -38.51801682 ], [ 176.250213620000011, -38.51172638 ], [ 176.282989500000014, -38.50172806 ], [ 176.28210449, -38.49114609 ], [ 176.30177307, -38.48514175 ], [ 176.312026980000013, -38.48743057 ], [ 176.33061218, -38.5088768 ], [ 176.327789309999986, -38.51516724 ], [ 176.30618286, -38.53804016 ], [ 176.31361389, -38.5466156 ], [ 176.310791020000011, -38.55290604 ], [ 176.32478333, -38.55947495 ], [ 176.36587524, -38.56860733 ], [ 176.392211909999986, -38.52258301 ], [ 176.39785767, -38.51000595 ], [ 176.418396, -38.51457596 ], [ 176.45661926, -38.53000259 ], [ 176.4874115, -38.53685379 ], [ 176.48651123, -38.52627945 ], [ 176.47906494, -38.51770782 ], [ 176.49507141, -38.46939468 ], [ 176.50071716, -38.45681 ], [ 176.50544739, -38.43364716 ], [ 176.511093140000014, -38.42106247 ], [ 176.51301575, -38.40418243 ], [ 176.48701477, -38.37415314 ], [ 176.48048401, -38.37615585 ], [ 176.47306824, -38.3675766 ], [ 176.43209839, -38.35842514 ], [ 176.41531372, -38.35814285 ], [ 176.39677429, -38.33668137 ], [ 176.39024353, -38.33868408 ], [ 176.379119870000011, -38.32580566 ], [ 176.34927368000001, -38.32952118 ], [ 176.3250885, -38.32064438 ], [ 176.327911379999989, -38.31435013 ], [ 176.31114197, -38.3140564 ], [ 176.313964840000011, -38.30776215 ], [ 176.3028717, -38.2948761 ], [ 176.30569458, -38.28857803 ], [ 176.29545593, -38.2862854 ], [ 176.29829407, -38.27998734 ], [ 176.28521729, -38.28398895 ], [ 176.284362789999989, -38.27339554 ], [ 176.26046753, -38.22642136 ], [ 176.256774900000011, -38.22212219 ], [ 176.269851679999988, -38.2181282 ], [ 176.265304570000012, -38.20323563 ], [ 176.2681427, -38.19694138 ], [ 176.24969482, -38.17544937 ], [ 176.256225590000014, -38.17345047 ], [ 176.245162959999988, -38.16055298 ], [ 176.25169373, -38.15855789 ], [ 176.2406311, -38.14565659 ], [ 176.247161870000014, -38.1436615 ], [ 176.246307370000011, -38.13306808 ], [ 176.252838129999986, -38.131073 ], [ 176.23809814, -38.11386871 ], [ 176.22503662, -38.11785126 ], [ 176.23072815, -38.10526276 ], [ 176.22052002, -38.10295105 ], [ 176.21315002, -38.09434128 ], [ 176.20661926, -38.09633255 ], [ 176.191894530000013, -38.07911301 ], [ 176.17800903, -38.07249069 ], [ 176.158401489999989, -38.07845306 ], [ 176.14451599, -38.07182693 ], [ 176.13143921, -38.07580185 ], [ 176.12121582, -38.07348251 ], [ 176.07952881, -38.05358505 ], [ 176.06195068, -38.04264069 ], [ 176.06768799, -38.03004837 ], [ 176.05665588, -38.01712036 ], [ 176.042755129999989, -38.01047897 ], [ 176.036209109999987, -38.0124588 ], [ 176.02151489, -37.99520493 ], [ 176.001068120000014, -37.99052811 ], [ 175.98797607, -37.99448013 ], [ 175.97409058, -37.98781967 ], [ 175.979843140000014, -37.97523499 ], [ 175.97250366, -37.9665947 ], [ 175.95573425, -37.96622086 ], [ 175.958618159999986, -37.95992661 ], [ 175.95129395, -37.9512825 ], [ 175.94317627, -37.93202209 ], [ 175.9526062, -37.92376328 ], [ 175.97879028, -37.91588211 ], [ 175.96124268, -37.90488815 ], [ 175.97644043, -37.88404846 ], [ 175.967010499999986, -37.89230728 ], [ 175.95968628, -37.88366318 ], [ 175.94294739, -37.88327408 ], [ 175.942169189999987, -37.87266541 ], [ 175.948715209999989, -37.87069702 ], [ 175.93486023, -37.86401749 ], [ 175.93774414, -37.85773087 ], [ 175.930435179999989, -37.84908295 ], [ 175.94352722, -37.84515381 ], [ 175.9092865, -37.83374786 ], [ 175.92086792, -37.80861664 ], [ 175.92881775, -37.77917862 ], [ 175.92079163, -37.75994492 ], [ 175.90551758, -37.73206329 ], [ 175.89825439, -37.72341156 ], [ 175.904800419999987, -37.72146606 ], [ 175.890274049999988, -37.70415878 ], [ 175.876464840000011, -37.6974411 ], [ 175.875762939999987, -37.68683624 ], [ 175.864883420000012, -37.67382813 ], [ 175.871429440000014, -37.67189026 ], [ 175.857635499999986, -37.66514969 ], [ 175.83953857, -37.64342499 ], [ 175.846069340000014, -37.64148712 ], [ 175.83522034, -37.6284256 ], [ 175.844680790000012, -37.62019348 ], [ 175.84397888, -37.60952759 ], [ 175.82228088, -37.58328629 ], [ 175.82159424, -37.57258224 ], [ 175.810760499999986, -37.55941772 ], [ 175.836288450000012, -37.54096603 ], [ 175.82546997, -37.52778625 ], [ 175.82843018, -37.5214653 ], [ 175.81106567, -37.5102005 ], [ 175.81040955, -37.49946976 ], [ 175.8235321, -37.49562073 ], [ 175.81632996, -37.48681641 ], [ 175.8354187, -37.47035217 ], [ 175.843246459999989, -37.48987579 ], [ 175.86062622, -37.50116348 ], [ 175.8737793, -37.49734879 ], [ 175.90072632, -37.50042343 ], [ 175.90370178, -37.49413681 ], [ 175.88569641, -37.47217941 ], [ 175.87252808, -37.47596741 ], [ 175.86172485, -37.46276474 ], [ 175.88442993000001, -37.45083237 ], [ 175.88375854, -37.44016266 ], [ 175.89755249000001, -37.44709015 ], [ 175.90986633, -37.43274689 ], [ 175.9163208, -37.43091202 ], [ 175.90516663, -37.41771317 ], [ 175.910369870000011, -37.40530777 ], [ 175.92033386, -37.40795135 ], [ 175.92201233, -37.39107895 ], [ 175.92871094, -37.38906097 ], [ 175.914855960000011, -37.38217163 ], [ 175.9246521, -37.37372589 ], [ 175.9246521, -37.37372589 ] ] ], [ [ [ 176.262176509999989, -37.26832581 ], [ 176.27552795, -37.26803207 ], [ 176.28083801, -37.27249908 ], [ 176.27261353, -37.2855835 ], [ 176.2769165, -37.29076767 ], [ 176.270431519999988, -37.29637909 ], [ 176.27049255, -37.30449295 ], [ 176.25492859, -37.31015015 ], [ 176.24272156, -37.30212402 ], [ 176.231506349999989, -37.28545761 ], [ 176.23832703, -37.27194595 ], [ 176.262176509999989, -37.26832581 ], [ 176.262176509999989, -37.26832581 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": 655000, "areakm2": 44553.886, "density2022": 14.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.4", "id_1": 4, "name_1": "Chatham Islands", "hasc_1": "NZ.CI", "population2022": 800, "areakm2": 819.511, "density2022": 0.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.23971558, -44.43000031 ], [ -176.237228390000013, -44.43416595 ], [ -176.24333191, -44.43249893 ], [ -176.23971558, -44.43000031 ], [ -176.23971558, -44.43000031 ] ] ], [ [ [ -176.327331539999989, -44.3699379 ], [ -176.32952881, -44.36924744 ], [ -176.32830811, -44.36832428 ], [ -176.327331539999989, -44.3699379 ], [ -176.327331539999989, -44.3699379 ] ] ], [ [ [ -176.28053284, -44.37034988 ], [ -176.27955627, -44.36816025 ], [ -176.27865601, -44.36936951 ], [ -176.28053284, -44.37034988 ], [ -176.28053284, -44.37034988 ] ] ], [ [ [ -176.24858093, -44.35507584 ], [ -176.245742799999988, -44.35674667 ], [ -176.248413090000014, -44.35646057 ], [ -176.24858093, -44.35507584 ], [ -176.24858093, -44.35507584 ] ] ], [ [ [ -176.237823490000011, -44.35574722 ], [ -176.242385860000013, -44.35787964 ], [ -176.24205017, -44.35546112 ], [ -176.237823490000011, -44.35574722 ], [ -176.237823490000011, -44.35574722 ] ] ], [ [ [ -176.27166748, -44.35388947 ], [ -176.26817322, -44.35628891 ], [ -176.27102661, -44.35680771 ], [ -176.27166748, -44.35388947 ], [ -176.27166748, -44.35388947 ] ] ], [ [ [ -176.27694702, -44.35749817 ], [ -176.27806091, -44.35610962 ], [ -176.27397156, -44.35361481 ], [ -176.27694702, -44.35749817 ], [ -176.27694702, -44.35749817 ] ] ], [ [ [ -176.16116333, -44.3524437 ], [ -176.15921021, -44.35434723 ], [ -176.16172791, -44.35492325 ], [ -176.16116333, -44.3524437 ], [ -176.16116333, -44.3524437 ] ] ], [ [ [ -176.17523193, -44.33598709 ], [ -176.166076659999987, -44.33908463 ], [ -176.16864014, -44.34720993 ], [ -176.16267395, -44.34992599 ], [ -176.168762210000011, -44.35717773 ], [ -176.1862793, -44.34912872 ], [ -176.1809845, -44.33683777 ], [ -176.17523193, -44.33598709 ], [ -176.17523193, -44.33598709 ] ] ], [ [ [ -176.345611569999988, -44.29091644 ], [ -176.34707642, -44.29091644 ], [ -176.34602356, -44.28890228 ], [ -176.345611569999988, -44.29091644 ], [ -176.345611569999988, -44.29091644 ] ] ], [ [ [ -176.39329529, -44.2882843 ], [ -176.3944397, -44.28667068 ], [ -176.39273071, -44.2869606 ], [ -176.39329529, -44.2882843 ], [ -176.39329529, -44.2882843 ] ] ], [ [ [ -176.3380127, -44.28578949 ], [ -176.340347290000011, -44.28897476 ], [ -176.342285159999989, -44.2872467 ], [ -176.3380127, -44.28578949 ], [ -176.3380127, -44.28578949 ] ] ], [ [ [ -176.313400269999988, -44.27650452 ], [ -176.3099823, -44.28019333 ], [ -176.32029724, -44.28152084 ], [ -176.313400269999988, -44.27650452 ], [ -176.313400269999988, -44.27650452 ] ] ], [ [ [ -176.28132629000001, -44.27167511 ], [ -176.283111569999988, -44.27092361 ], [ -176.281570429999988, -44.27058029 ], [ -176.28132629000001, -44.27167511 ], [ -176.28132629000001, -44.27167511 ] ] ], [ [ [ -176.1289978, -44.27043915 ], [ -176.131103520000011, -44.26934433 ], [ -176.12875366, -44.26893997 ], [ -176.1289978, -44.27043915 ], [ -176.1289978, -44.27043915 ] ] ], [ [ [ -176.12802124000001, -44.26571274 ], [ -176.129394530000013, -44.26490784 ], [ -176.12834167, -44.26467514 ], [ -176.12802124000001, -44.26571274 ], [ -176.12802124000001, -44.26571274 ] ] ], [ [ [ -176.292221070000011, -44.26236343 ], [ -176.28710938, -44.27060318 ], [ -176.301239009999989, -44.277565 ], [ -176.31002808, -44.27677917 ], [ -176.29945374, -44.27124786 ], [ -176.3019104, -44.26719284 ], [ -176.292221070000011, -44.26236343 ], [ -176.292221070000011, -44.26236343 ] ] ], [ [ [ -176.279235840000013, -44.23928452 ], [ -176.28208923, -44.24160385 ], [ -176.28572083, -44.23941422 ], [ -176.279235840000013, -44.23928452 ], [ -176.279235840000013, -44.23928452 ] ] ], [ [ [ -176.22309875, -44.22398376 ], [ -176.21255493000001, -44.2243042 ], [ -176.19625854, -44.23195648 ], [ -176.19096375, -44.24119949 ], [ -176.16413879000001, -44.26426315 ], [ -176.1559906, -44.2612114 ], [ -176.15400696, -44.27312088 ], [ -176.18453979, -44.28730774 ], [ -176.19993591, -44.30501175 ], [ -176.195510860000013, -44.31244278 ], [ -176.20135498, -44.31624603 ], [ -176.20210266, -44.32706451 ], [ -176.21369934, -44.33409882 ], [ -176.22642517, -44.3342247 ], [ -176.22456360000001, -44.34135818 ], [ -176.243896479999989, -44.35499954 ], [ -176.24737549, -44.34856796 ], [ -176.25744629, -44.34447098 ], [ -176.24835205, -44.33520508 ], [ -176.249069209999988, -44.32810974 ], [ -176.26690674, -44.32461548 ], [ -176.25744629, -44.31946182 ], [ -176.2532196, -44.30890274 ], [ -176.260650629999986, -44.30834961 ], [ -176.2641449, -44.29935837 ], [ -176.256103520000011, -44.29365158 ], [ -176.26216125, -44.28289795 ], [ -176.25694275, -44.27520752 ], [ -176.24147034, -44.2731781 ], [ -176.239349370000014, -44.26580429 ], [ -176.249679570000012, -44.25969696 ], [ -176.25640869, -44.24978256 ], [ -176.276718140000014, -44.24303436 ], [ -176.25547791, -44.24035645 ], [ -176.23733521, -44.24071121 ], [ -176.22309875, -44.22398376 ], [ -176.22309875, -44.22398376 ] ] ], [ [ [ -176.01545715, -44.22029495 ], [ -176.011383059999986, -44.22416687 ], [ -176.0177002, -44.22338104 ], [ -176.01545715, -44.22029495 ], [ -176.01545715, -44.22029495 ] ] ], [ [ [ -175.984161379999989, -44.22138977 ], [ -175.988616940000014, -44.22682953 ], [ -175.992813109999986, -44.22527695 ], [ -175.984161379999989, -44.22138977 ], [ -175.984161379999989, -44.22138977 ] ] ], [ [ [ -176.52307129, -44.10287476 ], [ -176.52510071, -44.10201263 ], [ -176.52201843, -44.1006279 ], [ -176.52307129, -44.10287476 ], [ -176.52307129, -44.10287476 ] ] ], [ [ [ -175.8354187, -43.96092224 ], [ -175.82855225, -43.96641159 ], [ -175.84072876, -43.96123123 ], [ -175.8354187, -43.96092224 ], [ -175.8354187, -43.96092224 ] ] ], [ [ [ -176.43263245, -43.91785431 ], [ -176.43496704, -43.91627502 ], [ -176.43386841, -43.91572571 ], [ -176.43263245, -43.91785431 ], [ -176.43263245, -43.91785431 ] ] ], [ [ [ -176.43005371000001, -43.91435242 ], [ -176.43238831, -43.91266632 ], [ -176.43174744, -43.91179276 ], [ -176.43005371000001, -43.91435242 ], [ -176.43005371000001, -43.91435242 ] ] ], [ [ [ -176.92964172, -43.87784958 ], [ -176.929489139999987, -43.88058472 ], [ -176.934494019999988, -43.87849045 ], [ -176.92964172, -43.87784958 ], [ -176.92964172, -43.87784958 ] ] ], [ [ [ -176.41412354, -43.83907318 ], [ -176.41685486, -43.83657074 ], [ -176.4125061, -43.83535004 ], [ -176.41412354, -43.83907318 ], [ -176.41412354, -43.83907318 ] ] ], [ [ [ -176.42414856, -43.83542633 ], [ -176.426818849999989, -43.83486938 ], [ -176.42410278, -43.8331871 ], [ -176.42414856, -43.83542633 ], [ -176.42414856, -43.83542633 ] ] ], [ [ [ -176.71353149, -43.83267593 ], [ -176.71473694, -43.83151245 ], [ -176.71208191, -43.83017349 ], [ -176.71353149, -43.83267593 ], [ -176.71353149, -43.83267593 ] ] ], [ [ [ -176.407958979999989, -43.82998657 ], [ -176.40626526, -43.83057022 ], [ -176.40875244, -43.83091736 ], [ -176.407958979999989, -43.82998657 ], [ -176.407958979999989, -43.82998657 ] ] ], [ [ [ -176.43205261, -43.83083725 ], [ -176.436035159999989, -43.83108521 ], [ -176.43052673, -43.82479095 ], [ -176.43205261, -43.83083725 ], [ -176.43205261, -43.83083725 ] ] ], [ [ [ -176.43678284, -43.82921982 ], [ -176.43933105, -43.82778931 ], [ -176.43278503, -43.82491684 ], [ -176.43678284, -43.82921982 ], [ -176.43678284, -43.82921982 ] ] ], [ [ [ -176.439086909999986, -43.82643127 ], [ -176.440505980000012, -43.82563782 ], [ -176.437042240000011, -43.8237114 ], [ -176.439086909999986, -43.82643127 ], [ -176.439086909999986, -43.82643127 ] ] ], [ [ [ -176.62588501, -43.69239426 ], [ -176.60824585, -43.70328522 ], [ -176.58227539, -43.70502472 ], [ -176.564666749999986, -43.71256256 ], [ -176.54771423, -43.71541214 ], [ -176.54589844, -43.7191658 ], [ -176.52955627, -43.72319794 ], [ -176.4977417, -43.72211838 ], [ -176.49609375, -43.73063278 ], [ -176.477600099999989, -43.7409668 ], [ -176.45962524, -43.74511337 ], [ -176.43136597, -43.74827576 ], [ -176.38768005, -43.74391937 ], [ -176.36070251000001, -43.74326706 ], [ -176.34669495, -43.73379135 ], [ -176.335174560000013, -43.73662949 ], [ -176.31973267, -43.74703217 ], [ -176.29953003, -43.74700165 ], [ -176.29034424, -43.74152756 ], [ -176.27926636, -43.74197769 ], [ -176.2668457, -43.7339325 ], [ -176.25392151, -43.73472214 ], [ -176.24746704, -43.72679901 ], [ -176.22434998, -43.73405457 ], [ -176.21340942, -43.73297119 ], [ -176.207504269999987, -43.72694397 ], [ -176.19917297, -43.73860931 ], [ -176.217163090000014, -43.74406815 ], [ -176.222198490000011, -43.74076843 ], [ -176.241256709999988, -43.75662994 ], [ -176.23620605, -43.77058411 ], [ -176.23997498, -43.77492905 ], [ -176.24995422, -43.76622391 ], [ -176.26525879, -43.76151276 ], [ -176.28335571, -43.76313782 ], [ -176.30926514, -43.77268219 ], [ -176.32684326, -43.78305435 ], [ -176.34713745, -43.79963684 ], [ -176.365448, -43.81807327 ], [ -176.384552, -43.84243011 ], [ -176.40054321, -43.86891174 ], [ -176.40818787, -43.88647461 ], [ -176.41708374000001, -43.92494965 ], [ -176.42758179, -43.91875076 ], [ -176.42694092, -43.90750122 ], [ -176.417770389999987, -43.89277649 ], [ -176.42004395, -43.86566925 ], [ -176.430175780000013, -43.84100723 ], [ -176.422225950000012, -43.84749985 ], [ -176.40429688, -43.83200836 ], [ -176.402771, -43.82025146 ], [ -176.38053894, -43.81056976 ], [ -176.36582947, -43.81000137 ], [ -176.36366272, -43.8014946 ], [ -176.3747406, -43.79185104 ], [ -176.39305115, -43.76916504 ], [ -176.43510437, -43.75144196 ], [ -176.45491028, -43.75160217 ], [ -176.47651672, -43.74753571 ], [ -176.49972534, -43.76380157 ], [ -176.503707889999987, -43.7551918 ], [ -176.51509094, -43.74391174 ], [ -176.54563904, -43.73727036 ], [ -176.553756709999988, -43.74252701 ], [ -176.54896545, -43.75228119 ], [ -176.559494019999988, -43.75935364 ], [ -176.55871582, -43.77790451 ], [ -176.546264650000012, -43.78149796 ], [ -176.54577637, -43.78833389 ], [ -176.53320313, -43.79703903 ], [ -176.4967804, -43.79663467 ], [ -176.48155212, -43.80296326 ], [ -176.4637146, -43.80083084 ], [ -176.45120239, -43.80254745 ], [ -176.442993159999986, -43.80849457 ], [ -176.46485901, -43.81502533 ], [ -176.47589111, -43.82344055 ], [ -176.490325930000012, -43.8219986 ], [ -176.50770569, -43.83974457 ], [ -176.51925659, -43.84616089 ], [ -176.52470398, -43.85586166 ], [ -176.52204895, -43.87018204 ], [ -176.51043701, -43.88972092 ], [ -176.473709109999987, -43.91674042 ], [ -176.473297120000012, -43.93069458 ], [ -176.48434448, -43.95026016 ], [ -176.47695923, -43.95605469 ], [ -176.453765870000012, -43.96497345 ], [ -176.43611145, -43.96777725 ], [ -176.43028259, -43.95972061 ], [ -176.43095398, -43.94293594 ], [ -176.42619324, -43.93333054 ], [ -176.43638611, -43.93361282 ], [ -176.45083618000001, -43.92499924 ], [ -176.422775269999988, -43.92250061 ], [ -176.41702271, -43.9278717 ], [ -176.41487122, -43.95622253 ], [ -176.408569340000014, -43.98202515 ], [ -176.402145389999987, -43.99652481 ], [ -176.39047241, -44.0147438 ], [ -176.37388611, -44.02472305 ], [ -176.359024049999988, -44.02130127 ], [ -176.34667969, -44.03115845 ], [ -176.32452393, -44.03368378 ], [ -176.327774049999988, -44.03702927 ], [ -176.325973510000011, -44.05187225 ], [ -176.34370422, -44.05063248 ], [ -176.35745239, -44.0583992 ], [ -176.38006592, -44.05869293 ], [ -176.391098019999987, -44.05384445 ], [ -176.43745422, -44.06628799 ], [ -176.45143127, -44.06712341 ], [ -176.46987915, -44.0752449 ], [ -176.47711182, -44.07437897 ], [ -176.490997310000012, -44.08597183 ], [ -176.49931335, -44.08723068 ], [ -176.51774597, -44.09977722 ], [ -176.52302551, -44.09764481 ], [ -176.53948975, -44.11385345 ], [ -176.5572052, -44.12559891 ], [ -176.575973510000011, -44.13233566 ], [ -176.58456421, -44.12773514 ], [ -176.598297120000012, -44.13171387 ], [ -176.6027832, -44.12527847 ], [ -176.61555481, -44.12805557 ], [ -176.61911011, -44.12179565 ], [ -176.629241940000014, -44.12023926 ], [ -176.63514709, -44.12446213 ], [ -176.63285828, -44.11424255 ], [ -176.64204407, -44.10461807 ], [ -176.64733887, -44.10759354 ], [ -176.64350891, -44.08660889 ], [ -176.649200439999987, -44.07629395 ], [ -176.659118650000011, -44.07064438 ], [ -176.65634155, -44.06472015 ], [ -176.66056824, -44.04927063 ], [ -176.65710449, -44.04279327 ], [ -176.669998170000014, -44.03763962 ], [ -176.67202759, -44.03043365 ], [ -176.680480960000011, -44.02565002 ], [ -176.68551636, -44.00858688 ], [ -176.65444946, -43.9980545 ], [ -176.6322937, -43.98340607 ], [ -176.59257507, -43.96448898 ], [ -176.57943726, -43.96194458 ], [ -176.572494510000013, -43.94666672 ], [ -176.57337952, -43.94134521 ], [ -176.55915833, -43.94582367 ], [ -176.56239319, -43.9493103 ], [ -176.54956055, -43.95190048 ], [ -176.534698490000011, -43.93827057 ], [ -176.533432010000013, -43.91908646 ], [ -176.53623962, -43.90826035 ], [ -176.546127320000011, -43.89878082 ], [ -176.54504395, -43.88532639 ], [ -176.56556702, -43.85456848 ], [ -176.60409546, -43.8153038 ], [ -176.61228943, -43.81041336 ], [ -176.623260499999986, -43.81250381 ], [ -176.633605960000011, -43.8084259 ], [ -176.642227170000012, -43.81027603 ], [ -176.64587402, -43.80420303 ], [ -176.657318120000014, -43.8091774 ], [ -176.66545105, -43.79814529 ], [ -176.67344666, -43.80844879 ], [ -176.68307495, -43.79862213 ], [ -176.688003540000011, -43.79968643 ], [ -176.68522644, -43.81384659 ], [ -176.68930054, -43.81764984 ], [ -176.706390379999988, -43.80780792 ], [ -176.70932007, -43.81384277 ], [ -176.700820920000012, -43.82213974 ], [ -176.715164179999988, -43.830616 ], [ -176.743118290000012, -43.82759857 ], [ -176.75431824, -43.83361053 ], [ -176.7747345, -43.82569504 ], [ -176.79522705, -43.82193375 ], [ -176.78388977, -43.83555603 ], [ -176.81774902, -43.84617233 ], [ -176.828750609999986, -43.84417343 ], [ -176.84191895, -43.83700562 ], [ -176.85656738, -43.84408951 ], [ -176.86143494, -43.83869171 ], [ -176.881774900000011, -43.84170151 ], [ -176.87376404, -43.83006668 ], [ -176.89367676, -43.82535934 ], [ -176.892807010000013, -43.82081985 ], [ -176.874649049999988, -43.81687546 ], [ -176.87976074, -43.81115341 ], [ -176.87602234, -43.79364395 ], [ -176.86662292, -43.78872299 ], [ -176.8165741, -43.78604507 ], [ -176.80926514, -43.7793541 ], [ -176.81263733, -43.76348114 ], [ -176.823608400000012, -43.75583267 ], [ -176.81790161, -43.74679565 ], [ -176.80397034, -43.74407959 ], [ -176.79978943, -43.75470352 ], [ -176.78933716, -43.75974655 ], [ -176.76133728, -43.76532745 ], [ -176.72518921, -43.76384735 ], [ -176.71492004000001, -43.75926208 ], [ -176.65985107, -43.74863052 ], [ -176.63993835, -43.73540878 ], [ -176.631744379999986, -43.72113419 ], [ -176.64118958, -43.7032547 ], [ -176.63008118, -43.70145035 ], [ -176.62588501, -43.69239426 ], [ -176.62588501, -43.69239426 ] ] ], [ [ [ -176.806549069999988, -43.56958389 ], [ -176.8084259, -43.56700516 ], [ -176.80625916, -43.56613922 ], [ -176.806549069999988, -43.56958389 ], [ -176.806549069999988, -43.56958389 ] ] ], [ [ [ -176.8127594, -43.57031631 ], [ -176.81500244, -43.56935883 ], [ -176.81132507, -43.56425476 ], [ -176.8127594, -43.57031631 ], [ -176.8127594, -43.57031631 ] ] ], [ [ [ -176.798339840000011, -43.5643158 ], [ -176.80059814, -43.56806946 ], [ -176.80329895, -43.56391907 ], [ -176.798339840000011, -43.5643158 ], [ -176.798339840000011, -43.5643158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.5", "id_1": 5, "name_1": "Gisborne", "hasc_1": "NZ.GI", "population2022": 52100, "areakm2": 8357.714, "density2022": 6.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.93359375, -38.74312592 ], [ 177.93365479, -38.74114609 ], [ 177.93487549, -38.74159241 ], [ 177.93359375, -38.74312592 ], [ 177.93359375, -38.74312592 ] ] ], [ [ [ 177.93777466, -38.74555588 ], [ 177.93638611, -38.74111176 ], [ 177.93833923, -38.74250031 ], [ 177.93777466, -38.74555588 ], [ 177.93777466, -38.74555588 ] ] ], [ [ [ 178.05137634, -38.70673752 ], [ 178.047500609999986, -38.7080574 ], [ 178.04818726, -38.70524597 ], [ 178.05137634, -38.70673752 ], [ 178.05137634, -38.70673752 ] ] ], [ [ [ 178.23554993, -38.57242966 ], [ 178.23944092, -38.57527924 ], [ 178.23301697, -38.57382965 ], [ 178.23554993, -38.57242966 ], [ 178.23554993, -38.57242966 ] ] ], [ [ [ 178.29556274, -38.53527832 ], [ 178.296386719999987, -38.53277588 ], [ 178.29804993, -38.53277588 ], [ 178.29556274, -38.53527832 ], [ 178.29556274, -38.53527832 ] ] ], [ [ [ 178.34837341, -38.41864395 ], [ 178.348419189999987, -38.41688156 ], [ 178.351226809999986, -38.41682053 ], [ 178.34837341, -38.41864395 ], [ 178.34837341, -38.41864395 ] ] ], [ [ [ 178.34222412, -38.37833405 ], [ 178.35055542, -38.38833237 ], [ 178.34333801, -38.38888931 ], [ 178.34222412, -38.37833405 ], [ 178.34222412, -38.37833405 ] ] ], [ [ [ 178.344802859999987, -38.37496567 ], [ 178.34628296, -38.37577057 ], [ 178.34146118000001, -38.37672806 ], [ 178.344802859999987, -38.37496567 ], [ 178.344802859999987, -38.37496567 ] ] ], [ [ [ 178.336395259999989, -38.35027695 ], [ 178.33583069, -38.34749985 ], [ 178.34388733, -38.34583282 ], [ 178.336395259999989, -38.35027695 ], [ 178.336395259999989, -38.35027695 ] ] ], [ [ [ 178.34344482, -38.2494545 ], [ 178.332672120000012, -38.25011826 ], [ 178.33442688, -38.24695587 ], [ 178.34344482, -38.2494545 ], [ 178.34344482, -38.2494545 ] ] ], [ [ [ 178.342559810000012, -38.21173096 ], [ 178.34147644, -38.21099854 ], [ 178.342712400000011, -38.20990372 ], [ 178.342559810000012, -38.21173096 ], [ 178.342559810000012, -38.21173096 ] ] ], [ [ [ 178.38186646, -38.06932068 ], [ 178.379531859999986, -38.06908035 ], [ 178.38140869, -38.06822586 ], [ 178.38186646, -38.06932068 ], [ 178.38186646, -38.06932068 ] ] ], [ [ [ 178.577774049999988, -37.68805695 ], [ 178.576110840000013, -37.69361115 ], [ 178.57254028, -37.69182968 ], [ 178.577774049999988, -37.68805695 ], [ 178.577774049999988, -37.68805695 ] ] ], [ [ [ 178.172225950000012, -37.53277588 ], [ 178.18278503, -37.53777695 ], [ 178.21278381, -37.53416824 ], [ 178.21888733, -37.54555511 ], [ 178.2930603, -37.55194473 ], [ 178.31472778, -37.55472183 ], [ 178.324996950000013, -37.55944443 ], [ 178.3125, -37.56916809 ], [ 178.296386719999987, -37.57027817 ], [ 178.29444885, -37.57860947 ], [ 178.303894039999989, -37.59166718 ], [ 178.32658386, -37.59018326 ], [ 178.318603520000011, -37.60138702 ], [ 178.35028076, -37.625 ], [ 178.37333679, -37.63249969 ], [ 178.39161682, -37.62696075 ], [ 178.39230347, -37.63064194 ], [ 178.41838074, -37.62968826 ], [ 178.45880127, -37.64155579 ], [ 178.4677887, -37.63809586 ], [ 178.48083496000001, -37.63944626 ], [ 178.49305725, -37.65333176 ], [ 178.52055359, -37.67083359 ], [ 178.53889465, -37.67361069 ], [ 178.55047607, -37.69242859 ], [ 178.54417419, -37.70277786 ], [ 178.52833557, -37.7136116 ], [ 178.523895259999989, -37.72055435 ], [ 178.524902340000011, -37.73236465 ], [ 178.51554871, -37.7452774 ], [ 178.50500488, -37.7491684 ], [ 178.48805237, -37.77249908 ], [ 178.47583008, -37.77583313 ], [ 178.481246950000013, -37.78012085 ], [ 178.44917297, -37.81583405 ], [ 178.44639587, -37.82555389 ], [ 178.455001829999986, -37.83361053 ], [ 178.43861389, -37.84472275 ], [ 178.43305969, -37.84388733 ], [ 178.41333008, -37.86000061 ], [ 178.40499878, -37.8741684 ], [ 178.40666199, -37.88750076 ], [ 178.40167236, -37.90333176 ], [ 178.389160159999989, -37.91972351 ], [ 178.391113280000013, -37.93444443 ], [ 178.39916992, -37.93999863 ], [ 178.392776489999989, -37.96166611 ], [ 178.37583923, -37.9691658 ], [ 178.36833191, -37.98583221 ], [ 178.35417175, -37.98805618 ], [ 178.340271, -38.00416565 ], [ 178.33444214, -38.02027893 ], [ 178.336395259999989, -38.03694534 ], [ 178.357223510000011, -38.04888916 ], [ 178.373291020000011, -38.05094147 ], [ 178.36454773, -38.07032394 ], [ 178.37219238, -38.07107925 ], [ 178.37416077, -38.09444427 ], [ 178.358612060000013, -38.11055374 ], [ 178.34971619, -38.10694504 ], [ 178.32278442, -38.1202774 ], [ 178.31666565, -38.13722229 ], [ 178.31971741000001, -38.14722061 ], [ 178.35694885, -38.17750168 ], [ 178.35255432, -38.18668365 ], [ 178.33805847, -38.19250107 ], [ 178.33305359, -38.21583176 ], [ 178.33666992, -38.22000122 ], [ 178.31913757, -38.22222137 ], [ 178.31083679, -38.22999954 ], [ 178.31137085, -38.23944092 ], [ 178.32598877, -38.25540161 ], [ 178.335006709999988, -38.25999832 ], [ 178.33166504, -38.27222061 ], [ 178.34083557, -38.28527832 ], [ 178.36305237, -38.28749847 ], [ 178.35305786, -38.29611206 ], [ 178.33427429, -38.29845047 ], [ 178.32411194, -38.31058884 ], [ 178.32533264, -38.31893539 ], [ 178.332366940000014, -38.32194901 ], [ 178.33175659, -38.33227539 ], [ 178.32562256, -38.33343124 ], [ 178.33009338, -38.35302734 ], [ 178.30722046, -38.36166763 ], [ 178.3069458, -38.37194443 ], [ 178.29804993, -38.37638855 ], [ 178.31027222, -38.37638855 ], [ 178.31832886, -38.38305664 ], [ 178.340179440000014, -38.3787117 ], [ 178.33734131, -38.40435791 ], [ 178.346603390000013, -38.41904831 ], [ 178.33944702, -38.42444611 ], [ 178.32028198, -38.42777634 ], [ 178.301544189999987, -38.44438553 ], [ 178.29199219, -38.45911407 ], [ 178.288452150000012, -38.47053146 ], [ 178.28120422, -38.47682953 ], [ 178.28663635, -38.48859024 ], [ 178.28416443, -38.51171494 ], [ 178.29545593, -38.52299118 ], [ 178.29333496000001, -38.5295639 ], [ 178.28486633, -38.53173828 ], [ 178.28112793, -38.54019165 ], [ 178.26882935, -38.5398941 ], [ 178.264984129999988, -38.54660416 ], [ 178.24617004000001, -38.55828476 ], [ 178.234161379999989, -38.5616684 ], [ 178.23194885, -38.57194519 ], [ 178.2124939, -38.57972336 ], [ 178.199996950000013, -38.59249878 ], [ 178.19741821, -38.60703659 ], [ 178.18742371, -38.60798645 ], [ 178.17953491, -38.61528015 ], [ 178.17288208, -38.628685 ], [ 178.16096497, -38.63001251 ], [ 178.15568542, -38.63935471 ], [ 178.14646912, -38.64572906 ], [ 178.14813232, -38.65242767 ], [ 178.12770081, -38.65077972 ], [ 178.10848999000001, -38.65973282 ], [ 178.081390379999988, -38.67833328 ], [ 178.07194519, -38.69194412 ], [ 178.06916809, -38.70861053 ], [ 178.06056213, -38.70055389 ], [ 178.04943848, -38.70194626 ], [ 178.03883362, -38.68533325 ], [ 178.02471924, -38.68055725 ], [ 178.01853943, -38.67144012 ], [ 178.00653076, -38.67105865 ], [ 177.98554993, -38.67583466 ], [ 177.96556091, -38.6866684 ], [ 177.951385499999986, -38.69972229 ], [ 177.943603520000011, -38.71138763 ], [ 177.93722534, -38.73249817 ], [ 177.93388367, -38.72472382 ], [ 177.93110657, -38.74305725 ], [ 177.93804932, -38.7527771 ], [ 177.950408939999988, -38.75516129 ], [ 177.95944214, -38.7519455 ], [ 177.97305298, -38.75611115 ], [ 177.95057678, -38.7648201 ], [ 177.946228029999986, -38.77706909 ], [ 177.92860413, -38.78888702 ], [ 177.91946411, -38.81238556 ], [ 177.92411804, -38.82071304 ], [ 177.91288757, -38.82760239 ], [ 177.91157532, -38.85138702 ], [ 177.92037964, -38.86795807 ], [ 177.90356445, -38.88601685 ], [ 177.9115448, -38.9057045 ], [ 177.91000366, -38.92361069 ], [ 177.90332031, -38.93183899 ], [ 177.90527344, -38.94861221 ], [ 177.896728520000011, -38.9653244 ], [ 177.899627689999988, -38.97198105 ], [ 177.85914612, -38.96456146 ], [ 177.86585999, -38.96245956 ], [ 177.844787599999989, -38.95827484 ], [ 177.83329773, -38.94565582 ], [ 177.84846497, -38.92477417 ], [ 177.836685179999989, -38.9121666 ], [ 177.823287959999988, -38.91629791 ], [ 177.82049561, -38.92256165 ], [ 177.80207825, -38.91204453 ], [ 177.80877686, -38.90997696 ], [ 177.80096436, -38.90159607 ], [ 177.80374146, -38.89533615 ], [ 177.79037476, -38.89946747 ], [ 177.79428101, -38.90366364 ], [ 177.780914309999986, -38.90780258 ], [ 177.778121950000013, -38.9140625 ], [ 177.75193787, -38.89509201 ], [ 177.74917603, -38.90138245 ], [ 177.735824580000013, -38.90552521 ], [ 177.739730830000013, -38.90973663 ], [ 177.730270389999987, -38.91809082 ], [ 177.72915649, -38.9076004 ], [ 177.72135925, -38.89916611 ], [ 177.7118988, -38.90753555 ], [ 177.69744873, -38.9011879 ], [ 177.684097290000011, -38.90534973 ], [ 177.66966248, -38.8990097 ], [ 177.66687012, -38.90530396 ], [ 177.65631104, -38.90318298 ], [ 177.661346439999988, -38.85274124 ], [ 177.66412354, -38.84643173 ], [ 177.65081787, -38.85062027 ], [ 177.6519165, -38.8611412 ], [ 177.63473511, -38.86111832 ], [ 177.61927795, -38.84428024 ], [ 177.59933472, -38.85056686 ], [ 177.59344482, -38.82536316 ], [ 177.58679199, -38.82745361 ], [ 177.59532166, -38.80859375 ], [ 177.58103943, -38.80229187 ], [ 177.56773376000001, -38.80646515 ], [ 177.56391907, -38.80226898 ], [ 177.54397583, -38.80854034 ], [ 177.5411377, -38.81482697 ], [ 177.53353882, -38.80644226 ], [ 177.53259277, -38.79595947 ], [ 177.51367188, -38.77500153 ], [ 177.493774409999986, -38.78127289 ], [ 177.485290529999986, -38.76239395 ], [ 177.47488403, -38.76028442 ], [ 177.46733093, -38.75188065 ], [ 177.47966003, -38.73721313 ], [ 177.4683075, -38.72459793 ], [ 177.47494507, -38.72251129 ], [ 177.46359253, -38.70988846 ], [ 177.470214840000011, -38.70780182 ], [ 177.44277954, -38.7056427 ], [ 177.431442260000011, -38.69300842 ], [ 177.42860413, -38.69930649 ], [ 177.41157532, -38.69926834 ], [ 177.42010498, -38.68037033 ], [ 177.4163208, -38.67615509 ], [ 177.43617249, -38.6699028 ], [ 177.43522644, -38.6593895 ], [ 177.444686890000014, -38.65100861 ], [ 177.44088745, -38.64679337 ], [ 177.45413208, -38.64262772 ], [ 177.4503479, -38.63841248 ], [ 177.41252136, -38.63409042 ], [ 177.39456177, -38.62350845 ], [ 177.38793945, -38.62559128 ], [ 177.36054993, -38.62338257 ], [ 177.35394287, -38.62546158 ], [ 177.307678220000014, -38.60210419 ], [ 177.30957031, -38.62318039 ], [ 177.30957031, -38.66109848 ], [ 177.28883362, -38.65681458 ], [ 177.27471924, -38.65044403 ], [ 177.12762451, -38.58855057 ], [ 177.13041687, -38.5822258 ], [ 177.14723206, -38.58233261 ], [ 177.14442444, -38.58865738 ], [ 177.17059326, -38.58036423 ], [ 177.1631012, -38.5718689 ], [ 177.18275452, -38.56565094 ], [ 177.18180847, -38.55509186 ], [ 177.203323360000013, -38.53199768 ], [ 177.206130980000012, -38.52568436 ], [ 177.21362305, -38.53416824 ], [ 177.23049927, -38.5342598 ], [ 177.245483400000012, -38.51325607 ], [ 177.249252320000011, -38.5174942 ], [ 177.25862122, -38.50911713 ], [ 177.237808230000013, -38.42886353 ], [ 177.299743650000011, -38.40407562 ], [ 177.34864807, -38.38344955 ], [ 177.39471436, -38.36911011 ], [ 177.4434967, -38.34848404 ], [ 177.45283508, -38.34014893 ], [ 177.46594238, -38.33602142 ], [ 177.471466060000012, -38.32346344 ], [ 177.49276733, -38.300457 ], [ 177.49064636, -38.27949142 ], [ 177.50263977, -38.26485443 ], [ 177.49610901, -38.26693344 ], [ 177.48851013, -38.25852966 ], [ 177.495040890000013, -38.25645447 ], [ 177.48364258, -38.24385071 ], [ 177.49667358, -38.23970032 ], [ 177.49940491000001, -38.23342514 ], [ 177.49180603, -38.22502899 ], [ 177.51135254, -38.21879959 ], [ 177.515151980000013, -38.22299957 ], [ 177.531997679999989, -38.22303391 ], [ 177.530899049999988, -38.21256256 ], [ 177.55618286, -38.21260071 ], [ 177.567321779999986, -38.20633316 ], [ 177.56350708, -38.20214462 ], [ 177.60270691, -38.18959045 ], [ 177.60430908, -38.1728363 ], [ 177.60813904, -38.17702103 ], [ 177.62779236, -38.17070007 ], [ 177.630508420000012, -38.16440582 ], [ 177.64089966, -38.1664772 ], [ 177.66056824, -38.16012955 ], [ 177.649063109999986, -38.14759445 ], [ 177.661056519999988, -38.13288498 ], [ 177.65992737, -38.12240982 ], [ 177.69271851, -38.11179733 ], [ 177.69543457, -38.10549545 ], [ 177.68774414, -38.0971489 ], [ 177.686599730000012, -38.08668137 ], [ 177.67619324, -38.08463287 ], [ 177.68930054, -38.0803833 ], [ 177.68815613000001, -38.06991196 ], [ 177.701263430000012, -38.06565475 ], [ 177.6781311, -38.04065323 ], [ 177.68467712, -38.03852081 ], [ 177.66923523, -38.02186966 ], [ 177.68887329, -38.01547241 ], [ 177.70046997, -38.02796173 ], [ 177.72399902, -38.0257225 ], [ 177.74331665, -38.04655838 ], [ 177.775741579999988, -38.06314087 ], [ 177.8494873, -38.11515808 ], [ 177.858764650000012, -38.1067009 ], [ 177.86262512, -38.11087799 ], [ 177.91697693, -37.98450089 ], [ 177.943115229999989, -37.91049576 ], [ 177.970489500000014, -37.84687042 ], [ 178.07418823, -37.76342773 ], [ 178.037170409999987, -37.73210144 ], [ 177.99591064, -37.76205063 ], [ 177.9730835, -37.736866 ], [ 177.97589111, -37.73050308 ], [ 177.99188232, -37.71981812 ], [ 177.98432922, -37.71144104 ], [ 177.98335266, -37.70090866 ], [ 177.99649048, -37.69659424 ], [ 177.99926758, -37.69025803 ], [ 177.98791504, -37.67772675 ], [ 177.99446106, -37.67557907 ], [ 177.9868927, -37.66723633 ], [ 177.99343872, -37.66508865 ], [ 177.992385860000013, -37.65461349 ], [ 177.973419189999987, -37.63385773 ], [ 177.97991943, -37.63170624 ], [ 177.972320559999986, -37.62343979 ], [ 177.9788208, -37.62128067 ], [ 177.984161379999989, -37.60866928 ], [ 178.020278929999989, -37.60207367 ], [ 178.03947449, -37.59576416 ], [ 178.105667110000013, -37.59650803 ], [ 178.09403992, -37.58409119 ], [ 178.07955933, -37.55147171 ], [ 178.07943726, -37.5419426 ], [ 178.08721924, -37.53972244 ], [ 178.11054993, -37.54722214 ], [ 178.12861633, -37.54833221 ], [ 178.142776489999989, -37.54639053 ], [ 178.14694214, -37.55027771 ], [ 178.16694641, -37.54972076 ], [ 178.172225950000012, -37.53277588 ], [ 178.172225950000012, -37.53277588 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.6", "id_1": 6, "name_1": "Hawke's Bay", "hasc_1": "NZ.HB", "population2022": 182700, "areakm2": 12689.223, "density2022": 14.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.586837769999988, -40.43193054 ], [ 176.582901, -40.42770767 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ], [ [ [ 177.02888489, -39.83027649 ], [ 177.0305481, -39.83416748 ], [ 177.02278137, -39.83611298 ], [ 177.02888489, -39.83027649 ], [ 177.02888489, -39.83027649 ] ] ], [ [ [ 177.8694458, -39.27527618 ], [ 177.87333679, -39.27722168 ], [ 177.87554932, -39.29555511 ], [ 177.8694458, -39.30638885 ], [ 177.861114500000014, -39.30389023 ], [ 177.862777709999989, -39.28499985 ], [ 177.8694458, -39.27527618 ], [ 177.8694458, -39.27527618 ] ] ], [ [ [ 176.589523320000012, -40.42566299 ], [ 176.577621459999989, -40.41304398 ], [ 176.56306458, -40.40666199 ], [ 176.55107117, -40.42127609 ], [ 176.52593994, -40.41265488 ], [ 176.496856689999987, -40.39968491 ], [ 176.49147034, -40.412323 ], [ 176.476913450000012, -40.40582657 ], [ 176.46360779, -40.40992737 ], [ 176.44903564, -40.40341949 ], [ 176.44238281, -40.4054718 ], [ 176.4344635, -40.39690781 ], [ 176.44111633, -40.3948555 ], [ 176.43319702, -40.38628006 ], [ 176.419860840000013, -40.39039612 ], [ 176.4039917, -40.37324524 ], [ 176.390625, -40.37737274 ], [ 176.38665771, -40.37308502 ], [ 176.39607239, -40.36466599 ], [ 176.3921051, -40.36037445 ], [ 176.37081909, -40.35591507 ], [ 176.409683230000013, -40.33288574 ], [ 176.399063109999986, -40.33064651 ], [ 176.387222290000011, -40.31775284 ], [ 176.3966217, -40.30932999 ], [ 176.400894169999987, -40.28594589 ], [ 176.39302063, -40.27733994 ], [ 176.38633728, -40.27939987 ], [ 176.378479, -40.27079391 ], [ 176.38789368, -40.26236725 ], [ 176.3800354, -40.25375748 ], [ 176.38670349, -40.25169754 ], [ 176.37884521, -40.24308777 ], [ 176.38160706, -40.23672104 ], [ 176.3710022, -40.234478 ], [ 176.375320429999988, -40.2110672 ], [ 176.36198425, -40.21519089 ], [ 176.36631775, -40.19179153 ], [ 176.36239624000001, -40.18748856 ], [ 176.37182617, -40.17906189 ], [ 176.36398315, -40.17045975 ], [ 176.377319340000014, -40.16633224 ], [ 176.38008118, -40.15996933 ], [ 176.36833191, -40.14707184 ], [ 176.347152709999989, -40.14260864 ], [ 176.3354187, -40.1297226 ], [ 176.34208679, -40.12765884 ], [ 176.33425903, -40.11906815 ], [ 176.317016599999988, -40.11891174 ], [ 176.31309509, -40.11462021 ], [ 176.32252502, -40.10619354 ], [ 176.31471252, -40.09761047 ], [ 176.321380620000014, -40.09554291 ], [ 176.3163147, -40.08060455 ], [ 176.30851746, -40.07202911 ], [ 176.301849370000014, -40.07409668 ], [ 176.30072021, -40.06345749 ], [ 176.27682495, -40.06537628 ], [ 176.262359620000012, -40.05887604 ], [ 176.27180481, -40.050457 ], [ 176.261245730000013, -40.04824448 ], [ 176.264022829999988, -40.04189301 ], [ 176.24291992, -40.03746796 ], [ 176.24180603, -40.02684021 ], [ 176.214050289999989, -40.02448273 ], [ 176.212951659999987, -40.0138588 ], [ 176.182403560000012, -40.01784897 ], [ 176.185195920000012, -40.01150131 ], [ 176.17185974, -40.01563644 ], [ 176.157440189999988, -40.00914764 ], [ 176.13853455, -40.02597046 ], [ 176.126892090000013, -40.013134 ], [ 176.10084534, -39.99382019 ], [ 176.09976196, -39.98320389 ], [ 176.12145996000001, -39.96006393 ], [ 176.11758423, -39.95579147 ], [ 176.127044680000012, -39.94739532 ], [ 176.108764650000012, -39.93664551 ], [ 176.11541748, -39.93458176 ], [ 176.114349370000014, -39.92398071 ], [ 176.1210022, -39.92191696 ], [ 176.11326599, -39.91337585 ], [ 176.129364009999989, -39.90292358 ], [ 176.13494873, -39.89026642 ], [ 176.12055969, -39.88378906 ], [ 176.13450623, -39.85215378 ], [ 176.14115906, -39.85009384 ], [ 176.14179993, -39.82258606 ], [ 176.17805481, -39.74040604 ], [ 176.172073360000013, -39.71498108 ], [ 176.18536377, -39.71086884 ], [ 176.186035159999989, -39.68339157 ], [ 176.1993103, -39.67928314 ], [ 176.20872498, -39.6709137 ], [ 176.20103455, -39.66239166 ], [ 176.16856384, -39.64518738 ], [ 176.185333250000014, -39.6072998 ], [ 176.177658079999986, -39.59877396 ], [ 176.164398190000014, -39.60287476 ], [ 176.16337585, -39.5922966 ], [ 176.156738280000013, -39.59434891 ], [ 176.14524841, -39.58155441 ], [ 176.162338260000013, -39.58171844 ], [ 176.18885803, -39.57352066 ], [ 176.190628049999987, -39.556633 ], [ 176.203872679999989, -39.55253601 ], [ 176.21226501000001, -39.53359985 ], [ 176.252014159999987, -39.52131271 ], [ 176.254806519999988, -39.5150032 ], [ 176.30776978, -39.49861908 ], [ 176.322036739999987, -39.50508499 ], [ 176.32865906, -39.5030365 ], [ 176.317169189999987, -39.49026108 ], [ 176.3237915, -39.4882164 ], [ 176.31613159, -39.47969818 ], [ 176.32936096, -39.47560501 ], [ 176.31892395, -39.47339249 ], [ 176.3112793, -39.46487808 ], [ 176.32069397, -39.4565239 ], [ 176.31965637, -39.445961 ], [ 176.30819702, -39.43318558 ], [ 176.32040405, -39.41853333 ], [ 176.3099823, -39.41631699 ], [ 176.32981873, -39.41018677 ], [ 176.32600403, -39.40592575 ], [ 176.33540344, -39.39757919 ], [ 176.32397461, -39.38479996 ], [ 176.34098816, -39.38497543 ], [ 176.33337402, -39.37645721 ], [ 176.33998108, -39.37441635 ], [ 176.332366940000014, -39.36589432 ], [ 176.31915283, -39.36997604 ], [ 176.307724, -39.35719299 ], [ 176.29450989, -39.36127472 ], [ 176.27368164, -39.3568306 ], [ 176.2802887, -39.35478973 ], [ 176.268890379999988, -39.34199905 ], [ 176.28210449, -39.33791733 ], [ 176.28111267, -39.32735062 ], [ 176.28771973, -39.32531357 ], [ 176.28012085, -39.31678391 ], [ 176.290527340000011, -39.31901169 ], [ 176.28292847, -39.31048203 ], [ 176.309341429999989, -39.30233002 ], [ 176.31115723, -39.28546143 ], [ 176.29977417, -39.27266693 ], [ 176.30258179, -39.26636505 ], [ 176.29119873, -39.25357056 ], [ 176.297805790000012, -39.25153351 ], [ 176.29022217, -39.24300003 ], [ 176.27983093, -39.24076843 ], [ 176.26663208, -39.24483871 ], [ 176.25527954, -39.23203659 ], [ 176.22790527, -39.22960281 ], [ 176.21470642, -39.23366928 ], [ 176.21374512, -39.22309494 ], [ 176.20713806, -39.22513199 ], [ 176.19958496000001, -39.21659088 ], [ 176.20617676, -39.21455383 ], [ 176.19862366000001, -39.20601273 ], [ 176.20144653, -39.19971085 ], [ 176.18634033, -39.18262482 ], [ 176.19293213, -39.18059158 ], [ 176.18537903, -39.17204666 ], [ 176.1882019, -39.16574097 ], [ 176.18066406, -39.15719604 ], [ 176.19197083, -39.1319809 ], [ 176.1882019, -39.12770844 ], [ 176.22116089, -39.11756134 ], [ 176.22398376000001, -39.11125565 ], [ 176.24375916, -39.10516739 ], [ 176.23622131, -39.09662628 ], [ 176.344680790000012, -39.17187119 ], [ 176.38800049, -39.16394806 ], [ 176.40116882, -39.15988922 ], [ 176.396408079999986, -39.14506531 ], [ 176.38505554, -39.132267 ], [ 176.37469482, -39.13002777 ], [ 176.42077637, -39.11582947 ], [ 176.437713620000011, -39.11604309 ], [ 176.45185852, -39.12254333 ], [ 176.422485349999988, -39.06100845 ], [ 176.45428467, -39.00237656 ], [ 176.55567932, -39.00378036 ], [ 176.54814148, -38.9952507 ], [ 176.61947632, -39.00051498 ], [ 176.61193848, -38.99198532 ], [ 176.61849976, -38.9899826 ], [ 176.603424069999988, -38.97291565 ], [ 176.609985349999988, -38.97091293 ], [ 176.598693849999989, -38.95811081 ], [ 176.60804749, -38.94984436 ], [ 176.600509640000013, -38.94130707 ], [ 176.603317260000011, -38.93504333 ], [ 176.619232180000012, -38.92478943 ], [ 176.70976257, -38.84854889 ], [ 176.70225525, -38.83998489 ], [ 176.711578370000012, -38.8317337 ], [ 176.7003479, -38.81888962 ], [ 176.6993866, -38.80833817 ], [ 176.71244812, -38.80435944 ], [ 176.70495605, -38.79579544 ], [ 176.71801758, -38.79181671 ], [ 176.70774841, -38.78952408 ], [ 176.71611023, -38.77070236 ], [ 176.711425780000013, -38.75586319 ], [ 176.719802859999987, -38.73703003 ], [ 176.71885681, -38.72647095 ], [ 176.73190308, -38.72247696 ], [ 176.73937988, -38.73104477 ], [ 176.752441409999989, -38.72704697 ], [ 176.748703, -38.72276306 ], [ 176.76454163, -38.71247864 ], [ 176.77012634, -38.6999054 ], [ 176.7766571, -38.69789886 ], [ 176.77571106, -38.68732834 ], [ 176.795272829999988, -38.68130112 ], [ 176.82325745, -38.69441986 ], [ 176.83256531, -38.68611908 ], [ 176.84559631, -38.6821022 ], [ 176.85490417, -38.67380142 ], [ 176.862350459999988, -38.68237305 ], [ 176.87536621000001, -38.67835617 ], [ 176.87164307, -38.67407227 ], [ 176.89115906, -38.66804886 ], [ 176.90977478, -38.68947601 ], [ 176.9302063, -38.69403839 ], [ 176.93763733, -38.70261002 ], [ 176.9506073, -38.69859695 ], [ 176.95433044, -38.70288467 ], [ 176.967300419999987, -38.69887161 ], [ 176.9682312, -38.70945358 ], [ 176.987670900000012, -38.70342636 ], [ 176.98396301, -38.69913864 ], [ 177.00337219, -38.69309998 ], [ 177.002441409999989, -38.68251419 ], [ 177.0153656, -38.67847824 ], [ 177.02088928, -38.66587067 ], [ 177.02735901, -38.66384506 ], [ 177.01994324, -38.65528488 ], [ 177.026412959999988, -38.65325928 ], [ 177.034683230000013, -38.63433456 ], [ 177.047637939999987, -38.63026047 ], [ 177.04393005, -38.62598419 ], [ 177.060607909999987, -38.62615967 ], [ 177.06990051, -38.61777115 ], [ 177.08291626, -38.6136322 ], [ 177.0838623, -38.62421799 ], [ 177.096893310000013, -38.62007523 ], [ 177.100631709999988, -38.62432861 ], [ 177.10899353, -38.60534668 ], [ 177.11552429, -38.60327148 ], [ 177.12110901, -38.59062195 ], [ 177.12762451, -38.58855057 ], [ 177.27471924, -38.65044403 ], [ 177.28883362, -38.65681458 ], [ 177.30957031, -38.66109848 ], [ 177.30957031, -38.62318039 ], [ 177.307678220000014, -38.60210419 ], [ 177.35394287, -38.62546158 ], [ 177.36054993, -38.62338257 ], [ 177.38793945, -38.62559128 ], [ 177.39456177, -38.62350845 ], [ 177.41252136, -38.63409042 ], [ 177.4503479, -38.63841248 ], [ 177.45413208, -38.64262772 ], [ 177.44088745, -38.64679337 ], [ 177.444686890000014, -38.65100861 ], [ 177.43522644, -38.6593895 ], [ 177.43617249, -38.6699028 ], [ 177.4163208, -38.67615509 ], [ 177.42010498, -38.68037033 ], [ 177.41157532, -38.69926834 ], [ 177.42860413, -38.69930649 ], [ 177.431442260000011, -38.69300842 ], [ 177.44277954, -38.7056427 ], [ 177.470214840000011, -38.70780182 ], [ 177.46359253, -38.70988846 ], [ 177.47494507, -38.72251129 ], [ 177.4683075, -38.72459793 ], [ 177.47966003, -38.73721313 ], [ 177.46733093, -38.75188065 ], [ 177.47488403, -38.76028442 ], [ 177.485290529999986, -38.76239395 ], [ 177.493774409999986, -38.78127289 ], [ 177.51367188, -38.77500153 ], [ 177.53637695, -38.80015182 ], [ 177.53353882, -38.80644226 ], [ 177.5411377, -38.81482697 ], [ 177.54397583, -38.80854034 ], [ 177.56391907, -38.80226898 ], [ 177.56773376000001, -38.80646515 ], [ 177.58103943, -38.80229187 ], [ 177.59532166, -38.80859375 ], [ 177.58679199, -38.82745361 ], [ 177.59344482, -38.82536316 ], [ 177.59933472, -38.85056686 ], [ 177.61927795, -38.84428024 ], [ 177.63473511, -38.86111832 ], [ 177.6519165, -38.8611412 ], [ 177.65081787, -38.85062027 ], [ 177.66412354, -38.84643173 ], [ 177.661346439999988, -38.85274124 ], [ 177.65631104, -38.90318298 ], [ 177.66687012, -38.90530396 ], [ 177.66966248, -38.8990097 ], [ 177.684097290000011, -38.90534973 ], [ 177.69744873, -38.9011879 ], [ 177.7118988, -38.90753555 ], [ 177.72135925, -38.89916611 ], [ 177.72915649, -38.9076004 ], [ 177.730270389999987, -38.91809082 ], [ 177.739730830000013, -38.90973663 ], [ 177.735824580000013, -38.90552521 ], [ 177.74917603, -38.90138245 ], [ 177.75193787, -38.89509201 ], [ 177.778121950000013, -38.9140625 ], [ 177.780914309999986, -38.90780258 ], [ 177.79428101, -38.90366364 ], [ 177.79037476, -38.89946747 ], [ 177.80374146, -38.89533615 ], [ 177.80096436, -38.90159607 ], [ 177.80877686, -38.90997696 ], [ 177.80207825, -38.91204453 ], [ 177.82049561, -38.92256165 ], [ 177.823287959999988, -38.91629791 ], [ 177.836685179999989, -38.9121666 ], [ 177.84846497, -38.92477417 ], [ 177.842834470000014, -38.93731308 ], [ 177.83329773, -38.94565582 ], [ 177.844787599999989, -38.95827484 ], [ 177.86585999, -38.96245956 ], [ 177.85914612, -38.96456146 ], [ 177.899627689999988, -38.97198105 ], [ 177.89448547, -38.99613571 ], [ 177.8944397, -39.00888824 ], [ 177.886108400000012, -39.01777649 ], [ 177.888885499999986, -39.04416656 ], [ 177.8999939, -39.07166672 ], [ 177.90943909, -39.07583237 ], [ 177.91448975, -39.08446884 ], [ 177.94805908, -39.0941658 ], [ 177.96360779, -39.0886116 ], [ 177.96888733, -39.09722137 ], [ 177.988891599999988, -39.0969429 ], [ 178.00389099, -39.10388947 ], [ 178.00151062, -39.11472321 ], [ 177.98200989, -39.12532806 ], [ 177.96972656, -39.13639069 ], [ 177.96008301, -39.13656616 ], [ 177.94625854, -39.15620422 ], [ 177.938400269999988, -39.15771866 ], [ 177.92443848, -39.17083359 ], [ 177.92645264, -39.18907928 ], [ 177.918884279999986, -39.20777893 ], [ 177.9069519, -39.22999954 ], [ 177.88491821, -39.24909592 ], [ 177.87889099, -39.25055695 ], [ 177.87287903, -39.26136017 ], [ 177.863616940000014, -39.26833344 ], [ 177.858337400000011, -39.25444412 ], [ 177.86193848, -39.24666595 ], [ 177.858886719999987, -39.23749924 ], [ 177.851104740000011, -39.23083496 ], [ 177.8500061, -39.21111298 ], [ 177.84056091, -39.1827774 ], [ 177.821105960000011, -39.1613884 ], [ 177.82728577, -39.16129303 ], [ 177.83805847, -39.1511116 ], [ 177.83778381, -39.14027786 ], [ 177.84597778, -39.13588333 ], [ 177.85305786, -39.1241684 ], [ 177.853607180000012, -39.11583328 ], [ 177.860275269999988, -39.11138916 ], [ 177.858612060000013, -39.10222244 ], [ 177.86721802, -39.09749985 ], [ 177.86610413, -39.08611298 ], [ 177.87236023, -39.08409119 ], [ 177.87037659, -39.07657242 ], [ 177.85928345, -39.06583786 ], [ 177.84680176, -39.0603447 ], [ 177.835037230000012, -39.0605545 ], [ 177.82925415, -39.07449341 ], [ 177.81277466, -39.07444382 ], [ 177.79476929, -39.06640244 ], [ 177.768463129999986, -39.06230164 ], [ 177.74667358, -39.05638885 ], [ 177.66708374000001, -39.05081177 ], [ 177.60142517, -39.05247116 ], [ 177.56582642, -39.05527878 ], [ 177.54333496000001, -39.05444336 ], [ 177.4828949, -39.05644608 ], [ 177.43305969, -39.06277847 ], [ 177.42860413, -39.05638885 ], [ 177.431396479999989, -39.04527664 ], [ 177.4125061, -39.06361008 ], [ 177.35038757, -39.07725525 ], [ 177.2902832, -39.09222412 ], [ 177.213790890000013, -39.11782837 ], [ 177.18444824, -39.1297226 ], [ 177.15345764, -39.13977051 ], [ 177.123535159999989, -39.15211105 ], [ 177.07305908, -39.17777634 ], [ 177.047500609999986, -39.19369507 ], [ 177.03971863000001, -39.20055389 ], [ 177.034729, -39.23833466 ], [ 177.021987919999987, -39.24702835 ], [ 177.02333069, -39.2508316 ], [ 177.01106262, -39.27080917 ], [ 176.99806213, -39.27861023 ], [ 176.9916687, -39.29333496 ], [ 176.96638489, -39.3144455 ], [ 176.95033264, -39.32203293 ], [ 176.94242859, -39.33499527 ], [ 176.934646609999987, -39.33959579 ], [ 176.930191040000011, -39.33571625 ], [ 176.92030334, -39.33919525 ], [ 176.89538574, -39.37428665 ], [ 176.88139343, -39.40638733 ], [ 176.875610349999988, -39.42479324 ], [ 176.872131349999989, -39.45125198 ], [ 176.879226679999988, -39.46986008 ], [ 176.88528442, -39.47833252 ], [ 176.89805603, -39.4794426 ], [ 176.91583252, -39.47305679 ], [ 176.922500609999986, -39.47833252 ], [ 176.920272829999988, -39.48860931 ], [ 176.91920471, -39.52249146 ], [ 176.922500609999986, -39.55110931 ], [ 176.930450439999987, -39.57159424 ], [ 176.953338620000011, -39.60955429 ], [ 176.96762085, -39.62439346 ], [ 176.98083496000001, -39.63249969 ], [ 176.98693848, -39.6305542 ], [ 177.00267029, -39.63985443 ], [ 177.03166199, -39.64972305 ], [ 177.04333496000001, -39.64472198 ], [ 177.06388855, -39.64250183 ], [ 177.077224730000012, -39.63360977 ], [ 177.08444214, -39.64138794 ], [ 177.09611511, -39.64361191 ], [ 177.09165955, -39.65277863 ], [ 177.08076477, -39.66241455 ], [ 177.07943726, -39.67277908 ], [ 177.050170900000012, -39.69223785 ], [ 177.03668213, -39.70506287 ], [ 177.01965332, -39.72591019 ], [ 177.01393127, -39.73768234 ], [ 177.00775146, -39.76146698 ], [ 177.01028442, -39.77027893 ], [ 176.998947140000013, -39.78574753 ], [ 176.993896479999989, -39.79972076 ], [ 176.993652340000011, -39.81194305 ], [ 177.00582886, -39.84194565 ], [ 176.99499512, -39.8433342 ], [ 176.98832703, -39.85638809 ], [ 176.98117065, -39.86145401 ], [ 176.96539307, -39.88660049 ], [ 176.96376038, -39.90393066 ], [ 176.95568848, -39.91743469 ], [ 176.93849182, -39.92717361 ], [ 176.928894039999989, -39.94499969 ], [ 176.927978520000011, -39.95892334 ], [ 176.91473389, -39.97155762 ], [ 176.90852356, -39.98235321 ], [ 176.90333557, -40.00666809 ], [ 176.88806152, -40.0261116 ], [ 176.88020325, -40.04597473 ], [ 176.88027954, -40.06027603 ], [ 176.89425659, -40.07424545 ], [ 176.891250609999986, -40.08286285 ], [ 176.874786379999989, -40.09606552 ], [ 176.87080383, -40.10604858 ], [ 176.87388611, -40.11916733 ], [ 176.87832642, -40.11999893 ], [ 176.8666687, -40.13499832 ], [ 176.84527588, -40.14583206 ], [ 176.84916687, -40.15222168 ], [ 176.84333801, -40.15999985 ], [ 176.828323360000013, -40.16924667 ], [ 176.82583618000001, -40.1819458 ], [ 176.795272829999988, -40.2080574 ], [ 176.786605830000013, -40.22458267 ], [ 176.780197140000013, -40.21709061 ], [ 176.764724730000012, -40.21944427 ], [ 176.73944092, -40.22833252 ], [ 176.71583557, -40.24000168 ], [ 176.69917297, -40.25305557 ], [ 176.68444824, -40.26111221 ], [ 176.67443848, -40.27138901 ], [ 176.66743469, -40.29819489 ], [ 176.666381840000014, -40.31361008 ], [ 176.673339840000011, -40.32110977 ], [ 176.65293884, -40.35227585 ], [ 176.649368290000012, -40.36864471 ], [ 176.63630676, -40.38997269 ], [ 176.63661194, -40.40676117 ], [ 176.623535159999989, -40.42652893 ], [ 176.5921936, -40.41939926 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.7", "id_1": 7, "name_1": "Manawatu-Wanganui", "hasc_1": "NZ.MW", "population2022": 258200, "areakm2": 21962.059, "density2022": 11.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.5921936, -40.41939926 ], [ 176.623535159999989, -40.42652893 ], [ 176.62361145, -40.44416809 ], [ 176.63438416, -40.45258331 ], [ 176.62889099, -40.46111298 ], [ 176.62971497, -40.47555542 ], [ 176.6222229, -40.49139023 ], [ 176.60687256, -40.49111176 ], [ 176.56639099, -40.4952774 ], [ 176.52722168, -40.51111221 ], [ 176.51167297, -40.52000046 ], [ 176.514999390000014, -40.52166748 ], [ 176.479721070000011, -40.54388809 ], [ 176.47277832, -40.5577774 ], [ 176.47389221, -40.57110977 ], [ 176.4624939, -40.57749939 ], [ 176.460006709999988, -40.58361053 ], [ 176.416107180000012, -40.60666656 ], [ 176.4152832, -40.62194443 ], [ 176.40249634, -40.62805557 ], [ 176.387496950000013, -40.64277649 ], [ 176.386383059999986, -40.65194321 ], [ 176.3788147, -40.6553688 ], [ 176.3777771, -40.66777802 ], [ 176.36166382, -40.68027878 ], [ 176.35305786, -40.68157196 ], [ 176.34472656, -40.69194412 ], [ 176.33305359, -40.69858932 ], [ 176.312835690000014, -40.71668243 ], [ 176.30844116, -40.73020172 ], [ 176.298614500000014, -40.73583221 ], [ 176.28767395, -40.74990082 ], [ 176.291900629999986, -40.75482178 ], [ 176.288604740000011, -40.76527786 ], [ 176.27166748, -40.78194427 ], [ 176.26315308, -40.77605057 ], [ 176.26176453, -40.76538849 ], [ 176.2736969, -40.75070953 ], [ 176.26567078, -40.74206543 ], [ 176.24835205, -40.74177933 ], [ 176.247009279999986, -40.73113632 ], [ 176.21905518, -40.70081711 ], [ 176.20568848, -40.7048912 ], [ 176.19767761, -40.69624329 ], [ 176.1869812, -40.6939621 ], [ 176.173614500000014, -40.69804001 ], [ 176.15888977, -40.69146347 ], [ 176.153533939999988, -40.67651749 ], [ 176.13346863000001, -40.68264008 ], [ 176.11872864, -40.67610168 ], [ 176.11204529, -40.67815018 ], [ 176.104003909999989, -40.66957855 ], [ 176.090606689999987, -40.67368698 ], [ 176.08792114, -40.70762634 ], [ 176.077194209999988, -40.70539856 ], [ 176.0852356, -40.71397018 ], [ 176.07450867, -40.7117424 ], [ 176.06109619, -40.71586609 ], [ 176.0436554, -40.7157135 ], [ 176.02218628, -40.71128845 ], [ 176.024887080000013, -40.70493698 ], [ 176.0141449, -40.70272446 ], [ 175.99934387, -40.72384644 ], [ 175.97789001000001, -40.71942139 ], [ 175.97117615, -40.72149277 ], [ 175.97920227, -40.73005676 ], [ 175.97651672, -40.73640823 ], [ 175.959075930000012, -40.73626328 ], [ 175.95637512, -40.74261475 ], [ 175.945648190000014, -40.74040222 ], [ 175.93484497, -40.76580048 ], [ 175.91207886, -40.75074387 ], [ 175.88653564, -40.76964188 ], [ 175.873107909999987, -40.77376938 ], [ 175.85838318, -40.76726913 ], [ 175.850372310000012, -40.75870514 ], [ 175.84094238, -40.76711273 ], [ 175.82621765, -40.76060867 ], [ 175.814102170000012, -40.77535629 ], [ 175.796661379999989, -40.77519608 ], [ 175.78865051, -40.76663208 ], [ 175.785949710000011, -40.77297211 ], [ 175.76451111, -40.76852417 ], [ 175.76591492, -40.75155258 ], [ 175.77934265, -40.74743271 ], [ 175.775329590000013, -40.74314499 ], [ 175.79016113, -40.72203445 ], [ 175.783447270000011, -40.72409821 ], [ 175.7754364, -40.71552658 ], [ 175.78485107, -40.70711517 ], [ 175.766113280000013, -40.69631958 ], [ 175.75669861, -40.70472717 ], [ 175.74868774, -40.69615555 ], [ 175.72055054, -40.69376373 ], [ 175.68972778, -40.69771576 ], [ 175.693725590000014, -40.70200348 ], [ 175.685607909999987, -40.72104645 ], [ 175.67619324, -40.72945023 ], [ 175.66148376000001, -40.72293472 ], [ 175.65335083, -40.74196243 ], [ 175.629226679999988, -40.74383926 ], [ 175.63322449, -40.74812317 ], [ 175.61981201, -40.75222778 ], [ 175.61180115, -40.74365616 ], [ 175.60510254, -40.74570847 ], [ 175.59710693, -40.73713684 ], [ 175.59039307, -40.73918915 ], [ 175.57569885, -40.73266983 ], [ 175.562286379999989, -40.73676682 ], [ 175.55429077, -40.72819519 ], [ 175.56098938, -40.7261467 ], [ 175.47012329, -40.69334412 ], [ 175.4499054, -40.72703171 ], [ 175.44320679, -40.72907257 ], [ 175.43780518, -40.74172592 ], [ 175.42442322, -40.74580765 ], [ 175.413742070000012, -40.74356079 ], [ 175.405761719999987, -40.73498535 ], [ 175.392379760000011, -40.73905945 ], [ 175.384399409999986, -40.73048401 ], [ 175.377716060000012, -40.73252106 ], [ 175.36973572, -40.72394562 ], [ 175.356369019999988, -40.7280159 ], [ 175.34559631, -40.7532959 ], [ 175.33094788, -40.74674606 ], [ 175.317596439999988, -40.75080109 ], [ 175.3069458, -40.74853516 ], [ 175.28692627, -40.75460052 ], [ 175.284240720000014, -40.76091385 ], [ 175.26423645, -40.7669754 ], [ 175.25360107, -40.76469803 ], [ 175.235015870000012, -40.75382614 ], [ 175.20172119, -40.76387024 ], [ 175.181854249999986, -40.74236298 ], [ 175.20581055, -40.74065399 ], [ 175.20452881, -40.73005295 ], [ 175.18592834, -40.71916199 ], [ 175.168609620000012, -40.71885681 ], [ 175.16729736, -40.70825958 ], [ 175.133728029999986, -40.70552826 ], [ 175.14416504, -40.68999863 ], [ 175.14759827, -40.67651367 ], [ 175.16111755, -40.66222382 ], [ 175.163604740000011, -40.64027786 ], [ 175.19519043, -40.54970551 ], [ 175.207519530000013, -40.49890137 ], [ 175.20797729, -40.49038696 ], [ 175.21682739, -40.4774437 ], [ 175.21333313, -40.47000122 ], [ 175.22332764, -40.41666794 ], [ 175.227493290000012, -40.38166809 ], [ 175.227493290000012, -40.33416748 ], [ 175.2250061, -40.30361176 ], [ 175.236389159999987, -40.28694534 ], [ 175.22471619, -40.29472351 ], [ 175.21083069, -40.22305679 ], [ 175.1993866, -40.18008423 ], [ 175.178085329999988, -40.13204956 ], [ 175.14582825, -40.0830574 ], [ 175.14582825, -40.08833313 ], [ 175.127166749999986, -40.06621552 ], [ 175.10044861, -40.04244614 ], [ 175.107772829999988, -40.02916718 ], [ 175.09736633, -40.03992462 ], [ 175.074722290000011, -40.01277924 ], [ 175.05981445, -39.99818802 ], [ 175.02883911, -39.97143936 ], [ 174.99916077, -39.95277786 ], [ 175.011108400000012, -39.95694351 ], [ 175.02326965, -39.95248795 ], [ 174.99679565, -39.94485474 ], [ 174.981521609999987, -39.94760895 ], [ 174.9672699, -39.92794037 ], [ 174.95307922, -39.91596222 ], [ 174.920272829999988, -39.89527893 ], [ 174.876464840000011, -39.8770752 ], [ 174.85148621, -39.8706131 ], [ 174.82397461, -39.86606979 ], [ 174.79702759, -39.85811996 ], [ 174.77902222, -39.86208725 ], [ 174.77305603, -39.85594177 ], [ 174.762207030000013, -39.85339355 ], [ 174.779373170000014, -39.8437233 ], [ 174.78570557, -39.83148956 ], [ 174.789520259999989, -39.83581543 ], [ 174.802810670000014, -39.82175827 ], [ 174.795837400000011, -39.82356262 ], [ 174.80526733, -39.80513382 ], [ 174.82299805, -39.80586243 ], [ 174.84381104, -39.80039597 ], [ 174.853713989999989, -39.79227448 ], [ 174.8528595, -39.78165054 ], [ 174.88008118, -39.77389145 ], [ 174.87625122, -39.76953506 ], [ 174.88980103, -39.76560211 ], [ 174.888885499999986, -39.75491714 ], [ 174.9158783, -39.74695969 ], [ 174.919708250000014, -39.75130844 ], [ 174.93307495, -39.74729156 ], [ 174.925460820000012, -39.73860168 ], [ 174.92832947, -39.7322464 ], [ 174.941619870000011, -39.72821426 ], [ 174.9264679, -39.71084213 ], [ 174.92555237, -39.70014191 ], [ 174.93884277, -39.69610596 ], [ 174.931274409999986, -39.68742752 ], [ 174.95118713, -39.68136597 ], [ 174.95495605, -39.68570328 ], [ 174.98141479, -39.67760086 ], [ 174.97764587, -39.67326736 ], [ 174.9974823, -39.66718292 ], [ 174.98997498, -39.65851212 ], [ 174.98335266, -39.66054153 ], [ 174.98246765, -39.64984131 ], [ 174.97209167, -39.64753342 ], [ 174.98532104, -39.64347839 ], [ 174.97406006, -39.63047409 ], [ 174.980682370000011, -39.62844849 ], [ 174.97317505, -39.61977768 ], [ 174.9797821, -39.61775208 ], [ 174.97229004, -39.60908127 ], [ 174.978027340000011, -39.59636307 ], [ 174.97427368000001, -39.59202576 ], [ 174.98577881, -39.56659317 ], [ 174.98202515, -39.56225967 ], [ 174.99526978, -39.55821609 ], [ 174.99066162, -39.54319 ], [ 174.9719696, -39.52151871 ], [ 174.978591920000014, -39.51950073 ], [ 174.97111511, -39.51082993 ], [ 174.97773743, -39.50881195 ], [ 174.96652222, -39.49580765 ], [ 174.96940613000001, -39.48945618 ], [ 174.96192932, -39.48078537 ], [ 174.94866943, -39.48482132 ], [ 174.938293460000011, -39.48250198 ], [ 174.923324580000013, -39.46515656 ], [ 174.91294861, -39.4628334 ], [ 174.91584778, -39.45648193 ], [ 174.901702879999988, -39.44982147 ], [ 174.89045715, -39.43680573 ], [ 174.89710999, -39.43479538 ], [ 174.88961792, -39.42611694 ], [ 174.896270750000014, -39.4241066 ], [ 174.87007141, -39.39373398 ], [ 174.88711548, -39.3940506 ], [ 174.88627625, -39.38336563 ], [ 174.892929079999988, -39.38135147 ], [ 174.9016571, -39.36230469 ], [ 174.88088989, -39.35765076 ], [ 174.86967468, -39.34463501 ], [ 174.86303711, -39.34664536 ], [ 174.85557556, -39.33796692 ], [ 174.842285159999989, -39.34198761 ], [ 174.82820129000001, -39.33531952 ], [ 174.820755, -39.32663727 ], [ 174.82739258, -39.32462692 ], [ 174.81994629, -39.31594849 ], [ 174.82949829, -39.3075943 ], [ 174.82577515, -39.30325317 ], [ 174.839050289999989, -39.2992363 ], [ 174.853607180000012, -39.26749802 ], [ 174.86688232, -39.26348495 ], [ 174.86315918, -39.25914764 ], [ 174.872695920000012, -39.25079346 ], [ 174.86526489, -39.24211502 ], [ 174.874801639999987, -39.23376465 ], [ 174.88224792, -39.24244308 ], [ 174.899230960000011, -39.24277115 ], [ 174.90504456, -39.23008347 ], [ 174.9125061, -39.23875809 ], [ 174.92576599, -39.23474503 ], [ 174.918319700000012, -39.2260704 ], [ 174.931579590000013, -39.22206116 ], [ 174.94320679, -39.19668961 ], [ 174.949844359999986, -39.19468689 ], [ 174.957519530000013, -39.18417358 ], [ 174.94529724, -39.17967224 ], [ 174.965179440000014, -39.17366028 ], [ 174.954833979999989, -39.17132568 ], [ 174.95773315, -39.16498566 ], [ 174.96809387, -39.16732025 ], [ 174.99458313, -39.15930557 ], [ 174.979705810000013, -39.14196014 ], [ 175.003295900000012, -39.14028931 ], [ 174.99586487, -39.1316185 ], [ 175.01281738, -39.13195038 ], [ 175.00538635, -39.12327957 ], [ 175.018630980000012, -39.11927414 ], [ 175.02442932, -39.10660172 ], [ 175.03767395, -39.10259628 ], [ 175.041381840000014, -39.10693359 ], [ 175.065765379999988, -39.11592865 ], [ 175.07901001, -39.11192322 ], [ 175.0604248, -39.09025955 ], [ 175.05381775, -39.09225845 ], [ 175.046386719999987, -39.08359146 ], [ 175.05218506, -39.07092285 ], [ 175.01828003, -39.07025146 ], [ 174.99842834, -39.07624817 ], [ 174.990997310000012, -39.06757736 ], [ 174.98065186, -39.06523514 ], [ 174.96740723, -39.06923294 ], [ 174.966598510000011, -39.05855942 ], [ 174.98275757, -39.0482254 ], [ 174.96791077, -39.03087234 ], [ 174.974533079999986, -39.02887726 ], [ 174.963394169999987, -39.0158577 ], [ 174.966308590000011, -39.0095253 ], [ 174.958892819999988, -39.00084305 ], [ 174.948577879999988, -38.99849701 ], [ 174.935348510000011, -39.002491 ], [ 174.9390564, -39.00683212 ], [ 174.92951965, -39.01516342 ], [ 174.91920471, -39.01281738 ], [ 174.925033570000011, -39.00014496 ], [ 174.917633059999986, -38.99146271 ], [ 174.90440369, -38.99545288 ], [ 174.90071106, -38.99110794 ], [ 174.887481689999987, -38.99509811 ], [ 174.88008118, -38.98641205 ], [ 174.89253235000001, -38.97174072 ], [ 174.87852478, -38.96504593 ], [ 174.885131840000014, -38.96305084 ], [ 174.890960690000014, -38.95037842 ], [ 174.87696838, -38.94367981 ], [ 174.883575439999987, -38.94168854 ], [ 174.876190189999988, -38.93299484 ], [ 174.88862610000001, -38.91832733 ], [ 174.8812561, -38.90963745 ], [ 174.88786316, -38.90764618 ], [ 174.87678528, -38.89460373 ], [ 174.8664856, -38.89224625 ], [ 174.84667969, -38.89821243 ], [ 174.85035706, -38.90256119 ], [ 174.8371582, -38.90654373 ], [ 174.800323490000011, -38.86302948 ], [ 174.80691528, -38.86103821 ], [ 174.79956055, -38.85232925 ], [ 174.809082030000013, -38.84399796 ], [ 174.79067993000001, -38.82221222 ], [ 174.81414795, -38.82061386 ], [ 174.82290649, -38.80158997 ], [ 174.82214355, -38.79088974 ], [ 174.855133059999986, -38.78098297 ], [ 174.85882568, -38.78533936 ], [ 174.872024540000012, -38.78137589 ], [ 174.8712616, -38.77068329 ], [ 174.897659299999987, -38.76276398 ], [ 174.907165529999986, -38.75444794 ], [ 174.91085815, -38.75880432 ], [ 174.924057010000013, -38.75484085 ], [ 174.92773438, -38.75919724 ], [ 174.94754028, -38.75325394 ], [ 174.93647766, -38.74019623 ], [ 174.94599915, -38.731884 ], [ 174.94523621, -38.72119522 ], [ 174.9584198, -38.71723938 ], [ 174.96057129, -38.70022202 ], [ 174.97085571, -38.70259476 ], [ 174.95979309, -38.68953705 ], [ 174.96931458, -38.68122482 ], [ 174.95826721, -38.6681633 ], [ 174.97514343, -38.66856384 ], [ 174.98832703, -38.66461182 ], [ 174.99201965, -38.66896439 ], [ 175.00889587, -38.66936111 ], [ 175.00520325, -38.66500854 ], [ 175.0249939, -38.65907288 ], [ 175.02868652, -38.66342545 ], [ 175.048477170000012, -38.65748978 ], [ 175.04478455, -38.65314102 ], [ 175.0645752, -38.64720154 ], [ 175.060897829999988, -38.64285278 ], [ 175.08068848, -38.63691711 ], [ 175.08358765, -38.63058853 ], [ 175.0909729, -38.63928223 ], [ 175.123947140000013, -38.62938309 ], [ 175.140838620000011, -38.62976456 ], [ 175.14451599, -38.63410568 ], [ 175.157714840000011, -38.63014221 ], [ 175.16799927, -38.63249969 ], [ 175.18119812, -38.62853622 ], [ 175.19517517, -38.63523102 ], [ 175.20178223, -38.63324738 ], [ 175.20916748, -38.641922 ], [ 175.24215698, -38.63199615 ], [ 175.23846436, -38.62765884 ], [ 175.25166321, -38.62369156 ], [ 175.247970579999986, -38.61935425 ], [ 175.26776123, -38.61339951 ], [ 175.27145386, -38.617733 ], [ 175.28965759, -38.59047318 ], [ 175.30734253, -38.60148621 ], [ 175.31393433, -38.59950256 ], [ 175.306549069999988, -38.59083557 ], [ 175.30865479, -38.57386398 ], [ 175.327651980000013, -38.55726242 ], [ 175.33055115, -38.55094528 ], [ 175.34532166, -38.56827545 ], [ 175.33872986, -38.57025909 ], [ 175.34321594, -38.58523941 ], [ 175.38278198, -38.57332611 ], [ 175.388580319999988, -38.56069565 ], [ 175.405456539999989, -38.56105423 ], [ 175.40835571, -38.55473709 ], [ 175.42523193, -38.55509567 ], [ 175.428924560000013, -38.55942535 ], [ 175.45320129000001, -38.56843185 ], [ 175.50672913, -38.5631752 ], [ 175.53262329, -38.59343338 ], [ 175.5466156, -38.60008621 ], [ 175.56637573, -38.59412003 ], [ 175.57008362, -38.59843826 ], [ 175.57955933, -38.5901413 ], [ 175.58325195, -38.59446335 ], [ 175.61619568, -38.58451462 ], [ 175.628570559999986, -38.56991196 ], [ 175.64173889, -38.56593323 ], [ 175.645431519999988, -38.57025146 ], [ 175.63389587, -38.59547806 ], [ 175.63182068, -38.6124115 ], [ 175.618637080000013, -38.61639023 ], [ 175.609985349999988, -38.63531494 ], [ 175.59680176, -38.6393013 ], [ 175.600509640000013, -38.64361572 ], [ 175.58073425, -38.64959335 ], [ 175.588134770000011, -38.65822983 ], [ 175.581542969999987, -38.6602211 ], [ 175.58895874000001, -38.66885757 ], [ 175.57948303, -38.67716217 ], [ 175.58319092, -38.68148041 ], [ 175.57740784, -38.69410324 ], [ 175.570816040000011, -38.69609451 ], [ 175.5592804, -38.72134399 ], [ 175.54319763, -38.73165131 ], [ 175.544021609999987, -38.74228287 ], [ 175.53083801, -38.74627304 ], [ 175.52793884, -38.75259018 ], [ 175.5324707, -38.76753998 ], [ 175.55102539, -38.78912735 ], [ 175.54814148, -38.79544449 ], [ 175.56134033, -38.79144287 ], [ 175.58734131, -38.82165146 ], [ 175.58818054, -38.83227921 ], [ 175.56838989, -38.83828354 ], [ 175.55026245, -38.86555481 ], [ 175.568847659999989, -38.88712692 ], [ 175.569702150000012, -38.89775848 ], [ 175.57629395, -38.89575195 ], [ 175.59118652, -38.91300583 ], [ 175.57221985000001, -38.92965317 ], [ 175.57307434, -38.94028473 ], [ 175.56358337, -38.94861221 ], [ 175.56155396, -38.96556473 ], [ 175.57273865, -38.97850037 ], [ 175.573577879999988, -38.98913193 ], [ 175.6103363, -38.98339844 ], [ 175.63674927, -38.97536087 ], [ 175.65081787, -38.98197174 ], [ 175.6913147, -38.98053741 ], [ 175.67523193, -38.99087524 ], [ 175.653396609999987, -39.01385117 ], [ 175.658004760000011, -39.02878189 ], [ 175.64851379000001, -39.037117 ], [ 175.6522522, -39.0414238 ], [ 175.619216920000014, -39.05148697 ], [ 175.62667847, -39.06010437 ], [ 175.623809810000012, -39.06642532 ], [ 175.628417969999987, -39.08135986 ], [ 175.62554932, -39.08768463 ], [ 175.642501829999986, -39.08795929 ], [ 175.6574707, -39.10518265 ], [ 175.65084839, -39.10720062 ], [ 175.63824463, -39.16007233 ], [ 175.562973019999987, -39.27570724 ], [ 175.67338562, -39.29647064 ], [ 175.71025085, -39.29063416 ], [ 175.75180054, -39.29970932 ], [ 175.74803162, -39.29541016 ], [ 175.75752258, -39.28705978 ], [ 175.7754364, -39.29791641 ], [ 175.78868103, -39.29385757 ], [ 175.79620361, -39.30244446 ], [ 175.81321716, -39.30267334 ], [ 175.82646179, -39.2986145 ], [ 175.8359375, -39.29026413 ], [ 175.844497679999989, -39.27130508 ], [ 175.85772705, -39.26725006 ], [ 175.868118290000012, -39.26950836 ], [ 175.87382507, -39.25687408 ], [ 175.86343384, -39.25461197 ], [ 175.862518310000013, -39.2440033 ], [ 175.88897705, -39.23589325 ], [ 175.88522339, -39.23160553 ], [ 175.89845276, -39.22755051 ], [ 175.901306150000011, -39.22123337 ], [ 175.889999390000014, -39.20836258 ], [ 175.9296875, -39.19620514 ], [ 175.92591858, -39.19191742 ], [ 175.945755, -39.18584061 ], [ 175.94952393, -39.19012833 ], [ 175.969360349999988, -39.1840477 ], [ 175.97505188, -39.17142487 ], [ 175.96751404, -39.16284943 ], [ 175.98074341, -39.15879822 ], [ 175.983581539999989, -39.15248871 ], [ 176.05525208, -39.15769958 ], [ 176.085433959999989, -39.15386581 ], [ 176.089202879999988, -39.1581459 ], [ 176.14860535, -39.13988495 ], [ 176.151443480000012, -39.13357925 ], [ 176.16557312, -39.14010239 ], [ 176.17218018, -39.13807297 ], [ 176.186309810000012, -39.14458847 ], [ 176.18066406, -39.15719604 ], [ 176.1882019, -39.16574097 ], [ 176.18537903, -39.17204666 ], [ 176.19293213, -39.18059158 ], [ 176.18634033, -39.18262482 ], [ 176.20144653, -39.19971085 ], [ 176.19862366000001, -39.20601273 ], [ 176.20617676, -39.21455383 ], [ 176.19958496000001, -39.21659088 ], [ 176.20713806, -39.22513199 ], [ 176.21374512, -39.22309494 ], [ 176.21470642, -39.23366928 ], [ 176.22790527, -39.22960281 ], [ 176.25527954, -39.23203659 ], [ 176.26663208, -39.24483871 ], [ 176.27983093, -39.24076843 ], [ 176.29022217, -39.24300003 ], [ 176.297805790000012, -39.25153351 ], [ 176.29119873, -39.25357056 ], [ 176.30258179, -39.26636505 ], [ 176.29977417, -39.27266693 ], [ 176.31115723, -39.28546143 ], [ 176.309341429999989, -39.30233002 ], [ 176.28292847, -39.31048203 ], [ 176.290527340000011, -39.31901169 ], [ 176.28012085, -39.31678391 ], [ 176.28771973, -39.32531357 ], [ 176.28111267, -39.32735062 ], [ 176.28210449, -39.33791733 ], [ 176.268890379999988, -39.34199905 ], [ 176.2802887, -39.35478973 ], [ 176.27368164, -39.3568306 ], [ 176.29450989, -39.36127472 ], [ 176.307724, -39.35719299 ], [ 176.31915283, -39.36997604 ], [ 176.332366940000014, -39.36589432 ], [ 176.33998108, -39.37441635 ], [ 176.33337402, -39.37645721 ], [ 176.34098816, -39.38497543 ], [ 176.32397461, -39.38479996 ], [ 176.33540344, -39.39757919 ], [ 176.32600403, -39.40592575 ], [ 176.32981873, -39.41018677 ], [ 176.3099823, -39.41631699 ], [ 176.32040405, -39.41853333 ], [ 176.30819702, -39.43318558 ], [ 176.31965637, -39.445961 ], [ 176.32069397, -39.4565239 ], [ 176.3112793, -39.46487808 ], [ 176.31892395, -39.47339249 ], [ 176.32936096, -39.47560501 ], [ 176.31613159, -39.47969818 ], [ 176.3237915, -39.4882164 ], [ 176.317169189999987, -39.49026108 ], [ 176.32865906, -39.5030365 ], [ 176.322036739999987, -39.50508499 ], [ 176.30776978, -39.49861908 ], [ 176.254806519999988, -39.5150032 ], [ 176.252014159999987, -39.52131271 ], [ 176.21226501000001, -39.53359985 ], [ 176.203872679999989, -39.55253601 ], [ 176.190628049999987, -39.556633 ], [ 176.18885803, -39.57352066 ], [ 176.162338260000013, -39.58171844 ], [ 176.14524841, -39.58155441 ], [ 176.156738280000013, -39.59434891 ], [ 176.16337585, -39.5922966 ], [ 176.164398190000014, -39.60287476 ], [ 176.177658079999986, -39.59877396 ], [ 176.185333250000014, -39.6072998 ], [ 176.16856384, -39.64518738 ], [ 176.20103455, -39.66239166 ], [ 176.20872498, -39.6709137 ], [ 176.1993103, -39.67928314 ], [ 176.186035159999989, -39.68339157 ], [ 176.18536377, -39.71086884 ], [ 176.172073360000013, -39.71498108 ], [ 176.17805481, -39.74040604 ], [ 176.14179993, -39.82258606 ], [ 176.14115906, -39.85009384 ], [ 176.13450623, -39.85215378 ], [ 176.12055969, -39.88378906 ], [ 176.13494873, -39.89026642 ], [ 176.129364009999989, -39.90292358 ], [ 176.11326599, -39.91337585 ], [ 176.1210022, -39.92191696 ], [ 176.108764650000012, -39.93664551 ], [ 176.127044680000012, -39.94739532 ], [ 176.11758423, -39.95579147 ], [ 176.12145996000001, -39.96006393 ], [ 176.09976196, -39.98320389 ], [ 176.10084534, -39.99382019 ], [ 176.126892090000013, -40.013134 ], [ 176.13853455, -40.02597046 ], [ 176.157440189999988, -40.00914764 ], [ 176.17185974, -40.01563644 ], [ 176.185195920000012, -40.01150131 ], [ 176.182403560000012, -40.01784897 ], [ 176.212951659999987, -40.0138588 ], [ 176.214050289999989, -40.02448273 ], [ 176.24180603, -40.02684021 ], [ 176.24291992, -40.03746796 ], [ 176.264022829999988, -40.04189301 ], [ 176.261245730000013, -40.04824448 ], [ 176.27180481, -40.050457 ], [ 176.262359620000012, -40.05887604 ], [ 176.27682495, -40.06537628 ], [ 176.30072021, -40.06345749 ], [ 176.301849370000014, -40.07409668 ], [ 176.30851746, -40.07202911 ], [ 176.32022095, -40.08489609 ], [ 176.321380620000014, -40.09554291 ], [ 176.31471252, -40.09761047 ], [ 176.32252502, -40.10619354 ], [ 176.31309509, -40.11462021 ], [ 176.317016599999988, -40.11891174 ], [ 176.33425903, -40.11906815 ], [ 176.34208679, -40.12765884 ], [ 176.3354187, -40.1297226 ], [ 176.347152709999989, -40.14260864 ], [ 176.36833191, -40.14707184 ], [ 176.38008118, -40.15996933 ], [ 176.377319340000014, -40.16633224 ], [ 176.36398315, -40.17045975 ], [ 176.37182617, -40.17906189 ], [ 176.36239624000001, -40.18748856 ], [ 176.36631775, -40.19179153 ], [ 176.36198425, -40.21519089 ], [ 176.375320429999988, -40.2110672 ], [ 176.3710022, -40.234478 ], [ 176.38160706, -40.23672104 ], [ 176.37884521, -40.24308777 ], [ 176.38670349, -40.25169754 ], [ 176.3800354, -40.25375748 ], [ 176.38789368, -40.26236725 ], [ 176.378479, -40.27079391 ], [ 176.38633728, -40.27939987 ], [ 176.39302063, -40.27733994 ], [ 176.400894169999987, -40.28594589 ], [ 176.393890379999988, -40.3156929 ], [ 176.387222290000011, -40.31775284 ], [ 176.399063109999986, -40.33064651 ], [ 176.409683230000013, -40.33288574 ], [ 176.37081909, -40.35591507 ], [ 176.3921051, -40.36037445 ], [ 176.39607239, -40.36466599 ], [ 176.38665771, -40.37308502 ], [ 176.390625, -40.37737274 ], [ 176.4039917, -40.37324524 ], [ 176.419860840000013, -40.39039612 ], [ 176.43319702, -40.38628006 ], [ 176.44111633, -40.3948555 ], [ 176.4344635, -40.39690781 ], [ 176.44238281, -40.4054718 ], [ 176.44903564, -40.40341949 ], [ 176.46360779, -40.40992737 ], [ 176.476913450000012, -40.40582657 ], [ 176.49147034, -40.412323 ], [ 176.496856689999987, -40.39968491 ], [ 176.52593994, -40.41265488 ], [ 176.55107117, -40.42127609 ], [ 176.56306458, -40.40666199 ], [ 176.577621459999989, -40.41304398 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.8", "id_1": 8, "name_1": "Marlborough", "hasc_1": "NZ.MA", "population2022": 51900, "areakm2": 10429.736, "density2022": 4.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.069808959999989, -41.54973221 ], [ 174.068573, -41.54731369 ], [ 174.07087708, -41.54758072 ], [ 174.069808959999989, -41.54973221 ], [ 174.069808959999989, -41.54973221 ] ] ], [ [ [ 174.1091156, -41.5349884 ], [ 174.10577393, -41.53451538 ], [ 174.10737610000001, -41.5330925 ], [ 174.1091156, -41.5349884 ], [ 174.1091156, -41.5349884 ] ] ], [ [ [ 174.10324097, -41.53338623 ], [ 174.09277344, -41.5336113 ], [ 174.093963620000011, -41.52955627 ], [ 174.10324097, -41.53338623 ], [ 174.10324097, -41.53338623 ] ] ], [ [ [ 174.13555908, -41.33194351 ], [ 174.131103520000011, -41.33194351 ], [ 174.131103520000011, -41.33083344 ], [ 174.13555908, -41.33194351 ], [ 174.13555908, -41.33194351 ] ] ], [ [ [ 174.244491579999988, -41.29296112 ], [ 174.2419281, -41.29088211 ], [ 174.24601746, -41.29173279 ], [ 174.244491579999988, -41.29296112 ], [ 174.244491579999988, -41.29296112 ] ] ], [ [ [ 174.237808230000013, -41.24723053 ], [ 174.240036010000011, -41.24770737 ], [ 174.236694340000014, -41.24824142 ], [ 174.237808230000013, -41.24723053 ], [ 174.237808230000013, -41.24723053 ] ] ], [ [ [ 174.21611023, -41.24472046 ], [ 174.21444702, -41.24388885 ], [ 174.21638489, -41.24361038 ], [ 174.21611023, -41.24472046 ], [ 174.21611023, -41.24472046 ] ] ], [ [ [ 174.05563354, -41.23460388 ], [ 174.05760193, -41.2394371 ], [ 174.052932739999989, -41.23703384 ], [ 174.05563354, -41.23460388 ], [ 174.05563354, -41.23460388 ] ] ], [ [ [ 174.237228390000013, -41.20055389 ], [ 174.23554993, -41.19916534 ], [ 174.236389159999987, -41.19833374 ], [ 174.237228390000013, -41.20055389 ], [ 174.237228390000013, -41.20055389 ] ] ], [ [ [ 174.02372742, -41.1726799 ], [ 174.0221405, -41.17143631 ], [ 174.02261353, -41.17060471 ], [ 174.02372742, -41.1726799 ], [ 174.02372742, -41.1726799 ] ] ], [ [ [ 174.31916809, -41.16972351 ], [ 174.318603520000011, -41.16805649 ], [ 174.321105960000011, -41.16777802 ], [ 174.31916809, -41.16972351 ], [ 174.31916809, -41.16972351 ] ] ], [ [ [ 174.24087524, -41.15915298 ], [ 174.254669189999987, -41.17927933 ], [ 174.24285889, -41.1792984 ], [ 174.22930908, -41.18486786 ], [ 174.22596741000001, -41.17338943 ], [ 174.23348999000001, -41.17004013 ], [ 174.22964478, -41.1646347 ], [ 174.24087524, -41.15915298 ], [ 174.24087524, -41.15915298 ] ] ], [ [ [ 174.289855960000011, -41.15650177 ], [ 174.2890625, -41.16498947 ], [ 174.273895259999989, -41.16333389 ], [ 174.27478027, -41.1558876 ], [ 174.289855960000011, -41.15650177 ], [ 174.289855960000011, -41.15650177 ] ] ], [ [ [ 174.32583618000001, -41.11249924 ], [ 174.330429079999988, -41.11429596 ], [ 174.32945251000001, -41.11570358 ], [ 174.32583618000001, -41.11249924 ], [ 174.32583618000001, -41.11249924 ] ] ], [ [ [ 174.431137080000013, -41.11771774 ], [ 174.43264771, -41.11231995 ], [ 174.43527222, -41.11202621 ], [ 174.431137080000013, -41.11771774 ], [ 174.431137080000013, -41.11771774 ] ] ], [ [ [ 173.976104740000011, -41.11216736 ], [ 173.97659302, -41.10972214 ], [ 173.98017883, -41.10941315 ], [ 173.976104740000011, -41.11216736 ], [ 173.976104740000011, -41.11216736 ] ] ], [ [ [ 174.44250488, -41.11111069 ], [ 174.44055176, -41.10805511 ], [ 174.44332886, -41.10944366 ], [ 174.44250488, -41.11111069 ], [ 174.44250488, -41.11111069 ] ] ], [ [ [ 174.29658508, -41.11053467 ], [ 174.269332889999987, -41.12337875 ], [ 174.284118650000011, -41.11142731 ], [ 174.29658508, -41.11053467 ], [ 174.29658508, -41.11053467 ] ] ], [ [ [ 174.440765379999988, -41.10650635 ], [ 174.44020081, -41.10170364 ], [ 174.44258118, -41.10194016 ], [ 174.440765379999988, -41.10650635 ], [ 174.440765379999988, -41.10650635 ] ] ], [ [ [ 174.30610657, -41.10388947 ], [ 174.30499268, -41.10305405 ], [ 174.30860901, -41.10027695 ], [ 174.30610657, -41.10388947 ], [ 174.30610657, -41.10388947 ] ] ], [ [ [ 174.381347659999989, -41.08795929 ], [ 174.392501829999986, -41.09277725 ], [ 174.38909912, -41.11188507 ], [ 174.39147949, -41.11881638 ], [ 174.38273621, -41.1349678 ], [ 174.38383484, -41.14006042 ], [ 174.371521, -41.15784073 ], [ 174.36773682, -41.17328644 ], [ 174.37446594, -41.1811409 ], [ 174.37460327, -41.19426727 ], [ 174.36444092, -41.20138931 ], [ 174.35461426, -41.19450378 ], [ 174.34294128, -41.19216537 ], [ 174.33247375, -41.20651627 ], [ 174.32369995, -41.21199799 ], [ 174.312164309999986, -41.20198441 ], [ 174.29588318, -41.21038055 ], [ 174.281753540000011, -41.20946884 ], [ 174.280624390000014, -41.21521378 ], [ 174.25866699, -41.22774124 ], [ 174.255630489999987, -41.23619461 ], [ 174.245895389999987, -41.23370743 ], [ 174.2305603, -41.23555374 ], [ 174.229553220000014, -41.22231293 ], [ 174.215896609999987, -41.22672653 ], [ 174.218551639999987, -41.23178864 ], [ 174.20451355, -41.23769379 ], [ 174.190353390000013, -41.23532486 ], [ 174.18608093, -41.24029541 ], [ 174.162170409999987, -41.24324036 ], [ 174.16563416, -41.22855759 ], [ 174.18080139, -41.22154999 ], [ 174.182952879999988, -41.21658325 ], [ 174.192153929999989, -41.21910858 ], [ 174.19493103, -41.20926285 ], [ 174.20574951, -41.21092606 ], [ 174.21488953, -41.20619965 ], [ 174.23156738, -41.21580505 ], [ 174.22695923, -41.20338058 ], [ 174.23701477, -41.20735931 ], [ 174.24452209, -41.20249176 ], [ 174.25415039, -41.20303726 ], [ 174.26445007, -41.19616699 ], [ 174.24960327, -41.192379 ], [ 174.25788879000001, -41.1815567 ], [ 174.27859497, -41.1789093 ], [ 174.288162230000012, -41.1820488 ], [ 174.29295349, -41.16958237 ], [ 174.32197571, -41.16122055 ], [ 174.31092834, -41.17495728 ], [ 174.3379364, -41.17672729 ], [ 174.33320618, -41.16894913 ], [ 174.34153748, -41.16019058 ], [ 174.35827637, -41.15855789 ], [ 174.371719359999986, -41.1425972 ], [ 174.37553406, -41.13063431 ], [ 174.368377689999988, -41.12533951 ], [ 174.36523438, -41.13253021 ], [ 174.35385132, -41.14215088 ], [ 174.3321991, -41.14770508 ], [ 174.32531738, -41.14305115 ], [ 174.32775879, -41.13322449 ], [ 174.319122310000012, -41.13084793 ], [ 174.30340576, -41.13468933 ], [ 174.2875061, -41.14222336 ], [ 174.30601501000001, -41.12546921 ], [ 174.3196106, -41.12423706 ], [ 174.33255005, -41.12958527 ], [ 174.349838260000013, -41.11591721 ], [ 174.35481262, -41.11813354 ], [ 174.365722659999989, -41.10701752 ], [ 174.3795929, -41.09887695 ], [ 174.381347659999989, -41.08795929 ], [ 174.381347659999989, -41.08795929 ] ] ], [ [ [ 174.27722168, -41.09860992 ], [ 174.271133420000012, -41.09724045 ], [ 174.27256775, -41.08915329 ], [ 174.28067017, -41.08415985 ], [ 174.27722168, -41.09860992 ], [ 174.27722168, -41.09860992 ] ] ], [ [ [ 173.79418945, -41.07126999 ], [ 173.80059814, -41.06003952 ], [ 173.79899597, -41.07033157 ], [ 173.79418945, -41.07126999 ], [ 173.79418945, -41.07126999 ] ] ], [ [ [ 173.65805054, -41.05472183 ], [ 173.65499878, -41.05722046 ], [ 173.65138245, -41.05500031 ], [ 173.65805054, -41.05472183 ], [ 173.65805054, -41.05472183 ] ] ], [ [ [ 173.80679321, -41.0544281 ], [ 173.80566406, -41.0525322 ], [ 173.808105469999987, -41.05218124 ], [ 173.80679321, -41.0544281 ], [ 173.80679321, -41.0544281 ] ] ], [ [ [ 173.8008728, -41.04589844 ], [ 173.80409241000001, -41.05068588 ], [ 173.79547119, -41.05035019 ], [ 173.8008728, -41.04589844 ], [ 173.8008728, -41.04589844 ] ] ], [ [ [ 173.642791749999986, -41.0397377 ], [ 173.64199829, -41.04403305 ], [ 173.638732909999987, -41.03955841 ], [ 173.642791749999986, -41.0397377 ], [ 173.642791749999986, -41.0397377 ] ] ], [ [ [ 173.64537048, -41.03845215 ], [ 173.642227170000012, -41.03777695 ], [ 173.64520264, -41.03714752 ], [ 173.64537048, -41.03845215 ], [ 173.64537048, -41.03845215 ] ] ], [ [ [ 173.661026, -41.04374313 ], [ 173.65737915, -41.03792191 ], [ 173.6625061, -41.03777695 ], [ 173.661026, -41.04374313 ], [ 173.661026, -41.04374313 ] ] ], [ [ [ 173.90649414, -41.03309631 ], [ 173.908447270000011, -41.04082108 ], [ 173.900604249999986, -41.03116226 ], [ 173.90649414, -41.03309631 ], [ 173.90649414, -41.03309631 ] ] ], [ [ [ 173.89448547, -41.01633835 ], [ 173.906753540000011, -41.01773453 ], [ 173.88291931, -41.03675461 ], [ 173.880783079999986, -41.03142166 ], [ 173.8692627, -41.02923584 ], [ 173.87916565, -41.02194595 ], [ 173.89448547, -41.01633835 ], [ 173.89448547, -41.01633835 ] ] ], [ [ [ 174.03443909, -40.99264908 ], [ 174.033966060000012, -40.99174881 ], [ 174.03649902, -40.99007416 ], [ 174.03443909, -40.99264908 ], [ 174.03443909, -40.99264908 ] ] ], [ [ [ 174.01887512, -40.98361206 ], [ 174.017776489999989, -40.98241425 ], [ 174.01927185, -40.98121643 ], [ 174.01887512, -40.98361206 ], [ 174.01887512, -40.98361206 ] ] ], [ [ [ 173.87205505, -40.96554947 ], [ 173.8711853, -40.96465302 ], [ 173.87309265, -40.9642334 ], [ 173.87205505, -40.96554947 ], [ 173.87205505, -40.96554947 ] ] ], [ [ [ 174.1401825, -40.95042801 ], [ 174.14401245, -40.95291519 ], [ 174.13139343, -40.95138931 ], [ 174.1401825, -40.95042801 ], [ 174.1401825, -40.95042801 ] ] ], [ [ [ 173.782318120000014, -40.94605637 ], [ 173.77874756, -40.94880295 ], [ 173.78118896, -40.9430809 ], [ 173.782318120000014, -40.94605637 ], [ 173.782318120000014, -40.94605637 ] ] ], [ [ [ 174.081420900000012, -40.94057083 ], [ 174.07821655, -40.95824051 ], [ 174.088790890000013, -40.96456146 ], [ 174.087539670000012, -40.96991348 ], [ 174.07817078, -40.9692421 ], [ 174.07118225, -40.98292923 ], [ 174.0599823, -40.99575424 ], [ 174.05271912, -40.98970032 ], [ 174.056732180000012, -40.98428726 ], [ 174.04916382, -40.97916794 ], [ 174.0569458, -40.96888733 ], [ 174.06723022, -40.96496582 ], [ 174.07417297, -40.95702744 ], [ 174.068298340000013, -40.95198441 ], [ 174.05082703, -40.95277786 ], [ 174.05778503, -40.94527817 ], [ 174.081420900000012, -40.94057083 ], [ 174.081420900000012, -40.94057083 ] ] ], [ [ [ 173.761108400000012, -40.91027832 ], [ 173.76333618000001, -40.91249847 ], [ 173.761108400000012, -40.91305542 ], [ 173.761108400000012, -40.91027832 ], [ 173.761108400000012, -40.91027832 ] ] ], [ [ [ 174.087661739999987, -40.89191055 ], [ 174.08988953, -40.89655304 ], [ 174.07772827, -40.90381241 ], [ 174.072036739999987, -40.9005127 ], [ 174.068145750000014, -40.90788269 ], [ 174.06254578, -40.90521622 ], [ 174.05610657, -40.91444397 ], [ 174.0569458, -40.9030571 ], [ 174.06582642, -40.89694595 ], [ 174.07695007, -40.89749908 ], [ 174.085006709999988, -40.88861084 ], [ 174.087661739999987, -40.89191055 ], [ 174.087661739999987, -40.89191055 ] ] ], [ [ [ 173.97648621, -40.89812469 ], [ 173.97915649, -40.90499115 ], [ 173.99459839, -40.91031647 ], [ 174.01333618000001, -40.90694427 ], [ 174.02337646, -40.91134644 ], [ 174.01454163, -40.91749954 ], [ 174.01835632, -40.92649841 ], [ 174.01438904, -40.93664551 ], [ 174.0, -40.94138718 ], [ 173.9992981, -40.93257141 ], [ 173.987640379999988, -40.92502213 ], [ 173.99087524, -40.91670227 ], [ 173.982482909999987, -40.9082489 ], [ 173.95887756, -40.92198181 ], [ 173.96131897, -40.92813492 ], [ 173.97238159, -40.92678833 ], [ 173.97541809, -40.93835068 ], [ 173.97042847, -40.94711685 ], [ 173.965911870000014, -40.9366188 ], [ 173.95019531, -40.94682693 ], [ 173.95857239, -40.95741653 ], [ 173.95687866, -40.96518326 ], [ 173.947021479999989, -40.97260666 ], [ 173.93693542, -40.96192169 ], [ 173.92198181, -40.96638107 ], [ 173.90740967, -40.96603012 ], [ 173.90895081, -40.97088623 ], [ 173.89930725, -40.97773361 ], [ 173.90330505, -40.9881897 ], [ 173.91799927, -40.97897339 ], [ 173.93013, -40.98330688 ], [ 173.91932678, -40.99564743 ], [ 173.910644530000013, -40.99393463 ], [ 173.895431519999988, -40.99894333 ], [ 173.888916020000011, -41.0080452 ], [ 173.88053894, -41.00268555 ], [ 173.87197876, -41.01707077 ], [ 173.85179138, -41.02247238 ], [ 173.832489009999989, -41.01560211 ], [ 173.81304932, -41.01777649 ], [ 173.83358765, -40.99640274 ], [ 173.8276825, -40.98905563 ], [ 173.816055299999988, -40.99367142 ], [ 173.80163574, -41.01360703 ], [ 173.792221070000011, -41.00639725 ], [ 173.771240229999989, -41.02373886 ], [ 173.78573608, -41.02088547 ], [ 173.78321838, -41.0251503 ], [ 173.79756165, -41.02370453 ], [ 173.792480469999987, -41.03103256 ], [ 173.80789185, -41.02680588 ], [ 173.81069946, -41.0324173 ], [ 173.79942322, -41.03501129 ], [ 173.79086304, -41.04346848 ], [ 173.78456116000001, -41.04072571 ], [ 173.78210449, -41.04867172 ], [ 173.76965332, -41.05231857 ], [ 173.78709412, -41.05656433 ], [ 173.77861023, -41.07083511 ], [ 173.78236389, -41.07448578 ], [ 173.77940369, -41.08619308 ], [ 173.767807010000013, -41.08645248 ], [ 173.75367737, -41.09829712 ], [ 173.75445557, -41.1024704 ], [ 173.765151980000013, -41.09315491 ], [ 173.77288818, -41.09990692 ], [ 173.76141357, -41.10350037 ], [ 173.756057739999989, -41.114048 ], [ 173.763305659999986, -41.11819077 ], [ 173.767776489999989, -41.10749817 ], [ 173.77926636, -41.1056633 ], [ 173.782180790000012, -41.11436081 ], [ 173.78993225, -41.10263062 ], [ 173.779525760000013, -41.0991478 ], [ 173.783416749999986, -41.0919838 ], [ 173.79724121000001, -41.08287811 ], [ 173.79341125, -41.09266663 ], [ 173.80883789, -41.09082794 ], [ 173.81971741000001, -41.05888748 ], [ 173.829727170000012, -41.05277634 ], [ 173.84805298, -41.05444336 ], [ 173.85920715, -41.06293869 ], [ 173.86482239, -41.0533371 ], [ 173.88406372, -41.06182861 ], [ 173.8943634, -41.05734634 ], [ 173.912170409999987, -41.05495453 ], [ 173.92837524, -41.06274414 ], [ 173.94697571, -41.0663414 ], [ 173.92897034, -41.06740189 ], [ 173.92225647, -41.06343079 ], [ 173.91555786, -41.06972122 ], [ 173.90515137, -41.07197952 ], [ 173.91139221, -41.07694626 ], [ 173.90110779, -41.08666611 ], [ 173.88464355, -41.07463074 ], [ 173.8777771, -41.07860947 ], [ 173.88027954, -41.08638763 ], [ 173.86982727, -41.07895279 ], [ 173.86801147, -41.0915184 ], [ 173.858886719999987, -41.09749985 ], [ 173.87861633, -41.0969429 ], [ 173.8883667, -41.10087204 ], [ 173.88583374000001, -41.11722183 ], [ 173.875915529999986, -41.12210083 ], [ 173.87419128, -41.11542511 ], [ 173.8613739, -41.11035156 ], [ 173.845611569999988, -41.11393738 ], [ 173.856384279999986, -41.12111282 ], [ 173.85214233, -41.13403702 ], [ 173.844375609999986, -41.13222504 ], [ 173.83087158, -41.13788605 ], [ 173.8377533, -41.14393616 ], [ 173.82771301, -41.14739227 ], [ 173.82139587, -41.14083481 ], [ 173.81770325, -41.1532135 ], [ 173.80337524, -41.15010452 ], [ 173.796371459999989, -41.15499878 ], [ 173.78443909, -41.14749908 ], [ 173.77722168, -41.17194366 ], [ 173.78582764, -41.17416763 ], [ 173.793441769999987, -41.16482162 ], [ 173.81625366, -41.16008377 ], [ 173.822494510000013, -41.1613884 ], [ 173.84861755, -41.15194321 ], [ 173.84889221, -41.16222382 ], [ 173.8293457, -41.17288589 ], [ 173.85806274, -41.16833496 ], [ 173.865005489999987, -41.17527771 ], [ 173.86462402, -41.19563675 ], [ 173.85061646, -41.20869446 ], [ 173.84739685, -41.22190857 ], [ 173.85083008, -41.24027634 ], [ 173.82221985000001, -41.25040817 ], [ 173.80049133, -41.24195862 ], [ 173.80429077, -41.25483322 ], [ 173.797348019999987, -41.25882721 ], [ 173.77360535, -41.25416183 ], [ 173.75971985000001, -41.26333237 ], [ 173.7565918, -41.27311325 ], [ 173.77055359, -41.27416611 ], [ 173.77166748, -41.28388977 ], [ 173.77891541, -41.28155518 ], [ 173.7822113, -41.27144241 ], [ 173.77262878, -41.26619339 ], [ 173.77915955, -41.26237106 ], [ 173.793609620000012, -41.2705574 ], [ 173.8028717, -41.28364944 ], [ 173.82321167, -41.29239273 ], [ 173.843399049999988, -41.29003906 ], [ 173.84971619, -41.28194427 ], [ 173.82783508, -41.28609085 ], [ 173.81169128, -41.27788925 ], [ 173.806991579999988, -41.26892853 ], [ 173.82015991, -41.26068497 ], [ 173.84472656, -41.25500107 ], [ 173.849685670000014, -41.26078796 ], [ 173.869049069999988, -41.25579071 ], [ 173.87457275, -41.24850845 ], [ 173.88267517, -41.24778748 ], [ 173.90640259, -41.23087311 ], [ 173.91584778, -41.23023605 ], [ 173.9259491, -41.22338867 ], [ 173.89755249000001, -41.225811 ], [ 173.88252258, -41.2299881 ], [ 173.86555481, -41.22472382 ], [ 173.86198425, -41.2191658 ], [ 173.87971497, -41.22083282 ], [ 173.893753049999987, -41.21746826 ], [ 173.893478390000013, -41.21327972 ], [ 173.90750122, -41.20750046 ], [ 173.93110657, -41.20888901 ], [ 173.94917297, -41.20138931 ], [ 173.945114139999987, -41.21377563 ], [ 173.95318604, -41.21102905 ], [ 173.96992493, -41.21721649 ], [ 173.9691925, -41.21075058 ], [ 173.99806213, -41.20888901 ], [ 174.01145935, -41.20329666 ], [ 174.01144409, -41.19936752 ], [ 174.03245544, -41.20109177 ], [ 174.03277588, -41.19166565 ], [ 174.0163269, -41.19081879 ], [ 174.02999878, -41.18444443 ], [ 174.03388977, -41.19111252 ], [ 174.052948, -41.18965149 ], [ 174.07481384, -41.19356918 ], [ 174.07783508, -41.18688202 ], [ 174.09776306, -41.18534851 ], [ 174.12167358, -41.17139053 ], [ 174.11917114, -41.16749954 ], [ 174.08364868000001, -41.17803955 ], [ 174.051391599999988, -41.17889023 ], [ 174.03991699, -41.17379379 ], [ 174.04966736, -41.16553879 ], [ 174.04507446, -41.15891647 ], [ 174.02662659, -41.16881561 ], [ 174.01252747, -41.16749954 ], [ 174.003143310000013, -41.17114258 ], [ 174.01098633, -41.17657852 ], [ 174.00289917, -41.18080521 ], [ 173.987213129999986, -41.18208694 ], [ 173.99864197, -41.18610764 ], [ 174.00302124000001, -41.19364548 ], [ 173.99612427, -41.19578934 ], [ 173.9850769, -41.19068146 ], [ 173.970932010000013, -41.19282532 ], [ 173.965744019999988, -41.18869781 ], [ 173.97444153, -41.18321228 ], [ 173.96861267, -41.17282486 ], [ 173.94709778, -41.18681717 ], [ 173.94081116000001, -41.18535233 ], [ 173.92880249000001, -41.19797897 ], [ 173.919677729999989, -41.20048141 ], [ 173.89826965, -41.19680786 ], [ 173.882308959999989, -41.20354462 ], [ 173.87742615, -41.20998764 ], [ 173.87361145, -41.20249939 ], [ 173.88679504000001, -41.19139099 ], [ 173.8833313, -41.17610931 ], [ 173.89128113000001, -41.17502975 ], [ 173.895568849999989, -41.16727066 ], [ 173.87908936, -41.16745377 ], [ 173.86955261, -41.15985107 ], [ 173.867980960000011, -41.15316772 ], [ 173.88391113, -41.15465927 ], [ 173.899337769999988, -41.14929581 ], [ 173.878143310000013, -41.14881134 ], [ 173.868637080000013, -41.13990784 ], [ 173.87779236, -41.13596344 ], [ 173.89447021, -41.13634491 ], [ 173.92092896, -41.12484741 ], [ 173.900878909999989, -41.12115479 ], [ 173.905914309999986, -41.11052704 ], [ 173.91337585, -41.10881042 ], [ 173.929214480000013, -41.11448669 ], [ 173.933258059999986, -41.10185242 ], [ 173.92651367, -41.09571838 ], [ 173.936584470000014, -41.08348083 ], [ 173.943710329999988, -41.08944321 ], [ 173.947631840000014, -41.08317184 ], [ 173.95884705, -41.07963562 ], [ 173.96357727, -41.08484268 ], [ 173.97445679, -41.07734299 ], [ 173.97790527, -41.08393478 ], [ 173.97070313, -41.08746719 ], [ 173.96459961, -41.10187149 ], [ 173.95179749, -41.11271286 ], [ 173.9574585, -41.1263237 ], [ 173.95298767, -41.13159561 ], [ 173.960037230000012, -41.1464119 ], [ 173.96759033, -41.15047455 ], [ 173.96502686, -41.13628006 ], [ 173.97129822, -41.13661957 ], [ 173.97471619, -41.12809372 ], [ 173.991577150000012, -41.13677979 ], [ 173.98901367, -41.12313461 ], [ 173.9941864, -41.10660172 ], [ 173.99223328, -41.10242462 ], [ 174.00799561, -41.09888077 ], [ 174.011215209999989, -41.09460831 ], [ 174.03155518, -41.10611725 ], [ 174.03846741000001, -41.11302567 ], [ 174.044708250000014, -41.10182953 ], [ 174.03166199, -41.09583282 ], [ 174.03128052, -41.08589172 ], [ 174.02416992, -41.07833481 ], [ 174.01194763, -41.05666733 ], [ 174.021118159999986, -41.06138992 ], [ 174.02333069, -41.05611038 ], [ 174.032180790000012, -41.06062317 ], [ 174.04699707, -41.05382538 ], [ 174.0473175, -41.0389328 ], [ 174.05290222, -41.02525711 ], [ 174.03572083, -41.01863098 ], [ 174.02972412, -41.02027893 ], [ 174.00915527, -41.01757431 ], [ 173.99777222, -41.03277588 ], [ 173.99653625, -41.04119492 ], [ 173.977630620000014, -41.05596542 ], [ 173.977752689999988, -41.05173874 ], [ 173.99101257, -41.03759003 ], [ 173.983871459999989, -41.03172684 ], [ 173.964080810000013, -41.04460907 ], [ 173.949432370000011, -41.03728485 ], [ 173.93974304, -41.04159546 ], [ 173.93611145, -41.03398895 ], [ 173.95056152, -41.03527832 ], [ 173.9533844, -41.03054047 ], [ 173.9347229, -41.01972198 ], [ 173.9458313, -41.01722336 ], [ 173.961395259999989, -41.0205574 ], [ 173.987945559999986, -41.0152092 ], [ 173.97386169, -41.00231171 ], [ 173.96899414, -41.003582 ], [ 173.96453857, -40.99173737 ], [ 173.97142029, -40.98340225 ], [ 173.973846439999988, -40.99130249 ], [ 173.99334717, -40.99525452 ], [ 174.00213623, -40.98561096 ], [ 173.99053955, -40.98150635 ], [ 173.99443054, -40.96892929 ], [ 174.01039124, -40.96934128 ], [ 174.01480103, -40.96495438 ], [ 174.02270508, -40.97727203 ], [ 174.01272583, -40.98736572 ], [ 174.01557922, -40.99275589 ], [ 174.0083313, -41.00944519 ], [ 174.015274049999988, -41.00749969 ], [ 174.02082825, -41.01555634 ], [ 174.03833008, -41.01027679 ], [ 174.04299927, -41.01777649 ], [ 174.04943848, -41.01527786 ], [ 174.06472778, -40.99583435 ], [ 174.07182312, -41.00689697 ], [ 174.0663147, -41.01205826 ], [ 174.0819397, -41.02083206 ], [ 174.107498170000014, -41.05222321 ], [ 174.1038208, -41.0287323 ], [ 174.09558105, -41.00089645 ], [ 174.0967865, -40.99469757 ], [ 174.10585022, -40.99257278 ], [ 174.11610413, -41.00416565 ], [ 174.12693787, -41.00889969 ], [ 174.13273621, -41.01908112 ], [ 174.14677429, -41.01652908 ], [ 174.14370728, -40.99626923 ], [ 174.15538025, -40.99738693 ], [ 174.15992737, -40.98168945 ], [ 174.14976501000001, -40.98119354 ], [ 174.148239139999987, -40.97377777 ], [ 174.15661621000001, -40.96791458 ], [ 174.16549683, -40.97117233 ], [ 174.17089844, -40.979599 ], [ 174.176269530000013, -40.99858856 ], [ 174.17324829, -41.00800705 ], [ 174.18583679, -41.01027679 ], [ 174.19667053, -41.00222397 ], [ 174.21583557, -41.0 ], [ 174.21916199, -40.99055481 ], [ 174.23237610000001, -40.98619843 ], [ 174.22306824, -40.99663925 ], [ 174.22589111, -41.00050354 ], [ 174.216735840000013, -41.00905609 ], [ 174.19813538, -41.00898361 ], [ 174.19612122, -41.02416611 ], [ 174.1993866, -41.03964996 ], [ 174.18888855, -41.04222107 ], [ 174.184661870000014, -41.02955627 ], [ 174.16925049, -41.04969025 ], [ 174.18251038, -41.05897903 ], [ 174.19010925, -41.05865097 ], [ 174.21891785, -41.07129669 ], [ 174.22583008, -41.06833267 ], [ 174.22416687, -41.05472183 ], [ 174.239349370000014, -41.04918671 ], [ 174.241394039999989, -41.04027939 ], [ 174.25773621, -41.04330063 ], [ 174.26916504, -41.02916718 ], [ 174.28889465, -41.03333282 ], [ 174.296386719999987, -41.01583481 ], [ 174.30610657, -41.00999832 ], [ 174.303894039999989, -41.00166702 ], [ 174.31195068, -40.99361038 ], [ 174.3115387, -41.01765442 ], [ 174.30430603, -41.02028656 ], [ 174.298614500000014, -41.0346756 ], [ 174.27761841, -41.04034042 ], [ 174.27320862, -41.04418182 ], [ 174.2762146, -41.05953979 ], [ 174.27107239, -41.06907654 ], [ 174.26449585, -41.06895828 ], [ 174.261398320000012, -41.07764053 ], [ 174.25268555, -41.07670212 ], [ 174.24786377, -41.08957672 ], [ 174.23439026, -41.09268188 ], [ 174.23744202, -41.10179901 ], [ 174.249389650000012, -41.10520554 ], [ 174.24661255, -41.12279129 ], [ 174.2416687, -41.12611008 ], [ 174.2252655, -41.11299515 ], [ 174.20910645, -41.11915207 ], [ 174.21276855, -41.12845993 ], [ 174.21987915, -41.13060379 ], [ 174.22125244, -41.14129639 ], [ 174.20812988, -41.13338852 ], [ 174.18592834, -41.13835907 ], [ 174.19548035, -41.12370682 ], [ 174.18484497, -41.12702179 ], [ 174.180877689999988, -41.11388016 ], [ 174.187988280000013, -41.09597778 ], [ 174.180175780000013, -41.08889389 ], [ 174.1693573, -41.11057281 ], [ 174.163284299999987, -41.11690521 ], [ 174.14648438, -41.10961533 ], [ 174.14833069, -41.12722397 ], [ 174.16252136, -41.13114929 ], [ 174.16975403, -41.14899063 ], [ 174.18566895, -41.15721893 ], [ 174.198440549999987, -41.15400696 ], [ 174.18482971, -41.17412949 ], [ 174.19709778, -41.17254257 ], [ 174.202774049999988, -41.18444443 ], [ 174.19248962, -41.18289566 ], [ 174.187286379999989, -41.19460297 ], [ 174.168884279999986, -41.20194626 ], [ 174.17778015, -41.19194412 ], [ 174.1799469, -41.18213654 ], [ 174.171661379999989, -41.1855545 ], [ 174.164413450000012, -41.17824936 ], [ 174.152664179999988, -41.1764946 ], [ 174.155197140000013, -41.19799042 ], [ 174.14910889, -41.2065506 ], [ 174.157180790000012, -41.21280289 ], [ 174.14395142, -41.21620178 ], [ 174.142227170000012, -41.20777893 ], [ 174.12666321, -41.20467377 ], [ 174.125915529999986, -41.19287109 ], [ 174.1131134, -41.20534134 ], [ 174.123291020000011, -41.21660995 ], [ 174.11521912, -41.22267151 ], [ 174.101913450000012, -41.21867371 ], [ 174.10662842, -41.21444702 ], [ 174.097991940000014, -41.20311356 ], [ 174.085479740000011, -41.21520615 ], [ 174.088241579999988, -41.22589111 ], [ 174.075271609999987, -41.22972107 ], [ 174.077056879999986, -41.2228241 ], [ 174.06361389, -41.22277832 ], [ 174.073577879999988, -41.21081543 ], [ 174.0627594, -41.20617676 ], [ 174.058273320000012, -41.21491623 ], [ 174.047805790000012, -41.20975113 ], [ 174.04740906, -41.22159958 ], [ 174.04083252, -41.22333145 ], [ 174.03051758, -41.21118164 ], [ 174.02182007, -41.22354507 ], [ 174.03071594, -41.22796631 ], [ 174.03257751000001, -41.23876953 ], [ 174.01757813, -41.23748016 ], [ 174.01576233, -41.22724152 ], [ 174.008575439999987, -41.23959732 ], [ 174.00500488, -41.22583389 ], [ 173.99845886, -41.21932602 ], [ 173.996566769999987, -41.24198151 ], [ 173.98858643, -41.24253082 ], [ 173.98312378, -41.25074768 ], [ 173.982498170000014, -41.23583221 ], [ 173.97206116000001, -41.22623062 ], [ 173.96499634, -41.23249817 ], [ 173.97235107, -41.24076462 ], [ 173.97006226, -41.25011063 ], [ 173.957351679999988, -41.25677109 ], [ 173.95466614, -41.25256348 ], [ 173.941619870000011, -41.25474548 ], [ 173.92591858, -41.26411057 ], [ 173.9140625, -41.26440048 ], [ 173.905929570000012, -41.27841187 ], [ 173.9163208, -41.27944946 ], [ 173.92056274, -41.27388763 ], [ 173.934204099999988, -41.26923752 ], [ 173.957504269999987, -41.26777649 ], [ 173.960159299999987, -41.27285767 ], [ 173.96774292, -41.26716232 ], [ 174.01086426, -41.25843048 ], [ 173.99520874000001, -41.27475357 ], [ 174.00944519, -41.27198792 ], [ 174.010940549999987, -41.28261185 ], [ 174.018783570000011, -41.27180862 ], [ 174.0352478, -41.25686646 ], [ 174.04916382, -41.25068283 ], [ 174.040954590000013, -41.2593956 ], [ 174.04083252, -41.26750183 ], [ 174.06573486, -41.25576401 ], [ 174.074722290000011, -41.26777649 ], [ 174.08860779, -41.26861191 ], [ 174.08201599, -41.25842667 ], [ 174.07434082, -41.25466156 ], [ 174.09350586, -41.24309158 ], [ 174.09803772, -41.24613571 ], [ 174.10678101, -41.23953247 ], [ 174.11305237, -41.2463913 ], [ 174.11358643, -41.23690414 ], [ 174.12486267, -41.23617935 ], [ 174.131774900000011, -41.24096298 ], [ 174.14680481, -41.23244858 ], [ 174.14569092, -41.23900986 ], [ 174.13397217, -41.25640106 ], [ 174.13856506, -41.25918579 ], [ 174.14945984, -41.24866104 ], [ 174.15791321, -41.25095749 ], [ 174.15943909, -41.26222229 ], [ 174.16802979, -41.2519722 ], [ 174.176681519999988, -41.24986649 ], [ 174.177963260000013, -41.26038742 ], [ 174.203750609999986, -41.27179718 ], [ 174.21110535, -41.26916504 ], [ 174.18821716, -41.26109695 ], [ 174.18482971, -41.25192642 ], [ 174.197174069999988, -41.24394608 ], [ 174.2081604, -41.24586868 ], [ 174.210723879999989, -41.25513077 ], [ 174.22554016, -41.25104523 ], [ 174.22868347, -41.24622345 ], [ 174.242538450000012, -41.25049591 ], [ 174.24707031, -41.24454117 ], [ 174.25517273, -41.24986649 ], [ 174.25161743000001, -41.25803375 ], [ 174.26475525, -41.25207901 ], [ 174.258605960000011, -41.24472046 ], [ 174.265289309999986, -41.24036026 ], [ 174.27555847, -41.24305725 ], [ 174.27073669, -41.23472977 ], [ 174.31304932, -41.21194458 ], [ 174.31777954, -41.21416855 ], [ 174.302505489999987, -41.22249985 ], [ 174.29020691, -41.23254776 ], [ 174.28919983, -41.24523163 ], [ 174.275756840000014, -41.25572968 ], [ 174.28416443, -41.26889038 ], [ 174.26600647, -41.27407837 ], [ 174.25372314, -41.27086639 ], [ 174.25889587, -41.27999878 ], [ 174.239883420000012, -41.28768539 ], [ 174.229675289999989, -41.28701401 ], [ 174.224533079999986, -41.2922554 ], [ 174.235168460000011, -41.30315781 ], [ 174.24499512, -41.30833435 ], [ 174.23698425, -41.31990814 ], [ 174.220611569999988, -41.31728745 ], [ 174.214050289999989, -41.32542419 ], [ 174.20855713, -41.31325531 ], [ 174.201248170000014, -41.31129837 ], [ 174.19178772, -41.31616592 ], [ 174.19822693, -41.33020401 ], [ 174.19198608, -41.337677 ], [ 174.17984009, -41.33376694 ], [ 174.16925049, -41.33613586 ], [ 174.15286255, -41.34679413 ], [ 174.16000366, -41.35055542 ], [ 174.13520813, -41.34759521 ], [ 174.13127136, -41.35311508 ], [ 174.125473019999987, -41.3431778 ], [ 174.145156859999986, -41.33321762 ], [ 174.13883972, -41.33234024 ], [ 174.142654420000014, -41.3236084 ], [ 174.15901184, -41.32709122 ], [ 174.16123962, -41.31972122 ], [ 174.17341614, -41.31524277 ], [ 174.167221070000011, -41.3069458 ], [ 174.176712040000012, -41.30383682 ], [ 174.176834109999987, -41.29530716 ], [ 174.18850708, -41.29520798 ], [ 174.17979431, -41.28671646 ], [ 174.16976929, -41.29189301 ], [ 174.16027832, -41.28805542 ], [ 174.163131709999988, -41.298069 ], [ 174.15625, -41.29954147 ], [ 174.146728520000011, -41.31383514 ], [ 174.13615417, -41.31164551 ], [ 174.15028381, -41.2919426 ], [ 174.14649963, -41.283638 ], [ 174.132019039999989, -41.28899765 ], [ 174.13128662, -41.29616165 ], [ 174.1166687, -41.29861069 ], [ 174.11384583, -41.30448532 ], [ 174.122146609999987, -41.30705261 ], [ 174.10757446, -41.33367538 ], [ 174.099258420000012, -41.33159256 ], [ 174.104721070000011, -41.33911896 ], [ 174.086395259999989, -41.35527802 ], [ 174.08944702, -41.35972214 ], [ 174.073028560000012, -41.35704803 ], [ 174.07855225, -41.36361313 ], [ 174.06768799, -41.38023758 ], [ 174.06773376000001, -41.38863373 ], [ 174.05917358, -41.38666534 ], [ 174.04826355, -41.39492798 ], [ 174.040115359999987, -41.41088486 ], [ 174.02999878, -41.43942642 ], [ 174.030059810000012, -41.46487045 ], [ 174.03863525, -41.48430252 ], [ 174.04556274, -41.49186325 ], [ 174.06123352, -41.5002861 ], [ 174.05705261, -41.50403976 ], [ 174.0425415, -41.50105286 ], [ 174.04943848, -41.50749969 ], [ 174.056732180000012, -41.5064621 ], [ 174.060913090000014, -41.51371002 ], [ 174.08944702, -41.52694321 ], [ 174.079727170000012, -41.52999878 ], [ 174.082778929999989, -41.53527832 ], [ 174.0625, -41.5348053 ], [ 174.0581665, -41.53992844 ], [ 174.06417847, -41.54701614 ], [ 174.059082030000013, -41.5510025 ], [ 174.073303220000014, -41.55188751 ], [ 174.07885742, -41.53730774 ], [ 174.088806150000011, -41.54555893 ], [ 174.08053589, -41.55102921 ], [ 174.08996582, -41.55879211 ], [ 174.106933590000011, -41.55685425 ], [ 174.12527466, -41.54555511 ], [ 174.1166687, -41.5363884 ], [ 174.08888245, -41.52416611 ], [ 174.05888367, -41.50638962 ], [ 174.06222534, -41.5008316 ], [ 174.06750488, -41.50860977 ], [ 174.0930481, -41.52388763 ], [ 174.11749268, -41.53499985 ], [ 174.137146, -41.55124664 ], [ 174.14881897, -41.55688095 ], [ 174.14866638, -41.57120895 ], [ 174.15336609, -41.58884048 ], [ 174.159729, -41.59145737 ], [ 174.1680603, -41.60666656 ], [ 174.16116333, -41.62960434 ], [ 174.15786743000001, -41.64793777 ], [ 174.15956116000001, -41.66830063 ], [ 174.16809082, -41.68919754 ], [ 174.181152340000011, -41.7094574 ], [ 174.19471741000001, -41.72083282 ], [ 174.21334839, -41.72789383 ], [ 174.22332764, -41.7219429 ], [ 174.23301697, -41.72747421 ], [ 174.25932312, -41.73431015 ], [ 174.268615720000014, -41.73277664 ], [ 174.27610779, -41.72416687 ], [ 174.27806091, -41.73749924 ], [ 174.27528381, -41.74666595 ], [ 174.26693726, -41.74972153 ], [ 174.25778198, -41.76250076 ], [ 174.24224854, -41.76947021 ], [ 174.23268127, -41.78382874 ], [ 174.21847534, -41.7926712 ], [ 174.21284485000001, -41.8028717 ], [ 174.215316769999987, -41.81268311 ], [ 174.19865417, -41.82202911 ], [ 174.19436646, -41.82759476 ], [ 174.19709778, -41.83575439 ], [ 174.18301392, -41.84665298 ], [ 174.18270874000001, -41.85064697 ], [ 174.16471863000001, -41.85984039 ], [ 174.15386963, -41.87762451 ], [ 174.1275177, -41.90056229 ], [ 174.11555481, -41.90631104 ], [ 174.09788513, -41.92332077 ], [ 174.09751892, -41.93053055 ], [ 174.073028560000012, -41.95115662 ], [ 174.05186462, -41.96649933 ], [ 174.0664978, -41.93467712 ], [ 174.05163574, -41.92819595 ], [ 174.04202271, -41.93682098 ], [ 174.038024900000011, -41.9324913 ], [ 174.01768494, -41.93891144 ], [ 174.00305176, -41.93235779 ], [ 173.979003909999989, -41.9343605 ], [ 173.98179626000001, -41.92789459 ], [ 173.971206669999987, -41.92565536 ], [ 173.95950317, -41.91259003 ], [ 173.92616272, -41.92310333 ], [ 173.918396, -41.91438293 ], [ 173.85194397, -41.93529892 ], [ 173.84806824, -41.93092728 ], [ 173.8215332, -41.93917847 ], [ 173.81213379, -41.94766235 ], [ 173.7988739, -41.95175171 ], [ 173.796127320000011, -41.95817947 ], [ 173.77557373, -41.92541885 ], [ 173.76116943, -41.91867447 ], [ 173.767807010000013, -41.91664505 ], [ 173.753402709999989, -41.90990067 ], [ 173.740142819999988, -41.91395187 ], [ 173.74401855, -41.91833878 ], [ 173.73075867, -41.92238235 ], [ 173.73464966, -41.92677307 ], [ 173.7252655, -41.93519592 ], [ 173.71977234, -41.94800949 ], [ 173.72366333, -41.95240402 ], [ 173.71817017, -41.96520996 ], [ 173.70880127, -41.97361374 ], [ 173.66894531, -41.985569 ], [ 173.667343140000014, -42.00274658 ], [ 173.64074707, -42.01065826 ], [ 173.63018799, -42.0082283 ], [ 173.61019897, -42.01413727 ], [ 173.61135864, -42.02490997 ], [ 173.60194397, -42.03324509 ], [ 173.59135437, -42.03079987 ], [ 173.57801819, -42.03471756 ], [ 173.579177859999987, -42.04548645 ], [ 173.56584167, -42.0493927 ], [ 173.55480957, -42.07481766 ], [ 173.55088806, -42.07041168 ], [ 173.53753662, -42.07430267 ], [ 173.53361511, -42.06990051 ], [ 173.52024841, -42.07378769 ], [ 173.517501829999986, -42.08013535 ], [ 173.50413513, -42.08401489 ], [ 173.50805664, -42.08842087 ], [ 173.49468994, -42.0922966 ], [ 173.499786379999989, -42.10744858 ], [ 173.49703979, -42.1137886 ], [ 173.47698975, -42.11958694 ], [ 173.47422791, -42.12592316 ], [ 173.48602295, -42.13913727 ], [ 173.4793396, -42.1410675 ], [ 173.48719788, -42.14987946 ], [ 173.48051453, -42.15180588 ], [ 173.49623108, -42.16943359 ], [ 173.48954773, -42.1713562 ], [ 173.49740601, -42.18017197 ], [ 173.484054570000012, -42.184021 ], [ 173.480117799999988, -42.17961502 ], [ 173.47460938, -42.19227219 ], [ 173.47854614, -42.19667816 ], [ 173.45181274, -42.20436096 ], [ 173.44631958, -42.21700668 ], [ 173.4317627, -42.21011734 ], [ 173.4223175, -42.21835327 ], [ 173.40222168, -42.22409439 ], [ 173.39828491, -42.21969223 ], [ 173.37818909, -42.22542572 ], [ 173.386077879999988, -42.23423004 ], [ 173.36991882, -42.24435806 ], [ 173.35531616, -42.23746109 ], [ 173.35255432, -42.2437706 ], [ 173.32571411, -42.25138855 ], [ 173.321762080000013, -42.24698639 ], [ 173.30833435, -42.25078964 ], [ 173.3162384, -42.25959015 ], [ 173.3134613, -42.26589203 ], [ 173.293304440000014, -42.27159119 ], [ 173.27432251, -42.28798294 ], [ 173.271560670000014, -42.29428101 ], [ 173.25808716, -42.29807663 ], [ 173.25532532, -42.30437469 ], [ 173.221618650000011, -42.31387711 ], [ 173.22003174, -42.33087158 ], [ 173.20932007, -42.3283844 ], [ 173.195816040000011, -42.33220291 ], [ 173.19024658, -42.34481049 ], [ 173.24263, -42.34654236 ], [ 173.257308959999989, -42.35343552 ], [ 173.23310852, -42.35474014 ], [ 173.23033142, -42.36103821 ], [ 173.23548889, -42.37612152 ], [ 173.22200012, -42.37993622 ], [ 173.22319031, -42.390625 ], [ 173.21086121, -42.40513611 ], [ 173.17706299, -42.41472626 ], [ 173.17149353, -42.42734146 ], [ 173.175460820000012, -42.43172836 ], [ 173.16590881, -42.43996048 ], [ 173.16987610000001, -42.44434357 ], [ 173.14956665, -42.45012283 ], [ 173.145599370000014, -42.44573975 ], [ 173.132049560000013, -42.44960022 ], [ 173.121292110000013, -42.44714355 ], [ 173.11849976, -42.45346069 ], [ 173.098159790000011, -42.45925903 ], [ 173.09417725, -42.45487595 ], [ 173.082962040000012, -42.48015594 ], [ 173.06260681, -42.48597717 ], [ 173.043884279999986, -42.47475815 ], [ 173.05348206, -42.4664917 ], [ 173.02960205, -42.44016647 ], [ 172.99565125, -42.4498558 ], [ 172.980896, -42.44301224 ], [ 172.98770142, -42.44107437 ], [ 172.99331665, -42.42841721 ], [ 173.00292969, -42.42015457 ], [ 173.001754760000011, -42.40943527 ], [ 173.01135254, -42.40117645 ], [ 173.00738525, -42.39678574 ], [ 173.02095032, -42.39292145 ], [ 173.006210329999988, -42.38607025 ], [ 172.9858551, -42.39187241 ], [ 172.98187256, -42.38747787 ], [ 172.95239258, -42.37377167 ], [ 172.94841003, -42.36937714 ], [ 172.96083069, -42.35479355 ], [ 172.95288086, -42.34600449 ], [ 172.93930054, -42.34986496 ], [ 172.93135071, -42.3410759 ], [ 172.930191040000011, -42.3303566 ], [ 172.939804079999988, -42.32209778 ], [ 172.923904420000014, -42.30451584 ], [ 172.9103241, -42.30837631 ], [ 172.90634155, -42.30397797 ], [ 172.885955810000013, -42.30976486 ], [ 172.883132929999988, -42.31609344 ], [ 172.87518311, -42.30730057 ], [ 172.86839294, -42.3092308 ], [ 172.85647583, -42.29603577 ], [ 172.85531616, -42.28530884 ], [ 172.8745575, -42.26879883 ], [ 172.87623596, -42.25175095 ], [ 172.854705810000013, -42.2468071 ], [ 172.84790039, -42.24873352 ], [ 172.83598328, -42.23553848 ], [ 172.8427887, -42.23361206 ], [ 172.83483887, -42.22481155 ], [ 172.84164429, -42.22288895 ], [ 172.83369446, -42.21408844 ], [ 172.83255005, -42.20336533 ], [ 172.84614563, -42.19952011 ], [ 172.85180664, -42.1868782 ], [ 172.84387207, -42.17808151 ], [ 172.81668091, -42.18576813 ], [ 172.80873108, -42.17696762 ], [ 172.814392090000013, -42.16432571 ], [ 172.803634640000013, -42.16184616 ], [ 172.776428220000014, -42.16953278 ], [ 172.74807739, -42.16649246 ], [ 172.732192989999987, -42.14888382 ], [ 172.73106384, -42.13815689 ], [ 172.7407074, -42.12991714 ], [ 172.732772829999988, -42.12111282 ], [ 172.73957825, -42.11919403 ], [ 172.73164368, -42.11038971 ], [ 172.73051453, -42.09967041 ], [ 172.74411011, -42.09583282 ], [ 172.742980960000011, -42.08511734 ], [ 172.73504639, -42.07631302 ], [ 172.740722659999989, -42.06367874 ], [ 172.75036621000001, -42.05545044 ], [ 172.74243164, -42.04664993 ], [ 172.749237060000013, -42.04473495 ], [ 172.748107909999987, -42.03402328 ], [ 172.76170349, -42.03019714 ], [ 172.7724762, -42.03268433 ], [ 172.775299069999988, -42.026371 ], [ 172.78889465, -42.02254868 ], [ 172.784942629999989, -42.01815033 ], [ 172.79852295, -42.01432419 ], [ 172.80136108, -42.00801849 ], [ 172.78947449, -41.99482346 ], [ 172.80986023, -41.98908997 ], [ 172.825149540000012, -41.96826553 ], [ 172.82684326, -41.95125961 ], [ 172.86077881, -41.94171906 ], [ 172.862487789999989, -41.92472458 ], [ 172.876037599999989, -41.92090988 ], [ 172.87208557, -41.91651535 ], [ 172.88169861, -41.90831375 ], [ 172.8658905, -41.89074707 ], [ 172.85516357, -41.88825989 ], [ 172.86477661, -41.88005829 ], [ 172.86364746000001, -41.86937332 ], [ 172.88398743, -41.86366653 ], [ 172.8800354, -41.85927582 ], [ 172.88963318, -41.85107803 ], [ 172.881744379999986, -41.84230042 ], [ 172.9009552, -41.82591248 ], [ 172.91337585, -41.81142807 ], [ 172.9269104, -41.807621 ], [ 172.92295837, -41.8032341 ], [ 172.93649292, -41.79942322 ], [ 172.94213867, -41.78684616 ], [ 172.95565796, -41.78303528 ], [ 172.95454407, -41.77235794 ], [ 172.9438324, -41.7698822 ], [ 172.94665527, -41.76359177 ], [ 172.93484497, -41.75043869 ], [ 172.94442749000001, -41.74224091 ], [ 172.95230103, -41.75101089 ], [ 172.96299744, -41.75348663 ], [ 172.97651672, -41.74966431 ], [ 172.97257996, -41.74528122 ], [ 173.01593018, -41.72750092 ], [ 173.04463196, -41.70283508 ], [ 173.06544495, -41.66937637 ], [ 173.072174069999988, -41.66744614 ], [ 173.0643158, -41.65869141 ], [ 173.0632019, -41.64800262 ], [ 173.07165527, -41.62907028 ], [ 173.08512878, -41.62519836 ], [ 173.089050289999989, -41.62957764 ], [ 173.115997310000012, -41.62182236 ], [ 173.114883420000012, -41.61112595 ], [ 173.12553406, -41.61355591 ], [ 173.13899231, -41.60966873 ], [ 173.1350708, -41.60529327 ], [ 173.14741516, -41.59070587 ], [ 173.16760254, -41.58486176 ], [ 173.17211914, -41.56151199 ], [ 173.18165588, -41.5532341 ], [ 173.187286379999989, -41.54058456 ], [ 173.17945862, -41.53184128 ], [ 173.18228149, -41.52551651 ], [ 173.19682312, -41.53229904 ], [ 173.21028137, -41.52838516 ], [ 173.213088989999989, -41.52205658 ], [ 173.223724370000014, -41.52446747 ], [ 173.23716736, -41.52054214 ], [ 173.25169373, -41.52731323 ], [ 173.265136719999987, -41.52338028 ], [ 173.275756840000014, -41.52578354 ], [ 173.30259705, -41.51789093 ], [ 173.31321716, -41.52028656 ], [ 173.31600952, -41.5139389 ], [ 173.30038452, -41.49646759 ], [ 173.29368591, -41.4984436 ], [ 173.26634216, -41.46787262 ], [ 173.27194214, -41.45518494 ], [ 173.285354610000013, -41.45122528 ], [ 173.284255980000012, -41.44051361 ], [ 173.304351809999986, -41.43455505 ], [ 173.307144169999987, -41.42820358 ], [ 173.29544067, -41.41510773 ], [ 173.30213928, -41.41312027 ], [ 173.29432678, -41.40438843 ], [ 173.30381775, -41.39604187 ], [ 173.31440735000001, -41.3984108 ], [ 173.34783936, -41.38840485 ], [ 173.35340881, -41.37566376 ], [ 173.36952209, -41.36526108 ], [ 173.36839294, -41.35451508 ], [ 173.38449097, -41.34408569 ], [ 173.41778564, -41.33392715 ], [ 173.43264771, -41.31264114 ], [ 173.42483521, -41.30390167 ], [ 173.43147278, -41.30184937 ], [ 173.42366028, -41.29310989 ], [ 173.435760499999986, -41.27820206 ], [ 173.4490509, -41.27408981 ], [ 173.45451355, -41.26123047 ], [ 173.46780396, -41.2571106 ], [ 173.46389771, -41.25273514 ], [ 173.477188109999986, -41.24861526 ], [ 173.48814392, -41.22285843 ], [ 173.52807617, -41.21050262 ], [ 173.52690125, -41.19968796 ], [ 173.56021118000001, -41.18941116 ], [ 173.57745361, -41.18968201 ], [ 173.5735321, -41.18530655 ], [ 173.585723879999989, -41.17040634 ], [ 173.58457947, -41.15960312 ], [ 173.59010315, -41.14676285 ], [ 173.58227539, -41.13800812 ], [ 173.58895874000001, -41.13596344 ], [ 173.581130980000012, -41.12720871 ], [ 173.587814329999986, -41.12516785 ], [ 173.58943176, -41.10795593 ], [ 173.5977478, -41.08872604 ], [ 173.604431150000011, -41.08670044 ], [ 173.596603390000013, -41.07793808 ], [ 173.60606384, -41.06951523 ], [ 173.59823608, -41.06075287 ], [ 173.61444092, -41.06555557 ], [ 173.62208557, -41.07431412 ], [ 173.63000488, -41.06972122 ], [ 173.637039179999988, -41.07928467 ], [ 173.624542240000011, -41.08520889 ], [ 173.61471558, -41.10138702 ], [ 173.62028503, -41.10388947 ], [ 173.62879944, -41.09618759 ], [ 173.64004517, -41.09629059 ], [ 173.6472168, -41.08833313 ], [ 173.65934753, -41.10137558 ], [ 173.65249634, -41.10889053 ], [ 173.6652832, -41.11083221 ], [ 173.675018310000013, -41.10166931 ], [ 173.66087341, -41.08944321 ], [ 173.666107180000012, -41.07583237 ], [ 173.67941284, -41.07739258 ], [ 173.69639587, -41.06944275 ], [ 173.707656859999986, -41.07195663 ], [ 173.71083069, -41.06638718 ], [ 173.72296143, -41.06743622 ], [ 173.72361755, -41.05861282 ], [ 173.75332642, -41.05444336 ], [ 173.76187134, -41.04680252 ], [ 173.74916077, -41.04888916 ], [ 173.738922120000012, -41.04627609 ], [ 173.75268555, -41.03557587 ], [ 173.74472046, -41.03333282 ], [ 173.72683716, -41.04819107 ], [ 173.718429570000012, -41.03990555 ], [ 173.71583557, -41.04639053 ], [ 173.70045471, -41.05552292 ], [ 173.68861389, -41.05611038 ], [ 173.687011719999987, -41.04928589 ], [ 173.670837400000011, -41.0363884 ], [ 173.708892819999988, -41.00811386 ], [ 173.71861267, -41.00388718 ], [ 173.72543335, -41.01325607 ], [ 173.73535156, -40.99972153 ], [ 173.74610901, -41.00566101 ], [ 173.74934387, -40.99333572 ], [ 173.75727844, -40.9928627 ], [ 173.76490784, -40.97375488 ], [ 173.77864075, -40.99014282 ], [ 173.787460329999988, -40.98254395 ], [ 173.79768372, -40.98387909 ], [ 173.79278564, -40.97416306 ], [ 173.78323364, -40.97053146 ], [ 173.793899540000012, -40.96247101 ], [ 173.80230713, -40.97226715 ], [ 173.81053162, -40.96587372 ], [ 173.80485535, -40.95362091 ], [ 173.81245422, -40.95372772 ], [ 173.829177859999987, -40.94571304 ], [ 173.83859253, -40.93173218 ], [ 173.833618159999986, -40.92494202 ], [ 173.84405518, -40.92269897 ], [ 173.85215759, -40.93191528 ], [ 173.844665529999986, -40.94384003 ], [ 173.845901489999989, -40.95347595 ], [ 173.834884640000013, -40.95984268 ], [ 173.84068298, -40.96681213 ], [ 173.832794189999987, -40.9825325 ], [ 173.852340700000013, -40.9897995 ], [ 173.86912537, -40.98192978 ], [ 173.874069209999988, -40.9656868 ], [ 173.88435364, -40.96352768 ], [ 173.88258362, -40.95693588 ], [ 173.89772034, -40.95984268 ], [ 173.90473938, -40.94888687 ], [ 173.918289179999988, -40.94161224 ], [ 173.91096497, -40.93820953 ], [ 173.90664673, -40.92700577 ], [ 173.923324580000013, -40.92140961 ], [ 173.93226624, -40.92457581 ], [ 173.96191406, -40.89672852 ], [ 173.968536379999989, -40.89828491 ], [ 173.97877502, -40.88805389 ], [ 173.97648621, -40.89812469 ], [ 173.97648621, -40.89812469 ] ] ], [ [ [ 174.10667419, -40.88249969 ], [ 174.106109620000012, -40.89027786 ], [ 174.09638977, -40.89222336 ], [ 174.10667419, -40.88249969 ], [ 174.10667419, -40.88249969 ] ] ], [ [ [ 173.766662599999989, -40.88388824 ], [ 173.764724730000012, -40.88194275 ], [ 173.76693726, -40.88166809 ], [ 173.766662599999989, -40.88388824 ], [ 173.766662599999989, -40.88388824 ] ] ], [ [ [ 173.99931335, -40.83649826 ], [ 174.00379944, -40.83800888 ], [ 173.995605469999987, -40.84088135 ], [ 173.99931335, -40.83649826 ], [ 173.99931335, -40.83649826 ] ] ], [ [ [ 173.97444153, -40.77027512 ], [ 173.97193909, -40.78555298 ], [ 173.961730960000011, -40.77944565 ], [ 173.966735840000013, -40.77072906 ], [ 173.97444153, -40.77027512 ], [ 173.97444153, -40.77027512 ] ] ], [ [ [ 173.98448181, -40.76450348 ], [ 173.98631287, -40.78056335 ], [ 173.97668457, -40.76599503 ], [ 173.98448181, -40.76450348 ], [ 173.98448181, -40.76450348 ] ] ], [ [ [ 173.9887085, -40.76059341 ], [ 173.9906311, -40.74845123 ], [ 173.99746704, -40.74570847 ], [ 173.99674988000001, -40.75568771 ], [ 173.9887085, -40.76059341 ], [ 173.9887085, -40.76059341 ] ] ], [ [ [ 173.91783142, -40.73557281 ], [ 173.91007996, -40.73682022 ], [ 173.91416931, -40.73241806 ], [ 173.91783142, -40.73557281 ], [ 173.91783142, -40.73557281 ] ] ], [ [ [ 173.95692444, -40.692276 ], [ 173.961715700000013, -40.70569992 ], [ 173.96708679, -40.70288467 ], [ 173.96617126000001, -40.7198143 ], [ 173.960617070000012, -40.73695755 ], [ 173.954986569999988, -40.74523163 ], [ 173.9616394, -40.75527573 ], [ 173.9596405, -40.76519012 ], [ 173.94869995, -40.76878357 ], [ 173.94122314, -40.77935028 ], [ 173.94084167, -40.79084778 ], [ 173.94664001000001, -40.79466248 ], [ 173.94213867, -40.80411148 ], [ 173.931396479999989, -40.81279373 ], [ 173.92965698, -40.82242966 ], [ 173.936447140000013, -40.82681656 ], [ 173.92399597, -40.82889175 ], [ 173.90496826, -40.85493088 ], [ 173.91192627, -40.86091614 ], [ 173.912475590000014, -40.86858749 ], [ 173.905197140000013, -40.87298584 ], [ 173.9050293, -40.85846329 ], [ 173.89317322, -40.86282349 ], [ 173.8908844, -40.85773849 ], [ 173.87319946, -40.87158966 ], [ 173.879516599999988, -40.87533951 ], [ 173.8681488, -40.87993622 ], [ 173.86985779, -40.88497925 ], [ 173.854980469999987, -40.89936829 ], [ 173.83815002, -40.90369034 ], [ 173.825927729999989, -40.92034149 ], [ 173.810638430000012, -40.93126678 ], [ 173.803924560000013, -40.92881775 ], [ 173.78677368000001, -40.9425621 ], [ 173.77305603, -40.94289017 ], [ 173.77366638, -40.93100357 ], [ 173.78330994, -40.92484665 ], [ 173.788726809999986, -40.90879822 ], [ 173.795684810000012, -40.90154648 ], [ 173.78834534, -40.89605331 ], [ 173.79795837, -40.89008331 ], [ 173.78721619, -40.88843918 ], [ 173.78825378, -40.88299179 ], [ 173.77478027, -40.89211273 ], [ 173.77888489, -40.87526321 ], [ 173.77354431, -40.87201691 ], [ 173.77093506, -40.86103439 ], [ 173.77876282, -40.84969711 ], [ 173.77680969, -40.84075546 ], [ 173.78475952, -40.83186722 ], [ 173.79154968, -40.84113312 ], [ 173.79231262, -40.85736084 ], [ 173.82002258, -40.85616684 ], [ 173.83108521, -40.86211777 ], [ 173.83634949, -40.85082245 ], [ 173.82836914, -40.85644531 ], [ 173.81710815, -40.84862518 ], [ 173.81044006, -40.84938049 ], [ 173.81515503, -40.83987808 ], [ 173.8137207, -40.83107758 ], [ 173.80480957, -40.82642365 ], [ 173.81022644, -40.81932068 ], [ 173.796661379999989, -40.80666733 ], [ 173.80528259, -40.80222321 ], [ 173.83457947, -40.77040863 ], [ 173.82849121000001, -40.75614548 ], [ 173.84056091, -40.76833344 ], [ 173.84475708, -40.75156021 ], [ 173.85838318, -40.74348068 ], [ 173.86982727, -40.72912216 ], [ 173.871734620000012, -40.73664474 ], [ 173.87928772, -40.73959732 ], [ 173.8745575, -40.75180054 ], [ 173.861389159999987, -40.76935959 ], [ 173.874542240000011, -40.77566147 ], [ 173.8681488, -40.80717087 ], [ 173.87472534, -40.80275726 ], [ 173.87905884, -40.79033661 ], [ 173.887191769999987, -40.78836441 ], [ 173.88676453, -40.77998352 ], [ 173.893463129999986, -40.77756119 ], [ 173.90318298, -40.78229523 ], [ 173.904800419999987, -40.80028152 ], [ 173.91096497, -40.77993011 ], [ 173.926254269999987, -40.7830925 ], [ 173.923599239999987, -40.77506256 ], [ 173.931137080000013, -40.76777649 ], [ 173.922500609999986, -40.76609039 ], [ 173.91461182, -40.773983 ], [ 173.900039670000012, -40.77353668 ], [ 173.89526367, -40.76721191 ], [ 173.88334656, -40.76882172 ], [ 173.900756840000014, -40.75437164 ], [ 173.91586304, -40.75243378 ], [ 173.91825867, -40.74621582 ], [ 173.93743896, -40.74662399 ], [ 173.93482971, -40.73836517 ], [ 173.94142151, -40.73692322 ], [ 173.9362793, -40.72694016 ], [ 173.9493866, -40.72801971 ], [ 173.954727170000012, -40.72222137 ], [ 173.949722290000011, -40.7163887 ], [ 173.95335388, -40.70865631 ], [ 173.95063782, -40.69229126 ], [ 173.95692444, -40.692276 ], [ 173.95692444, -40.692276 ] ] ], [ [ [ 173.94721985000001, -40.69072723 ], [ 173.94825745, -40.68863297 ], [ 173.949432370000011, -40.6894722 ], [ 173.94721985000001, -40.69072723 ], [ 173.94721985000001, -40.69072723 ] ] ], [ [ [ 173.99884033, -40.66346741 ], [ 174.00917053, -40.66972351 ], [ 174.000778200000013, -40.67638779 ], [ 173.99049377, -40.67661667 ], [ 173.98757935, -40.67063522 ], [ 173.99884033, -40.66346741 ], [ 173.99884033, -40.66346741 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.9", "id_1": 9, "name_1": "Nelson", "hasc_1": "NZ.NE", "population2022": 54500, "areakm2": 10146.028, "density2022": 5.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.19306946, -41.30689621 ], [ 173.20004272, -41.30701828 ], [ 173.19046021, -41.30965424 ], [ 173.19306946, -41.30689621 ], [ 173.19306946, -41.30689621 ] ] ], [ [ [ 173.200942989999987, -41.30340958 ], [ 173.200668330000013, -41.30009842 ], [ 173.20285034, -41.30181503 ], [ 173.200942989999987, -41.30340958 ], [ 173.200942989999987, -41.30340958 ] ] ], [ [ [ 173.182556150000011, -41.29471588 ], [ 173.18025208, -41.29490662 ], [ 173.18208313, -41.28974533 ], [ 173.182556150000011, -41.29471588 ], [ 173.182556150000011, -41.29471588 ] ] ], [ [ [ 173.16531372, -41.28720856 ], [ 173.177963260000013, -41.28759766 ], [ 173.180160519999987, -41.29769516 ], [ 173.16833496000001, -41.29611206 ], [ 173.15740967, -41.28533554 ], [ 173.16531372, -41.28720856 ], [ 173.16531372, -41.28720856 ] ] ], [ [ [ 173.153244019999988, -41.28535843 ], [ 173.154205319999988, -41.2865448 ], [ 173.15080261, -41.28567886 ], [ 173.153244019999988, -41.28535843 ], [ 173.153244019999988, -41.28535843 ] ] ], [ [ [ 173.11192322, -41.26702118 ], [ 173.14033508, -41.28007889 ], [ 173.136367799999988, -41.28617096 ], [ 173.12149048, -41.27700043 ], [ 173.11526489, -41.27689362 ], [ 173.11192322, -41.26702118 ], [ 173.11192322, -41.26702118 ] ] ], [ [ [ 173.25889587, -41.26916504 ], [ 173.256210329999988, -41.26750946 ], [ 173.258026120000011, -41.26533508 ], [ 173.25889587, -41.26916504 ], [ 173.25889587, -41.26916504 ] ] ], [ [ [ 173.27047729, -41.26018524 ], [ 173.27047729, -41.25876236 ], [ 173.27182007, -41.25876236 ], [ 173.27047729, -41.26018524 ], [ 173.27047729, -41.26018524 ] ] ], [ [ [ 173.10418701, -41.25992584 ], [ 173.10421753, -41.25840378 ], [ 173.10523987, -41.25889587 ], [ 173.10418701, -41.25992584 ], [ 173.10418701, -41.25992584 ] ] ], [ [ [ 173.11430359, -41.25139618 ], [ 173.13276672, -41.25883865 ], [ 173.186889650000012, -41.27599335 ], [ 173.196060179999989, -41.28581619 ], [ 173.1849823, -41.28661728 ], [ 173.1796875, -41.28087234 ], [ 173.16369629, -41.28059769 ], [ 173.15411377, -41.28382111 ], [ 173.1428833, -41.28068542 ], [ 173.12277222, -41.26930618 ], [ 173.10426331, -41.26369476 ], [ 173.104721070000011, -41.25638962 ], [ 173.11430359, -41.25139618 ], [ 173.11430359, -41.25139618 ] ] ], [ [ [ 173.03959656, -41.16856384 ], [ 173.03665161, -41.17208481 ], [ 173.03601074, -41.16881561 ], [ 173.03959656, -41.16856384 ], [ 173.03959656, -41.16856384 ] ] ], [ [ [ 173.02745056, -41.14227295 ], [ 173.03668213, -41.15441132 ], [ 173.02806091, -41.15037155 ], [ 173.02745056, -41.14227295 ], [ 173.02745056, -41.14227295 ] ] ], [ [ [ 173.012771609999987, -41.14222336 ], [ 173.01312256, -41.13825226 ], [ 173.01408386, -41.14131165 ], [ 173.012771609999987, -41.14222336 ], [ 173.012771609999987, -41.14222336 ] ] ], [ [ [ 173.41694641, -41.13472366 ], [ 173.43618774, -41.13976669 ], [ 173.43960571, -41.16154861 ], [ 173.42576599, -41.16625214 ], [ 173.41221619, -41.14944458 ], [ 173.41166687, -41.13888931 ], [ 173.41694641, -41.13472366 ], [ 173.41694641, -41.13472366 ] ] ], [ [ [ 173.01228333, -41.06901169 ], [ 173.01023865, -41.07110596 ], [ 173.00971985000001, -41.06777954 ], [ 173.01228333, -41.06901169 ], [ 173.01228333, -41.06901169 ] ] ], [ [ [ 173.05291748, -40.99332809 ], [ 173.04945374, -40.99435806 ], [ 173.0514679, -40.99177551 ], [ 173.05291748, -40.99332809 ], [ 173.05291748, -40.99332809 ] ] ], [ [ [ 173.06115723, -40.97496033 ], [ 173.063125609999986, -40.98408508 ], [ 173.05311584, -40.98168945 ], [ 173.06115723, -40.97496033 ], [ 173.06115723, -40.97496033 ] ] ], [ [ [ 173.06835938, -40.89221573 ], [ 173.064529420000014, -40.89017868 ], [ 173.06874084, -40.88862991 ], [ 173.06835938, -40.89221573 ], [ 173.06835938, -40.89221573 ] ] ], [ [ [ 172.82618713, -40.81838226 ], [ 172.8240509, -40.81876373 ], [ 172.82444763, -40.81694412 ], [ 172.82618713, -40.81838226 ], [ 172.82618713, -40.81838226 ] ] ], [ [ [ 172.91166687, -40.80555725 ], [ 172.90943909, -40.80416489 ], [ 172.91166687, -40.80389023 ], [ 172.91166687, -40.80555725 ], [ 172.91166687, -40.80555725 ] ] ], [ [ [ 172.91333008, -40.80194473 ], [ 172.91082764, -40.80194473 ], [ 172.91278076, -40.79972076 ], [ 172.91333008, -40.80194473 ], [ 172.91333008, -40.80194473 ] ] ], [ [ [ 173.02511597, -40.55424881 ], [ 173.030639650000012, -40.55837631 ], [ 173.02424622, -40.55789948 ], [ 173.02511597, -40.55424881 ], [ 173.02511597, -40.55424881 ] ] ], [ [ [ 172.675003049999987, -40.50055695 ], [ 172.67539978, -40.49869156 ], [ 172.67622375, -40.49960327 ], [ 172.675003049999987, -40.50055695 ], [ 172.675003049999987, -40.50055695 ] ] ], [ [ [ 172.671661379999989, -40.49861145 ], [ 172.67304993, -40.50055695 ], [ 172.66944885, -40.50027847 ], [ 172.671661379999989, -40.49861145 ], [ 172.671661379999989, -40.49861145 ] ] ], [ [ [ 172.68804932, -40.49750137 ], [ 172.71777344, -40.50166702 ], [ 172.73429871, -40.50875473 ], [ 172.74278259, -40.50805664 ], [ 172.7722168, -40.51277924 ], [ 172.77471924, -40.50944519 ], [ 172.80471802, -40.50416565 ], [ 172.81555176, -40.50999832 ], [ 172.82556152, -40.50694275 ], [ 172.857498170000014, -40.51388931 ], [ 172.92999268, -40.51972198 ], [ 172.94194031, -40.52388763 ], [ 172.99806213, -40.53888702 ], [ 173.01028442, -40.54472351 ], [ 173.017776489999989, -40.55277634 ], [ 173.01028442, -40.55389023 ], [ 172.98554993, -40.54333496 ], [ 172.956390379999988, -40.5363884 ], [ 172.93333435, -40.52777863 ], [ 172.91416931, -40.52833176 ], [ 172.88250732, -40.51972198 ], [ 172.86999512, -40.51972198 ], [ 172.831115720000014, -40.51527786 ], [ 172.789260860000013, -40.51336288 ], [ 172.75527954, -40.51555634 ], [ 172.732498170000014, -40.52639008 ], [ 172.72361755, -40.53722382 ], [ 172.72528076, -40.54360962 ], [ 172.70733643, -40.56026077 ], [ 172.68777466, -40.5858345 ], [ 172.69111633, -40.5961113 ], [ 172.68666077, -40.60194397 ], [ 172.67871094, -40.62848282 ], [ 172.68249512, -40.65722275 ], [ 172.67100525, -40.6507225 ], [ 172.67056274, -40.64138794 ], [ 172.66444397, -40.64222336 ], [ 172.65444946, -40.65194321 ], [ 172.65361023, -40.6586113 ], [ 172.66694641, -40.66444397 ], [ 172.676681519999988, -40.67650986 ], [ 172.68695068, -40.67833328 ], [ 172.68888855, -40.71277618 ], [ 172.676696779999986, -40.72079086 ], [ 172.684219359999986, -40.73009872 ], [ 172.690490720000014, -40.71656418 ], [ 172.69519043, -40.72851944 ], [ 172.734161379999989, -40.77249908 ], [ 172.74110413, -40.77361298 ], [ 172.753433230000013, -40.78382111 ], [ 172.76603699, -40.78637695 ], [ 172.77583313, -40.79916763 ], [ 172.79391479, -40.80080032 ], [ 172.789550780000013, -40.8040657 ], [ 172.796386719999987, -40.8152771 ], [ 172.81086731, -40.81889725 ], [ 172.80314636, -40.82338715 ], [ 172.81115723, -40.83194733 ], [ 172.817199710000011, -40.83115387 ], [ 172.806396479999989, -40.82361221 ], [ 172.81219482, -40.81949615 ], [ 172.83666992, -40.82972336 ], [ 172.87506104, -40.83326721 ], [ 172.8890686, -40.83105087 ], [ 172.897659299999987, -40.82347107 ], [ 172.91389465, -40.8180542 ], [ 172.91444397, -40.80250168 ], [ 172.9239502, -40.80459976 ], [ 172.940902709999989, -40.81383133 ], [ 172.93833923, -40.82055664 ], [ 172.95555115, -40.81000137 ], [ 172.950805659999986, -40.8054657 ], [ 172.95324707, -40.78927994 ], [ 172.961288450000012, -40.78403473 ], [ 172.973007200000012, -40.78668976 ], [ 172.9883728, -40.78019333 ], [ 172.99916077, -40.78333282 ], [ 172.993637080000013, -40.78782272 ], [ 173.00384521, -40.80186462 ], [ 173.01200867, -40.80459595 ], [ 173.01446533, -40.81660461 ], [ 173.00645447, -40.81827164 ], [ 173.00559998, -40.82574081 ], [ 173.01544189, -40.84044266 ], [ 173.01602173, -40.84853363 ], [ 173.02371216, -40.85792542 ], [ 173.00196838, -40.86230087 ], [ 173.011230469999987, -40.86720276 ], [ 173.021682739999989, -40.86097717 ], [ 173.04048157, -40.85903549 ], [ 173.04705811, -40.85119629 ], [ 173.05815125, -40.8566246 ], [ 173.06556702, -40.87455368 ], [ 173.061889650000012, -40.88291168 ], [ 173.05368042, -40.88093567 ], [ 173.04695129000001, -40.88845825 ], [ 173.064254760000011, -40.90927124 ], [ 173.05319214, -40.91413498 ], [ 173.06222534, -40.93797684 ], [ 173.044998170000014, -40.95222092 ], [ 173.05860901, -40.95639038 ], [ 173.067871090000011, -40.95025635 ], [ 173.06950378, -40.96141434 ], [ 173.05722046, -40.96450424 ], [ 173.04273987, -40.97352982 ], [ 173.03570557, -40.98967361 ], [ 173.00776672, -40.99180984 ], [ 173.01127625, -40.99651337 ], [ 173.00721741000001, -41.00916672 ], [ 172.9972229, -41.01472092 ], [ 172.99972534, -41.01916504 ], [ 173.011077879999988, -41.01379395 ], [ 173.0206604, -41.01579666 ], [ 173.02201843, -41.02797699 ], [ 173.017227170000012, -41.0391655 ], [ 173.02346802, -41.04502869 ], [ 173.017807010000013, -41.05091476 ], [ 173.00485229, -41.05446625 ], [ 173.00138855, -41.0633316 ], [ 173.00628662, -41.07122803 ], [ 173.03253174, -41.08983231 ], [ 173.03388977, -41.09944534 ], [ 173.023101809999986, -41.12784958 ], [ 173.0209198, -41.13903427 ], [ 173.0177002, -41.12631226 ], [ 173.00471497, -41.14638901 ], [ 173.01167297, -41.14611053 ], [ 173.02053833, -41.1589241 ], [ 173.04159546, -41.17644501 ], [ 173.05036926, -41.18630219 ], [ 173.05360413, -41.18249893 ], [ 173.04399109, -41.16226196 ], [ 173.06570435, -41.18338776 ], [ 173.07023621, -41.19362259 ], [ 173.085449219999987, -41.21280289 ], [ 173.0836792, -41.2269783 ], [ 173.08900452, -41.23566055 ], [ 173.10783386, -41.24952698 ], [ 173.10047913, -41.26050949 ], [ 173.07662964, -41.25390625 ], [ 173.07366943, -41.26324081 ], [ 173.08674622, -41.26799393 ], [ 173.07704163, -41.27402115 ], [ 173.097869870000011, -41.2740097 ], [ 173.104690549999987, -41.2783432 ], [ 173.088256840000014, -41.28490448 ], [ 173.103881840000014, -41.28972244 ], [ 173.10906982, -41.28451538 ], [ 173.126739500000014, -41.28292084 ], [ 173.1383667, -41.28896332 ], [ 173.14039612, -41.28307343 ], [ 173.155761719999987, -41.28875351 ], [ 173.16412354, -41.2964592 ], [ 173.159729, -41.31111145 ], [ 173.16963196, -41.32063293 ], [ 173.181869510000013, -41.3230896 ], [ 173.19389343, -41.33166504 ], [ 173.208618159999986, -41.32638931 ], [ 173.21333313, -41.31361008 ], [ 173.22084045, -41.30416489 ], [ 173.20582581, -41.30555725 ], [ 173.235122679999989, -41.27951813 ], [ 173.2507019, -41.27900696 ], [ 173.270004269999987, -41.26083374 ], [ 173.28388977, -41.25388718 ], [ 173.28572083, -41.26416016 ], [ 173.31361389, -41.24833298 ], [ 173.31944275, -41.2266655 ], [ 173.32943726, -41.2183342 ], [ 173.32221985000001, -41.20500183 ], [ 173.30465698, -41.22719574 ], [ 173.293457030000013, -41.23785782 ], [ 173.27757263, -41.24804306 ], [ 173.302505489999987, -41.22750092 ], [ 173.323608400000012, -41.20222092 ], [ 173.3631897, -41.1842308 ], [ 173.37432861, -41.17284775 ], [ 173.38911438, -41.16769791 ], [ 173.40203857, -41.15643692 ], [ 173.41156006, -41.15826416 ], [ 173.42758179, -41.17341614 ], [ 173.43766785, -41.17302704 ], [ 173.451385499999986, -41.1641655 ], [ 173.4641571, -41.16585922 ], [ 173.46873474, -41.1607132 ], [ 173.44137573, -41.16107559 ], [ 173.480270389999987, -41.15694427 ], [ 173.49278259, -41.14916611 ], [ 173.50666809, -41.13444519 ], [ 173.5083313, -41.11277771 ], [ 173.51628113000001, -41.10342789 ], [ 173.53025818, -41.10385513 ], [ 173.54660034, -41.09563446 ], [ 173.55778503, -41.08472061 ], [ 173.56083679, -41.07389069 ], [ 173.56555176, -41.07583237 ], [ 173.574722290000011, -41.06305695 ], [ 173.580566409999989, -41.0664444 ], [ 173.58860779, -41.0616684 ], [ 173.59333801, -41.05222321 ], [ 173.604995730000013, -41.05873489 ], [ 173.59823608, -41.06075287 ], [ 173.60606384, -41.06951523 ], [ 173.596603390000013, -41.07793808 ], [ 173.604431150000011, -41.08670044 ], [ 173.5977478, -41.08872604 ], [ 173.58666992, -41.11437225 ], [ 173.587814329999986, -41.12516785 ], [ 173.581130980000012, -41.12720871 ], [ 173.58895874000001, -41.13596344 ], [ 173.58227539, -41.13800812 ], [ 173.59010315, -41.14676285 ], [ 173.58457947, -41.15960312 ], [ 173.585723879999989, -41.17040634 ], [ 173.57745361, -41.18968201 ], [ 173.56021118000001, -41.18941116 ], [ 173.52690125, -41.19968796 ], [ 173.52807617, -41.21050262 ], [ 173.48814392, -41.22285843 ], [ 173.477188109999986, -41.24861526 ], [ 173.46389771, -41.25273514 ], [ 173.46780396, -41.2571106 ], [ 173.45451355, -41.26123047 ], [ 173.4490509, -41.27408981 ], [ 173.435760499999986, -41.27820206 ], [ 173.42366028, -41.29310989 ], [ 173.43147278, -41.30184937 ], [ 173.42483521, -41.30390167 ], [ 173.43264771, -41.31264114 ], [ 173.41778564, -41.33392715 ], [ 173.38449097, -41.34408569 ], [ 173.36839294, -41.35451508 ], [ 173.36952209, -41.36526108 ], [ 173.35340881, -41.37566376 ], [ 173.34783936, -41.38840485 ], [ 173.31440735000001, -41.3984108 ], [ 173.30381775, -41.39604187 ], [ 173.29432678, -41.40438843 ], [ 173.30213928, -41.41312027 ], [ 173.29544067, -41.41510773 ], [ 173.307144169999987, -41.42820358 ], [ 173.304351809999986, -41.43455505 ], [ 173.284255980000012, -41.44051361 ], [ 173.285354610000013, -41.45122528 ], [ 173.27194214, -41.45518494 ], [ 173.26634216, -41.46787262 ], [ 173.29368591, -41.4984436 ], [ 173.30038452, -41.49646759 ], [ 173.31600952, -41.5139389 ], [ 173.31321716, -41.52028656 ], [ 173.30259705, -41.51789093 ], [ 173.275756840000014, -41.52578354 ], [ 173.25169373, -41.52731323 ], [ 173.23716736, -41.52054214 ], [ 173.223724370000014, -41.52446747 ], [ 173.213088989999989, -41.52205658 ], [ 173.21028137, -41.52838516 ], [ 173.19682312, -41.53229904 ], [ 173.18228149, -41.52551651 ], [ 173.17945862, -41.53184128 ], [ 173.187286379999989, -41.54058456 ], [ 173.18165588, -41.5532341 ], [ 173.16931152, -41.56783676 ], [ 173.16760254, -41.58486176 ], [ 173.14741516, -41.59070587 ], [ 173.1350708, -41.60529327 ], [ 173.13899231, -41.60966873 ], [ 173.12553406, -41.61355591 ], [ 173.114883420000012, -41.61112595 ], [ 173.115997310000012, -41.62182236 ], [ 173.089050289999989, -41.62957764 ], [ 173.08512878, -41.62519836 ], [ 173.07165527, -41.62907028 ], [ 173.0632019, -41.64800262 ], [ 173.0643158, -41.65869141 ], [ 173.072174069999988, -41.66744614 ], [ 173.06544495, -41.66937637 ], [ 173.04463196, -41.70283508 ], [ 173.01593018, -41.72750092 ], [ 172.97257996, -41.74528122 ], [ 172.97651672, -41.74966431 ], [ 172.96299744, -41.75348663 ], [ 172.95230103, -41.75101089 ], [ 172.94442749000001, -41.74224091 ], [ 172.93484497, -41.75043869 ], [ 172.94665527, -41.76359177 ], [ 172.9438324, -41.7698822 ], [ 172.95454407, -41.77235794 ], [ 172.95565796, -41.78303528 ], [ 172.94213867, -41.78684616 ], [ 172.93649292, -41.79942322 ], [ 172.92295837, -41.8032341 ], [ 172.9269104, -41.807621 ], [ 172.91337585, -41.81142807 ], [ 172.9009552, -41.82591248 ], [ 172.881744379999986, -41.84230042 ], [ 172.88963318, -41.85107803 ], [ 172.8800354, -41.85927582 ], [ 172.88398743, -41.86366653 ], [ 172.86364746000001, -41.86937332 ], [ 172.86477661, -41.88005829 ], [ 172.85516357, -41.88825989 ], [ 172.8658905, -41.89074707 ], [ 172.88169861, -41.90831375 ], [ 172.87208557, -41.91651535 ], [ 172.876037599999989, -41.92090988 ], [ 172.862487789999989, -41.92472458 ], [ 172.86077881, -41.94171906 ], [ 172.82684326, -41.95125961 ], [ 172.825149540000012, -41.96826553 ], [ 172.80986023, -41.98908997 ], [ 172.78947449, -41.99482346 ], [ 172.80136108, -42.00801849 ], [ 172.79852295, -42.01432419 ], [ 172.784942629999989, -42.01815033 ], [ 172.78889465, -42.02254868 ], [ 172.775299069999988, -42.026371 ], [ 172.7724762, -42.03268433 ], [ 172.76170349, -42.03019714 ], [ 172.748107909999987, -42.03402328 ], [ 172.749237060000013, -42.04473495 ], [ 172.74243164, -42.04664993 ], [ 172.75036621000001, -42.05545044 ], [ 172.740722659999989, -42.06367874 ], [ 172.73504639, -42.07631302 ], [ 172.742980960000011, -42.08511734 ], [ 172.74411011, -42.09583282 ], [ 172.723709109999987, -42.10158539 ], [ 172.71974182, -42.09718323 ], [ 172.6993103, -42.10293579 ], [ 172.70214844, -42.09661484 ], [ 172.69421387, -42.08781052 ], [ 172.646545409999987, -42.10123062 ], [ 172.64483643, -42.11828232 ], [ 172.656738280000013, -42.13149643 ], [ 172.63630676, -42.13726044 ], [ 172.623809810000012, -42.1518364 ], [ 172.6277771, -42.15624237 ], [ 172.62208557, -42.16890335 ], [ 172.6300354, -42.1777153 ], [ 172.62321472, -42.17964172 ], [ 172.63116455, -42.18845749 ], [ 172.624359129999988, -42.1903801 ], [ 172.6186676, -42.20304871 ], [ 172.6050415, -42.20690155 ], [ 172.60900879, -42.21131134 ], [ 172.59538269, -42.21516418 ], [ 172.59140015, -42.21075821 ], [ 172.570938109999986, -42.21654129 ], [ 172.56240845, -42.23556137 ], [ 172.54194641, -42.24135208 ], [ 172.54592896, -42.24576569 ], [ 172.532287599999989, -42.24962997 ], [ 172.533416749999986, -42.26038361 ], [ 172.51293945, -42.26618576 ], [ 172.50897217, -42.26177216 ], [ 172.46118164, -42.27531433 ], [ 172.46232605, -42.28608322 ], [ 172.44866943, -42.28995514 ], [ 172.45661926, -42.29878616 ], [ 172.44296265, -42.3026619 ], [ 172.42817688, -42.29576874 ], [ 172.41053772, -42.29522705 ], [ 172.40257263, -42.28639221 ], [ 172.39175415, -42.28391266 ], [ 172.38378906, -42.27507782 ], [ 172.37013245, -42.27895355 ], [ 172.36216736, -42.2701149 ], [ 172.371856689999987, -42.26182556 ], [ 172.34399414, -42.23089218 ], [ 172.357666020000011, -42.22702408 ], [ 172.356536870000014, -42.21625519 ], [ 172.3633728, -42.21432495 ], [ 172.35142517, -42.20106888 ], [ 172.35826111, -42.19913864 ], [ 172.35031128, -42.19029999 ], [ 172.35714722, -42.18837357 ], [ 172.34918213, -42.17953491 ], [ 172.358871459999989, -42.17126083 ], [ 172.34693909, -42.15800858 ], [ 172.349807739999989, -42.15166092 ], [ 172.32420349, -42.14226151 ], [ 172.28207397, -42.14305496 ], [ 172.26156616, -42.14883423 ], [ 172.26441956, -42.14248657 ], [ 172.25646973, -42.1336441 ], [ 172.25933838, -42.12729645 ], [ 172.24565125, -42.13114548 ], [ 172.234848019999987, -42.12865067 ], [ 172.22291565, -42.11537933 ], [ 172.22975159, -42.11345673 ], [ 172.21385193, -42.09576416 ], [ 172.19332886, -42.10153198 ], [ 172.18934631, -42.09710693 ], [ 172.17565918, -42.10095215 ], [ 172.14718628, -42.09786606 ], [ 172.135253909999989, -42.08458328 ], [ 172.1421051, -42.08266449 ], [ 172.110290529999986, -42.04723358 ], [ 172.12001038, -42.03897095 ], [ 172.118911739999987, -42.02819824 ], [ 172.125747679999989, -42.02628326 ], [ 172.12068176, -42.01108551 ], [ 172.08822632, -42.00353622 ], [ 172.0763092, -41.990242 ], [ 172.08602905, -41.98199081 ], [ 172.07807922, -41.97312927 ], [ 172.07301331, -41.9579277 ], [ 172.06219482, -41.95540237 ], [ 172.054245, -41.94654083 ], [ 172.0639801, -41.93829727 ], [ 172.06001282, -41.93386459 ], [ 172.07369995, -41.93005753 ], [ 172.06973267, -41.92562485 ], [ 172.0834198, -41.92182159 ], [ 172.08630371000001, -41.91548538 ], [ 172.07041931, -41.89776611 ], [ 172.073303220000014, -41.89143753 ], [ 172.0841217, -41.89396667 ], [ 172.09780884, -41.89016724 ], [ 172.09671021, -41.8794136 ], [ 172.10931396, -41.86486816 ], [ 172.12011719, -41.86739349 ], [ 172.12225342, -41.78401947 ], [ 172.10856628, -41.78779602 ], [ 172.100646970000014, -41.77895355 ], [ 172.107498170000014, -41.77706528 ], [ 172.09957886, -41.76822662 ], [ 172.10929871, -41.76003647 ], [ 172.122970579999986, -41.75626755 ], [ 172.12190247, -41.74555206 ], [ 172.131622310000012, -41.73736954 ], [ 172.116867070000012, -41.73042297 ], [ 172.11975098, -41.72412872 ], [ 172.133438109999986, -41.72036743 ], [ 172.12947083, -41.71595383 ], [ 172.15682983, -41.70843124 ], [ 172.155761719999987, -41.69773483 ], [ 172.17733765, -41.70278931 ], [ 172.1870575, -41.69462204 ], [ 172.20071411, -41.69085693 ], [ 172.20466614, -41.69526291 ], [ 172.22229004, -41.69589615 ], [ 172.214385990000011, -41.68709183 ], [ 172.22122192, -41.68521118 ], [ 172.22912598, -41.6940155 ], [ 172.24278259, -41.69024658 ], [ 172.254653929999989, -41.70344925 ], [ 172.26435852, -41.69527817 ], [ 172.25248718, -41.68207932 ], [ 172.25823975, -41.66952133 ], [ 172.2424469, -41.65193939 ], [ 172.24926758, -41.65005875 ], [ 172.24136353, -41.6412735 ], [ 172.251068120000014, -41.63312149 ], [ 172.271560670000014, -41.62748718 ], [ 172.29705811, -41.63689423 ], [ 172.302810670000014, -41.62435532 ], [ 172.29885864, -41.6199646 ], [ 172.33299255, -41.61056137 ], [ 172.329040529999986, -41.60617447 ], [ 172.344497679999989, -41.585495 ], [ 172.332672120000012, -41.57234955 ], [ 172.339492799999988, -41.57046509 ], [ 172.331604, -41.56170654 ], [ 172.3520813, -41.55606461 ], [ 172.34709167, -41.54105377 ], [ 172.3528595, -41.52854156 ], [ 172.34498596, -41.51979446 ], [ 172.347869870000011, -41.51353836 ], [ 172.361526489999989, -41.50976944 ], [ 172.37411499000001, -41.49536514 ], [ 172.39457703, -41.48970413 ], [ 172.3974762, -41.4834404 ], [ 172.424743650000011, -41.4758873 ], [ 172.426574710000011, -41.4589653 ], [ 172.433395389999987, -41.45707321 ], [ 172.42553711, -41.44831085 ], [ 172.438125609999986, -41.43386841 ], [ 172.43026733, -41.42510223 ], [ 172.41952515, -41.42261505 ], [ 172.42242432, -41.41633606 ], [ 172.44966125, -41.408741 ], [ 172.45254517, -41.40245819 ], [ 172.46615601, -41.39865494 ], [ 172.47399902, -41.40743256 ], [ 172.495468140000014, -41.41241455 ], [ 172.52372742, -41.41550064 ], [ 172.526596070000011, -41.40921021 ], [ 172.54412842, -41.40980911 ], [ 172.54020691, -41.40541458 ], [ 172.56059265, -41.39971924 ], [ 172.55667114, -41.39532089 ], [ 172.56632996, -41.38712311 ], [ 172.59350586, -41.3795166 ], [ 172.59243774, -41.36880875 ], [ 172.58457947, -41.36000061 ], [ 172.59136963, -41.35809708 ], [ 172.58351135, -41.34928513 ], [ 172.58638, -41.3429718 ], [ 172.599960329999988, -41.3391571 ], [ 172.59210205, -41.33034515 ], [ 172.60644531, -41.29875946 ], [ 172.5957489, -41.29625702 ], [ 172.58792114, -41.28743362 ], [ 172.59469604, -41.28552246 ], [ 172.57516479, -41.26345062 ], [ 172.63618469, -41.24627304 ], [ 172.6401062, -41.25069427 ], [ 172.667221070000011, -41.2430687 ], [ 172.663299560000013, -41.23864746 ], [ 172.676849370000014, -41.23483658 ], [ 172.68649292, -41.22660446 ], [ 172.68258667, -41.22217941 ], [ 172.69613647, -41.21837234 ], [ 172.699005129999989, -41.21203995 ], [ 172.68336487, -41.19433212 ], [ 172.66305542, -41.20005035 ], [ 172.65914917, -41.19562531 ], [ 172.63883972, -41.20134735 ], [ 172.623260499999986, -41.1836319 ], [ 172.63002014, -41.18172073 ], [ 172.62223816, -41.17285538 ], [ 172.62901306, -41.17094421 ], [ 172.62124634, -41.16207123 ], [ 172.6105957, -41.1595459 ], [ 172.59507751000001, -41.14177704 ], [ 172.58831787, -41.14369202 ], [ 172.57286072, -41.12590027 ], [ 172.558380129999989, -41.11891174 ], [ 172.56515503, -41.11699295 ], [ 172.55360413, -41.10361481 ], [ 172.52566528, -41.10045242 ], [ 172.51802063, -41.0915184 ], [ 172.52770996000001, -41.08320236 ], [ 172.516265870000012, -41.06978607 ], [ 172.498962400000011, -41.06916809 ], [ 172.487533570000011, -41.05576324 ], [ 172.49429321, -41.05383301 ], [ 172.50016785, -41.04104614 ], [ 172.49551392, -41.02571487 ], [ 172.48202515, -41.02957535 ], [ 172.4609375, -41.02450562 ], [ 172.44364929, -41.02390289 ], [ 172.44068909, -41.03029251 ], [ 172.413711549999988, -41.03800964 ], [ 172.40612793, -41.02908707 ], [ 172.37831116000001, -41.02595901 ], [ 172.3821106, -41.0304184 ], [ 172.36566162, -41.04066086 ], [ 172.3694458, -41.04512024 ], [ 172.36352539, -41.05789185 ], [ 172.35298157, -41.0553627 ], [ 172.35380554, -41.06620789 ], [ 172.343276980000013, -41.06367493 ], [ 172.32977295, -41.06753159 ], [ 172.322204590000013, -41.05862045 ], [ 172.32896423, -41.05669022 ], [ 172.33784485000001, -41.03753662 ], [ 172.32731628, -41.03501129 ], [ 172.31219482, -41.01719284 ], [ 172.321899409999986, -41.00888062 ], [ 172.33079529, -40.98972321 ], [ 172.34805298, -40.99031448 ], [ 172.35101318, -40.98392868 ], [ 172.36448669, -40.98006439 ], [ 172.383880620000014, -40.96342468 ], [ 172.38980103, -40.95064926 ], [ 172.38305664, -40.95258331 ], [ 172.37846375, -40.93729019 ], [ 172.364990229999989, -40.94115829 ], [ 172.35070801, -40.93419266 ], [ 172.33050537, -40.93999863 ], [ 172.31919861, -40.926651 ], [ 172.305725099999989, -40.9305191 ], [ 172.29820251000001, -40.92162704 ], [ 172.30493164, -40.91968918 ], [ 172.29364014, -40.906353 ], [ 172.286895750000014, -40.90828705 ], [ 172.279373170000014, -40.8993988 ], [ 172.29284668, -40.89552689 ], [ 172.292053220000014, -40.88470459 ], [ 172.284530640000014, -40.87582016 ], [ 172.2635498, -40.87081528 ], [ 172.26274109, -40.86000824 ], [ 172.25306702, -40.86831284 ], [ 172.23287964, -40.87412262 ], [ 172.235839840000011, -40.86775208 ], [ 172.228286739999987, -40.85889053 ], [ 172.231216429999989, -40.85252762 ], [ 172.24467468, -40.8486557 ], [ 172.237091060000012, -40.8398056 ], [ 172.24676514, -40.83150482 ], [ 172.242965700000013, -40.82708359 ], [ 172.248962400000011, -40.81437302 ], [ 172.21711731, -40.77483368 ], [ 172.23666382, -40.77277756 ], [ 172.25, -40.76555634 ], [ 172.258605960000011, -40.76472092 ], [ 172.27360535, -40.75305557 ], [ 172.2930603, -40.7491684 ], [ 172.29333496000001, -40.7444458 ], [ 172.30749512, -40.73083496 ], [ 172.33694458, -40.71277618 ], [ 172.34611511, -40.71111298 ], [ 172.36999512, -40.69722366 ], [ 172.38194275, -40.68638992 ], [ 172.390838620000011, -40.67027664 ], [ 172.40415955, -40.66249847 ], [ 172.425003049999987, -40.64333344 ], [ 172.43333435, -40.64110947 ], [ 172.44221497, -40.6305542 ], [ 172.46083069, -40.62472153 ], [ 172.472229, -40.61722183 ], [ 172.48083496000001, -40.61639023 ], [ 172.48805237, -40.60610962 ], [ 172.51554871, -40.59500122 ], [ 172.52972412, -40.58388901 ], [ 172.53611755, -40.58250046 ], [ 172.54417419, -40.59444427 ], [ 172.53416443, -40.60138702 ], [ 172.54440308, -40.60555649 ], [ 172.52944946, -40.60833359 ], [ 172.50805664, -40.61999893 ], [ 172.514160159999989, -40.6230545 ], [ 172.51083374000001, -40.6297226 ], [ 172.53027344, -40.61666489 ], [ 172.55749512, -40.60527802 ], [ 172.57804871, -40.61194611 ], [ 172.581390379999988, -40.60138702 ], [ 172.571105960000011, -40.60610962 ], [ 172.56777954, -40.5961113 ], [ 172.5819397, -40.58833313 ], [ 172.613616940000014, -40.58777618 ], [ 172.6305542, -40.58444595 ], [ 172.625, -40.58027649 ], [ 172.63027954, -40.57110977 ], [ 172.62249756, -40.56138992 ], [ 172.6166687, -40.56694412 ], [ 172.5944519, -40.56861115 ], [ 172.59111023, -40.57222366 ], [ 172.575271609999987, -40.5672226 ], [ 172.56971741000001, -40.57749939 ], [ 172.57305908, -40.58166504 ], [ 172.55499268, -40.58833313 ], [ 172.547225950000012, -40.5830574 ], [ 172.55499268, -40.56416702 ], [ 172.56611633, -40.55916595 ], [ 172.582504269999987, -40.54639053 ], [ 172.58999634, -40.54444504 ], [ 172.60139465, -40.5336113 ], [ 172.63555908, -40.51111221 ], [ 172.64833069, -40.50500107 ], [ 172.66194153, -40.50722122 ], [ 172.68804932, -40.49750137 ], [ 172.68804932, -40.49750137 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.10", "id_1": 10, "name_1": "Northland", "hasc_1": "NZ.NO", "population2022": 201500, "areakm2": 12841.998, "density2022": 15.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.38833618000001, -36.27483749 ], [ 174.38757324, -36.27409744 ], [ 174.38911438, -36.27335358 ], [ 174.38833618000001, -36.27483749 ], [ 174.38833618000001, -36.27483749 ] ] ], [ [ [ 174.18888855, -36.24166489 ], [ 174.18722534, -36.24027634 ], [ 174.18916321, -36.23888779 ], [ 174.18888855, -36.24166489 ], [ 174.18888855, -36.24166489 ] ] ], [ [ [ 174.16305542, -36.22638702 ], [ 174.16166687, -36.22444534 ], [ 174.1652832, -36.2238884 ], [ 174.16305542, -36.22638702 ], [ 174.16305542, -36.22638702 ] ] ], [ [ [ 174.582229610000013, -36.11666489 ], [ 174.580322270000011, -36.12127686 ], [ 174.578445429999988, -36.11925507 ], [ 174.582229610000013, -36.11666489 ], [ 174.582229610000013, -36.11666489 ] ] ], [ [ [ 174.697494510000013, -35.95166779 ], [ 174.71305847, -35.9580574 ], [ 174.72389221, -35.95611191 ], [ 174.74749756, -35.96722412 ], [ 174.72694397, -35.97249985 ], [ 174.706390379999988, -35.97000122 ], [ 174.69639587, -35.95888901 ], [ 174.697494510000013, -35.95166779 ], [ 174.697494510000013, -35.95166779 ] ] ], [ [ [ 174.69471741000001, -35.89194489 ], [ 174.70195007, -35.89416504 ], [ 174.69194031, -35.89583206 ], [ 174.69471741000001, -35.89194489 ], [ 174.69471741000001, -35.89194489 ] ] ], [ [ [ 174.742507929999988, -35.89021683 ], [ 174.74121094, -35.89027786 ], [ 174.741287230000012, -35.88828659 ], [ 174.742507929999988, -35.89021683 ], [ 174.742507929999988, -35.89021683 ] ] ], [ [ [ 174.75222778, -35.88416672 ], [ 174.762496950000013, -35.88888931 ], [ 174.76083374000001, -35.89333344 ], [ 174.74330139, -35.89092255 ], [ 174.75222778, -35.88416672 ], [ 174.75222778, -35.88416672 ] ] ], [ [ [ 174.72471619, -35.88583374 ], [ 174.73925781, -35.88962555 ], [ 174.737228390000013, -35.8983345 ], [ 174.72346497, -35.89439392 ], [ 174.71583557, -35.88583374 ], [ 174.72471619, -35.88583374 ], [ 174.72471619, -35.88583374 ] ] ], [ [ [ 174.702651980000013, -35.88689423 ], [ 174.70112610000001, -35.88683319 ], [ 174.70059204, -35.8837204 ], [ 174.702651980000013, -35.88689423 ], [ 174.702651980000013, -35.88689423 ] ] ], [ [ [ 174.77861023, -35.88360977 ], [ 174.76701355, -35.89451218 ], [ 174.76693726, -35.88666534 ], [ 174.77861023, -35.88360977 ], [ 174.77861023, -35.88360977 ] ] ], [ [ [ 174.69721985000001, -35.88111115 ], [ 174.69590759, -35.88486862 ], [ 174.69322205, -35.88209152 ], [ 174.69721985000001, -35.88111115 ], [ 174.69721985000001, -35.88111115 ] ] ], [ [ [ 174.59584045, -35.83777618 ], [ 174.59379578, -35.84151459 ], [ 174.59263611, -35.83758545 ], [ 174.59584045, -35.83777618 ], [ 174.59584045, -35.83777618 ] ] ], [ [ [ 174.51916504, -35.82860947 ], [ 174.518615720000014, -35.83027649 ], [ 174.516662599999989, -35.82860947 ], [ 174.51916504, -35.82860947 ], [ 174.51916504, -35.82860947 ] ] ], [ [ [ 174.35023499, -35.82321548 ], [ 174.35186768, -35.82626724 ], [ 174.34681702, -35.8261528 ], [ 174.35023499, -35.82321548 ], [ 174.35023499, -35.82321548 ] ] ], [ [ [ 174.34832764, -35.81305695 ], [ 174.347229, -35.81694412 ], [ 174.34500122, -35.8152771 ], [ 174.34832764, -35.81305695 ], [ 174.34832764, -35.81305695 ] ] ], [ [ [ 174.37971497, -35.80833435 ], [ 174.38305664, -35.81000137 ], [ 174.37944031, -35.81138992 ], [ 174.37971497, -35.80833435 ], [ 174.37971497, -35.80833435 ] ] ], [ [ [ 174.34764099, -35.80336761 ], [ 174.34555054, -35.80250168 ], [ 174.34761047, -35.80142975 ], [ 174.34764099, -35.80336761 ], [ 174.34764099, -35.80336761 ] ] ], [ [ [ 174.448608400000012, -35.7891655 ], [ 174.449996950000013, -35.79027939 ], [ 174.44833374000001, -35.79305649 ], [ 174.448608400000012, -35.7891655 ], [ 174.448608400000012, -35.7891655 ] ] ], [ [ [ 174.347229, -35.78749847 ], [ 174.347229, -35.79499817 ], [ 174.34527588, -35.79360962 ], [ 174.347229, -35.78749847 ], [ 174.347229, -35.78749847 ] ] ], [ [ [ 174.37138367, -35.7844429 ], [ 174.37110901, -35.78722382 ], [ 174.36860657, -35.78583145 ], [ 174.37138367, -35.7844429 ], [ 174.37138367, -35.7844429 ] ] ], [ [ [ 174.362930299999988, -35.78653717 ], [ 174.35444641, -35.78333282 ], [ 174.36332703, -35.77944565 ], [ 174.362930299999988, -35.78653717 ], [ 174.362930299999988, -35.78653717 ] ] ], [ [ [ 174.57133484, -35.72345352 ], [ 174.56880188, -35.72127151 ], [ 174.57055664, -35.72083664 ], [ 174.57133484, -35.72345352 ], [ 174.57133484, -35.72345352 ] ] ], [ [ [ 173.44332886, -35.64444351 ], [ 173.44444275, -35.64666748 ], [ 173.44221497, -35.64583206 ], [ 173.44332886, -35.64444351 ], [ 173.44332886, -35.64444351 ] ] ], [ [ [ 173.43333435, -35.62861252 ], [ 173.43222046, -35.6269455 ], [ 173.4347229, -35.62638855 ], [ 173.43333435, -35.62861252 ], [ 173.43333435, -35.62861252 ] ] ], [ [ [ 174.70582581, -35.56638718 ], [ 174.702224730000012, -35.56611252 ], [ 174.705001829999986, -35.5644455 ], [ 174.70582581, -35.56638718 ], [ 174.70582581, -35.56638718 ] ] ], [ [ [ 174.72332764, -35.54972076 ], [ 174.722030640000014, -35.5463829 ], [ 174.7250061, -35.54805374 ], [ 174.72332764, -35.54972076 ], [ 174.72332764, -35.54972076 ] ] ], [ [ [ 174.74694824, -35.48805618 ], [ 174.74507141, -35.48587799 ], [ 174.74873352, -35.48571014 ], [ 174.74694824, -35.48805618 ], [ 174.74694824, -35.48805618 ] ] ], [ [ [ 174.74357605, -35.4763031 ], [ 174.74694824, -35.47999954 ], [ 174.738616940000014, -35.49166489 ], [ 174.73226929, -35.4824295 ], [ 174.736389159999987, -35.47444534 ], [ 174.74357605, -35.4763031 ], [ 174.74357605, -35.4763031 ] ] ], [ [ [ 174.46083069, -35.47166824 ], [ 174.45698547, -35.4756546 ], [ 174.45423889, -35.47359848 ], [ 174.46083069, -35.47166824 ], [ 174.46083069, -35.47166824 ] ] ], [ [ [ 174.457778929999989, -35.46527863 ], [ 174.45443726, -35.46527863 ], [ 174.4569397, -35.46416855 ], [ 174.457778929999989, -35.46527863 ], [ 174.457778929999989, -35.46527863 ] ] ], [ [ [ 174.741149900000011, -35.44827271 ], [ 174.74583435, -35.46055603 ], [ 174.735000609999986, -35.47416687 ], [ 174.73554993, -35.46426773 ], [ 174.7305603, -35.44833374 ], [ 174.741149900000011, -35.44827271 ], [ 174.741149900000011, -35.44827271 ] ] ], [ [ [ 174.44863892, -35.43325806 ], [ 174.44541931, -35.43714905 ], [ 174.44242859, -35.4356842 ], [ 174.44863892, -35.43325806 ], [ 174.44863892, -35.43325806 ] ] ], [ [ [ 174.39805603, -35.43000031 ], [ 174.39944458, -35.43166733 ], [ 174.395278929999989, -35.43222046 ], [ 174.39805603, -35.43000031 ], [ 174.39805603, -35.43000031 ] ] ], [ [ [ 174.44389343, -35.43055725 ], [ 174.4430542, -35.42861176 ], [ 174.447494510000013, -35.42805481 ], [ 174.44389343, -35.43055725 ], [ 174.44389343, -35.43055725 ] ] ], [ [ [ 174.44781494, -35.42048645 ], [ 174.43722534, -35.42972183 ], [ 174.43989563, -35.42070389 ], [ 174.44781494, -35.42048645 ], [ 174.44781494, -35.42048645 ] ] ], [ [ [ 173.49465942, -35.42205048 ], [ 173.49287415, -35.41882706 ], [ 173.494644169999987, -35.41996002 ], [ 173.49465942, -35.42205048 ], [ 173.49465942, -35.42205048 ] ] ], [ [ [ 173.40209961, -35.41384506 ], [ 173.3997345, -35.41253662 ], [ 173.4021759, -35.4123497 ], [ 173.40209961, -35.41384506 ], [ 173.40209961, -35.41384506 ] ] ], [ [ [ 173.51832581, -35.39722061 ], [ 173.520278929999989, -35.4011116 ], [ 173.516387939999987, -35.39944458 ], [ 173.51832581, -35.39722061 ], [ 173.51832581, -35.39722061 ] ] ], [ [ [ 174.37210083, -35.38687515 ], [ 174.37249756, -35.38388824 ], [ 174.37416077, -35.38499832 ], [ 174.37210083, -35.38687515 ], [ 174.37210083, -35.38687515 ] ] ], [ [ [ 174.340271, -35.35527802 ], [ 174.33833313, -35.35361099 ], [ 174.34111023, -35.35222244 ], [ 174.340271, -35.35527802 ], [ 174.340271, -35.35527802 ] ] ], [ [ [ 173.58166504, -35.34999847 ], [ 173.58917236, -35.35138702 ], [ 173.582504269999987, -35.35472107 ], [ 173.58166504, -35.34999847 ], [ 173.58166504, -35.34999847 ] ] ], [ [ [ 174.3777771, -35.32805634 ], [ 174.37916565, -35.32916641 ], [ 174.37750244, -35.33055496 ], [ 174.3777771, -35.32805634 ], [ 174.3777771, -35.32805634 ] ] ], [ [ [ 173.52861023, -35.27083206 ], [ 173.527771, -35.26972198 ], [ 173.52999878, -35.26972198 ], [ 173.52861023, -35.27083206 ], [ 173.52861023, -35.27083206 ] ] ], [ [ [ 174.18444824, -35.24888992 ], [ 174.18666077, -35.25055695 ], [ 174.1847229, -35.25111008 ], [ 174.18444824, -35.24888992 ], [ 174.18444824, -35.24888992 ] ] ], [ [ [ 174.15904236, -35.22982788 ], [ 174.17565918, -35.23165131 ], [ 174.173614500000014, -35.23607635 ], [ 174.1582489, -35.23518372 ], [ 174.15904236, -35.22982788 ], [ 174.15904236, -35.22982788 ] ] ], [ [ [ 174.22193909, -35.2266655 ], [ 174.228607180000012, -35.23110962 ], [ 174.22055054, -35.22916794 ], [ 174.22193909, -35.2266655 ], [ 174.22193909, -35.2266655 ] ] ], [ [ [ 174.19429016, -35.21644211 ], [ 174.202774049999988, -35.22611237 ], [ 174.1946106, -35.23287582 ], [ 174.182006840000014, -35.22290039 ], [ 174.18695068, -35.21583176 ], [ 174.19429016, -35.21644211 ], [ 174.19429016, -35.21644211 ] ] ], [ [ [ 174.202774049999988, -35.2136116 ], [ 174.20582581, -35.2219429 ], [ 174.193603520000011, -35.21389008 ], [ 174.202774049999988, -35.2136116 ], [ 174.202774049999988, -35.2136116 ] ] ], [ [ [ 174.11471558, -35.20722198 ], [ 174.11582947, -35.20833206 ], [ 174.11416626, -35.21055603 ], [ 174.11471558, -35.20722198 ], [ 174.11471558, -35.20722198 ] ] ], [ [ [ 174.23431396, -35.20607758 ], [ 174.24494934, -35.22016525 ], [ 174.23838806, -35.21843719 ], [ 174.23747253, -35.22793198 ], [ 174.22647095, -35.2225914 ], [ 174.224517819999988, -35.21150208 ], [ 174.23431396, -35.20607758 ], [ 174.23431396, -35.20607758 ] ] ], [ [ [ 174.1000061, -35.20694351 ], [ 174.108886719999987, -35.21111298 ], [ 174.09750366, -35.21389008 ], [ 174.080276489999989, -35.21277618 ], [ 174.077774049999988, -35.20472336 ], [ 174.1000061, -35.20694351 ], [ 174.1000061, -35.20694351 ] ] ], [ [ [ 174.1027832, -35.20416641 ], [ 174.103607180000012, -35.20194626 ], [ 174.10444641, -35.20305634 ], [ 174.1027832, -35.20416641 ], [ 174.1027832, -35.20416641 ] ] ], [ [ [ 174.07943726, -35.20111084 ], [ 174.081390379999988, -35.20249939 ], [ 174.079162599999989, -35.20333481 ], [ 174.07943726, -35.20111084 ], [ 174.07943726, -35.20111084 ] ] ], [ [ [ 174.11166382, -35.20000076 ], [ 174.11305237, -35.20583344 ], [ 174.10945129000001, -35.20277786 ], [ 174.11166382, -35.20000076 ], [ 174.11166382, -35.20000076 ] ] ], [ [ [ 174.215271, -35.19916534 ], [ 174.22416687, -35.20472336 ], [ 174.20985413, -35.20573807 ], [ 174.215271, -35.19916534 ], [ 174.215271, -35.19916534 ] ] ], [ [ [ 174.049728390000013, -35.19833374 ], [ 174.052505489999987, -35.20027924 ], [ 174.045272829999988, -35.20138931 ], [ 174.049728390000013, -35.19833374 ], [ 174.049728390000013, -35.19833374 ] ] ], [ [ [ 174.11054993, -35.19833374 ], [ 174.107772829999988, -35.20055389 ], [ 174.1055603, -35.19916534 ], [ 174.11054993, -35.19833374 ], [ 174.11054993, -35.19833374 ] ] ], [ [ [ 174.008605960000011, -35.19805527 ], [ 174.00805664, -35.20000076 ], [ 174.00491333, -35.19906616 ], [ 174.008605960000011, -35.19805527 ], [ 174.008605960000011, -35.19805527 ] ] ], [ [ [ 174.21444702, -35.19555664 ], [ 174.206390379999988, -35.20249939 ], [ 174.204162599999989, -35.19638824 ], [ 174.21444702, -35.19555664 ], [ 174.21444702, -35.19555664 ] ] ], [ [ [ 174.082504269999987, -35.18611145 ], [ 174.0847168, -35.18777847 ], [ 174.083618159999986, -35.18888855 ], [ 174.082504269999987, -35.18611145 ], [ 174.082504269999987, -35.18611145 ] ] ], [ [ [ 174.085006709999988, -35.1827774 ], [ 174.08944702, -35.18638992 ], [ 174.083892819999988, -35.18388748 ], [ 174.085006709999988, -35.1827774 ], [ 174.085006709999988, -35.1827774 ] ] ], [ [ [ 174.079162599999989, -35.18249893 ], [ 174.081115720000014, -35.18444443 ], [ 174.078887939999987, -35.1847229 ], [ 174.079162599999989, -35.18249893 ], [ 174.079162599999989, -35.18249893 ] ] ], [ [ [ 174.085006709999988, -35.17972183 ], [ 174.08416748, -35.18166733 ], [ 174.082504269999987, -35.18000031 ], [ 174.085006709999988, -35.17972183 ], [ 174.085006709999988, -35.17972183 ] ] ], [ [ [ 174.33917236, -35.16888809 ], [ 174.33778381, -35.16755295 ], [ 174.33961487, -35.16766739 ], [ 174.33917236, -35.16888809 ], [ 174.33917236, -35.16888809 ] ] ], [ [ [ 174.34068298, -35.16584396 ], [ 174.33805847, -35.16583252 ], [ 174.33869934, -35.16366577 ], [ 174.34068298, -35.16584396 ], [ 174.34068298, -35.16584396 ] ] ], [ [ [ 173.98350525, -35.12156677 ], [ 173.98243713, -35.12057114 ], [ 173.983581539999989, -35.1195755 ], [ 173.98350525, -35.12156677 ], [ 173.98350525, -35.12156677 ] ] ], [ [ [ 174.05999756, -35.11000061 ], [ 174.06027222, -35.11360931 ], [ 174.05883789, -35.11116791 ], [ 174.05999756, -35.11000061 ], [ 174.05999756, -35.11000061 ] ] ], [ [ [ 173.96356201, -35.03900909 ], [ 173.961563109999986, -35.03801346 ], [ 173.96226501000001, -35.03695679 ], [ 173.96356201, -35.03900909 ], [ 173.96356201, -35.03900909 ] ] ], [ [ [ 173.9447937, -35.03010941 ], [ 173.94165039, -35.03278351 ], [ 173.94126892, -35.03010941 ], [ 173.9447937, -35.03010941 ], [ 173.9447937, -35.03010941 ] ] ], [ [ [ 173.93482971, -35.03091812 ], [ 173.932846070000011, -35.028862 ], [ 173.93521118000001, -35.02892685 ], [ 173.93482971, -35.03091812 ], [ 173.93482971, -35.03091812 ] ] ], [ [ [ 173.95866394, -35.03091812 ], [ 173.961563109999986, -35.03483963 ], [ 173.95054626000001, -35.03377914 ], [ 173.95866394, -35.03091812 ], [ 173.95866394, -35.03091812 ] ] ], [ [ [ 173.95100403, -35.0236969 ], [ 173.95184326, -35.028862 ], [ 173.94869995, -35.0273056 ], [ 173.95100403, -35.0236969 ], [ 173.95100403, -35.0236969 ] ] ], [ [ [ 173.754837040000012, -35.01564789 ], [ 173.75663757, -35.0216713 ], [ 173.7527771, -35.02082062 ], [ 173.754837040000012, -35.01564789 ], [ 173.754837040000012, -35.01564789 ] ] ], [ [ [ 173.87117004000001, -35.01528168 ], [ 173.86955261, -35.01416016 ], [ 173.871551509999989, -35.01397324 ], [ 173.87117004000001, -35.01528168 ], [ 173.87117004000001, -35.01528168 ] ] ], [ [ [ 173.555755620000014, -35.00296783 ], [ 173.55552673, -35.00141144 ], [ 173.55636597, -35.00097656 ], [ 173.555755620000014, -35.00296783 ], [ 173.555755620000014, -35.00296783 ] ] ], [ [ [ 173.969802859999987, -35.0015831 ], [ 173.96681213, -35.00127411 ], [ 173.969207759999989, -34.99891663 ], [ 173.969802859999987, -35.0015831 ], [ 173.969802859999987, -35.0015831 ] ] ], [ [ [ 173.2835083, -34.9946022 ], [ 173.28555298, -34.99499893 ], [ 173.28500366, -34.99666595 ], [ 173.2835083, -34.9946022 ], [ 173.2835083, -34.9946022 ] ] ], [ [ [ 173.2694397, -34.99333191 ], [ 173.270278929999989, -34.99666595 ], [ 173.26832581, -34.9944458 ], [ 173.2694397, -34.99333191 ], [ 173.2694397, -34.99333191 ] ] ], [ [ [ 173.297500609999986, -34.99222183 ], [ 173.30554199, -35.00317001 ], [ 173.29055786, -34.9980545 ], [ 173.297500609999986, -34.99222183 ], [ 173.297500609999986, -34.99222183 ] ] ], [ [ [ 173.86317444, -34.98765182 ], [ 173.86045837, -34.98650742 ], [ 173.863616940000014, -34.98527908 ], [ 173.86317444, -34.98765182 ], [ 173.86317444, -34.98765182 ] ] ], [ [ [ 173.95718384, -34.98606873 ], [ 173.950271609999987, -34.99166489 ], [ 173.951385499999986, -35.00111008 ], [ 173.94221497, -35.01194382 ], [ 173.928894039999989, -35.00444412 ], [ 173.94055176, -34.98638916 ], [ 173.95718384, -34.98606873 ], [ 173.95718384, -34.98606873 ] ] ], [ [ [ 173.43888855, -34.98055649 ], [ 173.43888855, -34.98277664 ], [ 173.43695068, -34.98138809 ], [ 173.43888855, -34.98055649 ], [ 173.43888855, -34.98055649 ] ] ], [ [ [ 173.9577179, -34.98296738 ], [ 173.95443726, -34.98138809 ], [ 173.95761108, -34.98036957 ], [ 173.9577179, -34.98296738 ], [ 173.9577179, -34.98296738 ] ] ], [ [ [ 173.972335820000012, -34.98194504 ], [ 173.972229, -34.97972107 ], [ 173.973556519999988, -34.98075485 ], [ 173.972335820000012, -34.98194504 ], [ 173.972335820000012, -34.98194504 ] ] ], [ [ [ 173.28083801, -34.97750092 ], [ 173.28527832, -34.98083496 ], [ 173.27861023, -34.99472046 ], [ 173.27194214, -34.99000168 ], [ 173.28083801, -34.97750092 ], [ 173.28083801, -34.97750092 ] ] ], [ [ [ 173.86778259, -34.97527695 ], [ 173.865005489999987, -34.98389053 ], [ 173.862091060000012, -34.97438049 ], [ 173.86778259, -34.97527695 ], [ 173.86778259, -34.97527695 ] ] ], [ [ [ 173.965271, -34.97249985 ], [ 173.96914673, -34.97473907 ], [ 173.96305847, -34.97833252 ], [ 173.965271, -34.97249985 ], [ 173.965271, -34.97249985 ] ] ], [ [ [ 173.94639587, -34.9719429 ], [ 173.95675659, -34.97382355 ], [ 173.944549560000013, -34.97750092 ], [ 173.94639587, -34.9719429 ], [ 173.94639587, -34.9719429 ] ] ], [ [ [ 173.94277954, -34.97166824 ], [ 173.93833923, -34.97222137 ], [ 173.941192629999989, -34.96968079 ], [ 173.94277954, -34.97166824 ], [ 173.94277954, -34.97166824 ] ] ], [ [ [ 173.25819397, -34.97597885 ], [ 173.261108400000012, -34.9663887 ], [ 173.263885499999986, -34.9663887 ], [ 173.25819397, -34.97597885 ], [ 173.25819397, -34.97597885 ] ] ], [ [ [ 173.25, -34.96166611 ], [ 173.24861145, -34.95722198 ], [ 173.25305176, -34.95639038 ], [ 173.25, -34.96166611 ], [ 173.25, -34.96166611 ] ] ], [ [ [ 173.773895259999989, -34.95472336 ], [ 173.78388977, -34.95944595 ], [ 173.78778076, -34.97055435 ], [ 173.77722168, -34.97055435 ], [ 173.773895259999989, -34.95472336 ], [ 173.773895259999989, -34.95472336 ] ] ], [ [ [ 173.76445007, -34.95111084 ], [ 173.770004269999987, -34.95333481 ], [ 173.768615720000014, -34.95527649 ], [ 173.76445007, -34.95111084 ], [ 173.76445007, -34.95111084 ] ] ], [ [ [ 173.25909424, -34.95363617 ], [ 173.25917053, -34.95083237 ], [ 173.26028442, -34.95249939 ], [ 173.25909424, -34.95363617 ], [ 173.25909424, -34.95363617 ] ] ], [ [ [ 173.69110107, -34.9452858 ], [ 173.69111633, -34.94666672 ], [ 173.688278200000013, -34.94474411 ], [ 173.69110107, -34.9452858 ], [ 173.69110107, -34.9452858 ] ] ], [ [ [ 173.65333557, -34.94277954 ], [ 173.65522766, -34.94596481 ], [ 173.65222168, -34.94527817 ], [ 173.65333557, -34.94277954 ], [ 173.65333557, -34.94277954 ] ] ], [ [ [ 173.5597229, -34.9094429 ], [ 173.56111145, -34.9113884 ], [ 173.55885315, -34.9118576 ], [ 173.5597229, -34.9094429 ], [ 173.5597229, -34.9094429 ] ] ], [ [ [ 173.42254639, -34.83016968 ], [ 173.420837400000011, -34.82944489 ], [ 173.42195129000001, -34.82777786 ], [ 173.42254639, -34.83016968 ], [ 173.42254639, -34.83016968 ] ] ], [ [ [ 173.37583923, -34.78499985 ], [ 173.38194275, -34.78833389 ], [ 173.37693787, -34.79000092 ], [ 173.37583923, -34.78499985 ], [ 173.37583923, -34.78499985 ] ] ], [ [ [ 173.36218262, -34.78314209 ], [ 173.363616940000014, -34.78527832 ], [ 173.360000609999986, -34.78472137 ], [ 173.36218262, -34.78314209 ], [ 173.36218262, -34.78314209 ] ] ], [ [ [ 173.358337400000011, -34.77944565 ], [ 173.361389159999987, -34.7808342 ], [ 173.358886719999987, -34.7836113 ], [ 173.358337400000011, -34.77944565 ], [ 173.358337400000011, -34.77944565 ] ] ], [ [ [ 173.397506709999988, -34.77388763 ], [ 173.395278929999989, -34.77833176 ], [ 173.39219666, -34.77355194 ], [ 173.397506709999988, -34.77388763 ], [ 173.397506709999988, -34.77388763 ] ] ], [ [ [ 173.34500122, -34.76694489 ], [ 173.35166931, -34.77361298 ], [ 173.34472656, -34.7705574 ], [ 173.34500122, -34.76694489 ], [ 173.34500122, -34.76694489 ] ] ], [ [ [ 173.15638733, -34.75416565 ], [ 173.15640259, -34.75751877 ], [ 173.15274048, -34.75695419 ], [ 173.15638733, -34.75416565 ], [ 173.15638733, -34.75416565 ] ] ], [ [ [ 172.890274049999988, -34.68500137 ], [ 172.893615720000014, -34.6875 ], [ 172.888610840000013, -34.6875 ], [ 172.890274049999988, -34.68500137 ], [ 172.890274049999988, -34.68500137 ] ] ], [ [ [ 172.798614500000014, -34.60805511 ], [ 172.796661379999989, -34.60583496 ], [ 172.79853821, -34.60459518 ], [ 172.798614500000014, -34.60805511 ], [ 172.798614500000014, -34.60805511 ] ] ], [ [ [ 172.956115720000014, -34.58194351 ], [ 172.955001829999986, -34.58388901 ], [ 172.954193120000014, -34.58200836 ], [ 172.956115720000014, -34.58194351 ], [ 172.956115720000014, -34.58194351 ] ] ], [ [ [ 172.913452150000012, -34.56146622 ], [ 172.913604740000011, -34.56246948 ], [ 172.90934753, -34.56328964 ], [ 172.913452150000012, -34.56146622 ], [ 172.913452150000012, -34.56146622 ] ] ], [ [ [ 172.94082642, -34.55444336 ], [ 172.94194031, -34.55722046 ], [ 172.93916321, -34.55749893 ], [ 172.94082642, -34.55444336 ], [ 172.94082642, -34.55444336 ] ] ], [ [ [ 172.8972168, -34.5295639 ], [ 172.89874268, -34.53068924 ], [ 172.897521970000014, -34.53131866 ], [ 172.8972168, -34.5295639 ], [ 172.8972168, -34.5295639 ] ] ], [ [ [ 172.956115720000014, -34.5055542 ], [ 172.96278381, -34.51194382 ], [ 172.954727170000012, -34.50722122 ], [ 172.956115720000014, -34.5055542 ], [ 172.956115720000014, -34.5055542 ] ] ], [ [ [ 172.94877625, -34.50155258 ], [ 172.949722290000011, -34.50444412 ], [ 172.94667053, -34.50222397 ], [ 172.94877625, -34.50155258 ], [ 172.94877625, -34.50155258 ] ] ], [ [ [ 172.91053772, -34.48409653 ], [ 172.90943909, -34.48166656 ], [ 172.91278076, -34.48055649 ], [ 172.91053772, -34.48409653 ], [ 172.91053772, -34.48409653 ] ] ], [ [ [ 172.65333557, -34.48166656 ], [ 172.652832030000013, -34.47867966 ], [ 172.65489197, -34.4802475 ], [ 172.65333557, -34.48166656 ], [ 172.65333557, -34.48166656 ] ] ], [ [ [ 172.64054871, -34.47333145 ], [ 172.63471985000001, -34.47360992 ], [ 172.63583374000001, -34.46416855 ], [ 172.64054871, -34.47333145 ], [ 172.64054871, -34.47333145 ] ] ], [ [ [ 173.01132202, -34.39270782 ], [ 173.03166199, -34.3983345 ], [ 173.04556274, -34.41222382 ], [ 173.02166748, -34.41860962 ], [ 173.01055908, -34.42444611 ], [ 173.00486755, -34.43872833 ], [ 173.00361633, -34.47333145 ], [ 173.006103520000011, -34.48138809 ], [ 173.000335690000014, -34.48408508 ], [ 173.00222778, -34.5019455 ], [ 173.00917053, -34.50888824 ], [ 173.00027466, -34.51638794 ], [ 172.987228390000013, -34.52000046 ], [ 172.97471619, -34.51777649 ], [ 172.96861267, -34.52222061 ], [ 172.976104740000011, -34.4980545 ], [ 172.96444702, -34.49472046 ], [ 172.951660159999989, -34.50222397 ], [ 172.947494510000013, -34.49388885 ], [ 172.93722534, -34.50694275 ], [ 172.922500609999986, -34.50333405 ], [ 172.93499756, -34.49194336 ], [ 172.93051147, -34.48440933 ], [ 172.923889159999987, -34.48777771 ], [ 172.914276120000011, -34.48298264 ], [ 172.91723633, -34.47789383 ], [ 172.90527344, -34.47722244 ], [ 172.91166687, -34.48833466 ], [ 172.92416382, -34.49139023 ], [ 172.90834045, -34.50055695 ], [ 172.92416382, -34.51277924 ], [ 172.91000366, -34.52000046 ], [ 172.90499878, -34.5336113 ], [ 172.89694214, -34.52277756 ], [ 172.8833313, -34.51499939 ], [ 172.896392819999988, -34.52861023 ], [ 172.890274049999988, -34.5391655 ], [ 172.87832642, -34.53972244 ], [ 172.887222290000011, -34.54666519 ], [ 172.90055847, -34.54388809 ], [ 172.918396, -34.55244064 ], [ 172.916107180000012, -34.54388809 ], [ 172.92778015, -34.52916718 ], [ 172.93943787, -34.53555679 ], [ 172.93278503, -34.54639053 ], [ 172.93278503, -34.55555725 ], [ 172.921386719999987, -34.55611038 ], [ 172.90638733, -34.56194305 ], [ 172.9200592, -34.56847763 ], [ 172.923339840000011, -34.56027603 ], [ 172.9375, -34.56611252 ], [ 172.92999268, -34.58055496 ], [ 172.93861389, -34.57249832 ], [ 172.95083618000001, -34.55083466 ], [ 172.96278381, -34.5577774 ], [ 172.97361755, -34.57194519 ], [ 172.96833801, -34.57694626 ], [ 172.9569397, -34.57583237 ], [ 172.956390379999988, -34.58611298 ], [ 172.97193909, -34.58166504 ], [ 172.96221924, -34.5988884 ], [ 172.97332764, -34.5941658 ], [ 172.97416687, -34.60222244 ], [ 172.96833801, -34.61249924 ], [ 172.97535706, -34.61598969 ], [ 172.985839840000011, -34.59972382 ], [ 172.983886719999987, -34.58638763 ], [ 172.9859314, -34.57051849 ], [ 172.97528076, -34.56388855 ], [ 172.95950317, -34.54743576 ], [ 172.955276489999989, -34.53472137 ], [ 172.95944214, -34.5280571 ], [ 172.97027588, -34.52583313 ], [ 172.98574829, -34.52812195 ], [ 172.99055481, -34.53416824 ], [ 172.99110413, -34.54722214 ], [ 173.00332642, -34.5988884 ], [ 173.018890379999988, -34.63972092 ], [ 173.02915955, -34.66083527 ], [ 173.05860901, -34.70277786 ], [ 173.068603520000011, -34.70694351 ], [ 173.077774049999988, -34.71861267 ], [ 173.09222412, -34.7211113 ], [ 173.0930481, -34.72583389 ], [ 173.110839840000011, -34.73166656 ], [ 173.11694336, -34.73694611 ], [ 173.12388611, -34.75305557 ], [ 173.14054871, -34.76750183 ], [ 173.15611267, -34.76638794 ], [ 173.15527344, -34.77305603 ], [ 173.14694214, -34.77750015 ], [ 173.15388489, -34.78666687 ], [ 173.166381840000014, -34.78888702 ], [ 173.175277709999989, -34.80277634 ], [ 173.163711549999988, -34.80746078 ], [ 173.172225950000012, -34.82027817 ], [ 173.166381840000014, -34.82666779 ], [ 173.15055847, -34.82138824 ], [ 173.14741516, -34.81163025 ], [ 173.137771609999987, -34.8125 ], [ 173.13221741000001, -34.80749893 ], [ 173.13250732, -34.79722214 ], [ 173.12167358, -34.77694321 ], [ 173.109161379999989, -34.77555466 ], [ 173.10627747, -34.77028656 ], [ 173.10221863000001, -34.78111267 ], [ 173.11833191, -34.80138779 ], [ 173.1222229, -34.81777954 ], [ 173.137496950000013, -34.82583237 ], [ 173.1446991, -34.82130051 ], [ 173.1555481, -34.82611084 ], [ 173.15834045, -34.84277725 ], [ 173.18666077, -34.86500168 ], [ 173.21638489, -34.87749863 ], [ 173.22805786, -34.8805542 ], [ 173.268615720000014, -34.88388824 ], [ 173.28083801, -34.89333344 ], [ 173.27888489, -34.90555573 ], [ 173.267776489999989, -34.91860962 ], [ 173.25193787, -34.93111038 ], [ 173.238616940000014, -34.9355545 ], [ 173.24082947, -34.94777679 ], [ 173.23693848, -34.95833206 ], [ 173.24777222, -34.95750046 ], [ 173.24777222, -34.96694565 ], [ 173.23805237, -34.96611023 ], [ 173.24472046, -34.97694397 ], [ 173.23167419, -34.98055649 ], [ 173.237503049999987, -34.98500061 ], [ 173.233337400000011, -34.99139023 ], [ 173.24159241000001, -34.995121 ], [ 173.2583313, -34.99277878 ], [ 173.25250244, -34.98555374 ], [ 173.26333618000001, -34.9738884 ], [ 173.271850590000014, -34.97734833 ], [ 173.266113280000013, -34.99555588 ], [ 173.26916504, -34.9991684 ], [ 173.29083252, -34.9991684 ], [ 173.303939820000011, -35.00577164 ], [ 173.302505489999987, -34.99166489 ], [ 173.28971863000001, -34.99416733 ], [ 173.28138733, -34.99166489 ], [ 173.29438782, -34.97409821 ], [ 173.28833008, -34.9683342 ], [ 173.296661379999989, -34.96166611 ], [ 173.3041687, -34.96333313 ], [ 173.31138611, -34.95277786 ], [ 173.30999756, -34.9719429 ], [ 173.31694031, -34.97555542 ], [ 173.33305359, -34.96500015 ], [ 173.33444214, -34.95444489 ], [ 173.318603520000011, -34.91666794 ], [ 173.31111145, -34.9030571 ], [ 173.30055237, -34.89805603 ], [ 173.295837400000011, -34.8805542 ], [ 173.289993290000012, -34.8769455 ], [ 173.28611755, -34.86333466 ], [ 173.29055786, -34.85777664 ], [ 173.297775269999988, -34.86166763 ], [ 173.31388855, -34.86138916 ], [ 173.33911133, -34.85663986 ], [ 173.37055969, -34.84666824 ], [ 173.387222290000011, -34.83611298 ], [ 173.395278929999989, -34.82583237 ], [ 173.39694214, -34.81694412 ], [ 173.38555908, -34.81222153 ], [ 173.38555908, -34.80027771 ], [ 173.39416504, -34.80083466 ], [ 173.395278929999989, -34.78194427 ], [ 173.413604740000011, -34.79694366 ], [ 173.40722656, -34.80500031 ], [ 173.417770389999987, -34.81833267 ], [ 173.41027832, -34.82166672 ], [ 173.41139221, -34.83187485 ], [ 173.421081539999989, -34.83357239 ], [ 173.42944336, -34.82444382 ], [ 173.4352417, -34.82798386 ], [ 173.45106506, -34.82409286 ], [ 173.451416020000011, -34.83213425 ], [ 173.44154358, -34.83304977 ], [ 173.46066284, -34.84715271 ], [ 173.47055054, -34.84916687 ], [ 173.46080017, -34.85305786 ], [ 173.461395259999989, -34.86000061 ], [ 173.4375, -34.86611176 ], [ 173.41333008, -34.88138962 ], [ 173.39778137, -34.88194275 ], [ 173.39778137, -34.8777771 ], [ 173.37861633, -34.87666702 ], [ 173.36917114, -34.89638901 ], [ 173.3722229, -34.9169426 ], [ 173.37805176, -34.93333435 ], [ 173.39416504, -34.95666504 ], [ 173.41055298, -34.9719429 ], [ 173.43028259, -34.98472214 ], [ 173.44055176, -34.98194504 ], [ 173.452346799999987, -34.98363495 ], [ 173.45944214, -34.99083328 ], [ 173.47250366, -34.99416733 ], [ 173.47471619, -34.98749924 ], [ 173.495742799999988, -34.9910202 ], [ 173.49916077, -34.98666763 ], [ 173.515274049999988, -34.98972321 ], [ 173.52638245, -34.98027802 ], [ 173.52749634, -34.98722076 ], [ 173.5375061, -34.98944473 ], [ 173.53666687, -35.0 ], [ 173.558395389999987, -34.99915314 ], [ 173.55360413, -34.98166656 ], [ 173.54194641, -34.97499847 ], [ 173.53808594, -34.98704147 ], [ 173.52749634, -34.97805405 ], [ 173.53833008, -34.96861267 ], [ 173.52999878, -34.96472168 ], [ 173.52471924, -34.94944382 ], [ 173.53111267, -34.9383316 ], [ 173.555145259999989, -34.92879868 ], [ 173.55993652, -34.9134407 ], [ 173.56889343, -34.92750168 ], [ 173.57562256, -34.93053818 ], [ 173.572494510000013, -34.94083405 ], [ 173.577774049999988, -34.94444275 ], [ 173.6000061, -34.9319458 ], [ 173.60694885, -34.93861008 ], [ 173.62167358, -34.93888855 ], [ 173.62487793, -34.95294189 ], [ 173.639999390000014, -34.95249939 ], [ 173.64054871, -34.96444321 ], [ 173.654541020000011, -34.96691513 ], [ 173.66166687, -34.95888901 ], [ 173.669998170000014, -34.96146011 ], [ 173.681396479999989, -34.94666672 ], [ 173.70083618000001, -34.95111084 ], [ 173.706115720000014, -34.95500183 ], [ 173.70304871, -34.96722412 ], [ 173.715484620000012, -34.98265839 ], [ 173.70976257, -34.99049377 ], [ 173.71333313, -34.99555588 ], [ 173.73666382, -34.99250031 ], [ 173.75444031, -34.99777603 ], [ 173.75790405, -35.00565338 ], [ 173.74945068, -35.00694275 ], [ 173.733734129999988, -35.00095367 ], [ 173.730270389999987, -35.01139069 ], [ 173.73658752, -35.0098114 ], [ 173.749221799999987, -35.01535416 ], [ 173.741394039999989, -35.0363884 ], [ 173.728881840000014, -35.0419426 ], [ 173.728607180000012, -35.04777908 ], [ 173.71388245, -35.04472351 ], [ 173.707778929999989, -35.05583191 ], [ 173.71861267, -35.0605545 ], [ 173.71472168, -35.06583405 ], [ 173.72166443, -35.07444382 ], [ 173.733337400000011, -35.07777786 ], [ 173.7444458, -35.05749893 ], [ 173.74110413, -35.04888916 ], [ 173.753570559999986, -35.03775406 ], [ 173.76072693, -35.04901123 ], [ 173.76832581, -35.04916763 ], [ 173.75852966, -35.03427505 ], [ 173.763900760000013, -35.03200531 ], [ 173.7749939, -35.03775406 ], [ 173.77333069, -35.02083206 ], [ 173.75527954, -35.01499939 ], [ 173.76753235000001, -35.00450897 ], [ 173.77742004000001, -35.00767136 ], [ 173.789382929999988, -35.00199127 ], [ 173.80091858, -35.00128937 ], [ 173.81195068, -34.99139023 ], [ 173.81639099, -34.99777603 ], [ 173.81777954, -34.98583221 ], [ 173.82809448, -35.00149536 ], [ 173.84367371, -34.99376297 ], [ 173.86193848, -34.99027634 ], [ 173.84428406, -34.99814987 ], [ 173.853607180000012, -35.00166702 ], [ 173.853881840000014, -35.01333237 ], [ 173.86372375, -35.02109146 ], [ 173.87442017, -35.01671219 ], [ 173.88262939, -35.02169037 ], [ 173.89582825, -35.00860977 ], [ 173.8999939, -35.02000046 ], [ 173.916381840000014, -35.0288887 ], [ 173.91339111, -35.03449631 ], [ 173.94139099, -35.05416489 ], [ 173.92756653, -35.06050873 ], [ 173.9402771, -35.09722137 ], [ 173.93556213, -35.10416794 ], [ 173.94389343, -35.10277939 ], [ 173.95661926, -35.10915756 ], [ 173.96760559, -35.11956024 ], [ 173.97721863000001, -35.11639023 ], [ 173.98083496000001, -35.12638855 ], [ 173.987777709999989, -35.11722183 ], [ 173.99610901, -35.11527634 ], [ 174.00054932, -35.12138748 ], [ 174.012771609999987, -35.12111282 ], [ 174.016113280000013, -35.11555481 ], [ 174.043609620000012, -35.11611176 ], [ 174.051116940000014, -35.1202774 ], [ 174.05722046, -35.11472321 ], [ 174.08166504, -35.11527634 ], [ 174.1000061, -35.14416504 ], [ 174.09750366, -35.14944458 ], [ 174.11528015, -35.15555573 ], [ 174.12750244, -35.15527725 ], [ 174.12944031, -35.16222382 ], [ 174.12193298, -35.17218781 ], [ 174.11166382, -35.16777802 ], [ 174.104003909999989, -35.17525864 ], [ 174.09634399, -35.1697464 ], [ 174.085006709999988, -35.17805481 ], [ 174.07258606, -35.18056107 ], [ 174.066909790000011, -35.19401932 ], [ 174.0606842, -35.18948746 ], [ 174.0559845, -35.16759109 ], [ 174.04550171, -35.15543747 ], [ 174.04795837, -35.14805603 ], [ 174.03778076, -35.15805435 ], [ 174.035491940000014, -35.16579437 ], [ 174.01832581, -35.14944458 ], [ 174.017227170000012, -35.14305496 ], [ 174.00854492, -35.13995743 ], [ 174.004364009999989, -35.14864349 ], [ 174.00065613000001, -35.14393234 ], [ 173.987503049999987, -35.14749908 ], [ 173.98306274, -35.15611267 ], [ 173.99583435, -35.16027832 ], [ 174.00500488, -35.15833282 ], [ 174.0075531, -35.17145538 ], [ 174.01983643, -35.17234039 ], [ 174.017929079999988, -35.18007278 ], [ 174.03289795, -35.18046188 ], [ 174.03125, -35.18678665 ], [ 174.040924069999988, -35.18679047 ], [ 174.05023193, -35.19346237 ], [ 174.03250122, -35.19666672 ], [ 174.01557922, -35.18892288 ], [ 174.00280762, -35.19729996 ], [ 173.97540283, -35.21107864 ], [ 174.0027771, -35.20694351 ], [ 174.01171875, -35.21188736 ], [ 174.01364136, -35.20713425 ], [ 174.0365448, -35.20786667 ], [ 174.04829407, -35.20385742 ], [ 174.052948, -35.21123505 ], [ 174.06500244, -35.21472168 ], [ 174.05833435, -35.2238884 ], [ 174.05961609, -35.23109436 ], [ 174.07139587, -35.23749924 ], [ 174.076660159999989, -35.23583221 ], [ 174.082778929999989, -35.24777603 ], [ 174.080276489999989, -35.25388718 ], [ 174.085006709999988, -35.26555634 ], [ 174.08055115, -35.27472305 ], [ 174.10333252, -35.2844429 ], [ 174.09944153, -35.29722214 ], [ 174.125, -35.31277847 ], [ 174.10795593, -35.32824707 ], [ 174.12249756, -35.33166504 ], [ 174.12304688, -35.32185364 ], [ 174.137191769999987, -35.31670761 ], [ 174.139038090000014, -35.33129501 ], [ 174.15116882, -35.33050156 ], [ 174.142227170000012, -35.32083511 ], [ 174.158691409999989, -35.31259155 ], [ 174.167343140000014, -35.31483078 ], [ 174.178894039999989, -35.3105545 ], [ 174.18888855, -35.31777954 ], [ 174.2069397, -35.32055664 ], [ 174.217453, -35.3272438 ], [ 174.21635437, -35.33407974 ], [ 174.22444153, -35.33194351 ], [ 174.206115720000014, -35.3125 ], [ 174.19528198, -35.31222153 ], [ 174.18888855, -35.30222321 ], [ 174.175277709999989, -35.30472183 ], [ 174.17070007, -35.29621124 ], [ 174.161743159999986, -35.30530167 ], [ 174.15611267, -35.30250168 ], [ 174.14428711, -35.30883026 ], [ 174.132354740000011, -35.30685043 ], [ 174.12693787, -35.31083298 ], [ 174.115005489999987, -35.30361176 ], [ 174.124069209999988, -35.30096436 ], [ 174.11309814, -35.28505325 ], [ 174.12973022, -35.28056335 ], [ 174.13806152, -35.29083252 ], [ 174.145004269999987, -35.28472137 ], [ 174.13548279, -35.28117371 ], [ 174.12889099, -35.26694489 ], [ 174.12236023, -35.26877594 ], [ 174.11192322, -35.25102997 ], [ 174.12257385, -35.24149704 ], [ 174.12333679, -35.2472229 ], [ 174.13555908, -35.25222397 ], [ 174.13194275, -35.25779724 ], [ 174.14582825, -35.25944519 ], [ 174.15861511, -35.26477432 ], [ 174.16786194, -35.27672195 ], [ 174.17636108, -35.2726593 ], [ 174.172225950000012, -35.26618195 ], [ 174.17778015, -35.26277924 ], [ 174.19821167, -35.27352142 ], [ 174.20585632, -35.28374863 ], [ 174.211441040000011, -35.28100967 ], [ 174.20454407, -35.27279282 ], [ 174.21694946, -35.27027893 ], [ 174.20832825, -35.26166534 ], [ 174.20443726, -35.25138855 ], [ 174.22389221, -35.2452774 ], [ 174.25416565, -35.26055527 ], [ 174.26055908, -35.25749969 ], [ 174.24583435, -35.24611282 ], [ 174.25027466, -35.23527908 ], [ 174.25958252, -35.23637772 ], [ 174.25639343, -35.2219429 ], [ 174.26399231, -35.21733856 ], [ 174.271240229999989, -35.22202301 ], [ 174.268890379999988, -35.23027802 ], [ 174.294418330000013, -35.21059418 ], [ 174.28942871000001, -35.20636368 ], [ 174.30438232, -35.19950485 ], [ 174.30499268, -35.19277954 ], [ 174.292495730000013, -35.1930542 ], [ 174.29333496000001, -35.18638992 ], [ 174.3125, -35.17916489 ], [ 174.32444763, -35.18305588 ], [ 174.33082581, -35.16944504 ], [ 174.33332825, -35.18027878 ], [ 174.340301509999989, -35.18749237 ], [ 174.327774049999988, -35.19833374 ], [ 174.32000732, -35.19527817 ], [ 174.31777954, -35.20277786 ], [ 174.30749512, -35.20888901 ], [ 174.321090700000013, -35.21353149 ], [ 174.30833435, -35.21583176 ], [ 174.29098511, -35.23422241 ], [ 174.31277466, -35.23638916 ], [ 174.30221558, -35.2472229 ], [ 174.29241943, -35.2510376 ], [ 174.30198669, -35.25337601 ], [ 174.30690002, -35.24697495 ], [ 174.32588196, -35.24781036 ], [ 174.32214355, -35.25508881 ], [ 174.30258179, -35.25426102 ], [ 174.29290771, -35.26451111 ], [ 174.2902832, -35.27416611 ], [ 174.30303955, -35.28742599 ], [ 174.30917358, -35.30416489 ], [ 174.320922849999988, -35.30620956 ], [ 174.32333374000001, -35.3152771 ], [ 174.33984375, -35.32549286 ], [ 174.356384279999986, -35.32305527 ], [ 174.36862183, -35.325634 ], [ 174.374786379999989, -35.31932068 ], [ 174.37306213, -35.33333206 ], [ 174.35142517, -35.33262253 ], [ 174.35147095, -35.34240723 ], [ 174.36035156, -35.34772491 ], [ 174.37683105, -35.34521866 ], [ 174.38137817, -35.36439133 ], [ 174.37110901, -35.36888885 ], [ 174.37788391, -35.37696457 ], [ 174.37042236, -35.3788147 ], [ 174.35702515, -35.37260437 ], [ 174.36073303, -35.35771561 ], [ 174.355148320000012, -35.34863663 ], [ 174.33828735, -35.35026169 ], [ 174.33662415, -35.34166718 ], [ 174.32647705, -35.3422699 ], [ 174.31639099, -35.33333206 ], [ 174.30999756, -35.33472061 ], [ 174.328887939999987, -35.35111237 ], [ 174.34194946, -35.36527634 ], [ 174.33944702, -35.37527847 ], [ 174.35333252, -35.38472366 ], [ 174.34432983, -35.38746262 ], [ 174.354721070000011, -35.39416504 ], [ 174.35305786, -35.40416718 ], [ 174.358612060000013, -35.41527939 ], [ 174.37333679, -35.41222382 ], [ 174.37583923, -35.42277908 ], [ 174.36471558, -35.42305374 ], [ 174.360839840000011, -35.43166733 ], [ 174.37110901, -35.43777847 ], [ 174.395004269999987, -35.43055725 ], [ 174.39694214, -35.44166565 ], [ 174.40805054, -35.4430542 ], [ 174.42304993, -35.43416595 ], [ 174.416519169999987, -35.42789841 ], [ 174.43305969, -35.42805481 ], [ 174.428085329999988, -35.43832779 ], [ 174.42721558, -35.45222092 ], [ 174.43611145, -35.46111298 ], [ 174.453887939999987, -35.46722412 ], [ 174.44944763, -35.4711113 ], [ 174.45555115, -35.48972321 ], [ 174.47277832, -35.48833466 ], [ 174.46972656, -35.50416565 ], [ 174.481384279999986, -35.51444626 ], [ 174.461395259999989, -35.50833511 ], [ 174.45195007, -35.51805496 ], [ 174.46611023, -35.51222229 ], [ 174.460006709999988, -35.52972412 ], [ 174.46833801, -35.53805542 ], [ 174.4750061, -35.55555725 ], [ 174.485000609999986, -35.55500031 ], [ 174.49749756, -35.56111145 ], [ 174.50238037, -35.553936 ], [ 174.51481628, -35.558815 ], [ 174.52944946, -35.57805634 ], [ 174.53778076, -35.57944489 ], [ 174.538299560000013, -35.59646606 ], [ 174.543884279999986, -35.59916687 ], [ 174.533554079999988, -35.60486984 ], [ 174.539672849999988, -35.61422348 ], [ 174.529083250000014, -35.61177444 ], [ 174.53163147, -35.62189865 ], [ 174.542221070000011, -35.61777878 ], [ 174.54304504000001, -35.63182068 ], [ 174.53388977, -35.64277649 ], [ 174.51445007, -35.6277771 ], [ 174.5055542, -35.6297226 ], [ 174.49777222, -35.63805389 ], [ 174.48554993, -35.63750076 ], [ 174.49313354, -35.64323044 ], [ 174.50250244, -35.64055634 ], [ 174.51055908, -35.6297226 ], [ 174.513885499999986, -35.63249969 ], [ 174.50193787, -35.64916611 ], [ 174.516662599999989, -35.65472412 ], [ 174.511108400000012, -35.65805435 ], [ 174.50222778, -35.67361069 ], [ 174.50805664, -35.67555618 ], [ 174.51805115, -35.70527649 ], [ 174.52452087, -35.71370316 ], [ 174.511245730000013, -35.71482086 ], [ 174.50527954, -35.72083282 ], [ 174.516662599999989, -35.72055435 ], [ 174.52082825, -35.71527863 ], [ 174.53413391, -35.71521378 ], [ 174.54269409, -35.71035767 ], [ 174.547500609999986, -35.71972275 ], [ 174.526306150000011, -35.72403336 ], [ 174.54083252, -35.73694611 ], [ 174.549728390000013, -35.73527908 ], [ 174.539688109999986, -35.72437286 ], [ 174.550460820000012, -35.71693039 ], [ 174.56277466, -35.7136116 ], [ 174.56944275, -35.71805573 ], [ 174.55387878, -35.73042679 ], [ 174.563552859999987, -35.74528885 ], [ 174.551391599999988, -35.74666595 ], [ 174.56111145, -35.76222229 ], [ 174.55499268, -35.76416779 ], [ 174.55778503, -35.77694321 ], [ 174.548889159999987, -35.78694534 ], [ 174.55749512, -35.81277847 ], [ 174.56916809, -35.83194351 ], [ 174.579162599999989, -35.83833313 ], [ 174.59083557, -35.8516655 ], [ 174.59175110000001, -35.85768127 ], [ 174.57818604, -35.85990524 ], [ 174.56381226, -35.85635757 ], [ 174.555877689999988, -35.86088562 ], [ 174.533569340000014, -35.85498047 ], [ 174.53036499000001, -35.86196136 ], [ 174.52444458, -35.85083389 ], [ 174.536605830000013, -35.84363556 ], [ 174.525588989999989, -35.82513428 ], [ 174.502441409999989, -35.83055878 ], [ 174.49249268, -35.82027817 ], [ 174.50389099, -35.81388855 ], [ 174.497009279999986, -35.79680634 ], [ 174.48666382, -35.7863884 ], [ 174.48083496000001, -35.79360962 ], [ 174.457229610000013, -35.79249954 ], [ 174.46722412, -35.79027939 ], [ 174.46028137, -35.78472137 ], [ 174.479995730000013, -35.77750015 ], [ 174.46916199, -35.77000046 ], [ 174.452499390000014, -35.77222061 ], [ 174.44778442, -35.77972412 ], [ 174.43167114, -35.77972412 ], [ 174.43251038, -35.78504562 ], [ 174.446105960000011, -35.79499817 ], [ 174.43159485000001, -35.7943573 ], [ 174.41416931, -35.77999878 ], [ 174.40444946, -35.7788887 ], [ 174.385955810000013, -35.76091385 ], [ 174.37690735000001, -35.7624054 ], [ 174.368240359999987, -35.77354431 ], [ 174.356521609999987, -35.77346039 ], [ 174.356109620000012, -35.75583267 ], [ 174.34638977, -35.73611069 ], [ 174.35069275, -35.75804901 ], [ 174.34764099, -35.76402664 ], [ 174.33694458, -35.75694275 ], [ 174.329162599999989, -35.76833344 ], [ 174.33166504, -35.78694534 ], [ 174.34056091, -35.78972244 ], [ 174.33305359, -35.79861069 ], [ 174.34194946, -35.80722046 ], [ 174.3347168, -35.81361008 ], [ 174.34333801, -35.81972122 ], [ 174.34500122, -35.8330574 ], [ 174.35803223, -35.81832886 ], [ 174.35945129000001, -35.80472183 ], [ 174.354995730000013, -35.80277634 ], [ 174.36195374, -35.78970718 ], [ 174.36972046, -35.78861237 ], [ 174.37666321, -35.79611206 ], [ 174.36997986, -35.81404114 ], [ 174.390274049999988, -35.81666565 ], [ 174.39880371000001, -35.81467438 ], [ 174.41383362, -35.82222366 ], [ 174.43583679, -35.82888794 ], [ 174.44389343, -35.82694626 ], [ 174.45443726, -35.8180542 ], [ 174.47361755, -35.83611298 ], [ 174.49749756, -35.83499908 ], [ 174.50305176, -35.83722305 ], [ 174.49833679, -35.84527588 ], [ 174.47833252, -35.86194611 ], [ 174.46864319, -35.88000488 ], [ 174.46221924, -35.9058342 ], [ 174.46138, -35.92359161 ], [ 174.46444702, -35.94916534 ], [ 174.47166443, -35.97055435 ], [ 174.481109620000012, -35.99027634 ], [ 174.482223510000011, -36.0 ], [ 174.49028015, -36.01305389 ], [ 174.48432922, -35.99250031 ], [ 174.49610901, -36.01499939 ], [ 174.50811768, -36.02964401 ], [ 174.51756287, -36.03131485 ], [ 174.54167175, -36.04888916 ], [ 174.55555725, -36.04499817 ], [ 174.5696106, -36.04829407 ], [ 174.57244873, -36.04320908 ], [ 174.58416748, -36.0419426 ], [ 174.59057617, -36.0472641 ], [ 174.59361267, -36.07333374 ], [ 174.59861755, -36.08059692 ], [ 174.589523320000012, -36.08419418 ], [ 174.59117126000001, -36.09815216 ], [ 174.59666443, -36.10847473 ], [ 174.590332030000013, -36.11852646 ], [ 174.58221436, -36.11045074 ], [ 174.57463074, -36.11971283 ], [ 174.5821228, -36.1255188 ], [ 174.59524536, -36.12026596 ], [ 174.60151672, -36.11002731 ], [ 174.60305786, -36.09488678 ], [ 174.619506840000014, -36.12182999 ], [ 174.61094666, -36.12446976 ], [ 174.61122131, -36.1352272 ], [ 174.59849548, -36.13909531 ], [ 174.60180664, -36.1435051 ], [ 174.58268738000001, -36.14934158 ], [ 174.58930969, -36.15815735 ], [ 174.58314514, -36.17086792 ], [ 174.573440549999987, -36.16841507 ], [ 174.56723022, -36.1811409 ], [ 174.557525629999986, -36.17871094 ], [ 174.531875609999986, -36.18663406 ], [ 174.53198242, -36.19737625 ], [ 174.522399900000011, -36.20570755 ], [ 174.52890015, -36.21446228 ], [ 174.509567260000011, -36.22036743 ], [ 174.51280212, -36.22473526 ], [ 174.49987793, -36.22865677 ], [ 174.490173340000013, -36.22624207 ], [ 174.48692322, -36.23255539 ], [ 174.47721863000001, -36.23013306 ], [ 174.4694519, -36.25694275 ], [ 174.46388245, -36.26027679 ], [ 174.45555115, -36.25138855 ], [ 174.42416382, -36.27249908 ], [ 174.41471863000001, -36.27361298 ], [ 174.39489746000001, -36.2888298 ], [ 174.383605960000011, -36.28610992 ], [ 174.38528442, -36.27599335 ], [ 174.374359129999988, -36.27593994 ], [ 174.354003909999989, -36.29801178 ], [ 174.35668945, -36.30938339 ], [ 174.33985901, -36.31718445 ], [ 174.32333374000001, -36.30833435 ], [ 174.31138611, -36.31305695 ], [ 174.30166626, -36.29305649 ], [ 174.28971863000001, -36.28944397 ], [ 174.28582764, -36.29611206 ], [ 174.27471924, -36.28472137 ], [ 174.270324710000011, -36.26142502 ], [ 174.291107180000012, -36.24750137 ], [ 174.3097229, -36.24361038 ], [ 174.32194519, -36.25833511 ], [ 174.32325745, -36.26545334 ], [ 174.33287048, -36.26286316 ], [ 174.34693909, -36.26499939 ], [ 174.35083008, -36.27576447 ], [ 174.3589325, -36.27176666 ], [ 174.34611511, -36.25888824 ], [ 174.333618159999986, -36.25777817 ], [ 174.328338620000011, -36.24472046 ], [ 174.32305908, -36.24888992 ], [ 174.32087708, -36.23804474 ], [ 174.328887939999987, -36.22694397 ], [ 174.33721924, -36.22638702 ], [ 174.33999634, -36.21944427 ], [ 174.3527832, -36.21166611 ], [ 174.36332703, -36.21166611 ], [ 174.37527466, -36.19472122 ], [ 174.375, -36.17944336 ], [ 174.396133420000012, -36.17234802 ], [ 174.3911438, -36.17034912 ], [ 174.37333679, -36.17777634 ], [ 174.37167358, -36.16944504 ], [ 174.391387939999987, -36.15750122 ], [ 174.386108400000012, -36.13472366 ], [ 174.3833313, -36.13944626 ], [ 174.38528442, -36.1566658 ], [ 174.371887210000011, -36.1647644 ], [ 174.36305237, -36.20222092 ], [ 174.358184810000012, -36.20659256 ], [ 174.335144039999989, -36.21090698 ], [ 174.32305908, -36.21611023 ], [ 174.31555176, -36.22611237 ], [ 174.30917358, -36.21583176 ], [ 174.31555176, -36.20999908 ], [ 174.31338501, -36.20365143 ], [ 174.296661379999989, -36.21222305 ], [ 174.29199219, -36.20508575 ], [ 174.265274049999988, -36.18444443 ], [ 174.277771, -36.18000031 ], [ 174.28916931, -36.18138885 ], [ 174.2819519, -36.17388916 ], [ 174.26896667, -36.17777252 ], [ 174.26167297, -36.17305374 ], [ 174.25500488, -36.18416595 ], [ 174.235000609999986, -36.17083359 ], [ 174.23713684, -36.15981293 ], [ 174.232772829999988, -36.1558342 ], [ 174.237777709999989, -36.13861084 ], [ 174.25138855, -36.125 ], [ 174.241561890000014, -36.12621307 ], [ 174.23101807, -36.13400269 ], [ 174.22561646, -36.15962219 ], [ 174.21638489, -36.14777756 ], [ 174.22250366, -36.13444519 ], [ 174.22027588, -36.1269455 ], [ 174.20582581, -36.13805389 ], [ 174.19944763, -36.12833405 ], [ 174.18916321, -36.14277649 ], [ 174.199722290000011, -36.14694595 ], [ 174.1875, -36.1538887 ], [ 174.19555664, -36.16722107 ], [ 174.20942688, -36.15839386 ], [ 174.228881840000014, -36.17055511 ], [ 174.22639465, -36.17694473 ], [ 174.236114500000014, -36.1819458 ], [ 174.230270389999987, -36.18500137 ], [ 174.21499634, -36.17555618 ], [ 174.206390379999988, -36.17722321 ], [ 174.203613280000013, -36.18722153 ], [ 174.21694946, -36.18305588 ], [ 174.22332764, -36.18999863 ], [ 174.23916626, -36.18527603 ], [ 174.235839840000011, -36.19250107 ], [ 174.22377014, -36.20111847 ], [ 174.22848511, -36.20453644 ], [ 174.235275269999988, -36.19777679 ], [ 174.24555969, -36.19610977 ], [ 174.25222778, -36.20083237 ], [ 174.258605960000011, -36.1930542 ], [ 174.26333618000001, -36.19583511 ], [ 174.26362610000001, -36.2080574 ], [ 174.27355957, -36.21715927 ], [ 174.28666687, -36.21472168 ], [ 174.291915890000013, -36.23818588 ], [ 174.27360535, -36.23444366 ], [ 174.25917053, -36.2472229 ], [ 174.24861145, -36.25 ], [ 174.25193787, -36.25749969 ], [ 174.23957825, -36.26346207 ], [ 174.21499634, -36.25944519 ], [ 174.203338620000011, -36.2472229 ], [ 174.205276489999989, -36.24111176 ], [ 174.198608400000012, -36.23305511 ], [ 174.18333435, -36.23611069 ], [ 174.174728390000013, -36.22222137 ], [ 174.16555786, -36.22166824 ], [ 174.167495730000013, -36.21583176 ], [ 174.15415955, -36.21472168 ], [ 174.15383911, -36.20794296 ], [ 174.13424683, -36.19049072 ], [ 174.13021851, -36.17973328 ], [ 174.119628909999989, -36.16984177 ], [ 174.09899902, -36.16504669 ], [ 174.06741333, -36.17369843 ], [ 174.04431152, -36.1668396 ], [ 174.02513123, -36.14141846 ], [ 174.0149231, -36.13389587 ], [ 173.986114500000014, -36.12160492 ], [ 173.981536870000014, -36.12750244 ], [ 173.99221802, -36.13750076 ], [ 174.01055908, -36.14777756 ], [ 174.03251648, -36.18106079 ], [ 174.040786739999987, -36.18832397 ], [ 174.06056213, -36.19444275 ], [ 174.07055664, -36.20194626 ], [ 174.075256349999989, -36.21442413 ], [ 174.08666992, -36.22722244 ], [ 174.08055115, -36.23333359 ], [ 174.09603882, -36.23666382 ], [ 174.09671021, -36.24448013 ], [ 174.108581539999989, -36.25256348 ], [ 174.103881840000014, -36.25638962 ], [ 174.1315155, -36.26006317 ], [ 174.13819885, -36.26828766 ], [ 174.14416504, -36.26750183 ], [ 174.1569519, -36.27722168 ], [ 174.158447270000011, -36.28873062 ], [ 174.14860535, -36.29583359 ], [ 174.13139343, -36.30138779 ], [ 174.14651489, -36.29950714 ], [ 174.159393310000013, -36.30213165 ], [ 174.161056519999988, -36.31148529 ], [ 174.16937256, -36.31459808 ], [ 174.18093872, -36.33603287 ], [ 174.17785645, -36.35230637 ], [ 174.18222046, -36.36416626 ], [ 174.16667175, -36.37861252 ], [ 174.14416504, -36.39027786 ], [ 174.12889099, -36.39500046 ], [ 174.083892819999988, -36.39500046 ], [ 174.05528259, -36.40027618 ], [ 174.045272829999988, -36.3955574 ], [ 174.03694153, -36.38639069 ], [ 174.01805115, -36.35583496 ], [ 174.011383059999986, -36.33611298 ], [ 174.01445007, -36.32888794 ], [ 174.01028442, -36.29694366 ], [ 174.000473019999987, -36.27472305 ], [ 173.96861267, -36.22166824 ], [ 173.9347229, -36.17527771 ], [ 173.90805054, -36.14416504 ], [ 173.90611267, -36.13972092 ], [ 173.8347168, -36.05611038 ], [ 173.74555969, -35.95527649 ], [ 173.681579590000013, -35.88534546 ], [ 173.572479249999986, -35.76915359 ], [ 173.55444336, -35.75916672 ], [ 173.54141235, -35.73614502 ], [ 173.50234985, -35.69507599 ], [ 173.49694824, -35.68583298 ], [ 173.44503784, -35.64118958 ], [ 173.42384338, -35.60544586 ], [ 173.389724730000012, -35.57110977 ], [ 173.375, -35.56361008 ], [ 173.362777709999989, -35.54111099 ], [ 173.37028503, -35.53610992 ], [ 173.38430786, -35.53603745 ], [ 173.3888092, -35.53058243 ], [ 173.38739014, -35.51979446 ], [ 173.39146423, -35.50439072 ], [ 173.4012146, -35.50096512 ], [ 173.41125488, -35.48538589 ], [ 173.41055298, -35.47833252 ], [ 173.40208435, -35.47212601 ], [ 173.41656494, -35.46985626 ], [ 173.4147644, -35.45197296 ], [ 173.4256134, -35.44628525 ], [ 173.42648315, -35.42442703 ], [ 173.43196106, -35.41840744 ], [ 173.43873596, -35.42889786 ], [ 173.437835690000014, -35.41352463 ], [ 173.463943480000012, -35.41012955 ], [ 173.46835327, -35.40351868 ], [ 173.48077393, -35.40723419 ], [ 173.4959259, -35.41917801 ], [ 173.501876829999986, -35.40792465 ], [ 173.50361633, -35.39250183 ], [ 173.51802063, -35.40488434 ], [ 173.51922607, -35.42153549 ], [ 173.53517151, -35.42761993 ], [ 173.539978029999986, -35.42468262 ], [ 173.52201843, -35.42005157 ], [ 173.52481079, -35.40548325 ], [ 173.53083801, -35.39888763 ], [ 173.53083801, -35.38855362 ], [ 173.53863525, -35.37901306 ], [ 173.55075073, -35.37738037 ], [ 173.55665588, -35.37218094 ], [ 173.55444336, -35.36138916 ], [ 173.565933230000013, -35.35227203 ], [ 173.58149719, -35.35823822 ], [ 173.59916687, -35.35138702 ], [ 173.604721070000011, -35.34388733 ], [ 173.60083008, -35.33944321 ], [ 173.608581539999989, -35.32141876 ], [ 173.598159790000011, -35.33176041 ], [ 173.596588129999986, -35.34086609 ], [ 173.589370730000013, -35.34582138 ], [ 173.585006709999988, -35.3413887 ], [ 173.55273438, -35.34075546 ], [ 173.55026245, -35.33364105 ], [ 173.53334045, -35.32027817 ], [ 173.53083801, -35.31277847 ], [ 173.53388977, -35.29416656 ], [ 173.52555847, -35.27416611 ], [ 173.54417419, -35.26472092 ], [ 173.52722168, -35.26889038 ], [ 173.52194214, -35.27444458 ], [ 173.52999878, -35.29388809 ], [ 173.52915955, -35.31611252 ], [ 173.54440308, -35.3325882 ], [ 173.546249390000014, -35.3599205 ], [ 173.53945923, -35.37604141 ], [ 173.53085327, -35.38486099 ], [ 173.519210820000012, -35.38486481 ], [ 173.50944519, -35.37611008 ], [ 173.49380493000001, -35.37670898 ], [ 173.484176639999987, -35.38712692 ], [ 173.481094359999986, -35.40048218 ], [ 173.4675293, -35.3937645 ], [ 173.451675419999987, -35.40248489 ], [ 173.423339840000011, -35.39888763 ], [ 173.41177368000001, -35.4003334 ], [ 173.396575930000012, -35.41226959 ], [ 173.40344238, -35.41714096 ], [ 173.40802002, -35.43113708 ], [ 173.391387939999987, -35.43083191 ], [ 173.38752747, -35.44791794 ], [ 173.37722778, -35.45750046 ], [ 173.38127136, -35.46302795 ], [ 173.37446594, -35.47351456 ], [ 173.38389587, -35.48555374 ], [ 173.370300289999989, -35.49574661 ], [ 173.37518311, -35.51545715 ], [ 173.369079590000013, -35.52280045 ], [ 173.35678101, -35.52314377 ], [ 173.3338623, -35.49864578 ], [ 173.26524353, -35.42039108 ], [ 173.22833252, -35.38722229 ], [ 173.2180481, -35.38222122 ], [ 173.2263031, -35.37779999 ], [ 173.22659302, -35.36552048 ], [ 173.23554993, -35.3544426 ], [ 173.24221802, -35.35555649 ], [ 173.24972534, -35.34472275 ], [ 173.2444458, -35.34222412 ], [ 173.23666382, -35.34972382 ], [ 173.22805786, -35.33555603 ], [ 173.22694397, -35.3469429 ], [ 173.233612060000013, -35.35305405 ], [ 173.22555542, -35.36138916 ], [ 173.222976679999988, -35.37586975 ], [ 173.215271, -35.37916565 ], [ 173.208618159999986, -35.36444473 ], [ 173.19500732, -35.34916687 ], [ 173.18833923, -35.34722137 ], [ 173.18804932, -35.33333206 ], [ 173.169723510000011, -35.32305527 ], [ 173.15527344, -35.30361176 ], [ 173.158966060000012, -35.29398346 ], [ 173.169692989999987, -35.30093384 ], [ 173.185607909999987, -35.29169464 ], [ 173.18293762, -35.28687286 ], [ 173.19548035, -35.28470993 ], [ 173.19146729, -35.2798233 ], [ 173.17950439, -35.28079605 ], [ 173.172668460000011, -35.29280472 ], [ 173.163742070000012, -35.29354477 ], [ 173.14178467, -35.27293396 ], [ 173.12361145, -35.25222397 ], [ 173.11242676, -35.248909 ], [ 173.107498170000014, -35.24000168 ], [ 173.0874939, -35.2211113 ], [ 173.05610657, -35.19524384 ], [ 173.05360413, -35.18367386 ], [ 173.06027222, -35.16777802 ], [ 173.073287959999988, -35.16342545 ], [ 173.086700439999987, -35.16670609 ], [ 173.09666443, -35.17301559 ], [ 173.106109620000012, -35.16944504 ], [ 173.12095642, -35.17923355 ], [ 173.136108400000012, -35.17666626 ], [ 173.15472412, -35.16194534 ], [ 173.168609620000012, -35.13639069 ], [ 173.17555237, -35.10694504 ], [ 173.17666626, -35.08638763 ], [ 173.171386719999987, -35.04944611 ], [ 173.16082764, -35.01889038 ], [ 173.14332581, -34.98416519 ], [ 173.12583923, -34.95527649 ], [ 173.1055603, -34.92583466 ], [ 173.05999756, -34.86861038 ], [ 173.0055542, -34.80527878 ], [ 172.99555969, -34.79499817 ], [ 172.943603520000011, -34.73472214 ], [ 172.89778137, -34.68611145 ], [ 172.887771609999987, -34.67083359 ], [ 172.87055969, -34.6511116 ], [ 172.827499390000014, -34.60805511 ], [ 172.81083679, -34.59500122 ], [ 172.796386719999987, -34.58000183 ], [ 172.765838620000011, -34.5569458 ], [ 172.732223510000011, -34.52944565 ], [ 172.72555542, -34.5261116 ], [ 172.72000122, -34.5308342 ], [ 172.706115720000014, -34.52583313 ], [ 172.701110840000013, -34.52027893 ], [ 172.702774049999988, -34.5055542 ], [ 172.68933105, -34.48989105 ], [ 172.670272829999988, -34.48722076 ], [ 172.66000366, -34.4794426 ], [ 172.642501829999986, -34.47499847 ], [ 172.66389465, -34.46805573 ], [ 172.672225950000012, -34.45888901 ], [ 172.67709351, -34.44080734 ], [ 172.673889159999987, -34.42638779 ], [ 172.67967224, -34.41974258 ], [ 172.693603520000011, -34.42944336 ], [ 172.70832825, -34.42805481 ], [ 172.7124939, -34.4355545 ], [ 172.739730830000013, -34.43588257 ], [ 172.764999390000014, -34.44250107 ], [ 172.77278137, -34.44861221 ], [ 172.79167175, -34.45360947 ], [ 172.82139587, -34.45111084 ], [ 172.8400116, -34.44260025 ], [ 172.8510437, -34.4342041 ], [ 172.858886719999987, -34.42361069 ], [ 172.85305786, -34.41555405 ], [ 172.86917114, -34.41444397 ], [ 172.884994510000013, -34.41972351 ], [ 172.899475099999989, -34.41508102 ], [ 172.91194153, -34.42111206 ], [ 172.93101501000001, -34.42070389 ], [ 172.94111633, -34.42694473 ], [ 172.967300419999987, -34.42525482 ], [ 172.982498170000014, -34.41999817 ], [ 172.98805237, -34.4038887 ], [ 173.00030518, -34.40242386 ], [ 173.00190735000001, -34.39646912 ], [ 173.01132202, -34.39270782 ], [ 173.01132202, -34.39270782 ] ] ], [ [ [ 172.03109741, -34.18310928 ], [ 172.03598022, -34.18472672 ], [ 172.03778076, -34.18999863 ], [ 172.03109741, -34.18310928 ], [ 172.03109741, -34.18310928 ] ] ], [ [ [ 172.0574646, -34.18259048 ], [ 172.05499268, -34.1819458 ], [ 172.0559082, -34.18115616 ], [ 172.0574646, -34.18259048 ], [ 172.0574646, -34.18259048 ] ] ], [ [ [ 172.03868103, -34.17899704 ], [ 172.03527832, -34.17833328 ], [ 172.038314820000011, -34.17739105 ], [ 172.03868103, -34.17899704 ], [ 172.03868103, -34.17899704 ] ] ], [ [ [ 172.05555725, -34.17555618 ], [ 172.05583191, -34.18000031 ], [ 172.05332947, -34.17638779 ], [ 172.05555725, -34.17555618 ], [ 172.05555725, -34.17555618 ] ] ], [ [ [ 172.04621887, -34.17503738 ], [ 172.05194092, -34.17750168 ], [ 172.04420471, -34.17805099 ], [ 172.04621887, -34.17503738 ], [ 172.04621887, -34.17503738 ] ] ], [ [ [ 172.072021479999989, -34.17375946 ], [ 172.077224730000012, -34.17944336 ], [ 172.06694031, -34.17750168 ], [ 172.072021479999989, -34.17375946 ], [ 172.072021479999989, -34.17375946 ] ] ], [ [ [ 172.14805603, -34.14393234 ], [ 172.15777588, -34.14444351 ], [ 172.15368652, -34.15322876 ], [ 172.14437866, -34.15542984 ], [ 172.14845276, -34.16145325 ], [ 172.140823360000013, -34.17110443 ], [ 172.12167358, -34.15777588 ], [ 172.11947632, -34.14842606 ], [ 172.13743591, -34.15225601 ], [ 172.14805603, -34.14393234 ], [ 172.14805603, -34.14393234 ] ] ], [ [ [ 172.16868591, -34.13500214 ], [ 172.16569519, -34.1329422 ], [ 172.16667175, -34.1297226 ], [ 172.16868591, -34.13500214 ], [ 172.16868591, -34.13500214 ] ] ], [ [ [ -178.825271609999987, -31.35611153 ], [ -178.82583618000001, -31.35277748 ], [ -178.823608400000012, -31.3544445 ], [ -178.825271609999987, -31.35611153 ], [ -178.825271609999987, -31.35611153 ] ] ], [ [ [ -178.55552673, -30.53827477 ], [ -178.55328369, -30.54388428 ], [ -178.56109619, -30.54052734 ], [ -178.55552673, -30.53827477 ], [ -178.55552673, -30.53827477 ] ] ], [ [ [ -178.569396970000014, -30.53387451 ], [ -178.565490720000014, -30.53637886 ], [ -178.567199710000011, -30.53967476 ], [ -178.569396970000014, -30.53387451 ], [ -178.569396970000014, -30.53387451 ] ] ], [ [ [ -178.41471863000001, -30.23277855 ], [ -178.41583252, -30.23749924 ], [ -178.4172821, -30.23499489 ], [ -178.41471863000001, -30.23277855 ], [ -178.41471863000001, -30.23277855 ] ] ], [ [ [ -178.42468262, -30.22442627 ], [ -178.41668701, -30.23217773 ], [ -178.431396479999989, -30.24305534 ], [ -178.44082642, -30.23181152 ], [ -178.43469238, -30.22576714 ], [ -178.42468262, -30.22442627 ], [ -178.42468262, -30.22442627 ] ] ], [ [ [ -177.90240479, -29.28167725 ], [ -177.904785159999989, -29.28179932 ], [ -177.90264893, -29.28068542 ], [ -177.90240479, -29.28167725 ], [ -177.90240479, -29.28167725 ] ] ], [ [ [ -177.852600099999989, -29.25439453 ], [ -177.85417175, -29.25499916 ], [ -177.85583496000001, -29.24936104 ], [ -177.852600099999989, -29.25439453 ], [ -177.852600099999989, -29.25439453 ] ] ], [ [ [ -177.85630798, -29.24436188 ], [ -177.85667419, -29.24666405 ], [ -177.858886719999987, -29.2452774 ], [ -177.85630798, -29.24436188 ], [ -177.85630798, -29.24436188 ] ] ], [ [ [ -177.875488280000013, -29.24243546 ], [ -177.878295900000012, -29.24859619 ], [ -177.88150024, -29.24874115 ], [ -177.875488280000013, -29.24243546 ], [ -177.875488280000013, -29.24243546 ] ] ], [ [ [ -177.95159912, -29.23858643 ], [ -177.928771970000014, -29.2421875 ], [ -177.923477170000012, -29.2460537 ], [ -177.89801025, -29.25189018 ], [ -177.88668823, -29.26749229 ], [ -177.88519287, -29.27752686 ], [ -177.89086914, -29.28356934 ], [ -177.89387512, -29.27778816 ], [ -177.91471863000001, -29.27944374 ], [ -177.920837400000011, -29.28583336 ], [ -177.923889159999987, -29.29919434 ], [ -177.935043330000013, -29.2953949 ], [ -177.96008301, -29.29510689 ], [ -177.942199710000011, -29.27050781 ], [ -177.94665527, -29.26171494 ], [ -177.95718384, -29.25219727 ], [ -177.9655304, -29.2519455 ], [ -177.981384279999986, -29.24139404 ], [ -177.95159912, -29.23858643 ], [ -177.95159912, -29.23858643 ] ] ], [ [ [ -177.87580872, -29.23418617 ], [ -177.87600708, -29.23277855 ], [ -177.87367249, -29.23179245 ], [ -177.87580872, -29.23418617 ], [ -177.87580872, -29.23418617 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.11", "id_1": 11, "name_1": "Otago", "hasc_1": "NZ.OT", "population2022": 246000, "areakm2": 32261.588, "density2022": 7.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.73716736, -49.69208145 ], [ 178.73547363, -49.69219208 ], [ 178.73580933, -49.69077682 ], [ 178.73716736, -49.69208145 ], [ 178.73716736, -49.69208145 ] ] ], [ [ [ 178.80944824, -49.6855545 ], [ 178.813552859999987, -49.68888474 ], [ 178.80815125, -49.6897583 ], [ 178.80944824, -49.6855545 ], [ 178.80944824, -49.6855545 ] ] ], [ [ [ 178.7210083, -49.67634583 ], [ 178.71759033, -49.67621231 ], [ 178.71682739, -49.67261505 ], [ 178.7210083, -49.67634583 ], [ 178.7210083, -49.67634583 ] ] ], [ [ [ 178.73666382, -49.67407227 ], [ 178.731506349999989, -49.67581558 ], [ 178.73083496000001, -49.67222214 ], [ 178.73666382, -49.67407227 ], [ 178.73666382, -49.67407227 ] ] ], [ [ [ 178.799057010000013, -49.65930939 ], [ 178.80119324, -49.66578293 ], [ 178.81280518, -49.66582108 ], [ 178.80833435, -49.68296432 ], [ 178.79922485, -49.69633102 ], [ 178.78723145, -49.69852448 ], [ 178.78330994, -49.70619965 ], [ 178.79005432, -49.71130371 ], [ 178.78288269, -49.71415329 ], [ 178.757461549999988, -49.715271 ], [ 178.755630489999987, -49.70907974 ], [ 178.737777709999989, -49.70416641 ], [ 178.73971558, -49.69138718 ], [ 178.72796631, -49.68422699 ], [ 178.74459839, -49.68049622 ], [ 178.75524902, -49.67086411 ], [ 178.77349854, -49.67189789 ], [ 178.7749939, -49.66472244 ], [ 178.78582764, -49.66444397 ], [ 178.799057010000013, -49.65930939 ], [ 178.799057010000013, -49.65930939 ] ] ], [ [ [ 178.81455994, -49.63837051 ], [ 178.82368469, -49.6416893 ], [ 178.81748962, -49.64484787 ], [ 178.81455994, -49.63837051 ], [ 178.81455994, -49.63837051 ] ] ], [ [ [ 169.61483765, -46.56000137 ], [ 169.6158905, -46.55750275 ], [ 169.61723328, -46.55949402 ], [ 169.61483765, -46.56000137 ], [ 169.61483765, -46.56000137 ] ] ], [ [ [ 169.71388245, -46.5 ], [ 169.71583557, -46.50444412 ], [ 169.71194458, -46.50444412 ], [ 169.71388245, -46.5 ], [ 169.71388245, -46.5 ] ] ], [ [ [ 169.810623170000014, -46.34658813 ], [ 169.79606628, -46.3530159 ], [ 169.796524049999988, -46.34816742 ], [ 169.810623170000014, -46.34658813 ], [ 169.810623170000014, -46.34658813 ] ] ], [ [ [ 170.21777344, -46.0605545 ], [ 170.21499634, -46.06027603 ], [ 170.22038269, -46.05494308 ], [ 170.21777344, -46.0605545 ], [ 170.21777344, -46.0605545 ] ] ], [ [ [ 170.389724730000012, -45.95305634 ], [ 170.386108400000012, -45.95444489 ], [ 170.38471985000001, -45.95249939 ], [ 170.389724730000012, -45.95305634 ], [ 170.389724730000012, -45.95305634 ] ] ], [ [ [ 170.71653748, -45.88073349 ], [ 170.71359253, -45.88027573 ], [ 170.71580505, -45.87942123 ], [ 170.71653748, -45.88073349 ], [ 170.71653748, -45.88073349 ] ] ], [ [ [ 170.543396, -45.87120819 ], [ 170.54176331, -45.87075424 ], [ 170.54495239, -45.86989975 ], [ 170.543396, -45.87120819 ], [ 170.543396, -45.87120819 ] ] ], [ [ [ 170.62944031, -45.82648849 ], [ 170.637466429999989, -45.82862854 ], [ 170.63253784, -45.83039474 ], [ 170.62944031, -45.82648849 ], [ 170.62944031, -45.82648849 ] ] ], [ [ [ 170.626602170000012, -45.82604599 ], [ 170.62431335, -45.82365036 ], [ 170.62677002, -45.82324982 ], [ 170.626602170000012, -45.82604599 ], [ 170.626602170000012, -45.82604599 ] ] ], [ [ [ 170.59527588, -45.72527695 ], [ 170.58944702, -45.73500061 ], [ 170.583618159999986, -45.72972107 ], [ 170.59527588, -45.72527695 ], [ 170.59527588, -45.72527695 ] ] ], [ [ [ 169.69769287, -43.95532608 ], [ 169.708633420000012, -43.95793533 ], [ 169.7166748, -43.96688461 ], [ 169.71780396, -43.97770691 ], [ 169.71089172, -43.97957993 ], [ 169.72698975, -43.99748993 ], [ 169.717163090000014, -44.0057106 ], [ 169.72521973, -44.01467133 ], [ 169.718292240000011, -44.01654053 ], [ 169.73440552, -44.0344696 ], [ 169.72457886, -44.04269409 ], [ 169.710723879999989, -44.0464325 ], [ 169.706695559999986, -44.04195023 ], [ 169.6968689, -44.0501709 ], [ 169.70089722, -44.05465698 ], [ 169.68817139, -44.06923294 ], [ 169.674316409999989, -44.07296753 ], [ 169.671417240000011, -44.079319 ], [ 169.679473879999989, -44.0882988 ], [ 169.66964722, -44.09651947 ], [ 169.655776980000013, -44.10025024 ], [ 169.64996338, -44.11296463 ], [ 169.65803528, -44.12195206 ], [ 169.63317871000001, -44.12305832 ], [ 169.63835144, -44.13841248 ], [ 169.62850952, -44.14664841 ], [ 169.61462402, -44.15038681 ], [ 169.622695920000012, -44.15938568 ], [ 169.60186768, -44.1649971 ], [ 169.59896851, -44.17136765 ], [ 169.58506775, -44.17510986 ], [ 169.5861969, -44.18598938 ], [ 169.57633972, -44.19424057 ], [ 169.5803833, -44.19874191 ], [ 169.559524540000012, -44.20436096 ], [ 169.55661011, -44.21074295 ], [ 169.564697270000011, -44.21975708 ], [ 169.56178284, -44.22614288 ], [ 169.572769169999987, -44.22877502 ], [ 169.597015379999988, -44.25582504 ], [ 169.598159790000011, -44.26671982 ], [ 169.5894165, -44.28589249 ], [ 169.59458923, -44.30130386 ], [ 169.587646479999989, -44.30318451 ], [ 169.59573364, -44.31221008 ], [ 169.581817629999989, -44.31597519 ], [ 169.58990479, -44.32500076 ], [ 169.586990359999987, -44.33139801 ], [ 169.599121090000011, -44.34493637 ], [ 169.58229065, -44.35510635 ], [ 169.59039307, -44.36413193 ], [ 169.570632929999988, -44.38070679 ], [ 169.58682251, -44.39876556 ], [ 169.583908079999986, -44.40517044 ], [ 169.569976809999986, -44.40894318 ], [ 169.574020389999987, -44.41345978 ], [ 169.56413269, -44.42175293 ], [ 169.57627869, -44.43530655 ], [ 169.55943298, -44.44548798 ], [ 169.57157898, -44.4590416 ], [ 169.58955383, -44.45977783 ], [ 169.59361267, -44.46429825 ], [ 169.61450195, -44.45862579 ], [ 169.61856079, -44.4631424 ], [ 169.632476809999986, -44.45935822 ], [ 169.654495239999989, -44.46460342 ], [ 169.67070007, -44.4826622 ], [ 169.663726809999986, -44.48455429 ], [ 169.66487122, -44.49547958 ], [ 169.6509552, -44.49926758 ], [ 169.67120361, -44.52185059 ], [ 169.66423035, -44.52374649 ], [ 169.676391599999988, -44.5372963 ], [ 169.663604740000011, -44.55201721 ], [ 169.667648320000012, -44.55653381 ], [ 169.65777588, -44.56484604 ], [ 169.65890503, -44.57577896 ], [ 169.66700745, -44.58481598 ], [ 169.65713501, -44.5931282 ], [ 169.66815186, -44.5957489 ], [ 169.68208313, -44.59195328 ], [ 169.70817566, -44.60170746 ], [ 169.72615051, -44.60242462 ], [ 169.737792969999987, -44.57675934 ], [ 169.733734129999988, -44.57224274 ], [ 169.74765015, -44.5684433 ], [ 169.75056458, -44.56202698 ], [ 169.75866699, -44.57105637 ], [ 169.751708979999989, -44.57295609 ], [ 169.76791382, -44.59101486 ], [ 169.765014650000012, -44.59743118 ], [ 169.77716064, -44.61097717 ], [ 169.76844788, -44.63023376 ], [ 169.780609129999988, -44.64378357 ], [ 169.802642819999988, -44.64900589 ], [ 169.821762080000013, -44.66064453 ], [ 169.8547821, -44.66846848 ], [ 169.85768127, -44.66204834 ], [ 169.909225459999988, -44.64226532 ], [ 169.913284299999987, -44.64677811 ], [ 169.960159299999987, -44.65076065 ], [ 169.98394775, -44.70612335 ], [ 169.99151611, -44.74345016 ], [ 169.99963379, -44.75247574 ], [ 169.9979248, -44.76984406 ], [ 170.01010132, -44.78338623 ], [ 170.01651001, -44.80979156 ], [ 170.01074219, -44.82265091 ], [ 170.059509279999986, -44.87683487 ], [ 170.081527709999989, -44.88202667 ], [ 170.0786438, -44.88846207 ], [ 170.09896851, -44.91103745 ], [ 170.0821991, -44.92131805 ], [ 170.10423279, -44.92650604 ], [ 170.10948181, -44.94197845 ], [ 170.116424560000013, -44.94005585 ], [ 170.13150024, -44.94716644 ], [ 170.14131165, -44.93880844 ], [ 170.14538574, -44.94332504 ], [ 170.159255980000012, -44.93947601 ], [ 170.16333008, -44.94399261 ], [ 170.181274409999986, -44.944664 ], [ 170.222854610000013, -44.93312073 ], [ 170.2338562, -44.93571091 ], [ 170.25462341, -44.92993546 ], [ 170.26727295, -44.91513443 ], [ 170.27539063, -44.92416 ], [ 170.316909790000011, -44.91260529 ], [ 170.33358765, -44.90231323 ], [ 170.36244202, -44.90555573 ], [ 170.3677063, -44.92102051 ], [ 170.36201477, -44.93390274 ], [ 170.372985840000013, -44.93648911 ], [ 170.38516235, -44.95003128 ], [ 170.419692989999987, -44.94038773 ], [ 170.42254639, -44.93394089 ], [ 170.43756104, -44.94103622 ], [ 170.44041443, -44.9345932 ], [ 170.46112061, -44.92879486 ], [ 170.45706177, -44.92428207 ], [ 170.51226807, -44.9087944 ], [ 170.52485657, -44.89395523 ], [ 170.53866577, -44.89007568 ], [ 170.55288696, -44.85782623 ], [ 170.551681519999988, -44.84687042 ], [ 170.561431879999986, -44.83847427 ], [ 170.57522583, -44.83458328 ], [ 170.59068298, -44.8132782 ], [ 170.63447571, -44.82348633 ], [ 170.63851929, -44.82799149 ], [ 170.65635681, -44.82858276 ], [ 170.67825317, -44.83367538 ], [ 170.68229675, -44.83817673 ], [ 170.700134279999986, -44.83876038 ], [ 170.704177859999987, -44.84326553 ], [ 170.7479248, -44.85342026 ], [ 170.76695251000001, -44.86496353 ], [ 170.78477478, -44.86552811 ], [ 170.7928772, -44.87453461 ], [ 170.8216095, -44.87761688 ], [ 170.85437012, -44.88518524 ], [ 170.861251829999986, -44.8832016 ], [ 170.86245728, -44.89418411 ], [ 170.87620544, -44.89021301 ], [ 170.88024902, -44.89471054 ], [ 170.89398193, -44.890728 ], [ 170.90489197, -44.89323044 ], [ 170.91296387, -44.90221786 ], [ 170.941619870000011, -44.90519333 ], [ 170.963394169999987, -44.91016388 ], [ 170.97711182, -44.90616608 ], [ 170.98518372, -44.91516876 ], [ 170.99203491, -44.9131813 ], [ 171.00010681, -44.92219925 ], [ 171.02067566, -44.91627121 ], [ 171.04649353, -44.92590714 ], [ 171.06022644, -44.92198563 ], [ 171.07115173, -44.92456055 ], [ 171.07925415, -44.93362427 ], [ 171.09988403, -44.92776871 ], [ 171.11772156, -44.92840958 ], [ 171.125915529999986, -44.9374733 ], [ 171.13700867, -44.94003296 ], [ 171.14836121, -44.93682098 ], [ 171.12530518, -44.9719162 ], [ 171.110168460000011, -44.99204636 ], [ 171.08778381, -45.01583481 ], [ 171.056396479999989, -45.04138947 ], [ 171.017486569999988, -45.06694794 ], [ 170.98805237, -45.08472061 ], [ 170.976104740000011, -45.09666824 ], [ 170.97250366, -45.10694504 ], [ 170.98306274, -45.11222076 ], [ 170.980270389999987, -45.12250137 ], [ 170.97389221, -45.1269455 ], [ 170.96333313, -45.12638855 ], [ 170.93943787, -45.14055634 ], [ 170.91000366, -45.16722107 ], [ 170.89555359, -45.19527817 ], [ 170.88471985000001, -45.21055603 ], [ 170.889160159999989, -45.21611023 ], [ 170.87277222, -45.22777939 ], [ 170.86305237, -45.24111176 ], [ 170.86416626, -45.25666809 ], [ 170.858886719999987, -45.26305389 ], [ 170.86193848, -45.26889038 ], [ 170.84277344, -45.28694534 ], [ 170.835006709999988, -45.29888916 ], [ 170.824996950000013, -45.32444382 ], [ 170.824996950000013, -45.33972168 ], [ 170.83082581, -45.35416794 ], [ 170.83999634, -45.36083221 ], [ 170.86416626, -45.35666656 ], [ 170.86444092, -45.37749863 ], [ 170.87055969, -45.38555527 ], [ 170.8694458, -45.39666748 ], [ 170.85694885, -45.39027786 ], [ 170.83305359, -45.4058342 ], [ 170.81971741000001, -45.42277908 ], [ 170.80944824, -45.44861221 ], [ 170.80944824, -45.45611191 ], [ 170.82943726, -45.46694565 ], [ 170.832778929999989, -45.47277832 ], [ 170.81916809, -45.47972107 ], [ 170.81111145, -45.48944473 ], [ 170.78166199, -45.51194382 ], [ 170.77722168, -45.52027893 ], [ 170.766387939999987, -45.52750015 ], [ 170.766113280000013, -45.53250122 ], [ 170.7555542, -45.5344429 ], [ 170.74472046, -45.55222321 ], [ 170.72694397, -45.56750107 ], [ 170.72805786, -45.55583191 ], [ 170.71398926, -45.54794312 ], [ 170.72332764, -45.55805588 ], [ 170.72444153, -45.5680542 ], [ 170.730270389999987, -45.57277679 ], [ 170.72917175, -45.58972168 ], [ 170.70555115, -45.61305618 ], [ 170.69389343, -45.62055588 ], [ 170.68695068, -45.61027908 ], [ 170.671661379999989, -45.61555481 ], [ 170.66000366, -45.62888718 ], [ 170.66055298, -45.63861084 ], [ 170.64805603, -45.62111282 ], [ 170.66055298, -45.64333344 ], [ 170.65110779, -45.66249847 ], [ 170.65499878, -45.66638947 ], [ 170.62998962, -45.68664932 ], [ 170.61471558, -45.69138718 ], [ 170.59916687, -45.71222305 ], [ 170.59944153, -45.73055649 ], [ 170.59161377, -45.71369553 ], [ 170.58082581, -45.71472168 ], [ 170.57028198, -45.72527695 ], [ 170.57028198, -45.7452774 ], [ 170.59555054, -45.74027634 ], [ 170.59777832, -45.73305511 ], [ 170.608886719999987, -45.73222351 ], [ 170.62611389, -45.74333191 ], [ 170.62083435, -45.75027847 ], [ 170.62611389, -45.76250076 ], [ 170.63221741000001, -45.74944305 ], [ 170.62722778, -45.74111176 ], [ 170.639160159999989, -45.73833466 ], [ 170.65527344, -45.75583267 ], [ 170.67189026, -45.76264954 ], [ 170.67582703, -45.75722122 ], [ 170.68916321, -45.76055527 ], [ 170.6958313, -45.75749969 ], [ 170.69651794, -45.76660156 ], [ 170.71083069, -45.77583313 ], [ 170.700271609999987, -45.78610992 ], [ 170.672500609999986, -45.78583145 ], [ 170.64833069, -45.79277802 ], [ 170.64555359, -45.79777908 ], [ 170.62693787, -45.79833221 ], [ 170.6305542, -45.81666565 ], [ 170.61749268, -45.82805634 ], [ 170.61332703, -45.81944275 ], [ 170.59388733, -45.82805634 ], [ 170.574996950000013, -45.85555649 ], [ 170.55999756, -45.86583328 ], [ 170.519729610000013, -45.87472153 ], [ 170.50721741000001, -45.88639069 ], [ 170.51306152, -45.89250183 ], [ 170.520278929999989, -45.89027786 ], [ 170.52915955, -45.88027954 ], [ 170.57278442, -45.87916565 ], [ 170.59638977, -45.86888885 ], [ 170.59832764, -45.85388947 ], [ 170.60333252, -45.84527588 ], [ 170.62306213, -45.84749985 ], [ 170.645278929999989, -45.83777618 ], [ 170.65167236, -45.83777618 ], [ 170.640274049999988, -45.82860947 ], [ 170.643890379999988, -45.82361221 ], [ 170.65916443, -45.83777618 ], [ 170.672775269999988, -45.83166504 ], [ 170.66833496000001, -45.81611252 ], [ 170.68444824, -45.8069458 ], [ 170.698883059999986, -45.80416489 ], [ 170.726104740000011, -45.79222107 ], [ 170.72277832, -45.78388977 ], [ 170.728866579999988, -45.77288818 ], [ 170.74278259, -45.77972412 ], [ 170.742523190000014, -45.79977036 ], [ 170.75138855, -45.80555725 ], [ 170.74610901, -45.81611252 ], [ 170.73554993, -45.81638718 ], [ 170.729721070000011, -45.83083344 ], [ 170.7305603, -45.84388733 ], [ 170.70832825, -45.84222412 ], [ 170.69508362, -45.83771133 ], [ 170.681396479999989, -45.8461113 ], [ 170.693603520000011, -45.85472107 ], [ 170.710006709999988, -45.84833145 ], [ 170.74916077, -45.84583282 ], [ 170.74360657, -45.84944534 ], [ 170.74972534, -45.85555649 ], [ 170.74206543, -45.85708237 ], [ 170.7444458, -45.86583328 ], [ 170.75111389, -45.86750031 ], [ 170.740478520000011, -45.87878418 ], [ 170.72944641, -45.88222122 ], [ 170.72332764, -45.8771286 ], [ 170.700271609999987, -45.875 ], [ 170.68278503, -45.88111115 ], [ 170.675277709999989, -45.87277603 ], [ 170.6875, -45.86750031 ], [ 170.68249512, -45.85722351 ], [ 170.66087341, -45.8515358 ], [ 170.658432010000013, -45.86567688 ], [ 170.668884279999986, -45.86722183 ], [ 170.668609620000012, -45.8730545 ], [ 170.68583679, -45.89500046 ], [ 170.66305542, -45.90416718 ], [ 170.65919495, -45.89971924 ], [ 170.639999390000014, -45.89583206 ], [ 170.63444519, -45.90250015 ], [ 170.6240387, -45.89769745 ], [ 170.60464478, -45.89758301 ], [ 170.59257507, -45.90309906 ], [ 170.59274292, -45.92103577 ], [ 170.58325195, -45.92132187 ], [ 170.58398438, -45.90312958 ], [ 170.56700134, -45.91026306 ], [ 170.53868103, -45.90649414 ], [ 170.49221802, -45.9113884 ], [ 170.48666382, -45.91777802 ], [ 170.443603520000011, -45.92360306 ], [ 170.43623352, -45.9309845 ], [ 170.42507935, -45.92814636 ], [ 170.40415955, -45.92944336 ], [ 170.347045900000012, -45.94013214 ], [ 170.33776855, -45.9487381 ], [ 170.32800293, -45.95012283 ], [ 170.29312134, -45.96424484 ], [ 170.266113280000013, -45.98944473 ], [ 170.258605960000011, -45.9991684 ], [ 170.24777222, -46.0047226 ], [ 170.233337400000011, -46.0233345 ], [ 170.21278381, -46.04527664 ], [ 170.21153259, -46.05138779 ], [ 170.20304871, -46.05222321 ], [ 170.19825745, -46.06166077 ], [ 170.202499390000014, -46.07138824 ], [ 170.202224730000012, -46.09083176 ], [ 170.19500732, -46.11166763 ], [ 170.186706539999989, -46.11727524 ], [ 170.18774414, -46.13019943 ], [ 170.17971802, -46.14527893 ], [ 170.171386719999987, -46.15361023 ], [ 170.1555481, -46.16194534 ], [ 170.128417969999987, -46.1836853 ], [ 170.11555481, -46.19083405 ], [ 170.104675289999989, -46.19182205 ], [ 170.05180359, -46.21603394 ], [ 170.044998170000014, -46.21722412 ], [ 170.048614500000014, -46.20416641 ], [ 170.044723510000011, -46.20416641 ], [ 170.04727173, -46.22258377 ], [ 170.010955810000013, -46.2376442 ], [ 170.00138855, -46.24333191 ], [ 170.0015564, -46.25128555 ], [ 169.983322140000013, -46.26091003 ], [ 169.973114009999989, -46.2728157 ], [ 169.960586549999988, -46.27483368 ], [ 169.93315125, -46.28555679 ], [ 169.924743650000011, -46.29832077 ], [ 169.91148376000001, -46.30335999 ], [ 169.892501829999986, -46.31544113 ], [ 169.885269169999987, -46.31591797 ], [ 169.84416199, -46.32888794 ], [ 169.8374939, -46.32527924 ], [ 169.83335876000001, -46.33216476 ], [ 169.81222534, -46.3441658 ], [ 169.80006409, -46.32992935 ], [ 169.80592346, -46.34513855 ], [ 169.79684448, -46.34633636 ], [ 169.79559326, -46.35571671 ], [ 169.784545900000012, -46.3662262 ], [ 169.78083801, -46.39777756 ], [ 169.7983551, -46.41050339 ], [ 169.79414368, -46.42949295 ], [ 169.79849243000001, -46.43987274 ], [ 169.82000732, -46.44889069 ], [ 169.79954529, -46.44690323 ], [ 169.797775269999988, -46.45222092 ], [ 169.779220579999986, -46.45514297 ], [ 169.78198242, -46.46503067 ], [ 169.77722168, -46.46888733 ], [ 169.7583313, -46.46722412 ], [ 169.7537384, -46.4739151 ], [ 169.76048279, -46.47736359 ], [ 169.75384521, -46.48197174 ], [ 169.74136353, -46.47589874 ], [ 169.72242737, -46.47915268 ], [ 169.71742249, -46.47443771 ], [ 169.69644165, -46.4684639 ], [ 169.687011719999987, -46.47834015 ], [ 169.67977905, -46.47177887 ], [ 169.65496826, -46.46728897 ], [ 169.64057922, -46.46897125 ], [ 169.63336182, -46.47690964 ], [ 169.61528015, -46.47972107 ], [ 169.62249756, -46.48888779 ], [ 169.629531859999986, -46.49021912 ], [ 169.66429138, -46.47124863 ], [ 169.67805481, -46.47527695 ], [ 169.68360901, -46.48380661 ], [ 169.69500732, -46.48527908 ], [ 169.703903200000013, -46.47829819 ], [ 169.70707703, -46.48268127 ], [ 169.72111511, -46.48583221 ], [ 169.72055054, -46.49139023 ], [ 169.70916748, -46.49388885 ], [ 169.70898438, -46.50647736 ], [ 169.69395447, -46.51006317 ], [ 169.69903564, -46.51821899 ], [ 169.66555786, -46.52972412 ], [ 169.64805603, -46.54000092 ], [ 169.62934875, -46.53684235 ], [ 169.61166382, -46.5419426 ], [ 169.617980960000011, -46.54808044 ], [ 169.594818120000014, -46.567173 ], [ 169.58876038, -46.56586075 ], [ 169.58305359, -46.57916641 ], [ 169.577499390000014, -46.57583237 ], [ 169.57606506, -46.5637207 ], [ 169.56808472, -46.56587601 ], [ 169.55220032, -46.558918 ], [ 169.542770389999987, -46.56555557 ], [ 169.520980830000013, -46.55563354 ], [ 169.49884033, -46.55647659 ], [ 169.47753906, -46.56046677 ], [ 169.47946167, -46.56856155 ], [ 169.46485901, -46.5839653 ], [ 169.463104249999986, -46.57852936 ], [ 169.452621459999989, -46.57714081 ], [ 169.43360901, -46.59000015 ], [ 169.426101679999988, -46.60358429 ], [ 169.43917847, -46.59951019 ], [ 169.4450531, -46.60236359 ], [ 169.43565369, -46.6139183 ], [ 169.42071533, -46.60342789 ], [ 169.40415955, -46.61333466 ], [ 169.39196777, -46.60788727 ], [ 169.37652588, -46.60811234 ], [ 169.35536194, -46.61957169 ], [ 169.36592102, -46.63126755 ], [ 169.362930299999988, -46.63694763 ], [ 169.35140991, -46.63853836 ], [ 169.33833313, -46.63249969 ], [ 169.33230591, -46.63440323 ], [ 169.315475459999988, -46.62776566 ], [ 169.31222534, -46.63555527 ], [ 169.30583191, -46.62552261 ], [ 169.28117371, -46.62169647 ], [ 169.26255798, -46.62746429 ], [ 169.257308959999989, -46.63794327 ], [ 169.24859619, -46.64210892 ], [ 169.240020750000014, -46.63646698 ], [ 169.23854065, -46.64489365 ], [ 169.224121090000011, -46.64871979 ], [ 169.220932010000013, -46.65710068 ], [ 169.199996950000013, -46.66222382 ], [ 169.190612789999989, -46.65470505 ], [ 169.198181150000011, -46.61721802 ], [ 169.21542358, -46.61766052 ], [ 169.21360779, -46.60285187 ], [ 169.21948242, -46.59360886 ], [ 169.20198059, -46.59238052 ], [ 169.189086909999986, -46.57865143 ], [ 169.1990509, -46.56999588 ], [ 169.19476318, -46.56540298 ], [ 169.22758484, -46.56188202 ], [ 169.23327637, -46.54869461 ], [ 169.25039673, -46.53807068 ], [ 169.24897766, -46.52694321 ], [ 169.25611877, -46.52493286 ], [ 169.24757385, -46.51581955 ], [ 169.233322140000013, -46.51982117 ], [ 169.22053528, -46.50611496 ], [ 169.21340942, -46.50810623 ], [ 169.20491028, -46.4989624 ], [ 169.18638611, -46.49835205 ], [ 169.17790222, -46.48920441 ], [ 169.185043330000013, -46.48722839 ], [ 169.16519165, -46.47549057 ], [ 169.163864139999987, -46.46438217 ], [ 169.19241333, -46.45649338 ], [ 169.18818665, -46.451931 ], [ 169.19822693, -46.44342804 ], [ 169.18978882, -46.4343071 ], [ 169.204055790000012, -46.43037033 ], [ 169.20697021, -46.42384338 ], [ 169.19854736, -46.41473007 ], [ 169.20567322, -46.4127655 ], [ 169.18884277, -46.39454651 ], [ 169.15484619, -46.38677216 ], [ 169.14770508, -46.38873672 ], [ 169.13931274, -46.37962341 ], [ 169.15232849, -46.36463165 ], [ 169.14813232, -46.3600769 ], [ 169.16954041, -46.35419846 ], [ 169.16534424, -46.34964752 ], [ 169.17961121, -46.34572601 ], [ 169.17541504, -46.34117508 ], [ 169.19680786, -46.33529663 ], [ 169.18130493000001, -46.32815552 ], [ 169.18844604, -46.32619858 ], [ 169.20146179, -46.31122589 ], [ 169.18475342, -46.29302979 ], [ 169.194824219999987, -46.28456879 ], [ 169.20072937, -46.27156448 ], [ 169.19238281, -46.26246643 ], [ 169.198303220000014, -46.24946213 ], [ 169.205429079999988, -46.247509 ], [ 169.19293213, -46.23386765 ], [ 169.20301819, -46.22541428 ], [ 169.2118988, -46.20591736 ], [ 169.19645691, -46.19877243 ], [ 169.18934631, -46.20072174 ], [ 169.168579099999988, -46.17797852 ], [ 169.17866516, -46.16952896 ], [ 169.166229249999986, -46.15587997 ], [ 169.15496826, -46.15327835 ], [ 169.14071655, -46.15717316 ], [ 169.13838196, -46.13507462 ], [ 169.16685486, -46.12729263 ], [ 169.17694092, -46.11885452 ], [ 169.1686554, -46.10975647 ], [ 169.174591060000012, -46.09676743 ], [ 169.15623474, -46.09610367 ], [ 169.15921021, -46.08961105 ], [ 169.147949219999987, -46.08700562 ], [ 169.15092468, -46.08050919 ], [ 169.16514587, -46.07662582 ], [ 169.16281128, -46.05454254 ], [ 169.14031982, -46.04932404 ], [ 169.132049560000013, -46.04022217 ], [ 169.1137085, -46.03954697 ], [ 169.08065796, -46.00312424 ], [ 169.07539368, -45.98752975 ], [ 169.0884552, -45.9726181 ], [ 169.10266113, -45.96875 ], [ 169.11454773, -45.94281387 ], [ 169.10333252, -45.94019318 ], [ 169.086837769999988, -45.92198563 ], [ 169.09393311, -45.92005539 ], [ 169.10881042, -45.88765335 ], [ 169.09645081, -45.87399673 ], [ 169.089355469999987, -45.87592697 ], [ 169.09118652, -45.85841751 ], [ 169.06878662, -45.85316467 ], [ 169.07289124, -45.85771561 ], [ 169.05871582, -45.86156845 ], [ 169.062820429999988, -45.8661232 ], [ 169.01911926, -45.866642 ], [ 169.014999390000014, -45.86208344 ], [ 169.02693176, -45.83616638 ], [ 169.0440979, -45.82584381 ], [ 169.038864139999987, -45.81025696 ], [ 169.027664179999988, -45.807621 ], [ 169.0194397, -45.79851151 ], [ 169.02201843, -45.75247192 ], [ 169.02088928, -45.74144363 ], [ 169.009704590000013, -45.73880386 ], [ 169.03056335, -45.69351196 ], [ 169.03764343, -45.69159698 ], [ 169.03240967, -45.67602158 ], [ 169.042465209999989, -45.66764069 ], [ 169.04133606, -45.65662003 ], [ 169.06964111, -45.64897156 ], [ 169.0655365, -45.64442062 ], [ 169.0796814, -45.64059448 ], [ 169.07557678, -45.63604355 ], [ 169.093399049999988, -45.59726334 ], [ 169.10754395, -45.59344101 ], [ 169.103439329999986, -45.58889008 ], [ 169.11756897, -45.58506775 ], [ 169.113479610000013, -45.58052063 ], [ 169.13127136, -45.54176331 ], [ 169.14129639, -45.53339767 ], [ 169.137207030000013, -45.52885056 ], [ 169.14723206, -45.52048492 ], [ 169.14312744, -45.51593781 ], [ 169.160903929999989, -45.47720718 ], [ 169.15568542, -45.46166229 ], [ 169.16275024, -45.45975494 ], [ 169.17572021, -45.44494629 ], [ 169.17163086, -45.44039917 ], [ 169.189819340000014, -45.44113541 ], [ 169.21801758, -45.43351746 ], [ 169.229843140000014, -45.40772247 ], [ 169.21348572, -45.38954163 ], [ 169.19940186, -45.39334869 ], [ 169.17897034, -45.37062073 ], [ 169.18193054, -45.36417389 ], [ 169.16966248, -45.35053635 ], [ 169.16854858, -45.33954239 ], [ 169.15036011, -45.33879471 ], [ 169.13514709, -45.33160019 ], [ 169.12698364, -45.32250595 ], [ 169.11585999, -45.31985855 ], [ 169.113616940000014, -45.29787064 ], [ 169.08912659, -45.27058411 ], [ 169.08209229, -45.27248001 ], [ 169.03088379, -45.30319214 ], [ 168.978866579999988, -45.36236191 ], [ 168.94390869, -45.41131592 ], [ 168.92604065, -45.45003891 ], [ 168.91598511, -45.4583931 ], [ 168.901840209999989, -45.46219254 ], [ 168.879531859999986, -45.45686722 ], [ 168.874359129999988, -45.44129562 ], [ 168.88142395, -45.4393959 ], [ 168.86618042, -45.43217468 ], [ 168.8449707, -45.4378624 ], [ 168.846069340000014, -45.44887543 ], [ 168.81559753, -45.43442154 ], [ 168.79437256, -45.44010162 ], [ 168.79627991000001, -45.42263031 ], [ 168.7840271, -45.40894318 ], [ 168.79299927, -45.38958359 ], [ 168.78892517, -45.38502121 ], [ 168.79083252, -45.36755753 ], [ 168.786743159999986, -45.36299515 ], [ 168.76553345, -45.36866379 ], [ 168.738082889999987, -45.34774017 ], [ 168.70463562, -45.33971024 ], [ 168.710617070000012, -45.32680893 ], [ 168.717697140000013, -45.32492447 ], [ 168.71661377, -45.31391144 ], [ 168.70846558, -45.30478668 ], [ 168.71444702, -45.29188919 ], [ 168.702224730000012, -45.27820206 ], [ 168.70928955, -45.2763176 ], [ 168.692993159999986, -45.25806427 ], [ 168.69898987, -45.24517441 ], [ 168.687850950000012, -45.24249268 ], [ 168.65957642, -45.25002289 ], [ 168.66365051, -45.25458908 ], [ 168.649505620000014, -45.25835037 ], [ 168.65357971, -45.26291656 ], [ 168.63237, -45.26856232 ], [ 168.63644409, -45.27312851 ], [ 168.579849239999987, -45.28817749 ], [ 168.583923340000013, -45.2927475 ], [ 168.56976318, -45.29650497 ], [ 168.57383728, -45.30107498 ], [ 168.5526123, -45.30671692 ], [ 168.5566864, -45.31128311 ], [ 168.474700930000012, -45.32738876 ], [ 168.44937134, -45.32845306 ], [ 168.412872310000012, -45.32681656 ], [ 168.405792240000011, -45.32868958 ], [ 168.336837769999988, -45.32995987 ], [ 168.33172607, -45.31436157 ], [ 168.31546021, -45.29606247 ], [ 168.317443849999989, -45.27859497 ], [ 168.32350159, -45.26570511 ], [ 168.30317688, -45.242836 ], [ 168.309219359999986, -45.22994995 ], [ 168.3163147, -45.22808075 ], [ 168.30818176, -45.21893311 ], [ 168.29296875, -45.21165466 ], [ 168.2706604, -45.20623779 ], [ 168.26254272, -45.19709015 ], [ 168.272644039999989, -45.18878555 ], [ 168.25640869, -45.17049026 ], [ 168.24525452, -45.16777802 ], [ 168.255371090000011, -45.15947723 ], [ 168.24723816, -45.1503334 ], [ 168.229003909999989, -45.14948273 ], [ 168.23204041, -45.14304733 ], [ 168.24621582, -45.13932037 ], [ 168.25935364, -45.1245842 ], [ 168.258316040000011, -45.11357498 ], [ 168.2724762, -45.10984421 ], [ 168.26435852, -45.10070419 ], [ 168.28862, -45.08866501 ], [ 168.30278015, -45.08493042 ], [ 168.31184387, -45.06561661 ], [ 168.3037262, -45.05648041 ], [ 168.30569458, -45.03904343 ], [ 168.32286072, -45.02886963 ], [ 168.3106842, -45.01516724 ], [ 168.296539309999986, -45.01890182 ], [ 168.30059814, -45.02347183 ], [ 168.279373170000014, -45.02907562 ], [ 168.25408936, -45.03010559 ], [ 168.238891599999988, -45.02283096 ], [ 168.237854, -45.01182938 ], [ 168.22975159, -45.00269318 ], [ 168.22267151, -45.00455475 ], [ 168.20747375, -44.99727631 ], [ 168.18721008, -44.97443008 ], [ 168.19023132, -44.96800232 ], [ 168.17807007, -44.95429611 ], [ 168.15582275, -44.94887161 ], [ 168.15884399, -44.94244385 ], [ 168.1446991, -44.94615555 ], [ 168.142639159999987, -44.92416763 ], [ 168.15274048, -44.91589355 ], [ 168.14059448, -44.90218735 ], [ 168.139572140000013, -44.8911972 ], [ 168.12440491000001, -44.88391495 ], [ 168.13148499, -44.88206482 ], [ 168.123397829999988, -44.87292862 ], [ 168.13752747, -44.86922455 ], [ 168.12944031, -44.86009216 ], [ 168.141540529999986, -44.83441544 ], [ 168.18092346, -44.82969284 ], [ 168.17585754000001, -44.81414795 ], [ 168.18292236, -44.81228638 ], [ 168.19198608, -44.79302216 ], [ 168.20509338, -44.7783165 ], [ 168.19700623, -44.76919937 ], [ 168.20303345, -44.7563591 ], [ 168.217163090000014, -44.75262833 ], [ 168.209075930000012, -44.74351501 ], [ 168.19494629, -44.74724197 ], [ 168.178787230000012, -44.72901917 ], [ 168.17776489, -44.71804428 ], [ 168.187850950000012, -44.70976257 ], [ 168.17976379000001, -44.70065689 ], [ 168.18682861, -44.6987915 ], [ 168.19992065, -44.68409348 ], [ 168.20698547, -44.68222427 ], [ 168.19184875, -44.67498779 ], [ 168.2049408, -44.66028595 ], [ 168.19284058, -44.64663696 ], [ 168.203918460000011, -44.6493187 ], [ 168.212982180000012, -44.63006973 ], [ 168.20893860000001, -44.62552261 ], [ 168.222030640000014, -44.61081696 ], [ 168.217987060000013, -44.60627365 ], [ 168.23913574, -44.6006546 ], [ 168.231079099999988, -44.59156799 ], [ 168.23408508, -44.58515167 ], [ 168.2481842, -44.58140182 ], [ 168.24414063, -44.57686234 ], [ 168.25016785, -44.56402588 ], [ 168.24110413, -44.5439949 ], [ 168.25114441, -44.53570175 ], [ 168.26522827, -44.53194427 ], [ 168.26119995, -44.5274086 ], [ 168.282302859999987, -44.52176285 ], [ 168.29837036, -44.5006218 ], [ 168.31645203, -44.50138474 ], [ 168.33755493000001, -44.49573898 ], [ 168.341583250000014, -44.50027847 ], [ 168.3697052, -44.49276352 ], [ 168.39183044, -44.4981041 ], [ 168.39585876000001, -44.50265503 ], [ 168.42398071, -44.49516296 ], [ 168.42802429, -44.4997139 ], [ 168.46316528, -44.49036026 ], [ 168.46720886, -44.49491501 ], [ 168.481262210000011, -44.49117661 ], [ 168.491271970000014, -44.48288727 ], [ 168.512344359999986, -44.47728348 ], [ 168.51831055, -44.46443558 ], [ 168.57450867, -44.44951248 ], [ 168.59663391, -44.45490265 ], [ 168.602600099999989, -44.44205856 ], [ 168.63769531, -44.43274307 ], [ 168.64364624000001, -44.41989899 ], [ 168.664703370000012, -44.41431427 ], [ 168.67468262, -44.40603256 ], [ 168.67063904, -44.401474 ], [ 168.698715209999989, -44.39403152 ], [ 168.71086121, -44.40771103 ], [ 168.748107909999987, -44.42037201 ], [ 168.75512695, -44.41851044 ], [ 168.75, -44.40297318 ], [ 168.759979249999986, -44.3946991 ], [ 168.7950592, -44.38540649 ], [ 168.800979610000013, -44.37257385 ], [ 168.81500244, -44.36885834 ], [ 168.8109436, -44.36429977 ], [ 168.83198547, -44.35873032 ], [ 168.82794189, -44.35417175 ], [ 168.84196472, -44.35046005 ], [ 168.847869870000011, -44.33763123 ], [ 168.83976746, -44.32851028 ], [ 168.84677124000001, -44.32665634 ], [ 168.84567261, -44.31568146 ], [ 168.85565186, -44.30741501 ], [ 168.85159302, -44.30285263 ], [ 168.853439329999986, -44.28546143 ], [ 168.86340332, -44.27719498 ], [ 168.86524963, -44.25980759 ], [ 168.8600769, -44.24426651 ], [ 168.881103520000011, -44.23871613 ], [ 168.88293457, -44.22132492 ], [ 168.903945920000012, -44.21578598 ], [ 168.9150238, -44.21850586 ], [ 168.91796875, -44.21209335 ], [ 168.95298767, -44.20286942 ], [ 168.964050289999989, -44.20558929 ], [ 168.97805786, -44.20190048 ], [ 168.969940189999988, -44.19277954 ], [ 168.97694397, -44.19093323 ], [ 168.96882629000001, -44.18180847 ], [ 168.978759770000011, -44.1735611 ], [ 168.999786379999989, -44.16804123 ], [ 168.98352051, -44.14978409 ], [ 168.98646545, -44.14338303 ], [ 169.02848816, -44.13237 ], [ 169.02035522, -44.12324142 ], [ 169.02330017, -44.11684418 ], [ 169.037307739999989, -44.11317825 ], [ 169.041366579999988, -44.11774445 ], [ 169.076400760000013, -44.10858917 ], [ 169.08746338, -44.11131287 ], [ 169.08633423, -44.1003685 ], [ 169.149353029999986, -44.08388519 ], [ 169.15229797, -44.07750702 ], [ 169.16447449, -44.09114456 ], [ 169.16152954, -44.09752274 ], [ 169.16964722, -44.10660934 ], [ 169.18363953, -44.10293198 ], [ 169.187698360000013, -44.10747528 ], [ 169.21679688, -44.11102676 ], [ 169.24182129, -44.11003113 ], [ 169.26280212, -44.10450363 ], [ 169.2668457, -44.10903168 ], [ 169.28781128, -44.10349655 ], [ 169.29257202, -44.07986832 ], [ 169.306549069999988, -44.07618713 ], [ 169.29844666, -44.0671463 ], [ 169.326400760000013, -44.05978394 ], [ 169.34257507, -44.07784653 ], [ 169.339645389999987, -44.08420944 ], [ 169.35179138, -44.09775925 ], [ 169.348846439999988, -44.10412598 ], [ 169.366851809999986, -44.10493851 ], [ 169.37495422, -44.1139679 ], [ 169.38192749000001, -44.11211395 ], [ 169.390014650000012, -44.12114334 ], [ 169.40396118000001, -44.11743164 ], [ 169.3999176, -44.11291885 ], [ 169.420822140000013, -44.10735321 ], [ 169.416778560000012, -44.10284424 ], [ 169.44464111, -44.09542847 ], [ 169.4475708, -44.08906555 ], [ 169.46148682, -44.08535767 ], [ 169.46330261, -44.06814575 ], [ 169.47721863000001, -44.06444168 ], [ 169.47317505, -44.05994415 ], [ 169.494049069999988, -44.05438995 ], [ 169.49807739, -44.05888367 ], [ 169.51197815, -44.0551796 ], [ 169.51602173, -44.05967331 ], [ 169.52990723, -44.05596542 ], [ 169.53977966, -44.04776764 ], [ 169.53575134, -44.04327774 ], [ 169.57740784, -44.03215027 ], [ 169.58143616000001, -44.03663635 ], [ 169.59532166, -44.03292084 ], [ 169.594207759999989, -44.02209091 ], [ 169.609878540000011, -44.00120544 ], [ 169.59378052, -43.98327637 ], [ 169.60362244, -43.97507858 ], [ 169.59558105, -43.96611786 ], [ 169.60542297, -43.95792389 ], [ 169.60945129000001, -43.96240234 ], [ 169.63023376000001, -43.95682144 ], [ 169.64520264, -43.96391296 ], [ 169.672912599999989, -43.95645523 ], [ 169.67692566, -43.96092987 ], [ 169.69769287, -43.95532608 ], [ 169.69769287, -43.95532608 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.12", "id_1": 12, "name_1": "Southland", "hasc_1": "NZ.SO", "population2022": 102400, "areakm2": 32794.846, "density2022": 3.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 169.12677002, -52.61396027 ], [ 169.12611389, -52.62083435 ], [ 169.12013245, -52.61728668 ], [ 169.12677002, -52.61396027 ], [ 169.12677002, -52.61396027 ] ] ], [ [ [ 169.13444519, -52.61555481 ], [ 169.131347659999989, -52.61441422 ], [ 169.13412476, -52.61233521 ], [ 169.13444519, -52.61555481 ], [ 169.13444519, -52.61555481 ] ] ], [ [ [ 169.066894530000013, -52.5814743 ], [ 169.063125609999986, -52.5814743 ], [ 169.06387329, -52.57950211 ], [ 169.066894530000013, -52.5814743 ], [ 169.066894530000013, -52.5814743 ] ] ], [ [ [ 169.018753049999987, -52.57892227 ], [ 169.01661682, -52.57679749 ], [ 169.02038574, -52.57619095 ], [ 169.018753049999987, -52.57892227 ], [ 169.018753049999987, -52.57892227 ] ] ], [ [ [ 169.05062866, -52.57239914 ], [ 169.04559326, -52.57065582 ], [ 169.0488739, -52.56921005 ], [ 169.05062866, -52.57239914 ], [ 169.05062866, -52.57239914 ] ] ], [ [ [ 168.98445129000001, -52.55656433 ], [ 168.982772829999988, -52.55666733 ], [ 168.98452759, -52.55488968 ], [ 168.98445129000001, -52.55656433 ], [ 168.98445129000001, -52.55656433 ] ] ], [ [ [ 169.02105713, -52.55053711 ], [ 169.02319336, -52.55211258 ], [ 169.02035522, -52.55222321 ], [ 169.02105713, -52.55053711 ], [ 169.02105713, -52.55053711 ] ] ], [ [ [ 168.990997310000012, -52.55332184 ], [ 168.98886108, -52.5508194 ], [ 168.993225099999989, -52.54926682 ], [ 168.990997310000012, -52.55332184 ], [ 168.990997310000012, -52.55332184 ] ] ], [ [ [ 169.01605225, -52.54030228 ], [ 169.01365662, -52.53992462 ], [ 169.01580811, -52.53848267 ], [ 169.01605225, -52.54030228 ], [ 169.01605225, -52.54030228 ] ] ], [ [ [ 169.06503296, -52.52045059 ], [ 169.06784058, -52.52521133 ], [ 169.060760499999986, -52.52323532 ], [ 169.06503296, -52.52045059 ], [ 169.06503296, -52.52045059 ] ] ], [ [ [ 169.13273621, -52.5079155 ], [ 169.129959109999987, -52.50776291 ], [ 169.13160706, -52.5057869 ], [ 169.13273621, -52.5079155 ], [ 169.13273621, -52.5079155 ] ] ], [ [ [ 169.24336243, -52.50587082 ], [ 169.24134827, -52.50511169 ], [ 169.24601746, -52.50526428 ], [ 169.24336243, -52.50587082 ], [ 169.24336243, -52.50587082 ] ] ], [ [ [ 169.1245575, -52.50442123 ], [ 169.12115479, -52.50336075 ], [ 169.12492371, -52.50252533 ], [ 169.1245575, -52.50442123 ], [ 169.1245575, -52.50442123 ] ] ], [ [ [ 169.12957764, -52.46721268 ], [ 169.13146973, -52.46971893 ], [ 169.12680054, -52.47078323 ], [ 169.12957764, -52.46721268 ], [ 169.12957764, -52.46721268 ] ] ], [ [ [ 169.201232909999987, -52.46813202 ], [ 169.21292114, -52.46677017 ], [ 169.22833252, -52.47138977 ], [ 169.21751404, -52.48914719 ], [ 169.22129822, -52.50331497 ], [ 169.238601679999988, -52.50585556 ], [ 169.220611569999988, -52.51276398 ], [ 169.1953125, -52.5154953 ], [ 169.19833374000001, -52.51916504 ], [ 169.232223510000011, -52.51361084 ], [ 169.24087524, -52.51010513 ], [ 169.238082889999987, -52.51901245 ], [ 169.24357605, -52.52617264 ], [ 169.23300171, -52.53229141 ], [ 169.232498170000014, -52.54244995 ], [ 169.24124146, -52.54659271 ], [ 169.26477051, -52.54841614 ], [ 169.262146, -52.56367493 ], [ 169.237228390000013, -52.56397629 ], [ 169.21598816, -52.54841232 ], [ 169.2086792, -52.5455246 ], [ 169.1574707, -52.54486084 ], [ 169.14720154, -52.55529785 ], [ 169.135665890000013, -52.55550003 ], [ 169.1333313, -52.56138992 ], [ 169.173339840000011, -52.55222321 ], [ 169.18055725, -52.55555725 ], [ 169.203887939999987, -52.55833435 ], [ 169.24221802, -52.57444382 ], [ 169.22111511, -52.59111023 ], [ 169.2084198, -52.59686279 ], [ 169.2069397, -52.60213852 ], [ 169.173629760000011, -52.59104156 ], [ 169.181442260000011, -52.6032753 ], [ 169.15419006, -52.60662842 ], [ 169.14707947, -52.59559631 ], [ 169.133163450000012, -52.60307693 ], [ 169.12512207, -52.59921265 ], [ 169.12690735000001, -52.58967209 ], [ 169.10871887, -52.58547592 ], [ 169.103881840000014, -52.58083344 ], [ 169.090774540000012, -52.57884598 ], [ 169.09443665, -52.57535553 ], [ 169.07878113000001, -52.56341171 ], [ 169.05726624, -52.56196976 ], [ 169.03988647, -52.56422043 ], [ 169.02522278, -52.54926682 ], [ 169.01564026, -52.54436874 ], [ 169.03166199, -52.53583145 ], [ 169.04684448, -52.53196335 ], [ 169.05726624, -52.54144669 ], [ 169.08131409, -52.54029846 ], [ 169.078338620000011, -52.54499817 ], [ 169.09942627, -52.54987717 ], [ 169.11166382, -52.54333496 ], [ 169.12110901, -52.53027725 ], [ 169.12832642, -52.52972412 ], [ 169.135116579999988, -52.5173111 ], [ 169.13082886, -52.51396942 ], [ 169.151474, -52.49682999 ], [ 169.15791321, -52.485569 ], [ 169.147964480000013, -52.48008347 ], [ 169.13537598, -52.47947693 ], [ 169.142669680000012, -52.47454071 ], [ 169.17062378, -52.47833633 ], [ 169.173767090000013, -52.47350693 ], [ 169.186859129999988, -52.47541428 ], [ 169.19142151, -52.46679306 ], [ 169.201232909999987, -52.46813202 ], [ 169.201232909999987, -52.46813202 ] ] ], [ [ [ 165.923889159999987, -50.84194565 ], [ 165.92999268, -50.84777832 ], [ 165.94055176, -50.84860992 ], [ 165.9694519, -50.86249924 ], [ 165.98832703, -50.86639023 ], [ 165.9972229, -50.86249924 ], [ 166.02610779, -50.86527634 ], [ 166.044998170000014, -50.85916519 ], [ 166.05667114, -50.86527634 ], [ 166.06388855, -50.85388947 ], [ 166.073883059999986, -50.84833145 ], [ 166.08999634, -50.85416794 ], [ 166.136108400000012, -50.86111069 ], [ 166.148895259999989, -50.86111069 ], [ 166.19166565, -50.87277603 ], [ 166.20832825, -50.88194275 ], [ 166.201660159999989, -50.88583374 ], [ 166.167770389999987, -50.88360977 ], [ 166.17944336, -50.89222336 ], [ 166.1713562, -50.89511108 ], [ 166.18063354, -50.90125275 ], [ 166.13787842, -50.91610336 ], [ 166.12110901, -50.9094429 ], [ 166.08666992, -50.89166641 ], [ 166.09944153, -50.90444565 ], [ 166.11444092, -50.90916824 ], [ 166.125, -50.91916656 ], [ 166.11647034, -50.92429733 ], [ 166.09370422, -50.92824936 ], [ 166.07167053, -50.92972183 ], [ 166.06944275, -50.92499924 ], [ 166.03552246000001, -50.90975189 ], [ 166.025588989999989, -50.90759277 ], [ 166.025604249999986, -50.91584015 ], [ 166.00228882, -50.91467667 ], [ 165.99884033, -50.90832138 ], [ 165.985961909999986, -50.90498734 ], [ 165.95552063, -50.90320587 ], [ 165.94975281, -50.89507294 ], [ 165.955017090000013, -50.89213181 ], [ 165.95343018, -50.88198471 ], [ 165.948028560000012, -50.88051224 ], [ 165.9405365, -50.89135742 ], [ 165.915252689999988, -50.88709641 ], [ 165.917343140000014, -50.87268829 ], [ 165.9105835, -50.8724556 ], [ 165.91279602, -50.8625412 ], [ 165.897827150000012, -50.85673523 ], [ 165.905929570000012, -50.85115814 ], [ 165.91891479, -50.85096741 ], [ 165.91111755, -50.84388733 ], [ 165.915802, -50.83685684 ], [ 165.923889159999987, -50.84194565 ], [ 165.923889159999987, -50.84194565 ] ] ], [ [ [ 166.02278137, -50.60694504 ], [ 166.02166748, -50.60499954 ], [ 166.03001404, -50.60396576 ], [ 166.02278137, -50.60694504 ], [ 166.02278137, -50.60694504 ] ] ], [ [ [ 166.31944275, -50.57500076 ], [ 166.32444763, -50.57611084 ], [ 166.32333374000001, -50.57916641 ], [ 166.31944275, -50.57500076 ], [ 166.31944275, -50.57500076 ] ] ], [ [ [ 166.362777709999989, -50.56694412 ], [ 166.358886719999987, -50.5672226 ], [ 166.36166382, -50.5652771 ], [ 166.362777709999989, -50.56694412 ], [ 166.362777709999989, -50.56694412 ] ] ], [ [ [ 166.301116940000014, -50.52444458 ], [ 166.31166077, -50.52472305 ], [ 166.30888367, -50.53333282 ], [ 166.292770389999987, -50.53055573 ], [ 166.301116940000014, -50.52444458 ], [ 166.301116940000014, -50.52444458 ] ] ], [ [ [ 166.178894039999989, -50.51194382 ], [ 166.18722534, -50.51416779 ], [ 166.202774049999988, -50.52583313 ], [ 166.206115720000014, -50.51916504 ], [ 166.21888733, -50.51333237 ], [ 166.232223510000011, -50.51805496 ], [ 166.226104740000011, -50.52083206 ], [ 166.22055054, -50.53250122 ], [ 166.21221924, -50.53861237 ], [ 166.21722412, -50.54861069 ], [ 166.19944763, -50.55138779 ], [ 166.171661379999989, -50.55916595 ], [ 166.18444824, -50.56194305 ], [ 166.19778442, -50.5577774 ], [ 166.22277832, -50.5569458 ], [ 166.23832703, -50.54916763 ], [ 166.24221802, -50.54333496 ], [ 166.267227170000012, -50.52944565 ], [ 166.27610779, -50.54055405 ], [ 166.29055786, -50.53944397 ], [ 166.27610779, -50.54999924 ], [ 166.261108400000012, -50.55194473 ], [ 166.261108400000012, -50.55555725 ], [ 166.2749939, -50.55611038 ], [ 166.2722168, -50.56305695 ], [ 166.28166199, -50.56277847 ], [ 166.27667236, -50.57833481 ], [ 166.28666687, -50.58166504 ], [ 166.25332642, -50.58388901 ], [ 166.233886719999987, -50.57916641 ], [ 166.21388245, -50.58111191 ], [ 166.21086121, -50.58403397 ], [ 166.22389221, -50.59027863 ], [ 166.21278381, -50.5969429 ], [ 166.21166992, -50.60416794 ], [ 166.237777709999989, -50.60388947 ], [ 166.243896479999989, -50.60777664 ], [ 166.21556091, -50.63027954 ], [ 166.20555115, -50.6269455 ], [ 166.19000244, -50.61527634 ], [ 166.173339840000011, -50.60666656 ], [ 166.167221070000011, -50.61416626 ], [ 166.181289670000012, -50.61894608 ], [ 166.203887939999987, -50.63722229 ], [ 166.171661379999989, -50.63194275 ], [ 166.19555664, -50.63888931 ], [ 166.201110840000013, -50.64611053 ], [ 166.18888855, -50.64666748 ], [ 166.19111633, -50.65083313 ], [ 166.21055603, -50.6558342 ], [ 166.202224730000012, -50.66249847 ], [ 166.18333435, -50.6594429 ], [ 166.167221070000011, -50.65194321 ], [ 166.172775269999988, -50.66833496 ], [ 166.19166565, -50.67583466 ], [ 166.18333435, -50.6827774 ], [ 166.16221619, -50.68111038 ], [ 166.15055847, -50.68333435 ], [ 166.16278076, -50.68722153 ], [ 166.145004269999987, -50.69250107 ], [ 166.12832642, -50.70333481 ], [ 166.13000488, -50.70639038 ], [ 166.141662599999989, -50.69777679 ], [ 166.17778015, -50.69166565 ], [ 166.20832825, -50.69861221 ], [ 166.19833374000001, -50.71027756 ], [ 166.19778442, -50.71749878 ], [ 166.18666077, -50.71888733 ], [ 166.16833496000001, -50.71250153 ], [ 166.137771609999987, -50.70861053 ], [ 166.115005489999987, -50.71305466 ], [ 166.080001829999986, -50.71666718 ], [ 166.081115720000014, -50.72000122 ], [ 166.11610413, -50.71749878 ], [ 166.130615229999989, -50.71307755 ], [ 166.152771, -50.71500015 ], [ 166.16667175, -50.7219429 ], [ 166.16000366, -50.7294426 ], [ 166.1444397, -50.72861099 ], [ 166.146118159999986, -50.73361206 ], [ 166.1222229, -50.73722076 ], [ 166.12889099, -50.73916626 ], [ 166.14833069, -50.73722076 ], [ 166.16667175, -50.73138809 ], [ 166.19389343, -50.74166489 ], [ 166.18888855, -50.75 ], [ 166.171112060000013, -50.75638962 ], [ 166.15722656, -50.76555634 ], [ 166.13278198, -50.77639008 ], [ 166.15222168, -50.77222061 ], [ 166.171661379999989, -50.76055527 ], [ 166.19868469, -50.75228882 ], [ 166.21777344, -50.76472092 ], [ 166.22111511, -50.77416611 ], [ 166.20837402, -50.77991486 ], [ 166.21444702, -50.78499985 ], [ 166.19389343, -50.79000092 ], [ 166.22555542, -50.79055405 ], [ 166.21722412, -50.79861069 ], [ 166.18943787, -50.79999924 ], [ 166.173889159999987, -50.80611038 ], [ 166.19332886, -50.80277634 ], [ 166.22277832, -50.80277634 ], [ 166.23167419, -50.80749893 ], [ 166.2250061, -50.81111145 ], [ 166.20173645, -50.81561279 ], [ 166.21722412, -50.81666565 ], [ 166.2416687, -50.82416534 ], [ 166.24610901, -50.83055496 ], [ 166.240005489999987, -50.84083176 ], [ 166.229995730000013, -50.84277725 ], [ 166.24221802, -50.84860992 ], [ 166.22332764, -50.86166763 ], [ 166.19407654, -50.8606987 ], [ 166.19013977, -50.86538696 ], [ 166.171112060000013, -50.86089325 ], [ 166.17295837, -50.85741043 ], [ 166.141113280000013, -50.84722137 ], [ 166.10945129000001, -50.83333206 ], [ 166.11166382, -50.82666779 ], [ 166.09165955, -50.82277679 ], [ 166.09277344, -50.8144455 ], [ 166.07943726, -50.80749893 ], [ 166.071105960000011, -50.80888748 ], [ 166.07221985000001, -50.82611084 ], [ 166.05944824, -50.82444382 ], [ 166.05166626, -50.83222198 ], [ 166.03666687, -50.82416534 ], [ 166.06944275, -50.8077774 ], [ 166.05944824, -50.79999924 ], [ 166.06166077, -50.7863884 ], [ 166.05722046, -50.78138733 ], [ 166.05944824, -50.75999832 ], [ 166.03611755, -50.76139069 ], [ 166.020004269999987, -50.75333405 ], [ 166.018890379999988, -50.7452774 ], [ 166.009994510000013, -50.74944305 ], [ 166.01167297, -50.76083374 ], [ 166.00666809, -50.77027893 ], [ 166.018890379999988, -50.77555466 ], [ 166.03443909, -50.78749847 ], [ 166.039993290000012, -50.79555511 ], [ 166.03666687, -50.80444336 ], [ 166.027771, -50.80722046 ], [ 166.011108400000012, -50.79861069 ], [ 166.00666809, -50.78722382 ], [ 165.992385860000013, -50.77213669 ], [ 165.99508667, -50.77996063 ], [ 165.98294067, -50.78437424 ], [ 165.99717712, -50.79250717 ], [ 166.00222778, -50.80222321 ], [ 166.013885499999986, -50.8077774 ], [ 166.016662599999989, -50.81861115 ], [ 166.009994510000013, -50.82194519 ], [ 165.997543330000013, -50.81675339 ], [ 166.00721741000001, -50.83250046 ], [ 166.01554871, -50.83527756 ], [ 166.020004269999987, -50.84749985 ], [ 166.014999390000014, -50.85277939 ], [ 165.982223510000011, -50.85250092 ], [ 165.97944641, -50.85583496 ], [ 165.96388245, -50.8488884 ], [ 165.955001829999986, -50.84833145 ], [ 165.94778442, -50.8405571 ], [ 165.92999268, -50.83805466 ], [ 165.930450439999987, -50.82954025 ], [ 165.923339840000011, -50.82694626 ], [ 165.919433590000011, -50.812603 ], [ 165.91555786, -50.83111191 ], [ 165.882019039999989, -50.84101105 ], [ 165.8881073, -50.83495712 ], [ 165.87805176, -50.82519531 ], [ 165.883453370000012, -50.81930923 ], [ 165.86833191, -50.80028534 ], [ 165.88032532, -50.79495621 ], [ 165.88949585, -50.77975845 ], [ 165.87757874, -50.76961136 ], [ 165.89268494, -50.7677536 ], [ 165.917770389999987, -50.75860977 ], [ 165.93330383, -50.75839996 ], [ 165.93005371000001, -50.74862289 ], [ 165.934097290000011, -50.74490356 ], [ 165.943557739999989, -50.74986267 ], [ 165.948593140000014, -50.74389648 ], [ 165.96035767, -50.74007034 ], [ 165.962402340000011, -50.73134613 ], [ 165.96989441, -50.73796082 ], [ 165.97657776, -50.72472 ], [ 165.9887085, -50.72781372 ], [ 166.00500488, -50.71834183 ], [ 166.027771, -50.71583176 ], [ 166.046661379999989, -50.70111084 ], [ 166.048339840000011, -50.69694519 ], [ 166.07130432, -50.6864624 ], [ 166.069702150000012, -50.67557144 ], [ 166.082778929999989, -50.67305374 ], [ 166.08555603, -50.6669426 ], [ 166.076660159999989, -50.66305542 ], [ 166.06832886, -50.64500046 ], [ 166.07333374000001, -50.62666702 ], [ 166.08944702, -50.61166763 ], [ 166.08666992, -50.60388947 ], [ 166.09611511, -50.59749985 ], [ 166.09944153, -50.58416748 ], [ 166.09666443, -50.5680542 ], [ 166.063003540000011, -50.57144547 ], [ 166.06066895, -50.56238174 ], [ 166.09376526, -50.56018829 ], [ 166.09165955, -50.55222321 ], [ 166.06832886, -50.54111099 ], [ 166.06793213, -50.53614044 ], [ 166.03910828, -50.54642105 ], [ 166.034683230000013, -50.54239273 ], [ 166.05332947, -50.5344429 ], [ 166.06555176, -50.52527618 ], [ 166.07167053, -50.5280571 ], [ 166.08778381, -50.52277756 ], [ 166.103881840000014, -50.52666855 ], [ 166.11778259, -50.52277756 ], [ 166.11839294, -50.51269913 ], [ 166.12944031, -50.50913239 ], [ 166.137771609999987, -50.51250076 ], [ 166.12445068, -50.5336113 ], [ 166.137222290000011, -50.52722168 ], [ 166.14944458, -50.51166534 ], [ 166.16056824, -50.52189255 ], [ 166.173339840000011, -50.51889038 ], [ 166.173889159999987, -50.50888824 ], [ 166.178894039999989, -50.51194382 ], [ 166.178894039999989, -50.51194382 ] ] ], [ [ [ 166.25222778, -50.50611115 ], [ 166.25778198, -50.50777817 ], [ 166.25389099, -50.51916504 ], [ 166.240005489999987, -50.51833344 ], [ 166.25222778, -50.50611115 ], [ 166.25222778, -50.50611115 ] ] ], [ [ [ 166.30444336, -50.48444366 ], [ 166.32055664, -50.49083328 ], [ 166.32444763, -50.50055695 ], [ 166.32055664, -50.50666809 ], [ 166.292221070000011, -50.50500107 ], [ 166.28166199, -50.50027847 ], [ 166.267227170000012, -50.50972366 ], [ 166.26445007, -50.49388885 ], [ 166.28166199, -50.48749924 ], [ 166.298889159999987, -50.48888779 ], [ 166.30444336, -50.48444366 ], [ 166.30444336, -50.48444366 ] ] ], [ [ [ 166.50639343, -48.05888748 ], [ 166.49583435, -48.06416702 ], [ 166.50111389, -48.05833435 ], [ 166.50639343, -48.05888748 ], [ 166.50639343, -48.05888748 ] ] ], [ [ [ 166.51445007, -48.05222321 ], [ 166.51805115, -48.05361176 ], [ 166.511108400000012, -48.05749893 ], [ 166.51445007, -48.05222321 ], [ 166.51445007, -48.05222321 ] ] ], [ [ [ 166.62277222, -48.0391655 ], [ 166.63000488, -48.04416656 ], [ 166.61305237, -48.04222107 ], [ 166.62277222, -48.0391655 ], [ 166.62277222, -48.0391655 ] ] ], [ [ [ 166.605270389999987, -48.01361084 ], [ 166.6166687, -48.02944565 ], [ 166.612503049999987, -48.03972244 ], [ 166.6000061, -48.02916718 ], [ 166.58947754, -48.0353241 ], [ 166.571105960000011, -48.0391655 ], [ 166.573303220000014, -48.02840042 ], [ 166.58898926, -48.02861023 ], [ 166.605270389999987, -48.01361084 ], [ 166.605270389999987, -48.01361084 ] ] ], [ [ [ 166.604995730000013, -48.00999832 ], [ 166.605270389999987, -48.01277924 ], [ 166.602493290000012, -48.01111221 ], [ 166.604995730000013, -48.00999832 ], [ 166.604995730000013, -48.00999832 ] ] ], [ [ [ 167.5, -47.28944397 ], [ 167.49694824, -47.28888702 ], [ 167.49977112, -47.28827667 ], [ 167.5, -47.28944397 ], [ 167.5, -47.28944397 ] ] ], [ [ [ 167.57920837, -47.27503586 ], [ 167.57574463, -47.27414703 ], [ 167.57756042, -47.27342987 ], [ 167.57920837, -47.27503586 ], [ 167.57920837, -47.27503586 ] ] ], [ [ [ 167.397384640000013, -47.26433563 ], [ 167.396392819999988, -47.27166748 ], [ 167.39039612, -47.26906204 ], [ 167.397384640000013, -47.26433563 ], [ 167.397384640000013, -47.26433563 ] ] ], [ [ [ 167.45350647, -47.25245285 ], [ 167.45225525, -47.25150299 ], [ 167.45474243000001, -47.25172806 ], [ 167.45350647, -47.25245285 ], [ 167.45350647, -47.25245285 ] ] ], [ [ [ 167.43817139, -47.24180984 ], [ 167.43864441, -47.24065399 ], [ 167.43963623, -47.24137878 ], [ 167.43817139, -47.24180984 ], [ 167.43817139, -47.24180984 ] ] ], [ [ [ 167.65989685, -47.24184418 ], [ 167.6567688, -47.24057388 ], [ 167.660797120000012, -47.23722839 ], [ 167.65989685, -47.24184418 ], [ 167.65989685, -47.24184418 ] ] ], [ [ [ 167.61784363000001, -47.23750687 ], [ 167.616439820000011, -47.23683929 ], [ 167.617935179999989, -47.23656082 ], [ 167.61784363000001, -47.23750687 ], [ 167.61784363000001, -47.23750687 ] ] ], [ [ [ 167.34750366, -47.23110962 ], [ 167.34971619, -47.23277664 ], [ 167.34527588, -47.23277664 ], [ 167.34750366, -47.23110962 ], [ 167.34750366, -47.23110962 ] ] ], [ [ [ 167.35194397, -47.23138809 ], [ 167.35083008, -47.23249817 ], [ 167.3500061, -47.22999954 ], [ 167.35194397, -47.23138809 ], [ 167.35194397, -47.23138809 ] ] ], [ [ [ 167.35444641, -47.22888947 ], [ 167.35583496000001, -47.23138809 ], [ 167.352493290000012, -47.22972107 ], [ 167.35444641, -47.22888947 ], [ 167.35444641, -47.22888947 ] ] ], [ [ [ 167.36805725, -47.2286644 ], [ 167.36555481, -47.2294426 ], [ 167.36616516, -47.22766495 ], [ 167.36805725, -47.2286644 ], [ 167.36805725, -47.2286644 ] ] ], [ [ [ 167.36416626, -47.22777939 ], [ 167.36050415, -47.23075485 ], [ 167.362777709999989, -47.22638702 ], [ 167.36416626, -47.22777939 ], [ 167.36416626, -47.22777939 ] ] ], [ [ [ 167.37382507, -47.22800064 ], [ 167.37091064, -47.22599792 ], [ 167.37417603, -47.22644424 ], [ 167.37382507, -47.22800064 ], [ 167.37382507, -47.22800064 ] ] ], [ [ [ 167.43235779, -47.2241745 ], [ 167.440902709999989, -47.22929764 ], [ 167.43916321, -47.23777771 ], [ 167.43147278, -47.23591614 ], [ 167.42718506, -47.24356079 ], [ 167.40177917, -47.25461578 ], [ 167.400619510000013, -47.26068497 ], [ 167.38896179, -47.25841141 ], [ 167.37693787, -47.24869919 ], [ 167.39219666, -47.23535156 ], [ 167.41088867, -47.22619247 ], [ 167.43235779, -47.2241745 ], [ 167.43235779, -47.2241745 ] ] ], [ [ [ 167.37727356, -47.22216415 ], [ 167.3777771, -47.22360992 ], [ 167.375, -47.22333145 ], [ 167.37727356, -47.22216415 ], [ 167.37727356, -47.22216415 ] ] ], [ [ [ 167.44085693, -47.22248077 ], [ 167.42977905, -47.22219467 ], [ 167.432968140000014, -47.21888733 ], [ 167.44085693, -47.22248077 ], [ 167.44085693, -47.22248077 ] ] ], [ [ [ 167.331115720000014, -47.21722412 ], [ 167.325927729999989, -47.22938919 ], [ 167.31893921, -47.2266655 ], [ 167.331115720000014, -47.21722412 ], [ 167.331115720000014, -47.21722412 ] ] ], [ [ [ 167.63980103, -47.21798706 ], [ 167.63821411, -47.21854401 ], [ 167.637634279999986, -47.21754074 ], [ 167.63980103, -47.21798706 ], [ 167.63980103, -47.21798706 ] ] ], [ [ [ 167.626724239999987, -47.21411133 ], [ 167.62472534, -47.2136116 ], [ 167.62602234, -47.21272278 ], [ 167.626724239999987, -47.21411133 ], [ 167.626724239999987, -47.21411133 ] ] ], [ [ [ 167.48071289, -47.21049118 ], [ 167.47805786, -47.21155167 ], [ 167.4786377, -47.21049118 ], [ 167.48071289, -47.21049118 ], [ 167.48071289, -47.21049118 ] ] ], [ [ [ 167.387222290000011, -47.20916748 ], [ 167.39952087, -47.21683884 ], [ 167.386917110000013, -47.22244263 ], [ 167.37536621000001, -47.21959305 ], [ 167.387222290000011, -47.20916748 ], [ 167.387222290000011, -47.20916748 ] ] ], [ [ [ 167.482498170000014, -47.20722198 ], [ 167.48445129000001, -47.20888901 ], [ 167.482223510000011, -47.20916748 ], [ 167.482498170000014, -47.20722198 ], [ 167.482498170000014, -47.20722198 ] ] ], [ [ [ 167.657302859999987, -47.20727158 ], [ 167.669723510000011, -47.2136116 ], [ 167.667175289999989, -47.22390366 ], [ 167.66130066, -47.22400665 ], [ 167.651474, -47.20884323 ], [ 167.657302859999987, -47.20727158 ], [ 167.657302859999987, -47.20727158 ] ] ], [ [ [ 167.454833979999989, -47.20213318 ], [ 167.452926639999987, -47.20486832 ], [ 167.449691769999987, -47.20293045 ], [ 167.454833979999989, -47.20213318 ], [ 167.454833979999989, -47.20213318 ] ] ], [ [ [ 167.67382813, -47.19886398 ], [ 167.68278503, -47.19972229 ], [ 167.67832947, -47.21222305 ], [ 167.65943909, -47.20527649 ], [ 167.67382813, -47.19886398 ], [ 167.67382813, -47.19886398 ] ] ], [ [ [ 167.78457642, -47.19394684 ], [ 167.783111569999988, -47.19411469 ], [ 167.782699580000013, -47.1918335 ], [ 167.78457642, -47.19394684 ], [ 167.78457642, -47.19394684 ] ] ], [ [ [ 167.78393555, -47.18997574 ], [ 167.7817688, -47.19002914 ], [ 167.78208923, -47.18875885 ], [ 167.78393555, -47.18997574 ], [ 167.78393555, -47.18997574 ] ] ], [ [ [ 167.707962040000012, -47.18030167 ], [ 167.724105830000013, -47.18801498 ], [ 167.72555542, -47.19333267 ], [ 167.71638489, -47.19666672 ], [ 167.71694946, -47.20249939 ], [ 167.70555115, -47.20972061 ], [ 167.6985321, -47.20748138 ], [ 167.70246887, -47.19822311 ], [ 167.689544680000012, -47.18768311 ], [ 167.69993591, -47.17755508 ], [ 167.707962040000012, -47.18030167 ], [ 167.707962040000012, -47.18030167 ] ] ], [ [ [ 167.538604740000011, -47.17555618 ], [ 167.53833008, -47.17777634 ], [ 167.534729, -47.17638779 ], [ 167.538604740000011, -47.17555618 ], [ 167.538604740000011, -47.17555618 ] ] ], [ [ [ 167.508605960000011, -47.17083359 ], [ 167.506347659999989, -47.17029572 ], [ 167.50971985000001, -47.16860962 ], [ 167.508605960000011, -47.17083359 ], [ 167.508605960000011, -47.17083359 ] ] ], [ [ [ 167.518615720000014, -47.16527939 ], [ 167.51689148, -47.16761017 ], [ 167.51445007, -47.16666794 ], [ 167.518615720000014, -47.16527939 ], [ 167.518615720000014, -47.16527939 ] ] ], [ [ [ 167.701110840000013, -47.16110992 ], [ 167.69917297, -47.16027832 ], [ 167.70083618000001, -47.1594429 ], [ 167.701110840000013, -47.16110992 ], [ 167.701110840000013, -47.16110992 ] ] ], [ [ [ 167.414855960000011, -47.13747787 ], [ 167.41841125, -47.14006805 ], [ 167.4158783, -47.14207458 ], [ 167.414855960000011, -47.13747787 ], [ 167.414855960000011, -47.13747787 ] ] ], [ [ [ 167.51832581, -47.13861084 ], [ 167.512496950000013, -47.13944626 ], [ 167.517227170000012, -47.13639069 ], [ 167.51832581, -47.13861084 ], [ 167.51832581, -47.13861084 ] ] ], [ [ [ 167.52737427, -47.13625336 ], [ 167.52149963, -47.13922119 ], [ 167.523773190000014, -47.13506317 ], [ 167.52737427, -47.13625336 ], [ 167.52737427, -47.13625336 ] ] ], [ [ [ 167.40638733, -47.13499832 ], [ 167.40805054, -47.15416718 ], [ 167.39694214, -47.14444351 ], [ 167.40638733, -47.13499832 ], [ 167.40638733, -47.13499832 ] ] ], [ [ [ 167.56735229, -47.13651657 ], [ 167.56616211, -47.13214493 ], [ 167.57038879000001, -47.13142776 ], [ 167.56735229, -47.13651657 ], [ 167.56735229, -47.13651657 ] ] ], [ [ [ 167.53805542, -47.12888718 ], [ 167.53833008, -47.13138962 ], [ 167.53416443, -47.13000107 ], [ 167.53805542, -47.12888718 ], [ 167.53805542, -47.12888718 ] ] ], [ [ [ 168.210311890000014, -47.12322617 ], [ 168.20956421, -47.12093735 ], [ 168.21221924, -47.1202774 ], [ 168.210311890000014, -47.12322617 ], [ 168.210311890000014, -47.12322617 ] ] ], [ [ [ 168.15039063, -47.11911774 ], [ 168.16194153, -47.12611008 ], [ 168.14944458, -47.1258316 ], [ 168.15039063, -47.11911774 ], [ 168.15039063, -47.11911774 ] ] ], [ [ [ 167.553771970000014, -47.11626053 ], [ 167.55667114, -47.11972046 ], [ 167.54852295, -47.12198639 ], [ 167.553771970000014, -47.11626053 ], [ 167.553771970000014, -47.11626053 ] ] ], [ [ [ 167.549728390000013, -47.11750031 ], [ 167.54804993, -47.11777878 ], [ 167.54943848, -47.11583328 ], [ 167.549728390000013, -47.11750031 ], [ 167.549728390000013, -47.11750031 ] ] ], [ [ [ 168.207504269999987, -47.11416626 ], [ 168.21194458, -47.11639023 ], [ 168.208892819999988, -47.11999893 ], [ 168.207504269999987, -47.11416626 ], [ 168.207504269999987, -47.11416626 ] ] ], [ [ [ 168.20195007, -47.11222076 ], [ 168.201660159999989, -47.11639023 ], [ 168.19778442, -47.11333466 ], [ 168.20195007, -47.11222076 ], [ 168.20195007, -47.11222076 ] ] ], [ [ [ 168.19917297, -47.11055374 ], [ 168.19781494, -47.10887146 ], [ 168.200119019999988, -47.10957336 ], [ 168.19917297, -47.11055374 ], [ 168.19917297, -47.11055374 ] ] ], [ [ [ 168.15759277, -47.10903549 ], [ 168.15805054, -47.11111069 ], [ 168.15501404, -47.10842133 ], [ 168.15759277, -47.10903549 ], [ 168.15759277, -47.10903549 ] ] ], [ [ [ 168.201660159999989, -47.10194397 ], [ 168.203338620000011, -47.10833359 ], [ 168.19639587, -47.1044426 ], [ 168.201660159999989, -47.10194397 ], [ 168.201660159999989, -47.10194397 ] ] ], [ [ [ 168.15446472, -47.0867424 ], [ 168.15113831, -47.08707428 ], [ 168.15097046, -47.08629608 ], [ 168.15446472, -47.0867424 ], [ 168.15446472, -47.0867424 ] ] ], [ [ [ 168.21861267, -47.07083511 ], [ 168.2277832, -47.07416534 ], [ 168.21499634, -47.07527924 ], [ 168.21861267, -47.07083511 ], [ 168.21861267, -47.07083511 ] ] ], [ [ [ 168.21873474, -47.05986786 ], [ 168.21556091, -47.0625 ], [ 168.21360779, -47.06000137 ], [ 168.21873474, -47.05986786 ], [ 168.21873474, -47.05986786 ] ] ], [ [ [ 168.22724915, -47.02205658 ], [ 168.22917175, -47.0233345 ], [ 168.227325439999987, -47.02412033 ], [ 168.22724915, -47.02205658 ], [ 168.22724915, -47.02205658 ] ] ], [ [ [ 168.11213684, -46.99040604 ], [ 168.110305790000012, -46.98958206 ], [ 168.111389159999987, -46.98749924 ], [ 168.11213684, -46.99040604 ], [ 168.11213684, -46.99040604 ] ] ], [ [ [ 168.13583374000001, -46.95972061 ], [ 168.14115906, -46.96192169 ], [ 168.13381958, -46.96536255 ], [ 168.13583374000001, -46.95972061 ], [ 168.13583374000001, -46.95972061 ] ] ], [ [ [ 168.13856506, -46.95561981 ], [ 168.14416504, -46.95666504 ], [ 168.141387939999987, -46.95861053 ], [ 168.13856506, -46.95561981 ], [ 168.13856506, -46.95561981 ] ] ], [ [ [ 168.142776489999989, -46.95083237 ], [ 168.14694214, -46.95500183 ], [ 168.141113280000013, -46.95249939 ], [ 168.142776489999989, -46.95083237 ], [ 168.142776489999989, -46.95083237 ] ] ], [ [ [ 168.12583923, -46.94972229 ], [ 168.13221741000001, -46.95416641 ], [ 168.12722778, -46.95444489 ], [ 168.12583923, -46.94972229 ], [ 168.12583923, -46.94972229 ] ] ], [ [ [ 168.13528442, -46.94944382 ], [ 168.133605960000011, -46.95249939 ], [ 168.13000488, -46.95027924 ], [ 168.13528442, -46.94944382 ], [ 168.13528442, -46.94944382 ] ] ], [ [ [ 168.18167114, -46.94805527 ], [ 168.18205261, -46.95042038 ], [ 168.17895508, -46.94924545 ], [ 168.18167114, -46.94805527 ], [ 168.18167114, -46.94805527 ] ] ], [ [ [ 168.12472534, -46.92416763 ], [ 168.13417053, -46.93055725 ], [ 168.15333557, -46.93249893 ], [ 168.15499878, -46.93722153 ], [ 168.12693787, -46.93916702 ], [ 168.12194824, -46.93111038 ], [ 168.10806274, -46.92666626 ], [ 168.12472534, -46.92416763 ], [ 168.12472534, -46.92416763 ] ] ], [ [ [ 168.152771, -46.9094429 ], [ 168.1625061, -46.91666794 ], [ 168.15333557, -46.91999817 ], [ 168.14694214, -46.91527939 ], [ 168.152771, -46.9094429 ], [ 168.152771, -46.9094429 ] ] ], [ [ [ 168.124542240000011, -46.90791702 ], [ 168.1194458, -46.90750122 ], [ 168.12304688, -46.90616989 ], [ 168.124542240000011, -46.90791702 ], [ 168.124542240000011, -46.90791702 ] ] ], [ [ [ 168.24055481, -46.9011116 ], [ 168.24667358, -46.9038887 ], [ 168.25083923, -46.91555405 ], [ 168.227493290000012, -46.91333389 ], [ 168.24055481, -46.9011116 ], [ 168.24055481, -46.9011116 ] ] ], [ [ [ 168.00305176, -46.90222168 ], [ 168.00125122, -46.90122223 ], [ 168.00392151, -46.9011116 ], [ 168.00305176, -46.90222168 ], [ 168.00305176, -46.90222168 ] ] ], [ [ [ 168.264999390000014, -46.86416626 ], [ 168.26856995, -46.86901855 ], [ 168.26098633, -46.86492538 ], [ 168.264999390000014, -46.86416626 ], [ 168.264999390000014, -46.86416626 ] ] ], [ [ [ 168.23049927, -46.86399078 ], [ 168.23173523, -46.86963272 ], [ 168.22111511, -46.86833191 ], [ 168.23049927, -46.86399078 ], [ 168.23049927, -46.86399078 ] ] ], [ [ [ 168.21611023, -46.84555435 ], [ 168.21748352, -46.84999084 ], [ 168.20684814, -46.85079575 ], [ 168.21611023, -46.84555435 ], [ 168.21611023, -46.84555435 ] ] ], [ [ [ 168.21905518, -46.82765579 ], [ 168.22193909, -46.83944321 ], [ 168.21499634, -46.8386116 ], [ 168.21905518, -46.82765579 ], [ 168.21905518, -46.82765579 ] ] ], [ [ [ 168.24555969, -46.82583237 ], [ 168.24333191, -46.82305527 ], [ 168.24749756, -46.82333374 ], [ 168.24555969, -46.82583237 ], [ 168.24555969, -46.82583237 ] ] ], [ [ [ 168.46110535, -46.82194519 ], [ 168.45443726, -46.82249832 ], [ 168.457778929999989, -46.82055664 ], [ 168.46110535, -46.82194519 ], [ 168.46110535, -46.82194519 ] ] ], [ [ [ 168.452774049999988, -46.81972122 ], [ 168.45443726, -46.82110977 ], [ 168.450271609999987, -46.82389069 ], [ 168.452774049999988, -46.81972122 ], [ 168.452774049999988, -46.81972122 ] ] ], [ [ [ 168.46444702, -46.81916809 ], [ 168.46722412, -46.82083511 ], [ 168.465759279999986, -46.82130051 ], [ 168.46444702, -46.81916809 ], [ 168.46444702, -46.81916809 ] ] ], [ [ [ 168.47555542, -46.81861115 ], [ 168.47666931, -46.82027817 ], [ 168.47444153, -46.82027817 ], [ 168.47555542, -46.81861115 ], [ 168.47555542, -46.81861115 ] ] ], [ [ [ 168.47027588, -46.81555557 ], [ 168.47309875, -46.817276 ], [ 168.46833801, -46.8172226 ], [ 168.47027588, -46.81555557 ], [ 168.47027588, -46.81555557 ] ] ], [ [ [ 168.237503049999987, -46.81416702 ], [ 168.24082947, -46.81916809 ], [ 168.236404420000014, -46.81502151 ], [ 168.237503049999987, -46.81416702 ], [ 168.237503049999987, -46.81416702 ] ] ], [ [ [ 168.50500488, -46.80027771 ], [ 168.50889587, -46.80389023 ], [ 168.50138855, -46.80638885 ], [ 168.50500488, -46.80027771 ], [ 168.50500488, -46.80027771 ] ] ], [ [ [ 168.55778503, -46.7863884 ], [ 168.55888367, -46.78749847 ], [ 168.55499268, -46.7891655 ], [ 168.55778503, -46.7863884 ], [ 168.55778503, -46.7863884 ] ] ], [ [ [ 168.46583557, -46.76694489 ], [ 168.46722412, -46.76833344 ], [ 168.46388245, -46.76861191 ], [ 168.46583557, -46.76694489 ], [ 168.46583557, -46.76694489 ] ] ], [ [ [ 168.421661379999989, -46.76527786 ], [ 168.42694092, -46.77166748 ], [ 168.421112060000013, -46.77027893 ], [ 168.421661379999989, -46.76527786 ], [ 168.421661379999989, -46.76527786 ] ] ], [ [ [ 168.57417297, -46.76361084 ], [ 168.581115720000014, -46.77222061 ], [ 168.56944275, -46.77361298 ], [ 168.56582642, -46.76833344 ], [ 168.57417297, -46.76361084 ], [ 168.57417297, -46.76361084 ] ] ], [ [ [ 168.553894039999989, -46.75138855 ], [ 168.556732180000012, -46.75255203 ], [ 168.55528259, -46.75416565 ], [ 168.553894039999989, -46.75138855 ], [ 168.553894039999989, -46.75138855 ] ] ], [ [ [ 167.59277344, -46.75111008 ], [ 167.59693909, -46.75388718 ], [ 167.591445920000012, -46.75240707 ], [ 167.59277344, -46.75111008 ], [ 167.59277344, -46.75111008 ] ] ], [ [ [ 167.61425781, -46.74930954 ], [ 167.62246704, -46.75688934 ], [ 167.63952637, -46.75125885 ], [ 167.6459198, -46.76494598 ], [ 167.66221619, -46.76361084 ], [ 167.66383362, -46.78093719 ], [ 167.641387939999987, -46.79694366 ], [ 167.63851929, -46.79301453 ], [ 167.62083435, -46.79583359 ], [ 167.61193848, -46.77527618 ], [ 167.59837341, -46.76741028 ], [ 167.60305786, -46.75500107 ], [ 167.61425781, -46.74930954 ], [ 167.61425781, -46.74930954 ] ] ], [ [ [ 168.59832764, -46.7508316 ], [ 168.59584045, -46.7508316 ], [ 168.5955658, -46.74856567 ], [ 168.59832764, -46.7508316 ], [ 168.59832764, -46.7508316 ] ] ], [ [ [ 168.53277588, -46.73527908 ], [ 168.54556274, -46.75416565 ], [ 168.53778076, -46.76694489 ], [ 168.53944397, -46.77222061 ], [ 168.526855469999987, -46.77709961 ], [ 168.514999390000014, -46.78861237 ], [ 168.51194763, -46.79972076 ], [ 168.50444031, -46.79472351 ], [ 168.50944519, -46.78555679 ], [ 168.50721741000001, -46.77277756 ], [ 168.49806213, -46.77916718 ], [ 168.485839840000011, -46.77750015 ], [ 168.482223510000011, -46.78111267 ], [ 168.47084045, -46.77194595 ], [ 168.47499084, -46.76647568 ], [ 168.488891599999988, -46.77305603 ], [ 168.50027466, -46.76916504 ], [ 168.49082947, -46.76722336 ], [ 168.49555969, -46.76166534 ], [ 168.478881840000014, -46.7547226 ], [ 168.49278259, -46.7527771 ], [ 168.50083923, -46.76027679 ], [ 168.52833557, -46.74638748 ], [ 168.52555847, -46.73722076 ], [ 168.53277588, -46.73527908 ], [ 168.53277588, -46.73527908 ] ] ], [ [ [ 167.72413635, -46.70757294 ], [ 167.71789551, -46.70693588 ], [ 167.722442629999989, -46.7058754 ], [ 167.72413635, -46.70757294 ], [ 167.72413635, -46.70757294 ] ] ], [ [ [ 167.71615601, -46.70071793 ], [ 167.71983337, -46.70267487 ], [ 167.71177673, -46.70674133 ], [ 167.71615601, -46.70071793 ], [ 167.71615601, -46.70071793 ] ] ], [ [ [ 167.70817566, -46.69832993 ], [ 167.705154420000014, -46.69745255 ], [ 167.707778929999989, -46.69610977 ], [ 167.70817566, -46.69832993 ], [ 167.70817566, -46.69832993 ] ] ], [ [ [ 167.8694458, -46.68361282 ], [ 167.882064820000011, -46.69060898 ], [ 167.89916992, -46.69499969 ], [ 167.90306091, -46.69916534 ], [ 167.92524719, -46.69953537 ], [ 167.936721799999987, -46.71021271 ], [ 167.94374084, -46.70782852 ], [ 167.95936584, -46.72072601 ], [ 167.977493290000012, -46.72091675 ], [ 167.979858400000012, -46.74587631 ], [ 167.98478699, -46.76029587 ], [ 167.9919281, -46.77083206 ], [ 168.00500488, -46.77444458 ], [ 167.99916077, -46.7808342 ], [ 168.00305176, -46.78861237 ], [ 168.020278929999989, -46.80166626 ], [ 168.03334045, -46.79944611 ], [ 168.034729, -46.81361008 ], [ 168.05497742, -46.82240295 ], [ 168.064392090000013, -46.82227325 ], [ 168.08166504, -46.83166504 ], [ 168.0874939, -46.82944489 ], [ 168.09368896, -46.8387146 ], [ 168.08055115, -46.84166718 ], [ 168.082229610000013, -46.85416794 ], [ 168.08917236, -46.85638809 ], [ 168.09750366, -46.85138702 ], [ 168.112503049999987, -46.86111069 ], [ 168.12361145, -46.86277771 ], [ 168.12638855, -46.85490799 ], [ 168.139160159999989, -46.86166763 ], [ 168.14555359, -46.86972046 ], [ 168.12611389, -46.8758316 ], [ 168.13043213, -46.88153839 ], [ 168.14971924, -46.87749863 ], [ 168.14582825, -46.88916779 ], [ 168.13305664, -46.89055634 ], [ 168.12861633, -46.89805603 ], [ 168.140274049999988, -46.90000153 ], [ 168.15611267, -46.89389038 ], [ 168.16444397, -46.89583206 ], [ 168.1444397, -46.90250015 ], [ 168.145004269999987, -46.90888977 ], [ 168.13305664, -46.91027832 ], [ 168.12249756, -46.9038887 ], [ 168.107772829999988, -46.90361023 ], [ 168.09249878, -46.90833282 ], [ 168.07000732, -46.90055466 ], [ 168.06694031, -46.90750122 ], [ 168.05194092, -46.9058342 ], [ 168.04194641, -46.90888977 ], [ 168.06259155, -46.91882706 ], [ 168.043884279999986, -46.91972351 ], [ 168.03555298, -46.91305542 ], [ 168.0249939, -46.91361237 ], [ 168.012222290000011, -46.90277863 ], [ 168.02456665, -46.90365601 ], [ 168.0319519, -46.89749908 ], [ 168.01832581, -46.89333344 ], [ 168.012771609999987, -46.88666534 ], [ 168.01705933, -46.88053513 ], [ 168.0080719, -46.87617874 ], [ 168.00889587, -46.8702774 ], [ 167.991287230000012, -46.87130356 ], [ 168.00332642, -46.8741684 ], [ 167.99667358, -46.88611221 ], [ 168.002975459999988, -46.8952446 ], [ 167.99243164, -46.89085388 ], [ 167.97833252, -46.89222336 ], [ 167.97805786, -46.89916611 ], [ 167.9694519, -46.90000153 ], [ 167.966888430000012, -46.90829086 ], [ 167.9788208, -46.92956543 ], [ 167.97250366, -46.9347229 ], [ 167.96333313, -46.93333435 ], [ 167.95036316, -46.93907928 ], [ 167.94006348, -46.95204163 ], [ 167.91671753, -46.96558762 ], [ 167.91627502, -46.97104645 ], [ 167.93496704, -46.96521378 ], [ 167.942306519999988, -46.95900345 ], [ 167.96333313, -46.95360947 ], [ 167.96888733, -46.94083405 ], [ 167.982482909999987, -46.93995667 ], [ 167.986114500000014, -46.93000031 ], [ 168.013305659999986, -46.92422485 ], [ 168.02806091, -46.93916702 ], [ 168.02278137, -46.95083237 ], [ 168.03250122, -46.94666672 ], [ 168.06222534, -46.94638824 ], [ 168.07305908, -46.95500183 ], [ 168.08805847, -46.95472336 ], [ 168.09805298, -46.95999908 ], [ 168.113632200000012, -46.9595108 ], [ 168.118896479999989, -46.95583344 ], [ 168.13000488, -46.95777893 ], [ 168.11778259, -46.96944427 ], [ 168.09388733, -46.97333145 ], [ 168.08857727, -46.97872162 ], [ 168.07333374000001, -46.98361206 ], [ 168.076385499999986, -46.99083328 ], [ 168.09648132, -46.98810959 ], [ 168.12405396, -46.99253082 ], [ 168.13555908, -46.98138809 ], [ 168.142227170000012, -46.98277664 ], [ 168.142501829999986, -46.96944427 ], [ 168.15943909, -46.96749878 ], [ 168.15460205, -46.97341537 ], [ 168.17378235000001, -46.97116852 ], [ 168.16667175, -46.95888901 ], [ 168.172225950000012, -46.95500183 ], [ 168.172500609999986, -46.92805481 ], [ 168.1875, -46.92889023 ], [ 168.19296265, -46.939785 ], [ 168.18278503, -46.93916702 ], [ 168.173889159999987, -46.95305634 ], [ 168.184631349999989, -46.95792007 ], [ 168.177505489999987, -46.9738884 ], [ 168.19111633, -46.97972107 ], [ 168.19517517, -46.98671722 ], [ 168.208618159999986, -46.9944458 ], [ 168.21633911, -46.99338531 ], [ 168.21020508, -47.00444794 ], [ 168.202774049999988, -47.00805664 ], [ 168.21417236, -47.01722336 ], [ 168.228607180000012, -47.01361084 ], [ 168.22589111, -47.02105713 ], [ 168.208618159999986, -47.02722168 ], [ 168.20423889, -47.03230286 ], [ 168.21861267, -47.03499985 ], [ 168.20916748, -47.03944397 ], [ 168.20056152, -47.0569458 ], [ 168.211395259999989, -47.06222153 ], [ 168.20832825, -47.0672226 ], [ 168.19416809, -47.06194305 ], [ 168.173889159999987, -47.04916763 ], [ 168.168609620000012, -47.06611252 ], [ 168.17416382, -47.07472229 ], [ 168.186203, -47.08189011 ], [ 168.206390379999988, -47.08194351 ], [ 168.21665955, -47.09500122 ], [ 168.198608400000012, -47.0988884 ], [ 168.19139099, -47.09111023 ], [ 168.19430542, -47.08590317 ], [ 168.17971802, -47.08750153 ], [ 168.166107180000012, -47.08333206 ], [ 168.14555359, -47.08361053 ], [ 168.143615720000014, -47.09222412 ], [ 168.1555481, -47.09944534 ], [ 168.15750122, -47.10777664 ], [ 168.15083313, -47.10722351 ], [ 168.15306091, -47.11666489 ], [ 168.14303589, -47.11813736 ], [ 168.139999390000014, -47.11000061 ], [ 168.13444519, -47.11166763 ], [ 168.111114500000014, -47.09999847 ], [ 168.103607180000012, -47.10527802 ], [ 168.118896479999989, -47.10610962 ], [ 168.12388611, -47.11444473 ], [ 168.13528442, -47.11916733 ], [ 168.12333679, -47.12527847 ], [ 168.10533142, -47.11591721 ], [ 168.08416748, -47.11277771 ], [ 168.07417297, -47.10527802 ], [ 168.06433105, -47.11180878 ], [ 168.06083679, -47.12333298 ], [ 168.05166626, -47.12111282 ], [ 168.040771479999989, -47.1126976 ], [ 168.04724121000001, -47.12662125 ], [ 168.03305054, -47.13000107 ], [ 168.0194397, -47.12666702 ], [ 168.01228333, -47.11881256 ], [ 168.00305176, -47.12250137 ], [ 167.99357605, -47.11655807 ], [ 167.9972229, -47.125 ], [ 167.984725950000012, -47.12916565 ], [ 167.9813385, -47.13531113 ], [ 167.97389221, -47.13277817 ], [ 167.96194458, -47.13995361 ], [ 167.94932556, -47.12861633 ], [ 167.9319458, -47.14333344 ], [ 167.92778015, -47.1530571 ], [ 167.912307739999989, -47.15124893 ], [ 167.90222168, -47.16194534 ], [ 167.90333557, -47.16666794 ], [ 167.89054871, -47.16805649 ], [ 167.882171629999988, -47.17573166 ], [ 167.87028503, -47.16972351 ], [ 167.86465454, -47.18160248 ], [ 167.84492493, -47.18038177 ], [ 167.83528137, -47.18972397 ], [ 167.81277466, -47.1922226 ], [ 167.79444885, -47.18777847 ], [ 167.78889465, -47.18111038 ], [ 167.78009033, -47.18519974 ], [ 167.7583313, -47.17166519 ], [ 167.74543762, -47.17858124 ], [ 167.72673035, -47.18347549 ], [ 167.71723938, -47.18043137 ], [ 167.71665955, -47.16666794 ], [ 167.69833374000001, -47.15139008 ], [ 167.694564820000011, -47.16605377 ], [ 167.67912292, -47.17075729 ], [ 167.66862488000001, -47.16984558 ], [ 167.675308230000013, -47.17617416 ], [ 167.67410278, -47.19470215 ], [ 167.65293884, -47.20441055 ], [ 167.643615720000014, -47.20472336 ], [ 167.63143921, -47.21306229 ], [ 167.623550419999987, -47.21004868 ], [ 167.61569214, -47.21461487 ], [ 167.60629272, -47.2117424 ], [ 167.59835815, -47.21701431 ], [ 167.61143494, -47.222229 ], [ 167.6030426, -47.22868729 ], [ 167.58427429, -47.22891617 ], [ 167.57794189, -47.23715591 ], [ 167.56710815, -47.23744965 ], [ 167.55911255, -47.22936249 ], [ 167.5556488, -47.23286438 ], [ 167.56462097, -47.24188995 ], [ 167.58357239, -47.23940277 ], [ 167.59854126, -47.23478317 ], [ 167.62249756, -47.23749924 ], [ 167.63864136, -47.23433685 ], [ 167.63018799, -47.23085403 ], [ 167.63879395, -47.22163773 ], [ 167.65118408, -47.22171783 ], [ 167.66278076, -47.23027802 ], [ 167.64619446, -47.24502182 ], [ 167.65499878, -47.24333191 ], [ 167.65357971, -47.25409317 ], [ 167.64880371000001, -47.25341415 ], [ 167.645446779999986, -47.2638092 ], [ 167.63322449, -47.26722336 ], [ 167.6181488, -47.26717377 ], [ 167.61131287, -47.27199173 ], [ 167.60929871, -47.25519943 ], [ 167.61709595, -47.24802017 ], [ 167.591720579999986, -47.25019073 ], [ 167.57974243000001, -47.25682068 ], [ 167.58888245, -47.26216507 ], [ 167.56916809, -47.27222061 ], [ 167.572494510000013, -47.27916718 ], [ 167.56054688, -47.27734375 ], [ 167.534729, -47.28694534 ], [ 167.522399900000011, -47.28713226 ], [ 167.51522827, -47.28279114 ], [ 167.49537659, -47.28644943 ], [ 167.49012756, -47.28367996 ], [ 167.491394039999989, -47.27361298 ], [ 167.485839840000011, -47.27083206 ], [ 167.48020935, -47.27859497 ], [ 167.466308590000011, -47.28299332 ], [ 167.45477295, -47.27807617 ], [ 167.453750609999986, -47.26850891 ], [ 167.44665527, -47.26686478 ], [ 167.44813538, -47.25811005 ], [ 167.460021970000014, -47.25376892 ], [ 167.459747310000012, -47.23517609 ], [ 167.46662903, -47.23220825 ], [ 167.46583557, -47.21694565 ], [ 167.48944092, -47.20912552 ], [ 167.490005489999987, -47.20194626 ], [ 167.50419617, -47.20249939 ], [ 167.50944519, -47.19805527 ], [ 167.51826477, -47.20245743 ], [ 167.521972659999989, -47.18923187 ], [ 167.537460329999988, -47.18405151 ], [ 167.544998170000014, -47.17651749 ], [ 167.56668091, -47.17695618 ], [ 167.57307434, -47.16711426 ], [ 167.57524109, -47.15363693 ], [ 167.572067260000011, -47.14870071 ], [ 167.56040955, -47.16164398 ], [ 167.56082153, -47.15127182 ], [ 167.57260132, -47.14303589 ], [ 167.5725708, -47.12996292 ], [ 167.577774049999988, -47.11777878 ], [ 167.58805847, -47.11444473 ], [ 167.578582759999989, -47.11088943 ], [ 167.56910706, -47.11405182 ], [ 167.55860901, -47.0961113 ], [ 167.55860901, -47.09083176 ], [ 167.578338620000011, -47.08499908 ], [ 167.58305359, -47.07805634 ], [ 167.597320559999986, -47.06959152 ], [ 167.599380489999987, -47.05912018 ], [ 167.60752869, -47.05577087 ], [ 167.62110901, -47.0419426 ], [ 167.65467834, -47.03672791 ], [ 167.69000244, -47.04666519 ], [ 167.70341492, -47.04879761 ], [ 167.71472168, -47.0419426 ], [ 167.70436096, -47.03266525 ], [ 167.69351196, -47.03577805 ], [ 167.69500732, -47.02166748 ], [ 167.6847229, -47.01472092 ], [ 167.69389343, -47.00888824 ], [ 167.69694519, -47.00111008 ], [ 167.6791687, -46.99583435 ], [ 167.68444824, -46.99166489 ], [ 167.683944700000012, -46.97803116 ], [ 167.669723510000011, -46.97888947 ], [ 167.668609620000012, -46.96250153 ], [ 167.6721344, -46.95671082 ], [ 167.66464233, -46.94715118 ], [ 167.68305969, -46.93861008 ], [ 167.6819458, -46.94527817 ], [ 167.67195129000001, -46.95027924 ], [ 167.67832947, -46.96222305 ], [ 167.6875, -46.9663887 ], [ 167.71191406, -46.96440125 ], [ 167.73326111, -46.95730591 ], [ 167.74472046, -46.95008469 ], [ 167.75805664, -46.93694305 ], [ 167.76724243000001, -46.91483307 ], [ 167.76713562, -46.89004135 ], [ 167.76441956, -46.88371277 ], [ 167.74591064, -46.87429428 ], [ 167.75764465, -46.87020493 ], [ 167.757339480000013, -46.86191559 ], [ 167.74850464, -46.85283279 ], [ 167.750930790000012, -46.84819412 ], [ 167.7401123, -46.83939362 ], [ 167.72332764, -46.83055496 ], [ 167.728286739999987, -46.82730484 ], [ 167.727493290000012, -46.81611252 ], [ 167.71543884, -46.80457687 ], [ 167.70944214, -46.80527878 ], [ 167.701660159999989, -46.79704285 ], [ 167.70466614, -46.78926468 ], [ 167.716995239999989, -46.78880692 ], [ 167.718536379999989, -46.78468704 ], [ 167.703338620000011, -46.75388718 ], [ 167.707229610000013, -46.7452774 ], [ 167.719253540000011, -46.74340439 ], [ 167.72540283, -46.72870636 ], [ 167.71833801, -46.71500015 ], [ 167.72505188, -46.71004868 ], [ 167.73901367, -46.7114296 ], [ 167.75471497, -46.69429016 ], [ 167.76187134, -46.69628525 ], [ 167.78781128, -46.6869812 ], [ 167.7938385, -46.69351959 ], [ 167.80723572, -46.69200897 ], [ 167.821365359999987, -46.69499969 ], [ 167.82929993, -46.70406342 ], [ 167.84104919, -46.70240021 ], [ 167.85838318, -46.69348526 ], [ 167.857635499999986, -46.68940735 ], [ 167.8694458, -46.68361282 ], [ 167.8694458, -46.68361282 ] ] ], [ [ [ 168.40834045, -46.64888763 ], [ 168.413604740000011, -46.65416718 ], [ 168.40361023, -46.65027618 ], [ 168.40834045, -46.64888763 ], [ 168.40834045, -46.64888763 ] ] ], [ [ [ 168.32194519, -46.56833267 ], [ 168.31721497, -46.57527924 ], [ 168.31416321, -46.57361221 ], [ 168.32194519, -46.56833267 ], [ 168.32194519, -46.56833267 ] ] ], [ [ [ 166.862243650000011, -46.57062912 ], [ 166.861419680000012, -46.56875992 ], [ 166.86430359, -46.56836319 ], [ 166.862243650000011, -46.57062912 ], [ 166.862243650000011, -46.57062912 ] ] ], [ [ [ 166.900756840000014, -46.56716537 ], [ 166.90722656, -46.57916641 ], [ 166.89074707, -46.57458878 ], [ 166.900756840000014, -46.56716537 ], [ 166.900756840000014, -46.56716537 ] ] ], [ [ [ 168.39193726, -46.56972122 ], [ 168.386108400000012, -46.56944275 ], [ 168.395004269999987, -46.56666565 ], [ 168.39193726, -46.56972122 ], [ 168.39193726, -46.56972122 ] ] ], [ [ [ 168.63221741000001, -46.56583405 ], [ 168.6340332, -46.56831741 ], [ 168.63082886, -46.56666565 ], [ 168.63221741000001, -46.56583405 ], [ 168.63221741000001, -46.56583405 ] ] ], [ [ [ 168.62611389, -46.56499863 ], [ 168.62832642, -46.56777954 ], [ 168.62666321, -46.56888962 ], [ 168.62611389, -46.56499863 ], [ 168.62611389, -46.56499863 ] ] ], [ [ [ 168.31416321, -46.55083466 ], [ 168.31333923, -46.55555725 ], [ 168.30833435, -46.55333328 ], [ 168.31416321, -46.55083466 ], [ 168.31416321, -46.55083466 ] ] ], [ [ [ 168.3500061, -46.54416656 ], [ 168.34666443, -46.54388809 ], [ 168.35098267, -46.54201508 ], [ 168.3500061, -46.54416656 ], [ 168.3500061, -46.54416656 ] ] ], [ [ [ 168.222229, -46.51605225 ], [ 168.21763611, -46.51661301 ], [ 168.21888733, -46.51277924 ], [ 168.222229, -46.51605225 ], [ 168.222229, -46.51605225 ] ] ], [ [ [ 168.35194397, -46.47555542 ], [ 168.356384279999986, -46.4794426 ], [ 168.340271, -46.48166656 ], [ 168.35194397, -46.47555542 ], [ 168.35194397, -46.47555542 ] ] ], [ [ [ 167.846725459999988, -46.45332718 ], [ 167.85397339, -46.4550209 ], [ 167.85083008, -46.46277618 ], [ 167.830001829999986, -46.45527649 ], [ 167.8407135, -46.44977951 ], [ 167.846725459999988, -46.45332718 ], [ 167.846725459999988, -46.45332718 ] ] ], [ [ [ 167.9934845, -46.40502167 ], [ 167.993896479999989, -46.40722275 ], [ 167.987777709999989, -46.40638733 ], [ 167.9934845, -46.40502167 ], [ 167.9934845, -46.40502167 ] ] ], [ [ [ 167.71376038, -46.3376236 ], [ 167.71194458, -46.33750153 ], [ 167.71333313, -46.33527756 ], [ 167.71376038, -46.3376236 ], [ 167.71376038, -46.3376236 ] ] ], [ [ [ 166.798339840000011, -46.22527695 ], [ 166.798614500000014, -46.22777939 ], [ 166.795135499999986, -46.2281456 ], [ 166.798339840000011, -46.22527695 ], [ 166.798339840000011, -46.22527695 ] ] ], [ [ [ 166.61528015, -46.17555618 ], [ 166.61805725, -46.17666626 ], [ 166.61621094, -46.17777252 ], [ 166.61528015, -46.17555618 ], [ 166.61528015, -46.17555618 ] ] ], [ [ [ 166.63082886, -46.09583282 ], [ 166.65750122, -46.10342789 ], [ 166.65361023, -46.11694336 ], [ 166.62722778, -46.13249969 ], [ 166.608612060000013, -46.14110947 ], [ 166.60305786, -46.11166763 ], [ 166.63082886, -46.09583282 ], [ 166.63082886, -46.09583282 ] ] ], [ [ [ 166.66954041, -46.09749222 ], [ 166.666381840000014, -46.10222244 ], [ 166.65757751000001, -46.09677124 ], [ 166.67036438, -46.09057617 ], [ 166.66954041, -46.09749222 ], [ 166.66954041, -46.09749222 ] ] ], [ [ [ 166.68249512, -46.08611298 ], [ 166.68305969, -46.08805466 ], [ 166.67971802, -46.08722305 ], [ 166.68249512, -46.08611298 ], [ 166.68249512, -46.08611298 ] ] ], [ [ [ 166.69332886, -46.08472061 ], [ 166.698883059999986, -46.09194565 ], [ 166.69778442, -46.10555649 ], [ 166.6875, -46.09111023 ], [ 166.69332886, -46.08472061 ], [ 166.69332886, -46.08472061 ] ] ], [ [ [ 166.666381840000014, -46.07888794 ], [ 166.66194153, -46.07972336 ], [ 166.66667175, -46.07638931 ], [ 166.666381840000014, -46.07888794 ], [ 166.666381840000014, -46.07888794 ] ] ], [ [ [ 166.635787959999988, -46.07431412 ], [ 166.633880620000014, -46.0722847 ], [ 166.63627625, -46.0723381 ], [ 166.635787959999988, -46.07431412 ], [ 166.635787959999988, -46.07431412 ] ] ], [ [ [ 166.632324219999987, -46.07287598 ], [ 166.632064820000011, -46.07383728 ], [ 166.62861633, -46.07194519 ], [ 166.632324219999987, -46.07287598 ], [ 166.632324219999987, -46.07287598 ] ] ], [ [ [ 166.68167114, -46.06916809 ], [ 166.68638611, -46.07222366 ], [ 166.671112060000013, -46.07722092 ], [ 166.68167114, -46.06916809 ], [ 166.68167114, -46.06916809 ] ] ], [ [ [ 166.57028198, -46.06916809 ], [ 166.5680542, -46.06833267 ], [ 166.57054138, -46.0679512 ], [ 166.57028198, -46.06916809 ], [ 166.57028198, -46.06916809 ] ] ], [ [ [ 166.69100952, -46.06579208 ], [ 166.692596439999988, -46.06901169 ], [ 166.68977356, -46.06771088 ], [ 166.69100952, -46.06579208 ], [ 166.69100952, -46.06579208 ] ] ], [ [ [ 166.69020081, -46.05329895 ], [ 166.689941409999989, -46.05205917 ], [ 166.69117737, -46.05222702 ], [ 166.69020081, -46.05329895 ], [ 166.69020081, -46.05329895 ] ] ], [ [ [ 166.5194397, -46.0336113 ], [ 166.52101135, -46.03751373 ], [ 166.541107180000012, -46.04444504 ], [ 166.533706669999987, -46.05262375 ], [ 166.534729, -46.0644455 ], [ 166.52333069, -46.06638718 ], [ 166.51055908, -46.05389023 ], [ 166.50500488, -46.05333328 ], [ 166.50582886, -46.04333496 ], [ 166.5194397, -46.0336113 ], [ 166.5194397, -46.0336113 ] ] ], [ [ [ 166.58944702, -46.02722168 ], [ 166.59083557, -46.02944565 ], [ 166.5874939, -46.02833176 ], [ 166.58944702, -46.02722168 ], [ 166.58944702, -46.02722168 ] ] ], [ [ [ 166.53164673, -46.01792145 ], [ 166.549194340000014, -46.02180862 ], [ 166.542770389999987, -46.03388977 ], [ 166.52722168, -46.02833176 ], [ 166.53164673, -46.01792145 ], [ 166.53164673, -46.01792145 ] ] ], [ [ [ 166.54167175, -46.01416779 ], [ 166.546661379999989, -46.01777649 ], [ 166.54083252, -46.01777649 ], [ 166.54167175, -46.01416779 ], [ 166.54167175, -46.01416779 ] ] ], [ [ [ 166.58453369, -45.97979736 ], [ 166.58827209, -45.98167801 ], [ 166.56582642, -46.00749969 ], [ 166.55314636, -46.00800323 ], [ 166.53666687, -46.00444412 ], [ 166.542770389999987, -45.98777771 ], [ 166.56375122, -45.9800148 ], [ 166.58453369, -45.97979736 ], [ 166.58453369, -45.97979736 ] ] ], [ [ [ 166.59356689, -45.9741478 ], [ 166.588104249999986, -45.97911453 ], [ 166.58609009, -45.97402573 ], [ 166.59356689, -45.9741478 ], [ 166.59356689, -45.9741478 ] ] ], [ [ [ 166.64135742, -45.96647644 ], [ 166.65316772, -45.9681282 ], [ 166.64451599, -45.97217941 ], [ 166.64135742, -45.96647644 ], [ 166.64135742, -45.96647644 ] ] ], [ [ [ 166.657302859999987, -45.96671295 ], [ 166.65472412, -45.96646881 ], [ 166.6574707, -45.96556854 ], [ 166.657302859999987, -45.96671295 ], [ 166.657302859999987, -45.96671295 ] ] ], [ [ [ 166.75056458, -45.96154022 ], [ 166.752151489999989, -45.96292877 ], [ 166.74902344, -45.96232986 ], [ 166.75056458, -45.96154022 ], [ 166.75056458, -45.96154022 ] ] ], [ [ [ 166.87332153, -45.95788574 ], [ 166.87123108, -45.96414566 ], [ 166.869201659999987, -45.96133423 ], [ 166.87332153, -45.95788574 ], [ 166.87332153, -45.95788574 ] ] ], [ [ [ 166.49555969, -45.80194473 ], [ 166.4944458, -45.80055618 ], [ 166.49667358, -45.80110931 ], [ 166.49555969, -45.80194473 ], [ 166.49555969, -45.80194473 ] ] ], [ [ [ 166.49864197, -45.80010605 ], [ 166.49694824, -45.79888916 ], [ 166.49833679, -45.79805374 ], [ 166.49864197, -45.80010605 ], [ 166.49864197, -45.80010605 ] ] ], [ [ [ 166.512496950000013, -45.79527664 ], [ 166.512771609999987, -45.79833221 ], [ 166.51028442, -45.79583359 ], [ 166.512496950000013, -45.79527664 ], [ 166.512496950000013, -45.79527664 ] ] ], [ [ [ 166.60131836, -45.79761887 ], [ 166.5993042, -45.79601288 ], [ 166.60435486, -45.79550552 ], [ 166.60131836, -45.79761887 ], [ 166.60131836, -45.79761887 ] ] ], [ [ [ 166.61332703, -45.78416824 ], [ 166.61610413, -45.78610992 ], [ 166.611389159999987, -45.7891655 ], [ 166.61332703, -45.78416824 ], [ 166.61332703, -45.78416824 ] ] ], [ [ [ 166.482223510000011, -45.7761116 ], [ 166.490005489999987, -45.7780571 ], [ 166.4777832, -45.78333282 ], [ 166.482223510000011, -45.7761116 ], [ 166.482223510000011, -45.7761116 ] ] ], [ [ [ 166.5541687, -45.7788887 ], [ 166.55278015, -45.77750015 ], [ 166.55583191, -45.77694321 ], [ 166.5541687, -45.7788887 ], [ 166.5541687, -45.7788887 ] ] ], [ [ [ 166.54753113000001, -45.77689743 ], [ 166.53947449, -45.78109741 ], [ 166.53721619, -45.77722168 ], [ 166.54753113000001, -45.77689743 ], [ 166.54753113000001, -45.77689743 ] ] ], [ [ [ 166.491394039999989, -45.77750015 ], [ 166.49360657, -45.77388763 ], [ 166.49472046, -45.77527618 ], [ 166.491394039999989, -45.77750015 ], [ 166.491394039999989, -45.77750015 ] ] ], [ [ [ 166.47805786, -45.77277756 ], [ 166.48031616, -45.77537155 ], [ 166.47666931, -45.77388763 ], [ 166.47805786, -45.77277756 ], [ 166.47805786, -45.77277756 ] ] ], [ [ [ 166.6000061, -45.77249908 ], [ 166.59132385, -45.78335953 ], [ 166.57041931, -45.78475952 ], [ 166.5809021, -45.7742691 ], [ 166.6000061, -45.77249908 ], [ 166.6000061, -45.77249908 ] ] ], [ [ [ 166.60945129000001, -45.77361298 ], [ 166.607498170000014, -45.77222061 ], [ 166.610000609999986, -45.77222061 ], [ 166.60945129000001, -45.77361298 ], [ 166.60945129000001, -45.77361298 ] ] ], [ [ [ 166.56611633, -45.76833344 ], [ 166.56663513, -45.76916504 ], [ 166.5632019, -45.77013397 ], [ 166.56611633, -45.76833344 ], [ 166.56611633, -45.76833344 ] ] ], [ [ [ 166.53361511, -45.76916504 ], [ 166.52999878, -45.77138901 ], [ 166.52915955, -45.76944351 ], [ 166.53361511, -45.76916504 ], [ 166.53361511, -45.76916504 ] ] ], [ [ [ 166.56666565, -45.76388931 ], [ 166.57299805, -45.76695633 ], [ 166.56304932, -45.76666641 ], [ 166.56666565, -45.76388931 ], [ 166.56666565, -45.76388931 ] ] ], [ [ [ 166.57556152, -45.76305389 ], [ 166.57537842, -45.76599884 ], [ 166.57312012, -45.76583481 ], [ 166.57556152, -45.76305389 ], [ 166.57556152, -45.76305389 ] ] ], [ [ [ 166.546112060000013, -45.76499939 ], [ 166.541381840000014, -45.76861191 ], [ 166.53944397, -45.76638794 ], [ 166.546112060000013, -45.76499939 ], [ 166.546112060000013, -45.76499939 ] ] ], [ [ [ 166.56083679, -45.76250076 ], [ 166.56082153, -45.76523209 ], [ 166.55555725, -45.76472092 ], [ 166.56083679, -45.76250076 ], [ 166.56083679, -45.76250076 ] ] ], [ [ [ 166.607498170000014, -45.75611115 ], [ 166.591873170000014, -45.76185989 ], [ 166.59260559, -45.75899887 ], [ 166.607498170000014, -45.75611115 ], [ 166.607498170000014, -45.75611115 ] ] ], [ [ [ 166.580001829999986, -45.75166702 ], [ 166.57620239, -45.7510643 ], [ 166.57911682, -45.74985123 ], [ 166.580001829999986, -45.75166702 ], [ 166.580001829999986, -45.75166702 ] ] ], [ [ [ 166.508255, -45.74604797 ], [ 166.50721741000001, -45.74492264 ], [ 166.50866699, -45.74492264 ], [ 166.508255, -45.74604797 ], [ 166.508255, -45.74604797 ] ] ], [ [ [ 166.788146970000014, -45.74649048 ], [ 166.78684998, -45.74570084 ], [ 166.78875732, -45.74490356 ], [ 166.788146970000014, -45.74649048 ], [ 166.788146970000014, -45.74649048 ] ] ], [ [ [ 166.77360535, -45.74333191 ], [ 166.77915955, -45.74861145 ], [ 166.76495361, -45.7481575 ], [ 166.74809265, -45.7579689 ], [ 166.71754456, -45.76474762 ], [ 166.70523071, -45.77234268 ], [ 166.69584656, -45.77142715 ], [ 166.68202209, -45.77666473 ], [ 166.66027832, -45.77972412 ], [ 166.65888977, -45.77616882 ], [ 166.64646912, -45.78050995 ], [ 166.63166809, -45.77946472 ], [ 166.61444092, -45.78305435 ], [ 166.61898804, -45.77590179 ], [ 166.6109314, -45.77410507 ], [ 166.634994510000013, -45.76889038 ], [ 166.637771609999987, -45.77194595 ], [ 166.65034485000001, -45.75982285 ], [ 166.67562866, -45.76213455 ], [ 166.71064758, -45.74798965 ], [ 166.74067688, -45.74353027 ], [ 166.75666809, -45.74555588 ], [ 166.77360535, -45.74333191 ], [ 166.77360535, -45.74333191 ] ] ], [ [ [ 166.54060364, -45.74274445 ], [ 166.56277466, -45.74666595 ], [ 166.56655884, -45.75460052 ], [ 166.556564329999986, -45.75931549 ], [ 166.543884279999986, -45.75722122 ], [ 166.52166748, -45.76797104 ], [ 166.527771, -45.77000046 ], [ 166.5194397, -45.7761116 ], [ 166.51333618000001, -45.77027893 ], [ 166.485153200000013, -45.77183533 ], [ 166.48167419, -45.76361084 ], [ 166.4916687, -45.74944305 ], [ 166.50015259, -45.75270844 ], [ 166.517776489999989, -45.75027847 ], [ 166.525039670000012, -45.75297165 ], [ 166.53140259, -45.74522018 ], [ 166.54060364, -45.74274445 ], [ 166.54060364, -45.74274445 ] ] ], [ [ [ 166.566741940000014, -45.74305725 ], [ 166.56555176, -45.74139786 ], [ 166.56700134, -45.74179459 ], [ 166.566741940000014, -45.74305725 ], [ 166.566741940000014, -45.74305725 ] ] ], [ [ [ 166.72639465, -45.74139023 ], [ 166.72444153, -45.74000168 ], [ 166.726104740000011, -45.74000168 ], [ 166.72639465, -45.74139023 ], [ 166.72639465, -45.74139023 ] ] ], [ [ [ 166.5622406, -45.74198532 ], [ 166.56056213, -45.7452774 ], [ 166.55610657, -45.74139023 ], [ 166.5622406, -45.74198532 ], [ 166.5622406, -45.74198532 ] ] ], [ [ [ 166.543884279999986, -45.73972321 ], [ 166.54083252, -45.73860931 ], [ 166.543746950000013, -45.73782349 ], [ 166.543884279999986, -45.73972321 ], [ 166.543884279999986, -45.73972321 ] ] ], [ [ [ 166.52349854, -45.7384758 ], [ 166.514724730000012, -45.74361038 ], [ 166.512771609999987, -45.74000168 ], [ 166.52349854, -45.7384758 ], [ 166.52349854, -45.7384758 ] ] ], [ [ [ 166.53611755, -45.73865891 ], [ 166.53694153, -45.73638916 ], [ 166.53833008, -45.73694611 ], [ 166.53611755, -45.73865891 ], [ 166.53611755, -45.73865891 ] ] ], [ [ [ 166.52166748, -45.73659897 ], [ 166.517776489999989, -45.73555374 ], [ 166.521392819999988, -45.73361206 ], [ 166.52166748, -45.73659897 ], [ 166.52166748, -45.73659897 ] ] ], [ [ [ 166.77360535, -45.73138809 ], [ 166.77528381, -45.73416519 ], [ 166.771392819999988, -45.73305511 ], [ 166.77360535, -45.73138809 ], [ 166.77360535, -45.73138809 ] ] ], [ [ [ 166.581420900000012, -45.72815323 ], [ 166.57130432, -45.7309761 ], [ 166.577804570000012, -45.72600174 ], [ 166.581420900000012, -45.72815323 ], [ 166.581420900000012, -45.72815323 ] ] ], [ [ [ 166.54553223, -45.72595978 ], [ 166.54481506, -45.72410965 ], [ 166.54682922, -45.72472763 ], [ 166.54553223, -45.72595978 ], [ 166.54553223, -45.72595978 ] ] ], [ [ [ 166.8380127, -45.72029114 ], [ 166.85725403, -45.72546768 ], [ 166.87258911, -45.72373581 ], [ 166.88023376000001, -45.727005 ], [ 166.87944031, -45.73472214 ], [ 166.87194824, -45.74036789 ], [ 166.84667969, -45.74801254 ], [ 166.82272339, -45.75157547 ], [ 166.791244510000013, -45.74633026 ], [ 166.787994379999986, -45.73382187 ], [ 166.8059082, -45.72171021 ], [ 166.829727170000012, -45.71837616 ], [ 166.8380127, -45.72029114 ], [ 166.8380127, -45.72029114 ] ] ], [ [ [ 166.53639221, -45.70497131 ], [ 166.5393219, -45.71152115 ], [ 166.52565002, -45.71090317 ], [ 166.53639221, -45.70497131 ], [ 166.53639221, -45.70497131 ] ] ], [ [ [ 166.544998170000014, -45.69916534 ], [ 166.54356384, -45.6975441 ], [ 166.545272829999988, -45.69777679 ], [ 166.544998170000014, -45.69916534 ], [ 166.544998170000014, -45.69916534 ] ] ], [ [ [ 166.55883789, -45.68783951 ], [ 166.55888367, -45.68967819 ], [ 166.55131531, -45.68878937 ], [ 166.55883789, -45.68783951 ], [ 166.55883789, -45.68783951 ] ] ], [ [ [ 166.719070429999988, -45.65515137 ], [ 166.718261719999987, -45.65553284 ], [ 166.7175293, -45.65385818 ], [ 166.719070429999988, -45.65515137 ], [ 166.719070429999988, -45.65515137 ] ] ], [ [ [ 166.86193848, -45.63584137 ], [ 166.85070801, -45.63999557 ], [ 166.8480835, -45.63612747 ], [ 166.86193848, -45.63584137 ], [ 166.86193848, -45.63584137 ] ] ], [ [ [ 166.53361511, -45.63138962 ], [ 166.53138733, -45.63166809 ], [ 166.53250122, -45.62944412 ], [ 166.53361511, -45.63138962 ], [ 166.53361511, -45.63138962 ] ] ], [ [ [ 166.59333801, -45.61111069 ], [ 166.59388733, -45.61305618 ], [ 166.59165955, -45.61194611 ], [ 166.59333801, -45.61111069 ], [ 166.59333801, -45.61111069 ] ] ], [ [ [ 166.65110779, -45.60388947 ], [ 166.64944458, -45.60277939 ], [ 166.65167236, -45.60138702 ], [ 166.65110779, -45.60388947 ], [ 166.65110779, -45.60388947 ] ] ], [ [ [ 166.68083191, -45.59749985 ], [ 166.69015503, -45.60761642 ], [ 166.69694519, -45.60833359 ], [ 166.71376038, -45.62163544 ], [ 166.71330261, -45.63447571 ], [ 166.718246459999989, -45.65709686 ], [ 166.71679688, -45.6677475 ], [ 166.7207489, -45.67618942 ], [ 166.71665955, -45.68317032 ], [ 166.72418213, -45.69829559 ], [ 166.7175293, -45.72577667 ], [ 166.68389893, -45.74881744 ], [ 166.66352844, -45.75244522 ], [ 166.655334470000014, -45.73973083 ], [ 166.64953613, -45.716259 ], [ 166.6493988, -45.73398972 ], [ 166.64219666, -45.74222565 ], [ 166.61485291, -45.75231934 ], [ 166.61436462, -45.74899673 ], [ 166.59584045, -45.75630569 ], [ 166.580307010000013, -45.74568176 ], [ 166.58166504, -45.73194504 ], [ 166.59132385, -45.72471619 ], [ 166.58831787, -45.72127151 ], [ 166.5708313, -45.72015762 ], [ 166.56222534, -45.71166611 ], [ 166.547500609999986, -45.70888901 ], [ 166.56111145, -45.70527649 ], [ 166.576400760000013, -45.70949173 ], [ 166.572067260000011, -45.70120621 ], [ 166.54685974, -45.6990509 ], [ 166.54953003, -45.69174194 ], [ 166.574996950000013, -45.69138718 ], [ 166.55622864, -45.68437576 ], [ 166.552948, -45.66869736 ], [ 166.54269409, -45.68045425 ], [ 166.53117371, -45.68694687 ], [ 166.48699951, -45.71803665 ], [ 166.46833801, -45.73361206 ], [ 166.466445920000012, -45.73122406 ], [ 166.449996950000013, -45.74638748 ], [ 166.44555664, -45.74333191 ], [ 166.4430542, -45.73027802 ], [ 166.451110840000013, -45.71527863 ], [ 166.47528076, -45.70138931 ], [ 166.482772829999988, -45.68861008 ], [ 166.4972229, -45.6827774 ], [ 166.513885499999986, -45.65777588 ], [ 166.51832581, -45.66222382 ], [ 166.5194397, -45.64138794 ], [ 166.53694153, -45.6305542 ], [ 166.542495730000013, -45.62194443 ], [ 166.55471802, -45.63166809 ], [ 166.552505489999987, -45.6483345 ], [ 166.5625, -45.625 ], [ 166.582778929999989, -45.61083221 ], [ 166.59272766, -45.61678696 ], [ 166.59584045, -45.60805511 ], [ 166.608886719999987, -45.60250092 ], [ 166.6222229, -45.61055374 ], [ 166.63209534, -45.61151123 ], [ 166.65472412, -45.60305405 ], [ 166.66055298, -45.59777832 ], [ 166.67105103, -45.60804749 ], [ 166.67179871, -45.60211945 ], [ 166.68083191, -45.59749985 ], [ 166.68083191, -45.59749985 ] ] ], [ [ [ 166.67512512, -45.59365845 ], [ 166.67854309, -45.59666443 ], [ 166.672775269999988, -45.59805679 ], [ 166.67512512, -45.59365845 ], [ 166.67512512, -45.59365845 ] ] ], [ [ [ 166.707519530000013, -45.59311295 ], [ 166.698440549999987, -45.59877396 ], [ 166.69929504000001, -45.5931282 ], [ 166.707519530000013, -45.59311295 ], [ 166.707519530000013, -45.59311295 ] ] ], [ [ [ 166.63667297, -45.59027863 ], [ 166.63833618000001, -45.59277725 ], [ 166.63528442, -45.59277725 ], [ 166.63667297, -45.59027863 ], [ 166.63667297, -45.59027863 ] ] ], [ [ [ 166.65472412, -45.59083176 ], [ 166.65249634, -45.59111023 ], [ 166.65415955, -45.58944321 ], [ 166.65472412, -45.59083176 ], [ 166.65472412, -45.59083176 ] ] ], [ [ [ 166.644729610000013, -45.58889008 ], [ 166.6444397, -45.59305573 ], [ 166.641387939999987, -45.59194565 ], [ 166.644729610000013, -45.58889008 ], [ 166.644729610000013, -45.58889008 ] ] ], [ [ [ 166.766250609999986, -45.59161758 ], [ 166.7631073, -45.58637619 ], [ 166.77256775, -45.58481598 ], [ 166.766250609999986, -45.59161758 ], [ 166.766250609999986, -45.59161758 ] ] ], [ [ [ 166.771392819999988, -45.58166504 ], [ 166.76982117, -45.57984161 ], [ 166.77249146, -45.57712173 ], [ 166.771392819999988, -45.58166504 ], [ 166.771392819999988, -45.58166504 ] ] ], [ [ [ 166.64666748, -45.57027817 ], [ 166.64756775, -45.58576584 ], [ 166.63925171, -45.58639908 ], [ 166.62762451, -45.57860565 ], [ 166.63833618000001, -45.57055664 ], [ 166.64666748, -45.57027817 ], [ 166.64666748, -45.57027817 ] ] ], [ [ [ 166.78390503, -45.57734299 ], [ 166.78852844, -45.56995773 ], [ 166.7999115, -45.56700897 ], [ 166.78390503, -45.57734299 ], [ 166.78390503, -45.57734299 ] ] ], [ [ [ 166.81277466, -45.56499863 ], [ 166.8059082, -45.56771469 ], [ 166.8032074, -45.56526947 ], [ 166.81277466, -45.56499863 ], [ 166.81277466, -45.56499863 ] ] ], [ [ [ 166.81721497, -45.56361008 ], [ 166.81555176, -45.56222153 ], [ 166.81777954, -45.56194305 ], [ 166.81721497, -45.56361008 ], [ 166.81721497, -45.56361008 ] ] ], [ [ [ 167.116394039999989, -45.40750122 ], [ 167.12110901, -45.41222382 ], [ 167.12638855, -45.43055725 ], [ 167.116394039999989, -45.40750122 ], [ 167.116394039999989, -45.40750122 ] ] ], [ [ [ 167.104995730000013, -45.39611053 ], [ 167.10083008, -45.39110947 ], [ 167.103607180000012, -45.39055634 ], [ 167.104995730000013, -45.39611053 ], [ 167.104995730000013, -45.39611053 ] ] ], [ [ [ 167.00694275, -45.30638885 ], [ 167.00721741000001, -45.30861282 ], [ 167.00444031, -45.30749893 ], [ 167.00694275, -45.30638885 ], [ 167.00694275, -45.30638885 ] ] ], [ [ [ 166.913146970000014, -45.29755783 ], [ 166.90696716, -45.29780579 ], [ 166.90820313, -45.29555893 ], [ 166.913146970000014, -45.29755783 ], [ 166.913146970000014, -45.29755783 ] ] ], [ [ [ 166.89320374, -45.27977753 ], [ 166.90621948, -45.28536224 ], [ 166.90805054, -45.28055573 ], [ 166.93945313, -45.29633713 ], [ 166.93522644, -45.29825592 ], [ 166.89480591, -45.29302979 ], [ 166.88352966, -45.28730774 ], [ 166.89320374, -45.27977753 ], [ 166.89320374, -45.27977753 ] ] ], [ [ [ 166.88931274, -45.27655411 ], [ 166.88806152, -45.27527618 ], [ 166.889724730000012, -45.27555466 ], [ 166.88931274, -45.27655411 ], [ 166.88931274, -45.27655411 ] ] ], [ [ [ 166.89482117, -45.27441788 ], [ 166.89321899, -45.27270889 ], [ 166.89595032, -45.27355576 ], [ 166.89482117, -45.27441788 ], [ 166.89482117, -45.27441788 ] ] ], [ [ [ 166.84249878, -45.26972198 ], [ 166.84249878, -45.27194595 ], [ 166.84083557, -45.2705574 ], [ 166.84249878, -45.26972198 ], [ 166.84249878, -45.26972198 ] ] ], [ [ [ 166.8949585, -45.27006149 ], [ 166.89775085, -45.27329254 ], [ 166.8908844, -45.26854324 ], [ 166.8949585, -45.27006149 ], [ 166.8949585, -45.27006149 ] ] ], [ [ [ 166.884979249999986, -45.26839828 ], [ 166.8874054, -45.26902771 ], [ 166.88745117, -45.27487183 ], [ 166.884979249999986, -45.26839828 ], [ 166.884979249999986, -45.26839828 ] ] ], [ [ [ 166.88806152, -45.26666641 ], [ 166.88667297, -45.26583481 ], [ 166.888473510000011, -45.26566315 ], [ 166.88806152, -45.26666641 ], [ 166.88806152, -45.26666641 ] ] ], [ [ [ 166.87472534, -45.2555542 ], [ 166.87457275, -45.25356293 ], [ 166.87638855, -45.25416565 ], [ 166.87472534, -45.2555542 ], [ 166.87472534, -45.2555542 ] ] ], [ [ [ 166.87379456, -45.25109863 ], [ 166.87083435, -45.25111008 ], [ 166.873550419999987, -45.2492485 ], [ 166.87379456, -45.25109863 ], [ 166.87379456, -45.25109863 ] ] ], [ [ [ 166.86494446, -45.25091934 ], [ 166.86305237, -45.25033569 ], [ 166.86372375, -45.24881363 ], [ 166.86494446, -45.25091934 ], [ 166.86494446, -45.25091934 ] ] ], [ [ [ 166.871414179999988, -45.24797058 ], [ 166.86845398, -45.24680328 ], [ 166.86959839, -45.24438477 ], [ 166.871414179999988, -45.24797058 ], [ 166.871414179999988, -45.24797058 ] ] ], [ [ [ 166.964065549999987, -45.15036392 ], [ 166.97084045, -45.1566658 ], [ 166.9659729, -45.17621994 ], [ 166.95343018, -45.18473816 ], [ 166.95007324, -45.20346832 ], [ 166.95536804, -45.21463394 ], [ 166.97041321, -45.23544693 ], [ 166.97541809, -45.24687958 ], [ 166.988067629999989, -45.25834274 ], [ 166.98805237, -45.27500153 ], [ 167.0032196, -45.29830551 ], [ 166.991424560000013, -45.30101776 ], [ 166.97944641, -45.29891205 ], [ 166.97639465, -45.30305481 ], [ 166.96664429, -45.29799652 ], [ 166.94696045, -45.29428482 ], [ 166.9434967, -45.28706741 ], [ 166.90989685, -45.27154922 ], [ 166.906738280000013, -45.26555252 ], [ 166.88996887, -45.25004578 ], [ 166.86721802, -45.24139023 ], [ 166.87416077, -45.23611069 ], [ 166.87611389, -45.2266655 ], [ 166.89573669, -45.21193314 ], [ 166.896118159999986, -45.20416641 ], [ 166.92195129000001, -45.17527771 ], [ 166.94158936, -45.16326904 ], [ 166.94810486, -45.15168762 ], [ 166.96109009, -45.14550781 ], [ 166.964065549999987, -45.15036392 ], [ 166.964065549999987, -45.15036392 ] ] ], [ [ [ 167.13745117, -45.12850571 ], [ 167.138305659999986, -45.12997818 ], [ 167.136383059999986, -45.12937546 ], [ 167.13745117, -45.12850571 ], [ 167.13745117, -45.12850571 ] ] ], [ [ [ 167.20021057, -45.10191345 ], [ 167.20191956, -45.10383987 ], [ 167.19793701, -45.103302 ], [ 167.20021057, -45.10191345 ], [ 167.20021057, -45.10191345 ] ] ], [ [ [ 167.02278137, -45.10083389 ], [ 167.02278137, -45.10361099 ], [ 167.021118159999986, -45.10222244 ], [ 167.02278137, -45.10083389 ], [ 167.02278137, -45.10083389 ] ] ], [ [ [ 167.20239258, -45.0997467 ], [ 167.20410156, -45.10155869 ], [ 167.20159912, -45.10160065 ], [ 167.20239258, -45.0997467 ], [ 167.20239258, -45.0997467 ] ] ], [ [ [ 167.142486569999988, -45.09667206 ], [ 167.14299011, -45.10081482 ], [ 167.139984129999988, -45.09915924 ], [ 167.142486569999988, -45.09667206 ], [ 167.142486569999988, -45.09667206 ] ] ], [ [ [ 167.38522339, -44.98559189 ], [ 167.38490295, -44.98892593 ], [ 167.3837738, -44.98637009 ], [ 167.38522339, -44.98559189 ], [ 167.38522339, -44.98559189 ] ] ], [ [ [ 167.18444824, -44.95444489 ], [ 167.18583679, -44.95722198 ], [ 167.18249512, -44.95583344 ], [ 167.18444824, -44.95444489 ], [ 167.18444824, -44.95444489 ] ] ], [ [ [ 167.632339480000013, -44.64456558 ], [ 167.63348389, -44.64638901 ], [ 167.63008118, -44.64627838 ], [ 167.632339480000013, -44.64456558 ], [ 167.632339480000013, -44.64456558 ] ] ], [ [ [ 167.85714722, -44.45082474 ], [ 167.85697937, -44.45269394 ], [ 167.855270389999987, -44.45194626 ], [ 167.85714722, -44.45082474 ], [ 167.85714722, -44.45082474 ] ] ], [ [ [ 168.24057007, -44.25902176 ], [ 168.24453735, -44.26349258 ], [ 168.25848389, -44.25964355 ], [ 168.26245117, -44.26412201 ], [ 168.276412959999988, -44.26027298 ], [ 168.28736877, -44.26283646 ], [ 168.29930115, -44.27630234 ], [ 168.31427002, -44.28337479 ], [ 168.32824707, -44.27954102 ], [ 168.35021973, -44.28471375 ], [ 168.351242070000012, -44.29564285 ], [ 168.35925293, -44.3046608 ], [ 168.36026001, -44.31559372 ], [ 168.3502655, -44.32392502 ], [ 168.36230469, -44.33747101 ], [ 168.38433838, -44.3427124 ], [ 168.37837219, -44.35556412 ], [ 168.4004364, -44.36084747 ], [ 168.41848755, -44.36161423 ], [ 168.422515870000012, -44.36615753 ], [ 168.4125061, -44.37446594 ], [ 168.41653442, -44.37900925 ], [ 168.4025116, -44.38277817 ], [ 168.39146423, -44.38012314 ], [ 168.392501829999986, -44.39108658 ], [ 168.36444092, -44.39863968 ], [ 168.354415890000013, -44.4069519 ], [ 168.36247253, -44.41601944 ], [ 168.369491579999988, -44.41413116 ], [ 168.37754822, -44.42321014 ], [ 168.367523190000014, -44.43151474 ], [ 168.371551509999989, -44.43605423 ], [ 168.361541749999986, -44.44435883 ], [ 168.36557007, -44.44890213 ], [ 168.35151672, -44.45266724 ], [ 168.359573360000013, -44.46174622 ], [ 168.34654236, -44.47647095 ], [ 168.34054565, -44.48931503 ], [ 168.34860229, -44.49839783 ], [ 168.33755493000001, -44.49573898 ], [ 168.31645203, -44.50138474 ], [ 168.29837036, -44.5006218 ], [ 168.282302859999987, -44.52176285 ], [ 168.26119995, -44.5274086 ], [ 168.26522827, -44.53194427 ], [ 168.25114441, -44.53570175 ], [ 168.24110413, -44.5439949 ], [ 168.25016785, -44.56402588 ], [ 168.24414063, -44.57686234 ], [ 168.2481842, -44.58140182 ], [ 168.23408508, -44.58515167 ], [ 168.231079099999988, -44.59156799 ], [ 168.23913574, -44.6006546 ], [ 168.217987060000013, -44.60627365 ], [ 168.222030640000014, -44.61081696 ], [ 168.20893860000001, -44.62552261 ], [ 168.212982180000012, -44.63006973 ], [ 168.203918460000011, -44.6493187 ], [ 168.19284058, -44.64663696 ], [ 168.2049408, -44.66028595 ], [ 168.19184875, -44.67498779 ], [ 168.20698547, -44.68222427 ], [ 168.19992065, -44.68409348 ], [ 168.18682861, -44.6987915 ], [ 168.17976379000001, -44.70065689 ], [ 168.187850950000012, -44.70976257 ], [ 168.17776489, -44.71804428 ], [ 168.178787230000012, -44.72901917 ], [ 168.19494629, -44.74724197 ], [ 168.209075930000012, -44.74351501 ], [ 168.217163090000014, -44.75262833 ], [ 168.20303345, -44.7563591 ], [ 168.19700623, -44.76919937 ], [ 168.20509338, -44.7783165 ], [ 168.19198608, -44.79302216 ], [ 168.19602966, -44.79758453 ], [ 168.17585754000001, -44.81414795 ], [ 168.18092346, -44.82969284 ], [ 168.141540529999986, -44.83441544 ], [ 168.12944031, -44.86009216 ], [ 168.13752747, -44.86922455 ], [ 168.123397829999988, -44.87292862 ], [ 168.13148499, -44.88206482 ], [ 168.12440491000001, -44.88391495 ], [ 168.139572140000013, -44.8911972 ], [ 168.14059448, -44.90218735 ], [ 168.15274048, -44.91589355 ], [ 168.142639159999987, -44.92416763 ], [ 168.1446991, -44.94615555 ], [ 168.15884399, -44.94244385 ], [ 168.15582275, -44.94887161 ], [ 168.17807007, -44.95429611 ], [ 168.19023132, -44.96800232 ], [ 168.18721008, -44.97443008 ], [ 168.20747375, -44.99727631 ], [ 168.22267151, -45.00455475 ], [ 168.22975159, -45.00269318 ], [ 168.237854, -45.01182938 ], [ 168.238891599999988, -45.02283096 ], [ 168.25408936, -45.03010559 ], [ 168.279373170000014, -45.02907562 ], [ 168.30059814, -45.02347183 ], [ 168.296539309999986, -45.01890182 ], [ 168.3106842, -45.01516724 ], [ 168.32286072, -45.02886963 ], [ 168.30569458, -45.03904343 ], [ 168.3037262, -45.05648041 ], [ 168.31184387, -45.06561661 ], [ 168.30278015, -45.08493042 ], [ 168.267379760000011, -45.0942688 ], [ 168.26435852, -45.10070419 ], [ 168.2724762, -45.10984421 ], [ 168.258316040000011, -45.11357498 ], [ 168.25935364, -45.1245842 ], [ 168.24621582, -45.13932037 ], [ 168.23204041, -45.14304733 ], [ 168.229003909999989, -45.14948273 ], [ 168.24723816, -45.1503334 ], [ 168.255371090000011, -45.15947723 ], [ 168.24525452, -45.16777802 ], [ 168.25640869, -45.17049026 ], [ 168.272644039999989, -45.18878555 ], [ 168.26254272, -45.19709015 ], [ 168.2706604, -45.20623779 ], [ 168.29296875, -45.21165466 ], [ 168.30818176, -45.21893311 ], [ 168.3163147, -45.22808075 ], [ 168.30317688, -45.242836 ], [ 168.32350159, -45.26570511 ], [ 168.31442261, -45.28503799 ], [ 168.31546021, -45.29606247 ], [ 168.33172607, -45.31436157 ], [ 168.336837769999988, -45.32995987 ], [ 168.405792240000011, -45.32868958 ], [ 168.412872310000012, -45.32681656 ], [ 168.44937134, -45.32845306 ], [ 168.474700930000012, -45.32738876 ], [ 168.5566864, -45.31128311 ], [ 168.5526123, -45.30671692 ], [ 168.57383728, -45.30107498 ], [ 168.56976318, -45.29650497 ], [ 168.583923340000013, -45.2927475 ], [ 168.579849239999987, -45.28817749 ], [ 168.63644409, -45.27312851 ], [ 168.63237, -45.26856232 ], [ 168.65357971, -45.26291656 ], [ 168.649505620000014, -45.25835037 ], [ 168.66365051, -45.25458908 ], [ 168.65957642, -45.25002289 ], [ 168.687850950000012, -45.24249268 ], [ 168.69898987, -45.24517441 ], [ 168.692993159999986, -45.25806427 ], [ 168.70928955, -45.2763176 ], [ 168.702224730000012, -45.27820206 ], [ 168.71444702, -45.29188919 ], [ 168.70846558, -45.30478668 ], [ 168.71661377, -45.31391144 ], [ 168.717697140000013, -45.32492447 ], [ 168.710617070000012, -45.32680893 ], [ 168.70463562, -45.33971024 ], [ 168.738082889999987, -45.34774017 ], [ 168.76553345, -45.36866379 ], [ 168.786743159999986, -45.36299515 ], [ 168.79083252, -45.36755753 ], [ 168.78892517, -45.38502121 ], [ 168.79299927, -45.38958359 ], [ 168.7840271, -45.40894318 ], [ 168.79627991000001, -45.42263031 ], [ 168.79437256, -45.44010162 ], [ 168.81559753, -45.43442154 ], [ 168.846069340000014, -45.44887543 ], [ 168.8449707, -45.4378624 ], [ 168.86618042, -45.43217468 ], [ 168.88142395, -45.4393959 ], [ 168.874359129999988, -45.44129562 ], [ 168.879531859999986, -45.45686722 ], [ 168.901840209999989, -45.46219254 ], [ 168.91598511, -45.4583931 ], [ 168.92604065, -45.45003891 ], [ 168.94390869, -45.41131592 ], [ 168.978866579999988, -45.36236191 ], [ 169.03088379, -45.30319214 ], [ 169.08209229, -45.27248001 ], [ 169.08912659, -45.27058411 ], [ 169.113616940000014, -45.29787064 ], [ 169.11585999, -45.31985855 ], [ 169.12698364, -45.32250595 ], [ 169.13514709, -45.33160019 ], [ 169.15036011, -45.33879471 ], [ 169.16854858, -45.33954239 ], [ 169.16966248, -45.35053635 ], [ 169.18193054, -45.36417389 ], [ 169.17897034, -45.37062073 ], [ 169.19940186, -45.39334869 ], [ 169.21348572, -45.38954163 ], [ 169.229843140000014, -45.40772247 ], [ 169.21801758, -45.43351746 ], [ 169.189819340000014, -45.44113541 ], [ 169.17163086, -45.44039917 ], [ 169.17572021, -45.44494629 ], [ 169.16275024, -45.45975494 ], [ 169.15568542, -45.46166229 ], [ 169.160903929999989, -45.47720718 ], [ 169.14312744, -45.51593781 ], [ 169.14723206, -45.52048492 ], [ 169.137207030000013, -45.52885056 ], [ 169.14129639, -45.53339767 ], [ 169.13127136, -45.54176331 ], [ 169.113479610000013, -45.58052063 ], [ 169.11756897, -45.58506775 ], [ 169.103439329999986, -45.58889008 ], [ 169.10754395, -45.59344101 ], [ 169.093399049999988, -45.59726334 ], [ 169.07557678, -45.63604355 ], [ 169.0796814, -45.64059448 ], [ 169.0655365, -45.64442062 ], [ 169.06964111, -45.64897156 ], [ 169.04133606, -45.65662003 ], [ 169.042465209999989, -45.66764069 ], [ 169.03240967, -45.67602158 ], [ 169.03764343, -45.69159698 ], [ 169.03056335, -45.69351196 ], [ 169.009704590000013, -45.73880386 ], [ 169.02088928, -45.74144363 ], [ 169.02201843, -45.75247192 ], [ 169.0194397, -45.79851151 ], [ 169.027664179999988, -45.807621 ], [ 169.038864139999987, -45.81025696 ], [ 169.0440979, -45.82584381 ], [ 169.02693176, -45.83616638 ], [ 169.014999390000014, -45.86208344 ], [ 169.01911926, -45.866642 ], [ 169.062820429999988, -45.8661232 ], [ 169.05871582, -45.86156845 ], [ 169.07289124, -45.85771561 ], [ 169.06878662, -45.85316467 ], [ 169.09118652, -45.85841751 ], [ 169.089355469999987, -45.87592697 ], [ 169.09645081, -45.87399673 ], [ 169.10881042, -45.88765335 ], [ 169.09393311, -45.92005539 ], [ 169.086837769999988, -45.92198563 ], [ 169.10333252, -45.94019318 ], [ 169.11454773, -45.94281387 ], [ 169.10266113, -45.96875 ], [ 169.0884552, -45.9726181 ], [ 169.07539368, -45.98752975 ], [ 169.08065796, -46.00312424 ], [ 169.1137085, -46.03954697 ], [ 169.132049560000013, -46.04022217 ], [ 169.14031982, -46.04932404 ], [ 169.16281128, -46.05454254 ], [ 169.16514587, -46.07662582 ], [ 169.15092468, -46.08050919 ], [ 169.147949219999987, -46.08700562 ], [ 169.15921021, -46.08961105 ], [ 169.15623474, -46.09610367 ], [ 169.174591060000012, -46.09676743 ], [ 169.1686554, -46.10975647 ], [ 169.17694092, -46.11885452 ], [ 169.16685486, -46.12729263 ], [ 169.13838196, -46.13507462 ], [ 169.14071655, -46.15717316 ], [ 169.15496826, -46.15327835 ], [ 169.166229249999986, -46.15587997 ], [ 169.17866516, -46.16952896 ], [ 169.168579099999988, -46.17797852 ], [ 169.18934631, -46.20072174 ], [ 169.19645691, -46.19877243 ], [ 169.2118988, -46.20591736 ], [ 169.20301819, -46.22541428 ], [ 169.19293213, -46.23386765 ], [ 169.205429079999988, -46.247509 ], [ 169.198303220000014, -46.24946213 ], [ 169.19238281, -46.26246643 ], [ 169.20072937, -46.27156448 ], [ 169.194824219999987, -46.28456879 ], [ 169.18475342, -46.29302979 ], [ 169.20146179, -46.31122589 ], [ 169.18844604, -46.32619858 ], [ 169.18130493000001, -46.32815552 ], [ 169.19680786, -46.33529663 ], [ 169.17541504, -46.34117508 ], [ 169.17961121, -46.34572601 ], [ 169.16534424, -46.34964752 ], [ 169.16954041, -46.35419846 ], [ 169.14813232, -46.3600769 ], [ 169.15232849, -46.36463165 ], [ 169.13931274, -46.37962341 ], [ 169.14770508, -46.38873672 ], [ 169.15484619, -46.38677216 ], [ 169.18884277, -46.39454651 ], [ 169.20567322, -46.4127655 ], [ 169.19854736, -46.41473007 ], [ 169.20697021, -46.42384338 ], [ 169.204055790000012, -46.43037033 ], [ 169.18978882, -46.4343071 ], [ 169.19822693, -46.44342804 ], [ 169.18818665, -46.451931 ], [ 169.19241333, -46.45649338 ], [ 169.163864139999987, -46.46438217 ], [ 169.16519165, -46.47549057 ], [ 169.185043330000013, -46.48722839 ], [ 169.17790222, -46.48920441 ], [ 169.18638611, -46.49835205 ], [ 169.20491028, -46.4989624 ], [ 169.21340942, -46.50810623 ], [ 169.22053528, -46.50611496 ], [ 169.233322140000013, -46.51982117 ], [ 169.24757385, -46.51581955 ], [ 169.25611877, -46.52493286 ], [ 169.24897766, -46.52694321 ], [ 169.25039673, -46.53807068 ], [ 169.23327637, -46.54869461 ], [ 169.22758484, -46.56188202 ], [ 169.19476318, -46.56540298 ], [ 169.1990509, -46.56999588 ], [ 169.189086909999986, -46.57865143 ], [ 169.20198059, -46.59238052 ], [ 169.21948242, -46.59360886 ], [ 169.21360779, -46.60285187 ], [ 169.21542358, -46.61766052 ], [ 169.198181150000011, -46.61721802 ], [ 169.190612789999989, -46.65470505 ], [ 169.1756134, -46.65225601 ], [ 169.16947937, -46.6579895 ], [ 169.15805054, -46.6511116 ], [ 169.143890379999988, -46.6511116 ], [ 169.13656616, -46.6472435 ], [ 169.15101624, -46.64579391 ], [ 169.14927673, -46.63497162 ], [ 169.1603241, -46.63082504 ], [ 169.165115359999987, -46.62439728 ], [ 169.156600950000012, -46.62160492 ], [ 169.153808590000011, -46.61436462 ], [ 169.14454651, -46.61516953 ], [ 169.14053345, -46.60760498 ], [ 169.12872314, -46.60488892 ], [ 169.135665890000013, -46.62473679 ], [ 169.141113280000013, -46.63138962 ], [ 169.13250732, -46.63472366 ], [ 169.14193726, -46.64194489 ], [ 169.12887573, -46.6411972 ], [ 169.108627320000011, -46.64750671 ], [ 169.102630620000014, -46.65348434 ], [ 169.10694885, -46.66388702 ], [ 169.0980835, -46.66195297 ], [ 169.07354736, -46.67065811 ], [ 169.0569458, -46.67277908 ], [ 169.0569458, -46.66611099 ], [ 169.047225950000012, -46.66057968 ], [ 169.03277588, -46.66055679 ], [ 169.03543091, -46.64950943 ], [ 169.04194641, -46.64472198 ], [ 169.03877258, -46.63925171 ], [ 169.023910519999987, -46.64039993 ], [ 169.03042603, -46.64452744 ], [ 169.03161621000001, -46.65572357 ], [ 169.02539063, -46.65936661 ], [ 169.02981567, -46.66883087 ], [ 169.022521970000014, -46.67245865 ], [ 169.00166321, -46.67583466 ], [ 168.98936462, -46.66579819 ], [ 168.96833801, -46.67305374 ], [ 168.94833374000001, -46.66249847 ], [ 168.94413757, -46.65713882 ], [ 168.881103520000011, -46.6558342 ], [ 168.84640503, -46.66082764 ], [ 168.84222412, -46.64888763 ], [ 168.829574580000013, -46.64356995 ], [ 168.826110840000013, -46.6241684 ], [ 168.8319397, -46.60944366 ], [ 168.82556152, -46.60333252 ], [ 168.80278015, -46.59249878 ], [ 168.797775269999988, -46.58277893 ], [ 168.80221558, -46.58000183 ], [ 168.78944397, -46.56305695 ], [ 168.78250122, -46.5597229 ], [ 168.77333069, -46.56305695 ], [ 168.77694702, -46.5680542 ], [ 168.74777222, -46.5680542 ], [ 168.751464840000011, -46.57089615 ], [ 168.78971863000001, -46.57527924 ], [ 168.796661379999989, -46.58083344 ], [ 168.7505188, -46.57159424 ], [ 168.71611023, -46.56944275 ], [ 168.68833923, -46.56944275 ], [ 168.6499939, -46.57361221 ], [ 168.59333801, -46.58611298 ], [ 168.59971619, -46.56833267 ], [ 168.6222229, -46.57583237 ], [ 168.63417053, -46.57138824 ], [ 168.65208435, -46.57255936 ], [ 168.673339840000011, -46.56972122 ], [ 168.639160159999989, -46.56861115 ], [ 168.63945007, -46.56277847 ], [ 168.6277771, -46.56083298 ], [ 168.62194824, -46.5644455 ], [ 168.613616940000014, -46.55666733 ], [ 168.603607180000012, -46.55333328 ], [ 168.58854675, -46.55416107 ], [ 168.579727170000012, -46.55805588 ], [ 168.549728390000013, -46.5605545 ], [ 168.58305359, -46.57611084 ], [ 168.583618159999986, -46.58611298 ], [ 168.56361389, -46.58750153 ], [ 168.56666565, -46.59166718 ], [ 168.551116940000014, -46.59805679 ], [ 168.51083374000001, -46.60833359 ], [ 168.491394039999989, -46.61027908 ], [ 168.44111633, -46.60610962 ], [ 168.426391599999988, -46.60666656 ], [ 168.40138245, -46.59666824 ], [ 168.383605960000011, -46.59472275 ], [ 168.37277222, -46.59722137 ], [ 168.37028503, -46.60277939 ], [ 168.361389159999987, -46.60138702 ], [ 168.37666321, -46.58277893 ], [ 168.40472412, -46.58166504 ], [ 168.41583252, -46.57138824 ], [ 168.41583252, -46.58000183 ], [ 168.44166565, -46.58666611 ], [ 168.44778442, -46.58166504 ], [ 168.44139099, -46.57860947 ], [ 168.4291687, -46.58083344 ], [ 168.43388367, -46.57500076 ], [ 168.457229610000013, -46.57805634 ], [ 168.451660159999989, -46.5858345 ], [ 168.46861267, -46.58889008 ], [ 168.47337341, -46.5866127 ], [ 168.49110413, -46.5933342 ], [ 168.52055359, -46.59860992 ], [ 168.52633667, -46.59360886 ], [ 168.515838620000011, -46.58277893 ], [ 168.51554871, -46.57527924 ], [ 168.4944458, -46.57333374 ], [ 168.479995730000013, -46.56499863 ], [ 168.47250366, -46.56638718 ], [ 168.44805908, -46.56083298 ], [ 168.41166687, -46.56027603 ], [ 168.38417053, -46.56777954 ], [ 168.37750244, -46.57416534 ], [ 168.362503049999987, -46.55527878 ], [ 168.3666687, -46.54916763 ], [ 168.35028076, -46.53555679 ], [ 168.34249878, -46.53972244 ], [ 168.333618159999986, -46.55138779 ], [ 168.32417297, -46.54416656 ], [ 168.30166626, -46.54944611 ], [ 168.300277709999989, -46.57055664 ], [ 168.30722046, -46.57527924 ], [ 168.306396479999989, -46.58833313 ], [ 168.31500244, -46.5933342 ], [ 168.33189392, -46.58855438 ], [ 168.354995730000013, -46.60472107 ], [ 168.360275269999988, -46.61194611 ], [ 168.35221863000001, -46.62166595 ], [ 168.336395259999989, -46.62611008 ], [ 168.31555176, -46.61777878 ], [ 168.31889343, -46.61194611 ], [ 168.3097229, -46.59361267 ], [ 168.28416443, -46.59027863 ], [ 168.2722168, -46.57916641 ], [ 168.275741579999988, -46.57104874 ], [ 168.266662599999989, -46.55583191 ], [ 168.24221802, -46.55138779 ], [ 168.22944641, -46.55250168 ], [ 168.23666382, -46.54083252 ], [ 168.22528076, -46.52777863 ], [ 168.22305298, -46.51722336 ], [ 168.232498170000014, -46.51361084 ], [ 168.26306152, -46.51610947 ], [ 168.27055359, -46.51027679 ], [ 168.28833008, -46.51166534 ], [ 168.27583313, -46.53777695 ], [ 168.29693604, -46.5334816 ], [ 168.28639221, -46.52379608 ], [ 168.29333496000001, -46.50860977 ], [ 168.30499268, -46.51194382 ], [ 168.32167053, -46.50860977 ], [ 168.356109620000012, -46.49333191 ], [ 168.36732483, -46.48431396 ], [ 168.3731842, -46.48651886 ], [ 168.37846375, -46.47879028 ], [ 168.36331177, -46.47776031 ], [ 168.353607180000012, -46.46777725 ], [ 168.34805298, -46.47444534 ], [ 168.34527588, -46.46749878 ], [ 168.34916687, -46.4327774 ], [ 168.33996582, -46.42879486 ], [ 168.335311890000014, -46.41953278 ], [ 168.32447815, -46.42375183 ], [ 168.32571411, -46.44521332 ], [ 168.331115720000014, -46.45027924 ], [ 168.322494510000013, -46.45639038 ], [ 168.28916931, -46.45777893 ], [ 168.28166199, -46.46138763 ], [ 168.26805115, -46.45944595 ], [ 168.26506042, -46.45360565 ], [ 168.27194214, -46.44194412 ], [ 168.27194214, -46.43249893 ], [ 168.2624054, -46.45100403 ], [ 168.26445007, -46.46055603 ], [ 168.27305603, -46.46527863 ], [ 168.297775269999988, -46.46583176 ], [ 168.29573059, -46.47100449 ], [ 168.3041687, -46.48500061 ], [ 168.30583191, -46.49499893 ], [ 168.27416992, -46.50055695 ], [ 168.259994510000013, -46.49083328 ], [ 168.25305176, -46.47638702 ], [ 168.236389159999987, -46.45166779 ], [ 168.22277832, -46.42388916 ], [ 168.19805908, -46.39361191 ], [ 168.17056274, -46.36833191 ], [ 168.12705994, -46.34797668 ], [ 168.08888245, -46.33972168 ], [ 168.06388855, -46.34027863 ], [ 168.043609620000012, -46.3461113 ], [ 168.02362061, -46.35762405 ], [ 168.02194214, -46.36777878 ], [ 168.03138733, -46.37361145 ], [ 168.03866577, -46.38439178 ], [ 168.016387939999987, -46.38472366 ], [ 167.99777222, -46.38194275 ], [ 167.991394039999989, -46.3769455 ], [ 167.97666931, -46.37555695 ], [ 167.96722412, -46.36805725 ], [ 167.94445801, -46.36067963 ], [ 167.917770389999987, -46.35722351 ], [ 167.90335083, -46.35824585 ], [ 167.883316040000011, -46.36552048 ], [ 167.87805176, -46.3722229 ], [ 167.887496950000013, -46.38138962 ], [ 167.88471985000001, -46.39222336 ], [ 167.86335754000001, -46.38780212 ], [ 167.85716248, -46.37923813 ], [ 167.84083557, -46.37083435 ], [ 167.82650757, -46.36870193 ], [ 167.81008911, -46.3748703 ], [ 167.803894039999989, -46.38666534 ], [ 167.78361511, -46.39110947 ], [ 167.77261353, -46.38155365 ], [ 167.76327515, -46.3792572 ], [ 167.754669189999987, -46.36791611 ], [ 167.735839840000011, -46.36639023 ], [ 167.7303009, -46.35381317 ], [ 167.73666382, -46.34883118 ], [ 167.724258420000012, -46.34235764 ], [ 167.731384279999986, -46.33611298 ], [ 167.719787599999989, -46.33073044 ], [ 167.71389771, -46.33354187 ], [ 167.68983459, -46.32960892 ], [ 167.686447140000013, -46.32264709 ], [ 167.69100952, -46.31072235 ], [ 167.71272278, -46.30556107 ], [ 167.72949219, -46.29817963 ], [ 167.732498170000014, -46.28472137 ], [ 167.72914124, -46.27574539 ], [ 167.71583557, -46.26166534 ], [ 167.698883059999986, -46.2491684 ], [ 167.65748596, -46.22185898 ], [ 167.64396667, -46.2101326 ], [ 167.62275696, -46.19984055 ], [ 167.61471558, -46.19277954 ], [ 167.592971799999987, -46.18430328 ], [ 167.56864929, -46.17797089 ], [ 167.534240720000014, -46.16310501 ], [ 167.51615906, -46.15756607 ], [ 167.48825073, -46.1522522 ], [ 167.44805908, -46.14888763 ], [ 167.42416382, -46.14944458 ], [ 167.39994812, -46.15403366 ], [ 167.40055847, -46.16277695 ], [ 167.393890379999988, -46.17722321 ], [ 167.376464840000011, -46.18568039 ], [ 167.355270389999987, -46.19194412 ], [ 167.351104740000011, -46.20055389 ], [ 167.36193848, -46.21027756 ], [ 167.36416626, -46.22916794 ], [ 167.360443120000014, -46.23791504 ], [ 167.34552002, -46.24416351 ], [ 167.34333801, -46.25222397 ], [ 167.32502747, -46.25092316 ], [ 167.32041931, -46.25468445 ], [ 167.301528929999989, -46.24765015 ], [ 167.284729, -46.24583435 ], [ 167.25305176, -46.2480545 ], [ 167.21444702, -46.26277924 ], [ 167.20733643, -46.25919342 ], [ 167.18833923, -46.26083374 ], [ 167.15428162, -46.25579071 ], [ 167.1300354, -46.25055313 ], [ 167.105789179999988, -46.2547493 ], [ 167.06639099, -46.24305725 ], [ 167.055603029999986, -46.23827744 ], [ 167.04556274, -46.23888779 ], [ 167.021118159999986, -46.22833252 ], [ 166.982772829999988, -46.23166656 ], [ 166.96556091, -46.22805405 ], [ 166.95555115, -46.22972107 ], [ 166.954315189999988, -46.22359467 ], [ 166.93278503, -46.22444534 ], [ 166.92666626, -46.21694565 ], [ 166.89971924, -46.22027588 ], [ 166.88250732, -46.21888733 ], [ 166.87306213, -46.21027756 ], [ 166.854721070000011, -46.21277618 ], [ 166.8527832, -46.20833206 ], [ 166.84277344, -46.21277618 ], [ 166.82000732, -46.21277618 ], [ 166.80360413, -46.21527863 ], [ 166.789993290000012, -46.22333145 ], [ 166.789993290000012, -46.22777939 ], [ 166.77638245, -46.23333359 ], [ 166.77709961, -46.21926498 ], [ 166.765274049999988, -46.21472168 ], [ 166.74806213, -46.21527863 ], [ 166.74249268, -46.21138763 ], [ 166.72917175, -46.21444321 ], [ 166.71861267, -46.20555496 ], [ 166.69917297, -46.20750046 ], [ 166.69416809, -46.21250153 ], [ 166.669723510000011, -46.21027756 ], [ 166.678894039999989, -46.20249939 ], [ 166.673339840000011, -46.20055389 ], [ 166.667221070000011, -46.2080574 ], [ 166.65750122, -46.20000076 ], [ 166.638885499999986, -46.1930542 ], [ 166.646118159999986, -46.1875 ], [ 166.63694763, -46.17889023 ], [ 166.639724730000012, -46.17388916 ], [ 166.63027954, -46.17222214 ], [ 166.62611389, -46.16083145 ], [ 166.607223510000011, -46.1566658 ], [ 166.61582947, -46.15277863 ], [ 166.61749268, -46.14305496 ], [ 166.62944031, -46.14222336 ], [ 166.65388489, -46.12833405 ], [ 166.67443848, -46.12166595 ], [ 166.68916321, -46.11360931 ], [ 166.69221497, -46.11639023 ], [ 166.708892819999988, -46.11500168 ], [ 166.71556091, -46.10805511 ], [ 166.707778929999989, -46.09999847 ], [ 166.710006709999988, -46.08722305 ], [ 166.72528076, -46.07138824 ], [ 166.7305603, -46.07972336 ], [ 166.732223510000011, -46.09277725 ], [ 166.74028015, -46.0858345 ], [ 166.732772829999988, -46.06833267 ], [ 166.770004269999987, -46.05805588 ], [ 166.772506709999988, -46.04833221 ], [ 166.78111267, -46.04666519 ], [ 166.77749634, -46.0308342 ], [ 166.76954651, -46.02185822 ], [ 166.768753049999987, -46.00646591 ], [ 166.78053284, -45.99823761 ], [ 166.82188416, -45.99301529 ], [ 166.844390870000012, -45.98576355 ], [ 166.87219238, -45.96914673 ], [ 166.87756348, -45.95784378 ], [ 166.894104, -45.94341278 ], [ 166.91598511, -45.93390274 ], [ 166.91667175, -45.92583466 ], [ 166.887649540000012, -45.94179916 ], [ 166.87960815, -45.94856644 ], [ 166.8719635, -45.94727707 ], [ 166.862228390000013, -45.95277786 ], [ 166.85054016, -45.9688797 ], [ 166.83345032, -45.9697876 ], [ 166.817596439999988, -45.97489929 ], [ 166.7808075, -45.97963333 ], [ 166.78767395, -45.98511124 ], [ 166.7769165, -45.99146271 ], [ 166.75489807, -45.99584579 ], [ 166.73880005, -46.01366806 ], [ 166.73880005, -46.02083206 ], [ 166.74833679, -46.02194595 ], [ 166.75389099, -46.0316658 ], [ 166.766662599999989, -46.04083252 ], [ 166.765838620000011, -46.05110931 ], [ 166.75054932, -46.05916595 ], [ 166.738616940000014, -46.05861282 ], [ 166.74528503, -46.05166626 ], [ 166.748413090000014, -46.04034805 ], [ 166.73971558, -46.03861237 ], [ 166.734725950000012, -46.05110931 ], [ 166.72444153, -46.05888748 ], [ 166.72250366, -46.06750107 ], [ 166.71360779, -46.07749939 ], [ 166.70506287, -46.07541275 ], [ 166.70811462, -46.05955887 ], [ 166.699722290000011, -46.05888748 ], [ 166.69778442, -46.05194473 ], [ 166.70666504, -46.04111099 ], [ 166.71472168, -46.03805542 ], [ 166.731109620000012, -46.02249908 ], [ 166.72444153, -46.01805496 ], [ 166.70666504, -46.03333282 ], [ 166.70195007, -46.03416824 ], [ 166.68527222, -46.05305481 ], [ 166.6930542, -46.0605545 ], [ 166.68682861, -46.06138611 ], [ 166.67666626, -46.05416489 ], [ 166.65888977, -46.06305695 ], [ 166.65583801, -46.07389069 ], [ 166.64582825, -46.08333206 ], [ 166.63822937, -46.07688522 ], [ 166.64054871, -46.06888962 ], [ 166.61416626, -46.0597229 ], [ 166.60417175, -46.07472229 ], [ 166.58706665, -46.07938004 ], [ 166.59028625, -46.08765793 ], [ 166.576110840000013, -46.09388733 ], [ 166.56611633, -46.09083176 ], [ 166.56916809, -46.08638763 ], [ 166.56500244, -46.07138824 ], [ 166.582504269999987, -46.0625 ], [ 166.579162599999989, -46.05916595 ], [ 166.58555603, -46.04916763 ], [ 166.58305359, -46.04000092 ], [ 166.59277344, -46.03305435 ], [ 166.60221863000001, -46.05472183 ], [ 166.608306879999986, -46.05342102 ], [ 166.60417175, -46.04055405 ], [ 166.608612060000013, -46.03472137 ], [ 166.60028076, -46.02999878 ], [ 166.604995730000013, -46.01916504 ], [ 166.59832764, -46.01555634 ], [ 166.60806274, -46.01055527 ], [ 166.610000609999986, -46.0 ], [ 166.61851501000001, -45.98809433 ], [ 166.63909912, -45.97813416 ], [ 166.65846252, -45.97631454 ], [ 166.69134521, -45.96843719 ], [ 166.72392273, -45.968853 ], [ 166.74874878, -45.96327209 ], [ 166.76437378, -45.96881104 ], [ 166.76705933, -45.96144485 ], [ 166.75389099, -45.95305634 ], [ 166.77082825, -45.94861221 ], [ 166.764160159999989, -45.94472122 ], [ 166.74212646, -45.94428635 ], [ 166.70567322, -45.95703125 ], [ 166.68365479, -45.95609665 ], [ 166.664276120000011, -45.95083237 ], [ 166.65119934, -45.95134354 ], [ 166.64537048, -45.94051361 ], [ 166.65988159, -45.92154694 ], [ 166.67559814, -45.9131813 ], [ 166.6847229, -45.89694595 ], [ 166.68360901, -45.88833237 ], [ 166.68833923, -45.87638855 ], [ 166.69781494, -45.86569214 ], [ 166.6847229, -45.86972046 ], [ 166.68386841, -45.8758049 ], [ 166.672225950000012, -45.88485336 ], [ 166.670288090000014, -45.89672089 ], [ 166.64706421, -45.91238022 ], [ 166.6159668, -45.9564743 ], [ 166.60255432, -45.96148682 ], [ 166.596054079999988, -45.97047043 ], [ 166.5844574, -45.97473526 ], [ 166.553924560000013, -45.97845459 ], [ 166.53016663, -45.99290466 ], [ 166.51916504, -45.99277878 ], [ 166.49806213, -46.00222397 ], [ 166.48083496000001, -45.99666595 ], [ 166.4694519, -45.99888992 ], [ 166.47138977, -46.01250076 ], [ 166.46028137, -46.00972366 ], [ 166.455276489999989, -46.0 ], [ 166.44908142, -45.99935913 ], [ 166.4458313, -45.98110962 ], [ 166.45452881, -45.97956848 ], [ 166.44721985000001, -45.96749878 ], [ 166.45202637, -45.96198273 ], [ 166.44721985000001, -45.95000076 ], [ 166.450927729999989, -45.94077682 ], [ 166.43861389, -45.91805649 ], [ 166.4291687, -45.91166687 ], [ 166.42582703, -45.90277863 ], [ 166.43400574, -45.89476013 ], [ 166.4319458, -45.87333298 ], [ 166.43852234, -45.86170959 ], [ 166.42961121, -45.85750198 ], [ 166.42971802, -45.84000015 ], [ 166.44166565, -45.83777618 ], [ 166.44952393, -45.8303299 ], [ 166.44555664, -45.8180542 ], [ 166.45437622, -45.8134613 ], [ 166.46083069, -45.81833267 ], [ 166.47555542, -45.8148613 ], [ 166.4750061, -45.8105545 ], [ 166.50389099, -45.79972076 ], [ 166.51603699, -45.80065536 ], [ 166.51930237, -45.79428482 ], [ 166.54556274, -45.79402924 ], [ 166.55664063, -45.79061508 ], [ 166.580001829999986, -45.79138947 ], [ 166.57600403, -45.79687119 ], [ 166.59555054, -45.79444504 ], [ 166.59486389, -45.79842377 ], [ 166.56990051, -45.81642532 ], [ 166.58630371000001, -45.80742264 ], [ 166.59382629000001, -45.80717468 ], [ 166.61451721, -45.79846191 ], [ 166.6222229, -45.79083252 ], [ 166.64019775, -45.78965378 ], [ 166.659942629999989, -45.78388596 ], [ 166.6849823, -45.78049088 ], [ 166.70002747, -45.77593613 ], [ 166.70535278, -45.77819061 ], [ 166.72683716, -45.77153778 ], [ 166.739349370000014, -45.77079773 ], [ 166.75427246000001, -45.76564026 ], [ 166.80441284, -45.75960922 ], [ 166.826385499999986, -45.76166534 ], [ 166.82800293, -45.77100754 ], [ 166.84346008, -45.77471924 ], [ 166.85531616, -45.76700592 ], [ 166.83833313, -45.76972198 ], [ 166.83833313, -45.76251984 ], [ 166.85006714, -45.76020813 ], [ 166.87095642, -45.74505997 ], [ 166.88572693, -45.73748016 ], [ 166.906448360000013, -45.73486328 ], [ 166.93208313, -45.73554611 ], [ 166.950271609999987, -45.72999954 ], [ 166.98005676, -45.71680069 ], [ 166.96989441, -45.71674347 ], [ 166.953887939999987, -45.72221756 ], [ 166.948181150000011, -45.72079086 ], [ 166.956253049999987, -45.71191406 ], [ 166.96080017, -45.6961937 ], [ 166.949569700000012, -45.69667435 ], [ 166.94018555, -45.71081161 ], [ 166.93823242, -45.72294998 ], [ 166.931411739999987, -45.7265892 ], [ 166.92607117, -45.720047 ], [ 166.90090942, -45.72591019 ], [ 166.8989563, -45.72280502 ], [ 166.8755188, -45.71450424 ], [ 166.86325073, -45.71772766 ], [ 166.84475708, -45.71232986 ], [ 166.8381958, -45.70619202 ], [ 166.82015991, -45.70447922 ], [ 166.79954529, -45.71475983 ], [ 166.795425419999987, -45.71363831 ], [ 166.76306152, -45.72358322 ], [ 166.75947571, -45.72254181 ], [ 166.729705810000013, -45.72852325 ], [ 166.72923279, -45.7063446 ], [ 166.73928833, -45.68661499 ], [ 166.737930299999988, -45.67990875 ], [ 166.75149536, -45.66757584 ], [ 166.760269169999987, -45.66748047 ], [ 166.80038452, -45.65806961 ], [ 166.81756592, -45.65629959 ], [ 166.84359741, -45.64725494 ], [ 166.85900879, -45.64386749 ], [ 166.868103029999986, -45.64537811 ], [ 166.88980103, -45.63834763 ], [ 166.9059906, -45.63991547 ], [ 166.91671753, -45.63199615 ], [ 166.93940735000001, -45.63021851 ], [ 166.9677887, -45.60643387 ], [ 166.950683590000011, -45.61153793 ], [ 166.93371582, -45.62442017 ], [ 166.918472290000011, -45.6280632 ], [ 166.90858459, -45.62686157 ], [ 166.88633728, -45.63008881 ], [ 166.86775208, -45.63557434 ], [ 166.85450745, -45.63003922 ], [ 166.841033939999988, -45.63373566 ], [ 166.815979, -45.64469147 ], [ 166.81167603, -45.64397049 ], [ 166.79020691, -45.65245819 ], [ 166.76397705, -45.6575737 ], [ 166.73257446, -45.65982819 ], [ 166.72944641, -45.64222336 ], [ 166.729995730000013, -45.61457825 ], [ 166.72389221, -45.60027695 ], [ 166.72929382, -45.59573364 ], [ 166.741867070000012, -45.5959053 ], [ 166.75906372, -45.59169388 ], [ 166.76785278, -45.59370041 ], [ 166.78633118, -45.57727814 ], [ 166.82492065, -45.56433105 ], [ 166.836135860000013, -45.55887604 ], [ 166.85505676, -45.55949783 ], [ 166.87083435, -45.55194473 ], [ 166.889434810000012, -45.56159973 ], [ 166.92521667, -45.56329727 ], [ 166.9412384, -45.55560303 ], [ 166.9599762, -45.55223465 ], [ 166.987228390000013, -45.56416702 ], [ 166.99610901, -45.55722046 ], [ 166.98260498, -45.56000137 ], [ 166.96983337, -45.5488739 ], [ 166.961135860000013, -45.54637527 ], [ 166.94572449, -45.54874802 ], [ 166.914398190000014, -45.55683899 ], [ 166.893615720000014, -45.55638885 ], [ 166.88195801, -45.54971695 ], [ 166.88366699, -45.53848267 ], [ 166.896240229999989, -45.53269577 ], [ 166.91389465, -45.53111267 ], [ 166.94236755, -45.52559662 ], [ 166.98031616, -45.5067749 ], [ 166.97111511, -45.50055695 ], [ 166.96261597, -45.50851822 ], [ 166.94058228, -45.51263809 ], [ 166.926818849999989, -45.52090454 ], [ 166.90501404, -45.52407837 ], [ 166.884414670000012, -45.52996063 ], [ 166.86834717, -45.52199554 ], [ 166.8740387, -45.5295639 ], [ 166.87150574, -45.54288864 ], [ 166.85083008, -45.54995346 ], [ 166.83999634, -45.54833221 ], [ 166.814819340000014, -45.55461121 ], [ 166.80871582, -45.55271149 ], [ 166.78744507, -45.56188202 ], [ 166.77507019, -45.55926132 ], [ 166.772369379999986, -45.56749725 ], [ 166.750778200000013, -45.57237244 ], [ 166.73445129000001, -45.5802536 ], [ 166.68666077, -45.58361053 ], [ 166.67105103, -45.57450104 ], [ 166.67304993, -45.56361008 ], [ 166.670272829999988, -45.55083466 ], [ 166.67581177, -45.54227829 ], [ 166.67944336, -45.52222061 ], [ 166.68804932, -45.50583267 ], [ 166.69639587, -45.49861145 ], [ 166.71749878, -45.50444412 ], [ 166.72471619, -45.49750137 ], [ 166.71194458, -45.48249817 ], [ 166.71055603, -45.4711113 ], [ 166.71916199, -45.46583176 ], [ 166.72840881, -45.4526329 ], [ 166.72416687, -45.44194412 ], [ 166.7338562, -45.43813324 ], [ 166.738616940000014, -45.42472076 ], [ 166.73194885, -45.42027664 ], [ 166.745300289999989, -45.41518021 ], [ 166.75111389, -45.4011116 ], [ 166.767379760000011, -45.40003967 ], [ 166.77583313, -45.39333344 ], [ 166.80178833, -45.39505005 ], [ 166.829574580000013, -45.40554428 ], [ 166.83537292, -45.41218948 ], [ 166.85256958, -45.42105484 ], [ 166.872817989999987, -45.42095184 ], [ 166.87901306, -45.43546677 ], [ 166.88945007, -45.44037247 ], [ 166.90588379, -45.43199158 ], [ 166.89057922, -45.43650436 ], [ 166.870025629999986, -45.41411209 ], [ 166.872955319999988, -45.40740967 ], [ 166.86703491, -45.39028168 ], [ 166.85946655, -45.38707352 ], [ 166.86521912, -45.40402985 ], [ 166.854431150000011, -45.41426468 ], [ 166.846603390000013, -45.40570831 ], [ 166.82868958, -45.39988708 ], [ 166.827911379999989, -45.39554977 ], [ 166.81056213, -45.39159775 ], [ 166.792495730000013, -45.37833405 ], [ 166.771392819999988, -45.37916565 ], [ 166.769729610000013, -45.37138748 ], [ 166.77667236, -45.3488884 ], [ 166.80499268, -45.31277847 ], [ 166.8152771, -45.30971909 ], [ 166.81777954, -45.30277634 ], [ 166.82997131, -45.30008698 ], [ 166.83332825, -45.28749847 ], [ 166.84416199, -45.27500153 ], [ 166.861114500000014, -45.27972412 ], [ 166.87277222, -45.29087067 ], [ 166.89512634, -45.29913712 ], [ 166.909118650000011, -45.30727768 ], [ 166.9379425, -45.31076431 ], [ 166.94976807, -45.32108307 ], [ 166.928497310000012, -45.32699203 ], [ 166.91558838, -45.33552933 ], [ 166.89476013, -45.34000778 ], [ 166.90756226, -45.34300613 ], [ 166.91964722, -45.33968735 ], [ 166.93341064, -45.33008575 ], [ 166.94917297, -45.3274498 ], [ 166.961730960000011, -45.3203392 ], [ 166.971862789999989, -45.32273483 ], [ 166.98445129000001, -45.33330154 ], [ 167.02868652, -45.35214615 ], [ 167.020004269999987, -45.36055374 ], [ 167.02047729, -45.36644745 ], [ 167.03666687, -45.3544426 ], [ 167.042770389999987, -45.35777664 ], [ 167.06654358, -45.3612175 ], [ 167.09056091, -45.38527679 ], [ 167.09335327, -45.39879227 ], [ 167.10716248, -45.41318512 ], [ 167.1068573, -45.41847229 ], [ 167.11582947, -45.43083191 ], [ 167.11528015, -45.44861221 ], [ 167.109573360000013, -45.4552002 ], [ 167.08213806, -45.46886063 ], [ 167.07273865, -45.47683716 ], [ 167.07546997, -45.48483658 ], [ 167.05770874000001, -45.50493622 ], [ 167.07975769, -45.48871994 ], [ 167.07969666, -45.48031998 ], [ 167.090332030000013, -45.47013474 ], [ 167.11999512, -45.45833206 ], [ 167.122146609999987, -45.44857407 ], [ 167.135131840000014, -45.44285583 ], [ 167.15049744, -45.4548645 ], [ 167.152771, -45.46166611 ], [ 167.16339111, -45.46514511 ], [ 167.149047849999988, -45.4462471 ], [ 167.12934875, -45.43193436 ], [ 167.13250732, -45.41833496 ], [ 167.11471558, -45.39805603 ], [ 167.109176639999987, -45.38716507 ], [ 167.09849548, -45.3809967 ], [ 167.09971619, -45.37638855 ], [ 167.08528137, -45.36584473 ], [ 167.08528137, -45.36111069 ], [ 167.06666565, -45.35027695 ], [ 167.042770389999987, -45.34666824 ], [ 167.00750732, -45.32110977 ], [ 167.00721741000001, -45.31499863 ], [ 167.015274049999988, -45.31222153 ], [ 167.0171814, -45.30317307 ], [ 167.02757263, -45.3018074 ], [ 167.03416443, -45.29305649 ], [ 167.04916382, -45.29083252 ], [ 167.06929016, -45.29294205 ], [ 167.07836914, -45.28929138 ], [ 167.113616940000014, -45.28610992 ], [ 167.12889099, -45.28305435 ], [ 167.14582825, -45.28972244 ], [ 167.14860535, -45.30416489 ], [ 167.17468262, -45.32094955 ], [ 167.18972778, -45.31972122 ], [ 167.184341429999989, -45.31237793 ], [ 167.17259216, -45.31438446 ], [ 167.15602112, -45.30072403 ], [ 167.15611267, -45.28861237 ], [ 167.1434021, -45.27856827 ], [ 167.1472168, -45.27027893 ], [ 167.1555481, -45.26944351 ], [ 167.1703186, -45.25483322 ], [ 167.16416931, -45.24972153 ], [ 167.14439392, -45.2661171 ], [ 167.12495422, -45.26202393 ], [ 167.12028503, -45.2705574 ], [ 167.110275269999988, -45.27694321 ], [ 167.10083008, -45.27500153 ], [ 167.06416321, -45.28245926 ], [ 167.04444885, -45.2816658 ], [ 167.025039670000012, -45.28647232 ], [ 167.011383059999986, -45.28027725 ], [ 167.00250244, -45.26472092 ], [ 167.00639343, -45.2508316 ], [ 167.00111389, -45.24166489 ], [ 166.991439820000011, -45.23694229 ], [ 166.98588562, -45.22650146 ], [ 166.97512817, -45.21796417 ], [ 166.97685242, -45.21243668 ], [ 166.96763611, -45.19170761 ], [ 166.97590637, -45.19077301 ], [ 166.97685242, -45.18120956 ], [ 166.983886719999987, -45.17416763 ], [ 166.983337400000011, -45.1669426 ], [ 166.99327087, -45.16505432 ], [ 166.98747253, -45.15602112 ], [ 166.976104740000011, -45.14749908 ], [ 166.97555542, -45.13722229 ], [ 166.98757935, -45.13148117 ], [ 166.98693848, -45.12749863 ], [ 167.001190189999988, -45.12438583 ], [ 167.01306152, -45.10388947 ], [ 167.01445007, -45.10805511 ], [ 167.03944397, -45.11250687 ], [ 167.05805969, -45.13083267 ], [ 167.06056213, -45.13972092 ], [ 167.080001829999986, -45.16055679 ], [ 167.09222412, -45.16611099 ], [ 167.10333252, -45.1847229 ], [ 167.13194275, -45.17722321 ], [ 167.148895259999989, -45.17638779 ], [ 167.13305664, -45.17050552 ], [ 167.1091156, -45.17777634 ], [ 167.09638977, -45.15722275 ], [ 167.08805847, -45.15416718 ], [ 167.06832886, -45.1269455 ], [ 167.07125854, -45.12464142 ], [ 167.05194092, -45.10722351 ], [ 167.04156494, -45.10305405 ], [ 167.02749634, -45.10361099 ], [ 167.02972412, -45.09527588 ], [ 167.039978029999986, -45.08889389 ], [ 167.043884279999986, -45.07666779 ], [ 167.05805969, -45.06750107 ], [ 167.06039429, -45.06013107 ], [ 167.078887939999987, -45.05083466 ], [ 167.08694458, -45.05166626 ], [ 167.097229, -45.07555389 ], [ 167.10583496000001, -45.07916641 ], [ 167.11166382, -45.09027863 ], [ 167.13130188, -45.10022354 ], [ 167.12916565, -45.10861206 ], [ 167.13583374000001, -45.12250137 ], [ 167.13221741000001, -45.12916565 ], [ 167.139999390000014, -45.13138962 ], [ 167.147506709999988, -45.14333344 ], [ 167.16082764, -45.14444351 ], [ 167.16583252, -45.15139008 ], [ 167.167221070000011, -45.14277649 ], [ 167.14305115, -45.13333511 ], [ 167.14555359, -45.12055588 ], [ 167.138885499999986, -45.10916519 ], [ 167.14718628, -45.09962463 ], [ 167.172225950000012, -45.10305405 ], [ 167.186721799999987, -45.10077286 ], [ 167.2180481, -45.10889053 ], [ 167.19883728, -45.09643555 ], [ 167.16139221, -45.09638977 ], [ 167.15611267, -45.09222412 ], [ 167.13754272, -45.0950737 ], [ 167.12916565, -45.0913887 ], [ 167.11166382, -45.07444382 ], [ 167.09527588, -45.04944611 ], [ 167.09111023, -45.03749847 ], [ 167.103607180000012, -45.02999878 ], [ 167.09194946, -45.02500153 ], [ 167.110565189999988, -45.01937103 ], [ 167.103607180000012, -45.01388931 ], [ 167.1255188, -45.0110321 ], [ 167.13528442, -45.0027771 ], [ 167.13574219, -45.01514053 ], [ 167.145278929999989, -45.01861191 ], [ 167.1680603, -45.02138901 ], [ 167.184356689999987, -45.02074814 ], [ 167.197494510000013, -45.02777863 ], [ 167.21777344, -45.03388977 ], [ 167.24278259, -45.04416656 ], [ 167.25332642, -45.04333496 ], [ 167.2694397, -45.04944611 ], [ 167.293609620000012, -45.04833221 ], [ 167.30221558, -45.05222321 ], [ 167.30749512, -45.04499817 ], [ 167.29789734, -45.04177475 ], [ 167.28778076, -45.04472351 ], [ 167.27194214, -45.03749847 ], [ 167.2555542, -45.03527832 ], [ 167.24667358, -45.03833389 ], [ 167.232772829999988, -45.03527832 ], [ 167.22250366, -45.02527618 ], [ 167.20083618000001, -45.01333237 ], [ 167.186752320000011, -45.01272202 ], [ 167.17790222, -45.007061 ], [ 167.163604740000011, -45.00500107 ], [ 167.146270750000014, -45.00873566 ], [ 167.136108400000012, -44.98611069 ], [ 167.146392819999988, -44.97444534 ], [ 167.16944885, -44.96805573 ], [ 167.17582703, -44.95666504 ], [ 167.1930542, -44.96166611 ], [ 167.19528198, -44.95722198 ], [ 167.1875, -44.95027924 ], [ 167.19917297, -44.94138718 ], [ 167.21166992, -44.92666626 ], [ 167.21916199, -44.92277908 ], [ 167.227493290000012, -44.92722321 ], [ 167.23956299, -44.92740631 ], [ 167.241836549999988, -44.92250824 ], [ 167.23167419, -44.91833496 ], [ 167.222229, -44.91944504 ], [ 167.22694397, -44.90888977 ], [ 167.24305725, -44.90638733 ], [ 167.24278259, -44.89694595 ], [ 167.25332642, -44.89444351 ], [ 167.25805664, -44.88611221 ], [ 167.27082825, -44.8777771 ], [ 167.2694397, -44.86861038 ], [ 167.29916382, -44.86360931 ], [ 167.31944275, -44.85277939 ], [ 167.32583618000001, -44.8441658 ], [ 167.33999634, -44.84444427 ], [ 167.34388733, -44.85638809 ], [ 167.34194946, -44.86444473 ], [ 167.34777832, -44.87638855 ], [ 167.36721802, -44.89110947 ], [ 167.37091064, -44.90597534 ], [ 167.376739500000014, -44.91066742 ], [ 167.37638855, -44.92194366 ], [ 167.36677551, -44.92989731 ], [ 167.36651611, -44.94495392 ], [ 167.36149597, -44.94777679 ], [ 167.37620544, -44.95146179 ], [ 167.39344788, -44.9500351 ], [ 167.40182495, -44.95859909 ], [ 167.40472412, -44.96944427 ], [ 167.3805542, -44.98472214 ], [ 167.38305664, -44.99833298 ], [ 167.40138245, -44.97861099 ], [ 167.41194153, -44.97333145 ], [ 167.422348019999987, -44.97382736 ], [ 167.42582703, -44.98194504 ], [ 167.44166565, -44.98389053 ], [ 167.43417358, -44.97888947 ], [ 167.4347229, -44.97055435 ], [ 167.42443848, -44.9655571 ], [ 167.40258789, -44.94337463 ], [ 167.38415527, -44.93684006 ], [ 167.389999390000014, -44.92610931 ], [ 167.40167236, -44.92935944 ], [ 167.393615720000014, -44.92194366 ], [ 167.392501829999986, -44.9058342 ], [ 167.387222290000011, -44.89972305 ], [ 167.38417053, -44.88305664 ], [ 167.37472534, -44.87555695 ], [ 167.36715698, -44.85725021 ], [ 167.35644531, -44.84527206 ], [ 167.35444641, -44.82500076 ], [ 167.37306213, -44.8172226 ], [ 167.38000488, -44.80805588 ], [ 167.392776489999989, -44.81472397 ], [ 167.39193726, -44.80611038 ], [ 167.40527344, -44.79555511 ], [ 167.416381840000014, -44.79583359 ], [ 167.44833374000001, -44.77388763 ], [ 167.47084045, -44.77249908 ], [ 167.48916626, -44.77666855 ], [ 167.512222290000011, -44.79472351 ], [ 167.5375061, -44.80027771 ], [ 167.53321838, -44.80805206 ], [ 167.516387939999987, -44.81916809 ], [ 167.50444031, -44.8330574 ], [ 167.48916626, -44.8461113 ], [ 167.49110413, -44.86222076 ], [ 167.509994510000013, -44.87527847 ], [ 167.53027344, -44.88166809 ], [ 167.52471924, -44.87250137 ], [ 167.50666809, -44.86333466 ], [ 167.49972534, -44.8544426 ], [ 167.512222290000011, -44.84805679 ], [ 167.519729610000013, -44.8330574 ], [ 167.545837400000011, -44.80722046 ], [ 167.546661379999989, -44.79999924 ], [ 167.52932739, -44.7948494 ], [ 167.52471924, -44.78555679 ], [ 167.506103520000011, -44.76805496 ], [ 167.5055542, -44.75888824 ], [ 167.49417114, -44.75309372 ], [ 167.51916504, -44.73389053 ], [ 167.53027344, -44.72999954 ], [ 167.54333496000001, -44.73666763 ], [ 167.5549469, -44.73852539 ], [ 167.56944275, -44.73611069 ], [ 167.58972168, -44.74111176 ], [ 167.5725708, -44.72187042 ], [ 167.55944824, -44.71583176 ], [ 167.56916809, -44.69499969 ], [ 167.57055664, -44.68638992 ], [ 167.58729553, -44.66854477 ], [ 167.603164670000012, -44.66573334 ], [ 167.613891599999988, -44.65888977 ], [ 167.62445068, -44.6613884 ], [ 167.639724730000012, -44.67111206 ], [ 167.65499878, -44.68638992 ], [ 167.66333008, -44.6847229 ], [ 167.66667175, -44.67722321 ], [ 167.65222168, -44.65833282 ], [ 167.63471985000001, -44.64666748 ], [ 167.63417053, -44.64110947 ], [ 167.64956665, -44.64071655 ], [ 167.6680603, -44.63305664 ], [ 167.677505489999987, -44.62444305 ], [ 167.70787048, -44.60488129 ], [ 167.737777709999989, -44.60388947 ], [ 167.74777222, -44.59194565 ], [ 167.74278259, -44.59083176 ], [ 167.75027466, -44.58000183 ], [ 167.76028442, -44.58111191 ], [ 167.78334045, -44.57194519 ], [ 167.78791809, -44.58618164 ], [ 167.80317688, -44.59117889 ], [ 167.80555725, -44.60277939 ], [ 167.82556152, -44.60499954 ], [ 167.81721497, -44.59944534 ], [ 167.82167053, -44.56972122 ], [ 167.8221283, -44.55041885 ], [ 167.829055790000012, -44.54079819 ], [ 167.828887939999987, -44.51055527 ], [ 167.81582642, -44.4980545 ], [ 167.83860779, -44.48888779 ], [ 167.85694885, -44.46606064 ], [ 167.85856628, -44.45378494 ], [ 167.863891599999988, -44.44499969 ], [ 167.883270259999989, -44.43092728 ], [ 167.889999390000014, -44.42083359 ], [ 167.90614319, -44.41422653 ], [ 167.90872192, -44.40541077 ], [ 167.92195129000001, -44.40277863 ], [ 167.92971802, -44.38999939 ], [ 167.95666504, -44.3797226 ], [ 167.97389221, -44.38555527 ], [ 167.98805237, -44.375 ], [ 168.00067139, -44.35326385 ], [ 167.999099730000012, -44.36158752 ], [ 168.00601196, -44.36971283 ], [ 168.01545715, -44.37123108 ], [ 168.01425171, -44.37918091 ], [ 168.02929688, -44.40123367 ], [ 168.03729248, -44.40808487 ], [ 168.03118896, -44.41884232 ], [ 168.03225708, -44.43580246 ], [ 168.03817749000001, -44.44482422 ], [ 168.049331669999987, -44.45034409 ], [ 168.05358887, -44.46315384 ], [ 168.05328369, -44.47794342 ], [ 168.05732727, -44.51187515 ], [ 168.068603520000011, -44.51861191 ], [ 168.079833979999989, -44.5114212 ], [ 168.0715332, -44.49285126 ], [ 168.07159424, -44.46428299 ], [ 168.06222534, -44.43722153 ], [ 168.055618290000012, -44.43026352 ], [ 168.05722046, -44.41522598 ], [ 168.03443909, -44.38805389 ], [ 168.02024841, -44.38628387 ], [ 168.017227170000012, -44.37166595 ], [ 168.00485229, -44.36623383 ], [ 168.00805664, -44.35138702 ], [ 168.006774900000011, -44.33853912 ], [ 167.99667358, -44.33472061 ], [ 167.99333191, -44.32722092 ], [ 168.01055908, -44.32277679 ], [ 168.01554871, -44.32527924 ], [ 168.05805969, -44.32611084 ], [ 168.07221985000001, -44.33111191 ], [ 168.09138489, -44.33027649 ], [ 168.104721070000011, -44.31499863 ], [ 168.11721802, -44.29027939 ], [ 168.10417175, -44.27916718 ], [ 168.106399540000012, -44.27413177 ], [ 168.11724854, -44.27658844 ], [ 168.12504578, -44.28541183 ], [ 168.135925289999989, -44.28790665 ], [ 168.14987183, -44.2840538 ], [ 168.153793330000013, -44.28849411 ], [ 168.21661377, -44.27118683 ], [ 168.219650269999988, -44.26479721 ], [ 168.24057007, -44.25902176 ], [ 168.24057007, -44.25902176 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.13", "id_1": 13, "name_1": "Taranaki", "hasc_1": "NZ.TK", "population2022": 127300, "areakm2": 8011.9, "density2022": 15.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.017501829999986, -39.06027603 ], [ 174.01832581, -39.06138992 ], [ 174.016555790000012, -39.0621109 ], [ 174.017501829999986, -39.06027603 ], [ 174.017501829999986, -39.06027603 ] ] ], [ [ [ 174.019729610000013, -39.05861282 ], [ 174.021118159999986, -39.0597229 ], [ 174.01942444, -39.06063843 ], [ 174.019729610000013, -39.05861282 ], [ 174.019729610000013, -39.05861282 ] ] ], [ [ [ 174.02638245, -39.05166626 ], [ 174.02555847, -39.04999924 ], [ 174.02709961, -39.05005264 ], [ 174.02638245, -39.05166626 ], [ 174.02638245, -39.05166626 ] ] ], [ [ [ 174.01568604, -39.04586411 ], [ 174.01489258, -39.04523468 ], [ 174.016387939999987, -39.04472351 ], [ 174.01568604, -39.04586411 ], [ 174.01568604, -39.04586411 ] ] ], [ [ [ 174.29194641, -38.94610977 ], [ 174.292221070000011, -38.94805527 ], [ 174.2902832, -38.94722366 ], [ 174.29194641, -38.94610977 ], [ 174.29194641, -38.94610977 ] ] ], [ [ [ 174.61305237, -38.70583344 ], [ 174.6257019, -38.72396851 ], [ 174.635940549999987, -38.72636795 ], [ 174.64909363000001, -38.72238922 ], [ 174.66009521, -38.73557663 ], [ 174.67326355, -38.73160553 ], [ 174.69009399, -38.73203278 ], [ 174.69377136, -38.73641586 ], [ 174.7069397, -38.73245621 ], [ 174.727462769999988, -38.73726273 ], [ 174.74430847, -38.73768234 ], [ 174.75164795, -38.74642944 ], [ 174.797805790000012, -38.73258972 ], [ 174.80807495, -38.73498154 ], [ 174.82278442, -38.75244141 ], [ 174.82937622, -38.75046158 ], [ 174.836730960000011, -38.75918579 ], [ 174.83381653, -38.76552582 ], [ 174.844100950000012, -38.76790619 ], [ 174.85145569, -38.77662277 ], [ 174.85806274, -38.77464294 ], [ 174.872024540000012, -38.78137589 ], [ 174.85882568, -38.78533936 ], [ 174.855133059999986, -38.78098297 ], [ 174.82214355, -38.79088974 ], [ 174.82290649, -38.80158997 ], [ 174.81414795, -38.82061386 ], [ 174.79067993000001, -38.82221222 ], [ 174.809082030000013, -38.84399796 ], [ 174.79956055, -38.85232925 ], [ 174.80691528, -38.86103821 ], [ 174.800323490000011, -38.86302948 ], [ 174.8371582, -38.90654373 ], [ 174.85035706, -38.90256119 ], [ 174.84667969, -38.89821243 ], [ 174.8664856, -38.89224625 ], [ 174.87678528, -38.89460373 ], [ 174.88786316, -38.90764618 ], [ 174.8812561, -38.90963745 ], [ 174.88862610000001, -38.91832733 ], [ 174.876190189999988, -38.93299484 ], [ 174.883575439999987, -38.94168854 ], [ 174.87696838, -38.94367981 ], [ 174.890960690000014, -38.95037842 ], [ 174.885131840000014, -38.96305084 ], [ 174.87852478, -38.96504593 ], [ 174.89253235000001, -38.97174072 ], [ 174.88008118, -38.98641205 ], [ 174.887481689999987, -38.99509811 ], [ 174.90071106, -38.99110794 ], [ 174.90440369, -38.99545288 ], [ 174.917633059999986, -38.99146271 ], [ 174.925033570000011, -39.00014496 ], [ 174.91920471, -39.01281738 ], [ 174.92951965, -39.01516342 ], [ 174.9390564, -39.00683212 ], [ 174.935348510000011, -39.002491 ], [ 174.948577879999988, -38.99849701 ], [ 174.958892819999988, -39.00084305 ], [ 174.966308590000011, -39.0095253 ], [ 174.963394169999987, -39.0158577 ], [ 174.974533079999986, -39.02887726 ], [ 174.96791077, -39.03087234 ], [ 174.98275757, -39.0482254 ], [ 174.969512939999987, -39.05222321 ], [ 174.96740723, -39.06923294 ], [ 174.98065186, -39.06523514 ], [ 174.990997310000012, -39.06757736 ], [ 174.99842834, -39.07624817 ], [ 175.01828003, -39.07025146 ], [ 175.05218506, -39.07092285 ], [ 175.046386719999987, -39.08359146 ], [ 175.05381775, -39.09225845 ], [ 175.0604248, -39.09025955 ], [ 175.07901001, -39.11192322 ], [ 175.065765379999988, -39.11592865 ], [ 175.041381840000014, -39.10693359 ], [ 175.03767395, -39.10259628 ], [ 175.02442932, -39.10660172 ], [ 175.018630980000012, -39.11927414 ], [ 175.00538635, -39.12327957 ], [ 175.01281738, -39.13195038 ], [ 174.99586487, -39.1316185 ], [ 175.003295900000012, -39.14028931 ], [ 174.979705810000013, -39.14196014 ], [ 174.99458313, -39.15930557 ], [ 174.96809387, -39.16732025 ], [ 174.95773315, -39.16498566 ], [ 174.954833979999989, -39.17132568 ], [ 174.965179440000014, -39.17366028 ], [ 174.94529724, -39.17967224 ], [ 174.957519530000013, -39.18417358 ], [ 174.949844359999986, -39.19468689 ], [ 174.94320679, -39.19668961 ], [ 174.931579590000013, -39.22206116 ], [ 174.918319700000012, -39.2260704 ], [ 174.92576599, -39.23474503 ], [ 174.9125061, -39.23875809 ], [ 174.90504456, -39.23008347 ], [ 174.899230960000011, -39.24277115 ], [ 174.88224792, -39.24244308 ], [ 174.874801639999987, -39.23376465 ], [ 174.86526489, -39.24211502 ], [ 174.872695920000012, -39.25079346 ], [ 174.86315918, -39.25914764 ], [ 174.86688232, -39.26348495 ], [ 174.853607180000012, -39.26749802 ], [ 174.839050289999989, -39.2992363 ], [ 174.82577515, -39.30325317 ], [ 174.82949829, -39.3075943 ], [ 174.81994629, -39.31594849 ], [ 174.82739258, -39.32462692 ], [ 174.820755, -39.32663727 ], [ 174.82820129000001, -39.33531952 ], [ 174.842285159999989, -39.34198761 ], [ 174.85557556, -39.33796692 ], [ 174.86303711, -39.34664536 ], [ 174.86967468, -39.34463501 ], [ 174.88088989, -39.35765076 ], [ 174.9016571, -39.36230469 ], [ 174.892929079999988, -39.38135147 ], [ 174.88627625, -39.38336563 ], [ 174.88711548, -39.3940506 ], [ 174.87007141, -39.39373398 ], [ 174.896270750000014, -39.4241066 ], [ 174.88961792, -39.42611694 ], [ 174.89710999, -39.43479538 ], [ 174.89045715, -39.43680573 ], [ 174.905456539999989, -39.45415878 ], [ 174.91584778, -39.45648193 ], [ 174.91294861, -39.4628334 ], [ 174.923324580000013, -39.46515656 ], [ 174.938293460000011, -39.48250198 ], [ 174.94866943, -39.48482132 ], [ 174.96192932, -39.48078537 ], [ 174.96940613000001, -39.48945618 ], [ 174.96652222, -39.49580765 ], [ 174.97773743, -39.50881195 ], [ 174.97111511, -39.51082993 ], [ 174.978591920000014, -39.51950073 ], [ 174.9719696, -39.52151871 ], [ 174.99440002, -39.5475235 ], [ 174.99526978, -39.55821609 ], [ 174.98202515, -39.56225967 ], [ 174.98577881, -39.56659317 ], [ 174.97427368000001, -39.59202576 ], [ 174.978027340000011, -39.59636307 ], [ 174.97229004, -39.60908127 ], [ 174.9797821, -39.61775208 ], [ 174.97317505, -39.61977768 ], [ 174.980682370000011, -39.62844849 ], [ 174.97406006, -39.63047409 ], [ 174.98532104, -39.64347839 ], [ 174.97209167, -39.64753342 ], [ 174.98246765, -39.64984131 ], [ 174.98335266, -39.66054153 ], [ 174.98997498, -39.65851212 ], [ 174.9974823, -39.66718292 ], [ 174.97764587, -39.67326736 ], [ 174.98141479, -39.67760086 ], [ 174.95495605, -39.68570328 ], [ 174.95118713, -39.68136597 ], [ 174.931274409999986, -39.68742752 ], [ 174.93884277, -39.69610596 ], [ 174.92555237, -39.70014191 ], [ 174.9264679, -39.71084213 ], [ 174.941619870000011, -39.72821426 ], [ 174.92832947, -39.7322464 ], [ 174.925460820000012, -39.73860168 ], [ 174.93307495, -39.74729156 ], [ 174.919708250000014, -39.75130844 ], [ 174.9158783, -39.74695969 ], [ 174.888885499999986, -39.75491714 ], [ 174.88980103, -39.76560211 ], [ 174.87625122, -39.76953506 ], [ 174.88008118, -39.77389145 ], [ 174.8528595, -39.78165054 ], [ 174.853713989999989, -39.79227448 ], [ 174.84381104, -39.80039597 ], [ 174.82299805, -39.80586243 ], [ 174.80526733, -39.80513382 ], [ 174.795837400000011, -39.82356262 ], [ 174.802810670000014, -39.82175827 ], [ 174.789520259999989, -39.83581543 ], [ 174.78570557, -39.83148956 ], [ 174.779373170000014, -39.8437233 ], [ 174.762207030000013, -39.85339355 ], [ 174.77305603, -39.85594177 ], [ 174.77902222, -39.86208725 ], [ 174.735412599999989, -39.86914062 ], [ 174.71916199, -39.86833191 ], [ 174.70318604, -39.86205673 ], [ 174.68333435, -39.84916687 ], [ 174.65007019, -39.83589935 ], [ 174.603881840000014, -39.82389069 ], [ 174.59555054, -39.82389069 ], [ 174.57746887, -39.8170166 ], [ 174.56111145, -39.81750107 ], [ 174.53555298, -39.80444336 ], [ 174.51060486, -39.78047943 ], [ 174.46611023, -39.76444626 ], [ 174.44778442, -39.75361252 ], [ 174.41757202, -39.7309494 ], [ 174.39562988, -39.70663452 ], [ 174.38694763, -39.70000076 ], [ 174.354995730000013, -39.66117477 ], [ 174.3349762, -39.64667511 ], [ 174.30786133, -39.63366699 ], [ 174.29853821, -39.62673187 ], [ 174.27963257, -39.62005615 ], [ 174.26144409, -39.61820984 ], [ 174.24777222, -39.61194611 ], [ 174.235000609999986, -39.60222244 ], [ 174.19891357, -39.58702087 ], [ 174.16278076, -39.5858345 ], [ 174.14805603, -39.58083344 ], [ 174.13082886, -39.57888794 ], [ 174.105270389999987, -39.57944489 ], [ 174.08430481, -39.57617187 ], [ 174.07867432, -39.57793808 ], [ 174.05204773, -39.56345749 ], [ 174.041107180000012, -39.5597229 ], [ 174.014160159999989, -39.55749893 ], [ 174.00361633, -39.55194473 ], [ 173.987503049999987, -39.55444336 ], [ 173.958618159999986, -39.5391655 ], [ 173.948883059999986, -39.54000092 ], [ 173.941726679999988, -39.52871323 ], [ 173.92411804, -39.51942062 ], [ 173.91113281, -39.51940918 ], [ 173.90028381, -39.50111008 ], [ 173.88278198, -39.48749924 ], [ 173.85667419, -39.4580574 ], [ 173.83163452, -39.44695663 ], [ 173.83082581, -39.44055557 ], [ 173.82028198, -39.43083191 ], [ 173.79673767, -39.41806412 ], [ 173.77940369, -39.38747787 ], [ 173.77101135, -39.36660385 ], [ 173.77258301, -39.35658264 ], [ 173.76928711, -39.33974075 ], [ 173.75935364, -39.32108688 ], [ 173.76014709, -39.31324005 ], [ 173.754653929999989, -39.30379105 ], [ 173.75582886, -39.29583359 ], [ 173.75131226, -39.28197479 ], [ 173.754959109999987, -39.26748657 ], [ 173.77244568, -39.24766541 ], [ 173.77583313, -39.23361206 ], [ 173.77272034, -39.2306633 ], [ 173.777771, -39.2155571 ], [ 173.784378049999987, -39.21047974 ], [ 173.79034424, -39.19300461 ], [ 173.817184450000013, -39.17972183 ], [ 173.82060242, -39.17007446 ], [ 173.83311462, -39.16767502 ], [ 173.84536743000001, -39.15342712 ], [ 173.88317871000001, -39.13434601 ], [ 173.89604187, -39.13205338 ], [ 173.912048340000013, -39.11937332 ], [ 173.94709778, -39.11579514 ], [ 173.968124390000014, -39.10219574 ], [ 173.98103333, -39.09764481 ], [ 173.99110413, -39.08889008 ], [ 174.0027771, -39.0858345 ], [ 174.01832581, -39.06888962 ], [ 174.02416992, -39.05722046 ], [ 174.0402832, -39.06027603 ], [ 174.0625, -39.05500031 ], [ 174.071105960000011, -39.05583191 ], [ 174.09805298, -39.04472351 ], [ 174.103607180000012, -39.03666687 ], [ 174.11917114, -39.0316658 ], [ 174.13417053, -39.02000046 ], [ 174.15621948, -39.01639175 ], [ 174.170822140000013, -39.0064888 ], [ 174.17973328, -38.99571609 ], [ 174.19833374000001, -38.98805618 ], [ 174.229995730000013, -38.98899841 ], [ 174.243240359999987, -38.98302841 ], [ 174.2671814, -38.98713684 ], [ 174.28694153, -38.98583221 ], [ 174.29417419, -38.98249817 ], [ 174.31135559, -38.98254395 ], [ 174.32000732, -38.98845673 ], [ 174.34056091, -38.99388885 ], [ 174.3639679, -38.99269867 ], [ 174.38166809, -38.98694611 ], [ 174.39193726, -38.98888779 ], [ 174.40847778, -38.98189545 ], [ 174.43556213, -38.96250153 ], [ 174.497131349999989, -38.89738464 ], [ 174.50917053, -38.89027786 ], [ 174.514724730000012, -38.89333344 ], [ 174.52278137, -38.88861084 ], [ 174.550018310000013, -38.86570358 ], [ 174.55975342, -38.85511017 ], [ 174.577774049999988, -38.82694626 ], [ 174.580276489999989, -38.81861115 ], [ 174.59472656, -38.81638718 ], [ 174.58444214, -38.8125 ], [ 174.602188109999986, -38.76036453 ], [ 174.608337400000011, -38.73166656 ], [ 174.60949707, -38.71216965 ], [ 174.61305237, -38.70583344 ], [ 174.61305237, -38.70583344 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.14", "id_1": 14, "name_1": "Waikato", "hasc_1": "NZ.WK", "population2022": 513800, "areakm2": 24506.987, "density2022": 20.97 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.80285645, -38.10591125 ], [ 174.80070496, -38.09990311 ], [ 174.80506897, -38.10205841 ], [ 174.80285645, -38.10591125 ], [ 174.80285645, -38.10591125 ] ] ], [ [ [ 174.894851679999988, -38.07537079 ], [ 174.887908939999988, -38.07951355 ], [ 174.87677002, -38.07458878 ], [ 174.88418579, -38.06893539 ], [ 174.894851679999988, -38.07537079 ], [ 174.894851679999988, -38.07537079 ] ] ], [ [ [ 174.56582642, -37.97138977 ], [ 174.56916809, -37.97277832 ], [ 174.56582642, -37.9738884 ], [ 174.56582642, -37.97138977 ], [ 174.56582642, -37.97138977 ] ] ], [ [ [ 174.941741940000014, -37.79050827 ], [ 174.940353390000013, -37.79117966 ], [ 174.9402771, -37.78952408 ], [ 174.941741940000014, -37.79050827 ], [ 174.941741940000014, -37.79050827 ] ] ], [ [ [ 174.909408570000011, -37.76112747 ], [ 174.909408570000011, -37.76278305 ], [ 174.90762329, -37.76259995 ], [ 174.909408570000011, -37.76112747 ], [ 174.909408570000011, -37.76112747 ] ] ], [ [ [ 175.89305115, -37.21722412 ], [ 175.89761353, -37.21912384 ], [ 175.89616394, -37.22082901 ], [ 175.89305115, -37.21722412 ], [ 175.89305115, -37.21722412 ] ] ], [ [ [ 175.892807010000013, -37.21508789 ], [ 175.887496950000013, -37.21472168 ], [ 175.89332581, -37.21259689 ], [ 175.892807010000013, -37.21508789 ], [ 175.892807010000013, -37.21508789 ] ] ], [ [ [ 175.928222659999989, -37.07276535 ], [ 175.92430115, -37.06833649 ], [ 175.929245, -37.07011414 ], [ 175.928222659999989, -37.07276535 ], [ 175.928222659999989, -37.07276535 ] ] ], [ [ [ 175.93789673, -37.06376266 ], [ 175.94111633, -37.0644455 ], [ 175.93916321, -37.06583405 ], [ 175.93789673, -37.06376266 ], [ 175.93789673, -37.06376266 ] ] ], [ [ [ 175.93148804, -37.06750488 ], [ 175.92979431, -37.06557465 ], [ 175.93467712, -37.06389618 ], [ 175.93148804, -37.06750488 ], [ 175.93148804, -37.06750488 ] ] ], [ [ [ 175.94444275, -37.04055405 ], [ 175.956390379999988, -37.04666519 ], [ 175.94670105, -37.05264664 ], [ 175.94639587, -37.06000137 ], [ 175.93444824, -37.04972076 ], [ 175.942337040000012, -37.03727341 ], [ 175.94444275, -37.04055405 ], [ 175.94444275, -37.04055405 ] ] ], [ [ [ 175.90472412, -36.98860931 ], [ 175.909408570000011, -36.99341583 ], [ 175.90182495, -36.99870682 ], [ 175.90472412, -36.98860931 ], [ 175.90472412, -36.98860931 ] ] ], [ [ [ 176.082778929999989, -36.97138977 ], [ 176.08528137, -36.97611237 ], [ 176.076660159999989, -36.97638702 ], [ 176.082778929999989, -36.97138977 ], [ 176.082778929999989, -36.97138977 ] ] ], [ [ [ 176.07583618000001, -36.97027588 ], [ 176.07444763, -36.96666718 ], [ 176.077774049999988, -36.96472168 ], [ 176.07583618000001, -36.97027588 ], [ 176.07583618000001, -36.97027588 ] ] ], [ [ [ 176.0874939, -36.95305634 ], [ 176.076660159999989, -36.96277618 ], [ 176.077774049999988, -36.95611191 ], [ 176.0874939, -36.95305634 ], [ 176.0874939, -36.95305634 ] ] ], [ [ [ 176.0569458, -36.95277786 ], [ 176.060623170000014, -36.95590973 ], [ 176.05667114, -36.95888901 ], [ 176.0569458, -36.95277786 ], [ 176.0569458, -36.95277786 ] ] ], [ [ [ 176.10157776, -36.95228195 ], [ 176.10043335, -36.95506287 ], [ 176.09927368000001, -36.95320892 ], [ 176.10157776, -36.95228195 ], [ 176.10157776, -36.95228195 ] ] ], [ [ [ 176.077499390000014, -36.95083237 ], [ 176.076385499999986, -36.94889069 ], [ 176.078338620000011, -36.94730377 ], [ 176.077499390000014, -36.95083237 ], [ 176.077499390000014, -36.95083237 ] ] ], [ [ [ 176.09832764, -36.94583511 ], [ 176.09846497, -36.9560585 ], [ 176.08972168, -36.95444489 ], [ 176.09832764, -36.94583511 ], [ 176.09832764, -36.94583511 ] ] ], [ [ [ 176.076110840000013, -36.94361115 ], [ 176.077224730000012, -36.94610977 ], [ 176.07553101, -36.94452286 ], [ 176.076110840000013, -36.94361115 ], [ 176.076110840000013, -36.94361115 ] ] ], [ [ [ 175.89077759, -36.86929321 ], [ 175.88877869, -36.86885834 ], [ 175.88938904, -36.86756134 ], [ 175.89077759, -36.86929321 ], [ 175.89077759, -36.86929321 ] ] ], [ [ [ 175.69389343, -36.86444473 ], [ 175.69528198, -36.87611008 ], [ 175.69055176, -36.87361145 ], [ 175.69389343, -36.86444473 ], [ 175.69389343, -36.86444473 ] ] ], [ [ [ 175.40440369, -36.85946274 ], [ 175.40710449, -36.85983276 ], [ 175.40509033, -36.8606987 ], [ 175.40440369, -36.85946274 ], [ 175.40440369, -36.85946274 ] ] ], [ [ [ 175.69413757, -36.84990692 ], [ 175.689514159999987, -36.85336685 ], [ 175.69044495, -36.85089493 ], [ 175.69413757, -36.84990692 ], [ 175.69413757, -36.84990692 ] ] ], [ [ [ 175.42304993, -36.84027863 ], [ 175.42056274, -36.8433342 ], [ 175.416381840000014, -36.84000015 ], [ 175.42304993, -36.84027863 ], [ 175.42304993, -36.84027863 ] ] ], [ [ [ 175.42805481, -36.84111023 ], [ 175.42582703, -36.84111023 ], [ 175.42721558, -36.83889008 ], [ 175.42805481, -36.84111023 ], [ 175.42805481, -36.84111023 ] ] ], [ [ [ 175.82221985000001, -36.82611084 ], [ 175.82278442, -36.83083344 ], [ 175.81611633, -36.83083344 ], [ 175.82221985000001, -36.82611084 ], [ 175.82221985000001, -36.82611084 ] ] ], [ [ [ 175.40943909, -36.82166672 ], [ 175.417221070000011, -36.83027649 ], [ 175.4069519, -36.82527924 ], [ 175.40943909, -36.82166672 ], [ 175.40943909, -36.82166672 ] ] ], [ [ [ 175.802505489999987, -36.8172226 ], [ 175.80332947, -36.82027817 ], [ 175.796386719999987, -36.82055664 ], [ 175.802505489999987, -36.8172226 ], [ 175.802505489999987, -36.8172226 ] ] ], [ [ [ 175.40419006, -36.80565262 ], [ 175.400177, -36.80565262 ], [ 175.40080261, -36.80441666 ], [ 175.40419006, -36.80565262 ], [ 175.40419006, -36.80565262 ] ] ], [ [ [ 175.7719574, -36.80167389 ], [ 175.77026367, -36.80402374 ], [ 175.76980591, -36.80167389 ], [ 175.7719574, -36.80167389 ], [ 175.7719574, -36.80167389 ] ] ], [ [ [ 175.4291687, -36.77444458 ], [ 175.43388367, -36.78388977 ], [ 175.425277709999989, -36.77722168 ], [ 175.4291687, -36.77444458 ], [ 175.4291687, -36.77444458 ] ] ], [ [ [ 175.452774049999988, -36.76750183 ], [ 175.458618159999986, -36.77222061 ], [ 175.452774049999988, -36.78666687 ], [ 175.44277954, -36.79388809 ], [ 175.43110657, -36.79722214 ], [ 175.43222046, -36.78833389 ], [ 175.44082642, -36.78888702 ], [ 175.43833923, -36.78055573 ], [ 175.44917297, -36.77555466 ], [ 175.452774049999988, -36.76750183 ], [ 175.452774049999988, -36.76750183 ] ] ], [ [ [ 175.45195007, -36.75722122 ], [ 175.453887939999987, -36.75916672 ], [ 175.449722290000011, -36.75888824 ], [ 175.45195007, -36.75722122 ], [ 175.45195007, -36.75722122 ] ] ], [ [ [ 175.4180603, -36.75666809 ], [ 175.42056274, -36.77111053 ], [ 175.41333008, -36.76833344 ], [ 175.4180603, -36.75666809 ], [ 175.4180603, -36.75666809 ] ] ], [ [ [ 175.392822270000011, -36.75030899 ], [ 175.39143372, -36.751297 ], [ 175.39019775, -36.75043488 ], [ 175.392822270000011, -36.75030899 ], [ 175.392822270000011, -36.75030899 ] ] ], [ [ [ 175.420272829999988, -36.74972153 ], [ 175.423339840000011, -36.75638962 ], [ 175.418609620000012, -36.75333405 ], [ 175.420272829999988, -36.74972153 ], [ 175.420272829999988, -36.74972153 ] ] ], [ [ [ 175.40557861, -36.74879456 ], [ 175.40342712, -36.74966049 ], [ 175.40357971, -36.74830246 ], [ 175.40557861, -36.74879456 ], [ 175.40557861, -36.74879456 ] ] ], [ [ [ 175.81944275, -36.74361038 ], [ 175.82333374000001, -36.7480545 ], [ 175.818603520000011, -36.74499893 ], [ 175.81944275, -36.74361038 ], [ 175.81944275, -36.74361038 ] ] ], [ [ [ 175.4172821, -36.74002075 ], [ 175.4172821, -36.74175262 ], [ 175.4152832, -36.7407608 ], [ 175.4172821, -36.74002075 ], [ 175.4172821, -36.74002075 ] ] ], [ [ [ 175.40222168, -36.73805618 ], [ 175.4125061, -36.74166489 ], [ 175.39805603, -36.74777603 ], [ 175.40222168, -36.73805618 ], [ 175.40222168, -36.73805618 ] ] ], [ [ [ 175.61401367, -36.73743057 ], [ 175.61801147, -36.73767853 ], [ 175.61585999, -36.73965454 ], [ 175.61401367, -36.73743057 ], [ 175.61401367, -36.73743057 ] ] ], [ [ [ 175.62139893, -36.73792267 ], [ 175.61955261, -36.73866653 ], [ 175.6177063, -36.7352066 ], [ 175.62139893, -36.73792267 ], [ 175.62139893, -36.73792267 ] ] ], [ [ [ 175.61462402, -36.73668671 ], [ 175.61338806, -36.73545074 ], [ 175.61677551, -36.73421478 ], [ 175.61462402, -36.73668671 ], [ 175.61462402, -36.73668671 ] ] ], [ [ [ 175.46362305, -36.73614502 ], [ 175.461547849999988, -36.73596191 ], [ 175.46208191, -36.73410797 ], [ 175.46362305, -36.73614502 ], [ 175.46362305, -36.73614502 ] ] ], [ [ [ 175.83833313, -36.72777939 ], [ 175.84138489, -36.73083496 ], [ 175.835006709999988, -36.73083496 ], [ 175.83833313, -36.72777939 ], [ 175.83833313, -36.72777939 ] ] ], [ [ [ 175.87611389, -36.72166824 ], [ 175.884994510000013, -36.72805405 ], [ 175.886108400000012, -36.73500061 ], [ 175.875, -36.7266655 ], [ 175.87611389, -36.72166824 ], [ 175.87611389, -36.72166824 ] ] ], [ [ [ 175.620178220000014, -36.724823 ], [ 175.61985779, -36.72161102 ], [ 175.62356567, -36.72235107 ], [ 175.620178220000014, -36.724823 ], [ 175.620178220000014, -36.724823 ] ] ], [ [ [ 175.88221741000001, -36.71972275 ], [ 175.88278198, -36.71416855 ], [ 175.88555908, -36.71777725 ], [ 175.88221741000001, -36.71972275 ], [ 175.88221741000001, -36.71972275 ] ] ], [ [ [ 175.81735229, -36.71556091 ], [ 175.816604610000013, -36.71281815 ], [ 175.82006836, -36.71232224 ], [ 175.81735229, -36.71556091 ], [ 175.81735229, -36.71556091 ] ] ], [ [ [ 175.8694458, -36.71138763 ], [ 175.86582947, -36.71027756 ], [ 175.868896479999989, -36.70916748 ], [ 175.8694458, -36.71138763 ], [ 175.8694458, -36.71138763 ] ] ], [ [ [ 175.391113280000013, -36.70416641 ], [ 175.387222290000011, -36.70388794 ], [ 175.39054871, -36.70277786 ], [ 175.391113280000013, -36.70416641 ], [ 175.391113280000013, -36.70416641 ] ] ], [ [ [ 175.388885499999986, -36.69944382 ], [ 175.391662599999989, -36.70111084 ], [ 175.389160159999989, -36.70166779 ], [ 175.388885499999986, -36.69944382 ], [ 175.388885499999986, -36.69944382 ] ] ], [ [ [ 175.86582947, -36.69638824 ], [ 175.868896479999989, -36.69916534 ], [ 175.86166382, -36.69805527 ], [ 175.86582947, -36.69638824 ], [ 175.86582947, -36.69638824 ] ] ], [ [ [ 175.389160159999989, -36.68999863 ], [ 175.39944458, -36.70138931 ], [ 175.39054871, -36.69861221 ], [ 175.389160159999989, -36.68999863 ], [ 175.389160159999989, -36.68999863 ] ] ], [ [ [ 175.61091614, -36.68845749 ], [ 175.609375, -36.6881485 ], [ 175.60975647, -36.68672943 ], [ 175.61091614, -36.68845749 ], [ 175.61091614, -36.68845749 ] ] ], [ [ [ 175.41055298, -36.68388748 ], [ 175.40861511, -36.68249893 ], [ 175.41055298, -36.68111038 ], [ 175.41055298, -36.68388748 ], [ 175.41055298, -36.68388748 ] ] ], [ [ [ 175.39305115, -36.67777634 ], [ 175.39416504, -36.6819458 ], [ 175.388885499999986, -36.67944336 ], [ 175.39305115, -36.67777634 ], [ 175.39305115, -36.67777634 ] ] ], [ [ [ 175.40167236, -36.67416763 ], [ 175.40805054, -36.67861176 ], [ 175.398895259999989, -36.67722321 ], [ 175.40167236, -36.67416763 ], [ 175.40167236, -36.67416763 ] ] ], [ [ [ 175.380950930000012, -36.65877914 ], [ 175.37802124000001, -36.65729523 ], [ 175.37895203, -36.65680313 ], [ 175.380950930000012, -36.65877914 ], [ 175.380950930000012, -36.65877914 ] ] ], [ [ [ 175.85028076, -36.6566658 ], [ 175.84666443, -36.66222382 ], [ 175.84861755, -36.65416718 ], [ 175.85028076, -36.6566658 ], [ 175.85028076, -36.6566658 ] ] ], [ [ [ 175.37388611, -36.6530571 ], [ 175.37388611, -36.66055679 ], [ 175.368896479999989, -36.65888977 ], [ 175.37388611, -36.6530571 ], [ 175.37388611, -36.6530571 ] ] ], [ [ [ 175.369201659999987, -36.65221405 ], [ 175.36857605, -36.65037537 ], [ 175.37104797, -36.65134811 ], [ 175.369201659999987, -36.65221405 ], [ 175.369201659999987, -36.65221405 ] ] ], [ [ [ 175.85083008, -36.64222336 ], [ 175.84777832, -36.64500046 ], [ 175.84666443, -36.64389038 ], [ 175.85083008, -36.64222336 ], [ 175.85083008, -36.64222336 ] ] ], [ [ [ 175.884994510000013, -36.63249969 ], [ 175.890838620000011, -36.63499832 ], [ 175.889999390000014, -36.64861298 ], [ 175.87832642, -36.63388824 ], [ 175.884994510000013, -36.63249969 ], [ 175.884994510000013, -36.63249969 ] ] ], [ [ [ 175.861389159999987, -36.63944626 ], [ 175.857772829999988, -36.63805389 ], [ 175.86332703, -36.63639069 ], [ 175.861389159999987, -36.63944626 ], [ 175.861389159999987, -36.63944626 ] ] ], [ [ [ 175.87693787, -36.62944412 ], [ 175.87889099, -36.63111115 ], [ 175.87750244, -36.63305664 ], [ 175.87693787, -36.62944412 ], [ 175.87693787, -36.62944412 ] ] ], [ [ [ 175.91221619, -36.62361145 ], [ 175.91471863000001, -36.6258316 ], [ 175.91055298, -36.62611008 ], [ 175.91221619, -36.62361145 ], [ 175.91221619, -36.62361145 ] ] ], [ [ [ 175.90527344, -36.62111282 ], [ 175.90861511, -36.62611008 ], [ 175.89944458, -36.62388992 ], [ 175.90527344, -36.62111282 ], [ 175.90527344, -36.62111282 ] ] ], [ [ [ 175.93666077, -36.61500168 ], [ 175.948883059999986, -36.62916565 ], [ 175.92666626, -36.6297226 ], [ 175.92195129000001, -36.61777878 ], [ 175.93666077, -36.61500168 ], [ 175.93666077, -36.61500168 ] ] ], [ [ [ 175.5609436, -36.59630585 ], [ 175.560317989999987, -36.59778595 ], [ 175.55940247, -36.59679794 ], [ 175.5609436, -36.59630585 ], [ 175.5609436, -36.59630585 ] ] ], [ [ [ 175.549728390000013, -36.59500122 ], [ 175.55166626, -36.59666824 ], [ 175.548889159999987, -36.59777832 ], [ 175.549728390000013, -36.59500122 ], [ 175.549728390000013, -36.59500122 ] ] ], [ [ [ 175.78666687, -36.57694626 ], [ 175.78388977, -36.59111023 ], [ 175.79083252, -36.59249878 ], [ 175.801391599999988, -36.60944366 ], [ 175.81222534, -36.61416626 ], [ 175.82362366000001, -36.61409378 ], [ 175.834350590000014, -36.62414551 ], [ 175.83694458, -36.63277817 ], [ 175.823883059999986, -36.64194489 ], [ 175.80722046, -36.63694382 ], [ 175.801116940000014, -36.64138794 ], [ 175.77416992, -36.63388824 ], [ 175.78582764, -36.62805557 ], [ 175.78805542, -36.61166763 ], [ 175.78250122, -36.60361099 ], [ 175.773895259999989, -36.60138702 ], [ 175.766387939999987, -36.60583496 ], [ 175.75, -36.58694458 ], [ 175.76306152, -36.58666611 ], [ 175.78666687, -36.57694626 ], [ 175.78666687, -36.57694626 ] ] ], [ [ [ 175.47193909, -36.4972229 ], [ 175.47444153, -36.4991684 ], [ 175.47193909, -36.49944305 ], [ 175.47193909, -36.4972229 ], [ 175.47193909, -36.4972229 ] ] ], [ [ [ 175.36860657, -36.46694565 ], [ 175.375, -36.4711113 ], [ 175.396118159999986, -36.47555542 ], [ 175.41389465, -36.46888733 ], [ 175.409729, -36.47777939 ], [ 175.416107180000012, -36.48916626 ], [ 175.423889159999987, -36.49222183 ], [ 175.42195129000001, -36.51083374 ], [ 175.4430542, -36.50166702 ], [ 175.45944214, -36.52166748 ], [ 175.47332764, -36.53138733 ], [ 175.47917175, -36.52583313 ], [ 175.472229, -36.52222061 ], [ 175.46861267, -36.51194382 ], [ 175.47416687, -36.50444412 ], [ 175.479995730000013, -36.50972366 ], [ 175.490005489999987, -36.50805664 ], [ 175.50694275, -36.51972198 ], [ 175.516387939999987, -36.53555679 ], [ 175.53611755, -36.54222107 ], [ 175.53361511, -36.55333328 ], [ 175.52055359, -36.55638885 ], [ 175.52999878, -36.56583405 ], [ 175.52360535, -36.56888962 ], [ 175.52861023, -36.57972336 ], [ 175.521118159999986, -36.59277725 ], [ 175.53778076, -36.60472107 ], [ 175.548339840000011, -36.60333252 ], [ 175.5541687, -36.59749985 ], [ 175.56721497, -36.61472321 ], [ 175.57221985000001, -36.61277771 ], [ 175.585006709999988, -36.62749863 ], [ 175.573883059999986, -36.64277649 ], [ 175.57556152, -36.65555573 ], [ 175.58416748, -36.66277695 ], [ 175.577774049999988, -36.67139053 ], [ 175.55667114, -36.66749954 ], [ 175.5541687, -36.67750168 ], [ 175.55917358, -36.6875 ], [ 175.57583618000001, -36.6855545 ], [ 175.579162599999989, -36.67916489 ], [ 175.58999634, -36.68027878 ], [ 175.608886719999987, -36.68861008 ], [ 175.60444641, -36.69416809 ], [ 175.608337400000011, -36.7080574 ], [ 175.62554932, -36.7183342 ], [ 175.61721802, -36.72249985 ], [ 175.611114500000014, -36.73833466 ], [ 175.609725950000012, -36.75444412 ], [ 175.631103520000011, -36.75138855 ], [ 175.636108400000012, -36.75888824 ], [ 175.639999390000014, -36.74277878 ], [ 175.65527344, -36.74555588 ], [ 175.66416931, -36.74277878 ], [ 175.64971924, -36.73805618 ], [ 175.63221741000001, -36.72777939 ], [ 175.63945007, -36.72472382 ], [ 175.677505489999987, -36.72972107 ], [ 175.68527222, -36.72583389 ], [ 175.707229610000013, -36.7266655 ], [ 175.7250061, -36.7219429 ], [ 175.73306274, -36.71027756 ], [ 175.74333191, -36.70360947 ], [ 175.74888611, -36.70833206 ], [ 175.762222290000011, -36.70833206 ], [ 175.7805481, -36.6930542 ], [ 175.792221070000011, -36.69194412 ], [ 175.78889465, -36.70305634 ], [ 175.797775269999988, -36.71722412 ], [ 175.80805969, -36.72138977 ], [ 175.822494510000013, -36.71749878 ], [ 175.82258606, -36.73151779 ], [ 175.827224730000012, -36.73972321 ], [ 175.8152771, -36.74388885 ], [ 175.80888367, -36.73777771 ], [ 175.80444336, -36.74305725 ], [ 175.792495730000013, -36.74166489 ], [ 175.78611755, -36.7491684 ], [ 175.753143310000013, -36.76071167 ], [ 175.74990845, -36.76534653 ], [ 175.74833679, -36.78833389 ], [ 175.741394039999989, -36.79444504 ], [ 175.72471619, -36.79555511 ], [ 175.72250366, -36.80805588 ], [ 175.70666504, -36.80472183 ], [ 175.701385499999986, -36.80805588 ], [ 175.700271609999987, -36.81916809 ], [ 175.70916748, -36.83250046 ], [ 175.707504269999987, -36.83805466 ], [ 175.696105960000011, -36.84555435 ], [ 175.68028259, -36.8405571 ], [ 175.67832947, -36.85083389 ], [ 175.68499756, -36.84666824 ], [ 175.68556213, -36.86194611 ], [ 175.67582703, -36.86861038 ], [ 175.69221497, -36.88083267 ], [ 175.69667053, -36.8777771 ], [ 175.700271609999987, -36.85083389 ], [ 175.70555115, -36.84833145 ], [ 175.71388245, -36.83388901 ], [ 175.71333313, -36.82638931 ], [ 175.72305298, -36.83250046 ], [ 175.73167419, -36.82638931 ], [ 175.732223510000011, -36.83194351 ], [ 175.74499512, -36.83750153 ], [ 175.75805664, -36.83472061 ], [ 175.75805664, -36.82638931 ], [ 175.770004269999987, -36.81944275 ], [ 175.78500366, -36.82249832 ], [ 175.80805969, -36.83916855 ], [ 175.82028198, -36.84166718 ], [ 175.81611633, -36.84638977 ], [ 175.826110840000013, -36.85250092 ], [ 175.828338620000011, -36.86694336 ], [ 175.81694031, -36.87611008 ], [ 175.823883059999986, -36.88861084 ], [ 175.83694458, -36.89194489 ], [ 175.84194946, -36.90999985 ], [ 175.857772829999988, -36.92250061 ], [ 175.852493290000012, -36.9319458 ], [ 175.858612060000013, -36.9383316 ], [ 175.84388733, -36.94777679 ], [ 175.84527588, -36.96722412 ], [ 175.85583496000001, -36.97499847 ], [ 175.8555603, -36.98860931 ], [ 175.86343384, -36.99695969 ], [ 175.87138367, -36.9972229 ], [ 175.86860657, -37.00496292 ], [ 175.857498170000014, -36.99750137 ], [ 175.8433075, -37.0224762 ], [ 175.831558230000013, -37.03800964 ], [ 175.836868290000012, -37.05216599 ], [ 175.84240723, -37.03235626 ], [ 175.849380489999987, -37.03034973 ], [ 175.85635376, -37.0210228 ], [ 175.8553772, -37.01226425 ], [ 175.863891599999988, -37.00694275 ], [ 175.87362671, -37.02740097 ], [ 175.88601685, -37.02975464 ], [ 175.88945007, -37.04138947 ], [ 175.88534546, -37.05002594 ], [ 175.89283752, -37.06581879 ], [ 175.887496950000013, -37.07277679 ], [ 175.88583374000001, -37.08444595 ], [ 175.887222290000011, -37.11027908 ], [ 175.87861633, -37.10722351 ], [ 175.87014771, -37.1123848 ], [ 175.86351013, -37.12433243 ], [ 175.86709595, -37.12643051 ], [ 175.872024540000012, -37.11495209 ], [ 175.89093018, -37.11375046 ], [ 175.8924408, -37.12174225 ], [ 175.88505554, -37.12804794 ], [ 175.879364009999989, -37.14613342 ], [ 175.88465881, -37.15865707 ], [ 175.881622310000012, -37.16703796 ], [ 175.886108400000012, -37.18357849 ], [ 175.8934021, -37.19572067 ], [ 175.88278198, -37.20360947 ], [ 175.8694458, -37.18916702 ], [ 175.86773682, -37.17464447 ], [ 175.86206055, -37.16725922 ], [ 175.85346985000001, -37.17445755 ], [ 175.860839840000011, -37.18138885 ], [ 175.85897827, -37.19238281 ], [ 175.8788147, -37.202034 ], [ 175.87762451, -37.21162796 ], [ 175.88476563, -37.21788406 ], [ 175.87889099, -37.22972107 ], [ 175.8850708, -37.23007202 ], [ 175.895599370000014, -37.2413559 ], [ 175.892669680000012, -37.25259399 ], [ 175.89971924, -37.26694489 ], [ 175.90107727, -37.27845383 ], [ 175.91319275, -37.29150391 ], [ 175.91938782, -37.30796814 ], [ 175.92582703, -37.31083298 ], [ 175.92559814, -37.3196907 ], [ 175.93955994, -37.34192276 ], [ 175.94500732, -37.34555435 ], [ 175.93870544, -37.35953903 ], [ 175.941757200000012, -37.37390137 ], [ 175.92825317, -37.37813568 ], [ 175.9246521, -37.37372589 ], [ 175.914855960000011, -37.38217163 ], [ 175.92871094, -37.38906097 ], [ 175.92201233, -37.39107895 ], [ 175.92033386, -37.40795135 ], [ 175.910369870000011, -37.40530777 ], [ 175.90516663, -37.41771317 ], [ 175.9163208, -37.43091202 ], [ 175.90986633, -37.43274689 ], [ 175.89755249000001, -37.44709015 ], [ 175.88375854, -37.44016266 ], [ 175.88442993000001, -37.45083237 ], [ 175.86172485, -37.46276474 ], [ 175.87252808, -37.47596741 ], [ 175.88569641, -37.47217941 ], [ 175.90370178, -37.49413681 ], [ 175.90072632, -37.50042343 ], [ 175.8737793, -37.49734879 ], [ 175.86062622, -37.50116348 ], [ 175.843246459999989, -37.48987579 ], [ 175.8354187, -37.47035217 ], [ 175.81632996, -37.48681641 ], [ 175.8235321, -37.49562073 ], [ 175.81040955, -37.49946976 ], [ 175.814666749999986, -37.51459885 ], [ 175.82843018, -37.5214653 ], [ 175.82546997, -37.52778625 ], [ 175.836288450000012, -37.54096603 ], [ 175.810760499999986, -37.55941772 ], [ 175.82159424, -37.57258224 ], [ 175.82228088, -37.58328629 ], [ 175.84397888, -37.60952759 ], [ 175.844680790000012, -37.62019348 ], [ 175.83522034, -37.6284256 ], [ 175.846069340000014, -37.64148712 ], [ 175.83953857, -37.64342499 ], [ 175.857635499999986, -37.66514969 ], [ 175.871429440000014, -37.67189026 ], [ 175.864883420000012, -37.67382813 ], [ 175.875762939999987, -37.68683624 ], [ 175.876464840000011, -37.6974411 ], [ 175.890274049999988, -37.70415878 ], [ 175.904800419999987, -37.72146606 ], [ 175.89825439, -37.72341156 ], [ 175.90551758, -37.73206329 ], [ 175.92079163, -37.75994492 ], [ 175.92881775, -37.77917862 ], [ 175.92086792, -37.80861664 ], [ 175.9092865, -37.83374786 ], [ 175.94352722, -37.84515381 ], [ 175.930435179999989, -37.84908295 ], [ 175.93774414, -37.85773087 ], [ 175.93486023, -37.86401749 ], [ 175.948715209999989, -37.87069702 ], [ 175.942169189999987, -37.87266541 ], [ 175.94294739, -37.88327408 ], [ 175.95968628, -37.88366318 ], [ 175.967010499999986, -37.89230728 ], [ 175.97644043, -37.88404846 ], [ 175.96124268, -37.90488815 ], [ 175.97879028, -37.91588211 ], [ 175.9526062, -37.92376328 ], [ 175.94317627, -37.93202209 ], [ 175.95129395, -37.9512825 ], [ 175.958618159999986, -37.95992661 ], [ 175.95573425, -37.96622086 ], [ 175.97250366, -37.9665947 ], [ 175.979843140000014, -37.97523499 ], [ 175.97409058, -37.98781967 ], [ 175.98797607, -37.99448013 ], [ 176.001068120000014, -37.99052811 ], [ 176.02151489, -37.99520493 ], [ 176.036209109999987, -38.0124588 ], [ 176.042755129999989, -38.01047897 ], [ 176.05665588, -38.01712036 ], [ 176.06768799, -38.03004837 ], [ 176.06195068, -38.04264069 ], [ 176.07952881, -38.05358505 ], [ 176.12121582, -38.07348251 ], [ 176.13143921, -38.07580185 ], [ 176.14451599, -38.07182693 ], [ 176.158401489999989, -38.07845306 ], [ 176.17800903, -38.07249069 ], [ 176.191894530000013, -38.07911301 ], [ 176.20661926, -38.09633255 ], [ 176.21315002, -38.09434128 ], [ 176.22052002, -38.10295105 ], [ 176.23072815, -38.10526276 ], [ 176.22503662, -38.11785126 ], [ 176.23809814, -38.11386871 ], [ 176.252838129999986, -38.131073 ], [ 176.246307370000011, -38.13306808 ], [ 176.247161870000014, -38.1436615 ], [ 176.2406311, -38.14565659 ], [ 176.25169373, -38.15855789 ], [ 176.245162959999988, -38.16055298 ], [ 176.256225590000014, -38.17345047 ], [ 176.24969482, -38.17544937 ], [ 176.2681427, -38.19694138 ], [ 176.26615906, -38.21382904 ], [ 176.269851679999988, -38.2181282 ], [ 176.256774900000011, -38.22212219 ], [ 176.26046753, -38.22642136 ], [ 176.284362789999989, -38.27339554 ], [ 176.28521729, -38.28398895 ], [ 176.29829407, -38.27998734 ], [ 176.29545593, -38.2862854 ], [ 176.30569458, -38.28857803 ], [ 176.3028717, -38.2948761 ], [ 176.313964840000011, -38.30776215 ], [ 176.31114197, -38.3140564 ], [ 176.327911379999989, -38.31435013 ], [ 176.3250885, -38.32064438 ], [ 176.34927368000001, -38.32952118 ], [ 176.379119870000011, -38.32580566 ], [ 176.39024353, -38.33868408 ], [ 176.39677429, -38.33668137 ], [ 176.41531372, -38.35814285 ], [ 176.43209839, -38.35842514 ], [ 176.47306824, -38.3675766 ], [ 176.48048401, -38.37615585 ], [ 176.48701477, -38.37415314 ], [ 176.51301575, -38.40418243 ], [ 176.511093140000014, -38.42106247 ], [ 176.50544739, -38.43364716 ], [ 176.50071716, -38.45681 ], [ 176.49507141, -38.46939468 ], [ 176.47906494, -38.51770782 ], [ 176.48651123, -38.52627945 ], [ 176.4874115, -38.53685379 ], [ 176.45661926, -38.53000259 ], [ 176.418396, -38.51457596 ], [ 176.39785767, -38.51000595 ], [ 176.392211909999986, -38.52258301 ], [ 176.36587524, -38.56860733 ], [ 176.32478333, -38.55947495 ], [ 176.310791020000011, -38.55290604 ], [ 176.31361389, -38.5466156 ], [ 176.30618286, -38.53804016 ], [ 176.31272888, -38.53603745 ], [ 176.31840515, -38.52346039 ], [ 176.33061218, -38.5088768 ], [ 176.312026980000013, -38.48743057 ], [ 176.30177307, -38.48514175 ], [ 176.28210449, -38.49114609 ], [ 176.282989500000014, -38.50172806 ], [ 176.250213620000011, -38.51172638 ], [ 176.24737549, -38.51801682 ], [ 176.23425293, -38.52201843 ], [ 176.22396851, -38.5197258 ], [ 176.21084595, -38.5237236 ], [ 176.19685364, -38.51713943 ], [ 176.18373108, -38.52113342 ], [ 176.186569209999988, -38.51484299 ], [ 176.17913818, -38.5062561 ], [ 176.181991579999988, -38.49996185 ], [ 176.16799927, -38.49337006 ], [ 176.16143799, -38.49536896 ], [ 176.15400696, -38.48677826 ], [ 176.156860349999988, -38.48048782 ], [ 176.14942932, -38.47189713 ], [ 176.1559906, -38.46989822 ], [ 176.144851679999988, -38.45701218 ], [ 176.13829041, -38.45900726 ], [ 176.139160159999989, -38.46959686 ], [ 176.12231445, -38.46929169 ], [ 176.11946106, -38.47558594 ], [ 176.08834839, -38.5067482 ], [ 176.085495, -38.51304245 ], [ 176.05834961, -38.5104332 ], [ 176.05262756, -38.5230217 ], [ 176.06378174, -38.53591537 ], [ 176.047775269999988, -38.54620361 ], [ 176.0552063, -38.55479813 ], [ 176.048629760000011, -38.55679321 ], [ 176.05606079, -38.56538773 ], [ 176.07579041, -38.55939484 ], [ 176.08607483, -38.5616951 ], [ 176.10951233, -38.55999756 ], [ 176.1206665, -38.57287598 ], [ 176.12153625, -38.58346558 ], [ 176.141250609999986, -38.57746506 ], [ 176.15153503, -38.57975769 ], [ 176.19729614, -38.6037941 ], [ 176.2104187, -38.59979248 ], [ 176.22444153, -38.60636902 ], [ 176.21130371000001, -38.61037064 ], [ 176.21875, -38.61894989 ], [ 176.21022034, -38.63781738 ], [ 176.17713928, -38.68585587 ], [ 176.26116943, -38.76324844 ], [ 176.24145508, -38.76927948 ], [ 176.219802859999987, -38.79217529 ], [ 176.1166687, -38.76941299 ], [ 176.10243225, -38.80090332 ], [ 176.10990906, -38.80947876 ], [ 176.096740720000014, -38.81349945 ], [ 176.10421753, -38.8220787 ], [ 176.09764099, -38.82408905 ], [ 176.12007141, -38.84981537 ], [ 176.12664795, -38.84780121 ], [ 176.13414001000001, -38.85637665 ], [ 176.11723328, -38.85611343 ], [ 176.132202150000012, -38.8732605 ], [ 176.12934875, -38.87956238 ], [ 176.14343262, -38.88611603 ], [ 176.13684082, -38.88813019 ], [ 176.15931702, -38.91383743 ], [ 176.16589355, -38.91181946 ], [ 176.18838501, -38.93750763 ], [ 176.194976809999986, -38.93548965 ], [ 176.20246887, -38.94404984 ], [ 176.215637210000011, -38.94001007 ], [ 176.22596741000001, -38.94226837 ], [ 176.23822021, -38.92765427 ], [ 176.248550419999987, -38.92991257 ], [ 176.26170349, -38.9258728 ], [ 176.2635498, -38.94701767 ], [ 176.26823425, -38.96186829 ], [ 176.26165771, -38.96389008 ], [ 176.26634216, -38.97873688 ], [ 176.28044128, -38.98526001 ], [ 176.28137207, -38.99583054 ], [ 176.28889465, -39.00437927 ], [ 176.27290344, -39.01472473 ], [ 176.26725769, -39.02732086 ], [ 176.27760315, -39.02957153 ], [ 176.286087040000012, -39.04868698 ], [ 176.28515625, -39.0761261 ], [ 176.26539612, -39.08221054 ], [ 176.2559967, -39.09053802 ], [ 176.23622131, -39.09662628 ], [ 176.24375916, -39.10516739 ], [ 176.22398376000001, -39.11125565 ], [ 176.22116089, -39.11756134 ], [ 176.1882019, -39.12770844 ], [ 176.19197083, -39.1319809 ], [ 176.186309810000012, -39.14458847 ], [ 176.17218018, -39.13807297 ], [ 176.16557312, -39.14010239 ], [ 176.151443480000012, -39.13357925 ], [ 176.14860535, -39.13988495 ], [ 176.089202879999988, -39.1581459 ], [ 176.085433959999989, -39.15386581 ], [ 176.05525208, -39.15769958 ], [ 175.983581539999989, -39.15248871 ], [ 175.98074341, -39.15879822 ], [ 175.96751404, -39.16284943 ], [ 175.97505188, -39.17142487 ], [ 175.969360349999988, -39.1840477 ], [ 175.94952393, -39.19012833 ], [ 175.945755, -39.18584061 ], [ 175.92591858, -39.19191742 ], [ 175.9296875, -39.19620514 ], [ 175.889999390000014, -39.20836258 ], [ 175.901306150000011, -39.22123337 ], [ 175.89845276, -39.22755051 ], [ 175.88522339, -39.23160553 ], [ 175.88897705, -39.23589325 ], [ 175.862518310000013, -39.2440033 ], [ 175.86343384, -39.25461197 ], [ 175.87382507, -39.25687408 ], [ 175.868118290000012, -39.26950836 ], [ 175.85772705, -39.26725006 ], [ 175.844497679999989, -39.27130508 ], [ 175.8359375, -39.29026413 ], [ 175.82646179, -39.2986145 ], [ 175.81321716, -39.30267334 ], [ 175.79620361, -39.30244446 ], [ 175.78868103, -39.29385757 ], [ 175.7754364, -39.29791641 ], [ 175.75752258, -39.28705978 ], [ 175.74803162, -39.29541016 ], [ 175.75180054, -39.29970932 ], [ 175.71025085, -39.29063416 ], [ 175.67338562, -39.29647064 ], [ 175.562973019999987, -39.27570724 ], [ 175.63824463, -39.16007233 ], [ 175.65084839, -39.10720062 ], [ 175.6574707, -39.10518265 ], [ 175.642501829999986, -39.08795929 ], [ 175.62554932, -39.08768463 ], [ 175.628417969999987, -39.08135986 ], [ 175.623809810000012, -39.06642532 ], [ 175.62667847, -39.06010437 ], [ 175.619216920000014, -39.05148697 ], [ 175.6522522, -39.0414238 ], [ 175.64851379000001, -39.037117 ], [ 175.658004760000011, -39.02878189 ], [ 175.653396609999987, -39.01385117 ], [ 175.67523193, -38.99087524 ], [ 175.6913147, -38.98053741 ], [ 175.65081787, -38.98197174 ], [ 175.63674927, -38.97536087 ], [ 175.6103363, -38.98339844 ], [ 175.573577879999988, -38.98913193 ], [ 175.57273865, -38.97850037 ], [ 175.56155396, -38.96556473 ], [ 175.56358337, -38.94861221 ], [ 175.57307434, -38.94028473 ], [ 175.57221985000001, -38.92965317 ], [ 175.59118652, -38.91300583 ], [ 175.57629395, -38.89575195 ], [ 175.569702150000012, -38.89775848 ], [ 175.568847659999989, -38.88712692 ], [ 175.55026245, -38.86555481 ], [ 175.56838989, -38.83828354 ], [ 175.58818054, -38.83227921 ], [ 175.58734131, -38.82165146 ], [ 175.56134033, -38.79144287 ], [ 175.54814148, -38.79544449 ], [ 175.55102539, -38.78912735 ], [ 175.52876282, -38.76322556 ], [ 175.53083801, -38.74627304 ], [ 175.544021609999987, -38.74228287 ], [ 175.54319763, -38.73165131 ], [ 175.5592804, -38.72134399 ], [ 175.570816040000011, -38.69609451 ], [ 175.57740784, -38.69410324 ], [ 175.58319092, -38.68148041 ], [ 175.57948303, -38.67716217 ], [ 175.58895874000001, -38.66885757 ], [ 175.581542969999987, -38.6602211 ], [ 175.588134770000011, -38.65822983 ], [ 175.58073425, -38.64959335 ], [ 175.600509640000013, -38.64361572 ], [ 175.59680176, -38.6393013 ], [ 175.609985349999988, -38.63531494 ], [ 175.618637080000013, -38.61639023 ], [ 175.63182068, -38.6124115 ], [ 175.63389587, -38.59547806 ], [ 175.645431519999988, -38.57025146 ], [ 175.64173889, -38.56593323 ], [ 175.628570559999986, -38.56991196 ], [ 175.61619568, -38.58451462 ], [ 175.58325195, -38.59446335 ], [ 175.57955933, -38.5901413 ], [ 175.57008362, -38.59843826 ], [ 175.56637573, -38.59412003 ], [ 175.5466156, -38.60008621 ], [ 175.53262329, -38.59343338 ], [ 175.50672913, -38.5631752 ], [ 175.45320129000001, -38.56843185 ], [ 175.428924560000013, -38.55942535 ], [ 175.42523193, -38.55509567 ], [ 175.40835571, -38.55473709 ], [ 175.405456539999989, -38.56105423 ], [ 175.388580319999988, -38.56069565 ], [ 175.38278198, -38.57332611 ], [ 175.34321594, -38.58523941 ], [ 175.33872986, -38.57025909 ], [ 175.34532166, -38.56827545 ], [ 175.33055115, -38.55094528 ], [ 175.327651980000013, -38.55726242 ], [ 175.30865479, -38.57386398 ], [ 175.306549069999988, -38.59083557 ], [ 175.31393433, -38.59950256 ], [ 175.30734253, -38.60148621 ], [ 175.28965759, -38.59047318 ], [ 175.27145386, -38.617733 ], [ 175.26776123, -38.61339951 ], [ 175.247970579999986, -38.61935425 ], [ 175.25166321, -38.62369156 ], [ 175.23846436, -38.62765884 ], [ 175.24215698, -38.63199615 ], [ 175.20916748, -38.641922 ], [ 175.20178223, -38.63324738 ], [ 175.19517517, -38.63523102 ], [ 175.18119812, -38.62853622 ], [ 175.16799927, -38.63249969 ], [ 175.157714840000011, -38.63014221 ], [ 175.14451599, -38.63410568 ], [ 175.140838620000011, -38.62976456 ], [ 175.123947140000013, -38.62938309 ], [ 175.0909729, -38.63928223 ], [ 175.08358765, -38.63058853 ], [ 175.08068848, -38.63691711 ], [ 175.060897829999988, -38.64285278 ], [ 175.0645752, -38.64720154 ], [ 175.04478455, -38.65314102 ], [ 175.048477170000012, -38.65748978 ], [ 175.02868652, -38.66342545 ], [ 175.0249939, -38.65907288 ], [ 175.00520325, -38.66500854 ], [ 175.00889587, -38.66936111 ], [ 174.99201965, -38.66896439 ], [ 174.98832703, -38.66461182 ], [ 174.97514343, -38.66856384 ], [ 174.95826721, -38.6681633 ], [ 174.96931458, -38.68122482 ], [ 174.95979309, -38.68953705 ], [ 174.97085571, -38.70259476 ], [ 174.96057129, -38.70022202 ], [ 174.9584198, -38.71723938 ], [ 174.94523621, -38.72119522 ], [ 174.94599915, -38.731884 ], [ 174.93647766, -38.74019623 ], [ 174.94754028, -38.75325394 ], [ 174.92773438, -38.75919724 ], [ 174.924057010000013, -38.75484085 ], [ 174.91085815, -38.75880432 ], [ 174.907165529999986, -38.75444794 ], [ 174.897659299999987, -38.76276398 ], [ 174.8712616, -38.77068329 ], [ 174.86174011, -38.77899933 ], [ 174.85145569, -38.77662277 ], [ 174.844100950000012, -38.76790619 ], [ 174.83381653, -38.76552582 ], [ 174.836730960000011, -38.75918579 ], [ 174.82937622, -38.75046158 ], [ 174.82278442, -38.75244141 ], [ 174.80807495, -38.73498154 ], [ 174.797805790000012, -38.73258972 ], [ 174.75164795, -38.74642944 ], [ 174.74430847, -38.73768234 ], [ 174.727462769999988, -38.73726273 ], [ 174.7069397, -38.73245621 ], [ 174.69377136, -38.73641586 ], [ 174.69009399, -38.73203278 ], [ 174.67326355, -38.73160553 ], [ 174.66009521, -38.73557663 ], [ 174.64909363000001, -38.72238922 ], [ 174.635940549999987, -38.72636795 ], [ 174.6257019, -38.72396851 ], [ 174.61463928, -38.71063614 ], [ 174.62788391, -38.70067596 ], [ 174.638610840000013, -38.71130371 ], [ 174.63276672, -38.69787979 ], [ 174.615295409999987, -38.70281982 ], [ 174.61711121, -38.67178726 ], [ 174.62039185, -38.66397858 ], [ 174.62249756, -38.62111282 ], [ 174.62750244, -38.60388947 ], [ 174.63020325, -38.58110428 ], [ 174.63000488, -38.55611038 ], [ 174.63491821, -38.53163147 ], [ 174.6302948, -38.50524521 ], [ 174.63792419, -38.49091721 ], [ 174.63710022, -38.48004532 ], [ 174.6452179, -38.45615768 ], [ 174.64077759, -38.44960403 ], [ 174.6418457, -38.42910385 ], [ 174.635665890000013, -38.41593552 ], [ 174.63754272, -38.39959335 ], [ 174.634567260000011, -38.38540649 ], [ 174.65461731, -38.38501358 ], [ 174.668884279999986, -38.35916519 ], [ 174.68666077, -38.34388733 ], [ 174.697052, -38.32719421 ], [ 174.70463562, -38.32579422 ], [ 174.71388245, -38.30861282 ], [ 174.71911621000001, -38.3045578 ], [ 174.71194458, -38.29360962 ], [ 174.71638489, -38.27249908 ], [ 174.7124939, -38.26694489 ], [ 174.71278381, -38.2508316 ], [ 174.707229610000013, -38.23138809 ], [ 174.715194700000012, -38.2220459 ], [ 174.710739139999987, -38.21011353 ], [ 174.712646479999989, -38.20089722 ], [ 174.70436096, -38.17280197 ], [ 174.69000244, -38.13555527 ], [ 174.67721558, -38.11416626 ], [ 174.6875, -38.10916519 ], [ 174.69177246000001, -38.11843872 ], [ 174.699996950000013, -38.11666489 ], [ 174.73397827, -38.12435532 ], [ 174.75233459, -38.1128006 ], [ 174.76367188, -38.10161972 ], [ 174.770278929999989, -38.08694458 ], [ 174.77583313, -38.08889008 ], [ 174.77079773, -38.09759521 ], [ 174.769851679999988, -38.11838531 ], [ 174.7746582, -38.11013412 ], [ 174.77883911, -38.12083435 ], [ 174.77874756, -38.13358688 ], [ 174.794036870000014, -38.13082123 ], [ 174.7943573, -38.12282181 ], [ 174.80513, -38.11976624 ], [ 174.810333250000014, -38.13346481 ], [ 174.80818176, -38.14037323 ], [ 174.82298279, -38.13379669 ], [ 174.815948490000011, -38.14717484 ], [ 174.82635498, -38.14169693 ], [ 174.828903200000013, -38.15635681 ], [ 174.8327179, -38.15029907 ], [ 174.83451843, -38.13336563 ], [ 174.8540802, -38.13055038 ], [ 174.8440094, -38.12896347 ], [ 174.83682251, -38.11879349 ], [ 174.835723879999989, -38.1246109 ], [ 174.81944275, -38.12895584 ], [ 174.82939148, -38.11713409 ], [ 174.82775879, -38.10832977 ], [ 174.84114075, -38.10285568 ], [ 174.84988403, -38.10508347 ], [ 174.85919189, -38.09971237 ], [ 174.87388611, -38.11305618 ], [ 174.87055969, -38.12111282 ], [ 174.884689329999986, -38.11446762 ], [ 174.87442017, -38.11483383 ], [ 174.86564636, -38.09860611 ], [ 174.91148376000001, -38.08164215 ], [ 174.89569092, -38.07082748 ], [ 174.890411379999989, -38.05682373 ], [ 174.879547120000012, -38.05361176 ], [ 174.88742065, -38.04888153 ], [ 174.87414551, -38.04894257 ], [ 174.860839840000011, -38.05604553 ], [ 174.85838318, -38.04624939 ], [ 174.853591920000014, -38.05708694 ], [ 174.841445920000012, -38.06000519 ], [ 174.83888245, -38.04222107 ], [ 174.829727170000012, -38.04555511 ], [ 174.828613280000013, -38.06111145 ], [ 174.80929565, -38.07995224 ], [ 174.78388977, -38.08416748 ], [ 174.7805481, -38.08000183 ], [ 174.78027344, -38.05833435 ], [ 174.784729, -38.03749847 ], [ 174.79936218, -38.01816177 ], [ 174.812011719999987, -38.01016617 ], [ 174.82801819, -38.00786972 ], [ 174.823608400000012, -38.01861191 ], [ 174.831832889999987, -38.01646042 ], [ 174.83944702, -38.02305603 ], [ 174.85028076, -38.02222061 ], [ 174.84388733, -38.01666641 ], [ 174.85221863000001, -38.01222229 ], [ 174.85197449, -38.00192261 ], [ 174.87272644, -37.97494507 ], [ 174.87306213, -37.96944427 ], [ 174.88729858, -37.95819855 ], [ 174.877853390000013, -37.9593811 ], [ 174.86972046, -37.94861221 ], [ 174.85055542, -37.95166779 ], [ 174.84681702, -37.94693756 ], [ 174.832504269999987, -37.95666504 ], [ 174.826110840000013, -37.95500183 ], [ 174.8152771, -37.96805573 ], [ 174.821105960000011, -37.97472382 ], [ 174.81777954, -37.98249817 ], [ 174.83416748, -37.98583221 ], [ 174.832229610000013, -37.99277878 ], [ 174.82305908, -37.99499893 ], [ 174.79632568, -38.00748062 ], [ 174.79055786, -38.00236893 ], [ 174.7888031, -37.98641968 ], [ 174.77998352, -37.97743988 ], [ 174.78083801, -37.96389008 ], [ 174.78729248, -37.95423889 ], [ 174.76570129000001, -37.89221954 ], [ 174.75582886, -37.88555527 ], [ 174.763458250000014, -37.87911606 ], [ 174.75627136, -37.86413574 ], [ 174.76695251000001, -37.84289932 ], [ 174.776550289999989, -37.83013535 ], [ 174.791519169999987, -37.82303619 ], [ 174.81167603, -37.82040405 ], [ 174.81852722, -37.82339096 ], [ 174.82893372, -37.81796265 ], [ 174.83610535, -37.80751801 ], [ 174.84388733, -37.80346298 ], [ 174.86610413, -37.81000137 ], [ 174.86801147, -37.79730225 ], [ 174.878005980000012, -37.79430008 ], [ 174.89524841, -37.80117035 ], [ 174.89840698, -37.80993652 ], [ 174.90371704, -37.80174255 ], [ 174.91523743, -37.80332184 ], [ 174.914535519999987, -37.80942154 ], [ 174.92755127, -37.80652618 ], [ 174.91947937, -37.79663849 ], [ 174.93916321, -37.79555511 ], [ 174.94555664, -37.79861069 ], [ 174.948287959999988, -37.80789185 ], [ 174.952667240000011, -37.80295944 ], [ 174.947052, -37.79442596 ], [ 174.96347046, -37.79105759 ], [ 174.96762085, -37.80076599 ], [ 174.972457889999987, -37.79644775 ], [ 174.96905518, -37.78882599 ], [ 174.95083618000001, -37.77972412 ], [ 174.933944700000012, -37.78637314 ], [ 174.93299866000001, -37.79344177 ], [ 174.9239502, -37.79232025 ], [ 174.92605591, -37.78630066 ], [ 174.91516113, -37.78867722 ], [ 174.91171265, -37.77947617 ], [ 174.92721558, -37.77064896 ], [ 174.93229675, -37.77492523 ], [ 174.95181274, -37.77768707 ], [ 174.96221924, -37.77111053 ], [ 174.953887939999987, -37.76747513 ], [ 174.949722290000011, -37.7491684 ], [ 174.94252014, -37.75432968 ], [ 174.93696594, -37.74726105 ], [ 174.9284668, -37.75600815 ], [ 174.92396545, -37.74638367 ], [ 174.917221070000011, -37.74361038 ], [ 174.920272829999988, -37.7527771 ], [ 174.91389465, -37.75995636 ], [ 174.90666199, -37.75888824 ], [ 174.90997314, -37.76638794 ], [ 174.89981079, -37.78037643 ], [ 174.90206909, -37.7899704 ], [ 174.89466858, -37.79050064 ], [ 174.88528442, -37.78277588 ], [ 174.85540771, -37.79853058 ], [ 174.83966064, -37.80024338 ], [ 174.83024597, -37.75647736 ], [ 174.81930542, -37.73400497 ], [ 174.82305908, -37.72000122 ], [ 174.81083679, -37.69722366 ], [ 174.812164309999986, -37.6859169 ], [ 174.794998170000014, -37.65472412 ], [ 174.794723510000011, -37.63583374 ], [ 174.79046631, -37.63247681 ], [ 174.77388, -37.60169983 ], [ 174.769104, -37.58243561 ], [ 174.77160645, -37.57859421 ], [ 174.766387939999987, -37.55583191 ], [ 174.75527954, -37.53138733 ], [ 174.74333191, -37.51777649 ], [ 174.74583435, -37.50388718 ], [ 174.73971558, -37.4980545 ], [ 174.72917175, -37.47777939 ], [ 174.71722412, -37.46277618 ], [ 174.71083069, -37.4430542 ], [ 174.705001829999986, -37.44083405 ], [ 174.699722290000011, -37.41972351 ], [ 174.702224730000012, -37.40277863 ], [ 174.7099762, -37.39452362 ], [ 174.70315552, -37.37917709 ], [ 174.703887939999987, -37.37277603 ], [ 174.71278381, -37.38170624 ], [ 174.71446228, -37.38959885 ], [ 174.740478520000011, -37.38574219 ], [ 174.76170349, -37.36285782 ], [ 174.764160159999989, -37.3544426 ], [ 174.78443909, -37.33250046 ], [ 174.80793762, -37.32234955 ], [ 174.823303220000014, -37.32120895 ], [ 174.82292175, -37.31043625 ], [ 174.849243159999986, -37.302742 ], [ 174.852340700000013, -37.29639435 ], [ 174.84538269, -37.28754807 ], [ 174.85505676, -37.27927399 ], [ 174.85157776, -37.27485275 ], [ 174.86471558, -37.27100372 ], [ 174.89491272, -37.27849197 ], [ 174.91853333, -37.28787994 ], [ 174.92121887, -37.27077866 ], [ 174.927795409999987, -37.26884842 ], [ 174.920806879999986, -37.26001358 ], [ 174.93395996000001, -37.25615692 ], [ 174.937042240000011, -37.24981308 ], [ 174.92308044, -37.23213577 ], [ 174.93621826, -37.22828293 ], [ 174.94320679, -37.23711777 ], [ 174.96992493, -37.24015808 ], [ 174.983078, -37.23629761 ], [ 174.979568480000012, -37.231884 ], [ 175.00192261, -37.20898819 ], [ 174.991851809999986, -37.20650482 ], [ 174.994903560000012, -37.20016098 ], [ 174.980896, -37.18249512 ], [ 174.98396301, -37.17615128 ], [ 174.97695923, -37.16732025 ], [ 174.96690369, -37.16483307 ], [ 174.95294189, -37.14716339 ], [ 174.94332886, -37.15543365 ], [ 174.93942261, -37.14025116 ], [ 174.94554138, -37.12756729 ], [ 174.95864868000001, -37.12372208 ], [ 174.96911621000001, -37.13697052 ], [ 174.982208250000014, -37.13311768 ], [ 174.97915649, -37.13946152 ], [ 175.005371090000011, -37.13175201 ], [ 175.001861569999988, -37.12733841 ], [ 175.01496887, -37.12348175 ], [ 175.01802063, -37.11714172 ], [ 175.01101685, -37.10831833 ], [ 175.02410889, -37.10446548 ], [ 175.02061462, -37.10005188 ], [ 175.023223879999989, -37.08296967 ], [ 175.03630066, -37.07912064 ], [ 175.0328064, -37.07471085 ], [ 175.04588318, -37.07086182 ], [ 175.048477170000012, -37.05379486 ], [ 175.06155396, -37.04994583 ], [ 175.05805969, -37.04554367 ], [ 175.077667240000011, -37.0397644 ], [ 175.08465576, -37.04856491 ], [ 175.08161926, -37.05489349 ], [ 175.09165955, -37.05736542 ], [ 175.10475159, -37.05350113 ], [ 175.11830139, -37.06035995 ], [ 175.12791443, -37.05207825 ], [ 175.151580810000013, -37.06135941 ], [ 175.16073608, -37.04232407 ], [ 175.16027832, -37.03159332 ], [ 175.15328979, -37.02281189 ], [ 175.17288208, -37.01697159 ], [ 175.18638611, -37.02379227 ], [ 175.18336487, -37.03012848 ], [ 175.20687866, -37.03936005 ], [ 175.216308590000011, -37.03106689 ], [ 175.267211909999986, -37.02603531 ], [ 175.27947998, -37.01288223 ], [ 175.28489685, -37.00246811 ], [ 175.29167175, -37.00860977 ], [ 175.28890991, -37.01449585 ], [ 175.303894039999989, -37.05749893 ], [ 175.2980957, -37.06679916 ], [ 175.29916382, -37.07972336 ], [ 175.30805969, -37.08750153 ], [ 175.30166626, -37.09833145 ], [ 175.30360413, -37.10527802 ], [ 175.297225950000012, -37.11555481 ], [ 175.303100590000014, -37.14210129 ], [ 175.30926514, -37.15270615 ], [ 175.31944275, -37.16055679 ], [ 175.32615662, -37.17469025 ], [ 175.33332825, -37.18166733 ], [ 175.32476807, -37.18552399 ], [ 175.343429570000012, -37.20412445 ], [ 175.36880493000001, -37.21257401 ], [ 175.390838620000011, -37.21305466 ], [ 175.41389465, -37.21055603 ], [ 175.423614500000014, -37.20416641 ], [ 175.449722290000011, -37.19833374 ], [ 175.4680481, -37.19166565 ], [ 175.47944641, -37.18416595 ], [ 175.49833679, -37.18361282 ], [ 175.515274049999988, -37.17527771 ], [ 175.518905640000014, -37.16666794 ], [ 175.53919983, -37.17029953 ], [ 175.54425049, -37.16123199 ], [ 175.539520259999989, -37.14123535 ], [ 175.528121950000013, -37.12801743 ], [ 175.52790833, -37.12042999 ], [ 175.515838620000011, -37.11083221 ], [ 175.51419067, -37.09380341 ], [ 175.51811218, -37.07055283 ], [ 175.52412415, -37.06139374 ], [ 175.516113280000013, -37.04333496 ], [ 175.52012634, -37.03899384 ], [ 175.508728029999986, -37.00346375 ], [ 175.49667358, -36.98638916 ], [ 175.49916077, -36.97444534 ], [ 175.4944458, -36.96749878 ], [ 175.46749878, -36.94083405 ], [ 175.4680481, -36.93888855 ], [ 175.43583679, -36.90916824 ], [ 175.4152832, -36.87361145 ], [ 175.40583801, -36.85416794 ], [ 175.421112060000013, -36.84749985 ], [ 175.43583679, -36.85388947 ], [ 175.45063782, -36.85077286 ], [ 175.461395259999989, -36.84027863 ], [ 175.452224730000012, -36.8433342 ], [ 175.44194031, -36.8386116 ], [ 175.43844604, -36.8448143 ], [ 175.42860413, -36.83833313 ], [ 175.42778015, -36.82860947 ], [ 175.43611145, -36.82694626 ], [ 175.4458313, -36.83166504 ], [ 175.457778929999989, -36.83222198 ], [ 175.46028137, -36.82666779 ], [ 175.44194031, -36.82222366 ], [ 175.431396479999989, -36.82444382 ], [ 175.42304993, -36.81888962 ], [ 175.44389343, -36.80916595 ], [ 175.46110535, -36.8069458 ], [ 175.46916199, -36.81027603 ], [ 175.47944641, -36.80194473 ], [ 175.48944092, -36.80666733 ], [ 175.50389099, -36.79666519 ], [ 175.50083923, -36.77999878 ], [ 175.485275269999988, -36.77666855 ], [ 175.49861145, -36.7733345 ], [ 175.47944641, -36.75249863 ], [ 175.45832825, -36.76333237 ], [ 175.47946167, -36.73608017 ], [ 175.47277832, -36.73722076 ], [ 175.456680299999988, -36.72546005 ], [ 175.44805908, -36.73138809 ], [ 175.43611145, -36.72694397 ], [ 175.43804932, -36.71944427 ], [ 175.43083191, -36.71777725 ], [ 175.42832947, -36.70000076 ], [ 175.43110657, -36.68888855 ], [ 175.44694519, -36.66277695 ], [ 175.44555664, -36.64638901 ], [ 175.43695068, -36.63416672 ], [ 175.43695068, -36.62666702 ], [ 175.454727170000012, -36.62888718 ], [ 175.47084045, -36.6222229 ], [ 175.46305847, -36.61388779 ], [ 175.449996950000013, -36.61611176 ], [ 175.43972778, -36.60833359 ], [ 175.43666077, -36.61166763 ], [ 175.41944885, -36.5969429 ], [ 175.417770389999987, -36.59000015 ], [ 175.40527344, -36.58083344 ], [ 175.38806152, -36.57638931 ], [ 175.38139343, -36.56999969 ], [ 175.362777709999989, -36.56499863 ], [ 175.358886719999987, -36.55916595 ], [ 175.34472656, -36.55416489 ], [ 175.34165955, -36.54527664 ], [ 175.33305359, -36.53694534 ], [ 175.326660159999989, -36.52277756 ], [ 175.328887939999987, -36.50944519 ], [ 175.32556152, -36.49000168 ], [ 175.33055115, -36.4794426 ], [ 175.33805847, -36.48416519 ], [ 175.34750366, -36.4794426 ], [ 175.34361267, -36.47166824 ], [ 175.36860657, -36.46694565 ], [ 175.36860657, -36.46694565 ] ] ], [ [ [ 175.40272522, -36.46147156 ], [ 175.40272522, -36.46394348 ], [ 175.399337769999988, -36.46097565 ], [ 175.40272522, -36.46147156 ], [ 175.40272522, -36.46147156 ] ] ], [ [ [ 175.771118159999986, -36.42638779 ], [ 175.77333069, -36.43166733 ], [ 175.7875061, -36.44138718 ], [ 175.76445007, -36.44166565 ], [ 175.75805664, -36.43694305 ], [ 175.771118159999986, -36.42638779 ], [ 175.771118159999986, -36.42638779 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.15", "id_1": 15, "name_1": "Wellington", "hasc_1": "NZ.WG", "population2022": 543500, "areakm2": 8077.827, "density2022": 67.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.773223879999989, -41.348526 ], [ 174.77305603, -41.35305405 ], [ 174.77055359, -41.35055542 ], [ 174.773223879999989, -41.348526 ], [ 174.773223879999989, -41.348526 ] ] ], [ [ [ 174.87068176, -41.2958107 ], [ 174.87020874000001, -41.29278564 ], [ 174.87251282, -41.29284286 ], [ 174.87068176, -41.2958107 ], [ 174.87068176, -41.2958107 ] ] ], [ [ [ 174.86784363000001, -41.26046371 ], [ 174.861114500000014, -41.25972366 ], [ 174.86552429, -41.25308228 ], [ 174.86784363000001, -41.26046371 ], [ 174.86784363000001, -41.26046371 ] ] ], [ [ [ 174.78111267, -41.07666779 ], [ 174.78852844, -41.07813644 ], [ 174.78974915, -41.0911026 ], [ 174.7718811, -41.09745026 ], [ 174.77055359, -41.08972168 ], [ 174.78111267, -41.07666779 ], [ 174.78111267, -41.07666779 ] ] ], [ [ [ 176.22465515, -40.90849686 ], [ 176.2334137, -40.89957809 ], [ 176.2280426, -40.90658188 ], [ 176.22465515, -40.90849686 ], [ 176.22465515, -40.90849686 ] ] ], [ [ [ 174.90179443, -40.88867569 ], [ 174.90400696, -40.88909149 ], [ 174.902023320000012, -40.89094925 ], [ 174.90179443, -40.88867569 ], [ 174.90179443, -40.88867569 ] ] ], [ [ [ 174.899887080000013, -40.88819504 ], [ 174.899185179999989, -40.88657761 ], [ 174.901474, -40.88442612 ], [ 174.899887080000013, -40.88819504 ], [ 174.899887080000013, -40.88819504 ] ] ], [ [ [ 174.945770259999989, -40.82215881 ], [ 174.95433044, -40.82952118 ], [ 174.94618225, -40.83194351 ], [ 174.933792110000013, -40.85034561 ], [ 174.93469238, -40.85413361 ], [ 174.917617799999988, -40.86843872 ], [ 174.91169739, -40.87018585 ], [ 174.89874268, -40.88323975 ], [ 174.88543701, -40.88996124 ], [ 174.87504578, -40.88994598 ], [ 174.86778259, -40.88472366 ], [ 174.86860657, -40.8758316 ], [ 174.88389587, -40.86694336 ], [ 174.89054871, -40.85722351 ], [ 174.8999939, -40.85472107 ], [ 174.91471863000001, -40.83805466 ], [ 174.918884279999986, -40.82277679 ], [ 174.93778992, -40.81952286 ], [ 174.945770259999989, -40.82215881 ], [ 174.945770259999989, -40.82215881 ] ] ], [ [ [ 176.10801697, -40.67386627 ], [ 176.13346863000001, -40.68264008 ], [ 176.153533939999988, -40.67651749 ], [ 176.15888977, -40.69146347 ], [ 176.173614500000014, -40.69804001 ], [ 176.1869812, -40.6939621 ], [ 176.19767761, -40.69624329 ], [ 176.20568848, -40.7048912 ], [ 176.21905518, -40.70081711 ], [ 176.247009279999986, -40.73113632 ], [ 176.24835205, -40.74177933 ], [ 176.26567078, -40.74206543 ], [ 176.2736969, -40.75070953 ], [ 176.26176453, -40.76538849 ], [ 176.26979065, -40.79122162 ], [ 176.259674069999988, -40.80427551 ], [ 176.25617981, -40.81715393 ], [ 176.2593689, -40.8232193 ], [ 176.24360657, -40.84638977 ], [ 176.24028015, -40.86249924 ], [ 176.227493290000012, -40.86972046 ], [ 176.219253540000011, -40.89019012 ], [ 176.22084045, -40.8983345 ], [ 176.22833252, -40.90333176 ], [ 176.205276489999989, -40.91472244 ], [ 176.19111633, -40.92583466 ], [ 176.18360901, -40.92722321 ], [ 176.17660522, -40.93543625 ], [ 176.15611267, -40.94722366 ], [ 176.13945007, -40.96611023 ], [ 176.13528442, -40.98389053 ], [ 176.12638855, -41.00500107 ], [ 176.1072998, -41.01586914 ], [ 176.10583496000001, -41.03443527 ], [ 176.097229, -41.04360962 ], [ 176.100921629999988, -41.05773163 ], [ 176.093246459999989, -41.05940247 ], [ 176.08895874000001, -41.07769775 ], [ 176.0776062, -41.08378601 ], [ 176.068603520000011, -41.1044426 ], [ 176.07041931, -41.12187195 ], [ 176.06277466, -41.13277817 ], [ 176.05653381, -41.13207245 ], [ 176.009521479999989, -41.16685867 ], [ 175.99775696, -41.17824173 ], [ 175.9916687, -41.19286346 ], [ 175.991973879999989, -41.20191193 ], [ 175.98497009, -41.2154808 ], [ 175.97380066, -41.22542953 ], [ 175.964340209999989, -41.24482346 ], [ 175.944564820000011, -41.24718857 ], [ 175.9165802, -41.25602341 ], [ 175.896728520000011, -41.2654686 ], [ 175.88215637, -41.27529144 ], [ 175.869049069999988, -41.28831482 ], [ 175.86506653, -41.31267929 ], [ 175.84921265, -41.32427597 ], [ 175.834472659999989, -41.33922577 ], [ 175.83230591, -41.34636307 ], [ 175.820755, -41.34887314 ], [ 175.80867004000001, -41.36261749 ], [ 175.80368042, -41.36203003 ], [ 175.76977539, -41.37142563 ], [ 175.76799011, -41.37914276 ], [ 175.74385071, -41.39175415 ], [ 175.725662230000012, -41.39485931 ], [ 175.70959473, -41.4052887 ], [ 175.690643310000013, -41.40807724 ], [ 175.68373108, -41.41498184 ], [ 175.67564392, -41.41449356 ], [ 175.6590271, -41.43013382 ], [ 175.64953613, -41.44302368 ], [ 175.64416504, -41.44333267 ], [ 175.6353302, -41.45409012 ], [ 175.61470032, -41.46166611 ], [ 175.60507202, -41.47468948 ], [ 175.59403992, -41.47945023 ], [ 175.58598328, -41.48756027 ], [ 175.57743835, -41.48440552 ], [ 175.56668091, -41.492733 ], [ 175.54522705, -41.49782944 ], [ 175.53318787, -41.49745178 ], [ 175.53277588, -41.50833511 ], [ 175.5186615, -41.50498199 ], [ 175.507171629999988, -41.51096725 ], [ 175.49913025, -41.52760315 ], [ 175.48039246, -41.53662872 ], [ 175.46513367, -41.55281448 ], [ 175.45422363, -41.55738449 ], [ 175.4322052, -41.57291031 ], [ 175.421524049999988, -41.56640244 ], [ 175.37831116000001, -41.56936646 ], [ 175.36174011, -41.5763588 ], [ 175.35391235, -41.58883286 ], [ 175.33726501000001, -41.59564209 ], [ 175.322494510000013, -41.60944366 ], [ 175.31044006, -41.60848618 ], [ 175.29730225, -41.61358643 ], [ 175.275299069999988, -41.61259842 ], [ 175.2693634, -41.60712814 ], [ 175.24694824, -41.60257721 ], [ 175.235000609999986, -41.60805511 ], [ 175.231384279999986, -41.59027863 ], [ 175.22149658, -41.56951904 ], [ 175.21803284, -41.54078674 ], [ 175.19416809, -41.52555466 ], [ 175.20706177, -41.50352478 ], [ 175.20787048, -41.47458649 ], [ 175.22166443, -41.45360947 ], [ 175.21556091, -41.43999863 ], [ 175.215316769999987, -41.43025589 ], [ 175.199996950000013, -41.42083359 ], [ 175.17416382, -41.4094429 ], [ 175.14479065, -41.39846039 ], [ 175.142929079999988, -41.39452744 ], [ 175.14785767, -41.37330246 ], [ 175.12138367, -41.37055588 ], [ 175.11328125, -41.37335587 ], [ 175.1075592, -41.38324356 ], [ 175.13323975, -41.39097214 ], [ 175.141098019999987, -41.39635086 ], [ 175.111404420000014, -41.38718033 ], [ 175.07579041, -41.37881088 ], [ 175.042190549999987, -41.37351227 ], [ 175.015426639999987, -41.38999939 ], [ 174.989074710000011, -41.39361191 ], [ 174.98805237, -41.40027618 ], [ 174.95304871, -41.41577148 ], [ 174.942169189999987, -41.42516708 ], [ 174.917770389999987, -41.43972397 ], [ 174.90167236, -41.41860962 ], [ 174.88667297, -41.41277695 ], [ 174.86805725, -41.41055679 ], [ 174.865005489999987, -41.40139008 ], [ 174.87583923, -41.38750076 ], [ 174.86721802, -41.37749863 ], [ 174.856384279999986, -41.37138748 ], [ 174.848159790000011, -41.35820389 ], [ 174.85824585, -41.33595276 ], [ 174.86827087, -41.32769012 ], [ 174.8709259, -41.31871414 ], [ 174.878417969999987, -41.3152504 ], [ 174.892776489999989, -41.29777908 ], [ 174.892501829999986, -41.29222107 ], [ 174.90611267, -41.28111267 ], [ 174.902771, -41.27694321 ], [ 174.91221619, -41.25805664 ], [ 174.8999939, -41.24972153 ], [ 174.898223879999989, -41.23915482 ], [ 174.888748170000014, -41.23181915 ], [ 174.86213684, -41.22491455 ], [ 174.84367371, -41.22934341 ], [ 174.81625366, -41.24756622 ], [ 174.79554749, -41.25755692 ], [ 174.78666687, -41.26722336 ], [ 174.78945923, -41.28112411 ], [ 174.77972412, -41.28722382 ], [ 174.79167175, -41.29111099 ], [ 174.80332947, -41.28540802 ], [ 174.80661011, -41.30037308 ], [ 174.79866028, -41.31214523 ], [ 174.808105469999987, -41.31599808 ], [ 174.824676509999989, -41.28538513 ], [ 174.83335876000001, -41.28879929 ], [ 174.83329773, -41.30759811 ], [ 174.82797241, -41.31433487 ], [ 174.83929443, -41.32645416 ], [ 174.83833313, -41.33361053 ], [ 174.82644653, -41.33276367 ], [ 174.82055664, -41.34638977 ], [ 174.80999756, -41.34277725 ], [ 174.80332947, -41.32833481 ], [ 174.79180908, -41.33290482 ], [ 174.79083252, -41.35055542 ], [ 174.7849884, -41.34259033 ], [ 174.772506709999988, -41.34388733 ], [ 174.767501829999986, -41.35055542 ], [ 174.75111389, -41.35055542 ], [ 174.74472046, -41.3469429 ], [ 174.733612060000013, -41.34916687 ], [ 174.72639465, -41.35861206 ], [ 174.71583557, -41.36388779 ], [ 174.701385499999986, -41.35555649 ], [ 174.696105960000011, -41.34777832 ], [ 174.66305542, -41.33972168 ], [ 174.659729, -41.34305573 ], [ 174.64860535, -41.32638931 ], [ 174.63082886, -41.31611252 ], [ 174.62832642, -41.29472351 ], [ 174.61694336, -41.29639053 ], [ 174.612228390000013, -41.28610992 ], [ 174.61444092, -41.27361298 ], [ 174.62167358, -41.25972366 ], [ 174.646850590000014, -41.23717117 ], [ 174.65083313, -41.24388885 ], [ 174.6577301, -41.23802185 ], [ 174.66194153, -41.24603653 ], [ 174.67443848, -41.23472214 ], [ 174.68916321, -41.23110962 ], [ 174.69139099, -41.22083282 ], [ 174.7052002, -41.21711731 ], [ 174.71333313, -41.21888733 ], [ 174.729599, -41.18606567 ], [ 174.73944092, -41.18000031 ], [ 174.74055481, -41.17055511 ], [ 174.75854492, -41.1677475 ], [ 174.768890379999988, -41.15222168 ], [ 174.78639221, -41.13639069 ], [ 174.7959137, -41.12390137 ], [ 174.80499268, -41.11888885 ], [ 174.802505489999987, -41.11277771 ], [ 174.8125, -41.11166763 ], [ 174.82446289, -41.10512543 ], [ 174.83239746000001, -41.10747528 ], [ 174.8319397, -41.10055542 ], [ 174.84861755, -41.0886116 ], [ 174.861816409999989, -41.09406281 ], [ 174.86291504, -41.10289001 ], [ 174.838119510000013, -41.12212753 ], [ 174.84222412, -41.13111115 ], [ 174.86024475, -41.11437225 ], [ 174.86805725, -41.10361099 ], [ 174.864746090000011, -41.09777832 ], [ 174.86633301, -41.08445358 ], [ 174.85055542, -41.06638718 ], [ 174.83888245, -41.06194305 ], [ 174.84832764, -41.04722214 ], [ 174.862777709999989, -41.04222107 ], [ 174.87028503, -41.02972412 ], [ 174.89884949, -41.02837753 ], [ 174.92805481, -41.0047226 ], [ 174.93943787, -41.0 ], [ 174.958923340000013, -40.97463608 ], [ 174.97164917, -40.94835663 ], [ 174.97779846, -40.91699219 ], [ 174.97680664, -40.90339661 ], [ 174.985275269999988, -40.88138962 ], [ 175.02835083, -40.85774231 ], [ 175.05967712, -40.82636642 ], [ 175.108337400000011, -40.74830627 ], [ 175.117538450000012, -40.73170853 ], [ 175.12507629000001, -40.72503281 ], [ 175.133728029999986, -40.70552826 ], [ 175.16729736, -40.70825958 ], [ 175.168609620000012, -40.71885681 ], [ 175.18592834, -40.71916199 ], [ 175.20452881, -40.73005295 ], [ 175.20581055, -40.74065399 ], [ 175.181854249999986, -40.74236298 ], [ 175.20172119, -40.76387024 ], [ 175.235015870000012, -40.75382614 ], [ 175.25360107, -40.76469803 ], [ 175.26423645, -40.7669754 ], [ 175.284240720000014, -40.76091385 ], [ 175.28692627, -40.75460052 ], [ 175.3069458, -40.74853516 ], [ 175.317596439999988, -40.75080109 ], [ 175.33094788, -40.74674606 ], [ 175.34559631, -40.7532959 ], [ 175.356369019999988, -40.7280159 ], [ 175.36973572, -40.72394562 ], [ 175.377716060000012, -40.73252106 ], [ 175.384399409999986, -40.73048401 ], [ 175.392379760000011, -40.73905945 ], [ 175.405761719999987, -40.73498535 ], [ 175.413742070000012, -40.74356079 ], [ 175.42442322, -40.74580765 ], [ 175.43780518, -40.74172592 ], [ 175.44320679, -40.72907257 ], [ 175.4499054, -40.72703171 ], [ 175.47012329, -40.69334412 ], [ 175.56098938, -40.7261467 ], [ 175.55429077, -40.72819519 ], [ 175.562286379999989, -40.73676682 ], [ 175.57569885, -40.73266983 ], [ 175.59039307, -40.73918915 ], [ 175.59710693, -40.73713684 ], [ 175.60510254, -40.74570847 ], [ 175.61180115, -40.74365616 ], [ 175.61981201, -40.75222778 ], [ 175.63322449, -40.74812317 ], [ 175.629226679999988, -40.74383926 ], [ 175.65335083, -40.74196243 ], [ 175.66148376000001, -40.72293472 ], [ 175.67619324, -40.72945023 ], [ 175.685607909999987, -40.72104645 ], [ 175.693725590000014, -40.70200348 ], [ 175.68972778, -40.69771576 ], [ 175.72055054, -40.69376373 ], [ 175.74868774, -40.69615555 ], [ 175.75669861, -40.70472717 ], [ 175.766113280000013, -40.69631958 ], [ 175.78485107, -40.70711517 ], [ 175.7754364, -40.71552658 ], [ 175.783447270000011, -40.72409821 ], [ 175.79016113, -40.72203445 ], [ 175.775329590000013, -40.74314499 ], [ 175.77934265, -40.74743271 ], [ 175.76591492, -40.75155258 ], [ 175.76451111, -40.76852417 ], [ 175.785949710000011, -40.77297211 ], [ 175.78865051, -40.76663208 ], [ 175.796661379999989, -40.77519608 ], [ 175.814102170000012, -40.77535629 ], [ 175.82621765, -40.76060867 ], [ 175.84094238, -40.76711273 ], [ 175.850372310000012, -40.75870514 ], [ 175.85838318, -40.76726913 ], [ 175.873107909999987, -40.77376938 ], [ 175.88653564, -40.76964188 ], [ 175.91207886, -40.75074387 ], [ 175.93484497, -40.76580048 ], [ 175.945648190000014, -40.74040222 ], [ 175.95637512, -40.74261475 ], [ 175.959075930000012, -40.73626328 ], [ 175.97651672, -40.73640823 ], [ 175.97920227, -40.73005676 ], [ 175.97117615, -40.72149277 ], [ 175.97789001000001, -40.71942139 ], [ 175.99934387, -40.72384644 ], [ 176.0141449, -40.70272446 ], [ 176.024887080000013, -40.70493698 ], [ 176.02218628, -40.71128845 ], [ 176.0436554, -40.7157135 ], [ 176.06109619, -40.71586609 ], [ 176.07450867, -40.7117424 ], [ 176.0852356, -40.71397018 ], [ 176.077194209999988, -40.70539856 ], [ 176.08792114, -40.70762634 ], [ 176.090606689999987, -40.67368698 ], [ 176.104003909999989, -40.66957855 ], [ 176.10801697, -40.67386627 ], [ 176.10801697, -40.67386627 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.16", "id_1": 16, "name_1": "West Coast", "hasc_1": "NZ.WC", "population2022": 32700, "areakm2": 23621.806, "density2022": 1.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.18888855, -44.17944336 ], [ 168.18804932, -44.1819458 ], [ 168.18638611, -44.18083191 ], [ 168.18888855, -44.17944336 ], [ 168.18888855, -44.17944336 ] ] ], [ [ [ 168.30499268, -44.07944489 ], [ 168.3041687, -44.08277893 ], [ 168.301391599999988, -44.08055496 ], [ 168.30499268, -44.07944489 ], [ 168.30499268, -44.07944489 ] ] ], [ [ [ 168.37640381, -44.02986908 ], [ 168.378433230000013, -44.03125 ], [ 168.37770081, -44.0320015 ], [ 168.37640381, -44.02986908 ], [ 168.37640381, -44.02986908 ] ] ], [ [ [ 168.7906189, -43.98039627 ], [ 168.78924561, -43.97800827 ], [ 168.79118347, -43.97719193 ], [ 168.7906189, -43.98039627 ], [ 168.7906189, -43.98039627 ] ] ], [ [ [ 168.91442871000001, -43.89767838 ], [ 168.916519169999987, -43.89860916 ], [ 168.91322327, -43.89785385 ], [ 168.91442871000001, -43.89767838 ], [ 168.91442871000001, -43.89767838 ] ] ], [ [ [ 168.83999634, -43.87657166 ], [ 168.8374176, -43.87686539 ], [ 168.83660889, -43.87546539 ], [ 168.83999634, -43.87657166 ], [ 168.83999634, -43.87657166 ] ] ], [ [ [ 168.87667847, -43.86341858 ], [ 168.875473019999987, -43.85992432 ], [ 168.87780762, -43.8610878 ], [ 168.87667847, -43.86341858 ], [ 168.87667847, -43.86341858 ] ] ], [ [ [ 168.88708496000001, -43.85765457 ], [ 168.88273621, -43.86248779 ], [ 168.87889099, -43.86166763 ], [ 168.88708496000001, -43.85765457 ], [ 168.88708496000001, -43.85765457 ] ] ], [ [ [ 170.33135986, -43.1031723 ], [ 170.331527709999989, -43.10625839 ], [ 170.327331539999989, -43.10404587 ], [ 170.33135986, -43.1031723 ], [ 170.33135986, -43.1031723 ] ] ], [ [ [ 170.34240723, -43.10206985 ], [ 170.339508059999986, -43.10009003 ], [ 170.34515381, -43.0995636 ], [ 170.34240723, -43.10206985 ], [ 170.34240723, -43.10206985 ] ] ], [ [ [ 170.9928894, -42.73789597 ], [ 170.98968506, -42.7373085 ], [ 170.99023438, -42.73636627 ], [ 170.9928894, -42.73789597 ], [ 170.9928894, -42.73789597 ] ] ], [ [ [ 170.98666382, -42.73361206 ], [ 170.987228390000013, -42.73555374 ], [ 170.98194885, -42.73389053 ], [ 170.98666382, -42.73361206 ], [ 170.98666382, -42.73361206 ] ] ], [ [ [ 170.96777344, -42.72611237 ], [ 170.9803009, -42.72612 ], [ 170.979995730000013, -42.73138809 ], [ 170.96777344, -42.72611237 ], [ 170.96777344, -42.72611237 ] ] ], [ [ [ 170.96083069, -42.72083282 ], [ 170.96055603, -42.72333145 ], [ 170.9569397, -42.72083282 ], [ 170.96083069, -42.72083282 ], [ 170.96083069, -42.72083282 ] ] ], [ [ [ 171.21891785, -42.37594986 ], [ 171.21682739, -42.37548065 ], [ 171.21803284, -42.37459564 ], [ 171.21891785, -42.37594986 ], [ 171.21891785, -42.37594986 ] ] ], [ [ [ 171.26448059, -42.32446289 ], [ 171.2600708, -42.32311249 ], [ 171.26599121000001, -42.32164001 ], [ 171.26448059, -42.32446289 ], [ 171.26448059, -42.32446289 ] ] ], [ [ [ 171.449722290000011, -41.76805496 ], [ 171.453338620000011, -41.76416779 ], [ 171.453887939999987, -41.76638794 ], [ 171.449722290000011, -41.76805496 ], [ 171.449722290000011, -41.76805496 ] ] ], [ [ [ 172.09741211, -41.25501251 ], [ 172.09654236, -41.24890137 ], [ 172.09933472, -41.25050354 ], [ 172.09741211, -41.25501251 ], [ 172.09741211, -41.25501251 ] ] ], [ [ [ 172.25198364, -40.80802155 ], [ 172.242965700000013, -40.82708359 ], [ 172.24676514, -40.83150482 ], [ 172.237091060000012, -40.8398056 ], [ 172.24467468, -40.8486557 ], [ 172.231216429999989, -40.85252762 ], [ 172.228286739999987, -40.85889053 ], [ 172.235839840000011, -40.86775208 ], [ 172.23287964, -40.87412262 ], [ 172.25306702, -40.86831284 ], [ 172.26274109, -40.86000824 ], [ 172.2635498, -40.87081528 ], [ 172.284530640000014, -40.87582016 ], [ 172.292053220000014, -40.88470459 ], [ 172.29284668, -40.89552689 ], [ 172.279373170000014, -40.8993988 ], [ 172.286895750000014, -40.90828705 ], [ 172.29364014, -40.906353 ], [ 172.30493164, -40.91968918 ], [ 172.29820251000001, -40.92162704 ], [ 172.305725099999989, -40.9305191 ], [ 172.31919861, -40.926651 ], [ 172.33050537, -40.93999863 ], [ 172.35070801, -40.93419266 ], [ 172.364990229999989, -40.94115829 ], [ 172.37846375, -40.93729019 ], [ 172.38305664, -40.95258331 ], [ 172.38980103, -40.95064926 ], [ 172.383880620000014, -40.96342468 ], [ 172.36448669, -40.98006439 ], [ 172.35101318, -40.98392868 ], [ 172.34805298, -40.99031448 ], [ 172.33079529, -40.98972321 ], [ 172.321899409999986, -41.00888062 ], [ 172.31219482, -41.01719284 ], [ 172.32731628, -41.03501129 ], [ 172.33784485000001, -41.03753662 ], [ 172.32896423, -41.05669022 ], [ 172.322204590000013, -41.05862045 ], [ 172.32977295, -41.06753159 ], [ 172.343276980000013, -41.06367493 ], [ 172.35380554, -41.06620789 ], [ 172.35298157, -41.0553627 ], [ 172.36352539, -41.05789185 ], [ 172.3694458, -41.04512024 ], [ 172.36566162, -41.04066086 ], [ 172.3821106, -41.0304184 ], [ 172.37831116000001, -41.02595901 ], [ 172.40612793, -41.02908707 ], [ 172.413711549999988, -41.03800964 ], [ 172.44068909, -41.03029251 ], [ 172.44364929, -41.02390289 ], [ 172.4609375, -41.02450562 ], [ 172.48202515, -41.02957535 ], [ 172.49551392, -41.02571487 ], [ 172.50016785, -41.04104614 ], [ 172.49429321, -41.05383301 ], [ 172.487533570000011, -41.05576324 ], [ 172.498962400000011, -41.06916809 ], [ 172.516265870000012, -41.06978607 ], [ 172.52770996000001, -41.08320236 ], [ 172.51802063, -41.0915184 ], [ 172.52566528, -41.10045242 ], [ 172.55360413, -41.10361481 ], [ 172.56515503, -41.11699295 ], [ 172.558380129999989, -41.11891174 ], [ 172.57286072, -41.12590027 ], [ 172.58831787, -41.14369202 ], [ 172.59507751000001, -41.14177704 ], [ 172.6105957, -41.1595459 ], [ 172.62124634, -41.16207123 ], [ 172.62901306, -41.17094421 ], [ 172.62223816, -41.17285538 ], [ 172.63002014, -41.18172073 ], [ 172.623260499999986, -41.1836319 ], [ 172.63883972, -41.20134735 ], [ 172.65914917, -41.19562531 ], [ 172.66305542, -41.20005035 ], [ 172.68336487, -41.19433212 ], [ 172.699005129999989, -41.21203995 ], [ 172.69613647, -41.21837234 ], [ 172.68258667, -41.22217941 ], [ 172.68649292, -41.22660446 ], [ 172.676849370000014, -41.23483658 ], [ 172.663299560000013, -41.23864746 ], [ 172.667221070000011, -41.2430687 ], [ 172.6401062, -41.25069427 ], [ 172.63618469, -41.24627304 ], [ 172.57516479, -41.26345062 ], [ 172.59469604, -41.28552246 ], [ 172.58792114, -41.28743362 ], [ 172.5957489, -41.29625702 ], [ 172.60644531, -41.29875946 ], [ 172.607498170000014, -41.3094902 ], [ 172.59783936, -41.31771088 ], [ 172.59210205, -41.33034515 ], [ 172.599960329999988, -41.3391571 ], [ 172.58638, -41.3429718 ], [ 172.58351135, -41.34928513 ], [ 172.59136963, -41.35809708 ], [ 172.58457947, -41.36000061 ], [ 172.59243774, -41.36880875 ], [ 172.59350586, -41.3795166 ], [ 172.56632996, -41.38712311 ], [ 172.55667114, -41.39532089 ], [ 172.56059265, -41.39971924 ], [ 172.54020691, -41.40541458 ], [ 172.54412842, -41.40980911 ], [ 172.526596070000011, -41.40921021 ], [ 172.52372742, -41.41550064 ], [ 172.495468140000014, -41.41241455 ], [ 172.47399902, -41.40743256 ], [ 172.46615601, -41.39865494 ], [ 172.45254517, -41.40245819 ], [ 172.44966125, -41.408741 ], [ 172.42242432, -41.41633606 ], [ 172.41952515, -41.42261505 ], [ 172.43026733, -41.42510223 ], [ 172.438125609999986, -41.43386841 ], [ 172.42553711, -41.44831085 ], [ 172.433395389999987, -41.45707321 ], [ 172.426574710000011, -41.4589653 ], [ 172.424743650000011, -41.4758873 ], [ 172.3974762, -41.4834404 ], [ 172.387756349999989, -41.49159241 ], [ 172.37411499000001, -41.49536514 ], [ 172.361526489999989, -41.50976944 ], [ 172.347869870000011, -41.51353836 ], [ 172.34498596, -41.51979446 ], [ 172.3528595, -41.52854156 ], [ 172.34709167, -41.54105377 ], [ 172.3520813, -41.55606461 ], [ 172.331604, -41.56170654 ], [ 172.339492799999988, -41.57046509 ], [ 172.332672120000012, -41.57234955 ], [ 172.344497679999989, -41.585495 ], [ 172.33874512, -41.59802628 ], [ 172.329040529999986, -41.60617447 ], [ 172.33299255, -41.61056137 ], [ 172.29885864, -41.6199646 ], [ 172.302810670000014, -41.62435532 ], [ 172.29705811, -41.63689423 ], [ 172.271560670000014, -41.62748718 ], [ 172.251068120000014, -41.63312149 ], [ 172.24136353, -41.6412735 ], [ 172.24926758, -41.65005875 ], [ 172.2424469, -41.65193939 ], [ 172.25823975, -41.66952133 ], [ 172.25248718, -41.68207932 ], [ 172.26435852, -41.69527817 ], [ 172.254653929999989, -41.70344925 ], [ 172.24278259, -41.69024658 ], [ 172.22912598, -41.6940155 ], [ 172.22122192, -41.68521118 ], [ 172.214385990000011, -41.68709183 ], [ 172.22229004, -41.69589615 ], [ 172.20466614, -41.69526291 ], [ 172.20071411, -41.69085693 ], [ 172.1870575, -41.69462204 ], [ 172.17733765, -41.70278931 ], [ 172.155761719999987, -41.69773483 ], [ 172.15682983, -41.70843124 ], [ 172.12947083, -41.71595383 ], [ 172.133438109999986, -41.72036743 ], [ 172.11975098, -41.72412872 ], [ 172.116867070000012, -41.73042297 ], [ 172.131622310000012, -41.73736954 ], [ 172.12190247, -41.74555206 ], [ 172.122970579999986, -41.75626755 ], [ 172.10929871, -41.76003647 ], [ 172.09957886, -41.76822662 ], [ 172.107498170000014, -41.77706528 ], [ 172.100646970000014, -41.77895355 ], [ 172.10856628, -41.78779602 ], [ 172.12225342, -41.78401947 ], [ 172.12011719, -41.86739349 ], [ 172.10931396, -41.86486816 ], [ 172.09671021, -41.8794136 ], [ 172.09780884, -41.89016724 ], [ 172.0841217, -41.89396667 ], [ 172.073303220000014, -41.89143753 ], [ 172.07041931, -41.89776611 ], [ 172.08630371000001, -41.91548538 ], [ 172.0834198, -41.92182159 ], [ 172.06973267, -41.92562485 ], [ 172.07369995, -41.93005753 ], [ 172.06001282, -41.93386459 ], [ 172.0639801, -41.93829727 ], [ 172.054245, -41.94654083 ], [ 172.06219482, -41.95540237 ], [ 172.07301331, -41.9579277 ], [ 172.08602905, -41.98199081 ], [ 172.0763092, -41.990242 ], [ 172.08822632, -42.00353622 ], [ 172.13150024, -42.0135994 ], [ 172.124649049999988, -42.01551056 ], [ 172.125747679999989, -42.02628326 ], [ 172.118911739999987, -42.02819824 ], [ 172.12001038, -42.03897095 ], [ 172.110290529999986, -42.04723358 ], [ 172.1421051, -42.08266449 ], [ 172.135253909999989, -42.08458328 ], [ 172.14718628, -42.09786606 ], [ 172.17565918, -42.10095215 ], [ 172.18934631, -42.09710693 ], [ 172.19332886, -42.10153198 ], [ 172.21385193, -42.09576416 ], [ 172.22975159, -42.11345673 ], [ 172.22291565, -42.11537933 ], [ 172.234848019999987, -42.12865067 ], [ 172.24565125, -42.13114548 ], [ 172.25933838, -42.12729645 ], [ 172.25646973, -42.1336441 ], [ 172.26441956, -42.14248657 ], [ 172.26156616, -42.14883423 ], [ 172.28207397, -42.14305496 ], [ 172.32420349, -42.14226151 ], [ 172.349807739999989, -42.15166092 ], [ 172.34693909, -42.15800858 ], [ 172.358871459999989, -42.17126083 ], [ 172.34918213, -42.17953491 ], [ 172.35714722, -42.18837357 ], [ 172.35031128, -42.19029999 ], [ 172.35826111, -42.19913864 ], [ 172.35142517, -42.20106888 ], [ 172.3633728, -42.21432495 ], [ 172.356536870000014, -42.21625519 ], [ 172.357666020000011, -42.22702408 ], [ 172.34399414, -42.23089218 ], [ 172.371856689999987, -42.26182556 ], [ 172.36216736, -42.2701149 ], [ 172.37013245, -42.27895355 ], [ 172.38378906, -42.27507782 ], [ 172.39175415, -42.28391266 ], [ 172.40257263, -42.28639221 ], [ 172.41053772, -42.29522705 ], [ 172.42817688, -42.29576874 ], [ 172.44296265, -42.3026619 ], [ 172.45661926, -42.29878616 ], [ 172.44866943, -42.28995514 ], [ 172.46232605, -42.28608322 ], [ 172.46118164, -42.27531433 ], [ 172.474838260000013, -42.27144623 ], [ 172.4788208, -42.27585983 ], [ 172.488494870000011, -42.26757431 ], [ 172.496444700000012, -42.27640152 ], [ 172.4839325, -42.29103851 ], [ 172.48791504, -42.29545212 ], [ 172.474258420000012, -42.29932404 ], [ 172.47142029, -42.30567932 ], [ 172.47937012, -42.31450653 ], [ 172.458892819999988, -42.32032394 ], [ 172.46287537, -42.32474136 ], [ 172.45718384, -42.33745193 ], [ 172.4594574, -42.35900116 ], [ 172.456604, -42.36536026 ], [ 172.43611145, -42.37119293 ], [ 172.44009399, -42.37561035 ], [ 172.42643738000001, -42.37949753 ], [ 172.41163635, -42.37260818 ], [ 172.35696411, -42.38816452 ], [ 172.36094666, -42.39258575 ], [ 172.34729004, -42.39648056 ], [ 172.35127258, -42.40090179 ], [ 172.33760071, -42.40479279 ], [ 172.341583250000014, -42.40921402 ], [ 172.314239500000014, -42.41700745 ], [ 172.30567932, -42.43612289 ], [ 172.29598999000001, -42.44444656 ], [ 172.275466920000014, -42.45029831 ], [ 172.27148438, -42.44587326 ], [ 172.24411011, -42.45367813 ], [ 172.248107909999987, -42.45810699 ], [ 172.23954773, -42.47724533 ], [ 172.21902466, -42.48310852 ], [ 172.223007200000012, -42.48753357 ], [ 172.20932007, -42.49144363 ], [ 172.18992615, -42.50812149 ], [ 172.19790649, -42.51697922 ], [ 172.1882019, -42.52531815 ], [ 172.18934631, -42.53613281 ], [ 172.17564392, -42.54004669 ], [ 172.172790529999986, -42.5464325 ], [ 172.13169861, -42.55817795 ], [ 172.12026978, -42.5837326 ], [ 172.11054993, -42.59207916 ], [ 172.11854553, -42.6009407 ], [ 172.104843140000014, -42.6048584 ], [ 172.11283875, -42.61371994 ], [ 172.057983400000012, -42.62939453 ], [ 172.0539856, -42.62496185 ], [ 172.04428101, -42.63331604 ], [ 172.02941895, -42.62641144 ], [ 172.00198364, -42.63425064 ], [ 171.98426819, -42.63373947 ], [ 171.9894104, -42.64899826 ], [ 171.96481323, -42.65044785 ], [ 171.96882629000001, -42.65488052 ], [ 171.934509279999986, -42.6646843 ], [ 171.93850708, -42.66911697 ], [ 171.928771970000014, -42.67747498 ], [ 171.91442871000001, -42.70944595 ], [ 171.89382935, -42.71533203 ], [ 171.89608765, -42.73698807 ], [ 171.89035034, -42.74977875 ], [ 171.88633728, -42.74534607 ], [ 171.865722659999989, -42.75123596 ], [ 171.86972046, -42.75566864 ], [ 171.855972290000011, -42.75959778 ], [ 171.85710144, -42.77042389 ], [ 171.80207825, -42.78614044 ], [ 171.79808044, -42.78171158 ], [ 171.77055359, -42.78956985 ], [ 171.76480103, -42.80236816 ], [ 171.772811890000014, -42.81122971 ], [ 171.76304626000001, -42.81959534 ], [ 171.773941040000011, -42.82205963 ], [ 171.76817322, -42.83485413 ], [ 171.77218628, -42.8392868 ], [ 171.74465942, -42.8471489 ], [ 171.74865723, -42.85158157 ], [ 171.738891599999988, -42.8599472 ], [ 171.749786379999989, -42.8624115 ], [ 171.75779724, -42.87127304 ], [ 171.74403381, -42.87520599 ], [ 171.74803162, -42.87963867 ], [ 171.73426819, -42.88357162 ], [ 171.73828125, -42.8880043 ], [ 171.71762085, -42.89390182 ], [ 171.72163391, -42.8983345 ], [ 171.700973510000011, -42.90423584 ], [ 171.70384216, -42.89783859 ], [ 171.69294739, -42.8953743 ], [ 171.68493652, -42.88651657 ], [ 171.674041749999986, -42.88405228 ], [ 171.67115784, -42.89044952 ], [ 171.62294006, -42.90423203 ], [ 171.6149292, -42.89537048 ], [ 171.60113525, -42.89930725 ], [ 171.59713745, -42.89487839 ], [ 171.55577087, -42.90668106 ], [ 171.55175781, -42.9022522 ], [ 171.524185179999989, -42.91011429 ], [ 171.512146, -42.8968277 ], [ 171.494338989999989, -42.89633179 ], [ 171.48857117, -42.90911484 ], [ 171.47476196, -42.91304016 ], [ 171.45983887, -42.906147 ], [ 171.45695496, -42.91254044 ], [ 171.443145750000014, -42.91646194 ], [ 171.44026184, -42.92285156 ], [ 171.448287959999988, -42.93170547 ], [ 171.42758179, -42.93758392 ], [ 171.43159485000001, -42.94201279 ], [ 171.41778564, -42.94593048 ], [ 171.42179871, -42.95035553 ], [ 171.40109253, -42.95623016 ], [ 171.406860349999988, -42.94346237 ], [ 171.389038090000014, -42.94294739 ], [ 171.374099730000012, -42.93605042 ], [ 171.350494379999986, -42.94829559 ], [ 171.33554077, -42.94139099 ], [ 171.314819340000014, -42.94724274 ], [ 171.309021, -42.95999908 ], [ 171.31994629, -42.96247864 ], [ 171.28538513, -42.97222137 ], [ 171.289398190000014, -42.97665024 ], [ 171.26864624000001, -42.98249435 ], [ 171.25883484, -42.99081802 ], [ 171.26286316, -42.99524689 ], [ 171.24209595, -43.00108719 ], [ 171.25013733, -43.00994492 ], [ 171.243225099999989, -43.01189041 ], [ 171.25126648, -43.02074814 ], [ 171.244354249999986, -43.02269745 ], [ 171.25239563, -43.03155518 ], [ 171.23855591, -43.03544617 ], [ 171.24258423, -43.03987503 ], [ 171.228744510000013, -43.04376984 ], [ 171.22584534, -43.05014801 ], [ 171.233886719999987, -43.05900192 ], [ 171.23100281, -43.0653801 ], [ 171.203323360000013, -43.07316589 ], [ 171.19526672, -43.06431198 ], [ 171.181427, -43.06820679 ], [ 171.185455319999988, -43.07263184 ], [ 171.15776062, -43.08042526 ], [ 171.147933959999989, -43.08874512 ], [ 171.13989258, -43.0798912 ], [ 171.11911011, -43.08573532 ], [ 171.11621094, -43.09210968 ], [ 171.12426758, -43.10096741 ], [ 171.10752869, -43.11123657 ], [ 171.09947205, -43.10238266 ], [ 171.08158875, -43.1018486 ], [ 171.089645389999987, -43.11070633 ], [ 171.068862919999987, -43.11655045 ], [ 171.07691956, -43.12540436 ], [ 171.07403564, -43.13178253 ], [ 171.04632568, -43.13957214 ], [ 171.043426509999989, -43.14595032 ], [ 171.05955505, -43.16365814 ], [ 171.0249176, -43.17340088 ], [ 171.02316284, -43.19057846 ], [ 171.0092926, -43.19447327 ], [ 170.9994812, -43.20279694 ], [ 171.000610349999988, -43.21360016 ], [ 170.98675537, -43.21749878 ], [ 170.99079895, -43.22192383 ], [ 170.96307373, -43.22971725 ], [ 170.94805908, -43.22281647 ], [ 170.95385742, -43.21006393 ], [ 170.93884277, -43.20315933 ], [ 170.9359436, -43.20953369 ], [ 170.91514587, -43.21538162 ], [ 170.91629028, -43.22618484 ], [ 170.90242004000001, -43.23008347 ], [ 170.906463620000011, -43.23450851 ], [ 170.89257813, -43.23840714 ], [ 170.8966217, -43.24283218 ], [ 170.87582397, -43.24868011 ], [ 170.870025629999986, -43.26143265 ], [ 170.875213620000011, -43.27666092 ], [ 170.8405304, -43.28640747 ], [ 170.83648682, -43.28198242 ], [ 170.8266449, -43.29030609 ], [ 170.827804570000012, -43.3011055 ], [ 170.806991579999988, -43.30694962 ], [ 170.798904420000014, -43.29809952 ], [ 170.79600525, -43.30447388 ], [ 170.76826477, -43.31225967 ], [ 170.758453370000012, -43.32057571 ], [ 170.73648071, -43.31561661 ], [ 170.71569824, -43.32144928 ], [ 170.704711909999986, -43.31896973 ], [ 170.720916749999986, -43.33666229 ], [ 170.7180481, -43.34302902 ], [ 170.69726563, -43.34885406 ], [ 170.6862793, -43.34637451 ], [ 170.67242432, -43.35025787 ], [ 170.67648315, -43.35467911 ], [ 170.66262817, -43.35855865 ], [ 170.66668701, -43.36297989 ], [ 170.6459198, -43.3687973 ], [ 170.65403748, -43.37764359 ], [ 170.66096497, -43.37570572 ], [ 170.65237427, -43.39478683 ], [ 170.63853455, -43.39866257 ], [ 170.64259338, -43.4030838 ], [ 170.62875366, -43.40695572 ], [ 170.6328125, -43.41137695 ], [ 170.61897278, -43.41524887 ], [ 170.61732483, -43.43238449 ], [ 170.60350037, -43.43625259 ], [ 170.59944153, -43.43183136 ], [ 170.585617070000012, -43.43569565 ], [ 170.58035278, -43.42049789 ], [ 170.55961609, -43.42629242 ], [ 170.548629760000011, -43.42380524 ], [ 170.53645325, -43.41053772 ], [ 170.51977539, -43.42075348 ], [ 170.52384949, -43.42517471 ], [ 170.475524900000011, -43.43867111 ], [ 170.462951659999987, -43.45328903 ], [ 170.46418762, -43.46405411 ], [ 170.450408939999988, -43.46790314 ], [ 170.432556150000011, -43.4673233 ], [ 170.4269104, -43.48001099 ], [ 170.413146970000014, -43.48384857 ], [ 170.40750122, -43.49653244 ], [ 170.35939026, -43.50996017 ], [ 170.35127258, -43.50110626 ], [ 170.34440613000001, -43.50302124 ], [ 170.332244870000011, -43.48973846 ], [ 170.31851196, -43.49356461 ], [ 170.3157196, -43.49990463 ], [ 170.21992493, -43.52661514 ], [ 170.221191409999989, -43.53739929 ], [ 170.207519530000013, -43.5412178 ], [ 170.208770750000014, -43.55200577 ], [ 170.192306519999988, -43.56217957 ], [ 170.178634640000013, -43.56599808 ], [ 170.174591060000012, -43.56155777 ], [ 170.160903929999989, -43.56537628 ], [ 170.162170409999987, -43.57617569 ], [ 170.14848328, -43.57999802 ], [ 170.1497345, -43.59080505 ], [ 170.132019039999989, -43.59018326 ], [ 170.09783936, -43.5997467 ], [ 170.095047, -43.60610962 ], [ 170.107177729999989, -43.61946106 ], [ 170.09753418, -43.62773895 ], [ 170.10966492, -43.64109802 ], [ 170.10003662, -43.64938354 ], [ 170.1040802, -43.6538353 ], [ 170.09848022, -43.6665802 ], [ 170.07797241, -43.67233658 ], [ 170.08201599, -43.67679214 ], [ 170.04098511, -43.68831253 ], [ 170.03259277, -43.70745087 ], [ 170.040664670000012, -43.71637344 ], [ 170.03382874, -43.71829605 ], [ 170.041915890000013, -43.72721863 ], [ 170.02137756, -43.73297501 ], [ 170.02542114, -43.7374382 ], [ 170.01574707, -43.74572754 ], [ 170.01171875, -43.74126816 ], [ 169.98429871, -43.74891281 ], [ 169.99639893, -43.76228714 ], [ 169.99356079, -43.76865387 ], [ 169.979843140000014, -43.77246857 ], [ 169.98789978, -43.78138351 ], [ 169.98506165, -43.78774643 ], [ 169.9438324, -43.79915619 ], [ 169.94786072, -43.80361557 ], [ 169.906585690000014, -43.81499481 ], [ 169.91177368000001, -43.83026886 ], [ 169.90890503, -43.83662415 ], [ 169.89512634, -43.84040833 ], [ 169.88020325, -43.83337402 ], [ 169.86758423, -43.84796524 ], [ 169.85379028, -43.85173798 ], [ 169.852066040000011, -43.8689003 ], [ 169.81066895, -43.88019943 ], [ 169.81181335, -43.8910141 ], [ 169.78419495, -43.89852905 ], [ 169.778411870000014, -43.91122055 ], [ 169.77151489, -43.91309738 ], [ 169.7766571, -43.92838287 ], [ 169.75994873, -43.93848419 ], [ 169.757049560000013, -43.94482803 ], [ 169.73631287, -43.9504509 ], [ 169.73744202, -43.96126938 ], [ 169.7166748, -43.96688461 ], [ 169.708633420000012, -43.95793533 ], [ 169.69769287, -43.95532608 ], [ 169.67692566, -43.96092987 ], [ 169.672912599999989, -43.95645523 ], [ 169.64520264, -43.96391296 ], [ 169.63023376000001, -43.95682144 ], [ 169.60945129000001, -43.96240234 ], [ 169.60542297, -43.95792389 ], [ 169.59558105, -43.96611786 ], [ 169.60362244, -43.97507858 ], [ 169.59378052, -43.98327637 ], [ 169.609878540000011, -44.00120544 ], [ 169.594207759999989, -44.02209091 ], [ 169.59532166, -44.03292084 ], [ 169.58143616000001, -44.03663635 ], [ 169.57740784, -44.03215027 ], [ 169.53575134, -44.04327774 ], [ 169.53977966, -44.04776764 ], [ 169.52990723, -44.05596542 ], [ 169.51602173, -44.05967331 ], [ 169.51197815, -44.0551796 ], [ 169.49807739, -44.05888367 ], [ 169.494049069999988, -44.05438995 ], [ 169.47317505, -44.05994415 ], [ 169.47721863000001, -44.06444168 ], [ 169.46330261, -44.06814575 ], [ 169.46148682, -44.08535767 ], [ 169.4475708, -44.08906555 ], [ 169.44464111, -44.09542847 ], [ 169.416778560000012, -44.10284424 ], [ 169.420822140000013, -44.10735321 ], [ 169.3999176, -44.11291885 ], [ 169.40396118000001, -44.11743164 ], [ 169.390014650000012, -44.12114334 ], [ 169.38192749000001, -44.11211395 ], [ 169.37495422, -44.1139679 ], [ 169.366851809999986, -44.10493851 ], [ 169.348846439999988, -44.10412598 ], [ 169.35179138, -44.09775925 ], [ 169.339645389999987, -44.08420944 ], [ 169.34257507, -44.07784653 ], [ 169.326400760000013, -44.05978394 ], [ 169.29844666, -44.0671463 ], [ 169.306549069999988, -44.07618713 ], [ 169.29257202, -44.07986832 ], [ 169.28781128, -44.10349655 ], [ 169.2668457, -44.10903168 ], [ 169.26280212, -44.10450363 ], [ 169.24182129, -44.11003113 ], [ 169.21679688, -44.11102676 ], [ 169.187698360000013, -44.10747528 ], [ 169.18363953, -44.10293198 ], [ 169.16964722, -44.10660934 ], [ 169.16152954, -44.09752274 ], [ 169.16447449, -44.09114456 ], [ 169.15229797, -44.07750702 ], [ 169.149353029999986, -44.08388519 ], [ 169.08633423, -44.1003685 ], [ 169.08746338, -44.11131287 ], [ 169.076400760000013, -44.10858917 ], [ 169.041366579999988, -44.11774445 ], [ 169.037307739999989, -44.11317825 ], [ 169.02330017, -44.11684418 ], [ 169.02035522, -44.12324142 ], [ 169.02848816, -44.13237 ], [ 168.98646545, -44.14338303 ], [ 168.98352051, -44.14978409 ], [ 168.999786379999989, -44.16804123 ], [ 168.978759770000011, -44.1735611 ], [ 168.96882629000001, -44.18180847 ], [ 168.97694397, -44.19093323 ], [ 168.969940189999988, -44.19277954 ], [ 168.97805786, -44.20190048 ], [ 168.964050289999989, -44.20558929 ], [ 168.95298767, -44.20286942 ], [ 168.91796875, -44.21209335 ], [ 168.9150238, -44.21850586 ], [ 168.903945920000012, -44.21578598 ], [ 168.88293457, -44.22132492 ], [ 168.881103520000011, -44.23871613 ], [ 168.8600769, -44.24426651 ], [ 168.86524963, -44.25980759 ], [ 168.86340332, -44.27719498 ], [ 168.853439329999986, -44.28546143 ], [ 168.85159302, -44.30285263 ], [ 168.85565186, -44.30741501 ], [ 168.84567261, -44.31568146 ], [ 168.84677124000001, -44.32665634 ], [ 168.83976746, -44.32851028 ], [ 168.847869870000011, -44.33763123 ], [ 168.84196472, -44.35046005 ], [ 168.82794189, -44.35417175 ], [ 168.83198547, -44.35873032 ], [ 168.8109436, -44.36429977 ], [ 168.81500244, -44.36885834 ], [ 168.800979610000013, -44.37257385 ], [ 168.7950592, -44.38540649 ], [ 168.759979249999986, -44.3946991 ], [ 168.75, -44.40297318 ], [ 168.75512695, -44.41851044 ], [ 168.748107909999987, -44.42037201 ], [ 168.71086121, -44.40771103 ], [ 168.698715209999989, -44.39403152 ], [ 168.67063904, -44.401474 ], [ 168.67468262, -44.40603256 ], [ 168.664703370000012, -44.41431427 ], [ 168.64364624000001, -44.41989899 ], [ 168.63769531, -44.43274307 ], [ 168.602600099999989, -44.44205856 ], [ 168.59663391, -44.45490265 ], [ 168.57450867, -44.44951248 ], [ 168.51831055, -44.46443558 ], [ 168.512344359999986, -44.47728348 ], [ 168.491271970000014, -44.48288727 ], [ 168.481262210000011, -44.49117661 ], [ 168.46720886, -44.49491501 ], [ 168.46316528, -44.49036026 ], [ 168.42802429, -44.4997139 ], [ 168.42398071, -44.49516296 ], [ 168.39585876000001, -44.50265503 ], [ 168.39183044, -44.4981041 ], [ 168.3697052, -44.49276352 ], [ 168.34860229, -44.49839783 ], [ 168.34054565, -44.48931503 ], [ 168.349548340000013, -44.47005081 ], [ 168.359573360000013, -44.46174622 ], [ 168.35151672, -44.45266724 ], [ 168.36557007, -44.44890213 ], [ 168.361541749999986, -44.44435883 ], [ 168.371551509999989, -44.43605423 ], [ 168.367523190000014, -44.43151474 ], [ 168.37754822, -44.42321014 ], [ 168.369491579999988, -44.41413116 ], [ 168.36247253, -44.41601944 ], [ 168.354415890000013, -44.4069519 ], [ 168.36444092, -44.39863968 ], [ 168.392501829999986, -44.39108658 ], [ 168.39146423, -44.38012314 ], [ 168.4025116, -44.38277817 ], [ 168.41653442, -44.37900925 ], [ 168.4125061, -44.37446594 ], [ 168.422515870000012, -44.36615753 ], [ 168.41848755, -44.36161423 ], [ 168.4004364, -44.36084747 ], [ 168.37837219, -44.35556412 ], [ 168.38433838, -44.3427124 ], [ 168.36230469, -44.33747101 ], [ 168.3502655, -44.32392502 ], [ 168.36026001, -44.31559372 ], [ 168.35925293, -44.3046608 ], [ 168.351242070000012, -44.29564285 ], [ 168.35423279, -44.2892189 ], [ 168.32824707, -44.27954102 ], [ 168.31427002, -44.28337479 ], [ 168.29930115, -44.27630234 ], [ 168.28736877, -44.26283646 ], [ 168.276412959999988, -44.26027298 ], [ 168.26245117, -44.26412201 ], [ 168.25848389, -44.25964355 ], [ 168.24453735, -44.26349258 ], [ 168.24057007, -44.25902176 ], [ 168.219650269999988, -44.26479721 ], [ 168.21661377, -44.27118683 ], [ 168.153793330000013, -44.28849411 ], [ 168.14987183, -44.2840538 ], [ 168.135925289999989, -44.28790665 ], [ 168.12504578, -44.28541183 ], [ 168.11724854, -44.27658844 ], [ 168.106399540000012, -44.27413177 ], [ 168.09666443, -44.27666855 ], [ 168.077499390000014, -44.26666641 ], [ 168.06416321, -44.26694489 ], [ 168.05082703, -44.25944519 ], [ 168.06694031, -44.24777603 ], [ 168.081115720000014, -44.24416733 ], [ 168.10139465, -44.24416733 ], [ 168.13166809, -44.22527695 ], [ 168.14860535, -44.21222305 ], [ 168.15222168, -44.20277786 ], [ 168.169998170000014, -44.1930542 ], [ 168.18611145, -44.1883316 ], [ 168.21722412, -44.16916656 ], [ 168.22639465, -44.15833282 ], [ 168.24583435, -44.15694427 ], [ 168.264572140000013, -44.13863754 ], [ 168.264724730000012, -44.125 ], [ 168.27194214, -44.11360931 ], [ 168.28527832, -44.1016655 ], [ 168.31138611, -44.09166718 ], [ 168.32417297, -44.08472061 ], [ 168.326660159999989, -44.07694626 ], [ 168.32055664, -44.07138824 ], [ 168.3276825, -44.06121826 ], [ 168.326660159999989, -44.04972076 ], [ 168.35583496000001, -44.03055573 ], [ 168.366394039999989, -44.03111267 ], [ 168.36833191, -44.00860977 ], [ 168.389175419999987, -44.00239944 ], [ 168.41833496000001, -44.00333405 ], [ 168.44139099, -44.00860977 ], [ 168.47444153, -44.00361252 ], [ 168.47694397, -44.00583267 ], [ 168.518615720000014, -44.0 ], [ 168.52999878, -43.99027634 ], [ 168.547225950000012, -43.99305725 ], [ 168.56916809, -43.97222137 ], [ 168.58444214, -43.9683342 ], [ 168.59611511, -43.97166824 ], [ 168.58944702, -43.96416855 ], [ 168.605270389999987, -43.96500015 ], [ 168.61610413, -43.95750046 ], [ 168.62583923, -43.95722198 ], [ 168.61444092, -43.97305679 ], [ 168.62971497, -43.98888779 ], [ 168.6444397, -43.9944458 ], [ 168.6680603, -43.99611282 ], [ 168.66833496000001, -44.00361252 ], [ 168.68249512, -43.99611282 ], [ 168.71110535, -43.99333191 ], [ 168.78427124000001, -43.97777176 ], [ 168.795959470000014, -43.98900604 ], [ 168.7940979, -43.97468567 ], [ 168.827774049999988, -43.95972061 ], [ 168.84889221, -43.94527817 ], [ 168.88583374000001, -43.90805435 ], [ 168.887496950000013, -43.91055679 ], [ 168.903945920000012, -43.90280151 ], [ 168.91694641, -43.89972305 ], [ 168.91389465, -43.89500046 ], [ 168.8999939, -43.9038887 ], [ 168.888610840000013, -43.9058342 ], [ 168.93083191, -43.88694382 ], [ 168.957229610000013, -43.88138962 ], [ 168.978881840000014, -43.87277603 ], [ 169.021392819999988, -43.84638977 ], [ 169.02999878, -43.8358345 ], [ 169.0375061, -43.83444595 ], [ 169.09138489, -43.80389023 ], [ 169.12306213, -43.7788887 ], [ 169.16244507, -43.74389648 ], [ 169.19512939, -43.73051453 ], [ 169.20832825, -43.72000122 ], [ 169.21972656, -43.71722412 ], [ 169.25222778, -43.69889069 ], [ 169.261383059999986, -43.69889069 ], [ 169.267501829999986, -43.6930542 ], [ 169.273773190000014, -43.69575882 ], [ 169.29194641, -43.68861008 ], [ 169.30778503, -43.67805481 ], [ 169.34249878, -43.67139053 ], [ 169.35678101, -43.6634407 ], [ 169.36805725, -43.64389038 ], [ 169.39582825, -43.63388824 ], [ 169.40611267, -43.63409424 ], [ 169.42721558, -43.6230545 ], [ 169.4347229, -43.63388824 ], [ 169.4553833, -43.62359619 ], [ 169.48739624000001, -43.62126541 ], [ 169.49473572, -43.6269455 ], [ 169.51196289, -43.62246704 ], [ 169.53459167, -43.60815048 ], [ 169.546386719999987, -43.59833145 ], [ 169.55343628, -43.58570862 ], [ 169.559082030000013, -43.58658218 ], [ 169.56309509, -43.6000061 ], [ 169.57032776, -43.60261917 ], [ 169.58770752, -43.6012001 ], [ 169.60444641, -43.5941658 ], [ 169.62025452, -43.58320618 ], [ 169.64805603, -43.55333328 ], [ 169.672225950000012, -43.55583191 ], [ 169.6875, -43.54833221 ], [ 169.70443726, -43.53055573 ], [ 169.71722412, -43.51416779 ], [ 169.72639465, -43.49499893 ], [ 169.74638367, -43.47972107 ], [ 169.774200439999987, -43.44545364 ], [ 169.782974239999987, -43.44062424 ], [ 169.793289179999988, -43.42083359 ], [ 169.80589294, -43.4206543 ], [ 169.82305908, -43.41055679 ], [ 169.84222412, -43.39500046 ], [ 169.87373352, -43.3962059 ], [ 169.891662599999989, -43.39083481 ], [ 169.91555786, -43.39027786 ], [ 169.93861389, -43.38166809 ], [ 169.980270389999987, -43.35833359 ], [ 170.00778198, -43.33283615 ], [ 170.01306152, -43.33156204 ], [ 170.03286743000001, -43.3062439 ], [ 170.043319700000012, -43.2976265 ], [ 170.04956055, -43.28371811 ], [ 170.06721497, -43.28198242 ], [ 170.082519530000013, -43.27426529 ], [ 170.11445618, -43.25098038 ], [ 170.130615229999989, -43.23275757 ], [ 170.15065002, -43.2248764 ], [ 170.16952515, -43.21486282 ], [ 170.18649292, -43.19966507 ], [ 170.21150208, -43.1709404 ], [ 170.227615359999987, -43.14463425 ], [ 170.237777709999989, -43.14222336 ], [ 170.2444458, -43.13138962 ], [ 170.261383059999986, -43.11351776 ], [ 170.2598114, -43.1078949 ], [ 170.28599548, -43.10840988 ], [ 170.30648804, -43.10538101 ], [ 170.34664917, -43.09473038 ], [ 170.34999084, -43.09679413 ], [ 170.32414246, -43.1029129 ], [ 170.331390379999988, -43.11020279 ], [ 170.3467865, -43.10495377 ], [ 170.38713074, -43.10905075 ], [ 170.385253909999989, -43.08855438 ], [ 170.36024475, -43.0888443 ], [ 170.38806152, -43.06555557 ], [ 170.4058075, -43.04392624 ], [ 170.41929626000001, -43.03673172 ], [ 170.457382200000012, -43.02295303 ], [ 170.483612060000013, -43.02028275 ], [ 170.49160767, -43.01508713 ], [ 170.51646423, -43.0186615 ], [ 170.54685974, -43.00930023 ], [ 170.56838989, -43.0055809 ], [ 170.63027954, -42.97694397 ], [ 170.65028381, -42.96138763 ], [ 170.65916443, -42.96277618 ], [ 170.668884279999986, -42.95249939 ], [ 170.68833923, -42.94250107 ], [ 170.72389221, -42.92833328 ], [ 170.75500488, -42.90499878 ], [ 170.78222656, -42.89250183 ], [ 170.81639099, -42.86805725 ], [ 170.84165955, -42.84305573 ], [ 170.856109620000012, -42.83472061 ], [ 170.87832642, -42.81111145 ], [ 170.897506709999988, -42.77944565 ], [ 170.9375, -42.73611069 ], [ 170.94528198, -42.72499847 ], [ 170.97332764, -42.73083496 ], [ 170.99121094, -42.73952484 ], [ 171.004364009999989, -42.75379944 ], [ 170.99328613, -42.73748398 ], [ 170.98083496000001, -42.72555542 ], [ 170.96665955, -42.72444534 ], [ 170.96110535, -42.71666718 ], [ 170.9916687, -42.6922226 ], [ 170.997833250000014, -42.68301773 ], [ 171.02749634, -42.65899658 ], [ 171.04458618000001, -42.65387726 ], [ 171.06991577, -42.6303978 ], [ 171.086135860000013, -42.61273956 ], [ 171.099807739999989, -42.59268188 ], [ 171.108886719999987, -42.58333206 ], [ 171.124069209999988, -42.56070328 ], [ 171.137496950000013, -42.54972076 ], [ 171.15802002, -42.52155685 ], [ 171.181442260000011, -42.47700119 ], [ 171.18998718, -42.45320129 ], [ 171.19000244, -42.43916702 ], [ 171.19673157, -42.44099426 ], [ 171.20800781, -42.41976547 ], [ 171.214385990000011, -42.39811707 ], [ 171.21617126000001, -42.38152695 ], [ 171.23377991000001, -42.37909317 ], [ 171.24249268, -42.37138748 ], [ 171.25125122, -42.35004425 ], [ 171.254379269999987, -42.34957123 ], [ 171.26603699, -42.32386017 ], [ 171.2819519, -42.3097229 ], [ 171.29272461, -42.2779808 ], [ 171.30271912, -42.27172852 ], [ 171.30610657, -42.26277542 ], [ 171.31195068, -42.22750092 ], [ 171.313110349999988, -42.20250702 ], [ 171.3182373, -42.1748085 ], [ 171.319381709999988, -42.15641403 ], [ 171.327621459999989, -42.13454056 ], [ 171.328765870000012, -42.11795425 ], [ 171.33244324, -42.11188889 ], [ 171.33990479, -42.08286285 ], [ 171.35015869, -42.08080673 ], [ 171.359573360000013, -42.07126999 ], [ 171.36975098, -42.03416443 ], [ 171.38586426, -42.02852249 ], [ 171.393341060000012, -42.01745224 ], [ 171.39666748, -41.99555588 ], [ 171.40499878, -41.98611069 ], [ 171.40083313, -41.98249817 ], [ 171.40734863, -41.96690369 ], [ 171.40916443, -41.95055389 ], [ 171.41416931, -41.93916702 ], [ 171.4125061, -41.9327774 ], [ 171.417770389999987, -41.91611099 ], [ 171.4375, -41.89500046 ], [ 171.443603520000011, -41.89611053 ], [ 171.456115720000014, -41.88583374 ], [ 171.46028137, -41.85722351 ], [ 171.45944214, -41.81916809 ], [ 171.46388245, -41.82305527 ], [ 171.461395259999989, -41.83472061 ], [ 171.46417236, -41.84194565 ], [ 171.46583557, -41.82694626 ], [ 171.47138977, -41.81999969 ], [ 171.465271, -41.81833267 ], [ 171.45832825, -41.80611038 ], [ 171.4569397, -41.77527618 ], [ 171.46055603, -41.77027893 ], [ 171.455001829999986, -41.76361084 ], [ 171.46333313, -41.75527954 ], [ 171.46055603, -41.75111008 ], [ 171.46833801, -41.7444458 ], [ 171.47305298, -41.74888992 ], [ 171.486389159999987, -41.74499893 ], [ 171.50305176, -41.7452774 ], [ 171.52749634, -41.75249863 ], [ 171.551116940000014, -41.74888992 ], [ 171.57055664, -41.74000168 ], [ 171.58972168, -41.72694397 ], [ 171.604995730000013, -41.73416519 ], [ 171.62944031, -41.73860931 ], [ 171.65472412, -41.73972321 ], [ 171.62167358, -41.74694443 ], [ 171.65194702, -41.74333191 ], [ 171.675003049999987, -41.73888779 ], [ 171.676116940000014, -41.73611069 ], [ 171.71333313, -41.72027588 ], [ 171.740005489999987, -41.69861221 ], [ 171.78555298, -41.66944504 ], [ 171.8097229, -41.65888977 ], [ 171.82333374000001, -41.65083313 ], [ 171.85166931, -41.63000107 ], [ 171.88471985000001, -41.59638977 ], [ 171.897506709999988, -41.57749939 ], [ 171.91221619, -41.56277847 ], [ 171.94639587, -41.50444412 ], [ 171.957778929999989, -41.49305725 ], [ 171.98666382, -41.44638824 ], [ 172.011108400000012, -41.42972183 ], [ 172.02528381, -41.41373444 ], [ 172.03111267, -41.41277695 ], [ 172.04164124, -41.39833832 ], [ 172.05444336, -41.39027786 ], [ 172.05860901, -41.39194489 ], [ 172.06916809, -41.37472153 ], [ 172.08416748, -41.32527924 ], [ 172.09222412, -41.27416611 ], [ 172.097152709999989, -41.27803421 ], [ 172.09460449, -41.28782654 ], [ 172.10144043, -41.28325653 ], [ 172.1068573, -41.2705574 ], [ 172.10287476, -41.25952148 ], [ 172.09364319, -41.26444626 ], [ 172.097457889999987, -41.25643539 ], [ 172.10708618000001, -41.25596237 ], [ 172.09602356, -41.24634933 ], [ 172.10028076, -41.21444321 ], [ 172.1078186, -41.20490265 ], [ 172.102066040000011, -41.20373154 ], [ 172.10348511, -41.15718842 ], [ 172.099960329999988, -41.09702682 ], [ 172.10452271, -41.09416962 ], [ 172.10166931, -41.07110977 ], [ 172.105270389999987, -41.06555557 ], [ 172.1055603, -41.04055405 ], [ 172.110839840000011, -41.0363884 ], [ 172.107772829999988, -41.01861191 ], [ 172.110000609999986, -41.0027771 ], [ 172.10221863000001, -40.98527908 ], [ 172.10417175, -40.97527695 ], [ 172.1000061, -40.96138763 ], [ 172.09518433, -40.91485596 ], [ 172.10139465, -40.90416718 ], [ 172.09805298, -40.8983345 ], [ 172.111114500000014, -40.8805542 ], [ 172.12861633, -40.87388992 ], [ 172.13471985000001, -40.85972214 ], [ 172.13082886, -40.84916687 ], [ 172.140838620000011, -40.84749985 ], [ 172.15583801, -40.83250046 ], [ 172.15750122, -40.82611084 ], [ 172.17443848, -40.81416702 ], [ 172.17721558, -40.80916595 ], [ 172.19833374000001, -40.79360962 ], [ 172.207229610000013, -40.79055405 ], [ 172.21711731, -40.77483368 ], [ 172.241683959999989, -40.80555725 ], [ 172.25198364, -40.80802155 ], [ 172.25198364, -40.80802155 ] ] ] ] } } +] +} diff --git a/examples/data/origdata/rivers.geojson b/examples/data/origdata/rivers.geojson new file mode 100644 index 0000000..3ec3df4 --- /dev/null +++ b/examples/data/origdata/rivers.geojson @@ -0,0 +1,116 @@ +{ +"type": "FeatureCollection", +"name": "rivers_discharge", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } +] +} diff --git a/examples/data/origdata/rivers_yukon.geojson b/examples/data/origdata/rivers_yukon.geojson new file mode 100644 index 0000000..50e0d04 --- /dev/null +++ b/examples/data/origdata/rivers_yukon.geojson @@ -0,0 +1,17 @@ +{ +"type": "FeatureCollection", +"name": "rivers_yukon", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "scalerank": 6, "name": "Tanana", "rivernum": 238, "length": 886499.813 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -142.021850585937329, 62.026556707806627 ], [ -142.038256835937119, 62.045233465619049 ], [ -142.056640625000313, 62.061346746869091 ], [ -142.078735351562557, 62.07147858280662 ], [ -142.087329101562148, 62.078558660931598 ], [ -142.090820312500171, 62.091742254681655 ], [ -142.087768554687642, 62.184198309369123 ], [ -142.084838867187756, 62.201117254681591 ], [ -142.076464843749818, 62.215594793744145 ], [ -142.060302734375085, 62.227655340619037 ], [ -141.951049804687159, 62.26403229374408 ], [ -141.863525390625, 62.279242254681492 ], [ -141.834472656249943, 62.289740301556641 ], [ -141.803027343750017, 62.311346746869198 ], [ -141.772583007812415, 62.319891668744113 ], [ -141.764697265625017, 62.325995184369269 ], [ -141.762695312499744, 62.334344793744066 ], [ -141.765795898437432, 62.355658270306492 ], [ -141.763305664062273, 62.366888739056634 ], [ -141.756591796875171, 62.375433660931549 ], [ -141.748339843750159, 62.380682684369127 ], [ -141.73930664062496, 62.384955145306641 ], [ -141.730102539062671, 62.390692449994155 ], [ -141.655639648437301, 62.458685614056442 ], [ -141.624389648437443, 62.477606512494035 ], [ -141.460986328125273, 62.534491278119141 ], [ -141.440600585937403, 62.544134832806733 ], [ -141.424853515625074, 62.558124090618946 ], [ -141.411547851562318, 62.595892645306449 ], [ -141.379882812499943, 62.623602606244305 ], [ -141.371386718750244, 62.643573309369117 ], [ -141.381762695312716, 62.686297918744145 ], [ -141.412646484375188, 62.709173895306606 ], [ -141.450439453124886, 62.726825262494039 ], [ -141.481249999999704, 62.753363348431513 ], [ -141.476562499999943, 62.77472565311907 ], [ -141.489868164062614, 62.799676824994052 ], [ -141.511645507812489, 62.820428778119222 ], [ -141.532153320312773, 62.82916901249407 ], [ -141.649658203125028, 62.846063543744101 ], [ -141.673022460937261, 62.855780340619084 ], [ -141.668505859375131, 62.867987371869134 ], [ -141.600756835937545, 62.907660223431677 ], [ -141.604785156250216, 62.921502996869215 ], [ -141.632080078125085, 62.934930731244151 ], [ -141.742553710937415, 62.965033270306691 ], [ -141.770385742187557, 62.977899481244059 ], [ -141.790454101562602, 63.010077215619042 ], [ -141.809863281249875, 63.025213934369205 ], [ -141.851196289062443, 63.047552801556613 ], [ -141.951586914062545, 63.063983465618968 ], [ -141.977832031250045, 63.078631903119216 ], [ -141.997436523437671, 63.093207098431634 ], [ -142.070312499999943, 63.12335846561917 ], [ -142.112915039062528, 63.152704168744137 ], [ -142.136767578125045, 63.165716864056556 ], [ -142.274707031250131, 63.187567449994084 ], [ -142.309863281249903, 63.184759832806677 ], [ -142.321826171874903, 63.179632879681662 ], [ -142.331591796874932, 63.172967840619144 ], [ -142.34233398437496, 63.167303778119084 ], [ -142.357666015624915, 63.164911199994137 ], [ -142.374194335937517, 63.168036199994106 ], [ -142.404052734375, 63.181708074994098 ], [ -142.431030273437244, 63.187445379681726 ], [ -142.441210937500045, 63.193915106244098 ], [ -142.457275390624915, 63.209002996869067 ], [ -142.469897460937318, 63.216571356244188 ], [ -142.577441406249989, 63.23798248905662 ], [ -142.605468749999858, 63.247919012494201 ], [ -142.628588867187375, 63.263934637494089 ], [ -142.648486328125074, 63.282416082806591 ], [ -142.656250000000256, 63.292914129681563 ], [ -142.659301757812671, 63.304877020306556 ], [ -142.663940429687528, 63.31293366093162 ], [ -142.686206054687347, 63.323065496869148 ], [ -142.694091796875085, 63.328802801556634 ], [ -142.697265624999943, 63.337909246869124 ], [ -142.697387695312642, 63.355414129681535 ], [ -142.700927734374972, 63.362909246869151 ], [ -142.712329101562375, 63.370917059369198 ], [ -142.726562499999943, 63.374701239056684 ], [ -142.740771484375188, 63.373480535931513 ], [ -142.766406249999875, 63.357733465619177 ], [ -142.783984374999875, 63.355243231244131 ], [ -142.838671875000102, 63.358343817181499 ], [ -142.85009765625, 63.362616278119077 ], [ -142.872192382812472, 63.375921942181684 ], [ -142.894213867187489, 63.383856512494106 ], [ -142.960375976562574, 63.397650457806627 ], [ -142.960375976562574, 63.403876043744106 ], [ -142.943481445312472, 63.418646551556627 ], [ -142.964843749999886, 63.429950262494167 ], [ -143.001220703124943, 63.436835028119077 ], [ -143.02922363281229, 63.438666082806712 ], [ -143.05986328124996, 63.433124090619152 ], [ -143.117187499999858, 63.415228582806691 ], [ -143.14934082031246, 63.411322332806613 ], [ -143.291308593750131, 63.414252020306577 ], [ -143.310424804687216, 63.411322332806613 ], [ -143.367114257812489, 63.385199285931684 ], [ -143.396118164062329, 63.38007233280667 ], [ -143.451538085937528, 63.406073309369127 ], [ -143.564257812500102, 63.411322332806556 ], [ -143.599169921874932, 63.417669989056684 ], [ -143.632568359375028, 63.418158270306598 ], [ -143.682177734375102, 63.405829168744098 ], [ -143.759521484374972, 63.397650457806627 ], [ -143.772631835937574, 63.401483465619073 ], [ -143.780078125000074, 63.41051666874408 ], [ -143.790209960937517, 63.431219793744091 ], [ -143.829028320312545, 63.46039459843157 ], [ -143.838745117187699, 63.475775457806527 ], [ -143.827758789062415, 63.496649481244205 ], [ -143.815795898437557, 63.506170965619148 ], [ -143.788574218750085, 63.523016668744106 ], [ -143.775927734375017, 63.534247137494191 ], [ -143.791503906250114, 63.567254949994059 ], [ -143.797656250000188, 63.575213934369089 ], [ -143.809082031249915, 63.58107330936916 ], [ -143.836425781250085, 63.58644440311906 ], [ -143.848559570312375, 63.59254791874416 ], [ -143.85625, 63.602167059369137 ], [ -143.857299804687642, 63.610126043744025 ], [ -143.857226562500045, 63.617865301556577 ], [ -143.861938476562557, 63.626727606244067 ], [ -143.871826171875171, 63.634711004681563 ], [ -143.906909179687375, 63.650897528119145 ], [ -143.935058593750171, 63.670770574994094 ], [ -143.995166015624818, 63.696893621869116 ], [ -144.040820312500102, 63.702337957806584 ], [ -144.140307617187545, 63.726019598431606 ], [ -144.181689453125216, 63.729925848431535 ], [ -144.541381835937642, 63.725116278119089 ], [ -144.599121093750028, 63.739569403119098 ], [ -144.74418945312496, 63.804754949994212 ], [ -144.758471679687432, 63.813495184369138 ], [ -144.773974609375017, 63.825384832806627 ], [ -144.777954101562528, 63.838568426556591 ], [ -144.762255859375131, 63.873480535931556 ], [ -144.763476562500045, 63.891131903119017 ], [ -144.780566406250045, 63.901800848431591 ], [ -144.807373046874801, 63.902899481244205 ], [ -144.859057617187375, 63.897333074994208 ], [ -144.914306640625057, 63.945746160931506 ], [ -144.899536132812642, 63.961615301556549 ], [ -144.848803710937659, 64.004095770306662 ], [ -144.856079101562329, 64.016864324994117 ], [ -144.962084960937489, 64.041937567181705 ], [ -145.010498046874943, 64.062445379681648 ], [ -145.062426757812716, 64.073065496869035 ], [ -145.090502929687545, 64.084588934369108 ], [ -145.110400390624903, 64.084344793744222 ], [ -145.1298828125, 64.079901434369134 ], [ -145.143310546874858, 64.072333074994205 ], [ -145.158691406249886, 64.066278387494094 ], [ -145.361987304687318, 64.082464910931705 ], [ -145.429809570312585, 64.099798895306577 ], [ -145.607055664062358, 64.171087957806733 ], [ -145.671508789062329, 64.186053778119174 ], [ -145.736694335937528, 64.191522528119108 ], [ -145.768481445312233, 64.186224676556691 ], [ -145.825976562500131, 64.163202215619094 ], [ -145.856811523437727, 64.158026434369091 ], [ -145.888427734374716, 64.161688543744148 ], [ -146.0601806640625, 64.215692449994179 ], [ -146.111132812499903, 64.24640534061912 ], [ -146.144287109374943, 64.248163153119208 ], [ -146.209643554687773, 64.239935614056549 ], [ -146.241748046874733, 64.245135809369216 ], [ -146.302490234374829, 64.268670965619194 ], [ -146.449023437500102, 64.284686590619145 ], [ -146.490234374999943, 64.281512762494032 ], [ -146.585375976562318, 64.257342840619131 ], [ -146.655395507812415, 64.253485418744148 ], [ -146.672241210937329, 64.256219793744222 ], [ -146.685424804687557, 64.264105535931449 ], [ -146.714648437499619, 64.294940496869174 ], [ -146.723632812499858, 64.301385809369251 ], [ -146.755981445312415, 64.310809637494103 ], [ -146.827197265625017, 64.315790106244123 ], [ -146.860473632812671, 64.325873114056577 ], [ -147.020874023437358, 64.425653387494165 ], [ -147.031494140625199, 64.442328192181492 ], [ -147.025317382812347, 64.458514715619103 ], [ -147.000292968749989, 64.487005926556691 ], [ -146.997314453124858, 64.507440496869123 ], [ -147.021728515624943, 64.546087957806648 ], [ -147.068481445312329, 64.571478582806634 ], [ -147.16862792968783, 64.61046784061908 ], [ -147.188281249999733, 64.624701239056691 ], [ -147.233813476562574, 64.675360418744049 ], [ -147.255249023437187, 64.689227606244231 ], [ -147.522338867187528, 64.775091864056634 ], [ -147.846435546874858, 64.805731512494248 ], [ -147.935791015624716, 64.802313543744148 ], [ -147.950561523437472, 64.799090887494046 ], [ -147.990405273437375, 64.781195379681648 ], [ -148.01806640625, 64.757342840619131 ], [ -148.028564453125199, 64.753851629681577 ], [ -148.096484374999818, 64.745624090619259 ], [ -148.162963867187301, 64.725897528119177 ], [ -148.237915039062671, 64.690497137494077 ], [ -148.329956054687585, 64.671942449994148 ], [ -148.422729492187443, 64.671942449994091 ], [ -148.621459960937699, 64.643915106244094 ], [ -148.645922851562574, 64.631781317181648 ], [ -148.655810546874875, 64.606756903119177 ], [ -148.700073242187699, 64.585223699994046 ], [ -149.104541015624989, 64.575751043744063 ], [ -149.115478515625, 64.577997137494165 ], [ -149.130175781249932, 64.583856512494151 ], [ -149.143066406250085, 64.591669012494179 ], [ -149.148608398437318, 64.59992096561912 ], [ -149.144653320312585, 64.610663153118992 ], [ -149.135302734375045, 64.614935614056549 ], [ -149.124194335937261, 64.617792059369165 ], [ -149.115112304687727, 64.624139715619094 ], [ -149.108935546875159, 64.636297918744191 ], [ -149.111328125000114, 64.641913153119091 ], [ -149.117187499999829, 64.647162176556719 ], [ -149.121337890625057, 64.658270574994077 ], [ -149.120043945312659, 64.670721746869063 ], [ -149.116748046875017, 64.680731512494191 ], [ -149.116748046875017, 64.690741278119049 ], [ -149.125048828125102, 64.702948309369091 ], [ -149.131762695312432, 64.720233465619174 ], [ -149.1170654296875, 64.757391668744091 ], [ -149.121337890624744, 64.781195379681648 ], [ -149.115112304687386, 64.788641668744276 ], [ -149.130126953124801, 64.792303778119177 ], [ -149.146289062499875, 64.794256903119049 ], [ -149.160522460937557, 64.798529364056535 ], [ -149.169726562500045, 64.809149481244191 ], [ -149.153979492187403, 64.811297918744188 ], [ -149.146289062500216, 64.817010809369037 ], [ -149.135620117187557, 64.835809637494009 ], [ -149.117675781250114, 64.860296942181606 ], [ -149.115112304687386, 64.867132879681648 ], [ -149.128173828125, 64.878045965619108 ], [ -149.190234374999875, 64.905707098431563 ], [ -149.210693359374943, 64.912176824994134 ], [ -149.248583984374733, 64.914007879681662 ], [ -149.399414062500227, 64.901678778119077 ], [ -149.491210937499858, 64.877386785931591 ], [ -149.509643554687585, 64.875995184369046 ], [ -149.522705078124858, 64.879169012494117 ], [ -149.575488281250045, 64.904413153119009 ], [ -149.595019531249989, 64.908148504681677 ], [ -149.611694335937415, 64.901629949994174 ], [ -149.645507812499858, 64.864691473431535 ], [ -149.666137695312642, 64.849432684369077 ], [ -149.690478515625188, 64.843207098431563 ], [ -149.703857421875, 64.84572174686916 ], [ -149.734741210937386, 64.855829168744137 ], [ -149.752563476562187, 64.857538153119222 ], [ -149.785083007812204, 64.854437567181677 ], [ -149.800585937499875, 64.849188543744191 ], [ -149.816406250000057, 64.823358465619108 ], [ -149.838012695312756, 64.808172918744077 ], [ -149.882250976562545, 64.788641668744233 ], [ -149.920214843749875, 64.783148504681762 ], [ -150.038256835937347, 64.796454168744162 ], [ -150.073657226562602, 64.806268621869066 ], [ -150.098999023437443, 64.819281317181634 ], [ -150.139526367187472, 64.820086981244145 ], [ -150.156005859375057, 64.822772528119046 ], [ -150.166674804687403, 64.829413153119049 ], [ -150.181323242187517, 64.844183660931563 ], [ -150.190722656250159, 64.850116278118918 ], [ -150.208374023437841, 64.856146551556535 ], [ -150.295776367187273, 64.86769440311916 ], [ -150.321166992187557, 64.878851629681677 ], [ -150.342895507812585, 64.896112371869108 ], [ -150.375244140624858, 64.936102606244134 ], [ -150.392382812500131, 64.95160553593162 ], [ -150.414672851562642, 64.962591864056535 ], [ -150.565478515624818, 64.979315496869162 ], [ -150.77324218749979, 64.972967840619233 ], [ -150.789599609375045, 64.975116278119131 ], [ -150.824023437500074, 64.984491278119194 ], [ -150.841845703124847, 64.986639715619162 ], [ -150.998779296874744, 64.971014715619205 ], [ -151.188720703125284, 64.907538153119035 ], [ -151.239746093749886, 64.904730535931662 ], [ -151.25444335937479, 64.898627020306677 ], [ -151.282153320312517, 64.881048895306719 ], [ -151.297485351562443, 64.877386785931563 ], [ -151.3642578125, 64.875921942181535 ], [ -151.393603515624704, 64.881659246869191 ], [ -151.424072265624659, 64.898504949994177 ], [ -151.446948242187375, 64.918231512494216 ], [ -151.458178710937517, 64.925165106244208 ], [ -151.487597656249761, 64.931952215619148 ], [ -151.500976562499858, 64.937567449994162 ], [ -151.506591796875227, 64.949408270306535 ], [ -151.505249023437415, 64.954291082806634 ], [ -151.503833007812347, 64.964960028119151 ], [ -151.506274414062744, 64.97553131718152 ], [ -151.516528320312347, 64.980414129681691 ], [ -151.550659179687585, 64.984198309369091 ], [ -151.567431640624932, 64.990423895306662 ], [ -151.574877929687148, 65.000921942181691 ], [ -151.561157226562472, 65.016424871869063 ], [ -151.53740234374979, 65.032171942181748 ], [ -151.531542968749761, 65.044378973431719 ], [ -151.571459960937204, 65.04933502811916 ], [ -151.596801757812386, 65.039740301556733 ], [ -151.613891601562557, 65.019842840619162 ], [ -151.632983398437347, 65.002508856244148 ], [ -151.664306640624886, 65.000921942181634 ], [ -151.690478515625216, 65.014227606244091 ], [ -151.690966796874847, 65.030780340619174 ], [ -151.679687499999915, 65.049432684369251 ], [ -151.670458984375017, 65.069159246869177 ], [ -151.678588867187671, 65.098944403119063 ], [ -151.70830078125033, 65.113544012493989 ], [ -151.746704101562159, 65.115423895306634 ], [ -151.780932617187318, 65.107001043744191 ], [ -151.808105468749972, 65.104681707806662 ], [ -151.835083007812784, 65.116327215619066 ], [ -151.883422851562642, 65.148309637494066 ], [ -151.920092773437233, 65.159784246869179 ], [ -152.047851562500227, 65.16535065311912 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 6, "name": "Koyukuk", "rivernum": 240, "length": 861921.058 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -150.821411132812841, 68.042914129681506 ], [ -150.8187255859375, 68.030633856244066 ], [ -150.822021484375142, 68.026678778119134 ], [ -150.828491210937443, 68.024115301556705 ], [ -150.835009765624903, 68.016180731244162 ], [ -150.836303710937614, 68.00849030155652 ], [ -150.835083007812102, 67.992499090619205 ], [ -150.838134765624773, 67.985174871869106 ], [ -150.858154296875, 67.96198151249402 ], [ -150.864062499999818, 67.948553778119205 ], [ -150.863330078124903, 67.932684637494191 ], [ -150.859130859374886, 67.927020574994103 ], [ -150.8531494140625, 67.923041082806577 ], [ -150.848510742187329, 67.918085028119251 ], [ -150.848315429687489, 67.909125067181577 ], [ -150.857592773437517, 67.898504949994106 ], [ -150.873168945312699, 67.890326239056606 ], [ -150.887329101562244, 67.877752996869191 ], [ -150.892456054687358, 67.853876043744137 ], [ -150.888061523437472, 67.82807037968162 ], [ -150.8973388671875, 67.808954168744222 ], [ -150.915161132812585, 67.794208074994202 ], [ -150.950317382812216, 67.771258856244145 ], [ -150.987060546875313, 67.736029364056506 ], [ -151.010498046874829, 67.721063543744151 ], [ -151.020507812499773, 67.711615301556677 ], [ -151.025439453125045, 67.698602606244151 ], [ -151.023193359374829, 67.691717840619177 ], [ -151.017138671874932, 67.684271551556662 ], [ -151.0103759765625, 67.679315496869165 ], [ -151.005737304687671, 67.680438543744046 ], [ -151.0230712890625, 67.65900299686912 ], [ -151.026171874999989, 67.653143621869106 ], [ -151.024658203125, 67.645575262494134 ], [ -151.020019531250171, 67.639520574994137 ], [ -151.015136718749687, 67.635077215619219 ], [ -151.013183593749886, 67.632635809369248 ], [ -151.021118164062386, 67.621771551556606 ], [ -151.0325927734375, 67.611273504681577 ], [ -151.039428710937443, 67.600897528119162 ], [ -151.033618164062517, 67.590399481244106 ], [ -151.037158203125131, 67.587420965618946 ], [ -151.043627929687773, 67.580340887493975 ], [ -151.047290039062403, 67.577337957806606 ], [ -151.038623046874648, 67.557806707806662 ], [ -151.024414062500028, 67.54689362186906 ], [ -150.985229492187216, 67.529608465619262 ], [ -150.936889648437301, 67.496771551556705 ], [ -150.917602539062671, 67.488641668743966 ], [ -150.844360351562443, 67.471210028119117 ], [ -150.821411132812216, 67.461297918744208 ], [ -150.807177734374847, 67.448065496869233 ], [ -150.784106445312602, 67.414911199994165 ], [ -150.767382812499761, 67.406073309369191 ], [ -150.769042968749773, 67.387225653119202 ], [ -150.757739257812432, 67.375677801556634 ], [ -150.741015625000188, 67.365741278118975 ], [ -150.726562499999943, 67.351825262494117 ], [ -150.723754882812557, 67.344916082806634 ], [ -150.723388671874943, 67.340106512494245 ], [ -150.721972656249875, 67.335638739056591 ], [ -150.716186523437671, 67.329950262494009 ], [ -150.706958007812489, 67.325873114056705 ], [ -150.699218749999829, 67.324823309369179 ], [ -150.693652343749875, 67.321844793744162 ], [ -150.690917968750028, 67.311639715619094 ], [ -150.692553710937659, 67.303168035931606 ], [ -150.697387695312671, 67.295038153119108 ], [ -150.709521484375188, 67.281439520306634 ], [ -150.754443359375102, 67.246161199994134 ], [ -150.767749023437688, 67.232684637494074 ], [ -150.777587890624858, 67.224872137494145 ], [ -150.801269531249687, 67.214374090619202 ], [ -150.810180664062727, 67.206561590618961 ], [ -150.813891601562489, 67.19537994999402 ], [ -150.809375, 67.174994207806691 ], [ -150.810424804687386, 67.163519598431662 ], [ -150.822802734374875, 67.149920965619145 ], [ -150.842285156249687, 67.145941473431648 ], [ -150.881591796875171, 67.145868231244108 ], [ -150.906176757812688, 67.136419989056535 ], [ -150.972827148437631, 67.089374090619074 ], [ -150.999072265625159, 67.080755926556591 ], [ -151.081469726562148, 67.070257879681733 ], [ -151.095629882812602, 67.065863348431577 ], [ -151.129882812499858, 67.049823309369245 ], [ -151.147753906250102, 67.044256903119077 ], [ -151.162524414062517, 67.042425848431549 ], [ -151.197802734375102, 67.042987371869145 ], [ -151.248413085937301, 67.039911199994194 ], [ -151.318237304687557, 67.020575262494134 ], [ -151.426757812500057, 67.003485418744077 ], [ -151.451342773437574, 66.99457428593162 ], [ -151.437744140624886, 66.981512762494191 ], [ -151.454711914062415, 66.972528387494222 ], [ -151.494506835937528, 66.961249090619148 ], [ -151.530200195312545, 66.945086981244089 ], [ -151.542968750000057, 66.94110748905662 ], [ -151.581713867187432, 66.939960028119202 ], [ -151.613769531249886, 66.933124090619074 ], [ -151.659960937499818, 66.916571356244191 ], [ -151.691088867187489, 66.896356512494179 ], [ -151.677905273437545, 66.878485418744063 ], [ -151.708251953124886, 66.864203192181662 ], [ -151.715258789062602, 66.848651434369089 ], [ -151.707080078124818, 66.829169012494191 ], [ -151.684497070312545, 66.790472723431506 ], [ -151.682739257812273, 66.785663153119259 ], [ -151.707153320312671, 66.740668035931463 ], [ -151.711425781249886, 66.727655340619251 ], [ -151.713427734374818, 66.713251043744151 ], [ -151.713671875000102, 66.702215887494077 ], [ -151.716357421874818, 66.691961981244162 ], [ -151.725708007812386, 66.679877020306634 ], [ -151.736572265624886, 66.67206452030662 ], [ -151.793139648437347, 66.644476629681733 ], [ -151.853027343749886, 66.627386785931634 ], [ -151.869433593749932, 66.626776434369191 ], [ -151.885742187500085, 66.630389715619046 ], [ -151.903247070312659, 66.638251043744134 ], [ -151.912280273437403, 66.616522528119106 ], [ -151.918872070312659, 66.604999090619032 ], [ -151.924975585937716, 66.597967840619063 ], [ -151.938720703125114, 66.592718817181577 ], [ -151.959155273437744, 66.589544989056591 ], [ -151.977661132812642, 66.591327215619131 ], [ -151.985766601562602, 66.601385809369063 ], [ -151.995654296874875, 66.606512762494077 ], [ -152.070117187499989, 66.594745184369174 ], [ -152.079272460937688, 66.58703034061908 ], [ -152.0863037109375, 66.577826239056648 ], [ -152.095019531249704, 66.570013739056648 ], [ -152.121704101562386, 66.556659246869245 ], [ -152.136108398437216, 66.551874090619151 ], [ -152.150268554687386, 66.550116278119191 ], [ -152.163378906250102, 66.553338934369037 ], [ -152.18840332031246, 66.566961981244205 ], [ -152.205493164062318, 66.570013739056549 ], [ -152.239135742187273, 66.564398504681634 ], [ -152.312670898437631, 66.542840887494094 ], [ -152.348876953125284, 66.542743231244032 ], [ -152.353271484375171, 66.545233465619006 ], [ -152.363159179687472, 66.55634186405662 ], [ -152.397338867187528, 66.563788153119077 ], [ -152.455981445312432, 66.568719793744137 ], [ -152.468994140624915, 66.573431707806748 ], [ -152.48088378906246, 66.581366278119134 ], [ -152.489550781249875, 66.579217840619165 ], [ -152.499072265625216, 66.573358465619037 ], [ -152.538378906250045, 66.564764715619006 ], [ -152.547851562499915, 66.563788153119219 ], [ -152.555834960937517, 66.565619207806677 ], [ -152.568725585937671, 66.574042059369134 ], [ -152.575439453124972, 66.576849676556563 ], [ -152.620288085937659, 66.580682684369037 ], [ -152.64453125, 66.580023504681648 ], [ -152.664184570312557, 66.576849676556648 ], [ -152.664794921875171, 66.574237371869117 ], [ -152.667651367187659, 66.56793854374412 ], [ -152.672167968750188, 66.560980535931577 ], [ -152.677856445312784, 66.556341864056563 ], [ -152.756396484374932, 66.543646551556719 ], [ -152.792773437500074, 66.515082098431591 ], [ -152.822192382812602, 66.508563543744117 ], [ -152.858203124999818, 66.506781317181634 ], [ -152.890063476562744, 66.501654364056421 ], [ -153.003710937500045, 66.462420965619103 ], [ -153.020507812500142, 66.460150457806506 ], [ -153.039843749999903, 66.463202215619077 ], [ -153.0767822265625, 66.474798895306577 ], [ -153.096850585937489, 66.474432684369162 ], [ -153.108081054687318, 66.470282293744148 ], [ -153.130664062500244, 66.458197332806506 ], [ -153.143969726562517, 66.453924871869049 ], [ -153.1680908203125, 66.451532293744108 ], [ -153.284545898437784, 66.45392487186902 ], [ -153.290209960937659, 66.451776434369009 ], [ -153.299121093750045, 66.442401434369145 ], [ -153.315356445312688, 66.436102606244106 ], [ -153.311645507812273, 66.426214910931677 ], [ -153.303833007812443, 66.414618231244191 ], [ -153.301635742187671, 66.405536199994046 ], [ -153.312377929687528, 66.39679596561912 ], [ -153.329956054687358, 66.389715887494219 ], [ -153.348681640624818, 66.385443426556648 ], [ -153.36308593749996, 66.385077215619035 ], [ -153.368823242187375, 66.388495184369191 ], [ -153.378417968750199, 66.401483465619094 ], [ -153.384204101562375, 66.405536199994074 ], [ -153.403808593749858, 66.408636785931705 ], [ -153.408984375000074, 66.410956121869049 ], [ -153.418994140625045, 66.41669342655662 ], [ -153.424365234375131, 66.41857330936908 ], [ -153.434814453124886, 66.419452215619103 ], [ -153.445239257812574, 66.418475653119103 ], [ -153.487475585937432, 66.407416082806478 ], [ -153.555957031250188, 66.399603582806549 ], [ -153.611328124999858, 66.382757879681719 ], [ -153.673339843749943, 66.369256903119151 ], [ -153.811035156250028, 66.330438543744194 ], [ -153.913745117187261, 66.295599676556719 ], [ -154.000781250000045, 66.277899481244035 ], [ -154.038378906249761, 66.275213934369248 ], [ -154.063110351562301, 66.270697332806634 ], [ -154.060961914062659, 66.259833074994106 ], [ -154.050219726562489, 66.246405340619205 ], [ -154.048950195312443, 66.234198309369091 ], [ -154.095336914062557, 66.239569403119134 ], [ -154.115600585937415, 66.239325262494134 ], [ -154.103564453125159, 66.22736237186912 ], [ -154.123168945312273, 66.209833074994179 ], [ -154.152099609374886, 66.190863348431705 ], [ -154.173828124999915, 66.16950104374412 ], [ -154.171875000000114, 66.144842840619077 ], [ -154.192382812499943, 66.14069244999429 ], [ -154.211718750000017, 66.132025457806719 ], [ -154.247607421874875, 66.111346746869145 ], [ -154.242358398437432, 66.106268621869063 ], [ -154.233276367187585, 66.090204168744094 ], [ -154.244799804687517, 66.081244207806719 ], [ -154.274047851562273, 66.049383856244134 ], [ -154.278320312499829, 66.042425848431705 ], [ -154.274584960937659, 66.039252020306662 ], [ -154.281249999999858, 66.03217194218162 ], [ -154.29248046875, 66.025091864056606 ], [ -154.302539062500045, 66.021918035931762 ], [ -154.311401367187329, 66.018011785931719 ], [ -154.318481445312244, 66.008563543744174 ], [ -154.329516601562204, 65.987811590619188 ], [ -154.347094726562659, 65.967474676556591 ], [ -154.362475585937375, 65.959833074994222 ], [ -154.446826171874761, 65.960516668744262 ], [ -154.453002929687642, 65.956805731244103 ], [ -154.456347656250102, 65.94542877811908 ], [ -154.464770507812545, 65.938592840619123 ], [ -154.476000976562347, 65.934833074994074 ], [ -154.487792968749943, 65.932562567181691 ], [ -154.482299804687528, 65.929706121869089 ], [ -154.471728515625102, 65.922308660931535 ], [ -154.466064453125256, 65.919549871869066 ], [ -154.485351562500199, 65.917743231244032 ], [ -154.513232421874733, 65.918646551556634 ], [ -154.538330078125256, 65.915594793743978 ], [ -154.55498046874996, 65.892840887494074 ], [ -154.590209960937443, 65.864325262494162 ], [ -154.647583007812358, 65.842474676556606 ], [ -154.675463867187545, 65.825213934369089 ], [ -154.721557617187528, 65.805975653119063 ], [ -154.7467041015625, 65.800238348431719 ], [ -154.765551757812659, 65.791205145306606 ], [ -154.774902343749858, 65.789129949994134 ], [ -154.785815429687204, 65.792352606244123 ], [ -154.788452148437727, 65.799920965619009 ], [ -154.789477539062432, 65.80878327030662 ], [ -154.795654296875, 65.815863348431648 ], [ -154.820190429687727, 65.821112371869106 ], [ -154.941894531250142, 65.813251043744117 ], [ -154.998168945312528, 65.802850653119208 ], [ -155.028442382812329, 65.802264715619032 ], [ -155.062866210937358, 65.806952215619205 ], [ -155.060791015624886, 65.812811590619162 ], [ -155.040893554687358, 65.822088934369134 ], [ -155.021606445312699, 65.836981512494035 ], [ -155.149096679687347, 65.882196356244108 ], [ -155.159057617187472, 65.881366278119046 ], [ -155.175537109375057, 65.875677801556719 ], [ -155.196948242187261, 65.872381903119233 ], [ -155.218310546874989, 65.872748114056648 ], [ -155.234497070312472, 65.877948309369145 ], [ -155.22514648437496, 65.882513739056705 ], [ -155.217407226562301, 65.888495184369162 ], [ -155.211303710937273, 65.895941473431662 ], [ -155.207153320312727, 65.905218817181591 ], [ -155.268310546874886, 65.897772528119134 ], [ -155.289111328124818, 65.898382879681634 ], [ -155.275317382812602, 65.914325262494131 ], [ -155.233203125000074, 65.930365301556606 ], [ -155.22021484375, 65.946844793744177 ], [ -155.241625976562517, 65.949725653119145 ], [ -155.265380859374886, 65.945086981244216 ], [ -155.326708984374847, 65.917547918744262 ], [ -155.3411865234375, 65.91327545780662 ], [ -155.357104492187602, 65.911737371869094 ], [ -155.378466796874704, 65.912127996869231 ], [ -155.423510742187574, 65.903143621869035 ], [ -155.446411132812358, 65.90187409061916 ], [ -155.453613281249915, 65.912127996869131 ], [ -155.440917968749943, 65.923456121869052 ], [ -155.371630859375074, 65.94684479374412 ], [ -155.3914794921875, 65.957953192181648 ], [ -155.426269531250142, 65.994012762494037 ], [ -155.455126953124903, 66.009393621869137 ], [ -155.485034179687403, 66.012640692181677 ], [ -155.573657226562347, 66.003485418744162 ], [ -155.61979980468746, 65.985174871869191 ], [ -155.645385742187273, 65.980975653119188 ], [ -155.672412109374875, 65.979510809369131 ], [ -155.683837890624858, 65.982123114056634 ], [ -155.696582031249989, 65.990912176556591 ], [ -155.708496093750227, 65.996356512494145 ], [ -155.722216796874932, 65.995550848431662 ], [ -155.73442382812496, 65.990008856244131 ], [ -155.741577148437727, 65.980975653119032 ], [ -155.711108398437432, 65.96918366093162 ], [ -155.7, 65.966669012494165 ], [ -155.719042968750244, 65.963495184369009 ], [ -155.746997070312318, 65.965887762494177 ], [ -155.769287109374801, 65.973089910931662 ], [ -155.771972656250171, 65.984393621869032 ], [ -155.757617187500159, 65.999335028119091 ], [ -155.752441406249915, 66.006048895306634 ], [ -155.758789062499915, 66.007757879681577 ], [ -155.778808593749801, 66.007635809369191 ], [ -155.823974609375, 65.999042059369074 ], [ -155.850756835937631, 65.997088934369145 ], [ -155.854541015624903, 66.004584051556634 ], [ -155.855517578124818, 66.016180731244191 ], [ -155.876464843749801, 66.02387116093162 ], [ -155.919433593750227, 66.029413153119023 ], [ -155.927172851562545, 66.027606512494145 ], [ -155.953857421874886, 66.015082098431634 ], [ -155.994799804687688, 66.007635809369049 ], [ -156.0142822265625, 66.001239324994188 ], [ -156.025683593749761, 65.999090887494148 ], [ -156.035766601562244, 66.001483465619131 ], [ -156.038012695312148, 66.006537176556691 ], [ -156.034423828125028, 66.012640692181591 ], [ -156.0299072265625, 66.018255926556634 ], [ -156.029589843749989, 66.021918035931648 ], [ -156.047973632812585, 66.030462957806677 ], [ -156.058032226562347, 66.025824285931606 ], [ -156.065600585937517, 66.014032293744066 ], [ -156.076782226562528, 66.001483465619103 ], [ -156.093798828124875, 65.991815496869137 ], [ -156.11186523437496, 65.987738348431648 ], [ -156.128051757812443, 65.992010809369177 ], [ -156.139453125000017, 66.007635809368978 ], [ -156.137622070312545, 66.02387116093162 ], [ -156.157519531250102, 66.028021551556634 ], [ -156.18205566406283, 66.019476629681506 ], [ -156.194091796875114, 65.997748114056662 ], [ -156.204956054687614, 65.990545965619148 ], [ -156.260131835937443, 66.004022528119066 ], [ -156.282836914062386, 66.001483465619074 ], [ -156.257202148437415, 65.972284246869236 ], [ -156.223754882812614, 65.960760809369049 ], [ -156.145629882812585, 65.960516668744106 ], [ -156.164916992187528, 65.945672918744052 ], [ -156.2281494140625, 65.94428131718162 ], [ -156.252075195312301, 65.935980535931705 ], [ -156.267382812499818, 65.921454168744162 ], [ -156.286254882812329, 65.908563543744094 ], [ -156.306762695312187, 65.904364324994205 ], [ -156.347167968750227, 65.92584869999412 ], [ -156.3726806640625, 65.927997137494216 ], [ -156.388232421874989, 65.919623114056606 ], [ -156.378417968750227, 65.898382879681492 ], [ -156.357788085937756, 65.88764069218152 ], [ -156.305297851562329, 65.881170965619205 ], [ -156.282836914062386, 65.87111237186916 ], [ -156.297729492187443, 65.866815496869123 ], [ -156.344238281250171, 65.864325262494049 ], [ -156.356616210937659, 65.860907293744091 ], [ -156.352783203124943, 65.853094793744077 ], [ -156.337451171874704, 65.840033270306677 ], [ -156.343017578125, 65.828973699994108 ], [ -156.382128906249648, 65.785760809369279 ], [ -156.40283203125, 65.775824285931506 ], [ -156.42338867187496, 65.778265692181662 ], [ -156.444628906249704, 65.783563543744265 ], [ -156.467773437499773, 65.782342840619208 ], [ -156.536059570312347, 65.748236395306691 ], [ -156.53007812499996, 65.737616278119049 ], [ -156.536743164062784, 65.729925848431535 ], [ -156.54570312499996, 65.723456121869091 ], [ -156.546630859375085, 65.716864324994134 ], [ -156.530517578125114, 65.707220770306634 ], [ -156.509936523437432, 65.704413153119077 ], [ -156.428588867187585, 65.70502350468152 ], [ -156.409838867187375, 65.70026276249412 ], [ -156.409423828124943, 65.689569403119194 ], [ -156.4232177734375, 65.681659246869032 ], [ -156.458496093750085, 65.675165106244009 ], [ -156.484252929687671, 65.66310455936906 ], [ -156.519458007812432, 65.654730535931719 ], [ -156.529223632812403, 65.645209051556705 ], [ -156.524096679687602, 65.633563543744046 ], [ -156.504272460937557, 65.634833074994148 ], [ -156.468066406250216, 65.645209051556648 ], [ -156.42802734374979, 65.640936590619191 ], [ -156.352221679687489, 65.622137762494219 ], [ -156.310107421874932, 65.617938543744202 ], [ -156.330371093750131, 65.607245184368992 ], [ -156.35258789062479, 65.605585028119222 ], [ -156.375781249999676, 65.606708074994188 ], [ -156.398852539062233, 65.604193426556677 ], [ -156.414916992187671, 65.598822332806634 ], [ -156.425170898437614, 65.592401434369137 ], [ -156.425708007812375, 65.585150457806606 ], [ -156.412524414062432, 65.576922918744231 ], [ -156.402026367187204, 65.574896551556606 ], [ -156.364746093750028, 65.576922918744174 ], [ -156.353271484375227, 65.575384832806549 ], [ -156.350585937499886, 65.571722723431648 ], [ -156.351611328124875, 65.567010809369123 ], [ -156.351123046874932, 65.562616278119165 ], [ -156.351318359375114, 65.556708074994049 ], [ -156.354980468750057, 65.549676824994052 ], [ -156.355957031249943, 65.543890692181492 ], [ -156.340747070312688, 65.539422918743995 ], [ -156.336059570312415, 65.534295965619179 ], [ -156.330615234375102, 65.521673895306549 ], [ -156.351318359374773, 65.522162176556662 ], [ -156.373706054687517, 65.51923248905662 ], [ -156.391601562500171, 65.511542059369106 ], [ -156.398852539062545, 65.498065496869245 ], [ -156.39306640625, 65.480096746869151 ], [ -156.378100585937432, 65.471307684369123 ], [ -156.337451171875045, 65.467059637494131 ], [ -156.354492187500114, 65.454291082806648 ], [ -156.387011718749818, 65.44586823124412 ], [ -156.447021484374972, 65.439764715619219 ], [ -156.464355468750114, 65.440375067181549 ], [ -156.472290039062614, 65.44281647343162 ], [ -156.484863281249972, 65.456488348431648 ], [ -156.498217773437347, 65.463934637494091 ], [ -156.511401367187318, 65.46430084843162 ], [ -156.539794921875142, 65.459588934369123 ], [ -156.642138671874761, 65.458758856244202 ], [ -156.659594726562261, 65.467059637494131 ], [ -156.650805664062489, 65.483343817181606 ], [ -156.631835937499716, 65.494208074994162 ], [ -156.624999999999801, 65.501776434369191 ], [ -156.652758789062318, 65.508002020306648 ], [ -156.676196289062489, 65.506415106244205 ], [ -156.699267578125045, 65.501288153119106 ], [ -156.722094726562602, 65.500189520306549 ], [ -156.745239257812386, 65.511102606244094 ], [ -156.758593750000102, 65.521307684369205 ], [ -156.761645507812432, 65.527289129681705 ], [ -156.762622070312659, 65.538397528119091 ], [ -156.767211914062699, 65.546405340619145 ], [ -156.778002929687688, 65.550799871868989 ], [ -156.790405273437244, 65.554071356244179 ], [ -156.799853515624704, 65.558905340619191 ], [ -156.818774414062688, 65.56422760624406 ], [ -156.876220703124829, 65.555609442181691 ], [ -156.899780273437329, 65.555194403119145 ], [ -156.950732421874733, 65.564520574994191 ], [ -156.973876953125114, 65.563421942181591 ], [ -156.968066406249875, 65.548944403119194 ], [ -156.968066406250216, 65.541522528119103 ], [ -156.982421874999886, 65.542181707806705 ], [ -157.010009765624972, 65.548456121868995 ], [ -157.022705078124972, 65.548944403119194 ], [ -157.037524414062204, 65.544061590619208 ], [ -157.038452148437614, 65.537225653119023 ], [ -157.029833984374989, 65.531122137494251 ], [ -156.999877929687386, 65.524042059369123 ], [ -157.013183593749943, 65.513861395306719 ], [ -157.082080078124818, 65.485419012494177 ], [ -157.108154296875227, 65.47882721561902 ], [ -157.162963867187443, 65.473895574994074 ], [ -157.167163085937432, 65.472967840619248 ], [ -157.175659179687415, 65.468622137494094 ], [ -157.180346679687375, 65.46705963749416 ], [ -157.191040039062443, 65.465643621869063 ], [ -157.214477539062301, 65.467059637494131 ], [ -157.257983398437148, 65.478387762494194 ], [ -157.269409179687472, 65.477313543744046 ], [ -157.324951171874943, 65.462518621869179 ], [ -157.495654296875273, 65.487494207806506 ], [ -157.535693359375045, 65.479559637494106 ], [ -157.550219726562489, 65.480731512494202 ], [ -157.558227539062528, 65.485174871869148 ], [ -157.566088867187489, 65.492059637494123 ], [ -157.576538085937585, 65.498358465618978 ], [ -157.591845703125102, 65.501166082806606 ], [ -157.607421874999972, 65.497821356244103 ], [ -157.609057617187602, 65.48993561405652 ], [ -157.605468750000171, 65.480780340619077 ], [ -157.605517578124989, 65.47389557499416 ], [ -157.61662597656246, 65.466376043744205 ], [ -157.630737304687187, 65.461615301556719 ], [ -157.645874023437273, 65.459418035931691 ], [ -157.660083007812517, 65.459588934369123 ], [ -157.651538085937773, 65.438788153119077 ], [ -157.659106445312318, 65.429877020306606 ], [ -157.674804687500171, 65.42475006718152 ], [ -157.6905517578125, 65.415228582806662 ], [ -157.692553710937432, 65.399725653118978 ], [ -157.670898437499915, 65.393085028119032 ], [ -157.642871093750017, 65.38991119999416 ], [ -157.6259765625, 65.385077215619049 ], [ -157.642944335937557, 65.362127996869134 ], [ -157.648681640624943, 65.339129949994245 ], [ -157.641406249999847, 65.318475653119151 ], [ -157.619140625000057, 65.302557684369063 ], [ -157.636840820312216, 65.296258856244222 ], [ -157.653930664062699, 65.297919012494077 ], [ -157.670703124999761, 65.301825262494219 ], [ -157.687426757812631, 65.302557684369063 ], [ -157.707446289062517, 65.29547760624412 ], [ -157.711547851562273, 65.286444403119276 ], [ -157.702758789062528, 65.278631903119134 ], [ -157.656738281250085, 65.272406317181733 ], [ -157.623217773437773, 65.264105535931463 ], [ -157.598803710937688, 65.251044012494063 ], [ -157.598681640625045, 65.233661199994202 ], [ -157.612182617187472, 65.225848699994174 ], [ -157.645874023437557, 65.221136785931591 ], [ -157.660083007812517, 65.213812567181719 ], [ -157.669726562499847, 65.203802801556634 ], [ -157.668945312499801, 65.200628973431819 ], [ -157.661132812499943, 65.197821356244177 ], [ -157.649584960937631, 65.189276434369049 ], [ -157.647143554687574, 65.172064520306719 ], [ -157.6669921875, 65.110126043744131 ], [ -157.663134765624875, 65.088812567181705 ], [ -157.653198242187472, 65.064081121869123 ], [ -157.639038085937301, 65.043573309369208 ], [ -157.622558593750057, 65.035028387494052 ], [ -157.596118164062318, 65.041083074994106 ], [ -157.554003906250102, 65.071234442181549 ], [ -157.529785156250199, 65.082831121869106 ], [ -157.502807617187415, 65.087469793744106 ], [ -157.46123046874996, 65.090106512494074 ], [ -157.423022460937318, 65.084784246869219 ], [ -157.40625, 65.065741278119134 ], [ -157.389453125000216, 65.052850653119151 ], [ -157.359130859374972, 65.039618231244205 ], [ -157.345703124999716, 65.028338934369131 ], [ -157.379565429687261, 65.021429754681662 ], [ -157.445922851562443, 65.029071356244145 ], [ -157.484057617187517, 65.020624090619094 ], [ -157.536621093750142, 65.027606512494103 ], [ -157.549682617187756, 65.02472565311912 ], [ -157.564086914062557, 65.017108465619074 ], [ -157.575195312500057, 65.006366278119046 ], [ -157.578173828124903, 64.99408600468162 ], [ -157.569335937500028, 64.984320379681535 ], [ -157.532397460937403, 64.973749090619194 ], [ -157.51611328125, 64.966815496869089 ], [ -157.536914062499932, 64.961297918744108 ], [ -157.557128906249972, 64.953143621869131 ], [ -157.549609374999932, 64.950799871869194 ], [ -157.529785156250199, 64.939471746868989 ], [ -157.551757812500227, 64.925360418744077 ], [ -157.639648437499915, 64.904730535931606 ], [ -157.709960937500114, 64.874774481244103 ], [ -157.739794921875074, 64.866815496869137 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 8, "name": null, "rivernum": 648, "length": 156950.062 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -135.073168945312347, 60.93727448124416 ], [ -135.069018554687204, 60.946844793744035 ], [ -135.073486328125114, 60.95770905155662 ], [ -135.074511718749989, 60.967645574994087 ], [ -135.074707031249943, 60.981317449994165 ], [ -135.076904296875313, 60.997333074994145 ], [ -135.077197265625102, 61.016058660931606 ], [ -135.09423828125, 61.051776434369053 ], [ -135.124389648437557, 61.093085028119134 ], [ -135.155078124999847, 61.14459869999402 ], [ -135.216552734374858, 61.258807684369103 ], [ -135.243530273437671, 61.321478582806591 ], [ -135.242114257812375, 61.369891668744117 ], [ -135.234985351562443, 61.393133856244013 ] ], [ [ -134.915527343749687, 61.567889715619046 ], [ -134.946899414062273, 61.570135809369177 ], [ -135.061694335937602, 61.596747137494134 ], [ -135.090136718750244, 61.599066473431627 ], [ -135.117065429687557, 61.594110418744158 ], [ -135.139404296875, 61.577948309369212 ], [ -135.145922851562489, 61.568060614056826 ], [ -135.150390625000028, 61.556830145306648 ], [ -135.152514648437602, 61.545282293744258 ], [ -135.152148437500102, 61.534051824994229 ], [ -135.136230468749744, 61.489081121869049 ], [ -135.150268554687614, 61.48676178593152 ], [ -135.163940429687528, 61.482440496869017 ], [ -135.176635742187671, 61.476385809369049 ], [ -135.188037109375131, 61.469061590619098 ], [ -135.19279785156246, 61.464471746869215 ], [ -135.203417968750074, 61.449652410931449 ], [ -135.222045898437443, 61.43231842655667 ], [ -135.226684570312614, 61.425116278119013 ], [ -135.234301757812489, 61.403387762494134 ], [ -135.234863281250028, 61.393500067181748 ] ], [ [ -135.073242187499886, 60.937274481244245 ], [ -135.073168945312347, 60.93727448124416 ] ], [ [ -135.073168945312347, 60.93727448124416 ], [ -135.114746093750171, 60.91303131718157 ], [ -135.128417968749886, 60.902533270306456 ], [ -135.145141601562671, 60.872748114056648 ], [ -135.152636718749932, 60.868353582806606 ], [ -135.165527343750171, 60.863714910931584 ], [ -135.167724609375057, 60.852850653119027 ], [ -135.162597656249943, 60.831122137494063 ], [ -135.149536132812557, 60.810174871869194 ], [ -135.119799804687659, 60.796454168744184 ], [ -135.06633300781283, 60.779608465619198 ], [ -135.061401367187386, 60.774530340619116 ], [ -135.054736328124903, 60.765887762493961 ], [ -135.048999023437517, 60.756366278118982 ], [ -135.046508789062528, 60.748602606244198 ], [ -135.047045898437744, 60.726019598431584 ], [ -135.044189453125, 60.71564362186917 ], [ -135.035937499999932, 60.711371160931712 ], [ -135.030517578124915, 60.706903387494265 ], [ -135.027880859375273, 60.684930731244179 ], [ -135.025390624999915, 60.676581121869042 ], [ -135.017456054687386, 60.669989324994035 ], [ -134.984423828124875, 60.656683660931627 ], [ -134.949145507812432, 60.632147528118963 ], [ -134.936328125000131, 60.628729559369113 ], [ -134.884814453125131, 60.636737371869216 ], [ -134.799487304687574, 60.638251043743999 ], [ -134.687915039062261, 60.607123114056556 ], [ -134.630859374999716, 60.577826239056606 ], [ -134.610473632812614, 60.573358465619165 ], [ -134.567016601562528, 60.571478582806627 ], [ -134.545581054687204, 60.567328192181549 ], [ -134.507250976562801, 60.549139715619155 ], [ -134.494995117187614, 60.546820379681606 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": 785600.565 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 8, "name": "Pelly", "rivernum": 756, "length": 476107.014 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -130.80644531249996, 62.21478912968152 ], [ -130.809692382812671, 62.20958893436908 ], [ -130.817797851562631, 62.200799871869137 ], [ -130.821044921875171, 62.195819403119145 ], [ -130.824218750000028, 62.182318426556726 ], [ -130.823730468749773, 62.154242254681627 ], [ -130.82719726562479, 62.140936590619162 ], [ -130.834960937499972, 62.128924871869209 ], [ -130.862841796874875, 62.096747137493992 ], [ -130.876098632812557, 62.072943426556556 ], [ -130.90324707031246, 62.042792059369056 ], [ -130.922656249999676, 62.026068426556655 ], [ -130.945483398437375, 62.016302801556712 ], [ -131.028002929687517, 61.995379949993904 ], [ -131.061328124999818, 61.982684637494025 ], [ -131.080810546874829, 61.972772528119172 ], [ -131.098388671874886, 61.961127020306805 ], [ -131.113037109374829, 61.936102606244226 ], [ -131.105883789062517, 61.908075262494087 ], [ -131.08293457031246, 61.884637762494009 ], [ -131.049975585937403, 61.872992254681634 ], [ -131.053710937499886, 61.864569403119127 ], [ -131.059619140625017, 61.858343817181506 ], [ -131.067675781249818, 61.85431549686907 ], [ -131.07731933593729, 61.852484442181606 ], [ -131.072070312500216, 61.850775457806641 ], [ -131.062426757812545, 61.846307684369023 ], [ -131.05681152343746, 61.845038153119098 ], [ -131.087695312499932, 61.816961981244113 ], [ -131.098388671875142, 61.810248114056662 ], [ -131.113525390625114, 61.806708074993914 ], [ -131.128344726562716, 61.805926824994096 ], [ -131.142626953124875, 61.803290106244035 ], [ -131.1561279296875, 61.793817449994052 ], [ -131.167236328124886, 61.790545965619224 ], [ -131.200122070312403, 61.787860418744089 ], [ -131.215454101562472, 61.772479559369188 ], [ -131.234497070312358, 61.76727936405652 ], [ -131.371582031250256, 61.756708074994151 ], [ -131.396362304687472, 61.746039129681805 ], [ -131.424121093750159, 61.739374090619194 ], [ -131.536621093750028, 61.763128973431762 ], [ -131.624438476562261, 61.762884832806677 ], [ -131.642211914062329, 61.765204168744226 ], [ -131.656127929687273, 61.773065496869108 ], [ -131.666430664062688, 61.776312567181634 ], [ -131.732226562499761, 61.786078192181584 ], [ -131.883837890625045, 61.829535223431577 ], [ -131.956225585937489, 61.834247137494138 ], [ -131.988330078124932, 61.840765692181783 ], [ -132.017211914062671, 61.851336981244145 ], [ -132.065600585937261, 61.878485418744063 ], [ -132.075122070312773, 61.87933991093162 ], [ -132.091552734375057, 61.879217840619262 ], [ -132.155395507812614, 61.868963934369035 ], [ -132.170043945312301, 61.87299225468152 ], [ -132.178344726562159, 61.880072332806527 ], [ -132.194580078125057, 61.891180731244084 ], [ -132.204467773437386, 61.899969793744262 ], [ -132.215332031250114, 61.90441315311913 ], [ -132.244067382812545, 61.90228912968167 ], [ -132.256030273437688, 61.903021551556499 ], [ -132.267333984374972, 61.908636785931655 ], [ -132.273803710937557, 61.915350653119134 ], [ -132.283325195312358, 61.930365301556598 ], [ -132.28276367187496, 61.932074285931648 ], [ -132.283129882812574, 61.93756744999402 ], [ -132.285156249999687, 61.944769598431584 ], [ -132.289550781250085, 61.951483465619155 ], [ -132.296557617187517, 61.955267645306648 ], [ -132.315844726562375, 61.959051824994191 ], [ -132.355712890624744, 61.973016668744144 ], [ -132.454638671875074, 61.992450262494174 ], [ -132.489746093750085, 62.009344793743999 ], [ -132.503051757812472, 62.012884832806691 ], [ -132.516601562499659, 62.011908270306549 ], [ -132.531665039062631, 62.008490301556648 ], [ -132.546875, 62.008172918744137 ], [ -132.582690429687545, 62.03009674686912 ], [ -132.783813476562273, 62.073187567181613 ], [ -132.83037109374996, 62.098749090619151 ], [ -133.030029296874886, 62.15753815311912 ], [ -133.141162109375074, 62.171210028119141 ], [ -133.190307617187358, 62.18585846561907 ], [ -133.242309570312557, 62.191034246869016 ], [ -133.277832031250057, 62.208929754681769 ], [ -133.358398437500085, 62.21918366093157 ], [ -133.392138671875045, 62.228045965619174 ], [ -133.484985351562671, 62.268670965619215 ], [ -133.60539550781246, 62.286981512494108 ], [ -133.620288085937631, 62.297479559369137 ], [ -133.631713867187443, 62.310248114056868 ], [ -133.658203125, 62.322381903119272 ], [ -133.687792968750074, 62.331488348431499 ], [ -133.734912109375131, 62.340155340619091 ], [ -133.790087890624932, 62.360614324994103 ], [ -133.818286132812318, 62.362372137494205 ], [ -133.819384765625045, 62.375799871869049 ], [ -133.832031249999829, 62.386737371869089 ], [ -133.849853515625, 62.393915106244194 ], [ -133.866699218750057, 62.396502996869096 ], [ -133.859252929687244, 62.396502996869124 ], [ -133.917358398437443, 62.399115301556662 ], [ -133.934985351562659, 62.40392487186908 ], [ -133.973510742187557, 62.427801824994084 ], [ -133.985839843749943, 62.431219793743956 ], [ -134.062792968750074, 62.436786199994188 ], [ -134.101074218749915, 62.446893621869137 ], [ -134.132983398437318, 62.46478912968157 ], [ -134.126342773437557, 62.466083074994252 ], [ -134.113085937499818, 62.472235418744226 ], [ -134.17265625000033, 62.505389715619174 ], [ -134.21000976562496, 62.520941473431563 ], [ -134.27490234375, 62.535956121869141 ], [ -134.338012695312273, 62.573553778119184 ], [ -134.373779296874829, 62.582098699994155 ], [ -134.381396484375045, 62.583807684369127 ], [ -134.385375976562585, 62.587836004681613 ], [ -134.388476562500188, 62.592352606244191 ], [ -134.393676757812358, 62.595770574994148 ], [ -134.427783203125017, 62.602606512494219 ], [ -134.487963867187744, 62.624774481244138 ], [ -134.602416992187273, 62.638373114056677 ], [ -134.650146484375114, 62.650018621869165 ], [ -134.674804687500171, 62.670843817181677 ], [ -134.660156249999829, 62.670282293744229 ], [ -134.620239257812386, 62.678290106244219 ], [ -134.654296875000227, 62.71417877811912 ], [ -134.66862792968746, 62.725458074994222 ], [ -134.686328124999875, 62.731268621869134 ], [ -134.711474609375074, 62.736590887494067 ], [ -134.734008789062671, 62.744208074994241 ], [ -134.743701171875102, 62.756537176556506 ], [ -134.753540039062329, 62.754022528119087 ], [ -134.800048828124773, 62.752386785931513 ], [ -134.81572265624996, 62.756537176556648 ], [ -134.840332031250085, 62.768133856244006 ], [ -134.861206054687216, 62.763788153119087 ], [ -134.880786132812602, 62.753192449993911 ], [ -134.901367187499773, 62.745917059369063 ], [ -134.91313476562496, 62.747259832806527 ], [ -134.929858398437318, 62.757196356244023 ], [ -134.938891601562545, 62.759588934368999 ], [ -134.951586914062659, 62.756537176556506 ], [ -134.958544921875131, 62.749627996869009 ], [ -134.96354980468783, 62.742621160931655 ], [ -134.970263671874761, 62.739081121869084 ], [ -134.982055664062301, 62.740008856244089 ], [ -134.989184570312688, 62.744012762494172 ], [ -135.000366210937614, 62.756537176556648 ], [ -135.009643554687614, 62.763202215618996 ], [ -135.01884765624979, 62.76622955936908 ], [ -135.123583984374932, 62.773871160931691 ], [ -135.165283203125199, 62.772528387494134 ], [ -135.181762695312528, 62.76837799686912 ], [ -135.18132324218729, 62.759588934369113 ], [ -135.195434570312443, 62.756366278119131 ], [ -135.206665039062358, 62.760809637494312 ], [ -135.217285156250085, 62.768133856244035 ], [ -135.229736328124915, 62.773871160931577 ], [ -135.338671874999932, 62.781317449994226 ], [ -135.346435546874659, 62.780096746869141 ], [ -135.351684570312472, 62.775946356244184 ], [ -135.355395507812858, 62.763544012494151 ], [ -135.360034179687659, 62.759588934369084 ], [ -135.378784179687386, 62.75763580936929 ], [ -135.546997070312386, 62.78595612186907 ], [ -135.586596679687545, 62.786932684369042 ], [ -135.636962890624972, 62.779364324994148 ], [ -135.654296875000057, 62.780096746869233 ], [ -135.671557617187233, 62.784979559369098 ], [ -135.704760742187347, 62.798407293744241 ], [ -135.758837890624847, 62.808172918744155 ], [ -135.829223632812415, 62.839178778119127 ], [ -135.864062499999761, 62.846258856244141 ], [ -135.881274414062659, 62.847430731244032 ], [ -135.892700195312415, 62.851385809369035 ], [ -135.901782226562602, 62.858661199994145 ], [ -135.911865234375085, 62.869501043744094 ], [ -135.923217773437671, 62.879169012494032 ], [ -135.935913085937727, 62.884466864056705 ], [ -135.950927734375, 62.886542059369205 ], [ -136.020190429687574, 62.879828192181549 ], [ -136.038500976562347, 62.880316473431577 ], [ -136.09331054687496, 62.892401434369127 ], [ -136.14531249999979, 62.894110418744006 ], [ -136.173217773437671, 62.89081452030652 ], [ -136.197070312500017, 62.878729559369134 ], [ -136.216601562499989, 62.852411199994194 ], [ -136.212768554687358, 62.848407293744202 ], [ -136.207519531250284, 62.838495184369151 ], [ -136.202929687500216, 62.831903387494108 ], [ -136.234130859374716, 62.823993231244124 ], [ -136.268798828124829, 62.824237371869096 ], [ -136.303027343750244, 62.830194403119116 ], [ -136.358203125000188, 62.846454168744117 ], [ -136.387329101562585, 62.850604559369053 ], [ -136.418579101562528, 62.850897528119098 ], [ -136.45, 62.846258856244077 ], [ -136.408447265625057, 62.831903387494222 ], [ -136.429614257812545, 62.816229559369077 ], [ -136.462890625000284, 62.813299871869198 ], [ -136.486132812500244, 62.823187567181556 ], [ -136.477294921875, 62.846258856244077 ], [ -136.496142578124903, 62.852411199994194 ], [ -136.517456054687671, 62.852118231244035 ], [ -136.553027343750102, 62.846258856244077 ], [ -136.590258789062688, 62.846258856244141 ], [ -136.599731445312443, 62.844794012493999 ], [ -136.608447265625159, 62.84240143436908 ], [ -136.617553710937386, 62.841986395306591 ], [ -136.628173828124773, 62.846258856244141 ], [ -136.625659179687318, 62.849676824994155 ], [ -136.621264648437432, 62.858661199994231 ], [ -136.722656250000028, 62.865838934369279 ], [ -136.809082031250085, 62.876654364056613 ], [ -136.817919921875188, 62.881293035931598 ], [ -136.827026367187614, 62.879461981244191 ], [ -136.835742187499818, 62.875311590619091 ], [ -136.843798828124875, 62.872870184369098 ], [ -136.881103515624801, 62.871405340619098 ], [ -136.918017578125216, 62.873309637494167 ], [ -136.985156250000244, 62.86737702030667 ], [ -137.143237304687659, 62.861200262494144 ], [ -137.168749999999847, 62.855536199994198 ], [ -137.178344726562301, 62.858099676556662 ], [ -137.246215820312443, 62.841571356244188 ], [ -137.298144531250045, 62.843377996869194 ], [ -137.322680664062659, 62.838202215619013 ], [ -137.341186523437614, 62.822284246869188 ], [ -137.319946289062472, 62.801947332806584 ], [ -137.312060546875102, 62.789911199994165 ], [ -137.316894531249829, 62.771112371869101 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 7, "name": "White", "rivernum": 617, "length": 111630.551 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -140.005249023437614, 62.619256903119165 ], [ -140.017626953125216, 62.639105535931535 ], [ -140.032153320312602, 62.656317449994162 ], [ -140.043383789062545, 62.666205145306606 ], [ -140.045410156250199, 62.680682684369103 ], [ -140.040405273437557, 62.702460028119006 ], [ -140.033251953124818, 62.723407293744074 ], [ -140.029223632812574, 62.744647528119046 ], [ -140.035205078124903, 62.762567449994179 ], [ -140.045214843750244, 62.778436590619165 ], [ -140.055346679687403, 62.838568426556805 ], [ -140.071899414062472, 62.853949285931677 ], [ -140.079394531249761, 62.860223699994087 ], [ -140.087524414062472, 62.86554596561929 ], [ -140.09941406249996, 62.87184479374428 ], [ -140.110717773437244, 62.87897369999402 ], [ -140.119750976562671, 62.887713934369096 ], [ -140.130664062500045, 62.894403387494201 ], [ -140.143969726562119, 62.89508698124412 ], [ -140.157153320312375, 62.894964910931563 ], [ -140.168872070312631, 62.90045807499402 ], [ -140.178955078124972, 62.908563543744279 ], [ -140.184375000000159, 62.92145416874417 ], [ -140.186279296875142, 62.935614324994042 ], [ -140.203247070312102, 62.958758856244103 ], [ -140.225219726562472, 62.978387762494059 ], [ -140.247924804687329, 62.988836981244155 ], [ -140.268481445312602, 63.001532293744127 ], [ -140.270019531249829, 63.03639557499416 ], [ -140.283325195312329, 63.065741278119212 ], [ -140.298510742187318, 63.069598699994067 ], [ -140.312670898437176, 63.075628973431627 ], [ -140.318237304687301, 63.086859442181478 ], [ -140.320239257812489, 63.09955475468162 ], [ -140.32854003906229, 63.11054108280662 ], [ -140.340625000000188, 63.117938543744053 ], [ -140.348388671874943, 63.127508856244162 ], [ -140.352099609375045, 63.139471746868956 ], [ -140.359130859374829, 63.150018621869144 ], [ -140.343994140625199, 63.170038153119208 ], [ -140.319946289062784, 63.186102606244056 ], [ -140.279663085937813, 63.204461981244172 ], [ -140.231933593750028, 63.222113348431634 ], [ -140.195922851562244, 63.238055731244103 ], [ -140.136718749999829, 63.242499090619198 ], [ -140.109790039062602, 63.244574285931606 ], [ -140.08366699218746, 63.239325262494205 ], [ -140.058032226562574, 63.230975653119067 ], [ -140.031542968750131, 63.232977606244219 ], [ -140.011767578125159, 63.238055731244074 ], [ -139.956713867187375, 63.231805731244123 ], [ -139.878833007812631, 63.24701569218157 ], [ -139.848071289062347, 63.246893621868985 ], [ -139.823657226562545, 63.242059637493952 ], [ -139.800903320312699, 63.232733465619248 ], [ -139.7750244140625, 63.220160223431613 ], [ -139.747436523437329, 63.211493231244077 ], [ -139.707641601562273, 63.207391668744137 ], [ -139.668261718749875, 63.211053778119236 ], [ -139.580615234374761, 63.206317449994074 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": 559564.559 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 3, "name": "Teslin", "rivernum": 61, "length": 374323.753 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -134.913330078124915, 61.569696356244222 ], [ -134.885302734375273, 61.552191473431606 ], [ -134.783081054687585, 61.506610418744266 ], [ -134.765795898437318, 61.502460028119053 ], [ -134.730639648437318, 61.499872137494151 ], [ -134.703369140625085, 61.505072332806414 ], [ -134.689501953125216, 61.505438543744091 ], [ -134.67790527343746, 61.499335028118992 ], [ -134.686767578124915, 61.477899481244066 ], [ -134.67583007812496, 61.462225653119063 ], [ -134.657958984374801, 61.447943426556684 ], [ -134.645874023437585, 61.430731512494056 ], [ -134.646362304687472, 61.420721746869141 ], [ -134.655932617187347, 61.38104889530652 ], [ -134.6527099609375, 61.333514715618961 ], [ -134.636035156250188, 61.302362371869165 ], [ -134.605712890624829, 61.281268621869039 ], [ -134.561645507812386, 61.263788153119066 ], [ -134.510375976562528, 61.253851629681662 ], [ -134.496093750000085, 61.24791901249408 ], [ -134.378417968749829, 61.18024323124407 ], [ -134.361376953125017, 61.167596746869208 ], [ -134.348266601562756, 61.139764715619165 ], [ -134.335083007812585, 61.133661199993924 ], [ -134.320239257812631, 61.130316473431563 ], [ -134.30949707031229, 61.125604559369123 ], [ -134.298266601562489, 61.115106512494208 ], [ -134.288940429687244, 61.108172918744188 ], [ -134.264526367187671, 61.094305731244212 ], [ -134.261523437500216, 61.091131903119106 ], [ -134.260253906250057, 61.087176824994131 ], [ -134.259643554687642, 61.083514715619167 ], [ -134.258300781250341, 61.081244207806577 ], [ -134.251831054687642, 61.079046942181698 ], [ -134.236450195312699, 61.075873114056648 ], [ -134.231005859374847, 61.073797918744184 ], [ -134.079101562500171, 60.966424871869144 ], [ -133.986450195312585, 60.896918035931442 ], [ -133.897094726562585, 60.843939520306584 ], [ -133.797534179687602, 60.785907293743961 ], [ -133.703173828125159, 60.748480535931606 ], [ -133.688110351562329, 60.739569403118992 ], [ -133.637817382812415, 60.70148346561912 ], [ -133.597656250000114, 60.680047918744023 ], [ -133.56396484375, 60.649237371869177 ], [ -133.543627929687432, 60.636249090619224 ], [ -133.420336914062347, 60.578387762494117 ], [ -133.374560546874648, 60.545282293744094 ], [ -133.289111328124733, 60.467401434369108 ], [ -133.244873046874716, 60.448553778119113 ], [ -133.227343750000102, 60.44086334843157 ], [ -133.205200195312642, 60.428534246869077 ], [ -133.144409179687301, 60.38112213749416 ], [ -132.964965820312528, 60.26691315311917 ], [ -132.914111328124989, 60.229071356244155 ], [ -132.865527343749989, 60.200140692181819 ], [ -132.79973144531246, 60.180731512494255 ], [ -132.739501953125142, 60.160101629681577 ], [ -132.698852539062585, 60.135516668744131 ], [ -132.654956054687659, 60.114129949994073 ], [ -132.603808593749847, 60.095819403118981 ], [ -132.55705566406246, 60.074090887494215 ], [ -132.438403320312233, 60.025165106244025 ], [ -132.405273437499829, 59.993597723431655 ], [ -132.345214843749744, 59.911932684369113 ], [ -132.318286132812489, 59.869452215619283 ], [ -132.232299804687329, 59.792303778119091 ], [ -132.169799804687386, 59.664178778119279 ], [ -132.149169921874801, 59.629169012494053 ], [ -132.128173828124915, 59.617743231244212 ], [ -132.095385742187432, 59.607123114056485 ], [ -132.079272460937545, 59.592596746869226 ], [ -132.072509765624773, 59.57904694218162 ], [ -132.070556640625, 59.562762762494117 ], [ -132.078662109374761, 59.513251043744148 ], [ -132.077563476562517, 59.501410223431563 ], [ -132.064013671875045, 59.464618231244117 ], [ -132.056884765624829, 59.453802801556634 ], [ -132.031249999999744, 59.436395574994059 ], [ -131.98784179687479, 59.394598699994091 ], [ -131.972900390625, 59.388617254681613 ], [ -131.968554687500074, 59.385443426556563 ], [ -131.970629882812716, 59.37836334843167 ], [ -131.977294921874886, 59.371356512494053 ], [ -131.995898437499989, 59.364203192181591 ], [ -131.996459960937472, 59.354999090619039 ], [ -131.991992187500188, 59.344598699994187 ], [ -131.986572265625114, 59.337103582806719 ], [ -131.973632812499972, 59.326849676556776 ], [ -131.970336914062472, 59.321112371869063 ], [ -131.967407226562614, 59.291083074993999 ], [ -131.964355468749858, 59.282416082806606 ], [ -131.959277343749989, 59.278753973431591 ], [ -131.944995117187489, 59.272333074993952 ], [ -131.921875, 59.244208074994155 ], [ -131.911181640624847, 59.237860418744084 ], [ -131.897583007812244, 59.233172918744053 ], [ -131.853149414062358, 59.20368073124412 ], [ -131.842651367187386, 59.185565496869124 ], [ -131.836181640624886, 59.162665106244255 ], [ -131.827075195312489, 59.143085028119181 ], [ -131.808471679687528, 59.134784246869025 ], [ -131.68864746093729, 59.134784246869117 ], [ -131.627124023437489, 59.121893621869226 ], [ -131.513427734375114, 59.079046942181549 ], [ -131.454638671874761, 59.066522528119101 ], [ -131.264892578125057, 59.072381903119116 ], [ -131.208251953124858, 59.086981512494027 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 7, "name": "Donjek", "rivernum": 596, "length": 205578.27 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.0067138671875, 61.414496160931542 ], [ -139.033203125000227, 61.422674871869077 ], [ -139.060180664062358, 61.428338934369172 ], [ -139.08447265625, 61.442450262494226 ], [ -139.107910156250142, 61.45827057499411 ], [ -139.137744140624875, 61.464544989056641 ], [ -139.159179687500085, 61.476922918744123 ], [ -139.181152343750142, 61.50499909061908 ], [ -139.20390624999979, 61.51911041874417 ], [ -139.25895996093746, 61.539374090619113 ], [ -139.303271484374847, 61.556952215619006 ], [ -139.319335937499972, 61.578876043744188 ], [ -139.339038085937432, 61.596795965619002 ], [ -139.361083984374915, 61.609198309369127 ], [ -139.375488281249829, 61.63014557499411 ], [ -139.390747070312131, 61.688495184369096 ], [ -139.410327148437432, 61.729681707806648 ], [ -139.444628906250102, 61.751654364056563 ], [ -139.469116210937699, 61.784002996869148 ], [ -139.476318359374972, 61.802801824994091 ], [ -139.484912109374818, 61.81513092655662 ], [ -139.499389648437585, 61.835956121869131 ], [ -139.506591796875142, 61.854681707806741 ], [ -139.523974609375017, 61.881952215619073 ], [ -139.548632812500188, 61.902362371869039 ], [ -139.584887695312688, 61.907171942181598 ], [ -139.622070312500028, 61.905877996869037 ], [ -139.678100585937216, 61.899481512494091 ], [ -139.727587890625045, 61.893182684369158 ], [ -139.782519531249847, 61.917987371868968 ], [ -139.803833007812301, 61.922919012494091 ], [ -139.817016601562784, 61.934881903119113 ], [ -139.833496093750171, 61.942572332806506 ], [ -139.849536132812375, 61.947699285931606 ], [ -139.861132812499875, 61.959491278119316 ], [ -139.87724609374979, 61.972479559369013 ], [ -139.875048828124875, 61.991644598431776 ], [ -139.862670898437642, 62.007513739056733 ], [ -139.873339843750074, 62.022162176556783 ], [ -139.890429687499989, 62.033221746869117 ], [ -139.894531250000028, 62.050409246869222 ], [ -139.874267578124858, 62.068963934369144 ], [ -139.853393554687472, 62.085882879681527 ], [ -139.874560546874932, 62.102484442181535 ], [ -139.912475585937614, 62.108905340619202 ], [ -139.920410156250114, 62.13312409061907 ], [ -139.918457031250085, 62.158954168744216 ], [ -139.901245117187756, 62.179510809369148 ], [ -139.877001953125188, 62.191913153119209 ], [ -139.839648437500045, 62.23341705936916 ], [ -139.798388671874989, 62.247626043744191 ], [ -139.74418945312479, 62.265692449994056 ], [ -139.687133789062557, 62.273944403119167 ], [ -139.624755859375, 62.288763739056613 ], [ -139.561889648437671, 62.300848699994162 ], [ -139.501147460937574, 62.304803778119201 ], [ -139.47021484375, 62.31000397343167 ], [ -139.443481445312642, 62.320990301556499 ], [ -139.4375, 62.357855535931627 ], [ -139.452929687499818, 62.377508856243992 ], [ -139.467407226562443, 62.393377996869091 ], [ -139.494799804687233, 62.43532135624416 ], [ -139.491870117187517, 62.483221746869219 ], [ -139.481982421874676, 62.504950262494106 ], [ -139.483398437500085, 62.56159088749407 ], [ -139.511401367187489, 62.589667059369198 ], [ -139.547485351562614, 62.609686590619198 ], [ -139.591479492187375, 62.609686590619255 ], [ -139.643554687500028, 62.58966705936902 ], [ -139.707568359374847, 62.565619207806648 ], [ -139.75390625, 62.557440496868963 ], [ -139.789428710937614, 62.561712957806542 ], [ -139.81298828125, 62.571966864056833 ], [ -139.83183593749996, 62.589544989056606 ], [ -139.849291992187489, 62.608099676556705 ], [ -139.869628906249915, 62.621600653119266 ], [ -139.8992919921875, 62.620062567181442 ], [ -139.928955078125199, 62.612860418744134 ], [ -139.991748046875188, 62.613641668744179 ], [ -140.005249023437614, 62.619256903119165 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 3, "name": "Yukon", "rivernum": 53, "length": 2772086.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.766357421874886, 61.628729559369134 ], [ -164.779467773437631, 61.637079168743981 ], [ -164.813354492187585, 61.653631903119233 ], [ -164.868164062500114, 61.661688543744098 ], [ -164.890795898437517, 61.66803619999417 ], [ -164.903491210937489, 61.677118231243988 ], [ -164.892260742187659, 61.698358465619044 ], [ -164.80961914062479, 61.73078034061929 ], [ -164.786791992187545, 61.746039129681691 ], [ -164.792895507812545, 61.748846746869127 ], [ -164.807299804687659, 61.759711004681535 ], [ -164.690356445312403, 61.760199285931648 ], [ -164.628955078124932, 61.774969793744141 ], [ -164.590014648437716, 61.774847723431584 ], [ -164.561157226562642, 61.767157293744134 ], [ -164.564257812500102, 61.749090887494063 ], [ -164.587402343750171, 61.748602606243978 ], [ -164.625000000000199, 61.753485418743999 ], [ -164.653491210937659, 61.751971746869096 ], [ -164.648974609375131, 61.73236725468167 ], [ -164.625048828124989, 61.721991278119255 ], [ -164.592089843749847, 61.723895574994145 ], [ -164.4697265625, 61.747748114056542 ], [ -164.454394531250102, 61.755926824994106 ], [ -164.444458007812358, 61.764105535931726 ], [ -164.422729492187642, 61.775751043744101 ], [ -164.413134765624818, 61.783563543744137 ], [ -164.392993164062602, 61.795526434369016 ], [ -164.363940429687659, 61.801825262493985 ], [ -164.333740234375085, 61.800604559369155 ], [ -164.310424804687244, 61.790106512494184 ], [ -164.296435546875159, 61.781073309369035 ], [ -164.282153320312375, 61.777850653119231 ], [ -164.267578124999773, 61.778192449994208 ], [ -164.230834960937671, 61.784784246869016 ], [ -164.226733398437545, 61.790228582806513 ], [ -164.226928710937415, 61.797430731244226 ], [ -164.218261718750313, 61.807440496868999 ], [ -164.203857421875171, 61.812616278119059 ], [ -164.171630859374943, 61.812323309369155 ], [ -164.156176757812716, 61.814960028119017 ], [ -164.146728515624915, 61.820746160931606 ], [ -164.132617187499875, 61.835711981244131 ], [ -164.122070312500171, 61.841620184368992 ], [ -164.12236328124996, 61.856268621869063 ], [ -164.108642578124943, 61.872748114056662 ], [ -164.089477539062329, 61.887518621869212 ], [ -164.073608398437642, 61.896844793744116 ], [ -164.05126953125, 61.907049871869106 ], [ -164.038818359375, 61.910174871869103 ], [ -164.026416015625102, 61.909857489056712 ], [ -164.020385742187614, 61.905951239056577 ], [ -164.008300781250227, 61.89025299686908 ], [ -163.999145507812557, 61.883172918743981 ], [ -164.002441406250199, 61.877704168744074 ], [ -164.001513671875102, 61.871112371869039 ], [ -163.997607421874847, 61.863641668744151 ], [ -163.99169921875, 61.855829168744116 ], [ -163.997607421875159, 61.854315496869042 ], [ -164.006884765624875, 61.849920965619084 ], [ -164.012817382812756, 61.848456121869027 ], [ -163.989306640625045, 61.831854559369106 ], [ -163.947314453125159, 61.824774481244148 ], [ -163.907153320312432, 61.828680731244198 ], [ -163.889282226562528, 61.845038153119212 ], [ -163.882861328125017, 61.860541082806613 ], [ -163.867968750000244, 61.859442449994056 ], [ -163.850830078124943, 61.84943268436917 ], [ -163.837768554687329, 61.838495184369101 ], [ -163.836962890625188, 61.826776434369016 ], [ -163.853637695312614, 61.818426824994056 ], [ -163.889282226562528, 61.807440496869027 ], [ -163.827514648437415, 61.807440496869198 ], [ -163.815356445312489, 61.805243231244205 ], [ -163.793334960937671, 61.795477606243999 ], [ -163.782836914062472, 61.793158270306677 ], [ -163.767504882812574, 61.792181707806563 ], [ -163.756640625000045, 61.789252020306485 ], [ -163.738452148437659, 61.780145574994116 ], [ -163.741259765625017, 61.778753973431598 ], [ -163.7431640625, 61.773993231244141 ], [ -163.741943359375114, 61.768866278119098 ], [ -163.735351562499829, 61.766546942181776 ], [ -163.704345703124801, 61.766546942181691 ], [ -163.704345703124801, 61.773309637494251 ], [ -163.709765625000017, 61.776483465619094 ], [ -163.712646484374915, 61.779730535931542 ], [ -163.71484375, 61.783148504681591 ], [ -163.717944335937489, 61.786981512494123 ], [ -163.663330078125114, 61.781610418744137 ], [ -163.652465820312614, 61.783563543744052 ], [ -163.648193359374773, 61.792352606244172 ], [ -163.646289062500074, 61.813544012494091 ], [ -163.642871093750102, 61.821112371869106 ], [ -163.613574218750216, 61.832782293744025 ], [ -163.577685546875017, 61.829217840619187 ], [ -163.511889648437659, 61.814960028119074 ], [ -163.441772460937301, 61.813788153119184 ], [ -163.404711914062659, 61.81842682499402 ], [ -163.378784179687614, 61.831659246869151 ], [ -163.366943359375199, 61.834540106244006 ], [ -163.329516601562318, 61.827020574994194 ], [ -163.313281250000045, 61.827948309369056 ], [ -163.303027343750102, 61.83385651249403 ], [ -163.288134765625045, 61.848993231244101 ], [ -163.279785156249801, 61.855829168744172 ], [ -163.279785156250114, 61.862127996869162 ], [ -163.298999023437233, 61.869501043744222 ], [ -163.278320312499943, 61.875677801556598 ], [ -163.239550781250159, 61.878436590618989 ], [ -163.224536132812432, 61.889422918744103 ], [ -163.217651367187386, 61.904730535931662 ], [ -163.2196044921875, 61.917181707806577 ], [ -163.227416992187671, 61.927801824994162 ], [ -163.276367187500142, 61.96576569218162 ], [ -163.286010742187443, 61.978778387494238 ], [ -163.299926757812329, 62.021551824994283 ], [ -163.309375000000102, 62.043963934369145 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.208911132812602, 65.178412176556677 ], [ -152.262988281250216, 65.171087957806549 ], [ -152.348876953125284, 65.151727606244023 ], [ -152.376391601562545, 65.141302801556591 ], [ -152.42351074218783, 65.115301824994049 ], [ -152.451953125000188, 65.110126043744046 ], [ -152.485351562499858, 65.114447332806705 ], [ -152.575439453124972, 65.144891668744023 ], [ -152.653491210937489, 65.145770574994103 ], [ -152.69475097656246, 65.151239324994179 ], [ -152.712646484375114, 65.168817449994066 ], [ -152.716479492187176, 65.176874090619251 ], [ -152.743334960937659, 65.196405340619108 ], [ -152.760131835937415, 65.205511785931691 ], [ -152.78129882812496, 65.20624420780662 ], [ -152.822509765625114, 65.200140692181606 ], [ -152.910644531249801, 65.200140692181634 ], [ -152.962573242187403, 65.181341864056719 ], [ -152.980151367187545, 65.178412176556492 ], [ -153.082397460937557, 65.186542059369131 ], [ -153.19951171874996, 65.148065496869179 ], [ -153.212280273437472, 65.13434479374412 ], [ -153.226000976562489, 65.109686590619091 ], [ -153.258666992187244, 65.102972723431762 ], [ -153.482910156250114, 65.117010809369049 ], [ -153.497607421875045, 65.120184637494035 ], [ -153.53142089843746, 65.134295965619103 ], [ -153.548706054687472, 65.137469793744089 ], [ -153.564453124999829, 65.135077215619205 ], [ -153.610766601562375, 65.117010809369191 ], [ -153.685839843750102, 65.103949285931577 ], [ -153.727343750000017, 65.085565496869236 ], [ -153.754516601562671, 65.080682684369108 ], [ -153.780566406250045, 65.071356512494148 ], [ -153.839843749999972, 65.067450262494063 ], [ -153.999023437500085, 65.035223699994177 ], [ -154.151367187499943, 64.994086004681677 ], [ -154.313403320312261, 64.922796942181691 ], [ -154.370483398437727, 64.918329168744108 ], [ -154.38688964843746, 64.922308660931662 ], [ -154.416748046875142, 64.934759832806662 ], [ -154.432543945312261, 64.939471746869103 ], [ -154.448413085937574, 64.94020416874416 ], [ -154.545166015624886, 64.923846746869089 ], [ -154.578857421874972, 64.935077215619089 ], [ -154.669726562500131, 64.939813543744023 ], [ -154.821411132812614, 64.908710028119131 ], [ -154.934936523437557, 64.89569733280662 ], [ -155.022338867187642, 64.87892487186916 ], [ -155.098681640624989, 64.877069403119165 ], [ -155.193164062499676, 64.860467840619208 ], [ -155.282836914062671, 64.832391668744137 ], [ -155.381469726562557, 64.789618231244148 ], [ -155.491870117187659, 64.750360418744066 ], [ -155.546020507812784, 64.74713776249412 ], [ -155.720458984374659, 64.767523504681762 ], [ -155.793872070312659, 64.760687567181648 ], [ -155.937060546875131, 64.724920965619063 ], [ -156.007861328124989, 64.719745184369089 ], [ -156.172973632812671, 64.725897528119148 ], [ -156.206225585937602, 64.72243073124406 ], [ -156.328295898437688, 64.68305084843162 ], [ -156.414916992187386, 64.665301824994245 ], [ -156.486938476562415, 64.67677643436906 ], [ -156.550048828125057, 64.66681549686902 ], [ -156.622558593749716, 64.663104559369273 ], [ -156.694335937499773, 64.643988348431691 ], [ -156.772875976562545, 64.64398834843152 ], [ -156.782885742187517, 64.653387762494233 ], [ -156.776782226562489, 64.674676824994137 ], [ -156.755175781249761, 64.712909246869202 ], [ -156.787475585937557, 64.728045965619188 ], [ -156.828369140624886, 64.740252996869145 ], [ -156.870483398437443, 64.744818426556662 ], [ -156.937548828125102, 64.729681707806634 ], [ -156.971191406250057, 64.735126043744046 ], [ -157.001464843749886, 64.749090887494177 ], [ -157.022705078124972, 64.767523504681677 ], [ -157.027514648437261, 64.778143621869233 ], [ -157.028686523437642, 64.787909246869006 ], [ -157.031982421874972, 64.797967840619123 ], [ -157.043139648437261, 64.809149481244248 ], [ -157.057495117187614, 64.814886785931634 ], [ -157.1148681640625, 64.822772528119103 ], [ -157.242846679687744, 64.80333893436908 ], [ -157.28337402343746, 64.809149481244248 ], [ -157.310424804687472, 64.819159246869162 ], [ -157.33366699218746, 64.82521393436906 ], [ -157.35734863281229, 64.823993231244131 ], [ -157.385791015624932, 64.812567449994177 ], [ -157.416381835937557, 64.806341864056634 ], [ -157.445239257812318, 64.816278387494151 ], [ -157.49565429687496, 64.850116278119202 ], [ -157.530883789062443, 64.862372137494106 ], [ -157.716552734375085, 64.865668035931563 ], [ -157.796630859374943, 64.87518952030662 ], [ -157.868090820312489, 64.868426824994117 ], [ -157.890747070312614, 64.864447332806591 ], [ -157.913378906250017, 64.857538153119094 ], [ -157.932373046874886, 64.835882879681577 ], [ -157.962524414062671, 64.801385809369023 ], [ -157.983276367187472, 64.782782293744162 ], [ -158.051513671875227, 64.744989324994094 ], [ -158.133789062500171, 64.707391668744137 ], [ -158.1484375, 64.696161199993981 ], [ -158.16557617187496, 64.686102606244106 ], [ -158.252685546874943, 64.671747137494222 ], [ -158.277148437499818, 64.660419012494188 ], [ -158.294067382812557, 64.64069244999412 ], [ -158.3165283203125, 64.598993231244108 ], [ -158.330981445312432, 64.579217840619066 ], [ -158.347656249999858, 64.564642645306648 ], [ -158.367236328125244, 64.55683014530662 ], [ -158.409106445312148, 64.549627996869191 ], [ -158.428955078124915, 64.541815496869091 ], [ -158.437255859375028, 64.535272528119165 ], [ -158.468261718749773, 64.499579168744205 ], [ -158.483886718750085, 64.464862371869145 ], [ -158.504394531249915, 64.441278387494179 ], [ -158.529785156249886, 64.427313543744177 ], [ -158.587524414062443, 64.407660223431762 ], [ -158.608520507812557, 64.397333074994123 ], [ -158.640063476562659, 64.377069403119066 ], [ -158.694458007812443, 64.360785223431705 ], [ -158.706225585937659, 64.354803778119134 ], [ -158.714648437500102, 64.345770574994049 ], [ -158.717944335937716, 64.332586981243963 ], [ -158.715869140624989, 64.32062409061912 ], [ -158.689257812500102, 64.270941473431577 ], [ -158.683349609374943, 64.262884832806719 ], [ -158.674609374999989, 64.255072332806677 ], [ -158.658813476562244, 64.244501043744194 ], [ -158.651245117187358, 64.237909246869151 ], [ -158.647583007812727, 64.230829168744037 ], [ -158.633544921874886, 64.21283600468179 ], [ -158.634033203125171, 64.195624090619106 ], [ -158.643554687499829, 64.17872955936916 ], [ -158.740283203125045, 64.058710028119151 ], [ -158.744555664062602, 64.050726629681563 ], [ -158.751025390624903, 64.03209869999408 ], [ -158.764331054687489, 64.017157293744191 ], [ -158.786743164062642, 64.008075262494131 ], [ -158.881958007812557, 63.985296942181627 ], [ -158.929003906250045, 63.968036199994188 ], [ -158.937182617187517, 63.955096746869131 ], [ -158.9515380859375, 63.945990301556762 ], [ -159.009692382812489, 63.924872137494084 ], [ -159.023193359374943, 63.916205145306613 ], [ -159.029541015624915, 63.906439520306662 ], [ -159.155444335937716, 63.876092840619094 ], [ -159.185839843750159, 63.872919012493959 ], [ -159.195117187499847, 63.870306707806563 ], [ -159.209643554687631, 63.857367254681684 ], [ -159.210620117187517, 63.839178778119148 ], [ -159.207446289062545, 63.81891510624417 ], [ -159.209155273437659, 63.80023834843152 ], [ -159.213183593749932, 63.792181707806655 ], [ -159.218383789062273, 63.785101629681762 ], [ -159.224731445312557, 63.779413153119094 ], [ -159.231982421875273, 63.775506903119073 ], [ -159.29631347656246, 63.763251043744091 ], [ -159.316333007812318, 63.756293035931641 ], [ -159.334399414062432, 63.745965887494066 ], [ -159.349731445312671, 63.731024481244091 ], [ -159.359130859375, 63.714960028119123 ], [ -159.374072265625188, 63.663641668744042 ], [ -159.381347656249972, 63.64918854374406 ], [ -159.391235351562585, 63.63690827030667 ], [ -159.444506835937716, 63.59516022343152 ], [ -159.467211914062659, 63.584662176556549 ], [ -159.472949218750045, 63.578485418744116 ], [ -159.476245117187375, 63.57147858280662 ], [ -159.482104492187432, 63.547870184369074 ], [ -159.494384765625, 63.522821356244208 ], [ -159.496459960937443, 63.514276434369116 ], [ -159.480883789062545, 63.489520574994174 ], [ -159.447558593750074, 63.464422918744091 ], [ -159.422656250000045, 63.437689520306606 ], [ -159.432495117187557, 63.408075262494116 ], [ -159.448852539062472, 63.399286199994137 ], [ -159.510668945312403, 63.388251043744177 ], [ -159.600146484374932, 63.354608465619052 ], [ -159.606494140625216, 63.350213934369009 ], [ -159.612109374999989, 63.341009832806748 ], [ -159.611987304687347, 63.332342840619297 ], [ -159.610034179687545, 63.323553778119205 ], [ -159.610351562500028, 63.314032293744148 ], [ -159.621582031249858, 63.30219147343162 ], [ -159.642333984374659, 63.294623114056613 ], [ -159.682666015625159, 63.285345770306641 ], [ -159.698608398437358, 63.276800848431662 ], [ -159.71135253906246, 63.264960028119248 ], [ -159.720996093749761, 63.250360418744222 ], [ -159.727465820312744, 63.233417059369032 ], [ -159.729052734374932, 63.214911199994155 ], [ -159.725878906250244, 63.181415106243968 ], [ -159.732348632812545, 63.16412994999412 ], [ -159.752734374999761, 63.136297918744219 ], [ -159.761035156249875, 63.121210028119194 ], [ -159.764404296875057, 63.105340887494094 ], [ -159.760375976562472, 63.07721588749412 ], [ -159.761474609375028, 63.067987371869023 ], [ -159.766284179687318, 63.059100653119181 ], [ -159.773852539062517, 63.051532293744032 ], [ -159.782836914062727, 63.045355535931591 ], [ -159.791870117187472, 63.040716864056662 ], [ -159.8125, 63.034002996869148 ], [ -159.903198242187671, 63.017401434369113 ], [ -159.949584960937727, 63.000189520306542 ], [ -159.97246093749979, 62.986835028119231 ], [ -160.003955078125102, 62.962347723431527 ], [ -160.029711914062716, 62.933417059368992 ], [ -160.046801757812261, 62.899676824994181 ], [ -160.052416992187318, 62.860296942181655 ], [ -160.061157226562273, 62.856390692181783 ], [ -160.066943359375102, 62.85053131718157 ], [ -160.070361328125074, 62.842962957806478 ], [ -160.071948242187261, 62.833612371869222 ], [ -160.070605468750045, 62.82213776249408 ], [ -160.061083984374733, 62.80329010624417 ], [ -160.058398437500017, 62.793329168744179 ], [ -160.063842773437642, 62.775824285931598 ], [ -160.090454101562472, 62.74596588749408 ], [ -160.095385742187432, 62.727850653119141 ], [ -160.132739257812773, 62.726825262493982 ], [ -160.144409179687443, 62.722919012494167 ], [ -160.153808593750085, 62.716327215618982 ], [ -160.16264648437496, 62.707464910931492 ], [ -160.170214843749818, 62.697528387494145 ], [ -160.176074218749875, 62.687518621869117 ], [ -160.179565429687386, 62.678534246869155 ], [ -160.181274414062528, 62.669378973431627 ], [ -160.181079101562347, 62.659857489056705 ], [ -160.178833007812443, 62.650018621869194 ], [ -160.164306640624972, 62.613299871869117 ], [ -160.163696289062386, 62.606073309369137 ], [ -160.173144531249847, 62.558368231244089 ], [ -160.17041015625, 62.548651434369162 ], [ -160.159594726562318, 62.539740301556712 ], [ -160.129516601562329, 62.523065496869101 ], [ -160.120849609374915, 62.516131903119089 ], [ -160.116699218750028, 62.510565496869233 ], [ -160.110644531249818, 62.497870184369212 ], [ -160.107177734374716, 62.492621160931698 ], [ -160.103442382812574, 62.489520574993989 ], [ -160.0775146484375, 62.475775457806513 ], [ -160.053222656250085, 62.466742254681591 ], [ -160.035766601562614, 62.457709051556677 ], [ -160.020922851562659, 62.44574616093162 ], [ -160.017089843749943, 62.440863348431662 ], [ -160.008349609374989, 62.424627996869006 ], [ -159.995117187500227, 62.410419012493968 ], [ -159.991625976562432, 62.404486395306648 ], [ -159.98674316406229, 62.39332916874416 ], [ -159.967333984374989, 62.368426824994053 ], [ -159.963623046874943, 62.358587957806627 ], [ -159.962939453125131, 62.320868231244084 ], [ -159.964160156249989, 62.313421942181606 ], [ -159.971118164062261, 62.293475653119252 ], [ -159.972656249999972, 62.286566473431535 ], [ -159.966308593749972, 62.262152410931741 ], [ -159.945556640625171, 62.249945379681598 ], [ -159.786181640624875, 62.23615143436917 ], [ -159.751513671874875, 62.227411199994066 ], [ -159.724121093749972, 62.205438543744236 ], [ -159.722705078124932, 62.174823309369081 ], [ -159.7381591796875, 62.142645574994219 ], [ -159.761401367187489, 62.116327215619101 ], [ -159.801684570312545, 62.09337799686908 ], [ -159.846362304687489, 62.084588934369187 ], [ -159.960937499999886, 62.077508856244179 ], [ -159.982104492187432, 62.071966864056563 ], [ -160.001879882812659, 62.063055731244084 ], [ -160.019409179687358, 62.049994207806677 ], [ -160.030932617187261, 62.036200262494155 ], [ -160.057177734374818, 61.98932526249417 ], [ -160.086108398437432, 61.959344793744123 ], [ -160.123168945312358, 61.942987371869222 ], [ -160.164306640624972, 61.935614324994056 ], [ -160.405322265624932, 61.922430731244091 ], [ -160.528320312500057, 61.921820379681449 ], [ -160.61186523437533, 61.935419012494016 ], [ -160.714892578125102, 61.942450262494148 ], [ -160.953906250000102, 61.937689520306549 ], [ -160.974487304687443, 61.93385651249401 ], [ -161.053759765624847, 61.905877996869179 ], [ -161.124511718750227, 61.88996002811912 ], [ -161.143188476562557, 61.881048895306641 ], [ -161.152880859375017, 61.878363348431677 ], [ -161.191894531250057, 61.877704168744074 ], [ -161.292041015624932, 61.853045965619117 ], [ -161.316577148437659, 61.84308502811907 ], [ -161.345141601562631, 61.825506903119091 ], [ -161.359252929687329, 61.805926824994096 ], [ -161.340209960937358, 61.789862371869184 ], [ -161.3389892578125, 61.784491278119084 ], [ -161.327197265624875, 61.77101471561916 ], [ -161.319580078124886, 61.757586981244231 ], [ -161.319140625000045, 61.743524481244187 ], [ -161.328662109375045, 61.728461004681677 ], [ -161.393432617187727, 61.671747137493917 ], [ -161.428271484375159, 61.649237371869106 ], [ -161.467578124999989, 61.641913153119184 ], [ -161.551391601562329, 61.636493231244181 ], [ -161.632324218749744, 61.620428778119155 ], [ -161.722705078124932, 61.620965887494108 ], [ -161.803588867187557, 61.608099676556598 ], [ -161.8231201171875, 61.602240301556527 ], [ -161.825561523437585, 61.601019598431563 ], [ -161.876879882812602, 61.576044012494087 ], [ -161.914306640624858, 61.565008856244042 ], [ -161.9520263671875, 61.567328192181535 ], [ -161.975219726562699, 61.586127020306542 ], [ -161.969360351562671, 61.624579168744056 ], [ -161.96147460937496, 61.6404483093689 ], [ -161.956665039062358, 61.655462957806677 ], [ -161.957519531249943, 61.670233465619162 ], [ -161.96660156249979, 61.685614324994241 ], [ -162.049926757812472, 61.766546942181634 ], [ -162.120288085937489, 61.819598699994117 ], [ -162.137084960937557, 61.836297918744108 ], [ -162.150512695312472, 61.856561590619229 ], [ -162.16606445312496, 61.892840887494152 ], [ -162.176025390625085, 61.909198309369053 ], [ -162.190795898437557, 61.922723699994023 ], [ -162.209399414062688, 61.931586004681563 ], [ -162.229907226562517, 61.936542059369089 ], [ -162.271655273437773, 61.938421942181549 ], [ -162.384326171874847, 61.919940496869167 ], [ -162.406127929687386, 61.919208074994138 ], [ -162.425219726562489, 61.92492096561913 ], [ -162.437426757812233, 61.941351629681741 ], [ -162.443725585937415, 61.979364324994158 ], [ -162.449877929687545, 61.996405340619262 ], [ -162.464843749999829, 62.009833074994141 ], [ -162.484423828125216, 62.016546942181535 ], [ -162.5057373046875, 62.018011785931478 ], [ -162.527026367187716, 62.015326239056513 ], [ -162.656494140624858, 61.97365143436911 ], [ -162.665332031250045, 61.966742254681726 ], [ -162.671557617187403, 61.957464910931726 ], [ -162.683032226562489, 61.920965887494148 ], [ -162.689990234375102, 61.912176824994027 ], [ -162.702270507812329, 61.906317449994162 ], [ -162.730224609375028, 61.903436590619158 ], [ -162.754077148437318, 61.909247137494155 ], [ -162.775878906249858, 61.92121002811912 ], [ -162.797778320312347, 61.936786199994209 ], [ -162.823852539062443, 61.949774481244248 ], [ -162.851562499999829, 61.953436590619091 ], [ -162.879443359375017, 61.948675848431691 ], [ -162.906176757812517, 61.936590887494077 ], [ -162.94938964843729, 61.91090729374416 ], [ -162.972412109375028, 61.902411199994084 ], [ -162.998535156249943, 61.899847723431677 ], [ -163.063354492187386, 61.911932684369262 ], [ -163.130249023437642, 61.916034246869032 ], [ -163.154711914062517, 61.922137762494017 ], [ -163.176513671875057, 61.93053619999403 ], [ -163.195922851562358, 61.942694403119205 ], [ -163.235961914062443, 61.984930731244091 ], [ -163.241699218750142, 61.994647528119081 ], [ -163.250610351562557, 62.019794012494152 ], [ -163.257006835937347, 62.030633856244194 ], [ -163.268188476562671, 62.03917877811908 ], [ -163.286303710937545, 62.044623114056577 ], [ -163.344531249999733, 62.045477606244134 ], [ -163.406372070312386, 62.057391668744167 ], [ -163.469360351562386, 62.082294012494103 ], [ -163.482788085937585, 62.084662176556641 ], [ -163.494506835937699, 62.084344793743988 ], [ -163.556323242187602, 62.075751043744077 ], [ -163.698779296874847, 62.086200262494181 ], [ -163.849291992187233, 62.097479559369106 ], [ -163.879077148437716, 62.108172918744089 ], [ -163.905200195312631, 62.127948309368982 ], [ -163.964892578124989, 62.184271551556662 ], [ -163.974365234374858, 62.196405340619144 ], [ -163.977709960937602, 62.209906317181535 ], [ -163.9713134765625, 62.224627996869067 ], [ -163.957934570312403, 62.237616278119191 ], [ -163.943969726562699, 62.248553778119003 ], [ -163.931445312499847, 62.26076080936911 ], [ -163.92253417968746, 62.27770416874413 ], [ -163.910034179687329, 62.312445379681634 ], [ -163.900390625, 62.32643463749411 ], [ -163.869555664062432, 62.351629949994084 ], [ -163.858764648437756, 62.363544012494124 ], [ -163.852905273437386, 62.378045965619123 ], [ -163.853198242187489, 62.434198309369023 ], [ -163.850463867187329, 62.455926824994286 ], [ -163.851562500000171, 62.462836004681662 ], [ -163.86137695312496, 62.475946356244087 ], [ -163.909106445312233, 62.504217840619226 ], [ -163.920825195312631, 62.518133856244098 ], [ -163.9375, 62.549676824994208 ], [ -163.948413085937716, 62.563836981244023 ], [ -163.966235351562489, 62.576434637494124 ], [ -164.028491210937574, 62.600165106244077 ], [ -164.057910156250102, 62.621283270306584 ], [ -164.106689453124829, 62.675726629681662 ], [ -164.135253906250114, 62.698309637494049 ], [ -164.156176757812375, 62.707342840619049 ], [ -164.178100585937557, 62.712347723431506 ], [ -164.387084960937443, 62.730902410931577 ], [ -164.452807617187602, 62.748407293744073 ], [ -164.481689453125057, 62.745306707806648 ] ], [ [ -152.047851562500227, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.020556640624932, 65.172723699994179 ], [ -151.945117187499903, 65.209784246869148 ], [ -151.919970703124932, 65.216180731244151 ], [ -151.765014648437528, 65.233832098431634 ], [ -151.738891601562301, 65.243768621869066 ], [ -151.713378906250341, 65.249701239056506 ], [ -151.689257812500017, 65.244940496869191 ], [ -151.665283203125085, 65.236151434369106 ], [ -151.640014648437443, 65.230096746869194 ], [ -151.509155273437329, 65.231952215619216 ], [ -151.488647460937813, 65.235174871869077 ], [ -151.46831054687479, 65.242059637494165 ], [ -151.453002929687585, 65.249139715619108 ], [ -151.438842773437443, 65.258124090619219 ], [ -151.426147460937443, 65.270086981244219 ], [ -151.420410156250057, 65.272894598431648 ], [ -151.407031249999932, 65.276239324994208 ], [ -151.367919921874943, 65.279974676556535 ], [ -151.356127929687347, 65.284125067181563 ], [ -151.334228515625171, 65.297796942181606 ], [ -151.322436523437261, 65.302679754681677 ], [ -151.310302734375057, 65.304999090619063 ], [ -151.298388671875102, 65.305487371869035 ], [ -151.286743164062557, 65.304022528119148 ], [ -151.27495117187496, 65.300409246869179 ], [ -151.254272460937329, 65.290790106244145 ], [ -151.243896484375085, 65.287420965619077 ], [ -151.230957031249829, 65.286078192181634 ], [ -151.185546874999943, 65.291205145306748 ], [ -151.150317382812801, 65.305194403119046 ], [ -151.081054687499716, 65.348822332806705 ], [ -151.039550781249773, 65.368768621869165 ], [ -150.921435546875074, 65.405096746869077 ], [ -150.802368164062244, 65.439032293744162 ], [ -150.738403320312358, 65.461493231244191 ], [ -150.668383789062545, 65.495379949994074 ], [ -150.660693359374733, 65.497992254681733 ], [ -150.565966796874761, 65.504217840619219 ], [ -150.409838867187602, 65.514520574994009 ], [ -150.309326171875142, 65.515326239056662 ], [ -150.212280273437443, 65.527606512494103 ], [ -150.185229492187432, 65.540838934369063 ], [ -150.177001953125171, 65.562933660931535 ], [ -150.176025390624943, 65.589789129681748 ], [ -150.170776367187187, 65.617499090619262 ], [ -150.141284179687432, 65.654974676556634 ], [ -150.096240234375188, 65.678290106244063 ], [ -150.045410156250114, 65.686712957806662 ], [ -149.998413085937443, 65.679315496869165 ], [ -149.924975585937688, 65.642889715618935 ], [ -149.896362304687244, 65.638373114056677 ], [ -149.874145507812614, 65.640570379681577 ], [ -149.862304687499886, 65.64772369999416 ], [ -149.818041992187375, 65.712591864056677 ], [ -149.801879882812585, 65.755316473431563 ], [ -149.796069335937347, 65.776874090619103 ], [ -149.811401367187585, 65.793719793744089 ], [ -149.844604492187415, 65.790106512494276 ], [ -149.905688476562375, 65.769720770306634 ], [ -150.023193359374829, 65.764593817181648 ], [ -150.089477539062443, 65.774237371869091 ], [ -150.127124023437602, 65.79982330936906 ], [ -150.08598632812496, 65.818622137494103 ], [ -150.030200195312545, 65.833514715619089 ], [ -149.920410156250028, 65.880194403119148 ], [ -149.894287109374829, 65.890326239056691 ], [ -149.878173828124858, 65.900751043744123 ], [ -149.865722656249829, 65.911395574994231 ], [ -149.851440429687329, 65.920184637494145 ], [ -149.829711914062329, 65.924920965619336 ], [ -149.786987304687841, 65.920843817181549 ], [ -149.70361328125, 65.89362213749412 ], [ -149.660693359375045, 65.887518621869106 ], [ -149.623095703124704, 65.893866278119205 ], [ -149.549365234375159, 65.916083074994148 ], [ -149.511108398437443, 65.915228582806591 ], [ -149.434570312499886, 65.885931707806662 ], [ -149.40666503906229, 65.879095770306662 ], [ -149.355151367187432, 65.874579168744049 ], [ -149.300341796874875, 65.879095770306662 ], [ -149.254809570312375, 65.900580145306634 ], [ -149.231201171875085, 65.94684479374412 ], [ -149.236816406249829, 65.970038153119233 ], [ -149.23503417968746, 65.982440496869089 ], [ -149.221240234374932, 65.987811590619103 ], [ -149.205493164062602, 65.98993561405662 ], [ -149.174194335937472, 65.99933502811912 ], [ -149.159179687500028, 66.001483465619074 ], [ -149.145507812500171, 66.005316473431606 ], [ -149.133471679687574, 66.013617254681577 ], [ -149.119873046874886, 66.020819403119148 ], [ -149.101440429687159, 66.021918035931762 ], [ -149.096069335937415, 66.01947662968162 ], [ -149.08732910156246, 66.011004949994131 ], [ -149.080371093750188, 66.00763580936902 ], [ -149.057128906249886, 66.002142645306648 ], [ -149.045410156250114, 66.000921942181591 ], [ -149.032592773437472, 66.001483465619131 ], [ -149.038745117187602, 66.007635809369106 ], [ -149.020996093749716, 66.007440496869208 ], [ -149.005615234375, 66.008978582806591 ], [ -148.993334960937432, 66.015252996869151 ], [ -148.984741210937528, 66.029413153119094 ], [ -149.016601562499829, 66.055926824994103 ], [ -149.020751953125057, 66.069891668744077 ], [ -148.995288085937233, 66.075946356244216 ], [ -148.941650390625114, 66.067499090619179 ], [ -148.916992187500057, 66.066424871869103 ], [ -148.888549804687727, 66.075946356244074 ], [ -148.871826171874829, 66.085760809369177 ], [ -148.846557617187841, 66.097040106243995 ], [ -148.823486328124972, 66.097113348431677 ], [ -148.803027343749932, 66.053729559369216 ], [ -148.779418945312614, 66.049627996869077 ], [ -148.753833007812489, 66.056708074994077 ], [ -148.73771972656283, 66.070379949994077 ], [ -148.736450195312841, 66.082220770306577 ], [ -148.740771484375188, 66.091864324994134 ], [ -148.7427978515625, 66.101752020306691 ], [ -148.734301757812545, 66.114447332806634 ], [ -148.719360351562329, 66.120721746869222 ], [ -148.697192382812489, 66.123651434369179 ], [ -148.612353515624818, 66.125067449994162 ], [ -148.593188476562489, 66.129217840619177 ], [ -148.573242187500142, 66.138617254681535 ], [ -148.562988281249915, 66.146918035931577 ], [ -148.556933593749989, 66.155340887494191 ], [ -148.552172851562517, 66.16400787968152 ], [ -148.545947265624847, 66.172723699994194 ], [ -148.523803710937415, 66.189325262494151 ], [ -148.485839843750085, 66.207538153119145 ], [ -148.442919921874761, 66.217474676556719 ], [ -148.406005859374886, 66.224676824994148 ], [ -148.330322265624915, 66.210711981244231 ], [ -148.292114257812614, 66.221210028119089 ], [ -148.282470703124972, 66.228290106244202 ], [ -148.261645507812631, 66.251581121869094 ], [ -148.245849609374829, 66.259295965619273 ], [ -148.226196289062273, 66.25954010624416 ], [ -148.134033203125028, 66.245794989056591 ], [ -148.113940429687631, 66.24848053593152 ], [ -148.099853515624659, 66.254584051556748 ], [ -148.073852539062727, 66.270086981244049 ], [ -148.059326171875256, 66.275213934369077 ], [ -148.027099609374716, 66.273553778119123 ], [ -147.967211914062517, 66.247577215619131 ], [ -147.936083984374818, 66.241034246869134 ], [ -147.89702148437496, 66.240790106244191 ], [ -147.878466796874932, 66.242865301556691 ], [ -147.861328125000256, 66.24848053593152 ], [ -147.853808593750216, 66.255243231244052 ], [ -147.848193359375131, 66.263983465619106 ], [ -147.84050292968729, 66.271551824994162 ], [ -147.826538085937614, 66.275213934368992 ], [ -147.770678710937347, 66.252313543744179 ], [ -147.738403320312614, 66.24840729374408 ], [ -147.724121093750142, 66.271795965619077 ], [ -147.709716796875, 66.290301824994103 ], [ -147.677172851562261, 66.287713934369108 ], [ -147.620483398437472, 66.268377996869063 ], [ -147.578979492187528, 66.265887762494131 ], [ -147.583618164062386, 66.283270574994191 ], [ -147.620483398437784, 66.32018463749408 ], [ -147.602294921875057, 66.339544989056549 ], [ -147.56059570312496, 66.347113348431577 ], [ -147.483935546875074, 66.350287176556577 ], [ -147.470507812500159, 66.355047918744035 ], [ -147.44255371093746, 66.368597723431634 ], [ -147.429003906250216, 66.371405340619077 ], [ -147.360107421874744, 66.365668035931762 ], [ -147.302490234374858, 66.36212799686912 ], [ -147.230151367187318, 66.356756903119162 ], [ -147.195971679687261, 66.364569403119262 ], [ -147.191040039062642, 66.36786530155652 ], [ -147.186694335937574, 66.372259832806634 ], [ -147.180053710937159, 66.375995184369131 ], [ -147.168627929687489, 66.377630926556577 ], [ -147.14848632812496, 66.376898504681648 ], [ -147.138232421875045, 66.377801824994123 ], [ -147.133837890624847, 66.381293035931662 ], [ -147.132006835937688, 66.395209051556591 ], [ -147.126953125000085, 66.402533270306577 ], [ -147.110278320312659, 66.415716864056563 ], [ -147.094531250000017, 66.421991278119066 ], [ -147.050048828124915, 66.417547918744091 ], [ -147.031494140624886, 66.419208074994188 ], [ -147.022021484375017, 66.42462799686902 ], [ -146.997314453124858, 66.446478582806662 ], [ -146.968749999999886, 66.465887762494134 ], [ -146.943847656249858, 66.473822332806577 ], [ -146.880297851562375, 66.474432684369077 ], [ -146.843798828124932, 66.479437567181591 ], [ -146.791625976562614, 66.502020574994006 ], [ -146.73491210937479, 66.512713934369245 ], [ -146.558105468750057, 66.527655340619134 ], [ -146.391967773437358, 66.546893621869131 ], [ -146.263964843750045, 66.542743231244089 ], [ -146.2489013671875, 66.545477606244035 ], [ -146.202807617187517, 66.563788153119077 ], [ -146.038818359375085, 66.572943426556634 ], [ -145.998657226562358, 66.581561590619089 ], [ -145.966064453124829, 66.601385809369148 ], [ -145.951049804687727, 66.604681707806662 ], [ -145.880053710937403, 66.597967840619148 ], [ -145.840014648437631, 66.609442449994063 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -152.041015624999943, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.832885742187585, 66.610956121869108 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.825439453125057, 66.610956121869108 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.436938476562545, 62.814813543744094 ], [ -138.448242187500028, 62.825751043744106 ], [ -138.461791992187727, 62.833319403119205 ], [ -138.478881835937216, 62.835956121869145 ], [ -138.548095703125114, 62.83473541874401 ], [ -138.563354492187756, 62.837665106244117 ], [ -138.650561523437233, 62.87665436405667 ], [ -138.675708007812574, 62.883807684369195 ], [ -138.706909179687472, 62.888006903119255 ], [ -138.803588867187443, 62.885809637494148 ], [ -138.819458007812614, 62.888861395306698 ], [ -138.864672851562659, 62.902899481244127 ], [ -138.912524414062432, 62.904608465619184 ], [ -139.0205078125, 62.923211981244208 ], [ -139.159057617187273, 62.926825262494063 ], [ -139.176025390624744, 62.931512762494187 ], [ -139.238403320312528, 62.96300690311913 ], [ -139.286914062500017, 62.972723699994113 ], [ -139.362915039062841, 62.986835028119145 ], [ -139.430957031250102, 63.001410223431598 ], [ -139.495776367187489, 63.014422918744188 ], [ -139.515747070312528, 63.026068426556641 ], [ -139.522827148437443, 63.040155340619094 ], [ -139.516479492187329, 63.050653387494123 ], [ -139.506103515624773, 63.060248114056549 ], [ -139.500610351562386, 63.071844793744077 ], [ -139.510253906250114, 63.107245184369042 ], [ -139.533129882812631, 63.134149481244215 ], [ -139.560180664062557, 63.158075262494123 ], [ -139.582568359375045, 63.184759832806648 ], [ -139.580615234374761, 63.206317449994074 ], [ -139.568408203125045, 63.227484442181677 ], [ -139.519165039062671, 63.252386785931698 ], [ -139.463867187499972, 63.270697332806677 ], [ -139.431762695312528, 63.29401276249417 ], [ -139.436279296874858, 63.315545965619187 ], [ -139.459472656250057, 63.333075262494127 ], [ -139.490283203124704, 63.344916082806591 ], [ -139.517993164062375, 63.349237371869158 ], [ -139.526123046874829, 63.35211823124407 ], [ -139.533447265624943, 63.358954168744226 ], [ -139.545043945312443, 63.372870184369049 ], [ -139.555053710937472, 63.37975494999413 ], [ -139.715454101562273, 63.464178778119148 ], [ -139.740234375, 63.500067449994077 ], [ -139.747680664062699, 63.541034246869152 ], [ -139.759082031249903, 63.565936590619145 ], [ -139.761840820312699, 63.600531317181655 ], [ -139.761035156249932, 63.612005926556591 ], [ -139.757324218750199, 63.619891668744081 ], [ -139.755541992187261, 63.628729559369077 ], [ -139.762133789062659, 63.639276434369066 ], [ -139.770751953125028, 63.649603582806606 ], [ -139.774951171875045, 63.657733465619096 ], [ -139.765136718749886, 63.680365301556613 ], [ -139.722583007812403, 63.705023504681748 ], [ -139.712939453124932, 63.722967840619226 ], [ -139.720874023437517, 63.743475653118942 ], [ -139.736450195312585, 63.76027252811911 ], [ -139.747070312499773, 63.776434637494141 ], [ -139.740234374999972, 63.794940496869245 ], [ -139.75297851562496, 63.818304754681641 ], [ -139.753833007812318, 63.831854559369162 ], [ -139.725952148437557, 63.863153387494037 ], [ -139.738085937500045, 63.878436590619167 ], [ -139.737670898437443, 63.89874909061907 ], [ -139.728930664062375, 63.919305731244151 ], [ -139.716308593749943, 63.935174871869165 ], [ -139.711596679687432, 63.944110418744103 ], [ -139.7098388671875, 63.965887762494091 ], [ -139.703002929687642, 63.97614166874412 ], [ -139.689331054687585, 63.985052801556598 ], [ -139.611572265624943, 64.011493231244188 ], [ -139.542480468750057, 64.025580145306606 ], [ -139.507495117187602, 64.027655340619106 ], [ -139.48442382812496, 64.034613348431577 ], [ -139.465820312500171, 64.051459051556478 ], [ -139.454223632812273, 64.071844793744177 ], [ -139.452270507812329, 64.089715887494151 ], [ -139.473315429687602, 64.123895574994123 ], [ -139.4942626953125, 64.144232489056634 ], [ -139.506274414062659, 64.153021551556549 ], [ -139.521118164062557, 64.161444403119091 ], [ -139.543090820312443, 64.170770574994222 ], [ -139.551757812500028, 64.177606512494094 ], [ -139.559741210937602, 64.201678778119103 ], [ -139.570727539062602, 64.207635809369123 ], [ -139.584350585937614, 64.211786199994023 ], [ -139.596850585937375, 64.219427801556662 ], [ -139.600341796874858, 64.226752020306634 ], [ -139.604125976562386, 64.245672918744177 ], [ -139.609863281250057, 64.254217840619063 ], [ -139.625488281250085, 64.261175848431606 ], [ -139.645874023437301, 64.262567449994179 ], [ -139.685595703125216, 64.260443426556492 ], [ -139.760424804687545, 64.26703522343162 ], [ -139.798266601562318, 64.275653387494188 ], [ -139.829589843750028, 64.288397528119063 ], [ -139.853198242187403, 64.310126043744205 ], [ -139.863085937500045, 64.315008856244106 ], [ -139.88041992187496, 64.315301824994179 ], [ -139.911010742187614, 64.304632879681606 ], [ -139.92583007812479, 64.301385809369179 ], [ -139.946166992187415, 64.304144598431606 ], [ -139.952807617187489, 64.312372137494151 ], [ -139.954467773437642, 64.322137762494066 ], [ -139.959960937500114, 64.329364324994131 ], [ -139.976196289062528, 64.332538153119131 ], [ -140.032763671875188, 64.330145574994063 ], [ -140.106079101562528, 64.33209869999412 ], [ -140.168627929687403, 64.339471746869108 ], [ -140.251831054687301, 64.357123114056691 ], [ -140.337939453125159, 64.378534246869037 ], [ -140.447387695312557, 64.390570379681662 ], [ -140.519409179687671, 64.402899481244035 ], [ -140.532763671875131, 64.418036199994091 ], [ -140.521044921875074, 64.445990301556563 ], [ -140.503955078124903, 64.460882879681677 ], [ -140.461425781250171, 64.482245184369091 ], [ -140.442553710937261, 64.496893621869219 ], [ -140.438476562500028, 64.507196356244094 ], [ -140.43999023437479, 64.519720770306719 ], [ -140.446289062500057, 64.530340887494191 ], [ -140.456469726562716, 64.534735418744063 ], [ -140.510058593750045, 64.532245184369074 ], [ -140.521044921874875, 64.527948309369179 ], [ -140.557373046875, 64.516180731244134 ], [ -140.578125, 64.513373114056648 ], [ -140.593383789062386, 64.518011785931662 ], [ -140.605029296874875, 64.530707098431662 ], [ -140.607421874999972, 64.538934637494094 ], [ -140.605346679687699, 64.546991278119037 ], [ -140.603637695312443, 64.558954168744151 ], [ -140.621020507812204, 64.572577215619134 ], [ -140.7044677734375, 64.559686590619066 ], [ -140.733325195312375, 64.569525457806691 ], [ -140.720092773437727, 64.588324285931535 ], [ -140.705371093750045, 64.603949285931549 ], [ -140.701586914062716, 64.617621160931563 ], [ -140.720947265624858, 64.630975653119137 ], [ -140.754028320312642, 64.633319403119089 ], [ -140.820434570312329, 64.616400457806719 ], [ -140.850634765624932, 64.624139715619208 ], [ -140.895019531249801, 64.654852606244191 ], [ -140.898071289062614, 64.66051666874408 ], [ -140.899047851562585, 64.667596746869094 ], [ -140.898437500000171, 64.68219635624412 ], [ -140.904785156250114, 64.687323309369106 ], [ -140.919238281250102, 64.690252996869106 ], [ -141.008300781249943, 64.692450262494091 ], [ -141.0421142578125, 64.704779364056563 ], [ -141.052978515625, 64.706732489056648 ], [ -141.067504882812557, 64.713641668744103 ], [ -141.066406249999886, 64.729681707806662 ], [ -141.059448242187329, 64.747919012494222 ], [ -141.05668945312479, 64.761297918744177 ], [ -141.086914062500028, 64.780951239056591 ], [ -141.186694335937545, 64.792840887494137 ], [ -141.200073242187472, 64.815936590619145 ], [ -141.181201171874989, 64.837103582806549 ], [ -141.121704101562727, 64.864081121868978 ], [ -141.103881835937671, 64.884222723431535 ], [ -141.153247070312631, 64.894842840619063 ], [ -141.203491210937273, 64.898504949994177 ], [ -141.208129882812386, 64.904901434369179 ], [ -141.203906250000074, 64.919134832806648 ], [ -141.193286132812432, 64.939471746869188 ], [ -141.188964843749773, 64.945672918744123 ], [ -141.1826171875, 64.952337957806648 ], [ -141.181518554687671, 64.95778229374406 ], [ -141.192993164062528, 64.959979559369103 ], [ -141.217529296874886, 64.960809637494222 ], [ -141.229858398437301, 64.95997955936916 ], [ -141.259936523437432, 64.951239324994177 ], [ -141.302783203125159, 64.945257879681577 ], [ -141.319580078125199, 64.93605377811906 ], [ -141.335693359374915, 64.92975494999412 ], [ -141.356372070312347, 64.932318426556705 ], [ -141.375122070312329, 64.940985418744177 ], [ -141.385058593750074, 64.953143621869074 ], [ -141.383471679687261, 64.967840887494162 ], [ -141.373779296875171, 64.97833893436902 ], [ -141.362915039062699, 64.987372137494077 ], [ -141.3577880859375, 64.997503973431606 ], [ -141.358447265624903, 65.010614324994151 ], [ -141.360473632812273, 65.022040106244162 ], [ -141.363891601562329, 65.032049871869191 ], [ -141.368579101562545, 65.040716864056549 ], [ -141.376464843750142, 65.05055573124406 ], [ -141.386352539062671, 65.059393621869063 ], [ -141.411621093749943, 65.076190496869145 ], [ -141.407275390625159, 65.092718817181577 ], [ -141.416430664062631, 65.101141668744063 ], [ -141.432421875000102, 65.104266668744003 ], [ -141.4716796875, 65.107440496869117 ], [ -141.515307617187688, 65.120868231244017 ], [ -141.578613281250142, 65.15094635624402 ], [ -141.594848632812386, 65.15368073124408 ], [ -141.617919921874915, 65.152899481244148 ], [ -141.625244140625114, 65.153753973431563 ], [ -141.632568359374829, 65.156561590619148 ], [ -141.646411132812631, 65.16491119999408 ], [ -141.653564453124943, 65.168036199994205 ], [ -141.689453125000227, 65.17872955936906 ], [ -141.744677734374818, 65.204046942181748 ], [ -141.774902343749886, 65.214056707806662 ], [ -141.805175781249773, 65.215521551556634 ], [ -141.866577148437699, 65.20844147343162 ], [ -141.884521484374972, 65.210809637494123 ], [ -141.898437499999829, 65.219671942181677 ], [ -141.923950195312273, 65.243280340619179 ], [ -141.970263671875159, 65.26532623905652 ], [ -141.984252929687614, 65.275824285931577 ], [ -141.991992187499932, 65.287176824994106 ], [ -142.004516601562358, 65.313348699994108 ], [ -142.012451171875142, 65.321893621869066 ], [ -142.041381835937301, 65.330145574994134 ], [ -142.051757812500028, 65.33131744999406 ], [ -142.083300781250216, 65.33014557499402 ], [ -142.191894531249858, 65.347772528119194 ], [ -142.239428710937545, 65.349139715619074 ], [ -142.323242187499744, 65.344256903119174 ], [ -142.40739746093746, 65.354022528119174 ], [ -142.451220703124903, 65.347723699994148 ], [ -142.465454101562329, 65.348578192181762 ], [ -142.481860351562375, 65.355536199994191 ], [ -142.511230468750114, 65.37897369999412 ], [ -142.526733398437415, 65.38873932499412 ], [ -142.553393554687489, 65.398456121869103 ], [ -142.583056640625159, 65.404730535931577 ], [ -142.613208007812574, 65.406439520306577 ], [ -142.641284179687403, 65.402460028119222 ], [ -142.662646484374932, 65.394720770306691 ], [ -142.725463867187614, 65.363959051556549 ], [ -142.743164062500227, 65.358465887494035 ], [ -142.779663085937671, 65.352606512494077 ], [ -142.8299560546875, 65.350043035931606 ], [ -142.953979492187358, 65.374042059369174 ], [ -143.031054687499989, 65.381219793744108 ], [ -143.099975585937557, 65.378119207806591 ], [ -143.165283203125142, 65.384588934369106 ], [ -143.265625000000171, 65.380438543744006 ], [ -143.287646484374818, 65.382342840619145 ], [ -143.311035156249886, 65.380438543744177 ], [ -143.354248046875085, 65.364276434369117 ], [ -143.376586914062528, 65.361444403119094 ], [ -143.430053710937699, 65.369330145306563 ], [ -143.506103515625028, 65.394598699994134 ], [ -143.529541015625, 65.405585028119134 ], [ -143.557666015624761, 65.428827215619151 ], [ -143.56767578124979, 65.432318426556705 ], [ -143.585937499999886, 65.434515692181648 ], [ -143.621826171874858, 65.444354559369188 ], [ -143.659667968750057, 65.448602606244094 ], [ -143.666015625000171, 65.454291082806591 ], [ -143.667846679687614, 65.46295807499412 ], [ -143.712329101562517, 65.530877996869137 ], [ -143.711059570312472, 65.541522528119131 ], [ -143.737963867187432, 65.547479559369037 ], [ -143.810717773437375, 65.589960028119151 ], [ -143.848559570312688, 65.597723699993963 ], [ -143.978930664062659, 65.589960028119123 ], [ -143.991748046875159, 65.59210846561912 ], [ -144.002001953124932, 65.597601629681662 ], [ -144.021362304687443, 65.612127996869191 ], [ -144.064379882812631, 65.62946198124402 ], [ -144.078295898437688, 65.636981512494046 ], [ -144.090502929687545, 65.647162176556506 ], [ -144.116259765625216, 65.676532293744046 ], [ -144.123706054687489, 65.690204168744103 ], [ -144.118774414062273, 65.723211981244148 ], [ -144.089038085937744, 65.750799871869049 ], [ -144.018481445312489, 65.789862371869134 ], [ -144.018310546874943, 65.798041082806648 ], [ -144.0216064453125, 65.804877020306591 ], [ -144.025927734374875, 65.811395574994151 ], [ -144.028808593750028, 65.818719793744052 ], [ -144.027343750000085, 65.82970612186908 ], [ -144.020751953125142, 65.836127020306549 ], [ -144.012133789062347, 65.841180731244222 ], [ -144.004443359375017, 65.84826080936908 ], [ -144.000854492187329, 65.857196356244145 ], [ -144.001586914062358, 65.865668035931719 ], [ -144.005371093750057, 65.87384674686912 ], [ -144.022583007812301, 65.89545319218162 ], [ -144.063964843749915, 65.932562567181691 ], [ -144.159301757812557, 65.962958074994134 ], [ -144.173828124999972, 65.97760651249412 ], [ -144.172729492187585, 65.986639715619162 ], [ -144.168017578124903, 66.001581121869137 ], [ -144.166992187499886, 66.011346746869108 ], [ -144.175219726562602, 66.019159246869052 ], [ -144.194091796875057, 66.024359442181492 ], [ -144.303710937499829, 66.036200262494106 ], [ -144.342211914062659, 66.046210028119077 ], [ -144.358764648437443, 66.06666901249416 ], [ -144.366137695312602, 66.087591864056591 ], [ -144.38420410156246, 66.103705145306634 ], [ -144.427661132812403, 66.124335028119162 ], [ -144.492431640625057, 66.137958074994074 ], [ -144.524047851562244, 66.149359442181705 ], [ -144.53752441406246, 66.169378973431648 ], [ -144.542651367187375, 66.181097723431733 ], [ -144.555224609375244, 66.18488190311902 ], [ -144.570727539062602, 66.185809637494032 ], [ -144.58500976562479, 66.189520574994219 ], [ -144.653125, 66.221795965619123 ], [ -144.660400390624886, 66.227362371869205 ], [ -144.662768554687659, 66.230658270306662 ], [ -144.665649414062443, 66.237811590619103 ], [ -144.667846679687301, 66.241034246869162 ], [ -144.685302734374829, 66.258734442181648 ], [ -144.696777343749972, 66.265643621869131 ], [ -144.723315429687574, 66.270331121869049 ], [ -144.733642578125142, 66.275653387493989 ], [ -144.752929687500114, 66.292596746869009 ], [ -144.765747070312301, 66.300482489056677 ], [ -144.811279296874886, 66.30934479374416 ], [ -144.829711914062443, 66.32350494999416 ], [ -144.86333007812479, 66.363153387494137 ], [ -144.892382812499989, 66.375506903119103 ], [ -144.892700195312614, 66.384833074994006 ], [ -144.886962890625114, 66.402411199994106 ], [ -144.894824218750159, 66.411737371869037 ], [ -144.913085937499943, 66.415716864056677 ], [ -144.947802734374989, 66.419208074994074 ], [ -144.987182617187642, 66.436224676556421 ], [ -145.060180664062642, 66.44891998905662 ], [ -145.103027343749915, 66.471747137494177 ], [ -145.165942382812517, 66.485052801556634 ], [ -145.194824218750142, 66.494940496869077 ], [ -145.233276367187329, 66.510858465619179 ], [ -145.277343750000199, 66.534979559369006 ], [ -145.290454101562574, 66.546454168744063 ], [ -145.301074218749847, 66.56642487186916 ], [ -145.326904296874829, 66.578558660931733 ], [ -145.358569335937716, 66.584051824994077 ], [ -145.452880859374886, 66.581561590619202 ], [ -145.510498046875199, 66.57970612186908 ], [ -145.5347900390625, 66.582879949994094 ], [ -145.62028808593729, 66.592718817181662 ], [ -145.720825195312273, 66.607611395306691 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -138.432421875000102, 62.811224676556471 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.413134765625131, 62.801288153119216 ], [ -138.4256591796875, 62.806341864056719 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.412646484375074, 62.803656317181577 ], [ -138.401709573301076, 62.800728094671811 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.394409179687699, 62.79877350468162 ], [ -138.376098632812557, 62.796820379681655 ], [ -138.356201171875171, 62.797430731244013 ], [ -138.201538085937386, 62.827167059369231 ], [ -138.147753906249932, 62.829706121869201 ], [ -138.038134765625045, 62.821234442181563 ], [ -137.941455078125102, 62.814569403119037 ], [ -137.878344726562347, 62.802997137494067 ], [ -137.847583007812403, 62.801947332806698 ], [ -137.817138671874943, 62.805780340619208 ], [ -137.754077148437602, 62.824969793744181 ], [ -137.721679687499773, 62.828973699994172 ], [ -137.633959960937204, 62.827215887494134 ], [ -137.574633789062489, 62.814813543744009 ], [ -137.554443359374943, 62.815130926556634 ], [ -137.518798828125028, 62.821405340619194 ], [ -137.499560546874648, 62.822284246869039 ], [ -137.484545898437318, 62.818548895306456 ], [ -137.454711914062301, 62.804315496869208 ], [ -137.350512695312631, 62.773871160931691 ], [ -137.326293945312784, 62.773797918744123 ], [ -137.30827636718746, 62.767523504681648 ], [ -137.294116210937318, 62.739081121869084 ], [ -137.275268554687443, 62.723407293744131 ], [ -137.242236328125074, 62.706415106244044 ], [ -137.206665039062528, 62.695624090619226 ], [ -137.138598632812574, 62.685565496869152 ], [ -137.071582031249875, 62.657342840619201 ], [ -137.026977539062244, 62.648309637494116 ], [ -136.978808593749733, 62.629217840619233 ], [ -136.903686523437528, 62.609442449993914 ], [ -136.876513671874847, 62.598895574994152 ], [ -136.852587890625216, 62.58466217655662 ], [ -136.804565429687472, 62.545843817181783 ], [ -136.755908203125131, 62.506537176556634 ], [ -136.742309570312386, 62.499579168744035 ], [ -136.738769531250284, 62.496771551556655 ], [ -136.739062500000131, 62.49054596561912 ], [ -136.740283203124704, 62.483514715619066 ], [ -136.739184570312204, 62.478461004681506 ], [ -136.732836914062631, 62.473407293744145 ], [ -136.673583984375057, 62.450384832806492 ], [ -136.663452148437813, 62.444891668744127 ], [ -136.621704101562699, 62.412616278119138 ], [ -136.598193359374818, 62.401068426556655 ], [ -136.548999023437545, 62.39472077030667 ], [ -136.532836914062614, 62.390008856244002 ], [ -136.505859375000171, 62.376654364056606 ], [ -136.504272460937585, 62.374139715619243 ], [ -136.503588867187375, 62.370184637494184 ], [ -136.502368164062688, 62.365838934369236 ], [ -136.498950195312602, 62.362372137493971 ], [ -136.490405273437432, 62.358417059369081 ], [ -136.48271484374996, 62.356561590619265 ], [ -136.464233398437472, 62.355536199994162 ], [ -136.453247070312671, 62.356952215619138 ], [ -136.444213867187443, 62.360052801556535 ], [ -136.434985351562688, 62.361835028119039 ], [ -136.423583984375, 62.358954168744098 ], [ -136.404711914062489, 62.350531317181677 ], [ -136.399658203125, 62.349310614056478 ], [ -136.393603515625131, 62.344989324994032 ], [ -136.38139648437496, 62.325751043744184 ], [ -136.375781249999818, 62.32140534061913 ], [ -136.341796875000199, 62.31471588749411 ], [ -136.350634765625244, 62.299505926556755 ], [ -136.389770507812614, 62.27301666874407 ], [ -136.383911132812415, 62.266376043744096 ], [ -136.355346679687642, 62.249139715619208 ], [ -136.344726562499773, 62.245672918744084 ], [ -136.341113281250102, 62.241400457806741 ], [ -136.345458984375, 62.231634832806733 ], [ -136.355590820312756, 62.214960028119158 ], [ -136.355834960937557, 62.193060614056641 ], [ -136.359008789062585, 62.177679754681506 ], [ -136.369018554687329, 62.166620184369172 ], [ -136.389770507812557, 62.157538153119091 ], [ -136.370898437500273, 62.151678778119106 ], [ -136.331787109374801, 62.145770574994103 ], [ -136.313720703125171, 62.139520574994044 ], [ -136.304931640625, 62.13202545780657 ], [ -136.288696289062557, 62.112982489056655 ], [ -136.279589843750131, 62.109149481243975 ], [ -136.266845703125057, 62.112250067181542 ], [ -136.261596679687642, 62.119330145306719 ], [ -136.257739257812688, 62.126410223431527 ], [ -136.248901367187614, 62.129584051556549 ], [ -136.232421874999972, 62.129217840619198 ], [ -136.222778320312443, 62.127142645306584 ], [ -136.215869140625159, 62.122088934369224 ], [ -136.207885742187784, 62.112860418744127 ], [ -136.1966552734375, 62.107440496869266 ], [ -136.182299804687318, 62.109198309369049 ], [ -136.156372070312329, 62.119696356244191 ], [ -136.147875976562204, 62.118670965619117 ], [ -136.134814453125188, 62.099676824994134 ], [ -136.121948242187216, 62.094842840619101 ], [ -136.057055664062688, 62.094842840619073 ], [ -136.041137695312443, 62.091742254681684 ], [ -136.023120117187432, 62.078070379681577 ], [ -136.004394531250142, 62.073016668744188 ], [ -135.991577148437443, 62.063910223431613 ], [ -135.98503417968746, 62.061346746869091 ], [ -135.957763671874858, 62.06134674686912 ], [ -135.952880859374829, 62.062323309369148 ], [ -135.937548828125074, 62.067645574994117 ], [ -135.929809570312699, 62.068182684369098 ], [ -135.929199218749716, 62.065375067181634 ], [ -135.920825195312432, 62.051629949994016 ], [ -135.916796874999989, 62.047674871869184 ], [ -135.887451171875142, 62.037713934369201 ], [ -135.810961914062318, 62.024359442181634 ], [ -135.779589843749818, 62.02655670780657 ], [ -135.706787109375, 62.057318426556513 ], [ -135.676562500000102, 62.061346746869177 ], [ -135.614746093749886, 62.062860418744101 ], [ -135.567919921874818, 62.05683014530657 ], [ -135.560546874999886, 62.053900457806613 ], [ -135.55961914062496, 62.050360418744319 ], [ -135.561279296874972, 62.037787176556478 ], [ -135.560546874999829, 62.034002996869191 ], [ -135.504809570312602, 62.006170965619212 ], [ -135.4415283203125, 61.992132879681549 ], [ -135.313476562500398, 61.978778387494152 ], [ -135.285815429687716, 61.971014715619049 ], [ -135.232299804687642, 61.948675848431662 ], [ -135.204223632812585, 61.944037176556506 ], [ -135.145996093749829, 61.946600653119283 ], [ -135.128540039062273, 61.944037176556591 ], [ -135.123779296875057, 61.934588934369039 ], [ -135.119384765624915, 61.927923895306606 ], [ -135.114257812499773, 61.924139715619113 ], [ -135.106494140625301, 61.924017645306613 ], [ -135.094409179687602, 61.929022528119155 ], [ -135.087524414062671, 61.930365301556684 ], [ -135.014648437500227, 61.932806707806648 ], [ -134.990527343749932, 61.930438543744025 ], [ -134.972412109374943, 61.924017645306499 ], [ -134.952270507812756, 61.911444403119148 ], [ -134.935961914062318, 61.89496491093152 ], [ -134.928833007812642, 61.876654364056769 ], [ -134.940722656249818, 61.853045965619089 ], [ -134.965698242187244, 61.841669012494151 ], [ -134.984008789062443, 61.827582098431641 ], [ -134.976318359374915, 61.795721746869226 ], [ -134.954516601562318, 61.766913153119219 ], [ -134.877368164062432, 61.689642645306463 ], [ -134.855224609374972, 61.648553778119037 ], [ -134.864746093749801, 61.625848699994158 ], [ -134.890136718750114, 61.604559637493935 ], [ -134.915527343749687, 61.567889715619046 ] ], [ [ -138.398193359374801, 62.80055573124401 ], [ -138.401709573301076, 62.800728094671811 ] ] ] } } +] +} diff --git a/examples/data/origdata/us-state-capitals.geojson b/examples/data/origdata/us-state-capitals.geojson new file mode 100644 index 0000000..baefc08 --- /dev/null +++ b/examples/data/origdata/us-state-capitals.geojson @@ -0,0 +1,57 @@ +{ +"type": "FeatureCollection", +"name": "us-state-capitals", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, +{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, +{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, +{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, +{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, +{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, +{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, +{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, +{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, +{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": 467610.0 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, +{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": 50008.0 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, +{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, +{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, +{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, +{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, +{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, +{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, +{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, +{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": 191972.0 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, +{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, +{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": 119883.0 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, +{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": 193187.0 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, +{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, +{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, +{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, +{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, +{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, +{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, +{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, +{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, +{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, +{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, +{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, +{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, +{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, +{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, +{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, +{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, +{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, +{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, +{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, +{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, +{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, +{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, +{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, +{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, +{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, +{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } +] +} diff --git a/examples/data/origdata/us-states.geojson b/examples/data/origdata/us-states.geojson new file mode 100644 index 0000000..a229aa0 --- /dev/null +++ b/examples/data/origdata/us-states.geojson @@ -0,0 +1,58 @@ +{ +"type": "FeatureCollection", +"name": "us-states", +"features": [ +{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, +{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, +{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, +{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, +{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, +{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, +{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, +{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, +{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, +{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, +{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, +{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, +{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, +{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, +{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, +{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, +{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, +{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, +{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, +{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, +{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, +{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, +{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, +{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, +{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, +{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, +{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, +{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, +{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, +{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, +{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, +{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, +{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, +{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, +{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, +{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, +{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, +{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, +{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, +{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } +] +} diff --git a/examples/data/points_gas.geojson b/examples/data/points_gas.geojson index 5dfa2d2..0b31f89 100644 --- a/examples/data/points_gas.geojson +++ b/examples/data/points_gas.geojson @@ -2,97 +2,97 @@ "type": "FeatureCollection", "name": "points_gas", "features": [ -{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, -{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": 1.43, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille" }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, -{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC" }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, -{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI" }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, -{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI" }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, -{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE" }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, -{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": 1.785, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total" }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, -{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE" }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, -{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": 1.81, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)" }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, -{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, -{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia" }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, -{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE" }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, -{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, -{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA" }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, -{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne" }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, -{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI" }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, -{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS" }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, -{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, -{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA" }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, -{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA" }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, -{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique" }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, -{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, -{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, -{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti" }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, -{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade" }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, -{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, -{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles" }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, -{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, -{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": 1.75, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA" }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, -{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto" }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, -{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, -{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": 1.77, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES" }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, -{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA" }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, -{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi" }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, -{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, -{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, -{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL" }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, -{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José" }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, -{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS" }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, -{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres" }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, -{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS" }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, -{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO" }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, -{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE" }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, -{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse" }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, -{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA" }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, -{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO" }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, -{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc" }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, -{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": 2.02, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia" }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, -{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée" }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, -{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA" }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, -{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI" }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, -{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA" }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, -{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, -{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, -{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, -{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD" }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, -{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN" }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, -{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS" }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, -{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": 1.72, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, -{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES" }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, -{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": 1.8, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM" }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, -{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ" }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, -{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques" }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, -{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, -{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE" }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, -{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI" }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, -{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE" }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, -{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, -{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, -{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA" }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, -{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO" }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, -{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël" }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, -{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, -{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION" }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, -{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2" }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, -{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": 1.73, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare" }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, -{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO" }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, -{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI" }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, -{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal" }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, -{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH" }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, -{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI" }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, -{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari" }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, -{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA" }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, -{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André" }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, -{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA" }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, -{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution" }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } +{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO", "random": 167.25 }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, +{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": null, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille", "random": 70.116 }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, +{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC", "random": 27.214 }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, +{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI", "random": 183.668 }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, +{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI", "random": 187.13 }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, +{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE", "random": 171.639 }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, +{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": null, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total", "random": 83.772 }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, +{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE", "random": 58.454 }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, +{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": null, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)", "random": 10.663 }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, +{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE", "random": 116.907 }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, +{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia", "random": 144.413 }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, +{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE", "random": 14.386 }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, +{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": null, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS", "random": 163.292 }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, +{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA", "random": 39.404 }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, +{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne", "random": 171.194 }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, +{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI", "random": 177.388 }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, +{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS", "random": 62.515 }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, +{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS", "random": 45.136 }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, +{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA", "random": 169.228 }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, +{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI", "random": 107.308 }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA", "random": 122.717 }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, +{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": null, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique", "random": 196.891 }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, +{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI", "random": 88.823 }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, +{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS", "random": 104.21 }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, +{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti", "random": 167.605 }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, +{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade", "random": 137.431 }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, +{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS", "random": 135.052 }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, +{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles", "random": 33.639 }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, +{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL", "random": 135.529 }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, +{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": null, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA", "random": 197.637 }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, +{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto", "random": 180.783 }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, +{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines", "random": 187.914 }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS", "random": 167.112 }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, +{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": null, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES", "random": 173.713 }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, +{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA", "random": 122.96 }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, +{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi", "random": 91.231 }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, +{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL", "random": 29.082 }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, +{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO", "random": 14.667 }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, +{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL", "random": 106.538 }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, +{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José", "random": 163.73 }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, +{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS", "random": 24.453 }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, +{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres", "random": 82.133 }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, +{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS", "random": 112.336 }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, +{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": null, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO", "random": 88.062 }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, +{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE", "random": 117.055 }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, +{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT", "random": 104.102 }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse", "random": 83.37 }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, +{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA", "random": 166.936 }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, +{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO", "random": 117.176 }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, +{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc", "random": 195.249 }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, +{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia", "random": 154.351 }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, +{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée", "random": 154.165 }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, +{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA", "random": 34.07 }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, +{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI", "random": 121.578 }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, +{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA", "random": 106.4 }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, +{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL", "random": 48.732 }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, +{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES", "random": 48.276 }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, +{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI", "random": 75.456 }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, +{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD", "random": 158.749 }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, +{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN", "random": 192.858 }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, +{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS", "random": 57.346 }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, +{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST", "random": 197.858 }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": null, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL", "random": 150.61 }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, +{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES", "random": 34.291 }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, +{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM", "random": 110.832 }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, +{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ", "random": 11.917 }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, +{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques", "random": 22.995 }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, +{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI", "random": 111.82 }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, +{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE", "random": 163.84 }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, +{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI", "random": 162.204 }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, +{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE", "random": 132.828 }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, +{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI", "random": 130.099 }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES", "random": 101.294 }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, +{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE", "random": 129.018 }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, +{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA", "random": 56.879 }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, +{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE", "random": 176.101 }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO", "random": 164.773 }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, +{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël", "random": 117.793 }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, +{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS", "random": 142.762 }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, +{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION", "random": 25.906 }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, +{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2", "random": 93.187 }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, +{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": null, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare", "random": 88.919 }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, +{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO", "random": 21.802 }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, +{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI", "random": 191.802 }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, +{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal", "random": 46.643 }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, +{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH", "random": 191.087 }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, +{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI", "random": 113.896 }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, +{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": null, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari", "random": 108.416 }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, +{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA", "random": 51.388 }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, +{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André", "random": 182.804 }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, +{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA", "random": 24.984 }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, +{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution", "random": 166.568 }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } ] } diff --git a/examples/data/points_lux_pop_osm.geojson b/examples/data/points_lux_pop_osm.geojson index cca1d99..b602899 100644 --- a/examples/data/points_lux_pop_osm.geojson +++ b/examples/data/points_lux_pop_osm.geojson @@ -3,476 +3,476 @@ "name": "points_lux_pop_osm", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": 1708 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": 660 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": 1450 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": 757 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": 486 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": 853 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 4804 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, -{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, -{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, -{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": 3512 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1702 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, -{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, -{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2437 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, -{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": 736 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, -{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, -{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, -{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": 2055 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2401 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": 649 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1342 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, -{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": 1867 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": 1785 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": 140 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": 143 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": 240 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": 551 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": 752 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": 656 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": 150 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": 417 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": 66 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": 350 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": 608 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": 181 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": 328 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": 246 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": 1460 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": 1154 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": 480 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": 509 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": 2947 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, -{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": 957 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, -{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": 203 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, -{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, -{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, -{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, -{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, -{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": 2126 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": 21 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, -{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, -{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, -{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, -{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, -{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": 27 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, -{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, -{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": 364 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": 1139 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1673 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": 776 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": 4444 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } +{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795, "random": 67.352 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047, "random": 16.535 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104, "random": 66.016 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026, "random": 38.341 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273, "random": 13.94 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": null, "random": 35.356 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": null, "random": 14.302 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": null, "random": 93.649 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": null, "random": 126.337 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": null, "random": 64.5 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": null, "random": 6.176 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": null, "random": 17.693 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608, "random": 162.068 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 112.023 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, +{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 116.511 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, +{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085, "random": 162.665 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377, "random": 199.088 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626, "random": 172.86 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, +{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888, "random": 188.813 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": null, "random": 163.889 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 169.377 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694, "random": 155.478 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, +{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136, "random": 54.4 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, +{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513, "random": 197.88 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206, "random": 162.879 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 61.742 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617, "random": 155.977 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, +{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405, "random": 30.117 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": null, "random": 110.814 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": null, "random": 105.649 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595, "random": 132.535 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435, "random": 34.068 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049, "random": 40.05 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291, "random": 169.171 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801, "random": 44.309 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405, "random": 159.006 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834, "random": 79.406 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755, "random": 185.803 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15, "random": 133.128 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215, "random": 197.332 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, +{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108, "random": 134.189 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230, "random": 97.628 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206, "random": 185.72 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64, "random": 36.433 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56, "random": 148.473 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472, "random": 98.114 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293, "random": 135.656 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628, "random": 156.922 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122, "random": 63.304 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763, "random": 176.375 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732, "random": 191.401 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203, "random": 148.99 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, +{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669, "random": 31.665 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, +{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": null, "random": 101.306 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": null, "random": 153.443 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 195.294 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": null, "random": 16.906 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": null, "random": 130.811 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206, "random": 185.531 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68, "random": 166.895 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260, "random": 157.349 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60, "random": 68.998 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361, "random": 24.768 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207, "random": 104.151 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242, "random": 156.658 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769, "random": 27.017 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347, "random": 111.077 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953, "random": 185.718 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365, "random": 98.093 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605, "random": 79.351 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": null, "random": 184.64 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 68.356 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, +{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": null, "random": 156.681 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016, "random": 14.793 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444, "random": 94.953 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724, "random": 138.984 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127, "random": 68.218 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383, "random": 112.231 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356, "random": 193.939 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842, "random": 24.027 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299, "random": 168.286 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490, "random": 67.612 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427, "random": 67.86 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484, "random": 29.48 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663, "random": 18.88 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208, "random": 94.344 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652, "random": 55.204 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653, "random": 193.754 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809, "random": 50.861 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410, "random": 81.602 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295, "random": 99.812 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022, "random": 174.046 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455, "random": 167.523 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604, "random": 133.105 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683, "random": 107.247 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615, "random": 139.302 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449, "random": 37.865 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788, "random": 174.575 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979, "random": 176.563 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162, "random": 45.838 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668, "random": 69.429 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542, "random": 126.987 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302, "random": 11.922 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599, "random": 104.388 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827, "random": 183.7 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29, "random": 155.763 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110, "random": 11.429 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144, "random": 170.776 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92, "random": 60.895 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127, "random": 70.629 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168, "random": 32.852 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227, "random": 196.772 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857, "random": 42.209 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533, "random": 10.775 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424, "random": 143.421 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225, "random": 138.98 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136, "random": 156.982 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252, "random": 18.339 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113, "random": 97.534 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431, "random": 130.289 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111, "random": 191.688 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813, "random": 73.178 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382, "random": 163.784 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985, "random": 194.901 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842, "random": 61.501 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412, "random": 11.624 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410, "random": 30.483 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461, "random": 50.115 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392, "random": 34.63 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501, "random": 163.953 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582, "random": 114.106 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414, "random": 74.324 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211, "random": 114.154 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507, "random": 43.423 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430, "random": 6.398 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306, "random": 91.014 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155, "random": 25.212 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033, "random": 44.657 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882, "random": 51.543 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581, "random": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702, "random": 91.785 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099, "random": 117.746 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565, "random": 5.962 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682, "random": 125.783 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045, "random": 184.685 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97, "random": 16.64 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100, "random": 26.693 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252, "random": 95.482 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569, "random": 89.101 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595, "random": 35.987 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771, "random": 187.726 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478, "random": 10.634 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120, "random": 5.803 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427, "random": 49.055 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289, "random": 179.059 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106, "random": 168.141 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559, "random": 50.904 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667, "random": 155.861 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324, "random": 124.299 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673, "random": 35.499 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525, "random": 182.35 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426, "random": 183.635 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069, "random": 191.026 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320, "random": 22.208 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157, "random": 40.362 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": null, "random": 142.225 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": null, "random": 39.621 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817, "random": 8.621 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501, "random": 145.924 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332, "random": 137.002 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554, "random": 30.773 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537, "random": 145.894 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187, "random": 89.824 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646, "random": 126.712 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933, "random": 111.823 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925, "random": 138.987 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250, "random": 78.34 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446, "random": 169.848 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500, "random": 58.921 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936, "random": 86.965 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828, "random": 70.004 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701, "random": 105.725 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226, "random": 17.693 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243, "random": 16.11 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011, "random": 7.809 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499, "random": 196.616 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245, "random": 26.18 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189, "random": 108.517 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375, "random": 8.784 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538, "random": 59.286 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460, "random": 172.61 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120, "random": 115.852 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99, "random": 12.221 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87, "random": 72.656 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40, "random": 29.733 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92, "random": 62.482 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63, "random": 114.54 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16, "random": 85.037 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152, "random": 45.629 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304, "random": 164.57 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211, "random": 69.492 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519, "random": 134.134 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591, "random": 11.136 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293, "random": 188.326 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122, "random": 157.819 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991, "random": 82.951 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378, "random": 54.7 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296, "random": 30.678 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121, "random": 183.678 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23, "random": 29.313 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1, "random": 124.808 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118, "random": 117.172 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222, "random": 102.899 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102, "random": 71.493 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252, "random": 61.807 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31, "random": 31.946 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395, "random": 187.831 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521, "random": 30.62 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158, "random": 77.54 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424, "random": 15.469 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252, "random": 31.747 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522, "random": 107.456 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151, "random": 72.138 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149, "random": 32.265 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361, "random": 178.588 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286, "random": 160.989 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68, "random": 166.478 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384, "random": 25.898 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128, "random": 48.007 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161, "random": 156.874 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168, "random": 127.65 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345, "random": 18.931 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309, "random": 159.807 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88, "random": 108.571 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442, "random": 49.708 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157, "random": 199.597 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633, "random": 92.687 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": null, "random": 37.171 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259, "random": 129.257 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": null, "random": 193.703 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336, "random": 74.78 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142, "random": 182.553 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247, "random": 166.145 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255, "random": 55.932 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508, "random": 132.232 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224, "random": 191.066 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201, "random": 122.314 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529, "random": 82.716 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008, "random": 95.734 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51, "random": 39.065 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604, "random": 6.001 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969, "random": 162.884 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107, "random": 199.209 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28, "random": 187.401 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296, "random": 102.55 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958, "random": 10.26 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265, "random": 114.494 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549, "random": 34.715 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080, "random": 96.097 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626, "random": 193.064 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": null, "random": 99.703 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": null, "random": 142.21 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": null, "random": 59.677 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388, "random": 119.246 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800, "random": 49.65 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129, "random": 163.693 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276, "random": 110.112 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": null, "random": 20.351 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": null, "random": 186.185 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": null, "random": 41.611 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113, "random": 94.748 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79, "random": 112.201 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425, "random": 127.169 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60, "random": 137.533 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69, "random": 88.549 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370, "random": 100.737 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90, "random": 36.977 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": null, "random": 115.387 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": null, "random": 109.228 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795, "random": 141.337 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": null, "random": 47.876 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": null, "random": 181.931 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269, "random": 16.389 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167, "random": 129.298 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432, "random": 16.754 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170, "random": 140.366 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490, "random": 62.241 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": null, "random": 187.238 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102, "random": 69.65 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309, "random": 77.429 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818, "random": 87.431 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232, "random": 141.448 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": null, "random": 112.923 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": null, "random": 76.941 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": null, "random": 179.294 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": null, "random": 45.342 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118, "random": 9.585 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": null, "random": 61.111 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115, "random": 195.953 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109, "random": 5.185 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287, "random": 147.139 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466, "random": 109.905 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326, "random": 118.505 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97, "random": 199.517 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55, "random": 6.288 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416, "random": 106.304 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113, "random": 122.834 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220, "random": 72.521 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537, "random": 154.669 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698, "random": 46.738 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": null, "random": 156.395 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": null, "random": 65.104 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": null, "random": 13.385 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": null, "random": 11.935 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475, "random": 50.296 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149, "random": 64.065 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652, "random": 119.182 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172, "random": 11.689 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123, "random": 192.917 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301, "random": 138.5 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186, "random": 195.095 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197, "random": 10.698 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135, "random": 176.246 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84, "random": 163.455 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293, "random": 128.807 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80, "random": 167.873 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233, "random": 116.186 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23, "random": 138.959 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105, "random": 43.609 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166, "random": 51.106 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335, "random": 156.995 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431, "random": 183.836 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179, "random": 191.134 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212, "random": 141.178 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51, "random": 94.794 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78, "random": 189.448 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263, "random": 25.82 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": null, "random": 74.04 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": null, "random": 135.382 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": null, "random": 66.051 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": null, "random": 92.169 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313, "random": 86.076 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": null, "random": 29.135 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, +{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84, "random": 141.201 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": null, "random": 74.142 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227, "random": 112.727 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195, "random": 109.475 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370, "random": 25.111 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, +{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799, "random": 37.339 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134, "random": 158.158 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123, "random": 144.766 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29, "random": 54.038 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250, "random": 49.626 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580, "random": 153.715 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": null, "random": 136.963 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": null, "random": 52.561 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406, "random": 183.216 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85, "random": 137.072 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83, "random": 88.769 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105, "random": 57.933 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826, "random": 53.042 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320, "random": 47.49 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63, "random": 95.95 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153, "random": 13.756 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396, "random": 33.651 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236, "random": 42.565 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474, "random": 142.712 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46, "random": 169.458 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152, "random": 32.027 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325, "random": 6.762 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245, "random": 9.837 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109, "random": 101.156 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401, "random": 195.387 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130, "random": 98.4 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129, "random": 194.584 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102, "random": 81.417 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48, "random": 122.128 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322, "random": 126.993 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288, "random": 146.636 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298, "random": 57.063 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122, "random": 42.284 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15, "random": 33.525 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42, "random": 130.218 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153, "random": 113.461 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216, "random": 188.047 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781, "random": 13.231 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, +{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105, "random": 106.638 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, +{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133, "random": 39.676 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, +{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192, "random": 125.019 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135, "random": 182.086 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429, "random": 85.473 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258, "random": 47.933 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380, "random": 139.706 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, +{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245, "random": 163.787 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200, "random": 108.289 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321, "random": 191.686 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467, "random": 168.507 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, +{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36, "random": 116.099 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": null, "random": 54.147 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": null, "random": 98.852 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, +{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279, "random": 31.909 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231, "random": 112.414 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, +{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499, "random": 150.656 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, +{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588, "random": 13.91 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, +{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350, "random": 39.494 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, +{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360, "random": 51.642 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": null, "random": 175.368 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553, "random": 64.831 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415, "random": 45.576 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270, "random": 22.236 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130, "random": 195.411 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92, "random": 123.093 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393, "random": 109.951 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, +{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673, "random": 146.918 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, +{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83, "random": 141.062 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397, "random": 95.077 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": null, "random": 10.601 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109, "random": 84.492 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307, "random": 79.077 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283, "random": 170.09 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501, "random": 7.001 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": null, "random": 142.281 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": null, "random": 11.778 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53, "random": 136.112 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118, "random": 97.612 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354, "random": 195.967 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231, "random": 140.482 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850, "random": 181.389 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 144.469 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": null, "random": 169.401 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125, "random": 104.609 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68, "random": 94.037 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95, "random": 150.101 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799, "random": 156.097 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500, "random": 158.734 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425, "random": 99.809 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885, "random": 148.197 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609, "random": 34.43 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138, "random": 98.723 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215, "random": 176.891 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134, "random": 125.322 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286, "random": 162.032 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354, "random": 150.776 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218, "random": 198.577 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847, "random": 54.149 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34, "random": 54.005 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347, "random": 143.613 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152, "random": 99.342 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": null, "random": 191.342 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32, "random": 192.08 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298, "random": 99.375 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115, "random": 185.245 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436, "random": 85.811 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244, "random": 36.9 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 169.099 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89, "random": 85.182 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94, "random": 61.709 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": null, "random": 49.642 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739, "random": 175.474 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25, "random": 117.166 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": null, "random": 126.181 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45, "random": 144.206 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669, "random": 153.663 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211, "random": 26.534 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423, "random": 17.922 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61, "random": 95.707 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46, "random": 34.266 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634, "random": 55.414 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295, "random": 184.379 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995, "random": 69.136 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245, "random": 91.542 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } ] } diff --git a/examples/data/polygons_hatch_eu_lifeexp_2018.geojson b/examples/data/polygons_hatch_eu_lifeexp_2018.geojson index 72ebc9d..eeede69 100644 --- a/examples/data/polygons_hatch_eu_lifeexp_2018.geojson +++ b/examples/data/polygons_hatch_eu_lifeexp_2018.geojson @@ -3,339 +3,339 @@ "name": "polygons_hatch_eu_lifeexp_2018", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": 79.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": 79.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } +{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7, "random": 169.914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331, "random": 35.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666, "random": 128.051 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9, "random": 162.537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8, "random": 189.486 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669, "random": 119.448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666, "random": 118.279 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9, "random": 39.912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6, "random": 44.293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326, "random": 85.969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329, "random": 14.013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0, "random": 62.475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666, "random": 34.293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337, "random": 113.903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3, "random": 12.68 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654, "random": 124.45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6, "random": 110.372 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": null, "random": 152.389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663, "random": 47.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": null, "random": 68.145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": null, "random": 32.02 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": null, "random": 199.617 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7, "random": 60.524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669, "random": 35.892 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334, "random": 163.831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337, "random": 123.904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5, "random": 154.381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663, "random": 173.014 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5, "random": 64.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1, "random": 57.333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669, "random": 21.295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null, "random": 125.804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null, "random": 128.291 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null, "random": 26.395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669, "random": 152.221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669, "random": 127.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331, "random": 165.687 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677, "random": 93.696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671, "random": 173.105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2, "random": 77.561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329, "random": 160.337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654, "random": 24.057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663, "random": 81.381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329, "random": 31.914 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7, "random": 131.676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666, "random": 27.562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6, "random": 144.125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663, "random": 50.687 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654, "random": 114.431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337, "random": 143.368 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7, "random": 158.073 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666, "random": 124.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329, "random": 81.812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654, "random": 131.316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677, "random": 64.233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0, "random": 107.305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1, "random": 57.646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666, "random": 166.124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334, "random": 183.943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654, "random": 85.458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334, "random": 112.661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2, "random": 133.251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4, "random": 194.74 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334, "random": 105.333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7, "random": 154.161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0, "random": 5.263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334, "random": 154.815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334, "random": 77.166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329, "random": 43.809 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334, "random": 107.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334, "random": 111.394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0, "random": 82.309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3, "random": 196.783 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3, "random": 175.539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671, "random": 32.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2, "random": 46.919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5, "random": 25.28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7, "random": 30.078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1, "random": 170.982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337, "random": 191.966 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334, "random": 74.638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0, "random": 155.783 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6, "random": 82.623 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1, "random": 177.917 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8, "random": 85.933 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7, "random": 94.282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669, "random": 102.272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9, "random": 101.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7, "random": 36.64 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5, "random": 136.067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669, "random": 82.583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7, "random": 24.167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329, "random": 69.091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2, "random": 119.997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669, "random": 58.964 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666, "random": 89.675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6, "random": 168.66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663, "random": 36.057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323, "random": 102.623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337, "random": 105.079 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8, "random": 143.488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674, "random": 94.788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7, "random": 172.953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654, "random": 15.623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9, "random": 83.317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986, "random": 34.593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654, "random": 67.745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4, "random": 157.659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331, "random": 83.017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3, "random": 188.882 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": null, "random": 47.764 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334, "random": 176.616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334, "random": 151.571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669, "random": 65.775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": null, "random": 113.009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": null, "random": 143.635 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": null, "random": 50.605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": null, "random": 119.816 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331, "random": 18.261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346, "random": 166.083 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334, "random": 68.766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669, "random": 33.126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4, "random": 21.461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3, "random": 42.205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331, "random": 175.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4, "random": 74.082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1, "random": 103.352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666, "random": 83.534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329, "random": 175.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329, "random": 12.79 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343, "random": 159.423 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4, "random": 54.825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669, "random": 150.414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671, "random": 146.394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334, "random": 155.012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4, "random": 162.726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334, "random": 53.269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9, "random": 142.649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6, "random": 147.971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666, "random": 44.822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9, "random": 7.589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4, "random": 50.614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329, "random": 110.014 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326, "random": 85.832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666, "random": 129.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669, "random": 51.755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329, "random": 184.025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6, "random": 54.542 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663, "random": 73.391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334, "random": 10.762 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": null, "random": 196.681 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6, "random": 62.768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7, "random": 170.251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8, "random": 106.994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9, "random": 163.249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666, "random": 198.082 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331, "random": 108.874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334, "random": 52.442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666, "random": 195.619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331, "random": 86.959 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334, "random": 97.366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6, "random": 90.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326, "random": 128.049 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5, "random": 132.998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677, "random": 138.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3, "random": 148.645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334, "random": 139.356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null, "random": 63.353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669, "random": 118.223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null, "random": 45.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654, "random": 7.871 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334, "random": 176.002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334, "random": 69.962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7, "random": 166.614 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7, "random": 7.465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323, "random": 190.432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null, "random": 114.59 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666, "random": 194.826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329, "random": 145.443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666, "random": 43.75 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671, "random": 65.404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334, "random": 73.846 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6, "random": 77.122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": null, "random": 164.734 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": null, "random": 69.147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3, "random": 61.363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671, "random": 9.847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666, "random": 144.458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4, "random": 96.61 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9, "random": 157.853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677, "random": 57.377 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3, "random": 164.389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343, "random": 109.677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677, "random": 193.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663, "random": 140.696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0, "random": 110.688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666, "random": 76.455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326, "random": 153.177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8, "random": 6.499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": null, "random": 76.625 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2, "random": 55.323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677, "random": 158.343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329, "random": 86.629 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8, "random": 96.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334, "random": 144.745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346, "random": 48.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2, "random": 9.926 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674, "random": 128.11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666, "random": 178.336 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6, "random": 111.264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4, "random": 74.556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666, "random": 196.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337, "random": 156.662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669, "random": 33.969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9, "random": 185.638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669, "random": 174.114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3, "random": 68.773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343, "random": 64.651 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677, "random": 176.657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1, "random": 75.36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2, "random": 43.922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334, "random": 61.894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337, "random": 136.383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6, "random": 139.536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666, "random": 128.593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331, "random": 166.443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666, "random": 196.033 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671, "random": 147.589 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654, "random": 18.408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2, "random": 92.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323, "random": 139.301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2, "random": 8.586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329, "random": 78.343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666, "random": 62.477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329, "random": 164.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4, "random": 34.173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334, "random": 73.208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669, "random": 15.283 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674, "random": 109.206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9, "random": 24.555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674, "random": 96.727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1, "random": 77.45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666, "random": 71.658 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1, "random": 139.765 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2, "random": 44.908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3, "random": 130.156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329, "random": 66.968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0, "random": 5.947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5, "random": 83.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666, "random": 95.789 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334, "random": 150.873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9, "random": 61.673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666, "random": 20.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1, "random": 180.752 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346, "random": 32.104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329, "random": 85.148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4, "random": 112.831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null, "random": 85.199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8, "random": 69.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9, "random": 192.528 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663, "random": 168.319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331, "random": 65.003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666, "random": 106.789 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666, "random": 16.405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331, "random": 146.908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666, "random": 48.454 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666, "random": 79.923 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671, "random": 153.931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2, "random": 48.494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323, "random": 33.247 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337, "random": 163.813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323, "random": 66.567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346, "random": 163.237 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6, "random": 163.181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8, "random": 76.998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334, "random": 43.713 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7, "random": 34.78 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334, "random": 31.778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7, "random": 6.93 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671, "random": 135.935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2, "random": 145.129 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3, "random": 99.579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4, "random": 104.658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666, "random": 62.539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666, "random": 38.246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0, "random": 50.122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331, "random": 25.384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329, "random": 176.777 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666, "random": 170.972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329, "random": 10.713 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326, "random": 134.836 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666, "random": 156.604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666, "random": 46.498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346, "random": 44.247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7, "random": 191.512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2, "random": 44.357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663, "random": 51.789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7, "random": 81.556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5, "random": 136.756 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326, "random": 88.078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326, "random": 106.439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329, "random": 46.671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677, "random": 177.243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671, "random": 42.763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329, "random": 29.514 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674, "random": 161.631 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334, "random": 24.276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323, "random": 20.448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346, "random": 186.648 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669, "random": 159.657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666, "random": 115.065 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9, "random": 30.218 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2, "random": 198.086 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3, "random": 47.922 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666, "random": 148.946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8, "random": 35.257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7, "random": 134.798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0, "random": 131.506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343, "random": 17.542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671, "random": 93.403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666, "random": 100.703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671, "random": 116.862 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9, "random": 25.976 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5, "random": 97.157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677, "random": 163.546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null, "random": 132.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null, "random": 123.734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null, "random": 186.942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null, "random": 36.69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null, "random": 154.891 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7, "random": 101.274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0, "random": 67.704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666, "random": 93.215 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null, "random": 177.175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } ] } diff --git a/examples/data/polygons_nz_regions.geojson b/examples/data/polygons_nz_regions.geojson index 33f5ecf..0e5a860 100644 --- a/examples/data/polygons_nz_regions.geojson +++ b/examples/data/polygons_nz_regions.geojson @@ -5,7 +5,7 @@ "features": [ { "type": "Feature", "properties": { "id": "pv084qp8629.1", "id_1": 1, "name_1": "Auckland", "hasc_1": "NZ.AU", "population2022": 1695200, "areakm2": 5095.679, "density2022": 332.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.74861145, -37.34444427 ], [ 174.74708557, -37.3454895 ], [ 174.74694824, -37.34361267 ], [ 174.74861145, -37.34444427 ], [ 174.74861145, -37.34444427 ] ] ], [ [ [ 174.77009583, -37.34389114 ], [ 174.770446779999986, -37.34157944 ], [ 174.77178955, -37.3429718 ], [ 174.77009583, -37.34389114 ], [ 174.77009583, -37.34389114 ] ] ], [ [ [ 174.7555542, -37.3441658 ], [ 174.75404358, -37.34367752 ], [ 174.754516599999988, -37.34116364 ], [ 174.7555542, -37.3441658 ], [ 174.7555542, -37.3441658 ] ] ], [ [ [ 174.764160159999989, -37.34388733 ], [ 174.76008606, -37.34461975 ], [ 174.76565552, -37.33962631 ], [ 174.764160159999989, -37.34388733 ], [ 174.764160159999989, -37.34388733 ] ] ], [ [ [ 174.752990720000014, -37.34559631 ], [ 174.75141907, -37.34180832 ], [ 174.752304079999988, -37.34277725 ], [ 174.752990720000014, -37.34559631 ], [ 174.752990720000014, -37.34559631 ] ] ], [ [ [ 174.77192688, -37.33953094 ], [ 174.768737789999989, -37.3407135 ], [ 174.771835329999988, -37.33702469 ], [ 174.77192688, -37.33953094 ], [ 174.77192688, -37.33953094 ] ] ], [ [ [ 174.75320435, -37.33498001 ], [ 174.74888611, -37.34166718 ], [ 174.74491882, -37.33788681 ], [ 174.75320435, -37.33498001 ], [ 174.75320435, -37.33498001 ] ] ], [ [ [ 174.75654602, -37.33567429 ], [ 174.75642395, -37.33279037 ], [ 174.76016235, -37.33059692 ], [ 174.75654602, -37.33567429 ], [ 174.75654602, -37.33567429 ] ] ], [ [ [ 174.791107180000012, -37.32666779 ], [ 174.77305603, -37.34166718 ], [ 174.77806091, -37.33166504 ], [ 174.791107180000012, -37.32666779 ], [ 174.791107180000012, -37.32666779 ] ] ], [ [ [ 174.76023865, -37.32954788 ], [ 174.76167297, -37.32620239 ], [ 174.76620483, -37.32515717 ], [ 174.76023865, -37.32954788 ], [ 174.76023865, -37.32954788 ] ] ], [ [ [ 174.797210690000014, -37.3252449 ], [ 174.79432678, -37.3246994 ], [ 174.79898071, -37.32347488 ], [ 174.797210690000014, -37.3252449 ], [ 174.797210690000014, -37.3252449 ] ] ], [ [ [ 174.71255493000001, -37.19326782 ], [ 174.713088989999989, -37.19437408 ], [ 174.71208191, -37.19443512 ], [ 174.71255493000001, -37.19326782 ], [ 174.71255493000001, -37.19326782 ] ] ], [ [ [ 174.88668823, -37.06499863 ], [ 174.88700867, -37.06641006 ], [ 174.886077879999988, -37.06524277 ], [ 174.88668823, -37.06499863 ], [ 174.88668823, -37.06499863 ] ] ], [ [ [ 174.73410034, -36.96100998 ], [ 174.75726318, -36.96128464 ], [ 174.75708008, -36.96967316 ], [ 174.74598694, -36.97321701 ], [ 174.73286438, -36.96675491 ], [ 174.73410034, -36.96100998 ], [ 174.73410034, -36.96100998 ] ] ], [ [ [ 175.15527344, -36.92194366 ], [ 175.15943909, -36.92499924 ], [ 175.15638733, -36.92666626 ], [ 175.15527344, -36.92194366 ], [ 175.15527344, -36.92194366 ] ] ], [ [ [ 175.16471863000001, -36.90194321 ], [ 175.170837400000011, -36.90833282 ], [ 175.15028381, -36.91361237 ], [ 175.16471863000001, -36.90194321 ], [ 175.16471863000001, -36.90194321 ] ] ], [ [ [ 174.97932434, -36.87934494 ], [ 174.977310179999989, -36.87853241 ], [ 174.97924805, -36.8763237 ], [ 174.97932434, -36.87934494 ], [ 174.97932434, -36.87934494 ] ] ], [ [ [ 174.684783939999988, -36.87700653 ], [ 174.68363953, -36.87633133 ], [ 174.68690491000001, -36.87526703 ], [ 174.684783939999988, -36.87700653 ], [ 174.684783939999988, -36.87700653 ] ] ], [ [ [ 175.18833923, -36.83666611 ], [ 175.208618159999986, -36.83111191 ], [ 175.21499634, -36.83499908 ], [ 175.2124939, -36.84277725 ], [ 175.20144653, -36.84207916 ], [ 175.1958313, -36.85972214 ], [ 175.19833374000001, -36.86888885 ], [ 175.207778929999989, -36.88000107 ], [ 175.199722290000011, -36.88833237 ], [ 175.20083618000001, -36.89805603 ], [ 175.18972778, -36.90194321 ], [ 175.18804932, -36.89666748 ], [ 175.17555237, -36.89472198 ], [ 175.172775269999988, -36.88527679 ], [ 175.16111755, -36.86527634 ], [ 175.15333557, -36.86083221 ], [ 175.168884279999986, -36.86000061 ], [ 175.17805481, -36.85111237 ], [ 175.172500609999986, -36.84555435 ], [ 175.176391599999988, -36.83805466 ], [ 175.18943787, -36.83194351 ], [ 175.18833923, -36.83666611 ], [ 175.18833923, -36.83666611 ] ] ], [ [ [ 175.206542969999987, -36.82966232 ], [ 175.20561218, -36.82774734 ], [ 175.208084109999987, -36.82830429 ], [ 175.206542969999987, -36.82966232 ], [ 175.206542969999987, -36.82966232 ] ] ], [ [ [ 174.897537230000012, -36.82781601 ], [ 174.89205933, -36.83633041 ], [ 174.88879395, -36.8285675 ], [ 174.897537230000012, -36.82781601 ], [ 174.897537230000012, -36.82781601 ] ] ], [ [ [ 174.97322083, -36.81057739 ], [ 174.973724370000014, -36.8139534 ], [ 174.971206669999987, -36.81113434 ], [ 174.97322083, -36.81057739 ], [ 174.97322083, -36.81057739 ] ] ], [ [ [ 175.19805908, -36.80555725 ], [ 175.202224730000012, -36.80944443 ], [ 175.20195007, -36.82416534 ], [ 175.196105960000011, -36.82333374 ], [ 175.19805908, -36.80555725 ], [ 175.19805908, -36.80555725 ] ] ], [ [ [ 174.93743896, -36.80243683 ], [ 174.952499390000014, -36.80916595 ], [ 174.94721985000001, -36.82249832 ], [ 174.93888855, -36.82055664 ], [ 174.94277954, -36.8125 ], [ 174.93743896, -36.80243683 ], [ 174.93743896, -36.80243683 ] ] ], [ [ [ 175.19221497, -36.79277802 ], [ 175.20056152, -36.79777908 ], [ 175.196105960000011, -36.80083466 ], [ 175.19221497, -36.79277802 ], [ 175.19221497, -36.79277802 ] ] ], [ [ [ 175.2277832, -36.79083252 ], [ 175.22389221, -36.79027939 ], [ 175.22694397, -36.78777695 ], [ 175.2277832, -36.79083252 ], [ 175.2277832, -36.79083252 ] ] ], [ [ [ 174.662170409999987, -36.77856445 ], [ 174.65034485000001, -36.78217316 ], [ 174.65328979, -36.77868652 ], [ 174.662170409999987, -36.77856445 ], [ 174.662170409999987, -36.77856445 ] ] ], [ [ [ 174.898895259999989, -36.74944305 ], [ 174.896392819999988, -36.74861145 ], [ 174.89805603, -36.74361038 ], [ 174.898895259999989, -36.74944305 ], [ 174.898895259999989, -36.74944305 ] ] ], [ [ [ 175.172775269999988, -36.73916626 ], [ 175.169723510000011, -36.74861145 ], [ 175.1819458, -36.75361252 ], [ 175.19221497, -36.75111008 ], [ 175.203887939999987, -36.76444626 ], [ 175.19332886, -36.77916718 ], [ 175.18777466, -36.77361298 ], [ 175.167037959999988, -36.77801514 ], [ 175.15499878, -36.78722382 ], [ 175.15861511, -36.79944611 ], [ 175.1680603, -36.80555725 ], [ 175.16305542, -36.81416702 ], [ 175.1652832, -36.82500076 ], [ 175.16085815, -36.83246994 ], [ 175.148895259999989, -36.83527756 ], [ 175.15388489, -36.8405571 ], [ 175.13806152, -36.8488884 ], [ 175.136383059999986, -36.83638763 ], [ 175.12861633, -36.83250046 ], [ 175.12319946, -36.83744049 ], [ 175.12805176, -36.84583282 ], [ 175.112777709999989, -36.84777832 ], [ 175.11193848, -36.83027649 ], [ 175.104995730000013, -36.82389069 ], [ 175.09249878, -36.83722305 ], [ 175.079162599999989, -36.83472061 ], [ 175.07556152, -36.83805466 ], [ 175.06111145, -36.83000183 ], [ 175.07139587, -36.82583237 ], [ 175.070800780000013, -36.82086182 ], [ 175.053894039999989, -36.81833267 ], [ 175.044998170000014, -36.82083511 ], [ 175.03250122, -36.8180542 ], [ 175.047775269999988, -36.80555725 ], [ 175.03305054, -36.80110931 ], [ 175.02194214, -36.8133316 ], [ 175.018066409999989, -36.80887222 ], [ 175.02722168, -36.79750061 ], [ 175.014724730000012, -36.79000092 ], [ 175.00852966, -36.79153824 ], [ 175.006057739999989, -36.80369568 ], [ 174.99868774, -36.80368805 ], [ 174.99494934, -36.81095123 ], [ 174.987503049999987, -36.81138992 ], [ 174.988891599999988, -36.79360962 ], [ 174.98167419, -36.78777695 ], [ 174.986114500000014, -36.7705574 ], [ 174.996444700000012, -36.77493286 ], [ 174.99945068, -36.76722336 ], [ 175.016113280000013, -36.76889038 ], [ 175.00971985000001, -36.77833176 ], [ 175.017791749999986, -36.78364182 ], [ 175.02166748, -36.77833176 ], [ 175.03639221, -36.77416611 ], [ 175.04083252, -36.77944565 ], [ 175.053894039999989, -36.77444458 ], [ 175.0597229, -36.76499939 ], [ 175.06083679, -36.77527618 ], [ 175.0680542, -36.78527832 ], [ 175.08653259, -36.78783798 ], [ 175.10083008, -36.78527832 ], [ 175.10806274, -36.77639008 ], [ 175.102493290000012, -36.76944351 ], [ 175.106109620000012, -36.76333237 ], [ 175.1194458, -36.76055527 ], [ 175.124099730000012, -36.76806259 ], [ 175.13667297, -36.76250076 ], [ 175.146987919999987, -36.76496124 ], [ 175.15083313, -36.75166702 ], [ 175.16027832, -36.74250031 ], [ 175.172775269999988, -36.73916626 ], [ 175.172775269999988, -36.73916626 ] ] ], [ [ [ 174.91583252, -36.72888947 ], [ 174.92555237, -36.73860931 ], [ 174.93527222, -36.74083328 ], [ 174.93028259, -36.74888992 ], [ 174.93777466, -36.75416565 ], [ 174.93804932, -36.76666641 ], [ 174.92944336, -36.76805496 ], [ 174.928894039999989, -36.78416824 ], [ 174.91555786, -36.7891655 ], [ 174.9125061, -36.79750061 ], [ 174.90306091, -36.79000092 ], [ 174.89778137, -36.7788887 ], [ 174.89204407, -36.78447723 ], [ 174.897689820000011, -36.79029465 ], [ 174.89520264, -36.79819489 ], [ 174.87414551, -36.80767822 ], [ 174.84777832, -36.8097229 ], [ 174.826385499999986, -36.78777695 ], [ 174.83778381, -36.76861191 ], [ 174.84950256, -36.76420975 ], [ 174.86947632, -36.76311111 ], [ 174.88024902, -36.76958847 ], [ 174.892776489999989, -36.76777649 ], [ 174.893890379999988, -36.75888824 ], [ 174.90083313, -36.7519455 ], [ 174.91471863000001, -36.74611282 ], [ 174.91583252, -36.72888947 ], [ 174.91583252, -36.72888947 ] ] ], [ [ [ 174.94837952, -36.70943451 ], [ 174.95300293, -36.71068192 ], [ 174.95436096, -36.72274399 ], [ 174.943435670000014, -36.72822571 ], [ 174.94250488, -36.71972275 ], [ 174.94837952, -36.70943451 ], [ 174.94837952, -36.70943451 ] ] ], [ [ [ 175.005371090000011, -36.70791245 ], [ 175.00628662, -36.70982742 ], [ 175.00375366, -36.70896149 ], [ 175.005371090000011, -36.70791245 ], [ 175.005371090000011, -36.70791245 ] ] ], [ [ [ 174.99836731, -36.69808578 ], [ 174.99772644, -36.70172501 ], [ 174.99667358, -36.69805527 ], [ 174.99836731, -36.69808578 ], [ 174.99836731, -36.69808578 ] ] ], [ [ [ 174.971069340000014, -36.69258499 ], [ 174.97795105, -36.69343185 ], [ 174.97346497, -36.69891357 ], [ 174.971069340000014, -36.69258499 ], [ 174.971069340000014, -36.69258499 ] ] ], [ [ [ 174.96234131, -36.68624878 ], [ 174.96551514, -36.68757248 ], [ 174.96388245, -36.69218063 ], [ 174.96234131, -36.68624878 ], [ 174.96234131, -36.68624878 ] ] ], [ [ [ 174.88276672, -36.59151077 ], [ 174.8999176, -36.60185242 ], [ 174.90098572, -36.60828018 ], [ 174.89105225, -36.60912323 ], [ 174.87973022, -36.59898376 ], [ 174.88276672, -36.59151077 ], [ 174.88276672, -36.59151077 ] ] ], [ [ [ 174.39993286, -36.57617187 ], [ 174.39518738000001, -36.56950378 ], [ 174.398895259999989, -36.56694412 ], [ 174.39993286, -36.57617187 ], [ 174.39993286, -36.57617187 ] ] ], [ [ [ 174.74786377, -36.51462555 ], [ 174.747024540000012, -36.50824356 ], [ 174.749801639999987, -36.50896454 ], [ 174.74786377, -36.51462555 ], [ 174.74786377, -36.51462555 ] ] ], [ [ [ 174.801422120000012, -36.49801254 ], [ 174.802825930000012, -36.50374985 ], [ 174.78611755, -36.51388931 ], [ 174.78582764, -36.50749969 ], [ 174.801422120000012, -36.49801254 ], [ 174.801422120000012, -36.49801254 ] ] ], [ [ [ 174.801239009999989, -36.47497177 ], [ 174.792221070000011, -36.47999954 ], [ 174.78805542, -36.47611237 ], [ 174.801239009999989, -36.47497177 ], [ 174.801239009999989, -36.47497177 ] ] ], [ [ [ 174.80833435, -36.46683121 ], [ 174.81388855, -36.46895981 ], [ 174.80731201, -36.47409058 ], [ 174.80833435, -36.46683121 ], [ 174.80833435, -36.46683121 ] ] ], [ [ [ 174.72694397, -36.46194458 ], [ 174.72639465, -36.46472168 ], [ 174.72471619, -36.4636116 ], [ 174.72694397, -36.46194458 ], [ 174.72694397, -36.46194458 ] ] ], [ [ [ 174.823608400000012, -36.45055389 ], [ 174.82194519, -36.45333481 ], [ 174.81916809, -36.45111084 ], [ 174.823608400000012, -36.45055389 ], [ 174.823608400000012, -36.45055389 ] ] ], [ [ [ 174.40863037, -36.44541931 ], [ 174.406707759999989, -36.44382858 ], [ 174.40885925, -36.44260788 ], [ 174.40863037, -36.44541931 ], [ 174.40863037, -36.44541931 ] ] ], [ [ [ 174.40611267, -36.4383316 ], [ 174.40861511, -36.44138718 ], [ 174.40472412, -36.4430542 ], [ 174.40611267, -36.4383316 ], [ 174.40611267, -36.4383316 ] ] ], [ [ [ 174.795166020000011, -36.42495346 ], [ 174.793167110000013, -36.4260788 ], [ 174.79425049, -36.42292786 ], [ 174.795166020000011, -36.42495346 ], [ 174.795166020000011, -36.42495346 ] ] ], [ [ [ 174.39332581, -36.42361069 ], [ 174.392776489999989, -36.42083359 ], [ 174.3972168, -36.42083359 ], [ 174.39332581, -36.42361069 ], [ 174.39332581, -36.42361069 ] ] ], [ [ [ 174.7930603, -36.41249847 ], [ 174.795272829999988, -36.41388702 ], [ 174.79333496000001, -36.4169426 ], [ 174.7930603, -36.41249847 ], [ 174.7930603, -36.41249847 ] ] ], [ [ [ 174.840164179999988, -36.39127731 ], [ 174.87805176, -36.41523743 ], [ 174.88024902, -36.43740463 ], [ 174.87445068, -36.45416641 ], [ 174.86276245, -36.44109726 ], [ 174.857055659999986, -36.44581985 ], [ 174.83703613, -36.45054626 ], [ 174.82804871, -36.43638992 ], [ 174.82025146, -36.43609238 ], [ 174.8152771, -36.42805481 ], [ 174.829727170000012, -36.42499924 ], [ 174.840271, -36.42805481 ], [ 174.854415890000013, -36.42507553 ], [ 174.85028076, -36.41805649 ], [ 174.83805847, -36.42277908 ], [ 174.81767273, -36.41349792 ], [ 174.833618159999986, -36.41027832 ], [ 174.823883059999986, -36.40732956 ], [ 174.82943726, -36.3983345 ], [ 174.83694458, -36.39888763 ], [ 174.840164179999988, -36.39127731 ], [ 174.840164179999988, -36.39127731 ] ] ], [ [ [ 174.25444031, -36.38611221 ], [ 174.25721741000001, -36.38833237 ], [ 174.2527771, -36.38777924 ], [ 174.25444031, -36.38611221 ], [ 174.25444031, -36.38611221 ] ] ], [ [ [ 174.24221802, -36.36833191 ], [ 174.24749756, -36.37250137 ], [ 174.25138855, -36.39527893 ], [ 174.24806213, -36.40083313 ], [ 174.235839840000011, -36.3769455 ], [ 174.24221802, -36.36833191 ], [ 174.24221802, -36.36833191 ] ] ], [ [ [ 174.25332642, -36.36138916 ], [ 174.24972534, -36.36833191 ], [ 174.24333191, -36.36639023 ], [ 174.25332642, -36.36138916 ], [ 174.25332642, -36.36138916 ] ] ], [ [ [ 175.50798035, -36.34883499 ], [ 175.50305176, -36.34660721 ], [ 175.507064820000011, -36.34487915 ], [ 175.50798035, -36.34883499 ], [ 175.50798035, -36.34883499 ] ] ], [ [ [ 175.54315186, -36.33336639 ], [ 175.54083252, -36.33311844 ], [ 175.543304440000014, -36.33175659 ], [ 175.54315186, -36.33336639 ], [ 175.54315186, -36.33336639 ] ] ], [ [ [ 174.769332889999987, -36.31733704 ], [ 174.76747131, -36.32003021 ], [ 174.76461792, -36.31834412 ], [ 174.769332889999987, -36.31733704 ], [ 174.769332889999987, -36.31733704 ] ] ], [ [ [ 174.796661379999989, -36.26805496 ], [ 174.795944209999988, -36.26393127 ], [ 174.8006897, -36.26434708 ], [ 174.796661379999989, -36.26805496 ], [ 174.796661379999989, -36.26805496 ] ] ], [ [ [ 175.3694458, -36.2527771 ], [ 175.37416077, -36.25583267 ], [ 175.37277222, -36.25722122 ], [ 175.3694458, -36.2527771 ], [ 175.3694458, -36.2527771 ] ] ], [ [ [ 175.49256897, -36.2543602 ], [ 175.49009705, -36.25114441 ], [ 175.49256897, -36.25114441 ], [ 175.49256897, -36.2543602 ], [ 175.49256897, -36.2543602 ] ] ], [ [ [ 175.30278015, -36.23749924 ], [ 175.30259705, -36.23859024 ], [ 175.301132200000012, -36.23760223 ], [ 175.30278015, -36.23749924 ], [ 175.30278015, -36.23749924 ] ] ], [ [ [ 175.31599426, -36.23490906 ], [ 175.31352234, -36.23515701 ], [ 175.3155365, -36.23404312 ], [ 175.31599426, -36.23490906 ], [ 175.31599426, -36.23490906 ] ] ], [ [ [ 175.30741882, -36.23115158 ], [ 175.29585266, -36.23498154 ], [ 175.3012085, -36.22740555 ], [ 175.30741882, -36.23115158 ], [ 175.30741882, -36.23115158 ] ] ], [ [ [ 175.4936676, -36.22166824 ], [ 175.49290466, -36.22049332 ], [ 175.49467468, -36.21975327 ], [ 175.4936676, -36.22166824 ], [ 175.4936676, -36.22166824 ] ] ], [ [ [ 175.29943848, -36.21888733 ], [ 175.31195068, -36.22499847 ], [ 175.29417419, -36.22249985 ], [ 175.29943848, -36.21888733 ], [ 175.29943848, -36.21888733 ] ] ], [ [ [ 175.28639221, -36.21333313 ], [ 175.289993290000012, -36.21888733 ], [ 175.288604740000011, -36.22138977 ], [ 175.28639221, -36.21333313 ], [ 175.28639221, -36.21333313 ] ] ], [ [ [ 175.297775269999988, -36.20027924 ], [ 175.29804993, -36.20416641 ], [ 175.295837400000011, -36.20027924 ], [ 175.297775269999988, -36.20027924 ], [ 175.297775269999988, -36.20027924 ] ] ], [ [ [ 175.304901120000011, -36.1999321 ], [ 175.30366516, -36.20042419 ], [ 175.30366516, -36.19844818 ], [ 175.304901120000011, -36.1999321 ], [ 175.304901120000011, -36.1999321 ] ] ], [ [ [ 175.30844116, -36.18930054 ], [ 175.30427551, -36.1890564 ], [ 175.30551147, -36.18769455 ], [ 175.30844116, -36.18930054 ], [ 175.30844116, -36.18930054 ] ] ], [ [ [ 175.306442260000011, -36.18621063 ], [ 175.30535889, -36.1869545 ], [ 175.30474854, -36.18473053 ], [ 175.306442260000011, -36.18621063 ], [ 175.306442260000011, -36.18621063 ] ] ], [ [ [ 175.294982909999987, -36.18518066 ], [ 175.29252625, -36.1829567 ], [ 175.29437256, -36.18246078 ], [ 175.294982909999987, -36.18518066 ], [ 175.294982909999987, -36.18518066 ] ] ], [ [ [ 175.09361267, -36.16916656 ], [ 175.10583496000001, -36.16944504 ], [ 175.11610413, -36.1827774 ], [ 175.110275269999988, -36.1883316 ], [ 175.11193848, -36.21416855 ], [ 175.10667419, -36.22861099 ], [ 175.09916687, -36.23222351 ], [ 175.078338620000011, -36.23083496 ], [ 175.05999756, -36.22166824 ], [ 175.05055237, -36.2211113 ], [ 175.048614500000014, -36.20444489 ], [ 175.051391599999988, -36.18500137 ], [ 175.0708313, -36.17694473 ], [ 175.077774049999988, -36.17916489 ], [ 175.09361267, -36.16916656 ], [ 175.09361267, -36.16916656 ] ] ], [ [ [ 175.300155640000014, -36.16735458 ], [ 175.295837400000011, -36.16488266 ], [ 175.301544189999987, -36.1646347 ], [ 175.300155640000014, -36.16735458 ], [ 175.300155640000014, -36.16735458 ] ] ], [ [ [ 175.339080810000013, -36.16407394 ], [ 175.34249878, -36.17833328 ], [ 175.333892819999988, -36.18111038 ], [ 175.33778381, -36.18583298 ], [ 175.331115720000014, -36.19083405 ], [ 175.31277466, -36.18138885 ], [ 175.30332947, -36.16944504 ], [ 175.30528259, -36.16555405 ], [ 175.323608400000012, -36.17083359 ], [ 175.339080810000013, -36.16407394 ], [ 175.339080810000013, -36.16407394 ] ] ], [ [ [ 175.49806213, -36.16305542 ], [ 175.4916687, -36.16527939 ], [ 175.48971558, -36.16277695 ], [ 175.49806213, -36.16305542 ], [ 175.49806213, -36.16305542 ] ] ], [ [ [ 175.28805542, -36.1594429 ], [ 175.29444885, -36.16277695 ], [ 175.29272461, -36.1672287 ], [ 175.28805542, -36.1594429 ], [ 175.28805542, -36.1594429 ] ] ], [ [ [ 175.30888367, -36.14138794 ], [ 175.31111145, -36.14277649 ], [ 175.30833435, -36.14444351 ], [ 175.30888367, -36.14138794 ], [ 175.30888367, -36.14138794 ] ] ], [ [ [ 174.63522339, -36.14515686 ], [ 174.65336609, -36.1629715 ], [ 174.65110779, -36.16749954 ], [ 174.667343140000014, -36.18865204 ], [ 174.68914795, -36.21086502 ], [ 174.72833252, -36.24499893 ], [ 174.74720764, -36.25767899 ], [ 174.768615720000014, -36.25916672 ], [ 174.779785159999989, -36.26965332 ], [ 174.79914856, -36.26813507 ], [ 174.82028198, -36.27444458 ], [ 174.822509770000011, -36.27960587 ], [ 174.800003049999987, -36.30444336 ], [ 174.79466248, -36.30353928 ], [ 174.797775269999988, -36.32204437 ], [ 174.78379822, -36.32040024 ], [ 174.78259277, -36.30789185 ], [ 174.75750732, -36.31916809 ], [ 174.763885499999986, -36.32805634 ], [ 174.75971985000001, -36.33666611 ], [ 174.768890379999988, -36.35416794 ], [ 174.77638245, -36.35944366 ], [ 174.777771, -36.35222244 ], [ 174.768615720000014, -36.34083176 ], [ 174.77565002, -36.32389069 ], [ 174.780471799999987, -36.32223129 ], [ 174.78083801, -36.33972168 ], [ 174.78889465, -36.35111237 ], [ 174.804367070000012, -36.34745026 ], [ 174.81654358, -36.35943985 ], [ 174.839233400000012, -36.36986923 ], [ 174.856384279999986, -36.36583328 ], [ 174.86193848, -36.36000061 ], [ 174.86557007, -36.37009048 ], [ 174.84693909, -36.38083267 ], [ 174.8449707, -36.37844849 ], [ 174.82194519, -36.37666702 ], [ 174.80479431, -36.38342667 ], [ 174.79559326, -36.37924194 ], [ 174.792053220000014, -36.38952255 ], [ 174.779785159999989, -36.38541794 ], [ 174.768341060000012, -36.3912735 ], [ 174.7649231, -36.38343811 ], [ 174.75772095, -36.38233185 ], [ 174.757186890000014, -36.39266968 ], [ 174.742675780000013, -36.39739609 ], [ 174.7315979, -36.38865662 ], [ 174.73822021, -36.37300873 ], [ 174.731384279999986, -36.37333298 ], [ 174.721054079999988, -36.38892746 ], [ 174.73872375, -36.40179443 ], [ 174.72975159, -36.41090775 ], [ 174.73208618000001, -36.42351151 ], [ 174.73948669, -36.42406845 ], [ 174.74694824, -36.43638992 ], [ 174.76118469, -36.43070221 ], [ 174.76008606, -36.43761826 ], [ 174.773773190000014, -36.44091797 ], [ 174.7658844, -36.44686127 ], [ 174.766922, -36.46149063 ], [ 174.75508118, -36.4749527 ], [ 174.75213623, -36.49309921 ], [ 174.73979187, -36.49824142 ], [ 174.734725950000012, -36.48777771 ], [ 174.74414063, -36.48487473 ], [ 174.74572754, -36.47399139 ], [ 174.73944092, -36.47055435 ], [ 174.728607180000012, -36.48472214 ], [ 174.731384279999986, -36.45166779 ], [ 174.722854610000013, -36.43668365 ], [ 174.7141571, -36.43139648 ], [ 174.707931519999988, -36.43462753 ], [ 174.7134552, -36.44461441 ], [ 174.703460690000014, -36.44823456 ], [ 174.71095276, -36.4511528 ], [ 174.703613280000013, -36.4655571 ], [ 174.711837769999988, -36.46228027 ], [ 174.719665529999986, -36.47034454 ], [ 174.711425780000013, -36.47318268 ], [ 174.715271, -36.48749924 ], [ 174.70341492, -36.47452164 ], [ 174.69139099, -36.48138809 ], [ 174.70776367, -36.48524094 ], [ 174.706115720000014, -36.49472046 ], [ 174.7194519, -36.49499893 ], [ 174.71861267, -36.50361252 ], [ 174.73017883, -36.51727676 ], [ 174.722045900000012, -36.51877975 ], [ 174.72195435, -36.52544785 ], [ 174.711715700000013, -36.53026962 ], [ 174.71861267, -36.54611206 ], [ 174.71194458, -36.54888916 ], [ 174.704879760000011, -36.56425476 ], [ 174.69667053, -36.5616684 ], [ 174.69250488, -36.57527924 ], [ 174.70056152, -36.5961113 ], [ 174.72000122, -36.61027908 ], [ 174.732772829999988, -36.6222229 ], [ 174.74018860000001, -36.62414169 ], [ 174.74499512, -36.61805725 ], [ 174.75444031, -36.62861252 ], [ 174.764984129999988, -36.62617874 ], [ 174.77359009, -36.60601807 ], [ 174.7988739, -36.60061646 ], [ 174.81231689, -36.60146332 ], [ 174.82698059, -36.5920105 ], [ 174.83917236, -36.59249878 ], [ 174.841857909999987, -36.60139465 ], [ 174.83789063, -36.61478806 ], [ 174.83258057, -36.61993027 ], [ 174.823577879999988, -36.61423111 ], [ 174.81634521, -36.61763763 ], [ 174.80860901, -36.60836029 ], [ 174.80607605, -36.62430191 ], [ 174.798736569999988, -36.62942505 ], [ 174.789825439999987, -36.62469482 ], [ 174.771560670000014, -36.62540054 ], [ 174.77210999, -36.63004303 ], [ 174.76054382, -36.64135742 ], [ 174.749786379999989, -36.63983917 ], [ 174.73733521, -36.64815521 ], [ 174.727615359999987, -36.64610291 ], [ 174.7306366, -36.66270447 ], [ 174.71234131, -36.67443466 ], [ 174.730789179999988, -36.66940689 ], [ 174.744354249999986, -36.66017151 ], [ 174.74905396, -36.68097305 ], [ 174.763610840000013, -36.69583511 ], [ 174.75305176, -36.70249939 ], [ 174.74972534, -36.71416855 ], [ 174.75889587, -36.73083496 ], [ 174.75726318, -36.73915863 ], [ 174.770309450000013, -36.75818253 ], [ 174.76841736, -36.76640701 ], [ 174.77722168, -36.77388763 ], [ 174.775588989999989, -36.78743362 ], [ 174.79258728, -36.79959869 ], [ 174.81411743000001, -36.82762527 ], [ 174.79649353, -36.8332634 ], [ 174.784667969999987, -36.83230972 ], [ 174.77507019, -36.82492447 ], [ 174.78692627, -36.82000351 ], [ 174.78109741, -36.8153801 ], [ 174.762496950000013, -36.82110977 ], [ 174.77703857, -36.80975342 ], [ 174.765289309999986, -36.79846954 ], [ 174.751754760000011, -36.81555557 ], [ 174.74848938, -36.82757187 ], [ 174.74018860000001, -36.81729126 ], [ 174.73616028, -36.82245255 ], [ 174.70968628, -36.82638931 ], [ 174.6967926, -36.82323074 ], [ 174.679351809999986, -36.78834152 ], [ 174.6652832, -36.78111267 ], [ 174.66256714, -36.77205276 ], [ 174.67308044, -36.75695801 ], [ 174.65957642, -36.77095795 ], [ 174.6519165, -36.76856232 ], [ 174.63491821, -36.77178574 ], [ 174.633605960000011, -36.76700974 ], [ 174.607208250000014, -36.77388763 ], [ 174.63545227, -36.77622604 ], [ 174.64450073, -36.7746048 ], [ 174.64848328, -36.78260422 ], [ 174.64149475, -36.79126358 ], [ 174.666076659999987, -36.78504181 ], [ 174.67539978, -36.7949028 ], [ 174.67045593, -36.8055191 ], [ 174.65361023, -36.80459595 ], [ 174.638885499999986, -36.82361221 ], [ 174.64219666, -36.83140564 ], [ 174.645004269999987, -36.82194519 ], [ 174.65786743000001, -36.81516647 ], [ 174.65609741, -36.8277359 ], [ 174.661605830000013, -36.83152008 ], [ 174.663604740000011, -36.84666824 ], [ 174.65629578, -36.85379028 ], [ 174.65861511, -36.87942505 ], [ 174.66769409, -36.88144302 ], [ 174.66516113, -36.88782883 ], [ 174.67401123, -36.89351654 ], [ 174.67303467, -36.88363647 ], [ 174.664382929999988, -36.8796196 ], [ 174.65834045, -36.86536407 ], [ 174.66664124, -36.85723495 ], [ 174.6815033, -36.87699127 ], [ 174.69096375, -36.88014984 ], [ 174.703872679999989, -36.8506546 ], [ 174.70898438, -36.85595703 ], [ 174.73573303, -36.84051132 ], [ 174.74276733, -36.83430862 ], [ 174.746704099999988, -36.84137726 ], [ 174.76473999000001, -36.83957672 ], [ 174.78166199, -36.8433342 ], [ 174.78527832, -36.84000015 ], [ 174.792770389999987, -36.84860992 ], [ 174.79075623, -36.86040115 ], [ 174.81184387, -36.86079025 ], [ 174.805175780000013, -36.85333252 ], [ 174.81434631, -36.85197067 ], [ 174.82421875, -36.84395981 ], [ 174.846191409999989, -36.8504982 ], [ 174.85612488000001, -36.85035324 ], [ 174.86471558, -36.84361267 ], [ 174.87539673, -36.84647751 ], [ 174.884262080000013, -36.85935211 ], [ 174.88555908, -36.87333298 ], [ 174.877304079999988, -36.87441635 ], [ 174.86975098, -36.88442993 ], [ 174.868896479999989, -36.90222168 ], [ 174.85221863000001, -36.9141655 ], [ 174.86254883, -36.92725372 ], [ 174.85414124, -36.92984009 ], [ 174.8666687, -36.93305588 ], [ 174.857772829999988, -36.93861008 ], [ 174.85714722, -36.9468689 ], [ 174.87176514, -36.93473053 ], [ 174.87007141, -36.91969681 ], [ 174.862777709999989, -36.92250061 ], [ 174.85900879, -36.90898895 ], [ 174.87554932, -36.90472412 ], [ 174.87930298, -36.89136887 ], [ 174.887496950000013, -36.89027786 ], [ 174.89694214, -36.87888718 ], [ 174.90596008, -36.87366104 ], [ 174.898895259999989, -36.85972214 ], [ 174.89833069, -36.8461113 ], [ 174.90472412, -36.84777832 ], [ 174.90541077, -36.85891724 ], [ 174.914840700000013, -36.87380981 ], [ 174.927246090000011, -36.87918091 ], [ 174.94248962, -36.8927803 ], [ 174.95169067, -36.89477921 ], [ 174.95469666, -36.90237808 ], [ 174.951660159999989, -36.91249847 ], [ 174.962799069999988, -36.91230011 ], [ 174.97639465, -36.90750122 ], [ 174.99249268, -36.90805435 ], [ 174.9863739, -36.89934158 ], [ 174.983337400000011, -36.88277817 ], [ 175.00054932, -36.87611008 ], [ 175.01698303, -36.88047409 ], [ 175.0249939, -36.87555695 ], [ 175.038604740000011, -36.87388992 ], [ 175.043609620000012, -36.88000107 ], [ 175.05955505, -36.88559723 ], [ 175.06460571, -36.90013123 ], [ 175.07069397, -36.90451813 ], [ 175.09861755, -36.89972305 ], [ 175.081405640000014, -36.91238403 ], [ 175.08082581, -36.91999817 ], [ 175.0874939, -36.93916702 ], [ 175.0930481, -36.94527817 ], [ 175.113891599999988, -36.94416809 ], [ 175.11555481, -36.93805695 ], [ 175.12889099, -36.9394455 ], [ 175.13555908, -36.93083191 ], [ 175.143890379999988, -36.92777634 ], [ 175.1444397, -36.9383316 ], [ 175.15249634, -36.9402771 ], [ 175.15638733, -36.95000076 ], [ 175.16833496000001, -36.94666672 ], [ 175.17582703, -36.9375 ], [ 175.19166565, -36.92944336 ], [ 175.20555115, -36.94111252 ], [ 175.230270389999987, -36.94889069 ], [ 175.238891599999988, -36.95694351 ], [ 175.24888611, -36.95611191 ], [ 175.25166321, -36.96666718 ], [ 175.27444458, -36.98527908 ], [ 175.28305054, -36.98749924 ], [ 175.28782654, -36.99531174 ], [ 175.27339172, -37.02422333 ], [ 175.267211909999986, -37.02603531 ], [ 175.216308590000011, -37.03106689 ], [ 175.20687866, -37.03936005 ], [ 175.18336487, -37.03012848 ], [ 175.18638611, -37.02379227 ], [ 175.17288208, -37.01697159 ], [ 175.15328979, -37.02281189 ], [ 175.16027832, -37.03159332 ], [ 175.16073608, -37.04232407 ], [ 175.151580810000013, -37.06135941 ], [ 175.12791443, -37.05207825 ], [ 175.11830139, -37.06035995 ], [ 175.10475159, -37.05350113 ], [ 175.09165955, -37.05736542 ], [ 175.08161926, -37.05489349 ], [ 175.08465576, -37.04856491 ], [ 175.077667240000011, -37.0397644 ], [ 175.05805969, -37.04554367 ], [ 175.06155396, -37.04994583 ], [ 175.048477170000012, -37.05379486 ], [ 175.04588318, -37.07086182 ], [ 175.0328064, -37.07471085 ], [ 175.03630066, -37.07912064 ], [ 175.023223879999989, -37.08296967 ], [ 175.02061462, -37.10005188 ], [ 175.02410889, -37.10446548 ], [ 175.01101685, -37.10831833 ], [ 175.01802063, -37.11714172 ], [ 175.01496887, -37.12348175 ], [ 175.001861569999988, -37.12733841 ], [ 175.005371090000011, -37.13175201 ], [ 174.97915649, -37.13946152 ], [ 174.982208250000014, -37.13311768 ], [ 174.96911621000001, -37.13697052 ], [ 174.95864868000001, -37.12372208 ], [ 174.94554138, -37.12756729 ], [ 174.93942261, -37.14025116 ], [ 174.94332886, -37.15543365 ], [ 174.95294189, -37.14716339 ], [ 174.96690369, -37.16483307 ], [ 174.97695923, -37.16732025 ], [ 174.98396301, -37.17615128 ], [ 174.980896, -37.18249512 ], [ 174.994903560000012, -37.20016098 ], [ 174.991851809999986, -37.20650482 ], [ 175.00192261, -37.20898819 ], [ 174.979568480000012, -37.231884 ], [ 174.983078, -37.23629761 ], [ 174.96992493, -37.24015808 ], [ 174.94320679, -37.23711777 ], [ 174.93621826, -37.22828293 ], [ 174.92308044, -37.23213577 ], [ 174.937042240000011, -37.24981308 ], [ 174.93395996000001, -37.25615692 ], [ 174.920806879999986, -37.26001358 ], [ 174.927795409999987, -37.26884842 ], [ 174.92121887, -37.27077866 ], [ 174.91853333, -37.28787994 ], [ 174.884841920000014, -37.27599716 ], [ 174.86471558, -37.27100372 ], [ 174.85157776, -37.27485275 ], [ 174.85195923, -37.28562164 ], [ 174.84538269, -37.28754807 ], [ 174.852340700000013, -37.29639435 ], [ 174.849243159999986, -37.302742 ], [ 174.82292175, -37.31043625 ], [ 174.823303220000014, -37.32120895 ], [ 174.81323242, -37.3241539 ], [ 174.801391599999988, -37.32055664 ], [ 174.78222656, -37.32722092 ], [ 174.75944519, -37.34277725 ], [ 174.75527954, -37.34027863 ], [ 174.770004269999987, -37.32389069 ], [ 174.75889587, -37.32694626 ], [ 174.74610901, -37.33499908 ], [ 174.74055481, -37.34361267 ], [ 174.74583435, -37.35258102 ], [ 174.74339294, -37.36933517 ], [ 174.72793579, -37.38022995 ], [ 174.7191925, -37.38008881 ], [ 174.70744324, -37.36303329 ], [ 174.686874390000014, -37.35016632 ], [ 174.66555786, -37.30444336 ], [ 174.62750244, -37.23333359 ], [ 174.60806274, -37.19916534 ], [ 174.59635925, -37.1749115 ], [ 174.53805542, -37.07527924 ], [ 174.536193849999989, -37.05663681 ], [ 174.54148865, -37.04803467 ], [ 174.563537599999989, -37.04257202 ], [ 174.582229610000013, -37.04580688 ], [ 174.59613037, -37.04479218 ], [ 174.6033783, -37.0488739 ], [ 174.618377689999988, -37.04405975 ], [ 174.62768555, -37.03572083 ], [ 174.63929749, -37.04273987 ], [ 174.658401489999989, -37.04346085 ], [ 174.66659546, -37.05578232 ], [ 174.66238403, -37.07104874 ], [ 174.651550289999989, -37.07485199 ], [ 174.6582489, -37.08179855 ], [ 174.64932251, -37.08469772 ], [ 174.659835820000012, -37.09937286 ], [ 174.65719604, -37.1036644 ], [ 174.66603088, -37.11007309 ], [ 174.65834045, -37.11777878 ], [ 174.66726685, -37.11764908 ], [ 174.67073059, -37.1275444 ], [ 174.66278076, -37.13360977 ], [ 174.66549683, -37.13876724 ], [ 174.68989563, -37.14783478 ], [ 174.68093872, -37.1594162 ], [ 174.697479249999986, -37.15065384 ], [ 174.699020389999987, -37.15457916 ], [ 174.68888855, -37.16361237 ], [ 174.69416809, -37.18611145 ], [ 174.703887939999987, -37.1866684 ], [ 174.69416809, -37.19833374 ], [ 174.704162599999989, -37.19610977 ], [ 174.704727170000012, -37.21444321 ], [ 174.71903992, -37.21577072 ], [ 174.721740720000014, -37.23689651 ], [ 174.736114500000014, -37.23500061 ], [ 174.73854065, -37.22458649 ], [ 174.7253418, -37.22209167 ], [ 174.72193909, -37.20861053 ], [ 174.714218140000014, -37.20185089 ], [ 174.7207489, -37.18832779 ], [ 174.71542358, -37.18151855 ], [ 174.71470642, -37.16691208 ], [ 174.703460690000014, -37.15739441 ], [ 174.72558594, -37.15255737 ], [ 174.740737919999987, -37.16088867 ], [ 174.74615479, -37.17043304 ], [ 174.77471924, -37.16305542 ], [ 174.79055786, -37.16222382 ], [ 174.769210820000012, -37.15892792 ], [ 174.75379944, -37.16146088 ], [ 174.745040890000013, -37.16618347 ], [ 174.74511719, -37.15767288 ], [ 174.7361908, -37.14894485 ], [ 174.71401978, -37.152668 ], [ 174.70425415, -37.15139008 ], [ 174.70523071, -37.14375687 ], [ 174.69020081, -37.14219666 ], [ 174.69058228, -37.13669205 ], [ 174.72889709, -37.13051224 ], [ 174.74328613, -37.12337875 ], [ 174.75526428, -37.11260605 ], [ 174.77049255, -37.09150696 ], [ 174.77679443, -37.08836365 ], [ 174.79382324, -37.09136581 ], [ 174.793884279999986, -37.10111237 ], [ 174.80607605, -37.08727264 ], [ 174.823608400000012, -37.08222198 ], [ 174.83636475, -37.07331085 ], [ 174.84182739, -37.06376266 ], [ 174.85545349, -37.05511093 ], [ 174.86341858, -37.06336212 ], [ 174.8768158, -37.06953812 ], [ 174.88800049, -37.06748581 ], [ 174.89593506, -37.06103897 ], [ 174.90306091, -37.07277679 ], [ 174.91123962, -37.06416321 ], [ 174.924331669999987, -37.06008148 ], [ 174.917480469999987, -37.0536232 ], [ 174.90698242, -37.05328369 ], [ 174.90655518, -37.04590988 ], [ 174.89321899, -37.05011749 ], [ 174.88731384, -37.05898285 ], [ 174.869644169999987, -37.05386353 ], [ 174.87107849, -37.04896545 ], [ 174.885665890000013, -37.0430603 ], [ 174.874084470000014, -37.04246902 ], [ 174.86328125, -37.0529747 ], [ 174.857788090000014, -37.05137253 ], [ 174.85549927, -37.02599335 ], [ 174.84832764, -37.0336113 ], [ 174.83256531, -37.01757431 ], [ 174.8097229, -37.0055542 ], [ 174.8097229, -37.01777649 ], [ 174.793731689999987, -37.01195145 ], [ 174.76547241, -37.01953888 ], [ 174.77416992, -37.01083374 ], [ 174.751037599999989, -36.99941635 ], [ 174.7416687, -36.99208832 ], [ 174.74717712, -36.98075104 ], [ 174.76077271, -36.9774704 ], [ 174.7746582, -36.96874619 ], [ 174.77583313, -36.95972061 ], [ 174.7562561, -36.94947052 ], [ 174.75628662, -36.94068527 ], [ 174.79141235, -36.93827057 ], [ 174.802978520000011, -36.9471283 ], [ 174.81509399, -36.9428215 ], [ 174.81771851, -36.94869232 ], [ 174.82885742, -36.93861389 ], [ 174.828887939999987, -36.93102264 ], [ 174.78973389, -36.93144226 ], [ 174.7827301, -36.93377686 ], [ 174.772521970000014, -36.92459869 ], [ 174.758575439999987, -36.93213272 ], [ 174.740600590000014, -36.932827 ], [ 174.73147583, -36.93881226 ], [ 174.71430969, -36.9348793 ], [ 174.7114563, -36.92741776 ], [ 174.702789309999986, -36.93151855 ], [ 174.68081665, -36.93448639 ], [ 174.66665649, -36.94392014 ], [ 174.6643219, -36.95485687 ], [ 174.660476679999988, -36.95121765 ], [ 174.652008059999986, -36.96409988 ], [ 174.645172120000012, -36.96048737 ], [ 174.64451599, -36.96909714 ], [ 174.633270259999989, -36.97922516 ], [ 174.62127686, -36.97101593 ], [ 174.61820984, -36.9884491 ], [ 174.60464478, -36.99318314 ], [ 174.603149409999986, -37.00133514 ], [ 174.61245728, -37.0196991 ], [ 174.60089111, -37.01769257 ], [ 174.59416199, -37.00508499 ], [ 174.57286072, -37.01064301 ], [ 174.566894530000013, -36.99916458 ], [ 174.55845642, -37.02070999 ], [ 174.534805299999988, -37.0325737 ], [ 174.526412959999988, -37.03224564 ], [ 174.50762939, -37.04738617 ], [ 174.49095154, -37.0520668 ], [ 174.48316956, -37.04669952 ], [ 174.47659302, -37.02732468 ], [ 174.47538757, -36.99555206 ], [ 174.46765137, -36.98597717 ], [ 174.46028137, -36.95999908 ], [ 174.46801758, -36.95759201 ], [ 174.46606445, -36.94641876 ], [ 174.45916748, -36.93500137 ], [ 174.450271609999987, -36.92861176 ], [ 174.453338620000011, -36.92222214 ], [ 174.44389343, -36.91194534 ], [ 174.446105960000011, -36.8955574 ], [ 174.43756104, -36.88339233 ], [ 174.428894039999989, -36.87888718 ], [ 174.43360901, -36.86888885 ], [ 174.42694092, -36.85194397 ], [ 174.43110657, -36.84833145 ], [ 174.42648315, -36.83020401 ], [ 174.41694641, -36.80916595 ], [ 174.41278076, -36.80555725 ], [ 174.387496950000013, -36.76610947 ], [ 174.366394039999989, -36.73555374 ], [ 174.28250122, -36.6222229 ], [ 174.2444458, -36.57805634 ], [ 174.18110657, -36.50860977 ], [ 174.16471863000001, -36.48860931 ], [ 174.16082764, -36.47638702 ], [ 174.16166687, -36.4608345 ], [ 174.16944885, -36.44805527 ], [ 174.18861389, -36.44083405 ], [ 174.20317078, -36.42809677 ], [ 174.22583008, -36.42694473 ], [ 174.22583008, -36.42944336 ], [ 174.204162599999989, -36.43222046 ], [ 174.19332886, -36.44555664 ], [ 174.1902771, -36.45611191 ], [ 174.19778442, -36.46250153 ], [ 174.19944763, -36.44944382 ], [ 174.20555115, -36.43777847 ], [ 174.21305847, -36.4375 ], [ 174.2359314, -36.427845 ], [ 174.25250244, -36.45249939 ], [ 174.25965881, -36.45434952 ], [ 174.28012085, -36.49325943 ], [ 174.29333496000001, -36.50333405 ], [ 174.29267883, -36.5084877 ], [ 174.302505489999987, -36.52722168 ], [ 174.324996950000013, -36.5363884 ], [ 174.35083008, -36.54333496 ], [ 174.3555603, -36.55222321 ], [ 174.37971497, -36.56861115 ], [ 174.375, -36.57722092 ], [ 174.362503049999987, -36.58333206 ], [ 174.36384583, -36.5953064 ], [ 174.360000609999986, -36.60722351 ], [ 174.376464840000011, -36.59213257 ], [ 174.376190189999988, -36.60593414 ], [ 174.38534546, -36.6158638 ], [ 174.39944458, -36.6202774 ], [ 174.40306091, -36.6258316 ], [ 174.418609620000012, -36.61833191 ], [ 174.421112060000013, -36.61027908 ], [ 174.43638611, -36.61000061 ], [ 174.440643310000013, -36.60068893 ], [ 174.432678220000014, -36.5900116 ], [ 174.40834045, -36.58444595 ], [ 174.41389465, -36.57722092 ], [ 174.42971802, -36.57944489 ], [ 174.41917419, -36.57055664 ], [ 174.423751829999986, -36.55867386 ], [ 174.44221497, -36.55666733 ], [ 174.43556213, -36.54472351 ], [ 174.427505489999987, -36.53888702 ], [ 174.422225950000012, -36.52777863 ], [ 174.42666626, -36.52222061 ], [ 174.422775269999988, -36.51139069 ], [ 174.43055725, -36.51111221 ], [ 174.423889159999987, -36.49666595 ], [ 174.41172791, -36.48948288 ], [ 174.4055481, -36.47750092 ], [ 174.409729, -36.46666718 ], [ 174.41000366, -36.44777679 ], [ 174.41760254, -36.43902588 ], [ 174.43943787, -36.42750168 ], [ 174.42852783, -36.42801666 ], [ 174.42555237, -36.42083359 ], [ 174.41221619, -36.41027832 ], [ 174.413604740000011, -36.40277863 ], [ 174.397506709999988, -36.39722061 ], [ 174.393615720000014, -36.38888931 ], [ 174.41870117, -36.3806572 ], [ 174.42555237, -36.37388992 ], [ 174.41111755, -36.36777878 ], [ 174.417221070000011, -36.35889053 ], [ 174.402771, -36.3544426 ], [ 174.40499878, -36.36500168 ], [ 174.416107180000012, -36.37472153 ], [ 174.40596008, -36.38108826 ], [ 174.38555908, -36.38611221 ], [ 174.381896970000014, -36.4062233 ], [ 174.368225099999989, -36.40099716 ], [ 174.36384583, -36.40944672 ], [ 174.356109620000012, -36.41194534 ], [ 174.35028076, -36.40277863 ], [ 174.325286870000014, -36.38490295 ], [ 174.31361389, -36.38277817 ], [ 174.310775760000013, -36.39226913 ], [ 174.29055786, -36.38999939 ], [ 174.27287292, -36.39101791 ], [ 174.25138855, -36.38138962 ], [ 174.25027466, -36.37527847 ], [ 174.262496950000013, -36.35583496 ], [ 174.25889587, -36.34500122 ], [ 174.25805664, -36.3144455 ], [ 174.262496950000013, -36.32166672 ], [ 174.26333618000001, -36.3405571 ], [ 174.26832581, -36.31027603 ], [ 174.28166199, -36.30444336 ], [ 174.297225950000012, -36.30749893 ], [ 174.31333923, -36.32277679 ], [ 174.35398865, -36.32294464 ], [ 174.363891599999988, -36.31861115 ], [ 174.36610413, -36.31027603 ], [ 174.373947140000013, -36.31713867 ], [ 174.37928772, -36.31167984 ], [ 174.39144897, -36.30988693 ], [ 174.39305115, -36.30222321 ], [ 174.40750122, -36.29277802 ], [ 174.41661072, -36.2756424 ], [ 174.42778015, -36.27361298 ], [ 174.44082642, -36.26555634 ], [ 174.453338620000011, -36.25333405 ], [ 174.46499634, -36.26166534 ], [ 174.47138977, -36.25860977 ], [ 174.47721863000001, -36.23013306 ], [ 174.48692322, -36.23255539 ], [ 174.490173340000013, -36.22624207 ], [ 174.49987793, -36.22865677 ], [ 174.51280212, -36.22473526 ], [ 174.509567260000011, -36.22036743 ], [ 174.52890015, -36.21446228 ], [ 174.522399900000011, -36.20570755 ], [ 174.53198242, -36.19737625 ], [ 174.531875609999986, -36.18663406 ], [ 174.557525629999986, -36.17871094 ], [ 174.56723022, -36.1811409 ], [ 174.573440549999987, -36.16841507 ], [ 174.58314514, -36.17086792 ], [ 174.58930969, -36.15815735 ], [ 174.58268738000001, -36.14934158 ], [ 174.60180664, -36.1435051 ], [ 174.59849548, -36.13909531 ], [ 174.61122131, -36.1352272 ], [ 174.61094666, -36.12446976 ], [ 174.619506840000014, -36.12182999 ], [ 174.63522339, -36.14515686 ], [ 174.63522339, -36.14515686 ] ] ], [ [ [ 175.49740601, -36.11763382 ], [ 175.511383059999986, -36.11999893 ], [ 175.49668884, -36.13606262 ], [ 175.48693848, -36.13416672 ], [ 175.48666382, -36.12444305 ], [ 175.49740601, -36.11763382 ], [ 175.49740601, -36.11763382 ] ] ], [ [ [ 175.41055298, -36.02999878 ], [ 175.41694641, -36.03333282 ], [ 175.40249634, -36.04277802 ], [ 175.40583801, -36.05361176 ], [ 175.414993290000012, -36.06277847 ], [ 175.40415955, -36.07027817 ], [ 175.41111755, -36.07110977 ], [ 175.40499878, -36.08083344 ], [ 175.41082764, -36.0933342 ], [ 175.422500609999986, -36.08527756 ], [ 175.426391599999988, -36.09111023 ], [ 175.425003049999987, -36.10222244 ], [ 175.43110657, -36.10749817 ], [ 175.44639587, -36.10749817 ], [ 175.43972778, -36.11583328 ], [ 175.42971802, -36.11249924 ], [ 175.425277709999989, -36.11750031 ], [ 175.425277709999989, -36.13360977 ], [ 175.4291687, -36.14027786 ], [ 175.420272829999988, -36.14055634 ], [ 175.424728390000013, -36.14611053 ], [ 175.43722534, -36.14166641 ], [ 175.448608400000012, -36.15250015 ], [ 175.453338620000011, -36.15055466 ], [ 175.46360779, -36.15805435 ], [ 175.47555542, -36.1566658 ], [ 175.485000609999986, -36.16916656 ], [ 175.49694824, -36.16611099 ], [ 175.506103520000011, -36.17250061 ], [ 175.49638367, -36.17972183 ], [ 175.49667358, -36.18888855 ], [ 175.490005489999987, -36.1866684 ], [ 175.481384279999986, -36.20750046 ], [ 175.488891599999988, -36.21500015 ], [ 175.47361755, -36.23389053 ], [ 175.47639465, -36.24638748 ], [ 175.49777222, -36.26833344 ], [ 175.50971985000001, -36.26416779 ], [ 175.52194214, -36.27777863 ], [ 175.52667236, -36.27777863 ], [ 175.53666687, -36.2919426 ], [ 175.54556274, -36.29694366 ], [ 175.55082703, -36.31583405 ], [ 175.54167175, -36.3180542 ], [ 175.53694153, -36.32916641 ], [ 175.53833008, -36.33750153 ], [ 175.52915955, -36.34805679 ], [ 175.520278929999989, -36.3488884 ], [ 175.50054932, -36.33833313 ], [ 175.49028015, -36.34027863 ], [ 175.47389221, -36.33194351 ], [ 175.48445129000001, -36.31944275 ], [ 175.49194336, -36.32361221 ], [ 175.49417114, -36.31222153 ], [ 175.48944092, -36.30472183 ], [ 175.47055054, -36.30138779 ], [ 175.46833801, -36.30888748 ], [ 175.45944214, -36.3133316 ], [ 175.453887939999987, -36.30638885 ], [ 175.43222046, -36.30916595 ], [ 175.43417358, -36.28666687 ], [ 175.42944336, -36.2816658 ], [ 175.43305969, -36.27249908 ], [ 175.44250488, -36.26444626 ], [ 175.42555237, -36.26055527 ], [ 175.41471863000001, -36.26889038 ], [ 175.40333557, -36.26638794 ], [ 175.39805603, -36.25944519 ], [ 175.40361023, -36.25694275 ], [ 175.3972168, -36.2452774 ], [ 175.391113280000013, -36.24388885 ], [ 175.386383059999986, -36.2555542 ], [ 175.3722229, -36.25138855 ], [ 175.34944153, -36.22888947 ], [ 175.32278442, -36.22055435 ], [ 175.324996950000013, -36.22750092 ], [ 175.31416321, -36.22499847 ], [ 175.30860901, -36.21277618 ], [ 175.31388855, -36.20750046 ], [ 175.31195068, -36.19166565 ], [ 175.318603520000011, -36.19916534 ], [ 175.326110840000013, -36.19138718 ], [ 175.33833313, -36.21389008 ], [ 175.34222412, -36.20277786 ], [ 175.35795593, -36.20695877 ], [ 175.34693909, -36.19472122 ], [ 175.34750366, -36.1847229 ], [ 175.36694336, -36.18416595 ], [ 175.35083008, -36.17361069 ], [ 175.36054993, -36.17361069 ], [ 175.35945129000001, -36.16666794 ], [ 175.35139465, -36.16916656 ], [ 175.34555054, -36.16027832 ], [ 175.33860779, -36.15833282 ], [ 175.34777832, -36.15194321 ], [ 175.34666443, -36.14666748 ], [ 175.33555603, -36.14638901 ], [ 175.326385499999986, -36.13861084 ], [ 175.32000732, -36.1483345 ], [ 175.30944824, -36.13999939 ], [ 175.31083679, -36.1305542 ], [ 175.31832886, -36.1241684 ], [ 175.32583618000001, -36.13333511 ], [ 175.33999634, -36.13027954 ], [ 175.34472656, -36.1241684 ], [ 175.34916687, -36.13083267 ], [ 175.37333679, -36.11833191 ], [ 175.36416626, -36.11805725 ], [ 175.34916687, -36.10889053 ], [ 175.34222412, -36.0961113 ], [ 175.34777832, -36.07794189 ], [ 175.33972168, -36.07305527 ], [ 175.34666443, -36.0644455 ], [ 175.35139465, -36.06972122 ], [ 175.36785889, -36.06409073 ], [ 175.36917114, -36.05699158 ], [ 175.40083313, -36.04805374 ], [ 175.398895259999989, -36.04000092 ], [ 175.41055298, -36.02999878 ], [ 175.41055298, -36.02999878 ] ] ], [ [ [ 175.40756226, -36.02861023 ], [ 175.40632629000001, -36.0253334 ], [ 175.4085083, -36.02484512 ], [ 175.40756226, -36.02861023 ], [ 175.40756226, -36.02861023 ] ] ], [ [ [ 175.14620972, -35.93373108 ], [ 175.15499878, -35.94610977 ], [ 175.140274049999988, -35.94194412 ], [ 175.14620972, -35.93373108 ], [ 175.14620972, -35.93373108 ] ] ], [ [ [ 175.16027832, -35.92139053 ], [ 175.16221619, -35.92250061 ], [ 175.15986633, -35.92295074 ], [ 175.16027832, -35.92139053 ], [ 175.16027832, -35.92139053 ] ] ], [ [ [ 175.094360349999988, -35.91471863 ], [ 175.09463501, -35.91281128 ], [ 175.09555054, -35.91380692 ], [ 175.094360349999988, -35.91471863 ], [ 175.094360349999988, -35.91471863 ] ] ], [ [ [ 175.113891599999988, -35.91333389 ], [ 175.11444092, -35.91083145 ], [ 175.11582947, -35.91194534 ], [ 175.113891599999988, -35.91333389 ], [ 175.113891599999988, -35.91333389 ] ] ], [ [ [ 175.12083435, -35.90277863 ], [ 175.10212708, -35.91672134 ], [ 175.09555054, -35.9113884 ], [ 175.10583496000001, -35.90777588 ], [ 175.108337400000011, -35.90191269 ], [ 175.12083435, -35.90277863 ], [ 175.12083435, -35.90277863 ] ] ], [ [ [ 175.05667114, -35.9011116 ], [ 175.05471802, -35.90027618 ], [ 175.056396479999989, -35.89916611 ], [ 175.05667114, -35.9011116 ], [ 175.05667114, -35.9011116 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.2", "id_1": 2, "name_1": "Bay of Plenty", "hasc_1": "NZ.BP", "population2022": 347700, "areakm2": 13514.775, "density2022": 25.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.13305664, -38.01722336 ], [ 177.13583374000001, -38.01833344 ], [ 177.13389587, -38.02194595 ], [ 177.13305664, -38.01722336 ], [ 177.13305664, -38.01722336 ] ] ], [ [ [ 177.13166809, -38.0047226 ], [ 177.13945007, -38.00999832 ], [ 177.133605960000011, -38.01277924 ], [ 177.13166809, -38.0047226 ], [ 177.13166809, -38.0047226 ] ] ], [ [ [ 177.1555481, -37.99777603 ], [ 177.14692688, -38.00155258 ], [ 177.145004269999987, -37.99888992 ], [ 177.1555481, -37.99777603 ], [ 177.1555481, -37.99777603 ] ] ], [ [ [ 177.12416077, -37.9952774 ], [ 177.12477112, -38.00325394 ], [ 177.11471558, -38.00944519 ], [ 177.11416626, -37.99750137 ], [ 177.12416077, -37.9952774 ], [ 177.12416077, -37.9952774 ] ] ], [ [ [ 177.07139587, -37.98361206 ], [ 177.08528137, -37.99111176 ], [ 177.073883059999986, -37.99027634 ], [ 177.07139587, -37.98361206 ], [ 177.07139587, -37.98361206 ] ] ], [ [ [ 176.96972656, -37.84999847 ], [ 176.98809814, -37.85563278 ], [ 176.98742676, -37.85967636 ], [ 176.970916749999986, -37.85990143 ], [ 176.96037292, -37.85390854 ], [ 176.96333313, -37.84722137 ], [ 176.96972656, -37.84999847 ], [ 176.96972656, -37.84999847 ] ] ], [ [ [ 176.883605960000011, -37.83333206 ], [ 176.8833313, -37.83055496 ], [ 176.88694763, -37.83083344 ], [ 176.883605960000011, -37.83333206 ], [ 176.883605960000011, -37.83333206 ] ] ], [ [ [ 176.87527466, -37.83055496 ], [ 176.86860657, -37.83061981 ], [ 176.87693787, -37.82638931 ], [ 176.87527466, -37.83055496 ], [ 176.87527466, -37.83055496 ] ] ], [ [ [ 176.47917175, -37.7705574 ], [ 176.4805603, -37.77249908 ], [ 176.47805786, -37.77166748 ], [ 176.47917175, -37.7705574 ], [ 176.47917175, -37.7705574 ] ] ], [ [ [ 176.477035519999987, -37.77118683 ], [ 176.47618103, -37.77161789 ], [ 176.47547913, -37.77045059 ], [ 176.477035519999987, -37.77118683 ], [ 176.477035519999987, -37.77118683 ] ] ], [ [ [ 176.47471619, -37.76916504 ], [ 176.47361755, -37.76972198 ], [ 176.47277832, -37.76861191 ], [ 176.47471619, -37.76916504 ], [ 176.47471619, -37.76916504 ] ] ], [ [ [ 176.482223510000011, -37.76527786 ], [ 176.483612060000013, -37.76944351 ], [ 176.47666931, -37.76805496 ], [ 176.482223510000011, -37.76527786 ], [ 176.482223510000011, -37.76527786 ] ] ], [ [ [ 176.1930542, -37.6847229 ], [ 176.1958313, -37.68972397 ], [ 176.18972778, -37.68611145 ], [ 176.1930542, -37.6847229 ], [ 176.1930542, -37.6847229 ] ] ], [ [ [ 176.15249634, -37.68598938 ], [ 176.15138245, -37.6847229 ], [ 176.15377808, -37.68484497 ], [ 176.15249634, -37.68598938 ], [ 176.15249634, -37.68598938 ] ] ], [ [ [ 176.56222534, -37.66222382 ], [ 176.55805969, -37.66249847 ], [ 176.56138611, -37.65805435 ], [ 176.56222534, -37.66222382 ], [ 176.56222534, -37.66222382 ] ] ], [ [ [ 176.085479740000011, -37.63493347 ], [ 176.0665741, -37.64846802 ], [ 176.06195068, -37.64425278 ], [ 176.06929016, -37.6366272 ], [ 176.085479740000011, -37.63493347 ], [ 176.085479740000011, -37.63493347 ] ] ], [ [ [ 176.19458008, -37.63232803 ], [ 176.19332886, -37.63081741 ], [ 176.19429016, -37.63029099 ], [ 176.19458008, -37.63232803 ], [ 176.19458008, -37.63232803 ] ] ], [ [ [ 176.09092712, -37.61990738 ], [ 176.092300419999987, -37.6231041 ], [ 176.08757019, -37.62001038 ], [ 176.09092712, -37.61990738 ], [ 176.09092712, -37.61990738 ] ] ], [ [ [ 175.995346070000011, -37.6297226 ], [ 175.990310670000014, -37.6249733 ], [ 175.99446106, -37.61780167 ], [ 175.995346070000011, -37.6297226 ], [ 175.995346070000011, -37.6297226 ] ] ], [ [ [ 176.08473206, -37.61838913 ], [ 176.08369446, -37.61771774 ], [ 176.086547849999988, -37.61642456 ], [ 176.08473206, -37.61838913 ], [ 176.08473206, -37.61838913 ] ] ], [ [ [ 176.52705383, -37.60882187 ], [ 176.525894169999987, -37.6088829 ], [ 176.527145389999987, -37.60728836 ], [ 176.52705383, -37.60882187 ], [ 176.52705383, -37.60882187 ] ] ], [ [ [ 176.09280396, -37.60676193 ], [ 176.11193848, -37.6202774 ], [ 176.12306213, -37.61722183 ], [ 176.122833250000014, -37.63134384 ], [ 176.12693787, -37.63611221 ], [ 176.10723877, -37.63940811 ], [ 176.10481262, -37.61935806 ], [ 176.090591429999989, -37.60984039 ], [ 176.09280396, -37.60676193 ], [ 176.09280396, -37.60676193 ] ] ], [ [ [ 176.41667175, -37.6016655 ], [ 176.43777466, -37.61333466 ], [ 176.44000244, -37.6202774 ], [ 176.431427, -37.62984085 ], [ 176.42832947, -37.63916779 ], [ 176.41209412, -37.6425972 ], [ 176.40527344, -37.65472412 ], [ 176.40873718, -37.62427139 ], [ 176.41311646, -37.62330627 ], [ 176.41667175, -37.6016655 ], [ 176.41667175, -37.6016655 ] ] ], [ [ [ 176.018890379999988, -37.57277679 ], [ 176.02360535, -37.57583237 ], [ 176.01519775, -37.58384705 ], [ 176.00479126, -37.58496094 ], [ 176.00115967, -37.57711792 ], [ 176.018890379999988, -37.57277679 ], [ 176.018890379999988, -37.57277679 ] ] ], [ [ [ 176.024475099999989, -37.57344437 ], [ 176.022537230000012, -37.57178879 ], [ 176.02455139, -37.57227707 ], [ 176.024475099999989, -37.57344437 ], [ 176.024475099999989, -37.57344437 ] ] ], [ [ [ 176.01908875, -37.57110977 ], [ 176.015625, -37.57138824 ], [ 176.01716614, -37.56898117 ], [ 176.01908875, -37.57110977 ], [ 176.01908875, -37.57110977 ] ] ], [ [ [ 175.94778442, -37.5644455 ], [ 175.946105960000011, -37.5633316 ], [ 175.948593140000014, -37.56324005 ], [ 175.94778442, -37.5644455 ], [ 175.94778442, -37.5644455 ] ] ], [ [ [ 176.13334656, -37.52894974 ], [ 176.13269043, -37.53134918 ], [ 176.12931824, -37.52961731 ], [ 176.13334656, -37.52894974 ], [ 176.13334656, -37.52894974 ] ] ], [ [ [ 177.18083191, -37.50916672 ], [ 177.19491577, -37.51530075 ], [ 177.1930542, -37.52777863 ], [ 177.17971802, -37.52999878 ], [ 177.167221070000011, -37.51777649 ], [ 177.18083191, -37.50916672 ], [ 177.18083191, -37.50916672 ] ] ], [ [ [ 177.133605960000011, -37.47527695 ], [ 177.13583374000001, -37.47694397 ], [ 177.13194275, -37.47722244 ], [ 177.133605960000011, -37.47527695 ], [ 177.133605960000011, -37.47527695 ] ] ], [ [ [ 175.98852539, -37.47361374 ], [ 176.00416565, -37.47888947 ], [ 176.017654420000014, -37.48993301 ], [ 176.02946472, -37.50756073 ], [ 176.053924560000013, -37.53728104 ], [ 176.09513855, -37.58045578 ], [ 176.127014159999987, -37.60689926 ], [ 176.134704590000013, -37.61112213 ], [ 176.16163635, -37.63563538 ], [ 176.15208435, -37.64425278 ], [ 176.136260990000011, -37.63335419 ], [ 176.1277771, -37.63249969 ], [ 176.126861569999988, -37.61992645 ], [ 176.11875916, -37.61369324 ], [ 176.10813904, -37.61241913 ], [ 176.101760860000013, -37.60261154 ], [ 176.082229610000013, -37.59555435 ], [ 176.08100891, -37.60460281 ], [ 176.087677, -37.61185074 ], [ 176.08082581, -37.62194443 ], [ 176.07333374000001, -37.62250137 ], [ 176.064224239999987, -37.60777664 ], [ 176.03434753, -37.60134125 ], [ 176.027679440000014, -37.58443832 ], [ 176.02896118000001, -37.57270813 ], [ 176.03767395, -37.56790161 ], [ 176.056991579999988, -37.57234573 ], [ 176.068420409999987, -37.58197403 ], [ 176.068161010000011, -37.57081604 ], [ 176.053909299999987, -37.5659523 ], [ 176.03823853, -37.54964447 ], [ 176.02929688, -37.54592133 ], [ 176.015289309999986, -37.53305054 ], [ 176.00123596, -37.51208878 ], [ 175.98466492, -37.49910355 ], [ 175.98287964, -37.48009109 ], [ 175.98852539, -37.47361374 ], [ 175.98852539, -37.47361374 ] ] ], [ [ [ 175.94665527, -37.46854782 ], [ 175.94488525, -37.46573257 ], [ 175.94851685, -37.46558762 ], [ 175.94665527, -37.46854782 ], [ 175.94665527, -37.46854782 ] ] ], [ [ [ 175.9246521, -37.37372589 ], [ 175.92825317, -37.37813568 ], [ 175.94009399, -37.37508774 ], [ 175.938140870000012, -37.38247681 ], [ 175.94351196, -37.38829422 ], [ 175.939529420000014, -37.39912796 ], [ 175.9574585, -37.42624664 ], [ 175.983871459999989, -37.45849991 ], [ 175.99163818, -37.46605301 ], [ 175.978866579999988, -37.46902466 ], [ 175.97193909, -37.45444489 ], [ 175.961853029999986, -37.44865799 ], [ 175.94508362, -37.46009827 ], [ 175.94038391, -37.46871948 ], [ 175.93943787, -37.48138809 ], [ 175.947189329999986, -37.47925949 ], [ 175.93940735000001, -37.49137115 ], [ 175.93026733, -37.49583817 ], [ 175.94271851, -37.49932098 ], [ 175.95799255, -37.49225235 ], [ 175.96723938, -37.49481964 ], [ 175.978317260000011, -37.51382065 ], [ 175.960617070000012, -37.51981735 ], [ 175.94642639, -37.53164291 ], [ 175.936859129999988, -37.53033066 ], [ 175.920272829999988, -37.53416443 ], [ 175.936752320000011, -37.53646088 ], [ 175.94960022, -37.54481888 ], [ 175.95088196, -37.55825806 ], [ 175.94418335, -37.55559921 ], [ 175.93089294, -37.55924606 ], [ 175.93760681, -37.56319809 ], [ 175.92442322, -37.57474136 ], [ 175.92901611, -37.58218384 ], [ 175.94354248, -37.5689888 ], [ 175.943557739999989, -37.58070374 ], [ 175.95150757, -37.59152985 ], [ 175.96691895, -37.58249283 ], [ 175.97195435, -37.5737114 ], [ 175.98016357, -37.59008789 ], [ 175.96305847, -37.60138702 ], [ 175.96522522, -37.60536957 ], [ 175.98832703, -37.60833359 ], [ 175.99110413, -37.61639023 ], [ 175.97416687, -37.61972046 ], [ 175.991836549999988, -37.63219452 ], [ 175.99008179, -37.63947296 ], [ 176.00511169, -37.62836456 ], [ 176.01661682, -37.62411499 ], [ 176.01832581, -37.64138794 ], [ 176.03909302, -37.63681412 ], [ 176.04808044, -37.62693024 ], [ 176.04821777, -37.63459015 ], [ 176.03321838, -37.66100693 ], [ 176.04618835, -37.65228271 ], [ 176.0450592, -37.66077423 ], [ 176.05047607, -37.66926193 ], [ 176.04083252, -37.67944336 ], [ 176.05085754000001, -37.67770386 ], [ 176.05104065, -37.65898895 ], [ 176.0625, -37.66444397 ], [ 176.06364441, -37.65695953 ], [ 176.07395935, -37.65782547 ], [ 176.093261719999987, -37.66439819 ], [ 176.09509277, -37.67428589 ], [ 176.10128784, -37.67905045 ], [ 176.09378052, -37.68546677 ], [ 176.11207581, -37.67813873 ], [ 176.11860657, -37.67972183 ], [ 176.12638855, -37.67333221 ], [ 176.113632200000012, -37.66998291 ], [ 176.124542240000011, -37.65986252 ], [ 176.137496950000013, -37.66083145 ], [ 176.16296387, -37.66990662 ], [ 176.15583801, -37.67938614 ], [ 176.14756775, -37.68057632 ], [ 176.15179443, -37.69582367 ], [ 176.16098022, -37.6877594 ], [ 176.16654968, -37.66617203 ], [ 176.164825439999987, -37.66030884 ], [ 176.17694092, -37.66110992 ], [ 176.171249390000014, -37.67781067 ], [ 176.171661379999989, -37.68888855 ], [ 176.16653442, -37.69725037 ], [ 176.16648865, -37.71429825 ], [ 176.1622467, -37.71141434 ], [ 176.15222168, -37.71694565 ], [ 176.15974426, -37.72842789 ], [ 176.185317989999987, -37.70799637 ], [ 176.19128418, -37.71688461 ], [ 176.1819458, -37.72305679 ], [ 176.19917297, -37.72027588 ], [ 176.208786010000011, -37.71132278 ], [ 176.23088074, -37.7130661 ], [ 176.22619629, -37.7059021 ], [ 176.23620605, -37.69799042 ], [ 176.22200012, -37.69376373 ], [ 176.21611023, -37.6883316 ], [ 176.21217346, -37.69612885 ], [ 176.19029236, -37.70602036 ], [ 176.1791687, -37.69333267 ], [ 176.18499756, -37.68416595 ], [ 176.19781494, -37.69396591 ], [ 176.20561218, -37.68731689 ], [ 176.20132446, -37.67680359 ], [ 176.19410706, -37.68157578 ], [ 176.17930603, -37.66657639 ], [ 176.18278503, -37.64861298 ], [ 176.18008423, -37.63768387 ], [ 176.166107180000012, -37.63222122 ], [ 176.17416382, -37.6241684 ], [ 176.19644165, -37.64503479 ], [ 176.230010990000011, -37.6688118 ], [ 176.263595579999986, -37.6866951 ], [ 176.289535519999987, -37.69782257 ], [ 176.346191409999989, -37.71651077 ], [ 176.38117981, -37.73456955 ], [ 176.40541077, -37.74459076 ], [ 176.4458313, -37.75444412 ], [ 176.422637939999987, -37.75545502 ], [ 176.431991579999988, -37.76247787 ], [ 176.43760681, -37.75880432 ], [ 176.453887939999987, -37.75749969 ], [ 176.46833801, -37.73777771 ], [ 176.48051453, -37.76119614 ], [ 176.47305298, -37.76361084 ], [ 176.46888733, -37.77277756 ], [ 176.49380493000001, -37.77191544 ], [ 176.48306274, -37.75916672 ], [ 176.499069209999988, -37.7713356 ], [ 176.563568120000014, -37.80960083 ], [ 176.60649109, -37.83219147 ], [ 176.66053772, -37.85463333 ], [ 176.69010925, -37.8649826 ], [ 176.749679570000012, -37.88375473 ], [ 176.822021479999989, -37.89385605 ], [ 176.88221741000001, -37.90972137 ], [ 176.927795409999987, -37.91599655 ], [ 176.95407104, -37.92385483 ], [ 176.9831543, -37.93661499 ], [ 177.00805664, -37.94388962 ], [ 176.99316406, -37.94932556 ], [ 177.00639343, -37.94805527 ], [ 177.01306152, -37.93777847 ], [ 177.02333069, -37.94555664 ], [ 177.019195559999986, -37.95024872 ], [ 177.03416443, -37.96277618 ], [ 177.0597229, -37.9711113 ], [ 177.09944153, -37.97916794 ], [ 177.14305115, -37.98638916 ], [ 177.143890379999988, -37.99166489 ], [ 177.118896479999989, -37.98888779 ], [ 177.09666443, -37.98110962 ], [ 177.083618159999986, -37.97888947 ], [ 177.06832886, -37.98027802 ], [ 177.0625, -37.98416519 ], [ 177.06388855, -37.99305725 ], [ 177.0569458, -37.99583435 ], [ 177.06138611, -38.00972366 ], [ 177.07221985000001, -38.00916672 ], [ 177.07028198, -37.99694443 ], [ 177.08972168, -37.99611282 ], [ 177.08666992, -38.0055542 ], [ 177.09555054, -38.01583481 ], [ 177.09249878, -38.0027771 ], [ 177.1086731, -38.00219345 ], [ 177.11305237, -38.01111221 ], [ 177.10806274, -38.02249908 ], [ 177.11860657, -38.01777649 ], [ 177.13278198, -38.03694534 ], [ 177.15055847, -38.04277802 ], [ 177.15722656, -38.04027939 ], [ 177.14416504, -38.03472137 ], [ 177.13806152, -38.0205574 ], [ 177.142501829999986, -38.00916672 ], [ 177.15943909, -38.00972366 ], [ 177.16221619, -37.98749924 ], [ 177.198608400000012, -37.99111176 ], [ 177.184234620000012, -37.99274826 ], [ 177.193283079999986, -38.00144958 ], [ 177.19528198, -37.99250031 ], [ 177.2088623, -37.99084854 ], [ 177.262771609999987, -37.99194336 ], [ 177.27944946, -38.00166702 ], [ 177.2694397, -37.99166489 ], [ 177.34693909, -37.98833466 ], [ 177.38250732, -37.98361206 ], [ 177.391387939999987, -37.98555374 ], [ 177.419998170000014, -37.97722244 ], [ 177.426391599999988, -37.9663887 ], [ 177.43804932, -37.96755981 ], [ 177.443603520000011, -37.95722198 ], [ 177.44787598, -37.96107483 ], [ 177.486389159999987, -37.95027924 ], [ 177.49194336, -37.94194412 ], [ 177.488632200000012, -37.93442917 ], [ 177.52944946, -37.92055511 ], [ 177.546386719999987, -37.90750122 ], [ 177.544998170000014, -37.89666748 ], [ 177.55386353, -37.88376999 ], [ 177.57556152, -37.87333298 ], [ 177.58555603, -37.85925674 ], [ 177.58416748, -37.84444427 ], [ 177.58860779, -37.83666611 ], [ 177.606384279999986, -37.83722305 ], [ 177.612503049999987, -37.82583237 ], [ 177.611114500000014, -37.81277847 ], [ 177.61972046, -37.8069458 ], [ 177.63000488, -37.8144455 ], [ 177.64833069, -37.80638885 ], [ 177.6569519, -37.79249954 ], [ 177.65083313, -37.7863884 ], [ 177.66000366, -37.7761116 ], [ 177.67304993, -37.77111053 ], [ 177.68388367, -37.75805664 ], [ 177.678894039999989, -37.7480545 ], [ 177.66833496000001, -37.73833466 ], [ 177.7069397, -37.72166824 ], [ 177.707229610000013, -37.71472168 ], [ 177.7180481, -37.70611191 ], [ 177.727310179999989, -37.6775322 ], [ 177.75389099, -37.67388916 ], [ 177.79417419, -37.67666626 ], [ 177.80010986, -37.67329407 ], [ 177.800277709999989, -37.66444397 ], [ 177.81666565, -37.65611267 ], [ 177.83944702, -37.66249847 ], [ 177.86851501000001, -37.65096283 ], [ 177.87510681, -37.63760376 ], [ 177.883728029999986, -37.63711166 ], [ 177.88389587, -37.62916565 ], [ 177.890838620000011, -37.6269455 ], [ 177.889160159999989, -37.61916733 ], [ 177.90388489, -37.60305405 ], [ 177.91011047, -37.61603546 ], [ 177.91833496000001, -37.61888885 ], [ 177.94520569, -37.61809921 ], [ 177.95349121000001, -37.61465073 ], [ 177.95443726, -37.60638809 ], [ 177.96583557, -37.60138702 ], [ 177.9694519, -37.59361267 ], [ 177.98445129000001, -37.58388901 ], [ 177.99194336, -37.56750107 ], [ 177.983337400000011, -37.56361008 ], [ 177.97944641, -37.53777695 ], [ 177.983612060000013, -37.53583145 ], [ 178.00750732, -37.55194473 ], [ 178.03971863000001, -37.54249954 ], [ 178.0597229, -37.54000092 ], [ 178.0821228, -37.54546356 ], [ 178.07955933, -37.55147171 ], [ 178.09403992, -37.58409119 ], [ 178.105667110000013, -37.59650803 ], [ 178.03947449, -37.59576416 ], [ 178.020278929999989, -37.60207367 ], [ 177.984161379999989, -37.60866928 ], [ 177.9788208, -37.62128067 ], [ 177.972320559999986, -37.62343979 ], [ 177.97991943, -37.63170624 ], [ 177.973419189999987, -37.63385773 ], [ 177.992385860000013, -37.65461349 ], [ 177.99343872, -37.66508865 ], [ 177.9868927, -37.66723633 ], [ 177.99446106, -37.67557907 ], [ 177.98791504, -37.67772675 ], [ 177.99926758, -37.69025803 ], [ 177.99649048, -37.69659424 ], [ 177.98335266, -37.70090866 ], [ 177.98432922, -37.71144104 ], [ 177.99188232, -37.71981812 ], [ 177.97589111, -37.73050308 ], [ 177.9730835, -37.736866 ], [ 177.99591064, -37.76205063 ], [ 178.037170409999987, -37.73210144 ], [ 178.07418823, -37.76342773 ], [ 177.970489500000014, -37.84687042 ], [ 177.943115229999989, -37.91049576 ], [ 177.91697693, -37.98450089 ], [ 177.86262512, -38.11087799 ], [ 177.858764650000012, -38.1067009 ], [ 177.8494873, -38.11515808 ], [ 177.775741579999988, -38.06314087 ], [ 177.74331665, -38.04655838 ], [ 177.72399902, -38.0257225 ], [ 177.70046997, -38.02796173 ], [ 177.68887329, -38.01547241 ], [ 177.66923523, -38.02186966 ], [ 177.68467712, -38.03852081 ], [ 177.6781311, -38.04065323 ], [ 177.701263430000012, -38.06565475 ], [ 177.68815613000001, -38.06991196 ], [ 177.68930054, -38.0803833 ], [ 177.67619324, -38.08463287 ], [ 177.686599730000012, -38.08668137 ], [ 177.68774414, -38.0971489 ], [ 177.69543457, -38.10549545 ], [ 177.69271851, -38.11179733 ], [ 177.65992737, -38.12240982 ], [ 177.661056519999988, -38.13288498 ], [ 177.649063109999986, -38.14759445 ], [ 177.66056824, -38.16012955 ], [ 177.64089966, -38.1664772 ], [ 177.630508420000012, -38.16440582 ], [ 177.62779236, -38.17070007 ], [ 177.60813904, -38.17702103 ], [ 177.60430908, -38.1728363 ], [ 177.60270691, -38.18959045 ], [ 177.56350708, -38.20214462 ], [ 177.567321779999986, -38.20633316 ], [ 177.55618286, -38.21260071 ], [ 177.530899049999988, -38.21256256 ], [ 177.531997679999989, -38.22303391 ], [ 177.515151980000013, -38.22299957 ], [ 177.51135254, -38.21879959 ], [ 177.49180603, -38.22502899 ], [ 177.49940491000001, -38.23342514 ], [ 177.49667358, -38.23970032 ], [ 177.48364258, -38.24385071 ], [ 177.495040890000013, -38.25645447 ], [ 177.48851013, -38.25852966 ], [ 177.49610901, -38.26693344 ], [ 177.50263977, -38.26485443 ], [ 177.49064636, -38.27949142 ], [ 177.49276733, -38.300457 ], [ 177.471466060000012, -38.32346344 ], [ 177.46594238, -38.33602142 ], [ 177.45283508, -38.34014893 ], [ 177.4434967, -38.34848404 ], [ 177.39471436, -38.36911011 ], [ 177.34864807, -38.38344955 ], [ 177.299743650000011, -38.40407562 ], [ 177.237808230000013, -38.42886353 ], [ 177.25862122, -38.50911713 ], [ 177.249252320000011, -38.5174942 ], [ 177.245483400000012, -38.51325607 ], [ 177.23049927, -38.5342598 ], [ 177.21362305, -38.53416824 ], [ 177.206130980000012, -38.52568436 ], [ 177.199569700000012, -38.52775574 ], [ 177.19116211, -38.54670334 ], [ 177.18180847, -38.55509186 ], [ 177.18275452, -38.56565094 ], [ 177.1631012, -38.5718689 ], [ 177.17059326, -38.58036423 ], [ 177.14442444, -38.58865738 ], [ 177.14723206, -38.58233261 ], [ 177.13041687, -38.5822258 ], [ 177.12110901, -38.59062195 ], [ 177.11552429, -38.60327148 ], [ 177.10899353, -38.60534668 ], [ 177.100631709999988, -38.62432861 ], [ 177.096893310000013, -38.62007523 ], [ 177.0838623, -38.62421799 ], [ 177.08291626, -38.6136322 ], [ 177.06990051, -38.61777115 ], [ 177.060607909999987, -38.62615967 ], [ 177.04393005, -38.62598419 ], [ 177.047637939999987, -38.63026047 ], [ 177.034683230000013, -38.63433456 ], [ 177.026412959999988, -38.65325928 ], [ 177.01994324, -38.65528488 ], [ 177.02735901, -38.66384506 ], [ 177.02088928, -38.66587067 ], [ 177.0153656, -38.67847824 ], [ 177.002441409999989, -38.68251419 ], [ 177.00337219, -38.69309998 ], [ 176.98396301, -38.69913864 ], [ 176.987670900000012, -38.70342636 ], [ 176.9682312, -38.70945358 ], [ 176.967300419999987, -38.69887161 ], [ 176.95433044, -38.70288467 ], [ 176.9506073, -38.69859695 ], [ 176.93763733, -38.70261002 ], [ 176.9302063, -38.69403839 ], [ 176.90977478, -38.68947601 ], [ 176.89115906, -38.66804886 ], [ 176.87164307, -38.67407227 ], [ 176.87536621000001, -38.67835617 ], [ 176.862350459999988, -38.68237305 ], [ 176.85490417, -38.67380142 ], [ 176.84559631, -38.6821022 ], [ 176.83256531, -38.68611908 ], [ 176.82325745, -38.69441986 ], [ 176.79901123, -38.68558502 ], [ 176.795272829999988, -38.68130112 ], [ 176.77571106, -38.68732834 ], [ 176.7766571, -38.69789886 ], [ 176.76454163, -38.71247864 ], [ 176.75149536, -38.71648026 ], [ 176.752441409999989, -38.72704697 ], [ 176.73937988, -38.73104477 ], [ 176.73190308, -38.72247696 ], [ 176.71885681, -38.72647095 ], [ 176.719802859999987, -38.73703003 ], [ 176.711425780000013, -38.75586319 ], [ 176.71611023, -38.77070236 ], [ 176.70774841, -38.78952408 ], [ 176.71801758, -38.79181671 ], [ 176.70495605, -38.79579544 ], [ 176.71244812, -38.80435944 ], [ 176.6993866, -38.80833817 ], [ 176.7003479, -38.81888962 ], [ 176.711578370000012, -38.8317337 ], [ 176.70225525, -38.83998489 ], [ 176.70976257, -38.84854889 ], [ 176.619232180000012, -38.92478943 ], [ 176.603317260000011, -38.93504333 ], [ 176.600509640000013, -38.94130707 ], [ 176.60804749, -38.94984436 ], [ 176.598693849999989, -38.95811081 ], [ 176.609985349999988, -38.97091293 ], [ 176.603424069999988, -38.97291565 ], [ 176.61849976, -38.9899826 ], [ 176.61193848, -38.99198532 ], [ 176.61947632, -39.00051498 ], [ 176.54814148, -38.9952507 ], [ 176.55567932, -39.00378036 ], [ 176.45428467, -39.00237656 ], [ 176.422485349999988, -39.06100845 ], [ 176.45185852, -39.12254333 ], [ 176.437713620000011, -39.11604309 ], [ 176.42077637, -39.11582947 ], [ 176.37469482, -39.13002777 ], [ 176.38505554, -39.132267 ], [ 176.400192260000011, -39.14933014 ], [ 176.40116882, -39.15988922 ], [ 176.38800049, -39.16394806 ], [ 176.344680790000012, -39.17187119 ], [ 176.23622131, -39.09662628 ], [ 176.2559967, -39.09053802 ], [ 176.26539612, -39.08221054 ], [ 176.28515625, -39.0761261 ], [ 176.286087040000012, -39.04868698 ], [ 176.27760315, -39.02957153 ], [ 176.26725769, -39.02732086 ], [ 176.27290344, -39.01472473 ], [ 176.28889465, -39.00437927 ], [ 176.28137207, -38.99583054 ], [ 176.28044128, -38.98526001 ], [ 176.26634216, -38.97873688 ], [ 176.26165771, -38.96389008 ], [ 176.26823425, -38.96186829 ], [ 176.2635498, -38.94701767 ], [ 176.26170349, -38.9258728 ], [ 176.248550419999987, -38.92991257 ], [ 176.23822021, -38.92765427 ], [ 176.22596741000001, -38.94226837 ], [ 176.215637210000011, -38.94001007 ], [ 176.20246887, -38.94404984 ], [ 176.194976809999986, -38.93548965 ], [ 176.18838501, -38.93750763 ], [ 176.16589355, -38.91181946 ], [ 176.15931702, -38.91383743 ], [ 176.13684082, -38.88813019 ], [ 176.14343262, -38.88611603 ], [ 176.12934875, -38.87956238 ], [ 176.132202150000012, -38.8732605 ], [ 176.11723328, -38.85611343 ], [ 176.13414001000001, -38.85637665 ], [ 176.12664795, -38.84780121 ], [ 176.12007141, -38.84981537 ], [ 176.09764099, -38.82408905 ], [ 176.10421753, -38.8220787 ], [ 176.096740720000014, -38.81349945 ], [ 176.10990906, -38.80947876 ], [ 176.10243225, -38.80090332 ], [ 176.1166687, -38.76941299 ], [ 176.219802859999987, -38.79217529 ], [ 176.24145508, -38.76927948 ], [ 176.26116943, -38.76324844 ], [ 176.17713928, -38.68585587 ], [ 176.21022034, -38.63781738 ], [ 176.21875, -38.61894989 ], [ 176.21130371000001, -38.61037064 ], [ 176.22444153, -38.60636902 ], [ 176.2104187, -38.59979248 ], [ 176.19729614, -38.6037941 ], [ 176.15153503, -38.57975769 ], [ 176.141250609999986, -38.57746506 ], [ 176.12153625, -38.58346558 ], [ 176.1206665, -38.57287598 ], [ 176.10951233, -38.55999756 ], [ 176.08607483, -38.5616951 ], [ 176.07579041, -38.55939484 ], [ 176.05606079, -38.56538773 ], [ 176.048629760000011, -38.55679321 ], [ 176.0552063, -38.55479813 ], [ 176.047775269999988, -38.54620361 ], [ 176.06378174, -38.53591537 ], [ 176.05262756, -38.5230217 ], [ 176.05834961, -38.5104332 ], [ 176.085495, -38.51304245 ], [ 176.08834839, -38.5067482 ], [ 176.11946106, -38.47558594 ], [ 176.12231445, -38.46929169 ], [ 176.139160159999989, -38.46959686 ], [ 176.13829041, -38.45900726 ], [ 176.144851679999988, -38.45701218 ], [ 176.1559906, -38.46989822 ], [ 176.14942932, -38.47189713 ], [ 176.156860349999988, -38.48048782 ], [ 176.15400696, -38.48677826 ], [ 176.16143799, -38.49536896 ], [ 176.16799927, -38.49337006 ], [ 176.181991579999988, -38.49996185 ], [ 176.17913818, -38.5062561 ], [ 176.186569209999988, -38.51484299 ], [ 176.18373108, -38.52113342 ], [ 176.19685364, -38.51713943 ], [ 176.21084595, -38.5237236 ], [ 176.22396851, -38.5197258 ], [ 176.23425293, -38.52201843 ], [ 176.24737549, -38.51801682 ], [ 176.250213620000011, -38.51172638 ], [ 176.282989500000014, -38.50172806 ], [ 176.28210449, -38.49114609 ], [ 176.30177307, -38.48514175 ], [ 176.312026980000013, -38.48743057 ], [ 176.33061218, -38.5088768 ], [ 176.327789309999986, -38.51516724 ], [ 176.30618286, -38.53804016 ], [ 176.31361389, -38.5466156 ], [ 176.310791020000011, -38.55290604 ], [ 176.32478333, -38.55947495 ], [ 176.36587524, -38.56860733 ], [ 176.392211909999986, -38.52258301 ], [ 176.39785767, -38.51000595 ], [ 176.418396, -38.51457596 ], [ 176.45661926, -38.53000259 ], [ 176.4874115, -38.53685379 ], [ 176.48651123, -38.52627945 ], [ 176.47906494, -38.51770782 ], [ 176.49507141, -38.46939468 ], [ 176.50071716, -38.45681 ], [ 176.50544739, -38.43364716 ], [ 176.511093140000014, -38.42106247 ], [ 176.51301575, -38.40418243 ], [ 176.48701477, -38.37415314 ], [ 176.48048401, -38.37615585 ], [ 176.47306824, -38.3675766 ], [ 176.43209839, -38.35842514 ], [ 176.41531372, -38.35814285 ], [ 176.39677429, -38.33668137 ], [ 176.39024353, -38.33868408 ], [ 176.379119870000011, -38.32580566 ], [ 176.34927368000001, -38.32952118 ], [ 176.3250885, -38.32064438 ], [ 176.327911379999989, -38.31435013 ], [ 176.31114197, -38.3140564 ], [ 176.313964840000011, -38.30776215 ], [ 176.3028717, -38.2948761 ], [ 176.30569458, -38.28857803 ], [ 176.29545593, -38.2862854 ], [ 176.29829407, -38.27998734 ], [ 176.28521729, -38.28398895 ], [ 176.284362789999989, -38.27339554 ], [ 176.26046753, -38.22642136 ], [ 176.256774900000011, -38.22212219 ], [ 176.269851679999988, -38.2181282 ], [ 176.265304570000012, -38.20323563 ], [ 176.2681427, -38.19694138 ], [ 176.24969482, -38.17544937 ], [ 176.256225590000014, -38.17345047 ], [ 176.245162959999988, -38.16055298 ], [ 176.25169373, -38.15855789 ], [ 176.2406311, -38.14565659 ], [ 176.247161870000014, -38.1436615 ], [ 176.246307370000011, -38.13306808 ], [ 176.252838129999986, -38.131073 ], [ 176.23809814, -38.11386871 ], [ 176.22503662, -38.11785126 ], [ 176.23072815, -38.10526276 ], [ 176.22052002, -38.10295105 ], [ 176.21315002, -38.09434128 ], [ 176.20661926, -38.09633255 ], [ 176.191894530000013, -38.07911301 ], [ 176.17800903, -38.07249069 ], [ 176.158401489999989, -38.07845306 ], [ 176.14451599, -38.07182693 ], [ 176.13143921, -38.07580185 ], [ 176.12121582, -38.07348251 ], [ 176.07952881, -38.05358505 ], [ 176.06195068, -38.04264069 ], [ 176.06768799, -38.03004837 ], [ 176.05665588, -38.01712036 ], [ 176.042755129999989, -38.01047897 ], [ 176.036209109999987, -38.0124588 ], [ 176.02151489, -37.99520493 ], [ 176.001068120000014, -37.99052811 ], [ 175.98797607, -37.99448013 ], [ 175.97409058, -37.98781967 ], [ 175.979843140000014, -37.97523499 ], [ 175.97250366, -37.9665947 ], [ 175.95573425, -37.96622086 ], [ 175.958618159999986, -37.95992661 ], [ 175.95129395, -37.9512825 ], [ 175.94317627, -37.93202209 ], [ 175.9526062, -37.92376328 ], [ 175.97879028, -37.91588211 ], [ 175.96124268, -37.90488815 ], [ 175.97644043, -37.88404846 ], [ 175.967010499999986, -37.89230728 ], [ 175.95968628, -37.88366318 ], [ 175.94294739, -37.88327408 ], [ 175.942169189999987, -37.87266541 ], [ 175.948715209999989, -37.87069702 ], [ 175.93486023, -37.86401749 ], [ 175.93774414, -37.85773087 ], [ 175.930435179999989, -37.84908295 ], [ 175.94352722, -37.84515381 ], [ 175.9092865, -37.83374786 ], [ 175.92086792, -37.80861664 ], [ 175.92881775, -37.77917862 ], [ 175.92079163, -37.75994492 ], [ 175.90551758, -37.73206329 ], [ 175.89825439, -37.72341156 ], [ 175.904800419999987, -37.72146606 ], [ 175.890274049999988, -37.70415878 ], [ 175.876464840000011, -37.6974411 ], [ 175.875762939999987, -37.68683624 ], [ 175.864883420000012, -37.67382813 ], [ 175.871429440000014, -37.67189026 ], [ 175.857635499999986, -37.66514969 ], [ 175.83953857, -37.64342499 ], [ 175.846069340000014, -37.64148712 ], [ 175.83522034, -37.6284256 ], [ 175.844680790000012, -37.62019348 ], [ 175.84397888, -37.60952759 ], [ 175.82228088, -37.58328629 ], [ 175.82159424, -37.57258224 ], [ 175.810760499999986, -37.55941772 ], [ 175.836288450000012, -37.54096603 ], [ 175.82546997, -37.52778625 ], [ 175.82843018, -37.5214653 ], [ 175.81106567, -37.5102005 ], [ 175.81040955, -37.49946976 ], [ 175.8235321, -37.49562073 ], [ 175.81632996, -37.48681641 ], [ 175.8354187, -37.47035217 ], [ 175.843246459999989, -37.48987579 ], [ 175.86062622, -37.50116348 ], [ 175.8737793, -37.49734879 ], [ 175.90072632, -37.50042343 ], [ 175.90370178, -37.49413681 ], [ 175.88569641, -37.47217941 ], [ 175.87252808, -37.47596741 ], [ 175.86172485, -37.46276474 ], [ 175.88442993000001, -37.45083237 ], [ 175.88375854, -37.44016266 ], [ 175.89755249000001, -37.44709015 ], [ 175.90986633, -37.43274689 ], [ 175.9163208, -37.43091202 ], [ 175.90516663, -37.41771317 ], [ 175.910369870000011, -37.40530777 ], [ 175.92033386, -37.40795135 ], [ 175.92201233, -37.39107895 ], [ 175.92871094, -37.38906097 ], [ 175.914855960000011, -37.38217163 ], [ 175.9246521, -37.37372589 ], [ 175.9246521, -37.37372589 ] ] ], [ [ [ 176.262176509999989, -37.26832581 ], [ 176.27552795, -37.26803207 ], [ 176.28083801, -37.27249908 ], [ 176.27261353, -37.2855835 ], [ 176.2769165, -37.29076767 ], [ 176.270431519999988, -37.29637909 ], [ 176.27049255, -37.30449295 ], [ 176.25492859, -37.31015015 ], [ 176.24272156, -37.30212402 ], [ 176.231506349999989, -37.28545761 ], [ 176.23832703, -37.27194595 ], [ 176.262176509999989, -37.26832581 ], [ 176.262176509999989, -37.26832581 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": 655000, "areakm2": 44553.886, "density2022": 14.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": null, "areakm2": null, "density2022": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.4", "id_1": 4, "name_1": "Chatham Islands", "hasc_1": "NZ.CI", "population2022": 800, "areakm2": 819.511, "density2022": 0.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.23971558, -44.43000031 ], [ -176.237228390000013, -44.43416595 ], [ -176.24333191, -44.43249893 ], [ -176.23971558, -44.43000031 ], [ -176.23971558, -44.43000031 ] ] ], [ [ [ -176.327331539999989, -44.3699379 ], [ -176.32952881, -44.36924744 ], [ -176.32830811, -44.36832428 ], [ -176.327331539999989, -44.3699379 ], [ -176.327331539999989, -44.3699379 ] ] ], [ [ [ -176.28053284, -44.37034988 ], [ -176.27955627, -44.36816025 ], [ -176.27865601, -44.36936951 ], [ -176.28053284, -44.37034988 ], [ -176.28053284, -44.37034988 ] ] ], [ [ [ -176.24858093, -44.35507584 ], [ -176.245742799999988, -44.35674667 ], [ -176.248413090000014, -44.35646057 ], [ -176.24858093, -44.35507584 ], [ -176.24858093, -44.35507584 ] ] ], [ [ [ -176.237823490000011, -44.35574722 ], [ -176.242385860000013, -44.35787964 ], [ -176.24205017, -44.35546112 ], [ -176.237823490000011, -44.35574722 ], [ -176.237823490000011, -44.35574722 ] ] ], [ [ [ -176.27166748, -44.35388947 ], [ -176.26817322, -44.35628891 ], [ -176.27102661, -44.35680771 ], [ -176.27166748, -44.35388947 ], [ -176.27166748, -44.35388947 ] ] ], [ [ [ -176.27694702, -44.35749817 ], [ -176.27806091, -44.35610962 ], [ -176.27397156, -44.35361481 ], [ -176.27694702, -44.35749817 ], [ -176.27694702, -44.35749817 ] ] ], [ [ [ -176.16116333, -44.3524437 ], [ -176.15921021, -44.35434723 ], [ -176.16172791, -44.35492325 ], [ -176.16116333, -44.3524437 ], [ -176.16116333, -44.3524437 ] ] ], [ [ [ -176.17523193, -44.33598709 ], [ -176.166076659999987, -44.33908463 ], [ -176.16864014, -44.34720993 ], [ -176.16267395, -44.34992599 ], [ -176.168762210000011, -44.35717773 ], [ -176.1862793, -44.34912872 ], [ -176.1809845, -44.33683777 ], [ -176.17523193, -44.33598709 ], [ -176.17523193, -44.33598709 ] ] ], [ [ [ -176.345611569999988, -44.29091644 ], [ -176.34707642, -44.29091644 ], [ -176.34602356, -44.28890228 ], [ -176.345611569999988, -44.29091644 ], [ -176.345611569999988, -44.29091644 ] ] ], [ [ [ -176.39329529, -44.2882843 ], [ -176.3944397, -44.28667068 ], [ -176.39273071, -44.2869606 ], [ -176.39329529, -44.2882843 ], [ -176.39329529, -44.2882843 ] ] ], [ [ [ -176.3380127, -44.28578949 ], [ -176.340347290000011, -44.28897476 ], [ -176.342285159999989, -44.2872467 ], [ -176.3380127, -44.28578949 ], [ -176.3380127, -44.28578949 ] ] ], [ [ [ -176.313400269999988, -44.27650452 ], [ -176.3099823, -44.28019333 ], [ -176.32029724, -44.28152084 ], [ -176.313400269999988, -44.27650452 ], [ -176.313400269999988, -44.27650452 ] ] ], [ [ [ -176.28132629000001, -44.27167511 ], [ -176.283111569999988, -44.27092361 ], [ -176.281570429999988, -44.27058029 ], [ -176.28132629000001, -44.27167511 ], [ -176.28132629000001, -44.27167511 ] ] ], [ [ [ -176.1289978, -44.27043915 ], [ -176.131103520000011, -44.26934433 ], [ -176.12875366, -44.26893997 ], [ -176.1289978, -44.27043915 ], [ -176.1289978, -44.27043915 ] ] ], [ [ [ -176.12802124000001, -44.26571274 ], [ -176.129394530000013, -44.26490784 ], [ -176.12834167, -44.26467514 ], [ -176.12802124000001, -44.26571274 ], [ -176.12802124000001, -44.26571274 ] ] ], [ [ [ -176.292221070000011, -44.26236343 ], [ -176.28710938, -44.27060318 ], [ -176.301239009999989, -44.277565 ], [ -176.31002808, -44.27677917 ], [ -176.29945374, -44.27124786 ], [ -176.3019104, -44.26719284 ], [ -176.292221070000011, -44.26236343 ], [ -176.292221070000011, -44.26236343 ] ] ], [ [ [ -176.279235840000013, -44.23928452 ], [ -176.28208923, -44.24160385 ], [ -176.28572083, -44.23941422 ], [ -176.279235840000013, -44.23928452 ], [ -176.279235840000013, -44.23928452 ] ] ], [ [ [ -176.22309875, -44.22398376 ], [ -176.21255493000001, -44.2243042 ], [ -176.19625854, -44.23195648 ], [ -176.19096375, -44.24119949 ], [ -176.16413879000001, -44.26426315 ], [ -176.1559906, -44.2612114 ], [ -176.15400696, -44.27312088 ], [ -176.18453979, -44.28730774 ], [ -176.19993591, -44.30501175 ], [ -176.195510860000013, -44.31244278 ], [ -176.20135498, -44.31624603 ], [ -176.20210266, -44.32706451 ], [ -176.21369934, -44.33409882 ], [ -176.22642517, -44.3342247 ], [ -176.22456360000001, -44.34135818 ], [ -176.243896479999989, -44.35499954 ], [ -176.24737549, -44.34856796 ], [ -176.25744629, -44.34447098 ], [ -176.24835205, -44.33520508 ], [ -176.249069209999988, -44.32810974 ], [ -176.26690674, -44.32461548 ], [ -176.25744629, -44.31946182 ], [ -176.2532196, -44.30890274 ], [ -176.260650629999986, -44.30834961 ], [ -176.2641449, -44.29935837 ], [ -176.256103520000011, -44.29365158 ], [ -176.26216125, -44.28289795 ], [ -176.25694275, -44.27520752 ], [ -176.24147034, -44.2731781 ], [ -176.239349370000014, -44.26580429 ], [ -176.249679570000012, -44.25969696 ], [ -176.25640869, -44.24978256 ], [ -176.276718140000014, -44.24303436 ], [ -176.25547791, -44.24035645 ], [ -176.23733521, -44.24071121 ], [ -176.22309875, -44.22398376 ], [ -176.22309875, -44.22398376 ] ] ], [ [ [ -176.01545715, -44.22029495 ], [ -176.011383059999986, -44.22416687 ], [ -176.0177002, -44.22338104 ], [ -176.01545715, -44.22029495 ], [ -176.01545715, -44.22029495 ] ] ], [ [ [ -175.984161379999989, -44.22138977 ], [ -175.988616940000014, -44.22682953 ], [ -175.992813109999986, -44.22527695 ], [ -175.984161379999989, -44.22138977 ], [ -175.984161379999989, -44.22138977 ] ] ], [ [ [ -176.52307129, -44.10287476 ], [ -176.52510071, -44.10201263 ], [ -176.52201843, -44.1006279 ], [ -176.52307129, -44.10287476 ], [ -176.52307129, -44.10287476 ] ] ], [ [ [ -175.8354187, -43.96092224 ], [ -175.82855225, -43.96641159 ], [ -175.84072876, -43.96123123 ], [ -175.8354187, -43.96092224 ], [ -175.8354187, -43.96092224 ] ] ], [ [ [ -176.43263245, -43.91785431 ], [ -176.43496704, -43.91627502 ], [ -176.43386841, -43.91572571 ], [ -176.43263245, -43.91785431 ], [ -176.43263245, -43.91785431 ] ] ], [ [ [ -176.43005371000001, -43.91435242 ], [ -176.43238831, -43.91266632 ], [ -176.43174744, -43.91179276 ], [ -176.43005371000001, -43.91435242 ], [ -176.43005371000001, -43.91435242 ] ] ], [ [ [ -176.92964172, -43.87784958 ], [ -176.929489139999987, -43.88058472 ], [ -176.934494019999988, -43.87849045 ], [ -176.92964172, -43.87784958 ], [ -176.92964172, -43.87784958 ] ] ], [ [ [ -176.41412354, -43.83907318 ], [ -176.41685486, -43.83657074 ], [ -176.4125061, -43.83535004 ], [ -176.41412354, -43.83907318 ], [ -176.41412354, -43.83907318 ] ] ], [ [ [ -176.42414856, -43.83542633 ], [ -176.426818849999989, -43.83486938 ], [ -176.42410278, -43.8331871 ], [ -176.42414856, -43.83542633 ], [ -176.42414856, -43.83542633 ] ] ], [ [ [ -176.71353149, -43.83267593 ], [ -176.71473694, -43.83151245 ], [ -176.71208191, -43.83017349 ], [ -176.71353149, -43.83267593 ], [ -176.71353149, -43.83267593 ] ] ], [ [ [ -176.407958979999989, -43.82998657 ], [ -176.40626526, -43.83057022 ], [ -176.40875244, -43.83091736 ], [ -176.407958979999989, -43.82998657 ], [ -176.407958979999989, -43.82998657 ] ] ], [ [ [ -176.43205261, -43.83083725 ], [ -176.436035159999989, -43.83108521 ], [ -176.43052673, -43.82479095 ], [ -176.43205261, -43.83083725 ], [ -176.43205261, -43.83083725 ] ] ], [ [ [ -176.43678284, -43.82921982 ], [ -176.43933105, -43.82778931 ], [ -176.43278503, -43.82491684 ], [ -176.43678284, -43.82921982 ], [ -176.43678284, -43.82921982 ] ] ], [ [ [ -176.439086909999986, -43.82643127 ], [ -176.440505980000012, -43.82563782 ], [ -176.437042240000011, -43.8237114 ], [ -176.439086909999986, -43.82643127 ], [ -176.439086909999986, -43.82643127 ] ] ], [ [ [ -176.62588501, -43.69239426 ], [ -176.60824585, -43.70328522 ], [ -176.58227539, -43.70502472 ], [ -176.564666749999986, -43.71256256 ], [ -176.54771423, -43.71541214 ], [ -176.54589844, -43.7191658 ], [ -176.52955627, -43.72319794 ], [ -176.4977417, -43.72211838 ], [ -176.49609375, -43.73063278 ], [ -176.477600099999989, -43.7409668 ], [ -176.45962524, -43.74511337 ], [ -176.43136597, -43.74827576 ], [ -176.38768005, -43.74391937 ], [ -176.36070251000001, -43.74326706 ], [ -176.34669495, -43.73379135 ], [ -176.335174560000013, -43.73662949 ], [ -176.31973267, -43.74703217 ], [ -176.29953003, -43.74700165 ], [ -176.29034424, -43.74152756 ], [ -176.27926636, -43.74197769 ], [ -176.2668457, -43.7339325 ], [ -176.25392151, -43.73472214 ], [ -176.24746704, -43.72679901 ], [ -176.22434998, -43.73405457 ], [ -176.21340942, -43.73297119 ], [ -176.207504269999987, -43.72694397 ], [ -176.19917297, -43.73860931 ], [ -176.217163090000014, -43.74406815 ], [ -176.222198490000011, -43.74076843 ], [ -176.241256709999988, -43.75662994 ], [ -176.23620605, -43.77058411 ], [ -176.23997498, -43.77492905 ], [ -176.24995422, -43.76622391 ], [ -176.26525879, -43.76151276 ], [ -176.28335571, -43.76313782 ], [ -176.30926514, -43.77268219 ], [ -176.32684326, -43.78305435 ], [ -176.34713745, -43.79963684 ], [ -176.365448, -43.81807327 ], [ -176.384552, -43.84243011 ], [ -176.40054321, -43.86891174 ], [ -176.40818787, -43.88647461 ], [ -176.41708374000001, -43.92494965 ], [ -176.42758179, -43.91875076 ], [ -176.42694092, -43.90750122 ], [ -176.417770389999987, -43.89277649 ], [ -176.42004395, -43.86566925 ], [ -176.430175780000013, -43.84100723 ], [ -176.422225950000012, -43.84749985 ], [ -176.40429688, -43.83200836 ], [ -176.402771, -43.82025146 ], [ -176.38053894, -43.81056976 ], [ -176.36582947, -43.81000137 ], [ -176.36366272, -43.8014946 ], [ -176.3747406, -43.79185104 ], [ -176.39305115, -43.76916504 ], [ -176.43510437, -43.75144196 ], [ -176.45491028, -43.75160217 ], [ -176.47651672, -43.74753571 ], [ -176.49972534, -43.76380157 ], [ -176.503707889999987, -43.7551918 ], [ -176.51509094, -43.74391174 ], [ -176.54563904, -43.73727036 ], [ -176.553756709999988, -43.74252701 ], [ -176.54896545, -43.75228119 ], [ -176.559494019999988, -43.75935364 ], [ -176.55871582, -43.77790451 ], [ -176.546264650000012, -43.78149796 ], [ -176.54577637, -43.78833389 ], [ -176.53320313, -43.79703903 ], [ -176.4967804, -43.79663467 ], [ -176.48155212, -43.80296326 ], [ -176.4637146, -43.80083084 ], [ -176.45120239, -43.80254745 ], [ -176.442993159999986, -43.80849457 ], [ -176.46485901, -43.81502533 ], [ -176.47589111, -43.82344055 ], [ -176.490325930000012, -43.8219986 ], [ -176.50770569, -43.83974457 ], [ -176.51925659, -43.84616089 ], [ -176.52470398, -43.85586166 ], [ -176.52204895, -43.87018204 ], [ -176.51043701, -43.88972092 ], [ -176.473709109999987, -43.91674042 ], [ -176.473297120000012, -43.93069458 ], [ -176.48434448, -43.95026016 ], [ -176.47695923, -43.95605469 ], [ -176.453765870000012, -43.96497345 ], [ -176.43611145, -43.96777725 ], [ -176.43028259, -43.95972061 ], [ -176.43095398, -43.94293594 ], [ -176.42619324, -43.93333054 ], [ -176.43638611, -43.93361282 ], [ -176.45083618000001, -43.92499924 ], [ -176.422775269999988, -43.92250061 ], [ -176.41702271, -43.9278717 ], [ -176.41487122, -43.95622253 ], [ -176.408569340000014, -43.98202515 ], [ -176.402145389999987, -43.99652481 ], [ -176.39047241, -44.0147438 ], [ -176.37388611, -44.02472305 ], [ -176.359024049999988, -44.02130127 ], [ -176.34667969, -44.03115845 ], [ -176.32452393, -44.03368378 ], [ -176.327774049999988, -44.03702927 ], [ -176.325973510000011, -44.05187225 ], [ -176.34370422, -44.05063248 ], [ -176.35745239, -44.0583992 ], [ -176.38006592, -44.05869293 ], [ -176.391098019999987, -44.05384445 ], [ -176.43745422, -44.06628799 ], [ -176.45143127, -44.06712341 ], [ -176.46987915, -44.0752449 ], [ -176.47711182, -44.07437897 ], [ -176.490997310000012, -44.08597183 ], [ -176.49931335, -44.08723068 ], [ -176.51774597, -44.09977722 ], [ -176.52302551, -44.09764481 ], [ -176.53948975, -44.11385345 ], [ -176.5572052, -44.12559891 ], [ -176.575973510000011, -44.13233566 ], [ -176.58456421, -44.12773514 ], [ -176.598297120000012, -44.13171387 ], [ -176.6027832, -44.12527847 ], [ -176.61555481, -44.12805557 ], [ -176.61911011, -44.12179565 ], [ -176.629241940000014, -44.12023926 ], [ -176.63514709, -44.12446213 ], [ -176.63285828, -44.11424255 ], [ -176.64204407, -44.10461807 ], [ -176.64733887, -44.10759354 ], [ -176.64350891, -44.08660889 ], [ -176.649200439999987, -44.07629395 ], [ -176.659118650000011, -44.07064438 ], [ -176.65634155, -44.06472015 ], [ -176.66056824, -44.04927063 ], [ -176.65710449, -44.04279327 ], [ -176.669998170000014, -44.03763962 ], [ -176.67202759, -44.03043365 ], [ -176.680480960000011, -44.02565002 ], [ -176.68551636, -44.00858688 ], [ -176.65444946, -43.9980545 ], [ -176.6322937, -43.98340607 ], [ -176.59257507, -43.96448898 ], [ -176.57943726, -43.96194458 ], [ -176.572494510000013, -43.94666672 ], [ -176.57337952, -43.94134521 ], [ -176.55915833, -43.94582367 ], [ -176.56239319, -43.9493103 ], [ -176.54956055, -43.95190048 ], [ -176.534698490000011, -43.93827057 ], [ -176.533432010000013, -43.91908646 ], [ -176.53623962, -43.90826035 ], [ -176.546127320000011, -43.89878082 ], [ -176.54504395, -43.88532639 ], [ -176.56556702, -43.85456848 ], [ -176.60409546, -43.8153038 ], [ -176.61228943, -43.81041336 ], [ -176.623260499999986, -43.81250381 ], [ -176.633605960000011, -43.8084259 ], [ -176.642227170000012, -43.81027603 ], [ -176.64587402, -43.80420303 ], [ -176.657318120000014, -43.8091774 ], [ -176.66545105, -43.79814529 ], [ -176.67344666, -43.80844879 ], [ -176.68307495, -43.79862213 ], [ -176.688003540000011, -43.79968643 ], [ -176.68522644, -43.81384659 ], [ -176.68930054, -43.81764984 ], [ -176.706390379999988, -43.80780792 ], [ -176.70932007, -43.81384277 ], [ -176.700820920000012, -43.82213974 ], [ -176.715164179999988, -43.830616 ], [ -176.743118290000012, -43.82759857 ], [ -176.75431824, -43.83361053 ], [ -176.7747345, -43.82569504 ], [ -176.79522705, -43.82193375 ], [ -176.78388977, -43.83555603 ], [ -176.81774902, -43.84617233 ], [ -176.828750609999986, -43.84417343 ], [ -176.84191895, -43.83700562 ], [ -176.85656738, -43.84408951 ], [ -176.86143494, -43.83869171 ], [ -176.881774900000011, -43.84170151 ], [ -176.87376404, -43.83006668 ], [ -176.89367676, -43.82535934 ], [ -176.892807010000013, -43.82081985 ], [ -176.874649049999988, -43.81687546 ], [ -176.87976074, -43.81115341 ], [ -176.87602234, -43.79364395 ], [ -176.86662292, -43.78872299 ], [ -176.8165741, -43.78604507 ], [ -176.80926514, -43.7793541 ], [ -176.81263733, -43.76348114 ], [ -176.823608400000012, -43.75583267 ], [ -176.81790161, -43.74679565 ], [ -176.80397034, -43.74407959 ], [ -176.79978943, -43.75470352 ], [ -176.78933716, -43.75974655 ], [ -176.76133728, -43.76532745 ], [ -176.72518921, -43.76384735 ], [ -176.71492004000001, -43.75926208 ], [ -176.65985107, -43.74863052 ], [ -176.63993835, -43.73540878 ], [ -176.631744379999986, -43.72113419 ], [ -176.64118958, -43.7032547 ], [ -176.63008118, -43.70145035 ], [ -176.62588501, -43.69239426 ], [ -176.62588501, -43.69239426 ] ] ], [ [ [ -176.806549069999988, -43.56958389 ], [ -176.8084259, -43.56700516 ], [ -176.80625916, -43.56613922 ], [ -176.806549069999988, -43.56958389 ], [ -176.806549069999988, -43.56958389 ] ] ], [ [ [ -176.8127594, -43.57031631 ], [ -176.81500244, -43.56935883 ], [ -176.81132507, -43.56425476 ], [ -176.8127594, -43.57031631 ], [ -176.8127594, -43.57031631 ] ] ], [ [ [ -176.798339840000011, -43.5643158 ], [ -176.80059814, -43.56806946 ], [ -176.80329895, -43.56391907 ], [ -176.798339840000011, -43.5643158 ], [ -176.798339840000011, -43.5643158 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.5", "id_1": 5, "name_1": "Gisborne", "hasc_1": "NZ.GI", "population2022": 52100, "areakm2": 8357.714, "density2022": 6.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.93359375, -38.74312592 ], [ 177.93365479, -38.74114609 ], [ 177.93487549, -38.74159241 ], [ 177.93359375, -38.74312592 ], [ 177.93359375, -38.74312592 ] ] ], [ [ [ 177.93777466, -38.74555588 ], [ 177.93638611, -38.74111176 ], [ 177.93833923, -38.74250031 ], [ 177.93777466, -38.74555588 ], [ 177.93777466, -38.74555588 ] ] ], [ [ [ 178.05137634, -38.70673752 ], [ 178.047500609999986, -38.7080574 ], [ 178.04818726, -38.70524597 ], [ 178.05137634, -38.70673752 ], [ 178.05137634, -38.70673752 ] ] ], [ [ [ 178.23554993, -38.57242966 ], [ 178.23944092, -38.57527924 ], [ 178.23301697, -38.57382965 ], [ 178.23554993, -38.57242966 ], [ 178.23554993, -38.57242966 ] ] ], [ [ [ 178.29556274, -38.53527832 ], [ 178.296386719999987, -38.53277588 ], [ 178.29804993, -38.53277588 ], [ 178.29556274, -38.53527832 ], [ 178.29556274, -38.53527832 ] ] ], [ [ [ 178.34837341, -38.41864395 ], [ 178.348419189999987, -38.41688156 ], [ 178.351226809999986, -38.41682053 ], [ 178.34837341, -38.41864395 ], [ 178.34837341, -38.41864395 ] ] ], [ [ [ 178.34222412, -38.37833405 ], [ 178.35055542, -38.38833237 ], [ 178.34333801, -38.38888931 ], [ 178.34222412, -38.37833405 ], [ 178.34222412, -38.37833405 ] ] ], [ [ [ 178.344802859999987, -38.37496567 ], [ 178.34628296, -38.37577057 ], [ 178.34146118000001, -38.37672806 ], [ 178.344802859999987, -38.37496567 ], [ 178.344802859999987, -38.37496567 ] ] ], [ [ [ 178.336395259999989, -38.35027695 ], [ 178.33583069, -38.34749985 ], [ 178.34388733, -38.34583282 ], [ 178.336395259999989, -38.35027695 ], [ 178.336395259999989, -38.35027695 ] ] ], [ [ [ 178.34344482, -38.2494545 ], [ 178.332672120000012, -38.25011826 ], [ 178.33442688, -38.24695587 ], [ 178.34344482, -38.2494545 ], [ 178.34344482, -38.2494545 ] ] ], [ [ [ 178.342559810000012, -38.21173096 ], [ 178.34147644, -38.21099854 ], [ 178.342712400000011, -38.20990372 ], [ 178.342559810000012, -38.21173096 ], [ 178.342559810000012, -38.21173096 ] ] ], [ [ [ 178.38186646, -38.06932068 ], [ 178.379531859999986, -38.06908035 ], [ 178.38140869, -38.06822586 ], [ 178.38186646, -38.06932068 ], [ 178.38186646, -38.06932068 ] ] ], [ [ [ 178.577774049999988, -37.68805695 ], [ 178.576110840000013, -37.69361115 ], [ 178.57254028, -37.69182968 ], [ 178.577774049999988, -37.68805695 ], [ 178.577774049999988, -37.68805695 ] ] ], [ [ [ 178.172225950000012, -37.53277588 ], [ 178.18278503, -37.53777695 ], [ 178.21278381, -37.53416824 ], [ 178.21888733, -37.54555511 ], [ 178.2930603, -37.55194473 ], [ 178.31472778, -37.55472183 ], [ 178.324996950000013, -37.55944443 ], [ 178.3125, -37.56916809 ], [ 178.296386719999987, -37.57027817 ], [ 178.29444885, -37.57860947 ], [ 178.303894039999989, -37.59166718 ], [ 178.32658386, -37.59018326 ], [ 178.318603520000011, -37.60138702 ], [ 178.35028076, -37.625 ], [ 178.37333679, -37.63249969 ], [ 178.39161682, -37.62696075 ], [ 178.39230347, -37.63064194 ], [ 178.41838074, -37.62968826 ], [ 178.45880127, -37.64155579 ], [ 178.4677887, -37.63809586 ], [ 178.48083496000001, -37.63944626 ], [ 178.49305725, -37.65333176 ], [ 178.52055359, -37.67083359 ], [ 178.53889465, -37.67361069 ], [ 178.55047607, -37.69242859 ], [ 178.54417419, -37.70277786 ], [ 178.52833557, -37.7136116 ], [ 178.523895259999989, -37.72055435 ], [ 178.524902340000011, -37.73236465 ], [ 178.51554871, -37.7452774 ], [ 178.50500488, -37.7491684 ], [ 178.48805237, -37.77249908 ], [ 178.47583008, -37.77583313 ], [ 178.481246950000013, -37.78012085 ], [ 178.44917297, -37.81583405 ], [ 178.44639587, -37.82555389 ], [ 178.455001829999986, -37.83361053 ], [ 178.43861389, -37.84472275 ], [ 178.43305969, -37.84388733 ], [ 178.41333008, -37.86000061 ], [ 178.40499878, -37.8741684 ], [ 178.40666199, -37.88750076 ], [ 178.40167236, -37.90333176 ], [ 178.389160159999989, -37.91972351 ], [ 178.391113280000013, -37.93444443 ], [ 178.39916992, -37.93999863 ], [ 178.392776489999989, -37.96166611 ], [ 178.37583923, -37.9691658 ], [ 178.36833191, -37.98583221 ], [ 178.35417175, -37.98805618 ], [ 178.340271, -38.00416565 ], [ 178.33444214, -38.02027893 ], [ 178.336395259999989, -38.03694534 ], [ 178.357223510000011, -38.04888916 ], [ 178.373291020000011, -38.05094147 ], [ 178.36454773, -38.07032394 ], [ 178.37219238, -38.07107925 ], [ 178.37416077, -38.09444427 ], [ 178.358612060000013, -38.11055374 ], [ 178.34971619, -38.10694504 ], [ 178.32278442, -38.1202774 ], [ 178.31666565, -38.13722229 ], [ 178.31971741000001, -38.14722061 ], [ 178.35694885, -38.17750168 ], [ 178.35255432, -38.18668365 ], [ 178.33805847, -38.19250107 ], [ 178.33305359, -38.21583176 ], [ 178.33666992, -38.22000122 ], [ 178.31913757, -38.22222137 ], [ 178.31083679, -38.22999954 ], [ 178.31137085, -38.23944092 ], [ 178.32598877, -38.25540161 ], [ 178.335006709999988, -38.25999832 ], [ 178.33166504, -38.27222061 ], [ 178.34083557, -38.28527832 ], [ 178.36305237, -38.28749847 ], [ 178.35305786, -38.29611206 ], [ 178.33427429, -38.29845047 ], [ 178.32411194, -38.31058884 ], [ 178.32533264, -38.31893539 ], [ 178.332366940000014, -38.32194901 ], [ 178.33175659, -38.33227539 ], [ 178.32562256, -38.33343124 ], [ 178.33009338, -38.35302734 ], [ 178.30722046, -38.36166763 ], [ 178.3069458, -38.37194443 ], [ 178.29804993, -38.37638855 ], [ 178.31027222, -38.37638855 ], [ 178.31832886, -38.38305664 ], [ 178.340179440000014, -38.3787117 ], [ 178.33734131, -38.40435791 ], [ 178.346603390000013, -38.41904831 ], [ 178.33944702, -38.42444611 ], [ 178.32028198, -38.42777634 ], [ 178.301544189999987, -38.44438553 ], [ 178.29199219, -38.45911407 ], [ 178.288452150000012, -38.47053146 ], [ 178.28120422, -38.47682953 ], [ 178.28663635, -38.48859024 ], [ 178.28416443, -38.51171494 ], [ 178.29545593, -38.52299118 ], [ 178.29333496000001, -38.5295639 ], [ 178.28486633, -38.53173828 ], [ 178.28112793, -38.54019165 ], [ 178.26882935, -38.5398941 ], [ 178.264984129999988, -38.54660416 ], [ 178.24617004000001, -38.55828476 ], [ 178.234161379999989, -38.5616684 ], [ 178.23194885, -38.57194519 ], [ 178.2124939, -38.57972336 ], [ 178.199996950000013, -38.59249878 ], [ 178.19741821, -38.60703659 ], [ 178.18742371, -38.60798645 ], [ 178.17953491, -38.61528015 ], [ 178.17288208, -38.628685 ], [ 178.16096497, -38.63001251 ], [ 178.15568542, -38.63935471 ], [ 178.14646912, -38.64572906 ], [ 178.14813232, -38.65242767 ], [ 178.12770081, -38.65077972 ], [ 178.10848999000001, -38.65973282 ], [ 178.081390379999988, -38.67833328 ], [ 178.07194519, -38.69194412 ], [ 178.06916809, -38.70861053 ], [ 178.06056213, -38.70055389 ], [ 178.04943848, -38.70194626 ], [ 178.03883362, -38.68533325 ], [ 178.02471924, -38.68055725 ], [ 178.01853943, -38.67144012 ], [ 178.00653076, -38.67105865 ], [ 177.98554993, -38.67583466 ], [ 177.96556091, -38.6866684 ], [ 177.951385499999986, -38.69972229 ], [ 177.943603520000011, -38.71138763 ], [ 177.93722534, -38.73249817 ], [ 177.93388367, -38.72472382 ], [ 177.93110657, -38.74305725 ], [ 177.93804932, -38.7527771 ], [ 177.950408939999988, -38.75516129 ], [ 177.95944214, -38.7519455 ], [ 177.97305298, -38.75611115 ], [ 177.95057678, -38.7648201 ], [ 177.946228029999986, -38.77706909 ], [ 177.92860413, -38.78888702 ], [ 177.91946411, -38.81238556 ], [ 177.92411804, -38.82071304 ], [ 177.91288757, -38.82760239 ], [ 177.91157532, -38.85138702 ], [ 177.92037964, -38.86795807 ], [ 177.90356445, -38.88601685 ], [ 177.9115448, -38.9057045 ], [ 177.91000366, -38.92361069 ], [ 177.90332031, -38.93183899 ], [ 177.90527344, -38.94861221 ], [ 177.896728520000011, -38.9653244 ], [ 177.899627689999988, -38.97198105 ], [ 177.85914612, -38.96456146 ], [ 177.86585999, -38.96245956 ], [ 177.844787599999989, -38.95827484 ], [ 177.83329773, -38.94565582 ], [ 177.84846497, -38.92477417 ], [ 177.836685179999989, -38.9121666 ], [ 177.823287959999988, -38.91629791 ], [ 177.82049561, -38.92256165 ], [ 177.80207825, -38.91204453 ], [ 177.80877686, -38.90997696 ], [ 177.80096436, -38.90159607 ], [ 177.80374146, -38.89533615 ], [ 177.79037476, -38.89946747 ], [ 177.79428101, -38.90366364 ], [ 177.780914309999986, -38.90780258 ], [ 177.778121950000013, -38.9140625 ], [ 177.75193787, -38.89509201 ], [ 177.74917603, -38.90138245 ], [ 177.735824580000013, -38.90552521 ], [ 177.739730830000013, -38.90973663 ], [ 177.730270389999987, -38.91809082 ], [ 177.72915649, -38.9076004 ], [ 177.72135925, -38.89916611 ], [ 177.7118988, -38.90753555 ], [ 177.69744873, -38.9011879 ], [ 177.684097290000011, -38.90534973 ], [ 177.66966248, -38.8990097 ], [ 177.66687012, -38.90530396 ], [ 177.65631104, -38.90318298 ], [ 177.661346439999988, -38.85274124 ], [ 177.66412354, -38.84643173 ], [ 177.65081787, -38.85062027 ], [ 177.6519165, -38.8611412 ], [ 177.63473511, -38.86111832 ], [ 177.61927795, -38.84428024 ], [ 177.59933472, -38.85056686 ], [ 177.59344482, -38.82536316 ], [ 177.58679199, -38.82745361 ], [ 177.59532166, -38.80859375 ], [ 177.58103943, -38.80229187 ], [ 177.56773376000001, -38.80646515 ], [ 177.56391907, -38.80226898 ], [ 177.54397583, -38.80854034 ], [ 177.5411377, -38.81482697 ], [ 177.53353882, -38.80644226 ], [ 177.53259277, -38.79595947 ], [ 177.51367188, -38.77500153 ], [ 177.493774409999986, -38.78127289 ], [ 177.485290529999986, -38.76239395 ], [ 177.47488403, -38.76028442 ], [ 177.46733093, -38.75188065 ], [ 177.47966003, -38.73721313 ], [ 177.4683075, -38.72459793 ], [ 177.47494507, -38.72251129 ], [ 177.46359253, -38.70988846 ], [ 177.470214840000011, -38.70780182 ], [ 177.44277954, -38.7056427 ], [ 177.431442260000011, -38.69300842 ], [ 177.42860413, -38.69930649 ], [ 177.41157532, -38.69926834 ], [ 177.42010498, -38.68037033 ], [ 177.4163208, -38.67615509 ], [ 177.43617249, -38.6699028 ], [ 177.43522644, -38.6593895 ], [ 177.444686890000014, -38.65100861 ], [ 177.44088745, -38.64679337 ], [ 177.45413208, -38.64262772 ], [ 177.4503479, -38.63841248 ], [ 177.41252136, -38.63409042 ], [ 177.39456177, -38.62350845 ], [ 177.38793945, -38.62559128 ], [ 177.36054993, -38.62338257 ], [ 177.35394287, -38.62546158 ], [ 177.307678220000014, -38.60210419 ], [ 177.30957031, -38.62318039 ], [ 177.30957031, -38.66109848 ], [ 177.28883362, -38.65681458 ], [ 177.27471924, -38.65044403 ], [ 177.12762451, -38.58855057 ], [ 177.13041687, -38.5822258 ], [ 177.14723206, -38.58233261 ], [ 177.14442444, -38.58865738 ], [ 177.17059326, -38.58036423 ], [ 177.1631012, -38.5718689 ], [ 177.18275452, -38.56565094 ], [ 177.18180847, -38.55509186 ], [ 177.203323360000013, -38.53199768 ], [ 177.206130980000012, -38.52568436 ], [ 177.21362305, -38.53416824 ], [ 177.23049927, -38.5342598 ], [ 177.245483400000012, -38.51325607 ], [ 177.249252320000011, -38.5174942 ], [ 177.25862122, -38.50911713 ], [ 177.237808230000013, -38.42886353 ], [ 177.299743650000011, -38.40407562 ], [ 177.34864807, -38.38344955 ], [ 177.39471436, -38.36911011 ], [ 177.4434967, -38.34848404 ], [ 177.45283508, -38.34014893 ], [ 177.46594238, -38.33602142 ], [ 177.471466060000012, -38.32346344 ], [ 177.49276733, -38.300457 ], [ 177.49064636, -38.27949142 ], [ 177.50263977, -38.26485443 ], [ 177.49610901, -38.26693344 ], [ 177.48851013, -38.25852966 ], [ 177.495040890000013, -38.25645447 ], [ 177.48364258, -38.24385071 ], [ 177.49667358, -38.23970032 ], [ 177.49940491000001, -38.23342514 ], [ 177.49180603, -38.22502899 ], [ 177.51135254, -38.21879959 ], [ 177.515151980000013, -38.22299957 ], [ 177.531997679999989, -38.22303391 ], [ 177.530899049999988, -38.21256256 ], [ 177.55618286, -38.21260071 ], [ 177.567321779999986, -38.20633316 ], [ 177.56350708, -38.20214462 ], [ 177.60270691, -38.18959045 ], [ 177.60430908, -38.1728363 ], [ 177.60813904, -38.17702103 ], [ 177.62779236, -38.17070007 ], [ 177.630508420000012, -38.16440582 ], [ 177.64089966, -38.1664772 ], [ 177.66056824, -38.16012955 ], [ 177.649063109999986, -38.14759445 ], [ 177.661056519999988, -38.13288498 ], [ 177.65992737, -38.12240982 ], [ 177.69271851, -38.11179733 ], [ 177.69543457, -38.10549545 ], [ 177.68774414, -38.0971489 ], [ 177.686599730000012, -38.08668137 ], [ 177.67619324, -38.08463287 ], [ 177.68930054, -38.0803833 ], [ 177.68815613000001, -38.06991196 ], [ 177.701263430000012, -38.06565475 ], [ 177.6781311, -38.04065323 ], [ 177.68467712, -38.03852081 ], [ 177.66923523, -38.02186966 ], [ 177.68887329, -38.01547241 ], [ 177.70046997, -38.02796173 ], [ 177.72399902, -38.0257225 ], [ 177.74331665, -38.04655838 ], [ 177.775741579999988, -38.06314087 ], [ 177.8494873, -38.11515808 ], [ 177.858764650000012, -38.1067009 ], [ 177.86262512, -38.11087799 ], [ 177.91697693, -37.98450089 ], [ 177.943115229999989, -37.91049576 ], [ 177.970489500000014, -37.84687042 ], [ 178.07418823, -37.76342773 ], [ 178.037170409999987, -37.73210144 ], [ 177.99591064, -37.76205063 ], [ 177.9730835, -37.736866 ], [ 177.97589111, -37.73050308 ], [ 177.99188232, -37.71981812 ], [ 177.98432922, -37.71144104 ], [ 177.98335266, -37.70090866 ], [ 177.99649048, -37.69659424 ], [ 177.99926758, -37.69025803 ], [ 177.98791504, -37.67772675 ], [ 177.99446106, -37.67557907 ], [ 177.9868927, -37.66723633 ], [ 177.99343872, -37.66508865 ], [ 177.992385860000013, -37.65461349 ], [ 177.973419189999987, -37.63385773 ], [ 177.97991943, -37.63170624 ], [ 177.972320559999986, -37.62343979 ], [ 177.9788208, -37.62128067 ], [ 177.984161379999989, -37.60866928 ], [ 178.020278929999989, -37.60207367 ], [ 178.03947449, -37.59576416 ], [ 178.105667110000013, -37.59650803 ], [ 178.09403992, -37.58409119 ], [ 178.07955933, -37.55147171 ], [ 178.07943726, -37.5419426 ], [ 178.08721924, -37.53972244 ], [ 178.11054993, -37.54722214 ], [ 178.12861633, -37.54833221 ], [ 178.142776489999989, -37.54639053 ], [ 178.14694214, -37.55027771 ], [ 178.16694641, -37.54972076 ], [ 178.172225950000012, -37.53277588 ], [ 178.172225950000012, -37.53277588 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.6", "id_1": 6, "name_1": "Hawke's Bay", "hasc_1": "NZ.HB", "population2022": 182700, "areakm2": 12689.223, "density2022": 14.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.586837769999988, -40.43193054 ], [ 176.582901, -40.42770767 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ], [ [ [ 177.02888489, -39.83027649 ], [ 177.0305481, -39.83416748 ], [ 177.02278137, -39.83611298 ], [ 177.02888489, -39.83027649 ], [ 177.02888489, -39.83027649 ] ] ], [ [ [ 177.8694458, -39.27527618 ], [ 177.87333679, -39.27722168 ], [ 177.87554932, -39.29555511 ], [ 177.8694458, -39.30638885 ], [ 177.861114500000014, -39.30389023 ], [ 177.862777709999989, -39.28499985 ], [ 177.8694458, -39.27527618 ], [ 177.8694458, -39.27527618 ] ] ], [ [ [ 176.589523320000012, -40.42566299 ], [ 176.577621459999989, -40.41304398 ], [ 176.56306458, -40.40666199 ], [ 176.55107117, -40.42127609 ], [ 176.52593994, -40.41265488 ], [ 176.496856689999987, -40.39968491 ], [ 176.49147034, -40.412323 ], [ 176.476913450000012, -40.40582657 ], [ 176.46360779, -40.40992737 ], [ 176.44903564, -40.40341949 ], [ 176.44238281, -40.4054718 ], [ 176.4344635, -40.39690781 ], [ 176.44111633, -40.3948555 ], [ 176.43319702, -40.38628006 ], [ 176.419860840000013, -40.39039612 ], [ 176.4039917, -40.37324524 ], [ 176.390625, -40.37737274 ], [ 176.38665771, -40.37308502 ], [ 176.39607239, -40.36466599 ], [ 176.3921051, -40.36037445 ], [ 176.37081909, -40.35591507 ], [ 176.409683230000013, -40.33288574 ], [ 176.399063109999986, -40.33064651 ], [ 176.387222290000011, -40.31775284 ], [ 176.3966217, -40.30932999 ], [ 176.400894169999987, -40.28594589 ], [ 176.39302063, -40.27733994 ], [ 176.38633728, -40.27939987 ], [ 176.378479, -40.27079391 ], [ 176.38789368, -40.26236725 ], [ 176.3800354, -40.25375748 ], [ 176.38670349, -40.25169754 ], [ 176.37884521, -40.24308777 ], [ 176.38160706, -40.23672104 ], [ 176.3710022, -40.234478 ], [ 176.375320429999988, -40.2110672 ], [ 176.36198425, -40.21519089 ], [ 176.36631775, -40.19179153 ], [ 176.36239624000001, -40.18748856 ], [ 176.37182617, -40.17906189 ], [ 176.36398315, -40.17045975 ], [ 176.377319340000014, -40.16633224 ], [ 176.38008118, -40.15996933 ], [ 176.36833191, -40.14707184 ], [ 176.347152709999989, -40.14260864 ], [ 176.3354187, -40.1297226 ], [ 176.34208679, -40.12765884 ], [ 176.33425903, -40.11906815 ], [ 176.317016599999988, -40.11891174 ], [ 176.31309509, -40.11462021 ], [ 176.32252502, -40.10619354 ], [ 176.31471252, -40.09761047 ], [ 176.321380620000014, -40.09554291 ], [ 176.3163147, -40.08060455 ], [ 176.30851746, -40.07202911 ], [ 176.301849370000014, -40.07409668 ], [ 176.30072021, -40.06345749 ], [ 176.27682495, -40.06537628 ], [ 176.262359620000012, -40.05887604 ], [ 176.27180481, -40.050457 ], [ 176.261245730000013, -40.04824448 ], [ 176.264022829999988, -40.04189301 ], [ 176.24291992, -40.03746796 ], [ 176.24180603, -40.02684021 ], [ 176.214050289999989, -40.02448273 ], [ 176.212951659999987, -40.0138588 ], [ 176.182403560000012, -40.01784897 ], [ 176.185195920000012, -40.01150131 ], [ 176.17185974, -40.01563644 ], [ 176.157440189999988, -40.00914764 ], [ 176.13853455, -40.02597046 ], [ 176.126892090000013, -40.013134 ], [ 176.10084534, -39.99382019 ], [ 176.09976196, -39.98320389 ], [ 176.12145996000001, -39.96006393 ], [ 176.11758423, -39.95579147 ], [ 176.127044680000012, -39.94739532 ], [ 176.108764650000012, -39.93664551 ], [ 176.11541748, -39.93458176 ], [ 176.114349370000014, -39.92398071 ], [ 176.1210022, -39.92191696 ], [ 176.11326599, -39.91337585 ], [ 176.129364009999989, -39.90292358 ], [ 176.13494873, -39.89026642 ], [ 176.12055969, -39.88378906 ], [ 176.13450623, -39.85215378 ], [ 176.14115906, -39.85009384 ], [ 176.14179993, -39.82258606 ], [ 176.17805481, -39.74040604 ], [ 176.172073360000013, -39.71498108 ], [ 176.18536377, -39.71086884 ], [ 176.186035159999989, -39.68339157 ], [ 176.1993103, -39.67928314 ], [ 176.20872498, -39.6709137 ], [ 176.20103455, -39.66239166 ], [ 176.16856384, -39.64518738 ], [ 176.185333250000014, -39.6072998 ], [ 176.177658079999986, -39.59877396 ], [ 176.164398190000014, -39.60287476 ], [ 176.16337585, -39.5922966 ], [ 176.156738280000013, -39.59434891 ], [ 176.14524841, -39.58155441 ], [ 176.162338260000013, -39.58171844 ], [ 176.18885803, -39.57352066 ], [ 176.190628049999987, -39.556633 ], [ 176.203872679999989, -39.55253601 ], [ 176.21226501000001, -39.53359985 ], [ 176.252014159999987, -39.52131271 ], [ 176.254806519999988, -39.5150032 ], [ 176.30776978, -39.49861908 ], [ 176.322036739999987, -39.50508499 ], [ 176.32865906, -39.5030365 ], [ 176.317169189999987, -39.49026108 ], [ 176.3237915, -39.4882164 ], [ 176.31613159, -39.47969818 ], [ 176.32936096, -39.47560501 ], [ 176.31892395, -39.47339249 ], [ 176.3112793, -39.46487808 ], [ 176.32069397, -39.4565239 ], [ 176.31965637, -39.445961 ], [ 176.30819702, -39.43318558 ], [ 176.32040405, -39.41853333 ], [ 176.3099823, -39.41631699 ], [ 176.32981873, -39.41018677 ], [ 176.32600403, -39.40592575 ], [ 176.33540344, -39.39757919 ], [ 176.32397461, -39.38479996 ], [ 176.34098816, -39.38497543 ], [ 176.33337402, -39.37645721 ], [ 176.33998108, -39.37441635 ], [ 176.332366940000014, -39.36589432 ], [ 176.31915283, -39.36997604 ], [ 176.307724, -39.35719299 ], [ 176.29450989, -39.36127472 ], [ 176.27368164, -39.3568306 ], [ 176.2802887, -39.35478973 ], [ 176.268890379999988, -39.34199905 ], [ 176.28210449, -39.33791733 ], [ 176.28111267, -39.32735062 ], [ 176.28771973, -39.32531357 ], [ 176.28012085, -39.31678391 ], [ 176.290527340000011, -39.31901169 ], [ 176.28292847, -39.31048203 ], [ 176.309341429999989, -39.30233002 ], [ 176.31115723, -39.28546143 ], [ 176.29977417, -39.27266693 ], [ 176.30258179, -39.26636505 ], [ 176.29119873, -39.25357056 ], [ 176.297805790000012, -39.25153351 ], [ 176.29022217, -39.24300003 ], [ 176.27983093, -39.24076843 ], [ 176.26663208, -39.24483871 ], [ 176.25527954, -39.23203659 ], [ 176.22790527, -39.22960281 ], [ 176.21470642, -39.23366928 ], [ 176.21374512, -39.22309494 ], [ 176.20713806, -39.22513199 ], [ 176.19958496000001, -39.21659088 ], [ 176.20617676, -39.21455383 ], [ 176.19862366000001, -39.20601273 ], [ 176.20144653, -39.19971085 ], [ 176.18634033, -39.18262482 ], [ 176.19293213, -39.18059158 ], [ 176.18537903, -39.17204666 ], [ 176.1882019, -39.16574097 ], [ 176.18066406, -39.15719604 ], [ 176.19197083, -39.1319809 ], [ 176.1882019, -39.12770844 ], [ 176.22116089, -39.11756134 ], [ 176.22398376000001, -39.11125565 ], [ 176.24375916, -39.10516739 ], [ 176.23622131, -39.09662628 ], [ 176.344680790000012, -39.17187119 ], [ 176.38800049, -39.16394806 ], [ 176.40116882, -39.15988922 ], [ 176.396408079999986, -39.14506531 ], [ 176.38505554, -39.132267 ], [ 176.37469482, -39.13002777 ], [ 176.42077637, -39.11582947 ], [ 176.437713620000011, -39.11604309 ], [ 176.45185852, -39.12254333 ], [ 176.422485349999988, -39.06100845 ], [ 176.45428467, -39.00237656 ], [ 176.55567932, -39.00378036 ], [ 176.54814148, -38.9952507 ], [ 176.61947632, -39.00051498 ], [ 176.61193848, -38.99198532 ], [ 176.61849976, -38.9899826 ], [ 176.603424069999988, -38.97291565 ], [ 176.609985349999988, -38.97091293 ], [ 176.598693849999989, -38.95811081 ], [ 176.60804749, -38.94984436 ], [ 176.600509640000013, -38.94130707 ], [ 176.603317260000011, -38.93504333 ], [ 176.619232180000012, -38.92478943 ], [ 176.70976257, -38.84854889 ], [ 176.70225525, -38.83998489 ], [ 176.711578370000012, -38.8317337 ], [ 176.7003479, -38.81888962 ], [ 176.6993866, -38.80833817 ], [ 176.71244812, -38.80435944 ], [ 176.70495605, -38.79579544 ], [ 176.71801758, -38.79181671 ], [ 176.70774841, -38.78952408 ], [ 176.71611023, -38.77070236 ], [ 176.711425780000013, -38.75586319 ], [ 176.719802859999987, -38.73703003 ], [ 176.71885681, -38.72647095 ], [ 176.73190308, -38.72247696 ], [ 176.73937988, -38.73104477 ], [ 176.752441409999989, -38.72704697 ], [ 176.748703, -38.72276306 ], [ 176.76454163, -38.71247864 ], [ 176.77012634, -38.6999054 ], [ 176.7766571, -38.69789886 ], [ 176.77571106, -38.68732834 ], [ 176.795272829999988, -38.68130112 ], [ 176.82325745, -38.69441986 ], [ 176.83256531, -38.68611908 ], [ 176.84559631, -38.6821022 ], [ 176.85490417, -38.67380142 ], [ 176.862350459999988, -38.68237305 ], [ 176.87536621000001, -38.67835617 ], [ 176.87164307, -38.67407227 ], [ 176.89115906, -38.66804886 ], [ 176.90977478, -38.68947601 ], [ 176.9302063, -38.69403839 ], [ 176.93763733, -38.70261002 ], [ 176.9506073, -38.69859695 ], [ 176.95433044, -38.70288467 ], [ 176.967300419999987, -38.69887161 ], [ 176.9682312, -38.70945358 ], [ 176.987670900000012, -38.70342636 ], [ 176.98396301, -38.69913864 ], [ 177.00337219, -38.69309998 ], [ 177.002441409999989, -38.68251419 ], [ 177.0153656, -38.67847824 ], [ 177.02088928, -38.66587067 ], [ 177.02735901, -38.66384506 ], [ 177.01994324, -38.65528488 ], [ 177.026412959999988, -38.65325928 ], [ 177.034683230000013, -38.63433456 ], [ 177.047637939999987, -38.63026047 ], [ 177.04393005, -38.62598419 ], [ 177.060607909999987, -38.62615967 ], [ 177.06990051, -38.61777115 ], [ 177.08291626, -38.6136322 ], [ 177.0838623, -38.62421799 ], [ 177.096893310000013, -38.62007523 ], [ 177.100631709999988, -38.62432861 ], [ 177.10899353, -38.60534668 ], [ 177.11552429, -38.60327148 ], [ 177.12110901, -38.59062195 ], [ 177.12762451, -38.58855057 ], [ 177.27471924, -38.65044403 ], [ 177.28883362, -38.65681458 ], [ 177.30957031, -38.66109848 ], [ 177.30957031, -38.62318039 ], [ 177.307678220000014, -38.60210419 ], [ 177.35394287, -38.62546158 ], [ 177.36054993, -38.62338257 ], [ 177.38793945, -38.62559128 ], [ 177.39456177, -38.62350845 ], [ 177.41252136, -38.63409042 ], [ 177.4503479, -38.63841248 ], [ 177.45413208, -38.64262772 ], [ 177.44088745, -38.64679337 ], [ 177.444686890000014, -38.65100861 ], [ 177.43522644, -38.6593895 ], [ 177.43617249, -38.6699028 ], [ 177.4163208, -38.67615509 ], [ 177.42010498, -38.68037033 ], [ 177.41157532, -38.69926834 ], [ 177.42860413, -38.69930649 ], [ 177.431442260000011, -38.69300842 ], [ 177.44277954, -38.7056427 ], [ 177.470214840000011, -38.70780182 ], [ 177.46359253, -38.70988846 ], [ 177.47494507, -38.72251129 ], [ 177.4683075, -38.72459793 ], [ 177.47966003, -38.73721313 ], [ 177.46733093, -38.75188065 ], [ 177.47488403, -38.76028442 ], [ 177.485290529999986, -38.76239395 ], [ 177.493774409999986, -38.78127289 ], [ 177.51367188, -38.77500153 ], [ 177.53637695, -38.80015182 ], [ 177.53353882, -38.80644226 ], [ 177.5411377, -38.81482697 ], [ 177.54397583, -38.80854034 ], [ 177.56391907, -38.80226898 ], [ 177.56773376000001, -38.80646515 ], [ 177.58103943, -38.80229187 ], [ 177.59532166, -38.80859375 ], [ 177.58679199, -38.82745361 ], [ 177.59344482, -38.82536316 ], [ 177.59933472, -38.85056686 ], [ 177.61927795, -38.84428024 ], [ 177.63473511, -38.86111832 ], [ 177.6519165, -38.8611412 ], [ 177.65081787, -38.85062027 ], [ 177.66412354, -38.84643173 ], [ 177.661346439999988, -38.85274124 ], [ 177.65631104, -38.90318298 ], [ 177.66687012, -38.90530396 ], [ 177.66966248, -38.8990097 ], [ 177.684097290000011, -38.90534973 ], [ 177.69744873, -38.9011879 ], [ 177.7118988, -38.90753555 ], [ 177.72135925, -38.89916611 ], [ 177.72915649, -38.9076004 ], [ 177.730270389999987, -38.91809082 ], [ 177.739730830000013, -38.90973663 ], [ 177.735824580000013, -38.90552521 ], [ 177.74917603, -38.90138245 ], [ 177.75193787, -38.89509201 ], [ 177.778121950000013, -38.9140625 ], [ 177.780914309999986, -38.90780258 ], [ 177.79428101, -38.90366364 ], [ 177.79037476, -38.89946747 ], [ 177.80374146, -38.89533615 ], [ 177.80096436, -38.90159607 ], [ 177.80877686, -38.90997696 ], [ 177.80207825, -38.91204453 ], [ 177.82049561, -38.92256165 ], [ 177.823287959999988, -38.91629791 ], [ 177.836685179999989, -38.9121666 ], [ 177.84846497, -38.92477417 ], [ 177.842834470000014, -38.93731308 ], [ 177.83329773, -38.94565582 ], [ 177.844787599999989, -38.95827484 ], [ 177.86585999, -38.96245956 ], [ 177.85914612, -38.96456146 ], [ 177.899627689999988, -38.97198105 ], [ 177.89448547, -38.99613571 ], [ 177.8944397, -39.00888824 ], [ 177.886108400000012, -39.01777649 ], [ 177.888885499999986, -39.04416656 ], [ 177.8999939, -39.07166672 ], [ 177.90943909, -39.07583237 ], [ 177.91448975, -39.08446884 ], [ 177.94805908, -39.0941658 ], [ 177.96360779, -39.0886116 ], [ 177.96888733, -39.09722137 ], [ 177.988891599999988, -39.0969429 ], [ 178.00389099, -39.10388947 ], [ 178.00151062, -39.11472321 ], [ 177.98200989, -39.12532806 ], [ 177.96972656, -39.13639069 ], [ 177.96008301, -39.13656616 ], [ 177.94625854, -39.15620422 ], [ 177.938400269999988, -39.15771866 ], [ 177.92443848, -39.17083359 ], [ 177.92645264, -39.18907928 ], [ 177.918884279999986, -39.20777893 ], [ 177.9069519, -39.22999954 ], [ 177.88491821, -39.24909592 ], [ 177.87889099, -39.25055695 ], [ 177.87287903, -39.26136017 ], [ 177.863616940000014, -39.26833344 ], [ 177.858337400000011, -39.25444412 ], [ 177.86193848, -39.24666595 ], [ 177.858886719999987, -39.23749924 ], [ 177.851104740000011, -39.23083496 ], [ 177.8500061, -39.21111298 ], [ 177.84056091, -39.1827774 ], [ 177.821105960000011, -39.1613884 ], [ 177.82728577, -39.16129303 ], [ 177.83805847, -39.1511116 ], [ 177.83778381, -39.14027786 ], [ 177.84597778, -39.13588333 ], [ 177.85305786, -39.1241684 ], [ 177.853607180000012, -39.11583328 ], [ 177.860275269999988, -39.11138916 ], [ 177.858612060000013, -39.10222244 ], [ 177.86721802, -39.09749985 ], [ 177.86610413, -39.08611298 ], [ 177.87236023, -39.08409119 ], [ 177.87037659, -39.07657242 ], [ 177.85928345, -39.06583786 ], [ 177.84680176, -39.0603447 ], [ 177.835037230000012, -39.0605545 ], [ 177.82925415, -39.07449341 ], [ 177.81277466, -39.07444382 ], [ 177.79476929, -39.06640244 ], [ 177.768463129999986, -39.06230164 ], [ 177.74667358, -39.05638885 ], [ 177.66708374000001, -39.05081177 ], [ 177.60142517, -39.05247116 ], [ 177.56582642, -39.05527878 ], [ 177.54333496000001, -39.05444336 ], [ 177.4828949, -39.05644608 ], [ 177.43305969, -39.06277847 ], [ 177.42860413, -39.05638885 ], [ 177.431396479999989, -39.04527664 ], [ 177.4125061, -39.06361008 ], [ 177.35038757, -39.07725525 ], [ 177.2902832, -39.09222412 ], [ 177.213790890000013, -39.11782837 ], [ 177.18444824, -39.1297226 ], [ 177.15345764, -39.13977051 ], [ 177.123535159999989, -39.15211105 ], [ 177.07305908, -39.17777634 ], [ 177.047500609999986, -39.19369507 ], [ 177.03971863000001, -39.20055389 ], [ 177.034729, -39.23833466 ], [ 177.021987919999987, -39.24702835 ], [ 177.02333069, -39.2508316 ], [ 177.01106262, -39.27080917 ], [ 176.99806213, -39.27861023 ], [ 176.9916687, -39.29333496 ], [ 176.96638489, -39.3144455 ], [ 176.95033264, -39.32203293 ], [ 176.94242859, -39.33499527 ], [ 176.934646609999987, -39.33959579 ], [ 176.930191040000011, -39.33571625 ], [ 176.92030334, -39.33919525 ], [ 176.89538574, -39.37428665 ], [ 176.88139343, -39.40638733 ], [ 176.875610349999988, -39.42479324 ], [ 176.872131349999989, -39.45125198 ], [ 176.879226679999988, -39.46986008 ], [ 176.88528442, -39.47833252 ], [ 176.89805603, -39.4794426 ], [ 176.91583252, -39.47305679 ], [ 176.922500609999986, -39.47833252 ], [ 176.920272829999988, -39.48860931 ], [ 176.91920471, -39.52249146 ], [ 176.922500609999986, -39.55110931 ], [ 176.930450439999987, -39.57159424 ], [ 176.953338620000011, -39.60955429 ], [ 176.96762085, -39.62439346 ], [ 176.98083496000001, -39.63249969 ], [ 176.98693848, -39.6305542 ], [ 177.00267029, -39.63985443 ], [ 177.03166199, -39.64972305 ], [ 177.04333496000001, -39.64472198 ], [ 177.06388855, -39.64250183 ], [ 177.077224730000012, -39.63360977 ], [ 177.08444214, -39.64138794 ], [ 177.09611511, -39.64361191 ], [ 177.09165955, -39.65277863 ], [ 177.08076477, -39.66241455 ], [ 177.07943726, -39.67277908 ], [ 177.050170900000012, -39.69223785 ], [ 177.03668213, -39.70506287 ], [ 177.01965332, -39.72591019 ], [ 177.01393127, -39.73768234 ], [ 177.00775146, -39.76146698 ], [ 177.01028442, -39.77027893 ], [ 176.998947140000013, -39.78574753 ], [ 176.993896479999989, -39.79972076 ], [ 176.993652340000011, -39.81194305 ], [ 177.00582886, -39.84194565 ], [ 176.99499512, -39.8433342 ], [ 176.98832703, -39.85638809 ], [ 176.98117065, -39.86145401 ], [ 176.96539307, -39.88660049 ], [ 176.96376038, -39.90393066 ], [ 176.95568848, -39.91743469 ], [ 176.93849182, -39.92717361 ], [ 176.928894039999989, -39.94499969 ], [ 176.927978520000011, -39.95892334 ], [ 176.91473389, -39.97155762 ], [ 176.90852356, -39.98235321 ], [ 176.90333557, -40.00666809 ], [ 176.88806152, -40.0261116 ], [ 176.88020325, -40.04597473 ], [ 176.88027954, -40.06027603 ], [ 176.89425659, -40.07424545 ], [ 176.891250609999986, -40.08286285 ], [ 176.874786379999989, -40.09606552 ], [ 176.87080383, -40.10604858 ], [ 176.87388611, -40.11916733 ], [ 176.87832642, -40.11999893 ], [ 176.8666687, -40.13499832 ], [ 176.84527588, -40.14583206 ], [ 176.84916687, -40.15222168 ], [ 176.84333801, -40.15999985 ], [ 176.828323360000013, -40.16924667 ], [ 176.82583618000001, -40.1819458 ], [ 176.795272829999988, -40.2080574 ], [ 176.786605830000013, -40.22458267 ], [ 176.780197140000013, -40.21709061 ], [ 176.764724730000012, -40.21944427 ], [ 176.73944092, -40.22833252 ], [ 176.71583557, -40.24000168 ], [ 176.69917297, -40.25305557 ], [ 176.68444824, -40.26111221 ], [ 176.67443848, -40.27138901 ], [ 176.66743469, -40.29819489 ], [ 176.666381840000014, -40.31361008 ], [ 176.673339840000011, -40.32110977 ], [ 176.65293884, -40.35227585 ], [ 176.649368290000012, -40.36864471 ], [ 176.63630676, -40.38997269 ], [ 176.63661194, -40.40676117 ], [ 176.623535159999989, -40.42652893 ], [ 176.5921936, -40.41939926 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, diff --git a/examples/data/rivers.geojson b/examples/data/rivers.geojson index 3ec3df4..1814c5c 100644 --- a/examples/data/rivers.geojson +++ b/examples/data/rivers.geojson @@ -3,114 +3,114 @@ "name": "rivers_discharge", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0, "random": 116.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895, "random": 140.543 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45, "random": 127.668 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null, "random": 188.751 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0, "random": 119.877 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0, "random": 56.812 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null, "random": 155.372 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0, "random": 7.77 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85, "random": 176.396 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0, "random": 54.461 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696, "random": 76.672 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593, "random": 168.478 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0, "random": 8.395 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0, "random": 157.705 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0, "random": 120.315 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0, "random": 25.148 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0, "random": 47.132 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0, "random": 48.082 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0, "random": 80.01 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0, "random": 5.825 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0, "random": 14.728 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0, "random": 121.662 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0, "random": 141.898 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0, "random": 149.12 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0, "random": 112.879 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0, "random": 58.183 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0, "random": 39.292 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0, "random": 175.061 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0, "random": 170.691 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13, "random": 9.975 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65, "random": 143.348 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73, "random": 102.983 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04, "random": 149.654 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81, "random": 161.159 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66, "random": 7.451 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54, "random": 133.134 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91, "random": 99.085 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86, "random": 67.307 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51, "random": 184.839 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51, "random": 18.043 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 62.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 34.129 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 119.351 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39, "random": 185.465 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06, "random": 127.188 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7, "random": 52.724 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31, "random": 22.403 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75, "random": 30.676 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86, "random": 101.52 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85, "random": 7.866 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06, "random": 135.067 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49, "random": 193.469 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11, "random": 57.609 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11, "random": 182.35 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31, "random": 163.018 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66, "random": 87.344 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57, "random": 160.952 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14, "random": 21.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54, "random": 78.819 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34, "random": 27.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58, "random": 132.534 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14, "random": 40.484 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42, "random": 7.136 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58, "random": 101.141 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39, "random": 158.852 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92, "random": 68.891 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43, "random": 161.505 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64, "random": 99.738 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42, "random": 155.239 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38, "random": 181.963 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04, "random": 194.781 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33, "random": 90.657 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45, "random": 183.009 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68, "random": 139.676 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5, "random": 131.305 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98, "random": 195.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98, "random": 131.512 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81, "random": 103.332 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72, "random": 178.335 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28, "random": 179.03 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623, "random": 40.838 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582, "random": 78.646 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701, "random": 140.285 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276, "random": 47.059 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473, "random": 81.88 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5, "random": 80.661 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075, "random": 159.411 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264, "random": 10.611 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622, "random": 161.189 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051, "random": 136.02 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146, "random": 96.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55, "random": 22.436 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0, "random": 17.448 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null, "random": 192.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0, "random": 39.611 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null, "random": 15.102 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null, "random": 166.625 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0, "random": 180.605 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0, "random": 113.246 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0, "random": 156.248 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null, "random": 159.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 158.187 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 195.887 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 10.855 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0, "random": 124.806 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0, "random": 7.143 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94, "random": 70.008 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null, "random": 93.633 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0, "random": 104.678 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } ] } diff --git a/examples/data/rivers_yukon.geojson b/examples/data/rivers_yukon.geojson index 50e0d04..a645d95 100644 --- a/examples/data/rivers_yukon.geojson +++ b/examples/data/rivers_yukon.geojson @@ -6,10 +6,10 @@ { "type": "Feature", "properties": { "scalerank": 6, "name": "Tanana", "rivernum": 238, "length": 886499.813 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -142.021850585937329, 62.026556707806627 ], [ -142.038256835937119, 62.045233465619049 ], [ -142.056640625000313, 62.061346746869091 ], [ -142.078735351562557, 62.07147858280662 ], [ -142.087329101562148, 62.078558660931598 ], [ -142.090820312500171, 62.091742254681655 ], [ -142.087768554687642, 62.184198309369123 ], [ -142.084838867187756, 62.201117254681591 ], [ -142.076464843749818, 62.215594793744145 ], [ -142.060302734375085, 62.227655340619037 ], [ -141.951049804687159, 62.26403229374408 ], [ -141.863525390625, 62.279242254681492 ], [ -141.834472656249943, 62.289740301556641 ], [ -141.803027343750017, 62.311346746869198 ], [ -141.772583007812415, 62.319891668744113 ], [ -141.764697265625017, 62.325995184369269 ], [ -141.762695312499744, 62.334344793744066 ], [ -141.765795898437432, 62.355658270306492 ], [ -141.763305664062273, 62.366888739056634 ], [ -141.756591796875171, 62.375433660931549 ], [ -141.748339843750159, 62.380682684369127 ], [ -141.73930664062496, 62.384955145306641 ], [ -141.730102539062671, 62.390692449994155 ], [ -141.655639648437301, 62.458685614056442 ], [ -141.624389648437443, 62.477606512494035 ], [ -141.460986328125273, 62.534491278119141 ], [ -141.440600585937403, 62.544134832806733 ], [ -141.424853515625074, 62.558124090618946 ], [ -141.411547851562318, 62.595892645306449 ], [ -141.379882812499943, 62.623602606244305 ], [ -141.371386718750244, 62.643573309369117 ], [ -141.381762695312716, 62.686297918744145 ], [ -141.412646484375188, 62.709173895306606 ], [ -141.450439453124886, 62.726825262494039 ], [ -141.481249999999704, 62.753363348431513 ], [ -141.476562499999943, 62.77472565311907 ], [ -141.489868164062614, 62.799676824994052 ], [ -141.511645507812489, 62.820428778119222 ], [ -141.532153320312773, 62.82916901249407 ], [ -141.649658203125028, 62.846063543744101 ], [ -141.673022460937261, 62.855780340619084 ], [ -141.668505859375131, 62.867987371869134 ], [ -141.600756835937545, 62.907660223431677 ], [ -141.604785156250216, 62.921502996869215 ], [ -141.632080078125085, 62.934930731244151 ], [ -141.742553710937415, 62.965033270306691 ], [ -141.770385742187557, 62.977899481244059 ], [ -141.790454101562602, 63.010077215619042 ], [ -141.809863281249875, 63.025213934369205 ], [ -141.851196289062443, 63.047552801556613 ], [ -141.951586914062545, 63.063983465618968 ], [ -141.977832031250045, 63.078631903119216 ], [ -141.997436523437671, 63.093207098431634 ], [ -142.070312499999943, 63.12335846561917 ], [ -142.112915039062528, 63.152704168744137 ], [ -142.136767578125045, 63.165716864056556 ], [ -142.274707031250131, 63.187567449994084 ], [ -142.309863281249903, 63.184759832806677 ], [ -142.321826171874903, 63.179632879681662 ], [ -142.331591796874932, 63.172967840619144 ], [ -142.34233398437496, 63.167303778119084 ], [ -142.357666015624915, 63.164911199994137 ], [ -142.374194335937517, 63.168036199994106 ], [ -142.404052734375, 63.181708074994098 ], [ -142.431030273437244, 63.187445379681726 ], [ -142.441210937500045, 63.193915106244098 ], [ -142.457275390624915, 63.209002996869067 ], [ -142.469897460937318, 63.216571356244188 ], [ -142.577441406249989, 63.23798248905662 ], [ -142.605468749999858, 63.247919012494201 ], [ -142.628588867187375, 63.263934637494089 ], [ -142.648486328125074, 63.282416082806591 ], [ -142.656250000000256, 63.292914129681563 ], [ -142.659301757812671, 63.304877020306556 ], [ -142.663940429687528, 63.31293366093162 ], [ -142.686206054687347, 63.323065496869148 ], [ -142.694091796875085, 63.328802801556634 ], [ -142.697265624999943, 63.337909246869124 ], [ -142.697387695312642, 63.355414129681535 ], [ -142.700927734374972, 63.362909246869151 ], [ -142.712329101562375, 63.370917059369198 ], [ -142.726562499999943, 63.374701239056684 ], [ -142.740771484375188, 63.373480535931513 ], [ -142.766406249999875, 63.357733465619177 ], [ -142.783984374999875, 63.355243231244131 ], [ -142.838671875000102, 63.358343817181499 ], [ -142.85009765625, 63.362616278119077 ], [ -142.872192382812472, 63.375921942181684 ], [ -142.894213867187489, 63.383856512494106 ], [ -142.960375976562574, 63.397650457806627 ], [ -142.960375976562574, 63.403876043744106 ], [ -142.943481445312472, 63.418646551556627 ], [ -142.964843749999886, 63.429950262494167 ], [ -143.001220703124943, 63.436835028119077 ], [ -143.02922363281229, 63.438666082806712 ], [ -143.05986328124996, 63.433124090619152 ], [ -143.117187499999858, 63.415228582806691 ], [ -143.14934082031246, 63.411322332806613 ], [ -143.291308593750131, 63.414252020306577 ], [ -143.310424804687216, 63.411322332806613 ], [ -143.367114257812489, 63.385199285931684 ], [ -143.396118164062329, 63.38007233280667 ], [ -143.451538085937528, 63.406073309369127 ], [ -143.564257812500102, 63.411322332806556 ], [ -143.599169921874932, 63.417669989056684 ], [ -143.632568359375028, 63.418158270306598 ], [ -143.682177734375102, 63.405829168744098 ], [ -143.759521484374972, 63.397650457806627 ], [ -143.772631835937574, 63.401483465619073 ], [ -143.780078125000074, 63.41051666874408 ], [ -143.790209960937517, 63.431219793744091 ], [ -143.829028320312545, 63.46039459843157 ], [ -143.838745117187699, 63.475775457806527 ], [ -143.827758789062415, 63.496649481244205 ], [ -143.815795898437557, 63.506170965619148 ], [ -143.788574218750085, 63.523016668744106 ], [ -143.775927734375017, 63.534247137494191 ], [ -143.791503906250114, 63.567254949994059 ], [ -143.797656250000188, 63.575213934369089 ], [ -143.809082031249915, 63.58107330936916 ], [ -143.836425781250085, 63.58644440311906 ], [ -143.848559570312375, 63.59254791874416 ], [ -143.85625, 63.602167059369137 ], [ -143.857299804687642, 63.610126043744025 ], [ -143.857226562500045, 63.617865301556577 ], [ -143.861938476562557, 63.626727606244067 ], [ -143.871826171875171, 63.634711004681563 ], [ -143.906909179687375, 63.650897528119145 ], [ -143.935058593750171, 63.670770574994094 ], [ -143.995166015624818, 63.696893621869116 ], [ -144.040820312500102, 63.702337957806584 ], [ -144.140307617187545, 63.726019598431606 ], [ -144.181689453125216, 63.729925848431535 ], [ -144.541381835937642, 63.725116278119089 ], [ -144.599121093750028, 63.739569403119098 ], [ -144.74418945312496, 63.804754949994212 ], [ -144.758471679687432, 63.813495184369138 ], [ -144.773974609375017, 63.825384832806627 ], [ -144.777954101562528, 63.838568426556591 ], [ -144.762255859375131, 63.873480535931556 ], [ -144.763476562500045, 63.891131903119017 ], [ -144.780566406250045, 63.901800848431591 ], [ -144.807373046874801, 63.902899481244205 ], [ -144.859057617187375, 63.897333074994208 ], [ -144.914306640625057, 63.945746160931506 ], [ -144.899536132812642, 63.961615301556549 ], [ -144.848803710937659, 64.004095770306662 ], [ -144.856079101562329, 64.016864324994117 ], [ -144.962084960937489, 64.041937567181705 ], [ -145.010498046874943, 64.062445379681648 ], [ -145.062426757812716, 64.073065496869035 ], [ -145.090502929687545, 64.084588934369108 ], [ -145.110400390624903, 64.084344793744222 ], [ -145.1298828125, 64.079901434369134 ], [ -145.143310546874858, 64.072333074994205 ], [ -145.158691406249886, 64.066278387494094 ], [ -145.361987304687318, 64.082464910931705 ], [ -145.429809570312585, 64.099798895306577 ], [ -145.607055664062358, 64.171087957806733 ], [ -145.671508789062329, 64.186053778119174 ], [ -145.736694335937528, 64.191522528119108 ], [ -145.768481445312233, 64.186224676556691 ], [ -145.825976562500131, 64.163202215619094 ], [ -145.856811523437727, 64.158026434369091 ], [ -145.888427734374716, 64.161688543744148 ], [ -146.0601806640625, 64.215692449994179 ], [ -146.111132812499903, 64.24640534061912 ], [ -146.144287109374943, 64.248163153119208 ], [ -146.209643554687773, 64.239935614056549 ], [ -146.241748046874733, 64.245135809369216 ], [ -146.302490234374829, 64.268670965619194 ], [ -146.449023437500102, 64.284686590619145 ], [ -146.490234374999943, 64.281512762494032 ], [ -146.585375976562318, 64.257342840619131 ], [ -146.655395507812415, 64.253485418744148 ], [ -146.672241210937329, 64.256219793744222 ], [ -146.685424804687557, 64.264105535931449 ], [ -146.714648437499619, 64.294940496869174 ], [ -146.723632812499858, 64.301385809369251 ], [ -146.755981445312415, 64.310809637494103 ], [ -146.827197265625017, 64.315790106244123 ], [ -146.860473632812671, 64.325873114056577 ], [ -147.020874023437358, 64.425653387494165 ], [ -147.031494140625199, 64.442328192181492 ], [ -147.025317382812347, 64.458514715619103 ], [ -147.000292968749989, 64.487005926556691 ], [ -146.997314453124858, 64.507440496869123 ], [ -147.021728515624943, 64.546087957806648 ], [ -147.068481445312329, 64.571478582806634 ], [ -147.16862792968783, 64.61046784061908 ], [ -147.188281249999733, 64.624701239056691 ], [ -147.233813476562574, 64.675360418744049 ], [ -147.255249023437187, 64.689227606244231 ], [ -147.522338867187528, 64.775091864056634 ], [ -147.846435546874858, 64.805731512494248 ], [ -147.935791015624716, 64.802313543744148 ], [ -147.950561523437472, 64.799090887494046 ], [ -147.990405273437375, 64.781195379681648 ], [ -148.01806640625, 64.757342840619131 ], [ -148.028564453125199, 64.753851629681577 ], [ -148.096484374999818, 64.745624090619259 ], [ -148.162963867187301, 64.725897528119177 ], [ -148.237915039062671, 64.690497137494077 ], [ -148.329956054687585, 64.671942449994148 ], [ -148.422729492187443, 64.671942449994091 ], [ -148.621459960937699, 64.643915106244094 ], [ -148.645922851562574, 64.631781317181648 ], [ -148.655810546874875, 64.606756903119177 ], [ -148.700073242187699, 64.585223699994046 ], [ -149.104541015624989, 64.575751043744063 ], [ -149.115478515625, 64.577997137494165 ], [ -149.130175781249932, 64.583856512494151 ], [ -149.143066406250085, 64.591669012494179 ], [ -149.148608398437318, 64.59992096561912 ], [ -149.144653320312585, 64.610663153118992 ], [ -149.135302734375045, 64.614935614056549 ], [ -149.124194335937261, 64.617792059369165 ], [ -149.115112304687727, 64.624139715619094 ], [ -149.108935546875159, 64.636297918744191 ], [ -149.111328125000114, 64.641913153119091 ], [ -149.117187499999829, 64.647162176556719 ], [ -149.121337890625057, 64.658270574994077 ], [ -149.120043945312659, 64.670721746869063 ], [ -149.116748046875017, 64.680731512494191 ], [ -149.116748046875017, 64.690741278119049 ], [ -149.125048828125102, 64.702948309369091 ], [ -149.131762695312432, 64.720233465619174 ], [ -149.1170654296875, 64.757391668744091 ], [ -149.121337890624744, 64.781195379681648 ], [ -149.115112304687386, 64.788641668744276 ], [ -149.130126953124801, 64.792303778119177 ], [ -149.146289062499875, 64.794256903119049 ], [ -149.160522460937557, 64.798529364056535 ], [ -149.169726562500045, 64.809149481244191 ], [ -149.153979492187403, 64.811297918744188 ], [ -149.146289062500216, 64.817010809369037 ], [ -149.135620117187557, 64.835809637494009 ], [ -149.117675781250114, 64.860296942181606 ], [ -149.115112304687386, 64.867132879681648 ], [ -149.128173828125, 64.878045965619108 ], [ -149.190234374999875, 64.905707098431563 ], [ -149.210693359374943, 64.912176824994134 ], [ -149.248583984374733, 64.914007879681662 ], [ -149.399414062500227, 64.901678778119077 ], [ -149.491210937499858, 64.877386785931591 ], [ -149.509643554687585, 64.875995184369046 ], [ -149.522705078124858, 64.879169012494117 ], [ -149.575488281250045, 64.904413153119009 ], [ -149.595019531249989, 64.908148504681677 ], [ -149.611694335937415, 64.901629949994174 ], [ -149.645507812499858, 64.864691473431535 ], [ -149.666137695312642, 64.849432684369077 ], [ -149.690478515625188, 64.843207098431563 ], [ -149.703857421875, 64.84572174686916 ], [ -149.734741210937386, 64.855829168744137 ], [ -149.752563476562187, 64.857538153119222 ], [ -149.785083007812204, 64.854437567181677 ], [ -149.800585937499875, 64.849188543744191 ], [ -149.816406250000057, 64.823358465619108 ], [ -149.838012695312756, 64.808172918744077 ], [ -149.882250976562545, 64.788641668744233 ], [ -149.920214843749875, 64.783148504681762 ], [ -150.038256835937347, 64.796454168744162 ], [ -150.073657226562602, 64.806268621869066 ], [ -150.098999023437443, 64.819281317181634 ], [ -150.139526367187472, 64.820086981244145 ], [ -150.156005859375057, 64.822772528119046 ], [ -150.166674804687403, 64.829413153119049 ], [ -150.181323242187517, 64.844183660931563 ], [ -150.190722656250159, 64.850116278118918 ], [ -150.208374023437841, 64.856146551556535 ], [ -150.295776367187273, 64.86769440311916 ], [ -150.321166992187557, 64.878851629681677 ], [ -150.342895507812585, 64.896112371869108 ], [ -150.375244140624858, 64.936102606244134 ], [ -150.392382812500131, 64.95160553593162 ], [ -150.414672851562642, 64.962591864056535 ], [ -150.565478515624818, 64.979315496869162 ], [ -150.77324218749979, 64.972967840619233 ], [ -150.789599609375045, 64.975116278119131 ], [ -150.824023437500074, 64.984491278119194 ], [ -150.841845703124847, 64.986639715619162 ], [ -150.998779296874744, 64.971014715619205 ], [ -151.188720703125284, 64.907538153119035 ], [ -151.239746093749886, 64.904730535931662 ], [ -151.25444335937479, 64.898627020306677 ], [ -151.282153320312517, 64.881048895306719 ], [ -151.297485351562443, 64.877386785931563 ], [ -151.3642578125, 64.875921942181535 ], [ -151.393603515624704, 64.881659246869191 ], [ -151.424072265624659, 64.898504949994177 ], [ -151.446948242187375, 64.918231512494216 ], [ -151.458178710937517, 64.925165106244208 ], [ -151.487597656249761, 64.931952215619148 ], [ -151.500976562499858, 64.937567449994162 ], [ -151.506591796875227, 64.949408270306535 ], [ -151.505249023437415, 64.954291082806634 ], [ -151.503833007812347, 64.964960028119151 ], [ -151.506274414062744, 64.97553131718152 ], [ -151.516528320312347, 64.980414129681691 ], [ -151.550659179687585, 64.984198309369091 ], [ -151.567431640624932, 64.990423895306662 ], [ -151.574877929687148, 65.000921942181691 ], [ -151.561157226562472, 65.016424871869063 ], [ -151.53740234374979, 65.032171942181748 ], [ -151.531542968749761, 65.044378973431719 ], [ -151.571459960937204, 65.04933502811916 ], [ -151.596801757812386, 65.039740301556733 ], [ -151.613891601562557, 65.019842840619162 ], [ -151.632983398437347, 65.002508856244148 ], [ -151.664306640624886, 65.000921942181634 ], [ -151.690478515625216, 65.014227606244091 ], [ -151.690966796874847, 65.030780340619174 ], [ -151.679687499999915, 65.049432684369251 ], [ -151.670458984375017, 65.069159246869177 ], [ -151.678588867187671, 65.098944403119063 ], [ -151.70830078125033, 65.113544012493989 ], [ -151.746704101562159, 65.115423895306634 ], [ -151.780932617187318, 65.107001043744191 ], [ -151.808105468749972, 65.104681707806662 ], [ -151.835083007812784, 65.116327215619066 ], [ -151.883422851562642, 65.148309637494066 ], [ -151.920092773437233, 65.159784246869179 ], [ -152.047851562500227, 65.16535065311912 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 6, "name": "Koyukuk", "rivernum": 240, "length": 861921.058 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -150.821411132812841, 68.042914129681506 ], [ -150.8187255859375, 68.030633856244066 ], [ -150.822021484375142, 68.026678778119134 ], [ -150.828491210937443, 68.024115301556705 ], [ -150.835009765624903, 68.016180731244162 ], [ -150.836303710937614, 68.00849030155652 ], [ -150.835083007812102, 67.992499090619205 ], [ -150.838134765624773, 67.985174871869106 ], [ -150.858154296875, 67.96198151249402 ], [ -150.864062499999818, 67.948553778119205 ], [ -150.863330078124903, 67.932684637494191 ], [ -150.859130859374886, 67.927020574994103 ], [ -150.8531494140625, 67.923041082806577 ], [ -150.848510742187329, 67.918085028119251 ], [ -150.848315429687489, 67.909125067181577 ], [ -150.857592773437517, 67.898504949994106 ], [ -150.873168945312699, 67.890326239056606 ], [ -150.887329101562244, 67.877752996869191 ], [ -150.892456054687358, 67.853876043744137 ], [ -150.888061523437472, 67.82807037968162 ], [ -150.8973388671875, 67.808954168744222 ], [ -150.915161132812585, 67.794208074994202 ], [ -150.950317382812216, 67.771258856244145 ], [ -150.987060546875313, 67.736029364056506 ], [ -151.010498046874829, 67.721063543744151 ], [ -151.020507812499773, 67.711615301556677 ], [ -151.025439453125045, 67.698602606244151 ], [ -151.023193359374829, 67.691717840619177 ], [ -151.017138671874932, 67.684271551556662 ], [ -151.0103759765625, 67.679315496869165 ], [ -151.005737304687671, 67.680438543744046 ], [ -151.0230712890625, 67.65900299686912 ], [ -151.026171874999989, 67.653143621869106 ], [ -151.024658203125, 67.645575262494134 ], [ -151.020019531250171, 67.639520574994137 ], [ -151.015136718749687, 67.635077215619219 ], [ -151.013183593749886, 67.632635809369248 ], [ -151.021118164062386, 67.621771551556606 ], [ -151.0325927734375, 67.611273504681577 ], [ -151.039428710937443, 67.600897528119162 ], [ -151.033618164062517, 67.590399481244106 ], [ -151.037158203125131, 67.587420965618946 ], [ -151.043627929687773, 67.580340887493975 ], [ -151.047290039062403, 67.577337957806606 ], [ -151.038623046874648, 67.557806707806662 ], [ -151.024414062500028, 67.54689362186906 ], [ -150.985229492187216, 67.529608465619262 ], [ -150.936889648437301, 67.496771551556705 ], [ -150.917602539062671, 67.488641668743966 ], [ -150.844360351562443, 67.471210028119117 ], [ -150.821411132812216, 67.461297918744208 ], [ -150.807177734374847, 67.448065496869233 ], [ -150.784106445312602, 67.414911199994165 ], [ -150.767382812499761, 67.406073309369191 ], [ -150.769042968749773, 67.387225653119202 ], [ -150.757739257812432, 67.375677801556634 ], [ -150.741015625000188, 67.365741278118975 ], [ -150.726562499999943, 67.351825262494117 ], [ -150.723754882812557, 67.344916082806634 ], [ -150.723388671874943, 67.340106512494245 ], [ -150.721972656249875, 67.335638739056591 ], [ -150.716186523437671, 67.329950262494009 ], [ -150.706958007812489, 67.325873114056705 ], [ -150.699218749999829, 67.324823309369179 ], [ -150.693652343749875, 67.321844793744162 ], [ -150.690917968750028, 67.311639715619094 ], [ -150.692553710937659, 67.303168035931606 ], [ -150.697387695312671, 67.295038153119108 ], [ -150.709521484375188, 67.281439520306634 ], [ -150.754443359375102, 67.246161199994134 ], [ -150.767749023437688, 67.232684637494074 ], [ -150.777587890624858, 67.224872137494145 ], [ -150.801269531249687, 67.214374090619202 ], [ -150.810180664062727, 67.206561590618961 ], [ -150.813891601562489, 67.19537994999402 ], [ -150.809375, 67.174994207806691 ], [ -150.810424804687386, 67.163519598431662 ], [ -150.822802734374875, 67.149920965619145 ], [ -150.842285156249687, 67.145941473431648 ], [ -150.881591796875171, 67.145868231244108 ], [ -150.906176757812688, 67.136419989056535 ], [ -150.972827148437631, 67.089374090619074 ], [ -150.999072265625159, 67.080755926556591 ], [ -151.081469726562148, 67.070257879681733 ], [ -151.095629882812602, 67.065863348431577 ], [ -151.129882812499858, 67.049823309369245 ], [ -151.147753906250102, 67.044256903119077 ], [ -151.162524414062517, 67.042425848431549 ], [ -151.197802734375102, 67.042987371869145 ], [ -151.248413085937301, 67.039911199994194 ], [ -151.318237304687557, 67.020575262494134 ], [ -151.426757812500057, 67.003485418744077 ], [ -151.451342773437574, 66.99457428593162 ], [ -151.437744140624886, 66.981512762494191 ], [ -151.454711914062415, 66.972528387494222 ], [ -151.494506835937528, 66.961249090619148 ], [ -151.530200195312545, 66.945086981244089 ], [ -151.542968750000057, 66.94110748905662 ], [ -151.581713867187432, 66.939960028119202 ], [ -151.613769531249886, 66.933124090619074 ], [ -151.659960937499818, 66.916571356244191 ], [ -151.691088867187489, 66.896356512494179 ], [ -151.677905273437545, 66.878485418744063 ], [ -151.708251953124886, 66.864203192181662 ], [ -151.715258789062602, 66.848651434369089 ], [ -151.707080078124818, 66.829169012494191 ], [ -151.684497070312545, 66.790472723431506 ], [ -151.682739257812273, 66.785663153119259 ], [ -151.707153320312671, 66.740668035931463 ], [ -151.711425781249886, 66.727655340619251 ], [ -151.713427734374818, 66.713251043744151 ], [ -151.713671875000102, 66.702215887494077 ], [ -151.716357421874818, 66.691961981244162 ], [ -151.725708007812386, 66.679877020306634 ], [ -151.736572265624886, 66.67206452030662 ], [ -151.793139648437347, 66.644476629681733 ], [ -151.853027343749886, 66.627386785931634 ], [ -151.869433593749932, 66.626776434369191 ], [ -151.885742187500085, 66.630389715619046 ], [ -151.903247070312659, 66.638251043744134 ], [ -151.912280273437403, 66.616522528119106 ], [ -151.918872070312659, 66.604999090619032 ], [ -151.924975585937716, 66.597967840619063 ], [ -151.938720703125114, 66.592718817181577 ], [ -151.959155273437744, 66.589544989056591 ], [ -151.977661132812642, 66.591327215619131 ], [ -151.985766601562602, 66.601385809369063 ], [ -151.995654296874875, 66.606512762494077 ], [ -152.070117187499989, 66.594745184369174 ], [ -152.079272460937688, 66.58703034061908 ], [ -152.0863037109375, 66.577826239056648 ], [ -152.095019531249704, 66.570013739056648 ], [ -152.121704101562386, 66.556659246869245 ], [ -152.136108398437216, 66.551874090619151 ], [ -152.150268554687386, 66.550116278119191 ], [ -152.163378906250102, 66.553338934369037 ], [ -152.18840332031246, 66.566961981244205 ], [ -152.205493164062318, 66.570013739056549 ], [ -152.239135742187273, 66.564398504681634 ], [ -152.312670898437631, 66.542840887494094 ], [ -152.348876953125284, 66.542743231244032 ], [ -152.353271484375171, 66.545233465619006 ], [ -152.363159179687472, 66.55634186405662 ], [ -152.397338867187528, 66.563788153119077 ], [ -152.455981445312432, 66.568719793744137 ], [ -152.468994140624915, 66.573431707806748 ], [ -152.48088378906246, 66.581366278119134 ], [ -152.489550781249875, 66.579217840619165 ], [ -152.499072265625216, 66.573358465619037 ], [ -152.538378906250045, 66.564764715619006 ], [ -152.547851562499915, 66.563788153119219 ], [ -152.555834960937517, 66.565619207806677 ], [ -152.568725585937671, 66.574042059369134 ], [ -152.575439453124972, 66.576849676556563 ], [ -152.620288085937659, 66.580682684369037 ], [ -152.64453125, 66.580023504681648 ], [ -152.664184570312557, 66.576849676556648 ], [ -152.664794921875171, 66.574237371869117 ], [ -152.667651367187659, 66.56793854374412 ], [ -152.672167968750188, 66.560980535931577 ], [ -152.677856445312784, 66.556341864056563 ], [ -152.756396484374932, 66.543646551556719 ], [ -152.792773437500074, 66.515082098431591 ], [ -152.822192382812602, 66.508563543744117 ], [ -152.858203124999818, 66.506781317181634 ], [ -152.890063476562744, 66.501654364056421 ], [ -153.003710937500045, 66.462420965619103 ], [ -153.020507812500142, 66.460150457806506 ], [ -153.039843749999903, 66.463202215619077 ], [ -153.0767822265625, 66.474798895306577 ], [ -153.096850585937489, 66.474432684369162 ], [ -153.108081054687318, 66.470282293744148 ], [ -153.130664062500244, 66.458197332806506 ], [ -153.143969726562517, 66.453924871869049 ], [ -153.1680908203125, 66.451532293744108 ], [ -153.284545898437784, 66.45392487186902 ], [ -153.290209960937659, 66.451776434369009 ], [ -153.299121093750045, 66.442401434369145 ], [ -153.315356445312688, 66.436102606244106 ], [ -153.311645507812273, 66.426214910931677 ], [ -153.303833007812443, 66.414618231244191 ], [ -153.301635742187671, 66.405536199994046 ], [ -153.312377929687528, 66.39679596561912 ], [ -153.329956054687358, 66.389715887494219 ], [ -153.348681640624818, 66.385443426556648 ], [ -153.36308593749996, 66.385077215619035 ], [ -153.368823242187375, 66.388495184369191 ], [ -153.378417968750199, 66.401483465619094 ], [ -153.384204101562375, 66.405536199994074 ], [ -153.403808593749858, 66.408636785931705 ], [ -153.408984375000074, 66.410956121869049 ], [ -153.418994140625045, 66.41669342655662 ], [ -153.424365234375131, 66.41857330936908 ], [ -153.434814453124886, 66.419452215619103 ], [ -153.445239257812574, 66.418475653119103 ], [ -153.487475585937432, 66.407416082806478 ], [ -153.555957031250188, 66.399603582806549 ], [ -153.611328124999858, 66.382757879681719 ], [ -153.673339843749943, 66.369256903119151 ], [ -153.811035156250028, 66.330438543744194 ], [ -153.913745117187261, 66.295599676556719 ], [ -154.000781250000045, 66.277899481244035 ], [ -154.038378906249761, 66.275213934369248 ], [ -154.063110351562301, 66.270697332806634 ], [ -154.060961914062659, 66.259833074994106 ], [ -154.050219726562489, 66.246405340619205 ], [ -154.048950195312443, 66.234198309369091 ], [ -154.095336914062557, 66.239569403119134 ], [ -154.115600585937415, 66.239325262494134 ], [ -154.103564453125159, 66.22736237186912 ], [ -154.123168945312273, 66.209833074994179 ], [ -154.152099609374886, 66.190863348431705 ], [ -154.173828124999915, 66.16950104374412 ], [ -154.171875000000114, 66.144842840619077 ], [ -154.192382812499943, 66.14069244999429 ], [ -154.211718750000017, 66.132025457806719 ], [ -154.247607421874875, 66.111346746869145 ], [ -154.242358398437432, 66.106268621869063 ], [ -154.233276367187585, 66.090204168744094 ], [ -154.244799804687517, 66.081244207806719 ], [ -154.274047851562273, 66.049383856244134 ], [ -154.278320312499829, 66.042425848431705 ], [ -154.274584960937659, 66.039252020306662 ], [ -154.281249999999858, 66.03217194218162 ], [ -154.29248046875, 66.025091864056606 ], [ -154.302539062500045, 66.021918035931762 ], [ -154.311401367187329, 66.018011785931719 ], [ -154.318481445312244, 66.008563543744174 ], [ -154.329516601562204, 65.987811590619188 ], [ -154.347094726562659, 65.967474676556591 ], [ -154.362475585937375, 65.959833074994222 ], [ -154.446826171874761, 65.960516668744262 ], [ -154.453002929687642, 65.956805731244103 ], [ -154.456347656250102, 65.94542877811908 ], [ -154.464770507812545, 65.938592840619123 ], [ -154.476000976562347, 65.934833074994074 ], [ -154.487792968749943, 65.932562567181691 ], [ -154.482299804687528, 65.929706121869089 ], [ -154.471728515625102, 65.922308660931535 ], [ -154.466064453125256, 65.919549871869066 ], [ -154.485351562500199, 65.917743231244032 ], [ -154.513232421874733, 65.918646551556634 ], [ -154.538330078125256, 65.915594793743978 ], [ -154.55498046874996, 65.892840887494074 ], [ -154.590209960937443, 65.864325262494162 ], [ -154.647583007812358, 65.842474676556606 ], [ -154.675463867187545, 65.825213934369089 ], [ -154.721557617187528, 65.805975653119063 ], [ -154.7467041015625, 65.800238348431719 ], [ -154.765551757812659, 65.791205145306606 ], [ -154.774902343749858, 65.789129949994134 ], [ -154.785815429687204, 65.792352606244123 ], [ -154.788452148437727, 65.799920965619009 ], [ -154.789477539062432, 65.80878327030662 ], [ -154.795654296875, 65.815863348431648 ], [ -154.820190429687727, 65.821112371869106 ], [ -154.941894531250142, 65.813251043744117 ], [ -154.998168945312528, 65.802850653119208 ], [ -155.028442382812329, 65.802264715619032 ], [ -155.062866210937358, 65.806952215619205 ], [ -155.060791015624886, 65.812811590619162 ], [ -155.040893554687358, 65.822088934369134 ], [ -155.021606445312699, 65.836981512494035 ], [ -155.149096679687347, 65.882196356244108 ], [ -155.159057617187472, 65.881366278119046 ], [ -155.175537109375057, 65.875677801556719 ], [ -155.196948242187261, 65.872381903119233 ], [ -155.218310546874989, 65.872748114056648 ], [ -155.234497070312472, 65.877948309369145 ], [ -155.22514648437496, 65.882513739056705 ], [ -155.217407226562301, 65.888495184369162 ], [ -155.211303710937273, 65.895941473431662 ], [ -155.207153320312727, 65.905218817181591 ], [ -155.268310546874886, 65.897772528119134 ], [ -155.289111328124818, 65.898382879681634 ], [ -155.275317382812602, 65.914325262494131 ], [ -155.233203125000074, 65.930365301556606 ], [ -155.22021484375, 65.946844793744177 ], [ -155.241625976562517, 65.949725653119145 ], [ -155.265380859374886, 65.945086981244216 ], [ -155.326708984374847, 65.917547918744262 ], [ -155.3411865234375, 65.91327545780662 ], [ -155.357104492187602, 65.911737371869094 ], [ -155.378466796874704, 65.912127996869231 ], [ -155.423510742187574, 65.903143621869035 ], [ -155.446411132812358, 65.90187409061916 ], [ -155.453613281249915, 65.912127996869131 ], [ -155.440917968749943, 65.923456121869052 ], [ -155.371630859375074, 65.94684479374412 ], [ -155.3914794921875, 65.957953192181648 ], [ -155.426269531250142, 65.994012762494037 ], [ -155.455126953124903, 66.009393621869137 ], [ -155.485034179687403, 66.012640692181677 ], [ -155.573657226562347, 66.003485418744162 ], [ -155.61979980468746, 65.985174871869191 ], [ -155.645385742187273, 65.980975653119188 ], [ -155.672412109374875, 65.979510809369131 ], [ -155.683837890624858, 65.982123114056634 ], [ -155.696582031249989, 65.990912176556591 ], [ -155.708496093750227, 65.996356512494145 ], [ -155.722216796874932, 65.995550848431662 ], [ -155.73442382812496, 65.990008856244131 ], [ -155.741577148437727, 65.980975653119032 ], [ -155.711108398437432, 65.96918366093162 ], [ -155.7, 65.966669012494165 ], [ -155.719042968750244, 65.963495184369009 ], [ -155.746997070312318, 65.965887762494177 ], [ -155.769287109374801, 65.973089910931662 ], [ -155.771972656250171, 65.984393621869032 ], [ -155.757617187500159, 65.999335028119091 ], [ -155.752441406249915, 66.006048895306634 ], [ -155.758789062499915, 66.007757879681577 ], [ -155.778808593749801, 66.007635809369191 ], [ -155.823974609375, 65.999042059369074 ], [ -155.850756835937631, 65.997088934369145 ], [ -155.854541015624903, 66.004584051556634 ], [ -155.855517578124818, 66.016180731244191 ], [ -155.876464843749801, 66.02387116093162 ], [ -155.919433593750227, 66.029413153119023 ], [ -155.927172851562545, 66.027606512494145 ], [ -155.953857421874886, 66.015082098431634 ], [ -155.994799804687688, 66.007635809369049 ], [ -156.0142822265625, 66.001239324994188 ], [ -156.025683593749761, 65.999090887494148 ], [ -156.035766601562244, 66.001483465619131 ], [ -156.038012695312148, 66.006537176556691 ], [ -156.034423828125028, 66.012640692181591 ], [ -156.0299072265625, 66.018255926556634 ], [ -156.029589843749989, 66.021918035931648 ], [ -156.047973632812585, 66.030462957806677 ], [ -156.058032226562347, 66.025824285931606 ], [ -156.065600585937517, 66.014032293744066 ], [ -156.076782226562528, 66.001483465619103 ], [ -156.093798828124875, 65.991815496869137 ], [ -156.11186523437496, 65.987738348431648 ], [ -156.128051757812443, 65.992010809369177 ], [ -156.139453125000017, 66.007635809368978 ], [ -156.137622070312545, 66.02387116093162 ], [ -156.157519531250102, 66.028021551556634 ], [ -156.18205566406283, 66.019476629681506 ], [ -156.194091796875114, 65.997748114056662 ], [ -156.204956054687614, 65.990545965619148 ], [ -156.260131835937443, 66.004022528119066 ], [ -156.282836914062386, 66.001483465619074 ], [ -156.257202148437415, 65.972284246869236 ], [ -156.223754882812614, 65.960760809369049 ], [ -156.145629882812585, 65.960516668744106 ], [ -156.164916992187528, 65.945672918744052 ], [ -156.2281494140625, 65.94428131718162 ], [ -156.252075195312301, 65.935980535931705 ], [ -156.267382812499818, 65.921454168744162 ], [ -156.286254882812329, 65.908563543744094 ], [ -156.306762695312187, 65.904364324994205 ], [ -156.347167968750227, 65.92584869999412 ], [ -156.3726806640625, 65.927997137494216 ], [ -156.388232421874989, 65.919623114056606 ], [ -156.378417968750227, 65.898382879681492 ], [ -156.357788085937756, 65.88764069218152 ], [ -156.305297851562329, 65.881170965619205 ], [ -156.282836914062386, 65.87111237186916 ], [ -156.297729492187443, 65.866815496869123 ], [ -156.344238281250171, 65.864325262494049 ], [ -156.356616210937659, 65.860907293744091 ], [ -156.352783203124943, 65.853094793744077 ], [ -156.337451171874704, 65.840033270306677 ], [ -156.343017578125, 65.828973699994108 ], [ -156.382128906249648, 65.785760809369279 ], [ -156.40283203125, 65.775824285931506 ], [ -156.42338867187496, 65.778265692181662 ], [ -156.444628906249704, 65.783563543744265 ], [ -156.467773437499773, 65.782342840619208 ], [ -156.536059570312347, 65.748236395306691 ], [ -156.53007812499996, 65.737616278119049 ], [ -156.536743164062784, 65.729925848431535 ], [ -156.54570312499996, 65.723456121869091 ], [ -156.546630859375085, 65.716864324994134 ], [ -156.530517578125114, 65.707220770306634 ], [ -156.509936523437432, 65.704413153119077 ], [ -156.428588867187585, 65.70502350468152 ], [ -156.409838867187375, 65.70026276249412 ], [ -156.409423828124943, 65.689569403119194 ], [ -156.4232177734375, 65.681659246869032 ], [ -156.458496093750085, 65.675165106244009 ], [ -156.484252929687671, 65.66310455936906 ], [ -156.519458007812432, 65.654730535931719 ], [ -156.529223632812403, 65.645209051556705 ], [ -156.524096679687602, 65.633563543744046 ], [ -156.504272460937557, 65.634833074994148 ], [ -156.468066406250216, 65.645209051556648 ], [ -156.42802734374979, 65.640936590619191 ], [ -156.352221679687489, 65.622137762494219 ], [ -156.310107421874932, 65.617938543744202 ], [ -156.330371093750131, 65.607245184368992 ], [ -156.35258789062479, 65.605585028119222 ], [ -156.375781249999676, 65.606708074994188 ], [ -156.398852539062233, 65.604193426556677 ], [ -156.414916992187671, 65.598822332806634 ], [ -156.425170898437614, 65.592401434369137 ], [ -156.425708007812375, 65.585150457806606 ], [ -156.412524414062432, 65.576922918744231 ], [ -156.402026367187204, 65.574896551556606 ], [ -156.364746093750028, 65.576922918744174 ], [ -156.353271484375227, 65.575384832806549 ], [ -156.350585937499886, 65.571722723431648 ], [ -156.351611328124875, 65.567010809369123 ], [ -156.351123046874932, 65.562616278119165 ], [ -156.351318359375114, 65.556708074994049 ], [ -156.354980468750057, 65.549676824994052 ], [ -156.355957031249943, 65.543890692181492 ], [ -156.340747070312688, 65.539422918743995 ], [ -156.336059570312415, 65.534295965619179 ], [ -156.330615234375102, 65.521673895306549 ], [ -156.351318359374773, 65.522162176556662 ], [ -156.373706054687517, 65.51923248905662 ], [ -156.391601562500171, 65.511542059369106 ], [ -156.398852539062545, 65.498065496869245 ], [ -156.39306640625, 65.480096746869151 ], [ -156.378100585937432, 65.471307684369123 ], [ -156.337451171875045, 65.467059637494131 ], [ -156.354492187500114, 65.454291082806648 ], [ -156.387011718749818, 65.44586823124412 ], [ -156.447021484374972, 65.439764715619219 ], [ -156.464355468750114, 65.440375067181549 ], [ -156.472290039062614, 65.44281647343162 ], [ -156.484863281249972, 65.456488348431648 ], [ -156.498217773437347, 65.463934637494091 ], [ -156.511401367187318, 65.46430084843162 ], [ -156.539794921875142, 65.459588934369123 ], [ -156.642138671874761, 65.458758856244202 ], [ -156.659594726562261, 65.467059637494131 ], [ -156.650805664062489, 65.483343817181606 ], [ -156.631835937499716, 65.494208074994162 ], [ -156.624999999999801, 65.501776434369191 ], [ -156.652758789062318, 65.508002020306648 ], [ -156.676196289062489, 65.506415106244205 ], [ -156.699267578125045, 65.501288153119106 ], [ -156.722094726562602, 65.500189520306549 ], [ -156.745239257812386, 65.511102606244094 ], [ -156.758593750000102, 65.521307684369205 ], [ -156.761645507812432, 65.527289129681705 ], [ -156.762622070312659, 65.538397528119091 ], [ -156.767211914062699, 65.546405340619145 ], [ -156.778002929687688, 65.550799871868989 ], [ -156.790405273437244, 65.554071356244179 ], [ -156.799853515624704, 65.558905340619191 ], [ -156.818774414062688, 65.56422760624406 ], [ -156.876220703124829, 65.555609442181691 ], [ -156.899780273437329, 65.555194403119145 ], [ -156.950732421874733, 65.564520574994191 ], [ -156.973876953125114, 65.563421942181591 ], [ -156.968066406249875, 65.548944403119194 ], [ -156.968066406250216, 65.541522528119103 ], [ -156.982421874999886, 65.542181707806705 ], [ -157.010009765624972, 65.548456121868995 ], [ -157.022705078124972, 65.548944403119194 ], [ -157.037524414062204, 65.544061590619208 ], [ -157.038452148437614, 65.537225653119023 ], [ -157.029833984374989, 65.531122137494251 ], [ -156.999877929687386, 65.524042059369123 ], [ -157.013183593749943, 65.513861395306719 ], [ -157.082080078124818, 65.485419012494177 ], [ -157.108154296875227, 65.47882721561902 ], [ -157.162963867187443, 65.473895574994074 ], [ -157.167163085937432, 65.472967840619248 ], [ -157.175659179687415, 65.468622137494094 ], [ -157.180346679687375, 65.46705963749416 ], [ -157.191040039062443, 65.465643621869063 ], [ -157.214477539062301, 65.467059637494131 ], [ -157.257983398437148, 65.478387762494194 ], [ -157.269409179687472, 65.477313543744046 ], [ -157.324951171874943, 65.462518621869179 ], [ -157.495654296875273, 65.487494207806506 ], [ -157.535693359375045, 65.479559637494106 ], [ -157.550219726562489, 65.480731512494202 ], [ -157.558227539062528, 65.485174871869148 ], [ -157.566088867187489, 65.492059637494123 ], [ -157.576538085937585, 65.498358465618978 ], [ -157.591845703125102, 65.501166082806606 ], [ -157.607421874999972, 65.497821356244103 ], [ -157.609057617187602, 65.48993561405652 ], [ -157.605468750000171, 65.480780340619077 ], [ -157.605517578124989, 65.47389557499416 ], [ -157.61662597656246, 65.466376043744205 ], [ -157.630737304687187, 65.461615301556719 ], [ -157.645874023437273, 65.459418035931691 ], [ -157.660083007812517, 65.459588934369123 ], [ -157.651538085937773, 65.438788153119077 ], [ -157.659106445312318, 65.429877020306606 ], [ -157.674804687500171, 65.42475006718152 ], [ -157.6905517578125, 65.415228582806662 ], [ -157.692553710937432, 65.399725653118978 ], [ -157.670898437499915, 65.393085028119032 ], [ -157.642871093750017, 65.38991119999416 ], [ -157.6259765625, 65.385077215619049 ], [ -157.642944335937557, 65.362127996869134 ], [ -157.648681640624943, 65.339129949994245 ], [ -157.641406249999847, 65.318475653119151 ], [ -157.619140625000057, 65.302557684369063 ], [ -157.636840820312216, 65.296258856244222 ], [ -157.653930664062699, 65.297919012494077 ], [ -157.670703124999761, 65.301825262494219 ], [ -157.687426757812631, 65.302557684369063 ], [ -157.707446289062517, 65.29547760624412 ], [ -157.711547851562273, 65.286444403119276 ], [ -157.702758789062528, 65.278631903119134 ], [ -157.656738281250085, 65.272406317181733 ], [ -157.623217773437773, 65.264105535931463 ], [ -157.598803710937688, 65.251044012494063 ], [ -157.598681640625045, 65.233661199994202 ], [ -157.612182617187472, 65.225848699994174 ], [ -157.645874023437557, 65.221136785931591 ], [ -157.660083007812517, 65.213812567181719 ], [ -157.669726562499847, 65.203802801556634 ], [ -157.668945312499801, 65.200628973431819 ], [ -157.661132812499943, 65.197821356244177 ], [ -157.649584960937631, 65.189276434369049 ], [ -157.647143554687574, 65.172064520306719 ], [ -157.6669921875, 65.110126043744131 ], [ -157.663134765624875, 65.088812567181705 ], [ -157.653198242187472, 65.064081121869123 ], [ -157.639038085937301, 65.043573309369208 ], [ -157.622558593750057, 65.035028387494052 ], [ -157.596118164062318, 65.041083074994106 ], [ -157.554003906250102, 65.071234442181549 ], [ -157.529785156250199, 65.082831121869106 ], [ -157.502807617187415, 65.087469793744106 ], [ -157.46123046874996, 65.090106512494074 ], [ -157.423022460937318, 65.084784246869219 ], [ -157.40625, 65.065741278119134 ], [ -157.389453125000216, 65.052850653119151 ], [ -157.359130859374972, 65.039618231244205 ], [ -157.345703124999716, 65.028338934369131 ], [ -157.379565429687261, 65.021429754681662 ], [ -157.445922851562443, 65.029071356244145 ], [ -157.484057617187517, 65.020624090619094 ], [ -157.536621093750142, 65.027606512494103 ], [ -157.549682617187756, 65.02472565311912 ], [ -157.564086914062557, 65.017108465619074 ], [ -157.575195312500057, 65.006366278119046 ], [ -157.578173828124903, 64.99408600468162 ], [ -157.569335937500028, 64.984320379681535 ], [ -157.532397460937403, 64.973749090619194 ], [ -157.51611328125, 64.966815496869089 ], [ -157.536914062499932, 64.961297918744108 ], [ -157.557128906249972, 64.953143621869131 ], [ -157.549609374999932, 64.950799871869194 ], [ -157.529785156250199, 64.939471746868989 ], [ -157.551757812500227, 64.925360418744077 ], [ -157.639648437499915, 64.904730535931606 ], [ -157.709960937500114, 64.874774481244103 ], [ -157.739794921875074, 64.866815496869137 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 8, "name": null, "rivernum": 648, "length": 156950.062 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -135.073168945312347, 60.93727448124416 ], [ -135.069018554687204, 60.946844793744035 ], [ -135.073486328125114, 60.95770905155662 ], [ -135.074511718749989, 60.967645574994087 ], [ -135.074707031249943, 60.981317449994165 ], [ -135.076904296875313, 60.997333074994145 ], [ -135.077197265625102, 61.016058660931606 ], [ -135.09423828125, 61.051776434369053 ], [ -135.124389648437557, 61.093085028119134 ], [ -135.155078124999847, 61.14459869999402 ], [ -135.216552734374858, 61.258807684369103 ], [ -135.243530273437671, 61.321478582806591 ], [ -135.242114257812375, 61.369891668744117 ], [ -135.234985351562443, 61.393133856244013 ] ], [ [ -134.915527343749687, 61.567889715619046 ], [ -134.946899414062273, 61.570135809369177 ], [ -135.061694335937602, 61.596747137494134 ], [ -135.090136718750244, 61.599066473431627 ], [ -135.117065429687557, 61.594110418744158 ], [ -135.139404296875, 61.577948309369212 ], [ -135.145922851562489, 61.568060614056826 ], [ -135.150390625000028, 61.556830145306648 ], [ -135.152514648437602, 61.545282293744258 ], [ -135.152148437500102, 61.534051824994229 ], [ -135.136230468749744, 61.489081121869049 ], [ -135.150268554687614, 61.48676178593152 ], [ -135.163940429687528, 61.482440496869017 ], [ -135.176635742187671, 61.476385809369049 ], [ -135.188037109375131, 61.469061590619098 ], [ -135.19279785156246, 61.464471746869215 ], [ -135.203417968750074, 61.449652410931449 ], [ -135.222045898437443, 61.43231842655667 ], [ -135.226684570312614, 61.425116278119013 ], [ -135.234301757812489, 61.403387762494134 ], [ -135.234863281250028, 61.393500067181748 ] ], [ [ -135.073242187499886, 60.937274481244245 ], [ -135.073168945312347, 60.93727448124416 ] ], [ [ -135.073168945312347, 60.93727448124416 ], [ -135.114746093750171, 60.91303131718157 ], [ -135.128417968749886, 60.902533270306456 ], [ -135.145141601562671, 60.872748114056648 ], [ -135.152636718749932, 60.868353582806606 ], [ -135.165527343750171, 60.863714910931584 ], [ -135.167724609375057, 60.852850653119027 ], [ -135.162597656249943, 60.831122137494063 ], [ -135.149536132812557, 60.810174871869194 ], [ -135.119799804687659, 60.796454168744184 ], [ -135.06633300781283, 60.779608465619198 ], [ -135.061401367187386, 60.774530340619116 ], [ -135.054736328124903, 60.765887762493961 ], [ -135.048999023437517, 60.756366278118982 ], [ -135.046508789062528, 60.748602606244198 ], [ -135.047045898437744, 60.726019598431584 ], [ -135.044189453125, 60.71564362186917 ], [ -135.035937499999932, 60.711371160931712 ], [ -135.030517578124915, 60.706903387494265 ], [ -135.027880859375273, 60.684930731244179 ], [ -135.025390624999915, 60.676581121869042 ], [ -135.017456054687386, 60.669989324994035 ], [ -134.984423828124875, 60.656683660931627 ], [ -134.949145507812432, 60.632147528118963 ], [ -134.936328125000131, 60.628729559369113 ], [ -134.884814453125131, 60.636737371869216 ], [ -134.799487304687574, 60.638251043743999 ], [ -134.687915039062261, 60.607123114056556 ], [ -134.630859374999716, 60.577826239056606 ], [ -134.610473632812614, 60.573358465619165 ], [ -134.567016601562528, 60.571478582806627 ], [ -134.545581054687204, 60.567328192181549 ], [ -134.507250976562801, 60.549139715619155 ], [ -134.494995117187614, 60.546820379681606 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": 785600.565 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 8, "name": "Pelly", "rivernum": 756, "length": 476107.014 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -130.80644531249996, 62.21478912968152 ], [ -130.809692382812671, 62.20958893436908 ], [ -130.817797851562631, 62.200799871869137 ], [ -130.821044921875171, 62.195819403119145 ], [ -130.824218750000028, 62.182318426556726 ], [ -130.823730468749773, 62.154242254681627 ], [ -130.82719726562479, 62.140936590619162 ], [ -130.834960937499972, 62.128924871869209 ], [ -130.862841796874875, 62.096747137493992 ], [ -130.876098632812557, 62.072943426556556 ], [ -130.90324707031246, 62.042792059369056 ], [ -130.922656249999676, 62.026068426556655 ], [ -130.945483398437375, 62.016302801556712 ], [ -131.028002929687517, 61.995379949993904 ], [ -131.061328124999818, 61.982684637494025 ], [ -131.080810546874829, 61.972772528119172 ], [ -131.098388671874886, 61.961127020306805 ], [ -131.113037109374829, 61.936102606244226 ], [ -131.105883789062517, 61.908075262494087 ], [ -131.08293457031246, 61.884637762494009 ], [ -131.049975585937403, 61.872992254681634 ], [ -131.053710937499886, 61.864569403119127 ], [ -131.059619140625017, 61.858343817181506 ], [ -131.067675781249818, 61.85431549686907 ], [ -131.07731933593729, 61.852484442181606 ], [ -131.072070312500216, 61.850775457806641 ], [ -131.062426757812545, 61.846307684369023 ], [ -131.05681152343746, 61.845038153119098 ], [ -131.087695312499932, 61.816961981244113 ], [ -131.098388671875142, 61.810248114056662 ], [ -131.113525390625114, 61.806708074993914 ], [ -131.128344726562716, 61.805926824994096 ], [ -131.142626953124875, 61.803290106244035 ], [ -131.1561279296875, 61.793817449994052 ], [ -131.167236328124886, 61.790545965619224 ], [ -131.200122070312403, 61.787860418744089 ], [ -131.215454101562472, 61.772479559369188 ], [ -131.234497070312358, 61.76727936405652 ], [ -131.371582031250256, 61.756708074994151 ], [ -131.396362304687472, 61.746039129681805 ], [ -131.424121093750159, 61.739374090619194 ], [ -131.536621093750028, 61.763128973431762 ], [ -131.624438476562261, 61.762884832806677 ], [ -131.642211914062329, 61.765204168744226 ], [ -131.656127929687273, 61.773065496869108 ], [ -131.666430664062688, 61.776312567181634 ], [ -131.732226562499761, 61.786078192181584 ], [ -131.883837890625045, 61.829535223431577 ], [ -131.956225585937489, 61.834247137494138 ], [ -131.988330078124932, 61.840765692181783 ], [ -132.017211914062671, 61.851336981244145 ], [ -132.065600585937261, 61.878485418744063 ], [ -132.075122070312773, 61.87933991093162 ], [ -132.091552734375057, 61.879217840619262 ], [ -132.155395507812614, 61.868963934369035 ], [ -132.170043945312301, 61.87299225468152 ], [ -132.178344726562159, 61.880072332806527 ], [ -132.194580078125057, 61.891180731244084 ], [ -132.204467773437386, 61.899969793744262 ], [ -132.215332031250114, 61.90441315311913 ], [ -132.244067382812545, 61.90228912968167 ], [ -132.256030273437688, 61.903021551556499 ], [ -132.267333984374972, 61.908636785931655 ], [ -132.273803710937557, 61.915350653119134 ], [ -132.283325195312358, 61.930365301556598 ], [ -132.28276367187496, 61.932074285931648 ], [ -132.283129882812574, 61.93756744999402 ], [ -132.285156249999687, 61.944769598431584 ], [ -132.289550781250085, 61.951483465619155 ], [ -132.296557617187517, 61.955267645306648 ], [ -132.315844726562375, 61.959051824994191 ], [ -132.355712890624744, 61.973016668744144 ], [ -132.454638671875074, 61.992450262494174 ], [ -132.489746093750085, 62.009344793743999 ], [ -132.503051757812472, 62.012884832806691 ], [ -132.516601562499659, 62.011908270306549 ], [ -132.531665039062631, 62.008490301556648 ], [ -132.546875, 62.008172918744137 ], [ -132.582690429687545, 62.03009674686912 ], [ -132.783813476562273, 62.073187567181613 ], [ -132.83037109374996, 62.098749090619151 ], [ -133.030029296874886, 62.15753815311912 ], [ -133.141162109375074, 62.171210028119141 ], [ -133.190307617187358, 62.18585846561907 ], [ -133.242309570312557, 62.191034246869016 ], [ -133.277832031250057, 62.208929754681769 ], [ -133.358398437500085, 62.21918366093157 ], [ -133.392138671875045, 62.228045965619174 ], [ -133.484985351562671, 62.268670965619215 ], [ -133.60539550781246, 62.286981512494108 ], [ -133.620288085937631, 62.297479559369137 ], [ -133.631713867187443, 62.310248114056868 ], [ -133.658203125, 62.322381903119272 ], [ -133.687792968750074, 62.331488348431499 ], [ -133.734912109375131, 62.340155340619091 ], [ -133.790087890624932, 62.360614324994103 ], [ -133.818286132812318, 62.362372137494205 ], [ -133.819384765625045, 62.375799871869049 ], [ -133.832031249999829, 62.386737371869089 ], [ -133.849853515625, 62.393915106244194 ], [ -133.866699218750057, 62.396502996869096 ], [ -133.859252929687244, 62.396502996869124 ], [ -133.917358398437443, 62.399115301556662 ], [ -133.934985351562659, 62.40392487186908 ], [ -133.973510742187557, 62.427801824994084 ], [ -133.985839843749943, 62.431219793743956 ], [ -134.062792968750074, 62.436786199994188 ], [ -134.101074218749915, 62.446893621869137 ], [ -134.132983398437318, 62.46478912968157 ], [ -134.126342773437557, 62.466083074994252 ], [ -134.113085937499818, 62.472235418744226 ], [ -134.17265625000033, 62.505389715619174 ], [ -134.21000976562496, 62.520941473431563 ], [ -134.27490234375, 62.535956121869141 ], [ -134.338012695312273, 62.573553778119184 ], [ -134.373779296874829, 62.582098699994155 ], [ -134.381396484375045, 62.583807684369127 ], [ -134.385375976562585, 62.587836004681613 ], [ -134.388476562500188, 62.592352606244191 ], [ -134.393676757812358, 62.595770574994148 ], [ -134.427783203125017, 62.602606512494219 ], [ -134.487963867187744, 62.624774481244138 ], [ -134.602416992187273, 62.638373114056677 ], [ -134.650146484375114, 62.650018621869165 ], [ -134.674804687500171, 62.670843817181677 ], [ -134.660156249999829, 62.670282293744229 ], [ -134.620239257812386, 62.678290106244219 ], [ -134.654296875000227, 62.71417877811912 ], [ -134.66862792968746, 62.725458074994222 ], [ -134.686328124999875, 62.731268621869134 ], [ -134.711474609375074, 62.736590887494067 ], [ -134.734008789062671, 62.744208074994241 ], [ -134.743701171875102, 62.756537176556506 ], [ -134.753540039062329, 62.754022528119087 ], [ -134.800048828124773, 62.752386785931513 ], [ -134.81572265624996, 62.756537176556648 ], [ -134.840332031250085, 62.768133856244006 ], [ -134.861206054687216, 62.763788153119087 ], [ -134.880786132812602, 62.753192449993911 ], [ -134.901367187499773, 62.745917059369063 ], [ -134.91313476562496, 62.747259832806527 ], [ -134.929858398437318, 62.757196356244023 ], [ -134.938891601562545, 62.759588934368999 ], [ -134.951586914062659, 62.756537176556506 ], [ -134.958544921875131, 62.749627996869009 ], [ -134.96354980468783, 62.742621160931655 ], [ -134.970263671874761, 62.739081121869084 ], [ -134.982055664062301, 62.740008856244089 ], [ -134.989184570312688, 62.744012762494172 ], [ -135.000366210937614, 62.756537176556648 ], [ -135.009643554687614, 62.763202215618996 ], [ -135.01884765624979, 62.76622955936908 ], [ -135.123583984374932, 62.773871160931691 ], [ -135.165283203125199, 62.772528387494134 ], [ -135.181762695312528, 62.76837799686912 ], [ -135.18132324218729, 62.759588934369113 ], [ -135.195434570312443, 62.756366278119131 ], [ -135.206665039062358, 62.760809637494312 ], [ -135.217285156250085, 62.768133856244035 ], [ -135.229736328124915, 62.773871160931577 ], [ -135.338671874999932, 62.781317449994226 ], [ -135.346435546874659, 62.780096746869141 ], [ -135.351684570312472, 62.775946356244184 ], [ -135.355395507812858, 62.763544012494151 ], [ -135.360034179687659, 62.759588934369084 ], [ -135.378784179687386, 62.75763580936929 ], [ -135.546997070312386, 62.78595612186907 ], [ -135.586596679687545, 62.786932684369042 ], [ -135.636962890624972, 62.779364324994148 ], [ -135.654296875000057, 62.780096746869233 ], [ -135.671557617187233, 62.784979559369098 ], [ -135.704760742187347, 62.798407293744241 ], [ -135.758837890624847, 62.808172918744155 ], [ -135.829223632812415, 62.839178778119127 ], [ -135.864062499999761, 62.846258856244141 ], [ -135.881274414062659, 62.847430731244032 ], [ -135.892700195312415, 62.851385809369035 ], [ -135.901782226562602, 62.858661199994145 ], [ -135.911865234375085, 62.869501043744094 ], [ -135.923217773437671, 62.879169012494032 ], [ -135.935913085937727, 62.884466864056705 ], [ -135.950927734375, 62.886542059369205 ], [ -136.020190429687574, 62.879828192181549 ], [ -136.038500976562347, 62.880316473431577 ], [ -136.09331054687496, 62.892401434369127 ], [ -136.14531249999979, 62.894110418744006 ], [ -136.173217773437671, 62.89081452030652 ], [ -136.197070312500017, 62.878729559369134 ], [ -136.216601562499989, 62.852411199994194 ], [ -136.212768554687358, 62.848407293744202 ], [ -136.207519531250284, 62.838495184369151 ], [ -136.202929687500216, 62.831903387494108 ], [ -136.234130859374716, 62.823993231244124 ], [ -136.268798828124829, 62.824237371869096 ], [ -136.303027343750244, 62.830194403119116 ], [ -136.358203125000188, 62.846454168744117 ], [ -136.387329101562585, 62.850604559369053 ], [ -136.418579101562528, 62.850897528119098 ], [ -136.45, 62.846258856244077 ], [ -136.408447265625057, 62.831903387494222 ], [ -136.429614257812545, 62.816229559369077 ], [ -136.462890625000284, 62.813299871869198 ], [ -136.486132812500244, 62.823187567181556 ], [ -136.477294921875, 62.846258856244077 ], [ -136.496142578124903, 62.852411199994194 ], [ -136.517456054687671, 62.852118231244035 ], [ -136.553027343750102, 62.846258856244077 ], [ -136.590258789062688, 62.846258856244141 ], [ -136.599731445312443, 62.844794012493999 ], [ -136.608447265625159, 62.84240143436908 ], [ -136.617553710937386, 62.841986395306591 ], [ -136.628173828124773, 62.846258856244141 ], [ -136.625659179687318, 62.849676824994155 ], [ -136.621264648437432, 62.858661199994231 ], [ -136.722656250000028, 62.865838934369279 ], [ -136.809082031250085, 62.876654364056613 ], [ -136.817919921875188, 62.881293035931598 ], [ -136.827026367187614, 62.879461981244191 ], [ -136.835742187499818, 62.875311590619091 ], [ -136.843798828124875, 62.872870184369098 ], [ -136.881103515624801, 62.871405340619098 ], [ -136.918017578125216, 62.873309637494167 ], [ -136.985156250000244, 62.86737702030667 ], [ -137.143237304687659, 62.861200262494144 ], [ -137.168749999999847, 62.855536199994198 ], [ -137.178344726562301, 62.858099676556662 ], [ -137.246215820312443, 62.841571356244188 ], [ -137.298144531250045, 62.843377996869194 ], [ -137.322680664062659, 62.838202215619013 ], [ -137.341186523437614, 62.822284246869188 ], [ -137.319946289062472, 62.801947332806584 ], [ -137.312060546875102, 62.789911199994165 ], [ -137.316894531249829, 62.771112371869101 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 7, "name": "White", "rivernum": 617, "length": 111630.551 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -140.005249023437614, 62.619256903119165 ], [ -140.017626953125216, 62.639105535931535 ], [ -140.032153320312602, 62.656317449994162 ], [ -140.043383789062545, 62.666205145306606 ], [ -140.045410156250199, 62.680682684369103 ], [ -140.040405273437557, 62.702460028119006 ], [ -140.033251953124818, 62.723407293744074 ], [ -140.029223632812574, 62.744647528119046 ], [ -140.035205078124903, 62.762567449994179 ], [ -140.045214843750244, 62.778436590619165 ], [ -140.055346679687403, 62.838568426556805 ], [ -140.071899414062472, 62.853949285931677 ], [ -140.079394531249761, 62.860223699994087 ], [ -140.087524414062472, 62.86554596561929 ], [ -140.09941406249996, 62.87184479374428 ], [ -140.110717773437244, 62.87897369999402 ], [ -140.119750976562671, 62.887713934369096 ], [ -140.130664062500045, 62.894403387494201 ], [ -140.143969726562119, 62.89508698124412 ], [ -140.157153320312375, 62.894964910931563 ], [ -140.168872070312631, 62.90045807499402 ], [ -140.178955078124972, 62.908563543744279 ], [ -140.184375000000159, 62.92145416874417 ], [ -140.186279296875142, 62.935614324994042 ], [ -140.203247070312102, 62.958758856244103 ], [ -140.225219726562472, 62.978387762494059 ], [ -140.247924804687329, 62.988836981244155 ], [ -140.268481445312602, 63.001532293744127 ], [ -140.270019531249829, 63.03639557499416 ], [ -140.283325195312329, 63.065741278119212 ], [ -140.298510742187318, 63.069598699994067 ], [ -140.312670898437176, 63.075628973431627 ], [ -140.318237304687301, 63.086859442181478 ], [ -140.320239257812489, 63.09955475468162 ], [ -140.32854003906229, 63.11054108280662 ], [ -140.340625000000188, 63.117938543744053 ], [ -140.348388671874943, 63.127508856244162 ], [ -140.352099609375045, 63.139471746868956 ], [ -140.359130859374829, 63.150018621869144 ], [ -140.343994140625199, 63.170038153119208 ], [ -140.319946289062784, 63.186102606244056 ], [ -140.279663085937813, 63.204461981244172 ], [ -140.231933593750028, 63.222113348431634 ], [ -140.195922851562244, 63.238055731244103 ], [ -140.136718749999829, 63.242499090619198 ], [ -140.109790039062602, 63.244574285931606 ], [ -140.08366699218746, 63.239325262494205 ], [ -140.058032226562574, 63.230975653119067 ], [ -140.031542968750131, 63.232977606244219 ], [ -140.011767578125159, 63.238055731244074 ], [ -139.956713867187375, 63.231805731244123 ], [ -139.878833007812631, 63.24701569218157 ], [ -139.848071289062347, 63.246893621868985 ], [ -139.823657226562545, 63.242059637493952 ], [ -139.800903320312699, 63.232733465619248 ], [ -139.7750244140625, 63.220160223431613 ], [ -139.747436523437329, 63.211493231244077 ], [ -139.707641601562273, 63.207391668744137 ], [ -139.668261718749875, 63.211053778119236 ], [ -139.580615234374761, 63.206317449994074 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": 559564.559 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 3, "name": "Teslin", "rivernum": 61, "length": 374323.753 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -134.913330078124915, 61.569696356244222 ], [ -134.885302734375273, 61.552191473431606 ], [ -134.783081054687585, 61.506610418744266 ], [ -134.765795898437318, 61.502460028119053 ], [ -134.730639648437318, 61.499872137494151 ], [ -134.703369140625085, 61.505072332806414 ], [ -134.689501953125216, 61.505438543744091 ], [ -134.67790527343746, 61.499335028118992 ], [ -134.686767578124915, 61.477899481244066 ], [ -134.67583007812496, 61.462225653119063 ], [ -134.657958984374801, 61.447943426556684 ], [ -134.645874023437585, 61.430731512494056 ], [ -134.646362304687472, 61.420721746869141 ], [ -134.655932617187347, 61.38104889530652 ], [ -134.6527099609375, 61.333514715618961 ], [ -134.636035156250188, 61.302362371869165 ], [ -134.605712890624829, 61.281268621869039 ], [ -134.561645507812386, 61.263788153119066 ], [ -134.510375976562528, 61.253851629681662 ], [ -134.496093750000085, 61.24791901249408 ], [ -134.378417968749829, 61.18024323124407 ], [ -134.361376953125017, 61.167596746869208 ], [ -134.348266601562756, 61.139764715619165 ], [ -134.335083007812585, 61.133661199993924 ], [ -134.320239257812631, 61.130316473431563 ], [ -134.30949707031229, 61.125604559369123 ], [ -134.298266601562489, 61.115106512494208 ], [ -134.288940429687244, 61.108172918744188 ], [ -134.264526367187671, 61.094305731244212 ], [ -134.261523437500216, 61.091131903119106 ], [ -134.260253906250057, 61.087176824994131 ], [ -134.259643554687642, 61.083514715619167 ], [ -134.258300781250341, 61.081244207806577 ], [ -134.251831054687642, 61.079046942181698 ], [ -134.236450195312699, 61.075873114056648 ], [ -134.231005859374847, 61.073797918744184 ], [ -134.079101562500171, 60.966424871869144 ], [ -133.986450195312585, 60.896918035931442 ], [ -133.897094726562585, 60.843939520306584 ], [ -133.797534179687602, 60.785907293743961 ], [ -133.703173828125159, 60.748480535931606 ], [ -133.688110351562329, 60.739569403118992 ], [ -133.637817382812415, 60.70148346561912 ], [ -133.597656250000114, 60.680047918744023 ], [ -133.56396484375, 60.649237371869177 ], [ -133.543627929687432, 60.636249090619224 ], [ -133.420336914062347, 60.578387762494117 ], [ -133.374560546874648, 60.545282293744094 ], [ -133.289111328124733, 60.467401434369108 ], [ -133.244873046874716, 60.448553778119113 ], [ -133.227343750000102, 60.44086334843157 ], [ -133.205200195312642, 60.428534246869077 ], [ -133.144409179687301, 60.38112213749416 ], [ -132.964965820312528, 60.26691315311917 ], [ -132.914111328124989, 60.229071356244155 ], [ -132.865527343749989, 60.200140692181819 ], [ -132.79973144531246, 60.180731512494255 ], [ -132.739501953125142, 60.160101629681577 ], [ -132.698852539062585, 60.135516668744131 ], [ -132.654956054687659, 60.114129949994073 ], [ -132.603808593749847, 60.095819403118981 ], [ -132.55705566406246, 60.074090887494215 ], [ -132.438403320312233, 60.025165106244025 ], [ -132.405273437499829, 59.993597723431655 ], [ -132.345214843749744, 59.911932684369113 ], [ -132.318286132812489, 59.869452215619283 ], [ -132.232299804687329, 59.792303778119091 ], [ -132.169799804687386, 59.664178778119279 ], [ -132.149169921874801, 59.629169012494053 ], [ -132.128173828124915, 59.617743231244212 ], [ -132.095385742187432, 59.607123114056485 ], [ -132.079272460937545, 59.592596746869226 ], [ -132.072509765624773, 59.57904694218162 ], [ -132.070556640625, 59.562762762494117 ], [ -132.078662109374761, 59.513251043744148 ], [ -132.077563476562517, 59.501410223431563 ], [ -132.064013671875045, 59.464618231244117 ], [ -132.056884765624829, 59.453802801556634 ], [ -132.031249999999744, 59.436395574994059 ], [ -131.98784179687479, 59.394598699994091 ], [ -131.972900390625, 59.388617254681613 ], [ -131.968554687500074, 59.385443426556563 ], [ -131.970629882812716, 59.37836334843167 ], [ -131.977294921874886, 59.371356512494053 ], [ -131.995898437499989, 59.364203192181591 ], [ -131.996459960937472, 59.354999090619039 ], [ -131.991992187500188, 59.344598699994187 ], [ -131.986572265625114, 59.337103582806719 ], [ -131.973632812499972, 59.326849676556776 ], [ -131.970336914062472, 59.321112371869063 ], [ -131.967407226562614, 59.291083074993999 ], [ -131.964355468749858, 59.282416082806606 ], [ -131.959277343749989, 59.278753973431591 ], [ -131.944995117187489, 59.272333074993952 ], [ -131.921875, 59.244208074994155 ], [ -131.911181640624847, 59.237860418744084 ], [ -131.897583007812244, 59.233172918744053 ], [ -131.853149414062358, 59.20368073124412 ], [ -131.842651367187386, 59.185565496869124 ], [ -131.836181640624886, 59.162665106244255 ], [ -131.827075195312489, 59.143085028119181 ], [ -131.808471679687528, 59.134784246869025 ], [ -131.68864746093729, 59.134784246869117 ], [ -131.627124023437489, 59.121893621869226 ], [ -131.513427734375114, 59.079046942181549 ], [ -131.454638671874761, 59.066522528119101 ], [ -131.264892578125057, 59.072381903119116 ], [ -131.208251953124858, 59.086981512494027 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 7, "name": "Donjek", "rivernum": 596, "length": 205578.27 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.0067138671875, 61.414496160931542 ], [ -139.033203125000227, 61.422674871869077 ], [ -139.060180664062358, 61.428338934369172 ], [ -139.08447265625, 61.442450262494226 ], [ -139.107910156250142, 61.45827057499411 ], [ -139.137744140624875, 61.464544989056641 ], [ -139.159179687500085, 61.476922918744123 ], [ -139.181152343750142, 61.50499909061908 ], [ -139.20390624999979, 61.51911041874417 ], [ -139.25895996093746, 61.539374090619113 ], [ -139.303271484374847, 61.556952215619006 ], [ -139.319335937499972, 61.578876043744188 ], [ -139.339038085937432, 61.596795965619002 ], [ -139.361083984374915, 61.609198309369127 ], [ -139.375488281249829, 61.63014557499411 ], [ -139.390747070312131, 61.688495184369096 ], [ -139.410327148437432, 61.729681707806648 ], [ -139.444628906250102, 61.751654364056563 ], [ -139.469116210937699, 61.784002996869148 ], [ -139.476318359374972, 61.802801824994091 ], [ -139.484912109374818, 61.81513092655662 ], [ -139.499389648437585, 61.835956121869131 ], [ -139.506591796875142, 61.854681707806741 ], [ -139.523974609375017, 61.881952215619073 ], [ -139.548632812500188, 61.902362371869039 ], [ -139.584887695312688, 61.907171942181598 ], [ -139.622070312500028, 61.905877996869037 ], [ -139.678100585937216, 61.899481512494091 ], [ -139.727587890625045, 61.893182684369158 ], [ -139.782519531249847, 61.917987371868968 ], [ -139.803833007812301, 61.922919012494091 ], [ -139.817016601562784, 61.934881903119113 ], [ -139.833496093750171, 61.942572332806506 ], [ -139.849536132812375, 61.947699285931606 ], [ -139.861132812499875, 61.959491278119316 ], [ -139.87724609374979, 61.972479559369013 ], [ -139.875048828124875, 61.991644598431776 ], [ -139.862670898437642, 62.007513739056733 ], [ -139.873339843750074, 62.022162176556783 ], [ -139.890429687499989, 62.033221746869117 ], [ -139.894531250000028, 62.050409246869222 ], [ -139.874267578124858, 62.068963934369144 ], [ -139.853393554687472, 62.085882879681527 ], [ -139.874560546874932, 62.102484442181535 ], [ -139.912475585937614, 62.108905340619202 ], [ -139.920410156250114, 62.13312409061907 ], [ -139.918457031250085, 62.158954168744216 ], [ -139.901245117187756, 62.179510809369148 ], [ -139.877001953125188, 62.191913153119209 ], [ -139.839648437500045, 62.23341705936916 ], [ -139.798388671874989, 62.247626043744191 ], [ -139.74418945312479, 62.265692449994056 ], [ -139.687133789062557, 62.273944403119167 ], [ -139.624755859375, 62.288763739056613 ], [ -139.561889648437671, 62.300848699994162 ], [ -139.501147460937574, 62.304803778119201 ], [ -139.47021484375, 62.31000397343167 ], [ -139.443481445312642, 62.320990301556499 ], [ -139.4375, 62.357855535931627 ], [ -139.452929687499818, 62.377508856243992 ], [ -139.467407226562443, 62.393377996869091 ], [ -139.494799804687233, 62.43532135624416 ], [ -139.491870117187517, 62.483221746869219 ], [ -139.481982421874676, 62.504950262494106 ], [ -139.483398437500085, 62.56159088749407 ], [ -139.511401367187489, 62.589667059369198 ], [ -139.547485351562614, 62.609686590619198 ], [ -139.591479492187375, 62.609686590619255 ], [ -139.643554687500028, 62.58966705936902 ], [ -139.707568359374847, 62.565619207806648 ], [ -139.75390625, 62.557440496868963 ], [ -139.789428710937614, 62.561712957806542 ], [ -139.81298828125, 62.571966864056833 ], [ -139.83183593749996, 62.589544989056606 ], [ -139.849291992187489, 62.608099676556705 ], [ -139.869628906249915, 62.621600653119266 ], [ -139.8992919921875, 62.620062567181442 ], [ -139.928955078125199, 62.612860418744134 ], [ -139.991748046875188, 62.613641668744179 ], [ -140.005249023437614, 62.619256903119165 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 3, "name": "Yukon", "rivernum": 53, "length": 2772086.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.766357421874886, 61.628729559369134 ], [ -164.779467773437631, 61.637079168743981 ], [ -164.813354492187585, 61.653631903119233 ], [ -164.868164062500114, 61.661688543744098 ], [ -164.890795898437517, 61.66803619999417 ], [ -164.903491210937489, 61.677118231243988 ], [ -164.892260742187659, 61.698358465619044 ], [ -164.80961914062479, 61.73078034061929 ], [ -164.786791992187545, 61.746039129681691 ], [ -164.792895507812545, 61.748846746869127 ], [ -164.807299804687659, 61.759711004681535 ], [ -164.690356445312403, 61.760199285931648 ], [ -164.628955078124932, 61.774969793744141 ], [ -164.590014648437716, 61.774847723431584 ], [ -164.561157226562642, 61.767157293744134 ], [ -164.564257812500102, 61.749090887494063 ], [ -164.587402343750171, 61.748602606243978 ], [ -164.625000000000199, 61.753485418743999 ], [ -164.653491210937659, 61.751971746869096 ], [ -164.648974609375131, 61.73236725468167 ], [ -164.625048828124989, 61.721991278119255 ], [ -164.592089843749847, 61.723895574994145 ], [ -164.4697265625, 61.747748114056542 ], [ -164.454394531250102, 61.755926824994106 ], [ -164.444458007812358, 61.764105535931726 ], [ -164.422729492187642, 61.775751043744101 ], [ -164.413134765624818, 61.783563543744137 ], [ -164.392993164062602, 61.795526434369016 ], [ -164.363940429687659, 61.801825262493985 ], [ -164.333740234375085, 61.800604559369155 ], [ -164.310424804687244, 61.790106512494184 ], [ -164.296435546875159, 61.781073309369035 ], [ -164.282153320312375, 61.777850653119231 ], [ -164.267578124999773, 61.778192449994208 ], [ -164.230834960937671, 61.784784246869016 ], [ -164.226733398437545, 61.790228582806513 ], [ -164.226928710937415, 61.797430731244226 ], [ -164.218261718750313, 61.807440496868999 ], [ -164.203857421875171, 61.812616278119059 ], [ -164.171630859374943, 61.812323309369155 ], [ -164.156176757812716, 61.814960028119017 ], [ -164.146728515624915, 61.820746160931606 ], [ -164.132617187499875, 61.835711981244131 ], [ -164.122070312500171, 61.841620184368992 ], [ -164.12236328124996, 61.856268621869063 ], [ -164.108642578124943, 61.872748114056662 ], [ -164.089477539062329, 61.887518621869212 ], [ -164.073608398437642, 61.896844793744116 ], [ -164.05126953125, 61.907049871869106 ], [ -164.038818359375, 61.910174871869103 ], [ -164.026416015625102, 61.909857489056712 ], [ -164.020385742187614, 61.905951239056577 ], [ -164.008300781250227, 61.89025299686908 ], [ -163.999145507812557, 61.883172918743981 ], [ -164.002441406250199, 61.877704168744074 ], [ -164.001513671875102, 61.871112371869039 ], [ -163.997607421874847, 61.863641668744151 ], [ -163.99169921875, 61.855829168744116 ], [ -163.997607421875159, 61.854315496869042 ], [ -164.006884765624875, 61.849920965619084 ], [ -164.012817382812756, 61.848456121869027 ], [ -163.989306640625045, 61.831854559369106 ], [ -163.947314453125159, 61.824774481244148 ], [ -163.907153320312432, 61.828680731244198 ], [ -163.889282226562528, 61.845038153119212 ], [ -163.882861328125017, 61.860541082806613 ], [ -163.867968750000244, 61.859442449994056 ], [ -163.850830078124943, 61.84943268436917 ], [ -163.837768554687329, 61.838495184369101 ], [ -163.836962890625188, 61.826776434369016 ], [ -163.853637695312614, 61.818426824994056 ], [ -163.889282226562528, 61.807440496869027 ], [ -163.827514648437415, 61.807440496869198 ], [ -163.815356445312489, 61.805243231244205 ], [ -163.793334960937671, 61.795477606243999 ], [ -163.782836914062472, 61.793158270306677 ], [ -163.767504882812574, 61.792181707806563 ], [ -163.756640625000045, 61.789252020306485 ], [ -163.738452148437659, 61.780145574994116 ], [ -163.741259765625017, 61.778753973431598 ], [ -163.7431640625, 61.773993231244141 ], [ -163.741943359375114, 61.768866278119098 ], [ -163.735351562499829, 61.766546942181776 ], [ -163.704345703124801, 61.766546942181691 ], [ -163.704345703124801, 61.773309637494251 ], [ -163.709765625000017, 61.776483465619094 ], [ -163.712646484374915, 61.779730535931542 ], [ -163.71484375, 61.783148504681591 ], [ -163.717944335937489, 61.786981512494123 ], [ -163.663330078125114, 61.781610418744137 ], [ -163.652465820312614, 61.783563543744052 ], [ -163.648193359374773, 61.792352606244172 ], [ -163.646289062500074, 61.813544012494091 ], [ -163.642871093750102, 61.821112371869106 ], [ -163.613574218750216, 61.832782293744025 ], [ -163.577685546875017, 61.829217840619187 ], [ -163.511889648437659, 61.814960028119074 ], [ -163.441772460937301, 61.813788153119184 ], [ -163.404711914062659, 61.81842682499402 ], [ -163.378784179687614, 61.831659246869151 ], [ -163.366943359375199, 61.834540106244006 ], [ -163.329516601562318, 61.827020574994194 ], [ -163.313281250000045, 61.827948309369056 ], [ -163.303027343750102, 61.83385651249403 ], [ -163.288134765625045, 61.848993231244101 ], [ -163.279785156249801, 61.855829168744172 ], [ -163.279785156250114, 61.862127996869162 ], [ -163.298999023437233, 61.869501043744222 ], [ -163.278320312499943, 61.875677801556598 ], [ -163.239550781250159, 61.878436590618989 ], [ -163.224536132812432, 61.889422918744103 ], [ -163.217651367187386, 61.904730535931662 ], [ -163.2196044921875, 61.917181707806577 ], [ -163.227416992187671, 61.927801824994162 ], [ -163.276367187500142, 61.96576569218162 ], [ -163.286010742187443, 61.978778387494238 ], [ -163.299926757812329, 62.021551824994283 ], [ -163.309375000000102, 62.043963934369145 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.208911132812602, 65.178412176556677 ], [ -152.262988281250216, 65.171087957806549 ], [ -152.348876953125284, 65.151727606244023 ], [ -152.376391601562545, 65.141302801556591 ], [ -152.42351074218783, 65.115301824994049 ], [ -152.451953125000188, 65.110126043744046 ], [ -152.485351562499858, 65.114447332806705 ], [ -152.575439453124972, 65.144891668744023 ], [ -152.653491210937489, 65.145770574994103 ], [ -152.69475097656246, 65.151239324994179 ], [ -152.712646484375114, 65.168817449994066 ], [ -152.716479492187176, 65.176874090619251 ], [ -152.743334960937659, 65.196405340619108 ], [ -152.760131835937415, 65.205511785931691 ], [ -152.78129882812496, 65.20624420780662 ], [ -152.822509765625114, 65.200140692181606 ], [ -152.910644531249801, 65.200140692181634 ], [ -152.962573242187403, 65.181341864056719 ], [ -152.980151367187545, 65.178412176556492 ], [ -153.082397460937557, 65.186542059369131 ], [ -153.19951171874996, 65.148065496869179 ], [ -153.212280273437472, 65.13434479374412 ], [ -153.226000976562489, 65.109686590619091 ], [ -153.258666992187244, 65.102972723431762 ], [ -153.482910156250114, 65.117010809369049 ], [ -153.497607421875045, 65.120184637494035 ], [ -153.53142089843746, 65.134295965619103 ], [ -153.548706054687472, 65.137469793744089 ], [ -153.564453124999829, 65.135077215619205 ], [ -153.610766601562375, 65.117010809369191 ], [ -153.685839843750102, 65.103949285931577 ], [ -153.727343750000017, 65.085565496869236 ], [ -153.754516601562671, 65.080682684369108 ], [ -153.780566406250045, 65.071356512494148 ], [ -153.839843749999972, 65.067450262494063 ], [ -153.999023437500085, 65.035223699994177 ], [ -154.151367187499943, 64.994086004681677 ], [ -154.313403320312261, 64.922796942181691 ], [ -154.370483398437727, 64.918329168744108 ], [ -154.38688964843746, 64.922308660931662 ], [ -154.416748046875142, 64.934759832806662 ], [ -154.432543945312261, 64.939471746869103 ], [ -154.448413085937574, 64.94020416874416 ], [ -154.545166015624886, 64.923846746869089 ], [ -154.578857421874972, 64.935077215619089 ], [ -154.669726562500131, 64.939813543744023 ], [ -154.821411132812614, 64.908710028119131 ], [ -154.934936523437557, 64.89569733280662 ], [ -155.022338867187642, 64.87892487186916 ], [ -155.098681640624989, 64.877069403119165 ], [ -155.193164062499676, 64.860467840619208 ], [ -155.282836914062671, 64.832391668744137 ], [ -155.381469726562557, 64.789618231244148 ], [ -155.491870117187659, 64.750360418744066 ], [ -155.546020507812784, 64.74713776249412 ], [ -155.720458984374659, 64.767523504681762 ], [ -155.793872070312659, 64.760687567181648 ], [ -155.937060546875131, 64.724920965619063 ], [ -156.007861328124989, 64.719745184369089 ], [ -156.172973632812671, 64.725897528119148 ], [ -156.206225585937602, 64.72243073124406 ], [ -156.328295898437688, 64.68305084843162 ], [ -156.414916992187386, 64.665301824994245 ], [ -156.486938476562415, 64.67677643436906 ], [ -156.550048828125057, 64.66681549686902 ], [ -156.622558593749716, 64.663104559369273 ], [ -156.694335937499773, 64.643988348431691 ], [ -156.772875976562545, 64.64398834843152 ], [ -156.782885742187517, 64.653387762494233 ], [ -156.776782226562489, 64.674676824994137 ], [ -156.755175781249761, 64.712909246869202 ], [ -156.787475585937557, 64.728045965619188 ], [ -156.828369140624886, 64.740252996869145 ], [ -156.870483398437443, 64.744818426556662 ], [ -156.937548828125102, 64.729681707806634 ], [ -156.971191406250057, 64.735126043744046 ], [ -157.001464843749886, 64.749090887494177 ], [ -157.022705078124972, 64.767523504681677 ], [ -157.027514648437261, 64.778143621869233 ], [ -157.028686523437642, 64.787909246869006 ], [ -157.031982421874972, 64.797967840619123 ], [ -157.043139648437261, 64.809149481244248 ], [ -157.057495117187614, 64.814886785931634 ], [ -157.1148681640625, 64.822772528119103 ], [ -157.242846679687744, 64.80333893436908 ], [ -157.28337402343746, 64.809149481244248 ], [ -157.310424804687472, 64.819159246869162 ], [ -157.33366699218746, 64.82521393436906 ], [ -157.35734863281229, 64.823993231244131 ], [ -157.385791015624932, 64.812567449994177 ], [ -157.416381835937557, 64.806341864056634 ], [ -157.445239257812318, 64.816278387494151 ], [ -157.49565429687496, 64.850116278119202 ], [ -157.530883789062443, 64.862372137494106 ], [ -157.716552734375085, 64.865668035931563 ], [ -157.796630859374943, 64.87518952030662 ], [ -157.868090820312489, 64.868426824994117 ], [ -157.890747070312614, 64.864447332806591 ], [ -157.913378906250017, 64.857538153119094 ], [ -157.932373046874886, 64.835882879681577 ], [ -157.962524414062671, 64.801385809369023 ], [ -157.983276367187472, 64.782782293744162 ], [ -158.051513671875227, 64.744989324994094 ], [ -158.133789062500171, 64.707391668744137 ], [ -158.1484375, 64.696161199993981 ], [ -158.16557617187496, 64.686102606244106 ], [ -158.252685546874943, 64.671747137494222 ], [ -158.277148437499818, 64.660419012494188 ], [ -158.294067382812557, 64.64069244999412 ], [ -158.3165283203125, 64.598993231244108 ], [ -158.330981445312432, 64.579217840619066 ], [ -158.347656249999858, 64.564642645306648 ], [ -158.367236328125244, 64.55683014530662 ], [ -158.409106445312148, 64.549627996869191 ], [ -158.428955078124915, 64.541815496869091 ], [ -158.437255859375028, 64.535272528119165 ], [ -158.468261718749773, 64.499579168744205 ], [ -158.483886718750085, 64.464862371869145 ], [ -158.504394531249915, 64.441278387494179 ], [ -158.529785156249886, 64.427313543744177 ], [ -158.587524414062443, 64.407660223431762 ], [ -158.608520507812557, 64.397333074994123 ], [ -158.640063476562659, 64.377069403119066 ], [ -158.694458007812443, 64.360785223431705 ], [ -158.706225585937659, 64.354803778119134 ], [ -158.714648437500102, 64.345770574994049 ], [ -158.717944335937716, 64.332586981243963 ], [ -158.715869140624989, 64.32062409061912 ], [ -158.689257812500102, 64.270941473431577 ], [ -158.683349609374943, 64.262884832806719 ], [ -158.674609374999989, 64.255072332806677 ], [ -158.658813476562244, 64.244501043744194 ], [ -158.651245117187358, 64.237909246869151 ], [ -158.647583007812727, 64.230829168744037 ], [ -158.633544921874886, 64.21283600468179 ], [ -158.634033203125171, 64.195624090619106 ], [ -158.643554687499829, 64.17872955936916 ], [ -158.740283203125045, 64.058710028119151 ], [ -158.744555664062602, 64.050726629681563 ], [ -158.751025390624903, 64.03209869999408 ], [ -158.764331054687489, 64.017157293744191 ], [ -158.786743164062642, 64.008075262494131 ], [ -158.881958007812557, 63.985296942181627 ], [ -158.929003906250045, 63.968036199994188 ], [ -158.937182617187517, 63.955096746869131 ], [ -158.9515380859375, 63.945990301556762 ], [ -159.009692382812489, 63.924872137494084 ], [ -159.023193359374943, 63.916205145306613 ], [ -159.029541015624915, 63.906439520306662 ], [ -159.155444335937716, 63.876092840619094 ], [ -159.185839843750159, 63.872919012493959 ], [ -159.195117187499847, 63.870306707806563 ], [ -159.209643554687631, 63.857367254681684 ], [ -159.210620117187517, 63.839178778119148 ], [ -159.207446289062545, 63.81891510624417 ], [ -159.209155273437659, 63.80023834843152 ], [ -159.213183593749932, 63.792181707806655 ], [ -159.218383789062273, 63.785101629681762 ], [ -159.224731445312557, 63.779413153119094 ], [ -159.231982421875273, 63.775506903119073 ], [ -159.29631347656246, 63.763251043744091 ], [ -159.316333007812318, 63.756293035931641 ], [ -159.334399414062432, 63.745965887494066 ], [ -159.349731445312671, 63.731024481244091 ], [ -159.359130859375, 63.714960028119123 ], [ -159.374072265625188, 63.663641668744042 ], [ -159.381347656249972, 63.64918854374406 ], [ -159.391235351562585, 63.63690827030667 ], [ -159.444506835937716, 63.59516022343152 ], [ -159.467211914062659, 63.584662176556549 ], [ -159.472949218750045, 63.578485418744116 ], [ -159.476245117187375, 63.57147858280662 ], [ -159.482104492187432, 63.547870184369074 ], [ -159.494384765625, 63.522821356244208 ], [ -159.496459960937443, 63.514276434369116 ], [ -159.480883789062545, 63.489520574994174 ], [ -159.447558593750074, 63.464422918744091 ], [ -159.422656250000045, 63.437689520306606 ], [ -159.432495117187557, 63.408075262494116 ], [ -159.448852539062472, 63.399286199994137 ], [ -159.510668945312403, 63.388251043744177 ], [ -159.600146484374932, 63.354608465619052 ], [ -159.606494140625216, 63.350213934369009 ], [ -159.612109374999989, 63.341009832806748 ], [ -159.611987304687347, 63.332342840619297 ], [ -159.610034179687545, 63.323553778119205 ], [ -159.610351562500028, 63.314032293744148 ], [ -159.621582031249858, 63.30219147343162 ], [ -159.642333984374659, 63.294623114056613 ], [ -159.682666015625159, 63.285345770306641 ], [ -159.698608398437358, 63.276800848431662 ], [ -159.71135253906246, 63.264960028119248 ], [ -159.720996093749761, 63.250360418744222 ], [ -159.727465820312744, 63.233417059369032 ], [ -159.729052734374932, 63.214911199994155 ], [ -159.725878906250244, 63.181415106243968 ], [ -159.732348632812545, 63.16412994999412 ], [ -159.752734374999761, 63.136297918744219 ], [ -159.761035156249875, 63.121210028119194 ], [ -159.764404296875057, 63.105340887494094 ], [ -159.760375976562472, 63.07721588749412 ], [ -159.761474609375028, 63.067987371869023 ], [ -159.766284179687318, 63.059100653119181 ], [ -159.773852539062517, 63.051532293744032 ], [ -159.782836914062727, 63.045355535931591 ], [ -159.791870117187472, 63.040716864056662 ], [ -159.8125, 63.034002996869148 ], [ -159.903198242187671, 63.017401434369113 ], [ -159.949584960937727, 63.000189520306542 ], [ -159.97246093749979, 62.986835028119231 ], [ -160.003955078125102, 62.962347723431527 ], [ -160.029711914062716, 62.933417059368992 ], [ -160.046801757812261, 62.899676824994181 ], [ -160.052416992187318, 62.860296942181655 ], [ -160.061157226562273, 62.856390692181783 ], [ -160.066943359375102, 62.85053131718157 ], [ -160.070361328125074, 62.842962957806478 ], [ -160.071948242187261, 62.833612371869222 ], [ -160.070605468750045, 62.82213776249408 ], [ -160.061083984374733, 62.80329010624417 ], [ -160.058398437500017, 62.793329168744179 ], [ -160.063842773437642, 62.775824285931598 ], [ -160.090454101562472, 62.74596588749408 ], [ -160.095385742187432, 62.727850653119141 ], [ -160.132739257812773, 62.726825262493982 ], [ -160.144409179687443, 62.722919012494167 ], [ -160.153808593750085, 62.716327215618982 ], [ -160.16264648437496, 62.707464910931492 ], [ -160.170214843749818, 62.697528387494145 ], [ -160.176074218749875, 62.687518621869117 ], [ -160.179565429687386, 62.678534246869155 ], [ -160.181274414062528, 62.669378973431627 ], [ -160.181079101562347, 62.659857489056705 ], [ -160.178833007812443, 62.650018621869194 ], [ -160.164306640624972, 62.613299871869117 ], [ -160.163696289062386, 62.606073309369137 ], [ -160.173144531249847, 62.558368231244089 ], [ -160.17041015625, 62.548651434369162 ], [ -160.159594726562318, 62.539740301556712 ], [ -160.129516601562329, 62.523065496869101 ], [ -160.120849609374915, 62.516131903119089 ], [ -160.116699218750028, 62.510565496869233 ], [ -160.110644531249818, 62.497870184369212 ], [ -160.107177734374716, 62.492621160931698 ], [ -160.103442382812574, 62.489520574993989 ], [ -160.0775146484375, 62.475775457806513 ], [ -160.053222656250085, 62.466742254681591 ], [ -160.035766601562614, 62.457709051556677 ], [ -160.020922851562659, 62.44574616093162 ], [ -160.017089843749943, 62.440863348431662 ], [ -160.008349609374989, 62.424627996869006 ], [ -159.995117187500227, 62.410419012493968 ], [ -159.991625976562432, 62.404486395306648 ], [ -159.98674316406229, 62.39332916874416 ], [ -159.967333984374989, 62.368426824994053 ], [ -159.963623046874943, 62.358587957806627 ], [ -159.962939453125131, 62.320868231244084 ], [ -159.964160156249989, 62.313421942181606 ], [ -159.971118164062261, 62.293475653119252 ], [ -159.972656249999972, 62.286566473431535 ], [ -159.966308593749972, 62.262152410931741 ], [ -159.945556640625171, 62.249945379681598 ], [ -159.786181640624875, 62.23615143436917 ], [ -159.751513671874875, 62.227411199994066 ], [ -159.724121093749972, 62.205438543744236 ], [ -159.722705078124932, 62.174823309369081 ], [ -159.7381591796875, 62.142645574994219 ], [ -159.761401367187489, 62.116327215619101 ], [ -159.801684570312545, 62.09337799686908 ], [ -159.846362304687489, 62.084588934369187 ], [ -159.960937499999886, 62.077508856244179 ], [ -159.982104492187432, 62.071966864056563 ], [ -160.001879882812659, 62.063055731244084 ], [ -160.019409179687358, 62.049994207806677 ], [ -160.030932617187261, 62.036200262494155 ], [ -160.057177734374818, 61.98932526249417 ], [ -160.086108398437432, 61.959344793744123 ], [ -160.123168945312358, 61.942987371869222 ], [ -160.164306640624972, 61.935614324994056 ], [ -160.405322265624932, 61.922430731244091 ], [ -160.528320312500057, 61.921820379681449 ], [ -160.61186523437533, 61.935419012494016 ], [ -160.714892578125102, 61.942450262494148 ], [ -160.953906250000102, 61.937689520306549 ], [ -160.974487304687443, 61.93385651249401 ], [ -161.053759765624847, 61.905877996869179 ], [ -161.124511718750227, 61.88996002811912 ], [ -161.143188476562557, 61.881048895306641 ], [ -161.152880859375017, 61.878363348431677 ], [ -161.191894531250057, 61.877704168744074 ], [ -161.292041015624932, 61.853045965619117 ], [ -161.316577148437659, 61.84308502811907 ], [ -161.345141601562631, 61.825506903119091 ], [ -161.359252929687329, 61.805926824994096 ], [ -161.340209960937358, 61.789862371869184 ], [ -161.3389892578125, 61.784491278119084 ], [ -161.327197265624875, 61.77101471561916 ], [ -161.319580078124886, 61.757586981244231 ], [ -161.319140625000045, 61.743524481244187 ], [ -161.328662109375045, 61.728461004681677 ], [ -161.393432617187727, 61.671747137493917 ], [ -161.428271484375159, 61.649237371869106 ], [ -161.467578124999989, 61.641913153119184 ], [ -161.551391601562329, 61.636493231244181 ], [ -161.632324218749744, 61.620428778119155 ], [ -161.722705078124932, 61.620965887494108 ], [ -161.803588867187557, 61.608099676556598 ], [ -161.8231201171875, 61.602240301556527 ], [ -161.825561523437585, 61.601019598431563 ], [ -161.876879882812602, 61.576044012494087 ], [ -161.914306640624858, 61.565008856244042 ], [ -161.9520263671875, 61.567328192181535 ], [ -161.975219726562699, 61.586127020306542 ], [ -161.969360351562671, 61.624579168744056 ], [ -161.96147460937496, 61.6404483093689 ], [ -161.956665039062358, 61.655462957806677 ], [ -161.957519531249943, 61.670233465619162 ], [ -161.96660156249979, 61.685614324994241 ], [ -162.049926757812472, 61.766546942181634 ], [ -162.120288085937489, 61.819598699994117 ], [ -162.137084960937557, 61.836297918744108 ], [ -162.150512695312472, 61.856561590619229 ], [ -162.16606445312496, 61.892840887494152 ], [ -162.176025390625085, 61.909198309369053 ], [ -162.190795898437557, 61.922723699994023 ], [ -162.209399414062688, 61.931586004681563 ], [ -162.229907226562517, 61.936542059369089 ], [ -162.271655273437773, 61.938421942181549 ], [ -162.384326171874847, 61.919940496869167 ], [ -162.406127929687386, 61.919208074994138 ], [ -162.425219726562489, 61.92492096561913 ], [ -162.437426757812233, 61.941351629681741 ], [ -162.443725585937415, 61.979364324994158 ], [ -162.449877929687545, 61.996405340619262 ], [ -162.464843749999829, 62.009833074994141 ], [ -162.484423828125216, 62.016546942181535 ], [ -162.5057373046875, 62.018011785931478 ], [ -162.527026367187716, 62.015326239056513 ], [ -162.656494140624858, 61.97365143436911 ], [ -162.665332031250045, 61.966742254681726 ], [ -162.671557617187403, 61.957464910931726 ], [ -162.683032226562489, 61.920965887494148 ], [ -162.689990234375102, 61.912176824994027 ], [ -162.702270507812329, 61.906317449994162 ], [ -162.730224609375028, 61.903436590619158 ], [ -162.754077148437318, 61.909247137494155 ], [ -162.775878906249858, 61.92121002811912 ], [ -162.797778320312347, 61.936786199994209 ], [ -162.823852539062443, 61.949774481244248 ], [ -162.851562499999829, 61.953436590619091 ], [ -162.879443359375017, 61.948675848431691 ], [ -162.906176757812517, 61.936590887494077 ], [ -162.94938964843729, 61.91090729374416 ], [ -162.972412109375028, 61.902411199994084 ], [ -162.998535156249943, 61.899847723431677 ], [ -163.063354492187386, 61.911932684369262 ], [ -163.130249023437642, 61.916034246869032 ], [ -163.154711914062517, 61.922137762494017 ], [ -163.176513671875057, 61.93053619999403 ], [ -163.195922851562358, 61.942694403119205 ], [ -163.235961914062443, 61.984930731244091 ], [ -163.241699218750142, 61.994647528119081 ], [ -163.250610351562557, 62.019794012494152 ], [ -163.257006835937347, 62.030633856244194 ], [ -163.268188476562671, 62.03917877811908 ], [ -163.286303710937545, 62.044623114056577 ], [ -163.344531249999733, 62.045477606244134 ], [ -163.406372070312386, 62.057391668744167 ], [ -163.469360351562386, 62.082294012494103 ], [ -163.482788085937585, 62.084662176556641 ], [ -163.494506835937699, 62.084344793743988 ], [ -163.556323242187602, 62.075751043744077 ], [ -163.698779296874847, 62.086200262494181 ], [ -163.849291992187233, 62.097479559369106 ], [ -163.879077148437716, 62.108172918744089 ], [ -163.905200195312631, 62.127948309368982 ], [ -163.964892578124989, 62.184271551556662 ], [ -163.974365234374858, 62.196405340619144 ], [ -163.977709960937602, 62.209906317181535 ], [ -163.9713134765625, 62.224627996869067 ], [ -163.957934570312403, 62.237616278119191 ], [ -163.943969726562699, 62.248553778119003 ], [ -163.931445312499847, 62.26076080936911 ], [ -163.92253417968746, 62.27770416874413 ], [ -163.910034179687329, 62.312445379681634 ], [ -163.900390625, 62.32643463749411 ], [ -163.869555664062432, 62.351629949994084 ], [ -163.858764648437756, 62.363544012494124 ], [ -163.852905273437386, 62.378045965619123 ], [ -163.853198242187489, 62.434198309369023 ], [ -163.850463867187329, 62.455926824994286 ], [ -163.851562500000171, 62.462836004681662 ], [ -163.86137695312496, 62.475946356244087 ], [ -163.909106445312233, 62.504217840619226 ], [ -163.920825195312631, 62.518133856244098 ], [ -163.9375, 62.549676824994208 ], [ -163.948413085937716, 62.563836981244023 ], [ -163.966235351562489, 62.576434637494124 ], [ -164.028491210937574, 62.600165106244077 ], [ -164.057910156250102, 62.621283270306584 ], [ -164.106689453124829, 62.675726629681662 ], [ -164.135253906250114, 62.698309637494049 ], [ -164.156176757812375, 62.707342840619049 ], [ -164.178100585937557, 62.712347723431506 ], [ -164.387084960937443, 62.730902410931577 ], [ -164.452807617187602, 62.748407293744073 ], [ -164.481689453125057, 62.745306707806648 ] ], [ [ -152.047851562500227, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.020556640624932, 65.172723699994179 ], [ -151.945117187499903, 65.209784246869148 ], [ -151.919970703124932, 65.216180731244151 ], [ -151.765014648437528, 65.233832098431634 ], [ -151.738891601562301, 65.243768621869066 ], [ -151.713378906250341, 65.249701239056506 ], [ -151.689257812500017, 65.244940496869191 ], [ -151.665283203125085, 65.236151434369106 ], [ -151.640014648437443, 65.230096746869194 ], [ -151.509155273437329, 65.231952215619216 ], [ -151.488647460937813, 65.235174871869077 ], [ -151.46831054687479, 65.242059637494165 ], [ -151.453002929687585, 65.249139715619108 ], [ -151.438842773437443, 65.258124090619219 ], [ -151.426147460937443, 65.270086981244219 ], [ -151.420410156250057, 65.272894598431648 ], [ -151.407031249999932, 65.276239324994208 ], [ -151.367919921874943, 65.279974676556535 ], [ -151.356127929687347, 65.284125067181563 ], [ -151.334228515625171, 65.297796942181606 ], [ -151.322436523437261, 65.302679754681677 ], [ -151.310302734375057, 65.304999090619063 ], [ -151.298388671875102, 65.305487371869035 ], [ -151.286743164062557, 65.304022528119148 ], [ -151.27495117187496, 65.300409246869179 ], [ -151.254272460937329, 65.290790106244145 ], [ -151.243896484375085, 65.287420965619077 ], [ -151.230957031249829, 65.286078192181634 ], [ -151.185546874999943, 65.291205145306748 ], [ -151.150317382812801, 65.305194403119046 ], [ -151.081054687499716, 65.348822332806705 ], [ -151.039550781249773, 65.368768621869165 ], [ -150.921435546875074, 65.405096746869077 ], [ -150.802368164062244, 65.439032293744162 ], [ -150.738403320312358, 65.461493231244191 ], [ -150.668383789062545, 65.495379949994074 ], [ -150.660693359374733, 65.497992254681733 ], [ -150.565966796874761, 65.504217840619219 ], [ -150.409838867187602, 65.514520574994009 ], [ -150.309326171875142, 65.515326239056662 ], [ -150.212280273437443, 65.527606512494103 ], [ -150.185229492187432, 65.540838934369063 ], [ -150.177001953125171, 65.562933660931535 ], [ -150.176025390624943, 65.589789129681748 ], [ -150.170776367187187, 65.617499090619262 ], [ -150.141284179687432, 65.654974676556634 ], [ -150.096240234375188, 65.678290106244063 ], [ -150.045410156250114, 65.686712957806662 ], [ -149.998413085937443, 65.679315496869165 ], [ -149.924975585937688, 65.642889715618935 ], [ -149.896362304687244, 65.638373114056677 ], [ -149.874145507812614, 65.640570379681577 ], [ -149.862304687499886, 65.64772369999416 ], [ -149.818041992187375, 65.712591864056677 ], [ -149.801879882812585, 65.755316473431563 ], [ -149.796069335937347, 65.776874090619103 ], [ -149.811401367187585, 65.793719793744089 ], [ -149.844604492187415, 65.790106512494276 ], [ -149.905688476562375, 65.769720770306634 ], [ -150.023193359374829, 65.764593817181648 ], [ -150.089477539062443, 65.774237371869091 ], [ -150.127124023437602, 65.79982330936906 ], [ -150.08598632812496, 65.818622137494103 ], [ -150.030200195312545, 65.833514715619089 ], [ -149.920410156250028, 65.880194403119148 ], [ -149.894287109374829, 65.890326239056691 ], [ -149.878173828124858, 65.900751043744123 ], [ -149.865722656249829, 65.911395574994231 ], [ -149.851440429687329, 65.920184637494145 ], [ -149.829711914062329, 65.924920965619336 ], [ -149.786987304687841, 65.920843817181549 ], [ -149.70361328125, 65.89362213749412 ], [ -149.660693359375045, 65.887518621869106 ], [ -149.623095703124704, 65.893866278119205 ], [ -149.549365234375159, 65.916083074994148 ], [ -149.511108398437443, 65.915228582806591 ], [ -149.434570312499886, 65.885931707806662 ], [ -149.40666503906229, 65.879095770306662 ], [ -149.355151367187432, 65.874579168744049 ], [ -149.300341796874875, 65.879095770306662 ], [ -149.254809570312375, 65.900580145306634 ], [ -149.231201171875085, 65.94684479374412 ], [ -149.236816406249829, 65.970038153119233 ], [ -149.23503417968746, 65.982440496869089 ], [ -149.221240234374932, 65.987811590619103 ], [ -149.205493164062602, 65.98993561405662 ], [ -149.174194335937472, 65.99933502811912 ], [ -149.159179687500028, 66.001483465619074 ], [ -149.145507812500171, 66.005316473431606 ], [ -149.133471679687574, 66.013617254681577 ], [ -149.119873046874886, 66.020819403119148 ], [ -149.101440429687159, 66.021918035931762 ], [ -149.096069335937415, 66.01947662968162 ], [ -149.08732910156246, 66.011004949994131 ], [ -149.080371093750188, 66.00763580936902 ], [ -149.057128906249886, 66.002142645306648 ], [ -149.045410156250114, 66.000921942181591 ], [ -149.032592773437472, 66.001483465619131 ], [ -149.038745117187602, 66.007635809369106 ], [ -149.020996093749716, 66.007440496869208 ], [ -149.005615234375, 66.008978582806591 ], [ -148.993334960937432, 66.015252996869151 ], [ -148.984741210937528, 66.029413153119094 ], [ -149.016601562499829, 66.055926824994103 ], [ -149.020751953125057, 66.069891668744077 ], [ -148.995288085937233, 66.075946356244216 ], [ -148.941650390625114, 66.067499090619179 ], [ -148.916992187500057, 66.066424871869103 ], [ -148.888549804687727, 66.075946356244074 ], [ -148.871826171874829, 66.085760809369177 ], [ -148.846557617187841, 66.097040106243995 ], [ -148.823486328124972, 66.097113348431677 ], [ -148.803027343749932, 66.053729559369216 ], [ -148.779418945312614, 66.049627996869077 ], [ -148.753833007812489, 66.056708074994077 ], [ -148.73771972656283, 66.070379949994077 ], [ -148.736450195312841, 66.082220770306577 ], [ -148.740771484375188, 66.091864324994134 ], [ -148.7427978515625, 66.101752020306691 ], [ -148.734301757812545, 66.114447332806634 ], [ -148.719360351562329, 66.120721746869222 ], [ -148.697192382812489, 66.123651434369179 ], [ -148.612353515624818, 66.125067449994162 ], [ -148.593188476562489, 66.129217840619177 ], [ -148.573242187500142, 66.138617254681535 ], [ -148.562988281249915, 66.146918035931577 ], [ -148.556933593749989, 66.155340887494191 ], [ -148.552172851562517, 66.16400787968152 ], [ -148.545947265624847, 66.172723699994194 ], [ -148.523803710937415, 66.189325262494151 ], [ -148.485839843750085, 66.207538153119145 ], [ -148.442919921874761, 66.217474676556719 ], [ -148.406005859374886, 66.224676824994148 ], [ -148.330322265624915, 66.210711981244231 ], [ -148.292114257812614, 66.221210028119089 ], [ -148.282470703124972, 66.228290106244202 ], [ -148.261645507812631, 66.251581121869094 ], [ -148.245849609374829, 66.259295965619273 ], [ -148.226196289062273, 66.25954010624416 ], [ -148.134033203125028, 66.245794989056591 ], [ -148.113940429687631, 66.24848053593152 ], [ -148.099853515624659, 66.254584051556748 ], [ -148.073852539062727, 66.270086981244049 ], [ -148.059326171875256, 66.275213934369077 ], [ -148.027099609374716, 66.273553778119123 ], [ -147.967211914062517, 66.247577215619131 ], [ -147.936083984374818, 66.241034246869134 ], [ -147.89702148437496, 66.240790106244191 ], [ -147.878466796874932, 66.242865301556691 ], [ -147.861328125000256, 66.24848053593152 ], [ -147.853808593750216, 66.255243231244052 ], [ -147.848193359375131, 66.263983465619106 ], [ -147.84050292968729, 66.271551824994162 ], [ -147.826538085937614, 66.275213934368992 ], [ -147.770678710937347, 66.252313543744179 ], [ -147.738403320312614, 66.24840729374408 ], [ -147.724121093750142, 66.271795965619077 ], [ -147.709716796875, 66.290301824994103 ], [ -147.677172851562261, 66.287713934369108 ], [ -147.620483398437472, 66.268377996869063 ], [ -147.578979492187528, 66.265887762494131 ], [ -147.583618164062386, 66.283270574994191 ], [ -147.620483398437784, 66.32018463749408 ], [ -147.602294921875057, 66.339544989056549 ], [ -147.56059570312496, 66.347113348431577 ], [ -147.483935546875074, 66.350287176556577 ], [ -147.470507812500159, 66.355047918744035 ], [ -147.44255371093746, 66.368597723431634 ], [ -147.429003906250216, 66.371405340619077 ], [ -147.360107421874744, 66.365668035931762 ], [ -147.302490234374858, 66.36212799686912 ], [ -147.230151367187318, 66.356756903119162 ], [ -147.195971679687261, 66.364569403119262 ], [ -147.191040039062642, 66.36786530155652 ], [ -147.186694335937574, 66.372259832806634 ], [ -147.180053710937159, 66.375995184369131 ], [ -147.168627929687489, 66.377630926556577 ], [ -147.14848632812496, 66.376898504681648 ], [ -147.138232421875045, 66.377801824994123 ], [ -147.133837890624847, 66.381293035931662 ], [ -147.132006835937688, 66.395209051556591 ], [ -147.126953125000085, 66.402533270306577 ], [ -147.110278320312659, 66.415716864056563 ], [ -147.094531250000017, 66.421991278119066 ], [ -147.050048828124915, 66.417547918744091 ], [ -147.031494140624886, 66.419208074994188 ], [ -147.022021484375017, 66.42462799686902 ], [ -146.997314453124858, 66.446478582806662 ], [ -146.968749999999886, 66.465887762494134 ], [ -146.943847656249858, 66.473822332806577 ], [ -146.880297851562375, 66.474432684369077 ], [ -146.843798828124932, 66.479437567181591 ], [ -146.791625976562614, 66.502020574994006 ], [ -146.73491210937479, 66.512713934369245 ], [ -146.558105468750057, 66.527655340619134 ], [ -146.391967773437358, 66.546893621869131 ], [ -146.263964843750045, 66.542743231244089 ], [ -146.2489013671875, 66.545477606244035 ], [ -146.202807617187517, 66.563788153119077 ], [ -146.038818359375085, 66.572943426556634 ], [ -145.998657226562358, 66.581561590619089 ], [ -145.966064453124829, 66.601385809369148 ], [ -145.951049804687727, 66.604681707806662 ], [ -145.880053710937403, 66.597967840619148 ], [ -145.840014648437631, 66.609442449994063 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -152.041015624999943, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.832885742187585, 66.610956121869108 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.825439453125057, 66.610956121869108 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.436938476562545, 62.814813543744094 ], [ -138.448242187500028, 62.825751043744106 ], [ -138.461791992187727, 62.833319403119205 ], [ -138.478881835937216, 62.835956121869145 ], [ -138.548095703125114, 62.83473541874401 ], [ -138.563354492187756, 62.837665106244117 ], [ -138.650561523437233, 62.87665436405667 ], [ -138.675708007812574, 62.883807684369195 ], [ -138.706909179687472, 62.888006903119255 ], [ -138.803588867187443, 62.885809637494148 ], [ -138.819458007812614, 62.888861395306698 ], [ -138.864672851562659, 62.902899481244127 ], [ -138.912524414062432, 62.904608465619184 ], [ -139.0205078125, 62.923211981244208 ], [ -139.159057617187273, 62.926825262494063 ], [ -139.176025390624744, 62.931512762494187 ], [ -139.238403320312528, 62.96300690311913 ], [ -139.286914062500017, 62.972723699994113 ], [ -139.362915039062841, 62.986835028119145 ], [ -139.430957031250102, 63.001410223431598 ], [ -139.495776367187489, 63.014422918744188 ], [ -139.515747070312528, 63.026068426556641 ], [ -139.522827148437443, 63.040155340619094 ], [ -139.516479492187329, 63.050653387494123 ], [ -139.506103515624773, 63.060248114056549 ], [ -139.500610351562386, 63.071844793744077 ], [ -139.510253906250114, 63.107245184369042 ], [ -139.533129882812631, 63.134149481244215 ], [ -139.560180664062557, 63.158075262494123 ], [ -139.582568359375045, 63.184759832806648 ], [ -139.580615234374761, 63.206317449994074 ], [ -139.568408203125045, 63.227484442181677 ], [ -139.519165039062671, 63.252386785931698 ], [ -139.463867187499972, 63.270697332806677 ], [ -139.431762695312528, 63.29401276249417 ], [ -139.436279296874858, 63.315545965619187 ], [ -139.459472656250057, 63.333075262494127 ], [ -139.490283203124704, 63.344916082806591 ], [ -139.517993164062375, 63.349237371869158 ], [ -139.526123046874829, 63.35211823124407 ], [ -139.533447265624943, 63.358954168744226 ], [ -139.545043945312443, 63.372870184369049 ], [ -139.555053710937472, 63.37975494999413 ], [ -139.715454101562273, 63.464178778119148 ], [ -139.740234375, 63.500067449994077 ], [ -139.747680664062699, 63.541034246869152 ], [ -139.759082031249903, 63.565936590619145 ], [ -139.761840820312699, 63.600531317181655 ], [ -139.761035156249932, 63.612005926556591 ], [ -139.757324218750199, 63.619891668744081 ], [ -139.755541992187261, 63.628729559369077 ], [ -139.762133789062659, 63.639276434369066 ], [ -139.770751953125028, 63.649603582806606 ], [ -139.774951171875045, 63.657733465619096 ], [ -139.765136718749886, 63.680365301556613 ], [ -139.722583007812403, 63.705023504681748 ], [ -139.712939453124932, 63.722967840619226 ], [ -139.720874023437517, 63.743475653118942 ], [ -139.736450195312585, 63.76027252811911 ], [ -139.747070312499773, 63.776434637494141 ], [ -139.740234374999972, 63.794940496869245 ], [ -139.75297851562496, 63.818304754681641 ], [ -139.753833007812318, 63.831854559369162 ], [ -139.725952148437557, 63.863153387494037 ], [ -139.738085937500045, 63.878436590619167 ], [ -139.737670898437443, 63.89874909061907 ], [ -139.728930664062375, 63.919305731244151 ], [ -139.716308593749943, 63.935174871869165 ], [ -139.711596679687432, 63.944110418744103 ], [ -139.7098388671875, 63.965887762494091 ], [ -139.703002929687642, 63.97614166874412 ], [ -139.689331054687585, 63.985052801556598 ], [ -139.611572265624943, 64.011493231244188 ], [ -139.542480468750057, 64.025580145306606 ], [ -139.507495117187602, 64.027655340619106 ], [ -139.48442382812496, 64.034613348431577 ], [ -139.465820312500171, 64.051459051556478 ], [ -139.454223632812273, 64.071844793744177 ], [ -139.452270507812329, 64.089715887494151 ], [ -139.473315429687602, 64.123895574994123 ], [ -139.4942626953125, 64.144232489056634 ], [ -139.506274414062659, 64.153021551556549 ], [ -139.521118164062557, 64.161444403119091 ], [ -139.543090820312443, 64.170770574994222 ], [ -139.551757812500028, 64.177606512494094 ], [ -139.559741210937602, 64.201678778119103 ], [ -139.570727539062602, 64.207635809369123 ], [ -139.584350585937614, 64.211786199994023 ], [ -139.596850585937375, 64.219427801556662 ], [ -139.600341796874858, 64.226752020306634 ], [ -139.604125976562386, 64.245672918744177 ], [ -139.609863281250057, 64.254217840619063 ], [ -139.625488281250085, 64.261175848431606 ], [ -139.645874023437301, 64.262567449994179 ], [ -139.685595703125216, 64.260443426556492 ], [ -139.760424804687545, 64.26703522343162 ], [ -139.798266601562318, 64.275653387494188 ], [ -139.829589843750028, 64.288397528119063 ], [ -139.853198242187403, 64.310126043744205 ], [ -139.863085937500045, 64.315008856244106 ], [ -139.88041992187496, 64.315301824994179 ], [ -139.911010742187614, 64.304632879681606 ], [ -139.92583007812479, 64.301385809369179 ], [ -139.946166992187415, 64.304144598431606 ], [ -139.952807617187489, 64.312372137494151 ], [ -139.954467773437642, 64.322137762494066 ], [ -139.959960937500114, 64.329364324994131 ], [ -139.976196289062528, 64.332538153119131 ], [ -140.032763671875188, 64.330145574994063 ], [ -140.106079101562528, 64.33209869999412 ], [ -140.168627929687403, 64.339471746869108 ], [ -140.251831054687301, 64.357123114056691 ], [ -140.337939453125159, 64.378534246869037 ], [ -140.447387695312557, 64.390570379681662 ], [ -140.519409179687671, 64.402899481244035 ], [ -140.532763671875131, 64.418036199994091 ], [ -140.521044921875074, 64.445990301556563 ], [ -140.503955078124903, 64.460882879681677 ], [ -140.461425781250171, 64.482245184369091 ], [ -140.442553710937261, 64.496893621869219 ], [ -140.438476562500028, 64.507196356244094 ], [ -140.43999023437479, 64.519720770306719 ], [ -140.446289062500057, 64.530340887494191 ], [ -140.456469726562716, 64.534735418744063 ], [ -140.510058593750045, 64.532245184369074 ], [ -140.521044921874875, 64.527948309369179 ], [ -140.557373046875, 64.516180731244134 ], [ -140.578125, 64.513373114056648 ], [ -140.593383789062386, 64.518011785931662 ], [ -140.605029296874875, 64.530707098431662 ], [ -140.607421874999972, 64.538934637494094 ], [ -140.605346679687699, 64.546991278119037 ], [ -140.603637695312443, 64.558954168744151 ], [ -140.621020507812204, 64.572577215619134 ], [ -140.7044677734375, 64.559686590619066 ], [ -140.733325195312375, 64.569525457806691 ], [ -140.720092773437727, 64.588324285931535 ], [ -140.705371093750045, 64.603949285931549 ], [ -140.701586914062716, 64.617621160931563 ], [ -140.720947265624858, 64.630975653119137 ], [ -140.754028320312642, 64.633319403119089 ], [ -140.820434570312329, 64.616400457806719 ], [ -140.850634765624932, 64.624139715619208 ], [ -140.895019531249801, 64.654852606244191 ], [ -140.898071289062614, 64.66051666874408 ], [ -140.899047851562585, 64.667596746869094 ], [ -140.898437500000171, 64.68219635624412 ], [ -140.904785156250114, 64.687323309369106 ], [ -140.919238281250102, 64.690252996869106 ], [ -141.008300781249943, 64.692450262494091 ], [ -141.0421142578125, 64.704779364056563 ], [ -141.052978515625, 64.706732489056648 ], [ -141.067504882812557, 64.713641668744103 ], [ -141.066406249999886, 64.729681707806662 ], [ -141.059448242187329, 64.747919012494222 ], [ -141.05668945312479, 64.761297918744177 ], [ -141.086914062500028, 64.780951239056591 ], [ -141.186694335937545, 64.792840887494137 ], [ -141.200073242187472, 64.815936590619145 ], [ -141.181201171874989, 64.837103582806549 ], [ -141.121704101562727, 64.864081121868978 ], [ -141.103881835937671, 64.884222723431535 ], [ -141.153247070312631, 64.894842840619063 ], [ -141.203491210937273, 64.898504949994177 ], [ -141.208129882812386, 64.904901434369179 ], [ -141.203906250000074, 64.919134832806648 ], [ -141.193286132812432, 64.939471746869188 ], [ -141.188964843749773, 64.945672918744123 ], [ -141.1826171875, 64.952337957806648 ], [ -141.181518554687671, 64.95778229374406 ], [ -141.192993164062528, 64.959979559369103 ], [ -141.217529296874886, 64.960809637494222 ], [ -141.229858398437301, 64.95997955936916 ], [ -141.259936523437432, 64.951239324994177 ], [ -141.302783203125159, 64.945257879681577 ], [ -141.319580078125199, 64.93605377811906 ], [ -141.335693359374915, 64.92975494999412 ], [ -141.356372070312347, 64.932318426556705 ], [ -141.375122070312329, 64.940985418744177 ], [ -141.385058593750074, 64.953143621869074 ], [ -141.383471679687261, 64.967840887494162 ], [ -141.373779296875171, 64.97833893436902 ], [ -141.362915039062699, 64.987372137494077 ], [ -141.3577880859375, 64.997503973431606 ], [ -141.358447265624903, 65.010614324994151 ], [ -141.360473632812273, 65.022040106244162 ], [ -141.363891601562329, 65.032049871869191 ], [ -141.368579101562545, 65.040716864056549 ], [ -141.376464843750142, 65.05055573124406 ], [ -141.386352539062671, 65.059393621869063 ], [ -141.411621093749943, 65.076190496869145 ], [ -141.407275390625159, 65.092718817181577 ], [ -141.416430664062631, 65.101141668744063 ], [ -141.432421875000102, 65.104266668744003 ], [ -141.4716796875, 65.107440496869117 ], [ -141.515307617187688, 65.120868231244017 ], [ -141.578613281250142, 65.15094635624402 ], [ -141.594848632812386, 65.15368073124408 ], [ -141.617919921874915, 65.152899481244148 ], [ -141.625244140625114, 65.153753973431563 ], [ -141.632568359374829, 65.156561590619148 ], [ -141.646411132812631, 65.16491119999408 ], [ -141.653564453124943, 65.168036199994205 ], [ -141.689453125000227, 65.17872955936906 ], [ -141.744677734374818, 65.204046942181748 ], [ -141.774902343749886, 65.214056707806662 ], [ -141.805175781249773, 65.215521551556634 ], [ -141.866577148437699, 65.20844147343162 ], [ -141.884521484374972, 65.210809637494123 ], [ -141.898437499999829, 65.219671942181677 ], [ -141.923950195312273, 65.243280340619179 ], [ -141.970263671875159, 65.26532623905652 ], [ -141.984252929687614, 65.275824285931577 ], [ -141.991992187499932, 65.287176824994106 ], [ -142.004516601562358, 65.313348699994108 ], [ -142.012451171875142, 65.321893621869066 ], [ -142.041381835937301, 65.330145574994134 ], [ -142.051757812500028, 65.33131744999406 ], [ -142.083300781250216, 65.33014557499402 ], [ -142.191894531249858, 65.347772528119194 ], [ -142.239428710937545, 65.349139715619074 ], [ -142.323242187499744, 65.344256903119174 ], [ -142.40739746093746, 65.354022528119174 ], [ -142.451220703124903, 65.347723699994148 ], [ -142.465454101562329, 65.348578192181762 ], [ -142.481860351562375, 65.355536199994191 ], [ -142.511230468750114, 65.37897369999412 ], [ -142.526733398437415, 65.38873932499412 ], [ -142.553393554687489, 65.398456121869103 ], [ -142.583056640625159, 65.404730535931577 ], [ -142.613208007812574, 65.406439520306577 ], [ -142.641284179687403, 65.402460028119222 ], [ -142.662646484374932, 65.394720770306691 ], [ -142.725463867187614, 65.363959051556549 ], [ -142.743164062500227, 65.358465887494035 ], [ -142.779663085937671, 65.352606512494077 ], [ -142.8299560546875, 65.350043035931606 ], [ -142.953979492187358, 65.374042059369174 ], [ -143.031054687499989, 65.381219793744108 ], [ -143.099975585937557, 65.378119207806591 ], [ -143.165283203125142, 65.384588934369106 ], [ -143.265625000000171, 65.380438543744006 ], [ -143.287646484374818, 65.382342840619145 ], [ -143.311035156249886, 65.380438543744177 ], [ -143.354248046875085, 65.364276434369117 ], [ -143.376586914062528, 65.361444403119094 ], [ -143.430053710937699, 65.369330145306563 ], [ -143.506103515625028, 65.394598699994134 ], [ -143.529541015625, 65.405585028119134 ], [ -143.557666015624761, 65.428827215619151 ], [ -143.56767578124979, 65.432318426556705 ], [ -143.585937499999886, 65.434515692181648 ], [ -143.621826171874858, 65.444354559369188 ], [ -143.659667968750057, 65.448602606244094 ], [ -143.666015625000171, 65.454291082806591 ], [ -143.667846679687614, 65.46295807499412 ], [ -143.712329101562517, 65.530877996869137 ], [ -143.711059570312472, 65.541522528119131 ], [ -143.737963867187432, 65.547479559369037 ], [ -143.810717773437375, 65.589960028119151 ], [ -143.848559570312688, 65.597723699993963 ], [ -143.978930664062659, 65.589960028119123 ], [ -143.991748046875159, 65.59210846561912 ], [ -144.002001953124932, 65.597601629681662 ], [ -144.021362304687443, 65.612127996869191 ], [ -144.064379882812631, 65.62946198124402 ], [ -144.078295898437688, 65.636981512494046 ], [ -144.090502929687545, 65.647162176556506 ], [ -144.116259765625216, 65.676532293744046 ], [ -144.123706054687489, 65.690204168744103 ], [ -144.118774414062273, 65.723211981244148 ], [ -144.089038085937744, 65.750799871869049 ], [ -144.018481445312489, 65.789862371869134 ], [ -144.018310546874943, 65.798041082806648 ], [ -144.0216064453125, 65.804877020306591 ], [ -144.025927734374875, 65.811395574994151 ], [ -144.028808593750028, 65.818719793744052 ], [ -144.027343750000085, 65.82970612186908 ], [ -144.020751953125142, 65.836127020306549 ], [ -144.012133789062347, 65.841180731244222 ], [ -144.004443359375017, 65.84826080936908 ], [ -144.000854492187329, 65.857196356244145 ], [ -144.001586914062358, 65.865668035931719 ], [ -144.005371093750057, 65.87384674686912 ], [ -144.022583007812301, 65.89545319218162 ], [ -144.063964843749915, 65.932562567181691 ], [ -144.159301757812557, 65.962958074994134 ], [ -144.173828124999972, 65.97760651249412 ], [ -144.172729492187585, 65.986639715619162 ], [ -144.168017578124903, 66.001581121869137 ], [ -144.166992187499886, 66.011346746869108 ], [ -144.175219726562602, 66.019159246869052 ], [ -144.194091796875057, 66.024359442181492 ], [ -144.303710937499829, 66.036200262494106 ], [ -144.342211914062659, 66.046210028119077 ], [ -144.358764648437443, 66.06666901249416 ], [ -144.366137695312602, 66.087591864056591 ], [ -144.38420410156246, 66.103705145306634 ], [ -144.427661132812403, 66.124335028119162 ], [ -144.492431640625057, 66.137958074994074 ], [ -144.524047851562244, 66.149359442181705 ], [ -144.53752441406246, 66.169378973431648 ], [ -144.542651367187375, 66.181097723431733 ], [ -144.555224609375244, 66.18488190311902 ], [ -144.570727539062602, 66.185809637494032 ], [ -144.58500976562479, 66.189520574994219 ], [ -144.653125, 66.221795965619123 ], [ -144.660400390624886, 66.227362371869205 ], [ -144.662768554687659, 66.230658270306662 ], [ -144.665649414062443, 66.237811590619103 ], [ -144.667846679687301, 66.241034246869162 ], [ -144.685302734374829, 66.258734442181648 ], [ -144.696777343749972, 66.265643621869131 ], [ -144.723315429687574, 66.270331121869049 ], [ -144.733642578125142, 66.275653387493989 ], [ -144.752929687500114, 66.292596746869009 ], [ -144.765747070312301, 66.300482489056677 ], [ -144.811279296874886, 66.30934479374416 ], [ -144.829711914062443, 66.32350494999416 ], [ -144.86333007812479, 66.363153387494137 ], [ -144.892382812499989, 66.375506903119103 ], [ -144.892700195312614, 66.384833074994006 ], [ -144.886962890625114, 66.402411199994106 ], [ -144.894824218750159, 66.411737371869037 ], [ -144.913085937499943, 66.415716864056677 ], [ -144.947802734374989, 66.419208074994074 ], [ -144.987182617187642, 66.436224676556421 ], [ -145.060180664062642, 66.44891998905662 ], [ -145.103027343749915, 66.471747137494177 ], [ -145.165942382812517, 66.485052801556634 ], [ -145.194824218750142, 66.494940496869077 ], [ -145.233276367187329, 66.510858465619179 ], [ -145.277343750000199, 66.534979559369006 ], [ -145.290454101562574, 66.546454168744063 ], [ -145.301074218749847, 66.56642487186916 ], [ -145.326904296874829, 66.578558660931733 ], [ -145.358569335937716, 66.584051824994077 ], [ -145.452880859374886, 66.581561590619202 ], [ -145.510498046875199, 66.57970612186908 ], [ -145.5347900390625, 66.582879949994094 ], [ -145.62028808593729, 66.592718817181662 ], [ -145.720825195312273, 66.607611395306691 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -138.432421875000102, 62.811224676556471 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.413134765625131, 62.801288153119216 ], [ -138.4256591796875, 62.806341864056719 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.412646484375074, 62.803656317181577 ], [ -138.401709573301076, 62.800728094671811 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.394409179687699, 62.79877350468162 ], [ -138.376098632812557, 62.796820379681655 ], [ -138.356201171875171, 62.797430731244013 ], [ -138.201538085937386, 62.827167059369231 ], [ -138.147753906249932, 62.829706121869201 ], [ -138.038134765625045, 62.821234442181563 ], [ -137.941455078125102, 62.814569403119037 ], [ -137.878344726562347, 62.802997137494067 ], [ -137.847583007812403, 62.801947332806698 ], [ -137.817138671874943, 62.805780340619208 ], [ -137.754077148437602, 62.824969793744181 ], [ -137.721679687499773, 62.828973699994172 ], [ -137.633959960937204, 62.827215887494134 ], [ -137.574633789062489, 62.814813543744009 ], [ -137.554443359374943, 62.815130926556634 ], [ -137.518798828125028, 62.821405340619194 ], [ -137.499560546874648, 62.822284246869039 ], [ -137.484545898437318, 62.818548895306456 ], [ -137.454711914062301, 62.804315496869208 ], [ -137.350512695312631, 62.773871160931691 ], [ -137.326293945312784, 62.773797918744123 ], [ -137.30827636718746, 62.767523504681648 ], [ -137.294116210937318, 62.739081121869084 ], [ -137.275268554687443, 62.723407293744131 ], [ -137.242236328125074, 62.706415106244044 ], [ -137.206665039062528, 62.695624090619226 ], [ -137.138598632812574, 62.685565496869152 ], [ -137.071582031249875, 62.657342840619201 ], [ -137.026977539062244, 62.648309637494116 ], [ -136.978808593749733, 62.629217840619233 ], [ -136.903686523437528, 62.609442449993914 ], [ -136.876513671874847, 62.598895574994152 ], [ -136.852587890625216, 62.58466217655662 ], [ -136.804565429687472, 62.545843817181783 ], [ -136.755908203125131, 62.506537176556634 ], [ -136.742309570312386, 62.499579168744035 ], [ -136.738769531250284, 62.496771551556655 ], [ -136.739062500000131, 62.49054596561912 ], [ -136.740283203124704, 62.483514715619066 ], [ -136.739184570312204, 62.478461004681506 ], [ -136.732836914062631, 62.473407293744145 ], [ -136.673583984375057, 62.450384832806492 ], [ -136.663452148437813, 62.444891668744127 ], [ -136.621704101562699, 62.412616278119138 ], [ -136.598193359374818, 62.401068426556655 ], [ -136.548999023437545, 62.39472077030667 ], [ -136.532836914062614, 62.390008856244002 ], [ -136.505859375000171, 62.376654364056606 ], [ -136.504272460937585, 62.374139715619243 ], [ -136.503588867187375, 62.370184637494184 ], [ -136.502368164062688, 62.365838934369236 ], [ -136.498950195312602, 62.362372137493971 ], [ -136.490405273437432, 62.358417059369081 ], [ -136.48271484374996, 62.356561590619265 ], [ -136.464233398437472, 62.355536199994162 ], [ -136.453247070312671, 62.356952215619138 ], [ -136.444213867187443, 62.360052801556535 ], [ -136.434985351562688, 62.361835028119039 ], [ -136.423583984375, 62.358954168744098 ], [ -136.404711914062489, 62.350531317181677 ], [ -136.399658203125, 62.349310614056478 ], [ -136.393603515625131, 62.344989324994032 ], [ -136.38139648437496, 62.325751043744184 ], [ -136.375781249999818, 62.32140534061913 ], [ -136.341796875000199, 62.31471588749411 ], [ -136.350634765625244, 62.299505926556755 ], [ -136.389770507812614, 62.27301666874407 ], [ -136.383911132812415, 62.266376043744096 ], [ -136.355346679687642, 62.249139715619208 ], [ -136.344726562499773, 62.245672918744084 ], [ -136.341113281250102, 62.241400457806741 ], [ -136.345458984375, 62.231634832806733 ], [ -136.355590820312756, 62.214960028119158 ], [ -136.355834960937557, 62.193060614056641 ], [ -136.359008789062585, 62.177679754681506 ], [ -136.369018554687329, 62.166620184369172 ], [ -136.389770507812557, 62.157538153119091 ], [ -136.370898437500273, 62.151678778119106 ], [ -136.331787109374801, 62.145770574994103 ], [ -136.313720703125171, 62.139520574994044 ], [ -136.304931640625, 62.13202545780657 ], [ -136.288696289062557, 62.112982489056655 ], [ -136.279589843750131, 62.109149481243975 ], [ -136.266845703125057, 62.112250067181542 ], [ -136.261596679687642, 62.119330145306719 ], [ -136.257739257812688, 62.126410223431527 ], [ -136.248901367187614, 62.129584051556549 ], [ -136.232421874999972, 62.129217840619198 ], [ -136.222778320312443, 62.127142645306584 ], [ -136.215869140625159, 62.122088934369224 ], [ -136.207885742187784, 62.112860418744127 ], [ -136.1966552734375, 62.107440496869266 ], [ -136.182299804687318, 62.109198309369049 ], [ -136.156372070312329, 62.119696356244191 ], [ -136.147875976562204, 62.118670965619117 ], [ -136.134814453125188, 62.099676824994134 ], [ -136.121948242187216, 62.094842840619101 ], [ -136.057055664062688, 62.094842840619073 ], [ -136.041137695312443, 62.091742254681684 ], [ -136.023120117187432, 62.078070379681577 ], [ -136.004394531250142, 62.073016668744188 ], [ -135.991577148437443, 62.063910223431613 ], [ -135.98503417968746, 62.061346746869091 ], [ -135.957763671874858, 62.06134674686912 ], [ -135.952880859374829, 62.062323309369148 ], [ -135.937548828125074, 62.067645574994117 ], [ -135.929809570312699, 62.068182684369098 ], [ -135.929199218749716, 62.065375067181634 ], [ -135.920825195312432, 62.051629949994016 ], [ -135.916796874999989, 62.047674871869184 ], [ -135.887451171875142, 62.037713934369201 ], [ -135.810961914062318, 62.024359442181634 ], [ -135.779589843749818, 62.02655670780657 ], [ -135.706787109375, 62.057318426556513 ], [ -135.676562500000102, 62.061346746869177 ], [ -135.614746093749886, 62.062860418744101 ], [ -135.567919921874818, 62.05683014530657 ], [ -135.560546874999886, 62.053900457806613 ], [ -135.55961914062496, 62.050360418744319 ], [ -135.561279296874972, 62.037787176556478 ], [ -135.560546874999829, 62.034002996869191 ], [ -135.504809570312602, 62.006170965619212 ], [ -135.4415283203125, 61.992132879681549 ], [ -135.313476562500398, 61.978778387494152 ], [ -135.285815429687716, 61.971014715619049 ], [ -135.232299804687642, 61.948675848431662 ], [ -135.204223632812585, 61.944037176556506 ], [ -135.145996093749829, 61.946600653119283 ], [ -135.128540039062273, 61.944037176556591 ], [ -135.123779296875057, 61.934588934369039 ], [ -135.119384765624915, 61.927923895306606 ], [ -135.114257812499773, 61.924139715619113 ], [ -135.106494140625301, 61.924017645306613 ], [ -135.094409179687602, 61.929022528119155 ], [ -135.087524414062671, 61.930365301556684 ], [ -135.014648437500227, 61.932806707806648 ], [ -134.990527343749932, 61.930438543744025 ], [ -134.972412109374943, 61.924017645306499 ], [ -134.952270507812756, 61.911444403119148 ], [ -134.935961914062318, 61.89496491093152 ], [ -134.928833007812642, 61.876654364056769 ], [ -134.940722656249818, 61.853045965619089 ], [ -134.965698242187244, 61.841669012494151 ], [ -134.984008789062443, 61.827582098431641 ], [ -134.976318359374915, 61.795721746869226 ], [ -134.954516601562318, 61.766913153119219 ], [ -134.877368164062432, 61.689642645306463 ], [ -134.855224609374972, 61.648553778119037 ], [ -134.864746093749801, 61.625848699994158 ], [ -134.890136718750114, 61.604559637493935 ], [ -134.915527343749687, 61.567889715619046 ] ], [ [ -138.398193359374801, 62.80055573124401 ], [ -138.401709573301076, 62.800728094671811 ] ] ] } } diff --git a/examples/data/us-state-capitals.geojson b/examples/data/us-state-capitals.geojson index baefc08..bb4af65 100644 --- a/examples/data/us-state-capitals.geojson +++ b/examples/data/us-state-capitals.geojson @@ -3,55 +3,55 @@ "name": "us-state-capitals", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, -{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, -{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, -{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, -{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, -{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, -{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, -{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, -{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, -{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": 467610.0 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, -{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": 50008.0 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, -{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, -{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, -{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, -{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, -{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, -{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, -{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, -{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": 191972.0 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, -{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, -{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": 119883.0 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, -{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": 193187.0 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, -{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, -{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, -{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, -{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, -{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, -{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, -{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, -{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, -{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, -{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, -{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, -{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, -{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, -{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, -{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, -{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, -{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, -{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, -{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, -{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, -{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, -{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, -{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, -{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, -{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, -{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } +{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, +{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, +{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0, "random": 19 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, +{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, +{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, +{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, +{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, +{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, +{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, +{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": null, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, +{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": null, "random": 12 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, +{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0, "random": 2 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, +{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, +{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, +{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0, "random": 7 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, +{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0, "random": 6 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, +{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, +{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, +{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": null, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, +{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, +{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": null, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, +{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": null, "random": 14 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, +{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, +{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, +{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0, "random": 8 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, +{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, +{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0, "random": 6 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, +{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, +{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, +{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, +{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, +{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, +{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, +{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, +{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, +{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, +{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, +{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, +{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, +{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, +{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0, "random": 14 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, +{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, +{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, +{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, +{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, +{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, +{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, +{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0, "random": 1 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } ] } diff --git a/examples/data/us-states.geojson b/examples/data/us-states.geojson index a229aa0..d730905 100644 --- a/examples/data/us-states.geojson +++ b/examples/data/us-states.geojson @@ -2,57 +2,57 @@ "type": "FeatureCollection", "name": "us-states", "features": [ -{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, -{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, -{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, -{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, -{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, -{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, -{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, -{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, -{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, -{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, -{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, -{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, -{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, -{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, -{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, -{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, -{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, -{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, -{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, -{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, -{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, -{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, -{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, -{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, -{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, -{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, -{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, -{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, -{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, -{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, -{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, -{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, -{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, -{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, -{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, -{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, -{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, -{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, -{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, -{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } +{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65, "random": 199.257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264, "random": 29.842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, +{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05, "random": 170.265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43, "random": 181.51 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7, "random": 141.826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, +{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33, "random": 88.298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, +{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1, "random": 182.967 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, +{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3, "random": 138.475 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, +{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0, "random": 28.803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, +{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4, "random": 45.751 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, +{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5, "random": 65.557 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1, "random": 106.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, +{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15, "random": 74.913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5, "random": 178.525 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, +{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7, "random": 13.742 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, +{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81, "random": 179.225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, +{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09, "random": 49.511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, +{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0, "random": 192.724 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, +{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0, "random": 35.814 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, +{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04, "random": 56.553 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, +{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3, "random": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, +{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2, "random": 14.428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, +{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9, "random": 196.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, +{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14, "random": 136.818 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, +{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5, "random": 123.31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, +{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26, "random": 58.699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, +{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858, "random": 97.841 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97, "random": 175.107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, +{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8, "random": 155.507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, +{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0, "random": 6.639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, +{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0, "random": 74.193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, +{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16, "random": 7.77 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3, "random": 78.319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2, "random": 34.866 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, +{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null, "random": 141.077 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9, "random": 48.618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, +{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22, "random": 56.464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33, "random": 144.097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, +{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3, "random": 187.541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, +{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0, "random": 32.239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, +{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4, "random": 59.665 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, +{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07, "random": 83.763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, +{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08, "random": 57.656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, +{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07, "random": 9.968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3, "random": 138.132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, +{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73, "random": 58.675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5, "random": 111.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, +{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6, "random": 152.044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, +{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06, "random": 51.709 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, +{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2, "random": 117.416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, +{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851, "random": 139.916 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, +{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0, "random": 199.591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } ] } diff --git a/examples/polygons_c.html b/examples/polygons_c.html index 25db3a6..776c753 100644 --- a/examples/polygons_c.html +++ b/examples/polygons_c.html @@ -109,7 +109,7 @@ div.innerHTML += '
' + '
' + - 'Leaflet-dataclassification plugin demo page: "polygons"' + + 'Leaflet-dataclassification plugin demo page: "polygons_color"' + '
'+ '
' + 'This is an example page showcasing some of the features of Leaflet plugin leaflet-dataclassification. '+ diff --git a/leaflet-dataclassification.js b/leaflet-dataclassification.js index 7b5b306..d9793d9 100644 --- a/leaflet-dataclassification.js +++ b/leaflet-dataclassification.js @@ -187,8 +187,9 @@ L.DataClassification = L.GeoJSON.extend({ * @returns {object} Final symbol style of the feature */ _stylePoint_size(value, options){ + console.log(options) return { - fillColor: (value != null ? options.style.fillColor : options.noDataColor), + fillColor: (value != null ? (options.style.fillColor != null ? options.style.fillColor : 'orange') : options.noDataColor), fillOpacity: 1, color: "black", weight: 1, @@ -216,7 +217,7 @@ L.DataClassification = L.GeoJSON.extend({ _styleLine_width(value){ return { weight: (value != null ? getWeight(value) : Math.min.apply(Math, widths)), - color: (value != null ? options.style.color : options.noDataColor) + color: (value != null ? (options.style.color != null ? options.style.color : L.Path.prototype.options.color) : options.noDataColor) }; }, @@ -510,14 +511,14 @@ L.DataClassification = L.GeoJSON.extend({ }; }, - _generateLegend(title, asc, mode_line, mode_point, typeOfFeatures, pfc) { + _generateLegend(title, asc, mode_line, mode_point, typeOfFeatures) { svgCreator = this._svgCreator; legendPP_unitMod = this._legendPostProc_unitModifier; legendRowFormatter = this._legendRowFormatter; unitMod_options = this._unitMod; position = this._legendPos; ps = this._pointShape; - lc = this._linecolor; + lc = (this._linecolor != null ? this._linecolor : L.Path.prototype.options.color); lw = this._lineweight; nodata = this._noDataFound; nodatacolor = this._noDataColor; @@ -529,6 +530,7 @@ L.DataClassification = L.GeoJSON.extend({ lt_formattedNoData = lt.nodata.replace(/({count})/i, classes.nodataFeatureCount); }; var prad = (options.style.radius != null ? options.style.radius : 8); + var pfc = (options.style.fillColor != null ? options.style.fillColor : 'orange'); template = this._legendTemplate; @@ -1097,7 +1099,7 @@ L.DataClassification = L.GeoJSON.extend({ success = true; break; default: - console.error('Wrong classification type (choose one of the following: "jenks", "equalinterval", "quantile", "manual" - when manual, `classes` must be an array!)') + console.error('Wrong classification type (choose one of the following: "jenks", "equalinterval", "quantile", "stddeviation", "manual" - when manual, `classes` must be an array!)') } // Classification success, proceed with generating colors if (success) { @@ -1203,8 +1205,8 @@ L.DataClassification = L.GeoJSON.extend({ console.error('Error: Unknown feature type: ', layer.feature.geometry.type, layer.feature) break; } + n += 1; } - n += 1; }); // count nodata features (= all values - validFeatures). For use in legend ("no data" class). From b9a3fba00505a95dc747ce8bfee096ff044f78b0 Mon Sep 17 00:00:00 2001 From: balladaniel <96133731+balladaniel@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:53:01 +0100 Subject: [PATCH 3/9] normalization refinement --- examples/data/lines_c_wsdot_aadt.geojson | 9758 ++++++++--------- .../data/origdata/lines_c_wsdot_aadt.geojson | 4886 --------- examples/data/origdata/points_gas.geojson | 98 - .../data/origdata/points_lux_pop_osm.geojson | 478 - .../polygons_hatch_eu_lifeexp_2018.geojson | 341 - .../data/origdata/polygons_nz_regions.geojson | 23 - examples/data/origdata/rivers.geojson | 116 - examples/data/origdata/rivers_yukon.geojson | 17 - .../data/origdata/us-state-capitals.geojson | 57 - examples/data/origdata/us-states.geojson | 58 - examples/data/points_gas.geojson | 184 +- examples/data/points_lux_pop_osm.geojson | 942 +- .../polygons_hatch_eu_lifeexp_2018.geojson | 668 +- examples/data/polygons_nz_regions.geojson | 2 +- examples/data/rivers.geojson | 218 +- examples/data/rivers_yukon.geojson | 4 +- examples/data/us-state-capitals.geojson | 100 +- examples/data/us-states.geojson | 104 +- 18 files changed, 5990 insertions(+), 12064 deletions(-) delete mode 100644 examples/data/origdata/lines_c_wsdot_aadt.geojson delete mode 100644 examples/data/origdata/points_gas.geojson delete mode 100644 examples/data/origdata/points_lux_pop_osm.geojson delete mode 100644 examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson delete mode 100644 examples/data/origdata/polygons_nz_regions.geojson delete mode 100644 examples/data/origdata/rivers.geojson delete mode 100644 examples/data/origdata/rivers_yukon.geojson delete mode 100644 examples/data/origdata/us-state-capitals.geojson delete mode 100644 examples/data/origdata/us-states.geojson diff --git a/examples/data/lines_c_wsdot_aadt.geojson b/examples/data/lines_c_wsdot_aadt.geojson index f17fb3d..b425e2c 100644 --- a/examples/data/lines_c_wsdot_aadt.geojson +++ b/examples/data/lines_c_wsdot_aadt.geojson @@ -3,4884 +3,4884 @@ "name": "lines_c_wsdot_aadt2", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": null, "random": 72.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192223719300003, 47.377314531099998 ], [ -120.140301766600004, 47.371384494399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900, "random": 185.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320922755599995, 45.572154233500001 ], [ -122.29949512, 45.571607305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000, "random": 161.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.326048339699994, 47.686792380200004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000, "random": 23.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.267351222100004, 47.200733364100003 ], [ -122.260420207400003, 47.201217628400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": null, "random": 27.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483209007799999, 47.383636742599997 ], [ -119.483231612799997, 47.388480686199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000, "random": 104.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294008676399997, 47.224909226299999 ], [ -122.293850203, 47.2500481115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": null, "random": 31.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.125491757500001 ], [ -119.281561717599999, 47.129753712599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000, "random": 68.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.355593639800006, 47.858945272299998 ], [ -117.3577112718, 47.881424466200002 ], [ -117.352326864700004, 47.896195442500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000, "random": 49.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875264102299994, 46.547352524099999 ], [ -122.865051254600004, 46.5465667665 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830, "random": 98.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.210562271200004, 47.455407284800003 ], [ -123.212746255599995, 47.457686866300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000, "random": 106.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.068762990699994, 46.3226150928 ], [ -120.0440296636, 46.307549762199997 ], [ -120.028516892599995, 46.305963005899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": null, "random": 56.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.221912289100004, 47.6270557243 ], [ -120.208426750699999, 47.626561325700003 ], [ -120.195055141799998, 47.632754478899997 ], [ -120.180985770199996, 47.631345066400002 ], [ -120.147986288799999, 47.650382479500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000, "random": 108.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.119313093900004, 48.053547427399998 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": null, "random": 186.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.300591393800005, 47.476574434500002 ], [ -120.297315236599999, 47.500657867500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": null, "random": 116.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.108461782399999, 47.873871282400003 ], [ -120.101900800199999, 47.8648083629 ], [ -120.072100487599997, 47.859499395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000, "random": 112.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.089465752799995, 46.273488750600002 ], [ -119.093418599900005, 46.285167135599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000, "random": 6.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.221756869399997, 47.194537858 ], [ -122.212761856, 47.197026639599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000, "random": 125.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179914892699998, 47.598495893900001 ], [ -122.186231877500006, 47.6058898709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700, "random": 12.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.405112934199998 ], [ -119.521352036099998, 48.403879184499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000, "random": 198.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.126591027299995, 47.200112170099999 ], [ -123.101805642100004, 47.183774694500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": null, "random": 185.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.181362192900004 ], [ -120.808162567300002, 47.19291613 ], [ -120.773068226500001, 47.195996988600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100, "random": 189.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332564168800005, 48.8145942815 ], [ -122.327035238, 48.818184803500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000, "random": 166.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304573455500005, 47.649044063300003 ], [ -122.303613538299999, 47.651571254899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620, "random": 85.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.588493994499999, 46.647813660899999 ], [ -118.556511898099998, 46.6435530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": null, "random": 120.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.920256300700004, 47.873118329500002 ], [ -119.916871677800003, 47.883019584800003 ], [ -119.917568810500001, 47.904234735199999 ], [ -119.888689271, 47.925649692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000, "random": 23.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318197500500006, 47.817590762099996 ], [ -122.315085552799999, 47.821191790100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000, "random": 26.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.833933902799998, 47.400546358100001 ], [ -117.793799155900004, 47.433132785799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400, "random": 57.783 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.392067770099999, 47.652857061299997 ], [ -117.3930264257, 47.653601207299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000, "random": 104.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461690018400006, 48.004296339200003 ], [ -122.467687577299998, 48.007905190800003 ], [ -122.531073695, 48.008536006900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000, "random": 172.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278980462600003, 47.867386825 ], [ -122.275636924400004, 47.870880789399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60, "random": 26.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575630911800005, 46.3701554294 ], [ -122.560989582700003, 46.364713247200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000, "random": 112.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326048339699994, 47.686792380200004 ], [ -122.32907164, 47.694314524200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": null, "random": 179.762 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471071659100005, 47.273753970100003 ], [ -119.482644780900003, 47.323211318200002 ], [ -119.475641186900006, 47.350967510899999 ], [ -119.479148192699995, 47.369122823700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000, "random": 49.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688240011299996, 47.669276652599997 ], [ -122.690070823200003, 47.674254571299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000, "random": 85.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377330564199994, 48.515561334899999 ], [ -122.378643621500004, 48.516946430200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700, "random": 134.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.481714559400004, 47.7503088944 ], [ -118.471127526900005, 47.734484790800003 ], [ -118.393644979900003, 47.6932837218 ], [ -118.344264443200004, 47.657344700599999 ], [ -118.316526127399996, 47.644866918600002 ], [ -118.218613867499997, 47.642666549300003 ], [ -118.178870895599999, 47.650335905799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800, "random": 152.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.207421101199998 ], [ -121.988874057900006, 47.203160202399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700, "random": 78.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.529993278099994, 47.915069702499999 ], [ -124.534428898499996, 47.912791220199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000, "random": 122.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.804266783800003, 47.467763599800001 ], [ -122.792203240600003, 47.476414011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000, "random": 139.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461123397199998, 47.228506375099997 ], [ -122.46060986, 47.2297520929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000, "random": 185.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.071848028399998 ], [ -122.111652555800006, 48.091880012300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000, "random": 37.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628642300899998, 48.325690041 ], [ -122.630334446500001, 48.333741685299998 ], [ -122.626067163499997, 48.340201578799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200, "random": 40.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231149710099999, 47.122069650199997 ], [ -117.235609286, 47.124733954200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300, "random": 25.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.030912055399995, 46.758700120299999 ], [ -121.981410569499999, 46.757281391200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500, "random": 114.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413544959399999, 48.721379622199997 ], [ -117.413577184900007, 48.728581825799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000, "random": 81.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405978251099995, 47.8001660961 ], [ -117.407463921200005, 47.812350919499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000, "random": 58.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336563296799994, 47.245039798100002 ], [ -122.335377560200001, 47.251222220400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000, "random": 55.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.253493359300002 ], [ -122.436367945200004, 47.254444550599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000, "random": 93.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093346862800004, 46.199133631599999 ], [ -119.101223870799998, 46.205201664199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500, "random": 187.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.191148354299997, 47.518341588699997 ], [ -117.197447519799994, 47.522700233099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600, "random": 173.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736102562400006, 46.693707214699998 ], [ -123.739710289800001, 46.7012896138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000, "random": 171.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295958375400005, 47.450660091700001 ], [ -122.291617161399998, 47.4596862569 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000, "random": 183.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239711879500007, 47.670702168399998 ], [ -117.239631880800005, 47.671672712099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000, "random": 112.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.393374497699995, 46.415054976599997 ], [ -120.395949240899995, 46.416943327699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960, "random": 21.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673496635199996, 46.361284465600001 ], [ -122.650489049, 46.3557399918 ], [ -122.638293748699994, 46.3654953749 ], [ -122.620045942199994, 46.371824077299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000, "random": 59.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276574087599997, 47.873402992099997 ], [ -122.277773723600006, 47.879481564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900, "random": 78.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.214302369600006, 46.411735887200003 ], [ -117.206095914499997, 46.415109425600001 ], [ -117.184841509699993, 46.412670146400004 ], [ -117.163432843400003, 46.424063508800003 ], [ -117.143868093099996, 46.4278013383 ], [ -117.087460968499997, 46.4153003586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000, "random": 29.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.633422151299996, 45.6184980719 ], [ -122.626679802699996, 45.6184887446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530, "random": 92.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.043603345600005, 46.377894367499998 ], [ -123.036809172100007, 46.397406746599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": null, "random": 53.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.025068951899996, 47.8360845439 ], [ -120.023988532800004, 47.836037193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000, "random": 144.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.549949749600003, 45.780646633700002 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000, "random": 26.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.452724593500001 ], [ -122.820154302899994, 47.454597961799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": null, "random": 95.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483208834400003, 47.383543517500001 ], [ -119.483209007799999, 47.383636742599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500, "random": 199.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234636542900006, 48.316921300700002 ], [ -122.236663287100001, 48.320467722700002 ], [ -122.232181534399999, 48.32047636 ], [ -122.232630259900006, 48.323549741699999 ], [ -122.209136645100003, 48.333136028699997 ], [ -122.20310466, 48.347678700300001 ], [ -122.206725611400003, 48.3642645921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000, "random": 178.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.008536006900002 ], [ -122.533987290900001, 48.009762296300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980, "random": 148.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054738688200004, 46.925380803499998 ], [ -117.039514438200001, 46.930293118400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600, "random": 108.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.354353747399998 ], [ -123.715759012199996, 46.348975076199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": null, "random": 81.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.683793719700006, 47.129337028800002 ], [ -120.705134177399998, 47.162971462400002 ], [ -120.702317791699997, 47.175453351100003 ], [ -120.706779688099999, 47.184097401199999 ], [ -120.708024373599997, 47.203648771300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000, "random": 29.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295819424300007, 47.353032929900003 ], [ -122.294634377799994, 47.364358862499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000, "random": 71.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617793133600003, 47.366051473299997 ], [ -122.615669929800006, 47.386750696900002 ], [ -122.624274168, 47.402053757700003 ], [ -122.624470827, 47.411186267399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100, "random": 59.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.532580146699999, 47.7818048655 ], [ -117.527237227800001, 47.787643536300003 ], [ -117.535446744200001, 47.797897546900003 ], [ -117.553635220100006, 47.804383882400003 ], [ -117.555355985199995, 47.810423842299997 ], [ -117.5692400943, 47.812506490700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000, "random": 65.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042441887099997, 48.184010170500002 ], [ -117.039537514299994, 48.183976228399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000, "random": 114.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.090539888799995, 46.821737349700001 ], [ -123.079868423600004, 46.8216532259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000, "random": 9.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271528554400007, 48.974869667199997 ], [ -122.265005071199994, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": null, "random": 147.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337091754499994, 47.465744417400003 ], [ -120.338421987399997, 47.467139071799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000, "random": 104.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184467597799994, 48.058461578699998 ], [ -122.184768822300001, 48.068137954100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000, "random": 147.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.103034504199996, 47.677801453 ], [ -117.054226041299998, 47.693974327299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000, "random": 120.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.090309300800001 ], [ -122.630563411699995, 47.091197464099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": null, "random": 54.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.963923508400001 ], [ -118.999850793299998, 47.959793347800002 ], [ -119.0016246215, 47.956002034900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000, "random": 9.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.417186310700004, 48.112326338499997 ], [ -123.404306887, 48.107133159599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000, "random": 35.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.706629013200001, 47.524789163100003 ], [ -122.697432892600006, 47.529005529700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000, "random": 58.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293022339499998, 47.136469010699997 ], [ -122.292969383100001, 47.140242369600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000, "random": 82.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.979473196500003 ], [ -122.1697766801, 47.978234071800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000, "random": 48.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201057805600001, 47.810066305900001 ], [ -122.1943284707, 47.811612660199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700, "random": 156.176 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.025824951100006, 46.176693428299998 ], [ -123.030464217800002, 46.1645370289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200, "random": 22.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.173877287899998, 47.112127049400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": null, "random": 14.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.963923508400001 ], [ -119.001841752600001, 47.971424576399997 ], [ -118.98586136, 47.971681473099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000, "random": 142.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225707636699994, 48.510474068599997 ], [ -122.225554844100003, 48.514186971299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000, "random": 140.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.126263012799996, 46.6018315229 ], [ -123.096605699199998, 46.626868397499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300, "random": 62.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.266288957300006, 47.055615833 ], [ -123.265225939100006, 47.055633962400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100, "random": 75.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.061492395499997, 46.864288916500001 ], [ -124.052113318699995, 46.871082552099999 ], [ -124.0439366003, 46.892398272299999 ], [ -124.004059124299999, 46.892135389300002 ], [ -123.989075550899997, 46.909877978200001 ], [ -123.936557714800003, 46.9230494022 ], [ -123.919783106300002, 46.931113491 ], [ -123.867328931200007, 46.943355618299996 ], [ -123.848015462500001, 46.9435702245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000, "random": 74.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196910228600004, 47.5026900234 ], [ -122.194984523499997, 47.502141777600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000, "random": 29.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.753449416099997, 45.923645172599997 ], [ -122.760492617899999, 45.933145426400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500, "random": 86.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.534454282600002 ], [ -122.517031573500006, 46.533035016500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800, "random": 27.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288664435200005, 48.843341019900002 ], [ -122.277685793499998, 48.843534593299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000, "random": 49.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515949266099994, 47.257162386700003 ], [ -122.515950787600005, 47.258434649100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700, "random": 84.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.707817696899994, 48.197965596300001 ], [ -117.715379481699998, 48.208231873599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000, "random": 183.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329077402400003, 47.5942483647 ], [ -122.329750574499997, 47.593274379100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900, "random": 178.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501812683400004, 45.893398658499997 ], [ -122.452542000700006, 45.895541165700003 ], [ -122.451970973200005, 45.905929542300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700, "random": 126.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286436785199996, 47.054106290100002 ], [ -123.286645904300002, 47.055729321199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000, "random": 82.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885750729199998, 46.583809204700003 ], [ -122.883861749900007, 46.583840508400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130, "random": 15.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.780265899100002 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000, "random": 53.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.092913658699999, 48.0727563835 ], [ -123.060210817500007, 48.064407704300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300, "random": 69.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.405550858400005, 45.590604158600001 ], [ -122.400125516599999, 45.586998701900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400, "random": 6.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.815376949200001, 45.697928946300003 ], [ -120.8236282381, 45.696374883499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310, "random": 101.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.688932753200007, 47.338112147799997 ], [ -118.699514273600002, 47.356361848100001 ], [ -118.699124298900003, 47.370913265299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900, "random": 184.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.704906039099995, 48.278203789899997 ], [ -119.668308598799996, 48.294872498099998 ], [ -119.626284036, 48.3081932192 ], [ -119.606992276200003, 48.3197133157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100, "random": 15.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.232263906199996 ], [ -123.945454993400006, 47.236177875400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000, "random": 96.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657869700299997, 48.2871805041 ], [ -122.657856322499995, 48.288349140299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000, "random": 10.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517886741599995, 47.808439866900002 ], [ -122.503673288599998, 47.802746125200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000, "random": 63.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662273975700003, 45.6359541769 ], [ -122.661703215100005, 45.643383049100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000, "random": 51.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914456217400001, 46.320216529699998 ], [ -122.909597880600003, 46.328237141499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000, "random": 33.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.783418362399999, 47.441020789200003 ], [ -117.694733022400001, 47.501473805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000, "random": 112.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434938931800005, 47.2327862223 ], [ -122.423149831100005, 47.236217271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000, "random": 195.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335142695200005, 48.421566968 ], [ -122.341055291700002, 48.431311013600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000, "random": 98.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.889966995600005, 47.507262303 ], [ -121.864239590400004, 47.511184175899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900, "random": 170.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.956054795900002, 47.924618672900003 ], [ -118.942272354599993, 47.916813951100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": null, "random": 51.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853529322100002, 47.119197753900004 ], [ -119.853528771200004, 47.132225026500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800, "random": 74.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.037645272700004, 47.241057134800002 ], [ -121.046585282699994, 47.244285264200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800, "random": 136.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.385169842799996, 47.441644864700002 ], [ -117.384646521899995, 47.448870130499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000, "random": 12.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039123163699998, 46.420256329600001 ], [ -117.038967760700004, 46.420267917099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": null, "random": 136.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.302587343100001, 47.468606566600002 ], [ -120.299797941199998, 47.468286093700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000, "random": 112.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.766324464899995, 47.494235084899998 ], [ -122.735008518699999, 47.515738177199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700, "random": 67.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400432161099999, 45.996368779400001 ], [ -122.416023356599993, 45.992584303400001 ], [ -122.424046235199995, 45.983157559399999 ], [ -122.460939695199997, 45.9952678398 ], [ -122.503479943100004, 45.998358346400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400, "random": 128.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047517464899997, 46.474461423100003 ], [ -117.050176045499995, 46.475581515199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000, "random": 75.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.402833022500005, 47.111088331600001 ], [ -118.3796443329, 47.111774724100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100, "random": 121.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.095101639099994, 47.4382498075 ], [ -117.077973130199993, 47.442965311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000, "random": 144.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302305689799994, 46.267676536899998 ], [ -119.2905873773, 46.261144368700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100, "random": 6.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.381586321300006, 47.803271641899997 ], [ -122.383255782700004, 47.803414461499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900, "random": 39.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151498588600006, 47.506257013099997 ], [ -122.142984832899998, 47.505758847899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000, "random": 65.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.009562583700003, 47.0558186162 ], [ -123.006531622099999, 47.055212302699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000, "random": 184.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284486184800002, 47.298220875799998 ], [ -122.272173072200005, 47.303962201300003 ], [ -122.2563579686, 47.302806556699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100, "random": 155.272 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.658510304900005, 48.140280132299999 ], [ -117.6860630929, 48.148122845 ], [ -117.703705331600005, 48.170736681500003 ], [ -117.700516388799997, 48.188995432900001 ], [ -117.707817696899994, 48.197965596300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000, "random": 107.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343595607400005, 47.624654211600003 ], [ -122.343617639499996, 47.625224852300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200, "random": 118.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.127300859599998, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200, "random": 83.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625772112199996, 47.400002299699999 ], [ -122.624252489699998, 47.402892309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600, "random": 193.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.566690726800005, 48.114021332 ], [ -123.561617171, 48.103068411800002 ], [ -123.553750953800005, 48.099661530200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600, "random": 97.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.684914254500001, 46.041502158699998 ], [ -118.669240505199994, 46.040335022800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000, "random": 103.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213780260299998, 47.994220742499998 ], [ -122.213863515900002, 47.998943614399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600, "random": 145.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.745782143599996, 46.682825318699997 ], [ -123.736798022100004, 46.680552573500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": null, "random": 70.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.056355265600004, 47.915376585200001 ], [ -119.038000225900007, 47.932554457499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000, "random": 83.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.240239538899999 ], [ -119.085460559500007, 46.245260658 ], [ -119.082356505600004, 46.248275294300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200, "random": 161.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137590950499998, 48.917143280200001 ], [ -122.132246497699995, 48.917315639800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000, "random": 109.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.841560284099998, 47.410924864 ], [ -122.845516085300005, 47.415535475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000, "random": 182.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.393930611299993, 48.286981512200001 ], [ -124.348789402500003, 48.270258328799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000, "random": 85.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434052037300006, 47.223093094200003 ], [ -122.425077764799994, 47.223082438900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700, "random": 39.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113749425699993, 47.805010633199998 ], [ -122.111869904299994, 47.804901068699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200, "random": 132.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888386398500003, 46.980177755299998 ], [ -123.887405132300003, 46.979481806199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100, "random": 184.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380257938599996, 47.804112396 ], [ -122.381586321300006, 47.803271641899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": null, "random": 155.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.027710127399999, 47.847421361099997 ], [ -120.020261139300004, 47.841391245200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900, "random": 63.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485215379099998, 48.964238869100001 ], [ -122.474404846900001, 48.964420136500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000, "random": 185.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435645795100001, 47.249449369799997 ], [ -122.436113822, 47.253493359300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000, "random": 191.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485687149200004, 48.8695370939 ], [ -122.485654962300003, 48.869841039900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800, "random": 89.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.762299791299995, 46.31964321 ], [ -122.732310652699994, 46.324533827800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": null, "random": 173.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.864013776799993, 47.233227695899998 ], [ -119.858794341600003, 47.233334252200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200, "random": 159.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.777027675900001, 48.649473503 ], [ -118.739118173700007, 48.647625688799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000, "random": 35.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.982341791600007, 47.812780129099998 ], [ -121.970995859, 47.825964364199997 ], [ -121.969447341600002, 47.843075742800004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000, "random": 22.938 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176695557599999, 47.572470087200003 ], [ -122.174140027, 47.577836386199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000, "random": 197.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226896444499999, 47.886791904900001 ], [ -122.215924349100007, 47.895325602900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900, "random": 76.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.142195626800003 ], [ -122.056456644099995, 47.140510482499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400, "random": 168.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.057205959599997 ], [ -123.928703781500005, 47.060152495700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000, "random": 94.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228090332199997, 47.908324735699999 ], [ -122.223328891899996, 47.909586154800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000, "random": 91.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.410533367900001, 47.412298435 ], [ -121.400290715300002, 47.399395735500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000, "random": 42.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965613591099995, 47.858227985 ], [ -121.963814797400005, 47.857816596799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000, "random": 141.717 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634028489399995, 45.6462602442 ], [ -122.616370594100005, 45.647869762200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000, "random": 160.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.918773383199998 ], [ -122.740488748199994, 45.917100647600002 ], [ -122.741223238, 45.913180857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800, "random": 15.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.351379696199999, 45.944648158699998 ], [ -119.335004473799998, 45.945528959199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000, "random": 190.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.981045286799997 ], [ -123.906271557799997, 46.981082315400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900, "random": 134.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.021535225899996, 46.317579506500003 ], [ -124.028653442800007, 46.311088406 ], [ -124.0415185162, 46.308852550600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100, "random": 152.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.275437230099996, 47.055580731299997 ], [ -123.266288957300006, 47.055615833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000, "random": 67.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243988081300003, 47.374066723799999 ], [ -122.244249076299994, 47.385615921800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000, "random": 195.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317486779500001, 48.435666194200003 ], [ -122.313390933899996, 48.4356182605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000, "random": 77.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.981876614400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300, "random": 25.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.103309537400001 ], [ -118.387781275099996, 47.110491946300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800, "random": 103.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.702379542300001 ], [ -119.418660973399994, 48.688434635599997 ], [ -119.358757809599993, 48.6725327308 ], [ -119.346615263499999, 48.663656319300003 ], [ -119.330317322100001, 48.658599065700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850, "random": 41.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.793103767700003, 46.617894857 ], [ -117.811560010899996, 46.637963407900003 ], [ -117.806327964900007, 46.655361975700004 ], [ -117.798321866199998, 46.666107956700003 ], [ -117.815411481500007, 46.6748014633 ], [ -117.8035001513, 46.686340527600002 ], [ -117.793994109099998, 46.689334233 ], [ -117.783988535099994, 46.709214833799997 ], [ -117.753318956800001, 46.736170366499998 ], [ -117.731263435900004, 46.738060964399999 ], [ -117.729428262599995, 46.748608410400003 ], [ -117.715882879600002, 46.758320791400003 ], [ -117.704325545200007, 46.773822606700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000, "random": 124.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846634514399994, 47.043298773099998 ], [ -122.832270050299996, 47.045933568700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000, "random": 168.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233798993899995, 47.191531117499999 ], [ -122.221756869399997, 47.194537858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000, "random": 20.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.765114033100005, 47.0629504411 ], [ -122.764871137399993, 47.061291889300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100, "random": 151.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.831119692499996, 46.719886879699999 ], [ -123.846375426, 46.71976203 ], [ -123.857390329699996, 46.729496636500002 ], [ -123.875915207, 46.730765535099998 ], [ -123.884515218600001, 46.743609254699997 ], [ -123.884181242500006, 46.749824761 ], [ -123.890655563300001, 46.752095260499999 ], [ -123.916612494199995, 46.743854964900002 ], [ -123.926345221700004, 46.725680458799999 ], [ -123.947248919700002, 46.725881177200002 ], [ -123.974290630599995, 46.740487145700001 ], [ -123.990009500599996, 46.732027736600003 ], [ -124.020399747699997, 46.724650474699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": null, "random": 104.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297315236599999, 47.500657867500003 ], [ -120.297025515100003, 47.511100222800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000, "random": 94.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.890691547499998, 46.545066264699997 ], [ -117.874506860300002, 46.545349239799997 ], [ -117.856273262499997, 46.5369650839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": null, "random": 79.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.695750097499996, 47.304468245199999 ], [ -120.691926264299994, 47.318900842399998 ], [ -120.670659661100004, 47.326082664399998 ], [ -120.628563887400006, 47.335095201800002 ], [ -120.610897241700002, 47.331457959200002 ], [ -120.592299957799995, 47.336677689299997 ], [ -120.580873540200002, 47.335330983600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200, "random": 197.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045497248800004, 47.103424531 ], [ -122.047085011600004, 47.1062792018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000, "random": 69.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.286240130699994, 46.308479073 ], [ -119.297511450399995, 46.300101854099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200, "random": 103.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.398917675099995, 46.370274191599997 ], [ -119.346211276, 46.341521748200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000, "random": 49.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.108092835899996, 48.013254047899999 ], [ -122.109931729799996, 48.0262394664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100, "random": 92.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909988232700002, 47.811340111100002 ], [ -122.918842027, 47.802266037800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": null, "random": 63.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.296981004599999, 47.420685698699998 ], [ -120.294775757099998, 47.415324222800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780, "random": 71.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.485984496399993, 46.545678898299997 ], [ -122.485822753299999, 46.536429871300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600, "random": 163.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.726698166299997 ], [ -120.792115253199995, 46.735647347700002 ], [ -120.7884944778, 46.748308334100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100, "random": 133.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.989437568599996, 48.589057101599998 ], [ -118.015580453200002, 48.600051746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": null, "random": 158.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483231612799997, 47.388480686199998 ], [ -119.483234393, 47.389372647400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000, "random": 133.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292969383100001, 47.140242369600003 ], [ -122.2929747612, 47.155310860500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800, "random": 156.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407719966299993, 45.610616827199998 ], [ -122.407107026299997, 45.6049828823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600, "random": 23.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.383147769299995, 46.998968611 ], [ -123.376585238199993, 46.990906447 ], [ -123.341704534300007, 46.971788208699998 ], [ -123.329418103500004, 46.960126358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800, "random": 106.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326950201700001, 47.408557191100002 ], [ -122.332743201499994, 47.408543256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000, "random": 65.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.131894078499997, 46.233167577 ], [ -119.127789926700004, 46.243575565299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630, "random": 117.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.539764033200001 ], [ -117.578300568299994, 48.544846913900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": null, "random": 147.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117938296399998, 46.970178233699997 ], [ -119.109908886699998, 46.970152356699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000, "random": 29.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.665487439100005, 45.620068800200002 ], [ -122.658117051700003, 45.618558865399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000, "random": 72.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.603242915400003, 47.777122210199998 ], [ -122.586952600900005, 47.796221725800002 ], [ -122.573335582699997, 47.802767164400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": null, "random": 171.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.302961090799997, 47.409563274699998 ], [ -120.303554765499996, 47.410929097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000, "random": 17.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690480811800001, 45.815702704400003 ], [ -122.687327648299998, 45.815867042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000, "random": 181.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.354407756500002 ], [ -122.617473035900005, 47.365342874900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100, "random": 112.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.474793767599998 ], [ -117.556012713800001, 46.475141642799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000, "random": 158.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.471680580300003, 46.531543452599998 ], [ -120.469396236099996, 46.522142522499998 ], [ -120.455809751100006, 46.516358140900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400, "random": 125.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972813399800003, 47.3032197247 ], [ -117.972278891399995, 47.307327865300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700, "random": 82.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.865755115799999, 46.470908225099997 ], [ -122.849131169499998, 46.466188207899997 ], [ -122.8425140234, 46.458971800599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000, "random": 141.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606768074300007, 48.898128227699999 ], [ -122.636909412899996, 48.922347942800002 ], [ -122.6562396315, 48.932855200100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000, "random": 42.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111869904299994, 47.804901068699998 ], [ -122.111680302300002, 47.8021510795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000, "random": 96.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216376018299997, 47.872784710099999 ], [ -122.2148947405, 47.8742828444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000, "random": 84.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346459198399998, 46.051056921600001 ], [ -118.346098276600003, 46.053273733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000, "random": 34.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.402833022500005, 47.111088331600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360, "random": 23.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.954272166500004, 46.516741194600002 ], [ -121.9544576073, 46.521601558199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000, "random": 6.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207714154599998, 47.806353196499998 ], [ -122.207656748700003, 47.809595844900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000, "random": 83.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384432401200002, 47.653845423699998 ], [ -117.381252285399995, 47.653855957099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400, "random": 67.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.736039871299994, 48.986505083899999 ], [ -122.734938343799996, 48.989098350900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600, "random": 85.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.739633872200002, 47.8911395035 ], [ -122.7323375199, 47.889896867600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 75.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853529322100002, 47.119197753900004 ], [ -119.844942993399997, 47.109462068699997 ], [ -119.832449934699994, 47.104225926799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300, "random": 137.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048778895200002, 46.340650080300001 ], [ -117.050199969199994, 46.340770072600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700, "random": 154.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.693498972900002, 47.504267856699997 ], [ -117.707163542100005, 47.506718892199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000, "random": 46.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274507670399998, 48.4947462696 ], [ -122.269198387, 48.496735426400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600, "random": 40.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.376473190699997, 46.071652278400002 ], [ -118.359283416699995, 46.069578111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000, "random": 63.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.987609849699993, 46.137842902099997 ], [ -122.9772037818, 46.131475035900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000, "random": 135.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.969933722600004, 47.859195632 ], [ -121.965613591099995, 47.858227985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600, "random": 87.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.055720622199999, 47.138818733199997 ], [ -122.056272845799995, 47.140579682099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400, "random": 125.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.046585282699994, 47.244285264200002 ], [ -121.056774523399994, 47.248912239699997 ], [ -121.058417653500001, 47.257382574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000, "random": 80.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.020399747699997, 46.724650474699999 ], [ -124.052929368899996, 46.727878201400003 ], [ -124.077634417499993, 46.739899191200003 ], [ -124.080364486099995, 46.745280488500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000, "random": 152.929 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.876496051199993, 46.187636732 ], [ -119.853374581599994, 46.185913358800001 ], [ -119.7720886189, 46.195745774899997 ], [ -119.751849100699999, 46.203691501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100, "random": 195.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.683336977899998, 45.632826922100001 ], [ -122.691426359499999, 45.635858138700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000, "random": 53.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593089756500007, 47.642918812600001 ], [ -117.590546161600003, 47.642919808899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000, "random": 117.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.962783807199997, 46.122637066 ], [ -122.950614760899995, 46.116489802300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000, "random": 111.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206978686499994, 47.878310343700001 ], [ -122.206675659599995, 47.888594155600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000, "random": 199.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.261389296200001 ], [ -119.481945285799995, 46.252083253199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000, "random": 5.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.101069391699994, 47.945623791300001 ], [ -122.101466101499994, 47.953296692599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500, "random": 149.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.101630023200002, 48.154751719700002 ], [ -117.062662945900001, 48.175291644300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000, "random": 8.722 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435249748800004, 47.247047007 ], [ -122.435645795100001, 47.249449369799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000, "random": 39.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.449178166500005, 48.776042751399999 ], [ -122.445297398199997, 48.7767299988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000, "random": 163.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128253515300003, 47.687407080900002 ], [ -122.121615187200007, 47.676595685599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000, "random": 132.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.532036854400005, 47.672053053100001 ], [ -122.539356012400006, 47.679508670799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": null, "random": 189.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.508682291299998 ], [ -120.630695250499997, 47.511765176499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400, "random": 64.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907862545300006, 46.952805237200003 ], [ -122.914223824800004, 46.952800067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000, "random": 97.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.170253539900003, 46.7278386224 ], [ -117.167652506400003, 46.726238503700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000, "random": 65.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.969447341600002, 47.843075742800004 ], [ -121.970153865499995, 47.844960878599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100, "random": 155.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.828198165900005, 46.391360921900002 ], [ -123.820890344099993, 46.382916336 ], [ -123.802603124800001, 46.376002249599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000, "random": 125.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.086751526200004, 46.265575562400002 ], [ -119.089465752799995, 46.273488750600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000, "random": 118.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293397033700003, 47.910813296699999 ], [ -122.297484794799999, 47.9152081943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": null, "random": 54.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.042294462100003, 47.385609201599998 ], [ -118.877912719799994, 47.329922196399998 ], [ -118.8574529391, 47.319482191900001 ], [ -118.808522019199998, 47.315432174400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000, "random": 131.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.387370638700006, 46.467004185500002 ], [ -120.348739687399998, 46.444837030599999 ], [ -120.338862597800002, 46.424569283700002 ], [ -120.320029378900003, 46.416952264800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000, "random": 45.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.932855200100001 ], [ -122.671705466099993, 48.941482030899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000, "random": 101.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.285599041099999, 47.294343061399999 ], [ -121.2804778056, 47.2793125532 ], [ -121.270037992300004, 47.271237726800003 ], [ -121.235455507599994, 47.267507643800002 ], [ -121.193814887200006, 47.253304627399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000, "random": 25.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.393823270400006, 47.158137239699997 ], [ -122.363718605399995, 47.1582777108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400, "random": 119.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.748239795499998, 48.9864873577 ], [ -122.751462042399993, 48.988601174099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700, "random": 131.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305721706699998, 48.339435954800003 ], [ -122.295473367200003, 48.336979776200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810, "random": 76.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.214900463899994, 48.176768044100001 ], [ -124.203018147199998, 48.180455031199998 ], [ -124.195832008500005, 48.177621238699999 ], [ -124.165136415399999, 48.1913499188 ], [ -124.156893121600007, 48.189540328100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90, "random": 133.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916118413600003, 46.92713066 ], [ -121.963812764, 46.937772959500002 ], [ -121.979778453400002, 46.951892658399998 ], [ -121.992179434099995, 46.953076988 ], [ -122.003835838499995, 46.960991349799997 ], [ -122.018193319600002, 46.978708082399997 ], [ -122.015936576100003, 46.994273453300003 ], [ -122.037859592700002, 47.013831526300002 ], [ -122.039544621900006, 47.033662887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900, "random": 61.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247115922099994, 48.985535873800004 ], [ -122.247857996500002, 48.9927289918 ], [ -122.262812267699999, 48.992749594800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480, "random": 124.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.190686371200002, 47.838280048599998 ], [ -117.175819752799995, 47.834600076800001 ], [ -117.168515688100001, 47.847325751200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000, "random": 127.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632914151400001, 47.571068204600003 ], [ -122.632907041400003, 47.572695391300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000, "random": 137.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.176899997099994, 47.238944811700001 ], [ -121.167410245900001, 47.230914669100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000, "random": 82.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190403113499997, 47.773647266099999 ], [ -122.195418512399996, 47.784730909 ], [ -122.206475225600002, 47.791083140399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710, "random": 29.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.250105687200005, 47.4783678971 ], [ -118.254669381300005, 47.479786644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000, "random": 145.085 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923246241499996, 46.773207573400001 ], [ -122.910425015399994, 46.779577882200002 ], [ -122.894846332100002, 46.798680341800001 ], [ -122.875027461200006, 46.795522263400002 ], [ -122.863550784500006, 46.8063295169 ], [ -122.861547543699999, 46.850109919399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000, "random": 144.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304976714299997, 48.832388806399997 ], [ -122.296485317, 48.840044763199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000, "random": 148.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.215732162400002, 47.878264253300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": null, "random": 150.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.807194764200005, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000, "random": 194.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.299961998800001, 47.660377680700002 ], [ -122.298324518, 47.661060041399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000, "random": 98.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321901880599995, 47.332697738599997 ], [ -122.317780212100004, 47.335423352100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000, "random": 20.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658351202600002, 47.871160854099998 ], [ -122.639256115600006, 47.867730523600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000, "random": 179.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.556305050399999, 45.616735027099999 ], [ -122.563018940700005, 45.641866075400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850, "random": 164.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.760830541199994, 48.112587725399997 ], [ -122.7602906483, 48.11202882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300, "random": 39.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320569675100003, 48.884244666400001 ], [ -122.320553420799996, 48.891030585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100, "random": 72.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.178870895599999, 47.650335905799999 ], [ -118.16241258, 47.653636113200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000, "random": 84.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291357602399998, 47.899252708399999 ], [ -122.292951033600005, 47.905080688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": null, "random": 12.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.235963051599995, 47.098099812699999 ], [ -119.177412450299997, 47.092857525399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000, "random": 105.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.560438579899994, 47.285820962099997 ], [ -122.569522175499998, 47.2976027952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000, "random": 105.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144965710299999, 47.782134968100003 ], [ -122.144077016799997, 47.783849264600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000, "random": 13.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.051788297199998 ], [ -122.159282954700004, 48.053711065500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000, "random": 46.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187659689399993, 47.765906531200002 ], [ -122.190403113499997, 47.773647266099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100, "random": 50.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.957297598699995, 46.535353420699998 ], [ -121.90788364, 46.534078826600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": null, "random": 146.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.901327047799995, 48.048282498799999 ], [ -119.903180645099994, 48.0520592106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000, "random": 162.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244613142399999, 47.3498974886 ], [ -122.244529904100006, 47.361148228799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000, "random": 192.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.484675827499998 ], [ -122.252591198299996, 47.484034392399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800, "random": 34.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.091587142099996, 47.1407602078 ], [ -122.077350334, 47.139092994400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000, "random": 125.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.389504835099999, 46.011689678300002 ], [ -118.388880896499998, 46.023864194700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400, "random": 92.719 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978590577099993, 46.312565612199997 ], [ -119.979144045400005, 46.317064306299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000, "random": 92.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.700325316700003, 47.757666899199997 ], [ -118.613528094399996, 47.757899158199997 ], [ -118.547873384, 47.763398537599997 ], [ -118.5164209056, 47.758662661400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": null, "random": 40.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.317659566200007, 47.430224949500001 ], [ -120.319453417, 47.432412369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000, "random": 14.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.106683647099999 ], [ -123.41797883, 48.113857708300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000, "random": 142.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.574740916099998 ], [ -122.106841988200003, 47.568936548499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200, "random": 187.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.367348161699994, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.778971992800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": null, "random": 77.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.472142585900002 ], [ -120.323545995499998, 47.476904531599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": null, "random": 87.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.151117993100002, 47.883422456 ], [ -120.129590621600002, 47.8811242831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000, "random": 41.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.335221147499993, 47.713217372499997 ], [ -121.290688, 47.7127258764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000, "random": 151.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885558695599997, 46.243136327400002 ], [ -122.884496518500001, 46.256196953100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310, "random": 180.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.666884878100007, 47.090319640600001 ], [ -118.666904292400005, 47.098835126799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100, "random": 52.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.931899796400003, 48.270673013500002 ], [ -121.9062086717, 48.275000228700002 ], [ -121.888743691900004, 48.271523789100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740, "random": 116.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.074089992300003, 47.221197500099997 ], [ -117.073001201099999, 47.2221634757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000, "random": 82.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244302140900004, 47.302712250399999 ], [ -122.232938177099996, 47.303522884400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100, "random": 97.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907643551800007, 46.276932524700001 ], [ -122.905691619400002, 46.282456889599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000, "random": 182.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.649040017399997 ], [ -121.155209171400003, 45.649156826899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": null, "random": 146.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.998759055299999 ], [ -119.657929994699998, 47.999466185099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800, "random": 98.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218554959100004, 45.566170939899997 ], [ -122.201299056699995, 45.569871605899998 ], [ -122.195285283600001, 45.574473495500001 ], [ -122.192679317200003, 45.584736358500002 ], [ -122.1788052048, 45.588814009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000, "random": 75.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204347122200005, 47.9819297636 ], [ -122.205738671700004, 47.981949443399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500, "random": 48.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.568417730799993, 46.794722484399998 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000, "random": 195.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.344498386400005, 47.694213665299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000, "random": 165.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.915731495200006, 46.166789577800003 ], [ -122.911903540099999, 46.176592032800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000, "random": 153.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.037369215300004, 45.664174095600004 ], [ -120.981077636899997, 45.663863346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600, "random": 26.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.591579081299997, 46.474002727600002 ], [ -117.564276224, 46.474793767599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": null, "random": 81.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.067706026300002, 47.300839926899997 ], [ -120.066084082499998, 47.278248682499999 ], [ -120.077221051400002, 47.253937242500001 ], [ -120.072938281099994, 47.243304156299999 ], [ -120.057899472599999, 47.236158248 ], [ -120.035227518799999, 47.237171542900001 ], [ -119.999184879200001, 47.231264707299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200, "random": 176.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.222936962700004, 47.5343029792 ], [ -124.273133342400001, 47.540782054399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700, "random": 149.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024188294699997, 46.149871227699997 ], [ -119.029850228900003, 46.153645635499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500, "random": 6.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143442866699999, 48.931350329399997 ], [ -122.151589597300003, 48.946090996400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000, "random": 177.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313524644099999, 47.289689111500003 ], [ -122.300652700900002, 47.2899013547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400, "random": 55.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.744893128599998, 45.8153696587 ], [ -122.731933222199999, 45.815377897 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000, "random": 141.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313571236499996, 47.286134394100003 ], [ -122.313524644099999, 47.289689111500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780, "random": 112.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.997219649499996, 45.857574439399997 ], [ -120.952623287600005, 45.860952834099997 ], [ -120.952162535900001, 45.849938263600002 ], [ -120.942052363499997, 45.8461706302 ], [ -120.936832901399995, 45.832580091300002 ], [ -120.90654952, 45.831900140800002 ], [ -120.904476184399996, 45.824738004899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280, "random": 17.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251525721500002, 46.041766317099999 ], [ -117.244180480699995, 46.044799921200003 ], [ -117.238095494700005, 46.057134034900002 ], [ -117.239096413499993, 46.050618201399999 ], [ -117.235274718100001, 46.050415087799998 ], [ -117.239812356599998, 46.045254441499999 ], [ -117.230150147299995, 46.051342125700003 ], [ -117.230384437699996, 46.054464388 ], [ -117.234291444500002, 46.053431851399999 ], [ -117.228922887099998, 46.066230322599999 ], [ -117.217284415799995, 46.072089277099998 ], [ -117.209026307299993, 46.070783367499999 ], [ -117.210209924300003, 46.074255343600001 ], [ -117.187226967499996, 46.079976377500003 ], [ -117.177570731599999, 46.0877797821 ], [ -117.159465751499994, 46.090452552599999 ], [ -117.14576963, 46.099859828900001 ], [ -117.135466964200006, 46.115676721100002 ], [ -117.130739594, 46.137900051599999 ], [ -117.121720564200004, 46.148960802 ], [ -117.081703619799995, 46.174507460800001 ], [ -117.079240474599999, 46.186540096400002 ], [ -117.071540468899997, 46.195922281199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000, "random": 173.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.534381227799997 ], [ -117.905530764600002, 48.536362987700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000, "random": 13.286 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926121849899999, 46.122971713699997 ], [ -122.925898762, 46.123423944700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800, "random": 183.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.956475352799998, 46.711286950599998 ], [ -122.9543423418, 46.716240117700004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000, "random": 191.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.306076549499998 ], [ -119.968528090199996, 46.303720239100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600, "random": 36.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.669601332299997 ], [ -122.469021541100005, 45.664782696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000, "random": 145.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.656406237200002, 47.096673849200002 ], [ -118.623474841199993, 47.096914726100003 ], [ -118.570348396100002, 47.110895053199997 ], [ -118.500173933400006, 47.110755101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000, "random": 13.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.439007811799996, 47.624062479899997 ], [ -117.444732982900007, 47.632699017299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": null, "random": 198.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.489047915200004, 47.528097962300002 ], [ -120.45450523, 47.520787201099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000, "random": 198.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.909723769199999, 47.190106762600003 ], [ -120.921315964399994, 47.192773287900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000, "random": 23.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.549949749600003, 45.780646633700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600, "random": 108.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.266897083299995, 48.006793175399999 ], [ -118.247623398299993, 48.0127941378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900, "random": 25.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077280059299994, 48.924155999 ], [ -122.065651371300007, 48.9198042616 ], [ -122.054908145699997, 48.921324041299997 ], [ -122.047416962499994, 48.927722103299999 ], [ -122.034031109400004, 48.927868621199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50, "random": 68.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.508294435500005, 48.992025951599999 ], [ -118.503755893900006, 48.999943455500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000, "random": 92.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.815529775599998, 48.068412549100003 ], [ -122.8179486123, 48.071156388600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000, "random": 198.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.816707412599996, 46.9748418645 ], [ -123.824934680200002, 46.970652030700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000, "random": 8.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.173708393699997, 46.811531078199998 ], [ -119.154802210699998, 46.811576170199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000, "random": 54.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.471136370499998 ], [ -122.335721940799999, 48.471719653599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400, "random": 74.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.889569424300007, 46.439612233699997 ], [ -122.888204153700002, 46.439528325600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000, "random": 181.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.830633641600002 ], [ -122.126056682500007, 47.833819378100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000, "random": 107.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": null, "random": 87.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201226112499995, 47.874421860799998 ], [ -120.165824557700006, 47.860183266699998 ], [ -120.152582169300004, 47.860201246599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000, "random": 51.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.123284544300006, 46.248662601600003 ], [ -119.110563041199995, 46.248522956800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000, "random": 27.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.489969530099998, 45.724018802 ], [ -121.482884856799998, 45.722539983099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000, "random": 189.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.169866038799995, 46.341031590900002 ], [ -120.084882845199999, 46.328472961599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530, "random": 79.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690909899700003, 47.275779749199998 ], [ -118.690410114200006, 47.321422089899997 ], [ -118.686095423500007, 47.326048138 ], [ -118.692493076, 47.328344410299998 ], [ -118.692298812199994, 47.332496083700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": null, "random": 54.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.953679130500007, 47.233042477 ], [ -119.896682750599993, 47.232740356299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900, "random": 198.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.153247686300006, 46.270134871800003 ], [ -118.140718703700003, 46.270164958499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700, "random": 115.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.735063893900005, 48.030824420599998 ], [ -122.729957308199999, 48.0326119562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100, "random": 163.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.758662661400002 ], [ -118.505479518300007, 47.758430550299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710, "random": 105.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.082852740600003 ], [ -118.692277205300002, 48.094496996300002 ], [ -118.700208137700002, 48.1040161548 ], [ -118.692590506599998, 48.1252812428 ], [ -118.693035150900002, 48.143953366399998 ], [ -118.704233767299996, 48.1595006242 ], [ -118.714274046599996, 48.200701454600001 ], [ -118.704767720199996, 48.226073293200002 ], [ -118.694715909600006, 48.2401285718 ], [ -118.691502671099997, 48.255403882800003 ], [ -118.692862086900007, 48.264486287700002 ], [ -118.703840774599996, 48.269305853100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000, "random": 190.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.888033564200001, 47.567584502 ], [ -121.886444128799994, 47.5692233555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200, "random": 53.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370412417500006, 45.9461267079 ], [ -122.362274978800002, 45.955914037299998 ], [ -122.375570848, 45.964334714400003 ], [ -122.370005061300006, 45.969065915599998 ], [ -122.369299975199993, 45.976829447900002 ], [ -122.355639000400004, 45.989233166399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000, "random": 95.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.419099415200002 ], [ -122.295248680200004, 47.430983851400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000, "random": 159.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.393602726300003 ], [ -122.293108524199994, 47.392427434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000, "random": 87.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.138075286900005, 47.578657203900001 ], [ -122.123054938, 47.574740916099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000, "random": 177.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181098346799999, 47.579760287200003 ], [ -122.176099475200004, 47.580180733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000, "random": 50.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.973359107199997 ], [ -123.593318681499994, 46.978376439100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370, "random": 101.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974348339900004, 47.316068813 ], [ -117.982998962799996, 47.326497824199997 ], [ -117.983716812500006, 47.333803713199998 ], [ -118.001206519600004, 47.333943911699997 ], [ -118.005335260600006, 47.342231346200002 ], [ -118.019038024500006, 47.345560570499998 ], [ -118.041334448499995, 47.358326063699998 ], [ -118.085982431700003, 47.347843428 ], [ -118.100916135800006, 47.352425402100003 ], [ -118.118501650200002, 47.374970300299999 ], [ -118.166505006799994, 47.402760537 ], [ -118.182708976300006, 47.420132516800003 ], [ -118.188974968400004, 47.436269497700003 ], [ -118.184381702899998, 47.468219235699998 ], [ -118.192879460900002, 47.478116615700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000, "random": 165.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.911197239800003, 46.610010098099998 ], [ -122.927793161099999, 46.622196574599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": null, "random": 121.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.834408544200002, 47.612643410899999 ], [ -119.813196231899994, 47.612634348100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": null, "random": 77.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.970479080600001 ], [ -120.402914986699997, 46.971519895699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": null, "random": 117.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.054025982499994, 47.855326762899999 ], [ -120.047467202600004, 47.854848015199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000, "random": 103.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260420207400003, 47.201217628400002 ], [ -122.248800093100002, 47.205358269500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000, "random": 8.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186084026499998, 48.021915049900002 ], [ -122.181631231599994, 48.034487448100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100, "random": 65.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354687911200003, 47.203496109299998 ], [ -117.361690039, 47.210854100900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800, "random": 15.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.721923891800003, 47.763324445400002 ], [ -118.722593508499997, 47.770852469499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000, "random": 182.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699496916599998, 45.845401667700003 ], [ -122.705075456700001, 45.857927414499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500, "random": 18.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.043476330499999, 47.5508843024 ], [ -123.040786547600007, 47.539579815700002 ], [ -123.050357513400002, 47.529206217599999 ], [ -123.059297623, 47.5024290745 ], [ -123.074160424799999, 47.489790063500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000, "random": 127.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215732162400002, 47.878264253300003 ], [ -122.211100709899995, 47.878184265599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000, "random": 155.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185288907399993, 47.674292900899999 ], [ -122.182562213300002, 47.686153273599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200, "random": 30.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.033257147900002, 46.505364523600001 ], [ -124.028935226800002, 46.511817406699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000, "random": 146.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.308518342300005, 46.2931233698 ], [ -119.304742352800005, 46.293097353100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000, "random": 192.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.760492617899999, 45.933145426400003 ], [ -122.804950041799998, 45.960974781300003 ], [ -122.820947948200001, 45.976521508499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000, "random": 106.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.371877727300003, 48.104868243600002 ], [ -123.362749748699997, 48.108559920200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000, "random": 169.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177025547499994, 48.051845694900003 ], [ -122.167626886, 48.051788297199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": null, "random": 65.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292956606700002, 47.408097835 ], [ -120.292917287199998, 47.407953191799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000, "random": 33.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287576154700005, 47.858150705100002 ], [ -122.281965348300005, 47.864172748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000, "random": 31.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347888551400004, 47.157627397 ], [ -122.315042102800007, 47.158578655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000, "random": 147.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916264697100004, 46.145605350099999 ], [ -122.914753907600002, 46.150245296500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700, "random": 136.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.731933222199999, 45.815377897 ], [ -122.727008460899995, 45.815673419100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930, "random": 144.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.866802528500003 ], [ -121.530549912, 46.869005372 ], [ -121.522795043800002, 46.864961260800001 ], [ -121.5289737696, 46.869866351399999 ], [ -121.537161806, 46.86858299 ], [ -121.529484186299996, 46.871195929599999 ], [ -121.51710234, 46.8670852256 ], [ -121.514752992200002, 46.870096883199999 ], [ -121.517659688699993, 46.876195724699997 ], [ -121.505629367699996, 46.885854473899997 ], [ -121.480660576, 46.893928221400003 ], [ -121.443504086, 46.898375938199997 ], [ -121.420394895499996, 46.908116647100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": null, "random": 110.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.175173553899995, 47.767794879500002 ], [ -120.185928277200006, 47.767620503300002 ], [ -120.184058758700004, 47.782899352299999 ], [ -120.199643930600004, 47.804859922799999 ], [ -120.209305883300004, 47.826885866200001 ], [ -120.202354524499995, 47.840781316700003 ], [ -120.210418857799993, 47.8533002068 ], [ -120.202803984400006, 47.8632306636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000, "random": 45.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.777782415499999 ], [ -122.335328359100004, 47.777775342299996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100, "random": 20.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111012387700001, 46.904012754100002 ], [ -124.113183876600004, 46.908188825099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000, "random": 61.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.614235774899996, 46.6544908714 ], [ -120.594346368399997, 46.638631750199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540, "random": 139.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606439410099995, 47.343846301900001 ], [ -118.596116776700001, 47.347621765900001 ], [ -118.554800026099997, 47.348233731299999 ], [ -118.513580602399998, 47.358062065699997 ], [ -118.497006134399996, 47.3574102392 ], [ -118.453303690599995, 47.368668905900002 ], [ -118.340859362299994, 47.430227994699997 ], [ -118.296039426899995, 47.468252246200002 ], [ -118.256087151599999, 47.483856851399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000, "random": 153.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.331823643699998 ], [ -122.329243180199995, 47.331743374399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000, "random": 36.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.286789132300001 ], [ -122.896576102500006, 46.289316622500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000, "random": 63.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671691275200004, 45.622917794 ], [ -122.6679722011, 45.626404641100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700, "random": 70.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.878214631899993, 47.826987207599998 ], [ -122.875671430799997, 47.824142318100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": null, "random": 71.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.999039541099997 ], [ -119.1601933723, 47.028398647300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": null, "random": 49.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335546620299993, 47.469450059 ], [ -120.319580717500003, 47.471603209500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000, "random": 165.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182977455200003, 47.986938321099998 ], [ -122.182933121100007, 47.988551102700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000, "random": 156.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179669549600007, 47.699244791799998 ], [ -122.182057323600006, 47.709590182100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000, "random": 31.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.326950201700001, 47.408557191100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": null, "random": 11.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.511083533299995, 47.289512866899997 ], [ -119.470324502099999, 47.2726086288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000, "random": 199.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.399313164399999, 47.652035602700003 ], [ -117.384432401200002, 47.653845423699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000, "random": 29.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330308403700002, 48.239693958899998 ], [ -122.280950360700004, 48.235572681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800, "random": 32.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.838363531100001, 47.410922375600002 ], [ -122.829544315800007, 47.412774877300002 ], [ -122.820346137499996, 47.407048446300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000, "random": 85.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.525899249099993, 46.657957479399997 ], [ -120.523470564500002, 46.661985736299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000, "random": 15.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.986203267799993, 47.722900691500001 ], [ -121.985830348199997, 47.742682870899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": null, "random": 148.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.786847801899995, 48.101573517 ], [ -119.781151703399999, 48.104181729499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000, "random": 51.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207176229699996, 47.460991061 ], [ -122.207880765300004, 47.466571782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500, "random": 143.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.049170610700003, 48.187568367899999 ], [ -117.048155407699994, 48.1858130018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000, "random": 173.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.927065336300004, 47.8558599343 ], [ -121.861666793, 47.851004183500002 ], [ -121.830965119499993, 47.857991970500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800, "random": 44.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.393324315200005, 46.556351737500002 ], [ -120.385569175, 46.549998759200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100, "random": 171.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.568712757200004, 46.732258391 ], [ -121.560456892, 46.738490127799999 ], [ -121.556831556, 46.754691057599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800, "random": 153.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275303538700001, 46.553456335600004 ], [ -122.275195431499995, 46.5570314235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800, "random": 44.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.725780578599995, 48.156229186200001 ], [ -117.722712223299993, 48.168542211599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200, "random": 32.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.908386053900003, 46.981101741099998 ], [ -123.917970384499995, 46.9819334325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000, "random": 7.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.922241113200002, 46.146487239599999 ], [ -122.921891913799996, 46.146634318899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600, "random": 9.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984257470599999, 47.200949296 ], [ -121.981395463599995, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000, "random": 130.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296188563499996, 47.445261311700001 ], [ -122.295958375400005, 47.450660091700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000, "random": 116.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190996790900002, 47.980424217200003 ], [ -122.190960133, 47.981774674500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000, "random": 104.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276814935700003, 47.872663023800001 ], [ -122.276574087599997, 47.873402992099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400, "random": 92.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.748601067500005, 46.206079067600001 ], [ -119.747539303799996, 46.209412533399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650, "random": 146.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.556511898099998, 46.6435530173 ], [ -118.552551361799999, 46.644788750300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000, "random": 130.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206675659599995, 47.888594155600003 ], [ -122.202260042399999, 47.894649631 ], [ -122.206790649300004, 47.897200912700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000, "random": 166.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333605948400006, 48.417495423699997 ], [ -122.333025074099993, 48.417491268799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700, "random": 79.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284059821300005, 46.552903539500001 ], [ -122.2762378173, 46.552013002099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000, "random": 59.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.627433367600005, 47.534492499499997 ], [ -122.623732039299995, 47.533996747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600, "random": 7.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413560260899999, 48.732500641599998 ], [ -117.417472887399995, 48.746283143299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600, "random": 33.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813278595100002, 46.9750588263 ], [ -123.813512360700003, 46.975265630300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280, "random": 63.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.938416296599996, 47.373410272699999 ], [ -117.915039825099996, 47.398250499299998 ], [ -117.903488950799996, 47.422561879600003 ], [ -117.904320292500003, 47.437179247099998 ], [ -117.911079423700002, 47.445609022799999 ], [ -117.922223456899999, 47.450491284899996 ], [ -117.947802962300003, 47.452757322899998 ], [ -117.9564098516, 47.457678735899997 ], [ -117.949539913199999, 47.470371907900002 ], [ -117.951045493600006, 47.505546041800002 ], [ -117.919069388, 47.525262427100003 ], [ -117.920646192700005, 47.543270098599997 ], [ -117.925976860299997, 47.553377664499997 ], [ -117.920385247200002, 47.562746083699999 ], [ -117.940627768799999, 47.577733068299999 ], [ -117.937838489300006, 47.657930743599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300, "random": 35.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.133682051400001, 47.318666754900001 ], [ -123.111761060500001, 47.336906255800002 ], [ -123.104843365299999, 47.356962388699998 ], [ -123.074686488, 47.352705216300002 ], [ -123.073220077299993, 47.347496595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800, "random": 84.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.612560325800004, 48.333892043299997 ], [ -119.607763164600001, 48.3498164453 ], [ -119.602426876400003, 48.353805119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": null, "random": 44.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780943323499997, 48.1019970336 ], [ -119.781151703399999, 48.104181729499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000, "random": 32.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197881418400002, 46.229694839700002 ], [ -119.181516434599999, 46.226705456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000, "random": 151.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630091157500004, 47.828750694 ], [ -122.609729704700001, 47.851562278499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": null, "random": 32.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.242600533599997, 47.097918976899997 ], [ -119.245230842500007, 47.100412839699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000, "random": 133.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043624208300002, 47.905663460600003 ], [ -122.036750891599993, 47.900683868199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700, "random": 136.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275243482700006, 46.558324606299998 ], [ -122.2684521921, 46.568033511899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000, "random": 81.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383177258700002, 47.803115381799998 ], [ -122.377696220900006, 47.798612414700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800, "random": 57.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953673774899997, 46.728946156100001 ], [ -122.954310122899997, 46.719354594599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000, "random": 161.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.369699153200003, 47.653911932699998 ], [ -117.366468523400002, 47.653903994499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": null, "random": 108.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.355451271600003, 47.103965290799998 ], [ -119.337599522800005, 47.1039064442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000, "random": 99.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110832672900003, 48.050096806699997 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900, "random": 48.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.066814936599997, 46.126888887900002 ], [ -119.045457601400003, 46.122476811399999 ], [ -119.033084055200007, 46.1382539413 ], [ -119.016289419499998, 46.139440137500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500, "random": 113.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677077035600007, 45.632663080199997 ], [ -122.673833689800006, 45.631859894199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": null, "random": 116.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.652862503600005, 47.482823007 ], [ -120.649971590700005, 47.487666920300001 ], [ -120.633335995300001, 47.494922759600001 ], [ -120.632703036, 47.508682291299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000, "random": 39.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.921891913799996, 46.146634318899999 ], [ -122.919617324800001, 46.147218448 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000, "random": 109.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.030803482099998, 48.0385584263 ], [ -123.004448625699993, 48.0205093633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000, "random": 66.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274852247499993, 47.8718113531 ], [ -122.264316543600003, 47.883095025300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000, "random": 132.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729453772900001, 46.683375648199998 ], [ -123.729444855200001, 46.685617088800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300, "random": 181.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073018590499998, 47.2267941681 ], [ -117.071549412, 47.226814156700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000, "random": 189.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.566205816600004, 47.642947503 ], [ -117.560843662600007, 47.642884424899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000, "random": 51.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293924077300005, 47.080038511300003 ], [ -122.293794192500002, 47.082939788600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900, "random": 68.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.772702548799998, 48.537823519299998 ], [ -121.738462718600005, 48.535925892400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000, "random": 117.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121905390099997, 47.500530407799999 ], [ -122.112105333700001, 47.497294922400002 ], [ -122.097722760300002, 47.498851086400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200, "random": 160.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.910028470699999, 46.215109501 ], [ -118.876971723899999, 46.2152642916 ], [ -118.8462077967, 46.231297311900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600, "random": 70.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.125003599199999, 48.691547317400001 ], [ -118.127384378200006, 48.699816002200002 ], [ -118.124708804299999, 48.706432574499999 ], [ -118.134276810299994, 48.715546269400001 ], [ -118.129413443100006, 48.729316429299999 ], [ -118.1345781821, 48.739685525900001 ], [ -118.134534284899999, 48.754874284800003 ], [ -118.142801879199993, 48.773659770499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000, "random": 59.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.859381883899999, 47.040353374799999 ], [ -122.846634514399994, 47.043298773099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000, "random": 161.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225521381700005, 47.301972475200003 ], [ -122.217459721400004, 47.297124874700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000, "random": 10.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989326623300002, 47.858550461900002 ], [ -121.983023983600006, 47.863043263800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000, "random": 18.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.542797158699997, 47.262309813900004 ], [ -122.558955585, 47.2752600707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400, "random": 99.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.641825713900005, 47.834176160399998 ], [ -121.620781879299997, 47.835314958399998 ], [ -121.617312735499993, 47.831729195 ], [ -121.619364663799999, 47.826354869500001 ], [ -121.611657277, 47.819669337199997 ], [ -121.579864137300007, 47.812264536500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000, "random": 195.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.112160128799999, 47.242931552599998 ], [ -122.100789849099996, 47.225704153800002 ], [ -122.079794624900003, 47.210617842200001 ], [ -122.0162359001, 47.207421101199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": null, "random": 198.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.847725419500001 ], [ -120.090620372800004, 47.839698968800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000, "random": 117.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219472077800006, 47.479506736399998 ], [ -122.216468087400003, 47.4797552701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000, "random": 25.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197056867599997, 47.413407153100003 ], [ -122.197055607, 47.4196716079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000, "random": 108.454 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197652766600001, 47.528447926200002 ], [ -122.195658382399998, 47.535101455899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000, "random": 162.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.110832672900003, 48.050096806699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000, "random": 188.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.176977667300001 ], [ -122.183877881399994, 47.174736546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400, "random": 23.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.121081402499996, 46.190065032200003 ], [ -123.025496558200004, 46.176554459099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800, "random": 55.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.967530762799996, 46.710550664899998 ], [ -122.959860863399996, 46.711980420300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": null, "random": 53.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.245230842500007, 47.100412839699999 ], [ -119.246720142, 47.101776099600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880, "random": 76.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197765522899999, 48.6613912396 ], [ -119.175599727299996, 48.664465467399999 ], [ -119.170742696199994, 48.6669353976 ], [ -119.170938626199998, 48.671956166 ], [ -119.120441547900001, 48.686574606199997 ], [ -119.118814374099998, 48.701123824299998 ], [ -119.088964549899998, 48.714240826 ], [ -119.017399259599998, 48.725147710100003 ], [ -118.995678576200007, 48.732262710199997 ], [ -118.986449229800002, 48.7210608245 ], [ -118.9733997716, 48.722616011299998 ], [ -118.965824906899996, 48.727845524 ], [ -118.959594102699995, 48.726222653400001 ], [ -118.953184157600006, 48.718578255099999 ], [ -118.957603553400006, 48.700298359800001 ], [ -118.934596962200004, 48.687870096499999 ], [ -118.868836340499996, 48.671125088300002 ], [ -118.851204177400007, 48.659587123100003 ], [ -118.825235697699995, 48.661709479499997 ], [ -118.786436959200003, 48.651103998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": null, "random": 125.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.770798302800003 ], [ -120.143287073099998, 47.779560948399997 ], [ -120.135138303900007, 47.788744236299998 ], [ -120.128707418299996, 47.819718257399998 ], [ -120.103879243799994, 47.841016345500002 ], [ -120.093027113299996, 47.839093077199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": null, "random": 119.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.012783225299998, 47.839805990800002 ], [ -120.002363671200001, 47.8395520304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000, "random": 41.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.500910340399997 ], [ -122.644801591399997, 47.501961609200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000, "random": 130.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607696380799993, 46.942584212500002 ], [ -122.606541076799999, 46.941941313299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100, "random": 108.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.055967899899997, 46.341815561799997 ], [ -117.063990327699997, 46.351589107400002 ], [ -117.063194802, 46.368204376800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500, "random": 5.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.684912489699997, 47.701240726899997 ], [ -122.682703077799999, 47.701236210200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000, "random": 139.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352315237100001, 47.7871149729 ], [ -117.3512461081, 47.787090855099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000, "random": 153.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.845044421899999, 47.392821286699998 ], [ -117.833933902799998, 47.400546358100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000, "random": 184.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.404484347199997, 47.769196807699998 ], [ -117.402514188599994, 47.775377664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600, "random": 34.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726284757100004, 48.176220476499999 ], [ -117.733773391, 48.190477374899999 ], [ -117.743027244900006, 48.196204943700003 ], [ -117.715379481699998, 48.208231873599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000, "random": 78.572 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207880765300004, 47.466571782 ], [ -122.207939727699994, 47.469068922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100, "random": 153.768 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.889926040399999, 47.788750644499999 ], [ -117.8929652387, 47.810314659399999 ], [ -117.868890821199997, 47.839286458300002 ], [ -117.853074304499998, 47.837525220300002 ], [ -117.8559886683, 47.847262528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000, "random": 85.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344733938499999, 47.706554117800003 ], [ -122.345093507800001, 47.732289174899996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000, "random": 22.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.396987132299998, 47.237584311799999 ], [ -122.389177909500006, 47.234445270199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000, "random": 110.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.608756056199994, 48.255339874599997 ], [ -121.601735842799997, 48.255269148799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400, "random": 166.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.175989763899999 ], [ -117.045381435699994, 48.1774974633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000, "random": 76.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.036791997400002, 46.802544382500002 ], [ -123.012286397599993, 46.802428045600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000, "random": 153.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.826922042899994, 47.451325656100003 ], [ -122.82404435, 47.452724593500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000, "random": 175.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.535794516899998, 46.915604535500002 ], [ -121.544808561400004, 46.895796151200003 ], [ -121.539279495800002, 46.879268564 ], [ -121.539784148, 46.866802528500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800, "random": 177.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314606942300003, 46.403812259600002 ], [ -120.314605349900006, 46.393047799199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000, "random": 17.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.118247955200005, 46.824068652 ], [ -123.097038422799997, 46.8218084668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000, "random": 96.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411193487199995, 47.6661553637 ], [ -117.411184230499998, 47.664084168199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000, "random": 17.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.716366211899995, 47.8813080117 ], [ -122.683602066500001, 47.869477873599998 ], [ -122.658351202600002, 47.871160854099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300, "random": 110.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.387193219400004, 47.661914020600001 ], [ -117.379716311400003, 47.661938751100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700, "random": 82.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905841872400003, 48.5465546852 ], [ -117.907287510100005, 48.548539055799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000, "random": 153.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547485506900003, 45.785201757800003 ], [ -122.547235864699999, 45.811720037800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000, "random": 191.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.907289321699999 ], [ -122.207028983800001, 47.914243946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000, "random": 182.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.114431986499994, 47.165563315 ], [ -122.043046834799995, 47.158505120500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": null, "random": 52.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.194727604199997, 47.057704760599997 ], [ -119.215258356299998, 47.075122481199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000, "random": 57.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413437023900002, 47.653519803800002 ], [ -117.413427022500002, 47.653110738199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100, "random": 173.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212867549799995, 48.655877457400003 ], [ -122.208678243400001, 48.671540295299998 ], [ -122.192831035500006, 48.690654080500003 ], [ -122.202413423099998, 48.706271974400003 ], [ -122.2034031763, 48.720699274200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600, "random": 23.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.976232691199996, 46.321695543899999 ], [ -117.972796020800004, 46.3237819677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000, "random": 62.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.467423081800007, 48.738158788299998 ], [ -122.463797409400001, 48.749722479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000, "random": 97.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392433527099996, 45.579523637500003 ], [ -122.369303594900003, 45.579195230800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800, "random": 131.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.785311949099999 ], [ -117.916377799599999, 46.784529918200001 ], [ -117.9028685233, 46.788297571699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100, "random": 41.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.982029513699999 ], [ -122.214303316900001, 47.982048124400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000, "random": 157.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581542929400001, 48.463762046799999 ], [ -122.601808798899995, 48.491290470499997 ], [ -122.609634455600002, 48.493290848299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000, "random": 30.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314605349900006, 46.393047799199998 ], [ -120.314680302499994, 46.389563781200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610, "random": 191.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.911444977899997 ], [ -117.079932052299995, 46.911435068899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000, "random": 120.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231066910699994, 47.381651080899999 ], [ -122.231080053, 47.383307260599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600, "random": 171.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210814926099999, 48.308349596799999 ], [ -122.225963612699999, 48.310115165299997 ], [ -122.234367686100001, 48.315786019199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000, "random": 183.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144077016799997, 47.783849264600001 ], [ -122.1434566593, 47.790344373899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000, "random": 9.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293539254899997, 47.098614527599999 ], [ -122.293226289900005, 47.118364891100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000, "random": 139.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.555660958900006, 46.936196930900003 ], [ -122.554051004900003, 46.938020830100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800, "random": 175.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.695083687700006, 46.669070081500003 ], [ -123.683929235400001, 46.655606363499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000, "random": 198.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.156422077599998 ], [ -122.036347956, 47.158042872499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800, "random": 118.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.251843555400001, 46.331539616400001 ], [ -120.246165081599997, 46.327693020399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000, "random": 175.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217877603399998, 47.4696365374 ], [ -122.217836586399997, 47.470858336299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900, "random": 57.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.607441234600003, 47.594573299899999 ], [ -117.569178883700005, 47.594619977500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820, "random": 82.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.765380910600001 ], [ -118.646878596799993, 48.773768593699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100, "random": 120.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907878279900004, 46.947303939299999 ], [ -122.907862545300006, 46.952805237200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900, "random": 30.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.709580028600001, 46.8824221446 ], [ -123.714723801299996, 46.890466702200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000, "random": 35.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451971471799993, 48.964651037800003 ], [ -122.441323932299994, 48.96428992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000, "random": 105.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266703538399994, 46.863486567899997 ], [ -122.266717231599998, 46.865519286100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800, "random": 94.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.900869444700007, 47.186221290299997 ], [ -120.899961343100003, 47.187712731600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330, "random": 7.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659863915100004, 46.970594937100003 ], [ -118.6639343919, 46.974306665299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000, "random": 169.783 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.426498692500004, 46.995530410599997 ], [ -123.408296755899997, 46.999944815200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000, "random": 158.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313330040500006, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000, "random": 87.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.500173933400006, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000, "random": 43.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473637693100002, 48.718321439699999 ], [ -122.473686591399996, 48.725491598399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500, "random": 158.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953762576299994, 46.735381752099997 ], [ -122.953782416699994, 46.736692891399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300, "random": 82.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.153148232199996, 47.043350307399997 ], [ -124.1580458631, 47.044601999400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000, "random": 50.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.378220896599998, 47.772633437400003 ], [ -117.356706419099993, 47.781286752100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000, "random": 9.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187198009200003, 47.738498455299997 ], [ -122.185741568699996, 47.754859998100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540, "random": 16.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.243020091899993, 47.135105077299997 ], [ -117.231266883399996, 47.153245730199998 ], [ -117.205230499199999, 47.1675404896 ], [ -117.199232453899995, 47.177370832800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000, "random": 84.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.369303594900003, 45.579195230800003 ], [ -122.356148350200002, 45.5765439754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600, "random": 27.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.154802210699998, 46.811576170199999 ], [ -119.133540258899998, 46.81166858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": null, "random": 148.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.736019593599998 ], [ -120.736880836500006, 47.721903015199999 ], [ -120.745850538100001, 47.697983781399998 ], [ -120.737315796, 47.689533732400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800, "random": 62.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.825809829599997 ], [ -123.118247955200005, 46.824068652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600, "random": 175.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.741345992600003 ], [ -117.242141715100004, 46.7585806572 ], [ -117.261732509699996, 46.759794574300003 ], [ -117.277256571300001, 46.772497546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": null, "random": 42.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228121380800005, 47.624127678900003 ], [ -120.228042091, 47.627788861799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000, "random": 110.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.002559608799999, 46.810008946899998 ], [ -122.9724799034, 46.860398040699998 ], [ -122.960098434499997, 46.898463150700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800, "random": 89.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.887405132300003, 46.979481806199999 ], [ -123.883914385099999, 46.977057906600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000, "random": 35.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243838936399996, 47.456863249199998 ], [ -122.245609145, 47.463812580099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100, "random": 190.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.320577083300002 ], [ -124.005822603200002, 46.322037676800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100, "random": 104.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.222910009800003, 47.573066742800002 ], [ -117.224735507399998, 47.5862739437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000, "random": 83.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293870047200002, 47.204398406 ], [ -122.293853606100001, 47.205180808400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000, "random": 52.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225634901099994, 47.3030417103 ], [ -122.225521381700005, 47.301972475200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000, "random": 85.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.209623774600004, 47.671722867500002 ], [ -117.179444856399996, 47.665768017300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200, "random": 156.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.388047876900004, 48.857011534900003 ], [ -117.376607488700003, 48.865664456099999 ], [ -117.372529039599996, 48.86403205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000, "random": 61.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.554051004900003, 46.938020830100001 ], [ -122.553834768499996, 46.952413496699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000, "random": 78.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.939132261799998 ], [ -122.4853467091, 48.946056784200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000, "random": 45.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354567975600006, 48.617470432600001 ], [ -122.357139855499994, 48.627319620199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000, "random": 141.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.339444431899999 ], [ -122.312363667300005, 47.347799161099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000, "random": 55.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656562609900007, 47.570330458100003 ], [ -122.653315631300003, 47.567379882300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000, "random": 14.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.991001614300004, 47.0450336894 ], [ -122.960202830200004, 47.0399823411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000, "random": 150.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637848629700002, 47.542187291499999 ], [ -122.6362542655, 47.541726008099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000, "random": 120.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.244831362599996, 47.6887168246 ], [ -117.239712502900005, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900, "random": 176.361 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.178513834300006, 46.644438357799999 ], [ -121.169763825299995, 46.647108488500002 ], [ -121.151781941199999, 46.644685082 ], [ -121.131939098399997, 46.654538566299998 ], [ -121.126372508900005, 46.664869244099997 ], [ -121.120364078199998, 46.665071150400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000, "random": 24.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570785594699998, 47.713968150699998 ], [ -122.592333752900004, 47.705804317899997 ], [ -122.614500727399999, 47.715477569100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000, "random": 18.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485347089399994, 48.891721005 ], [ -122.485340099, 48.906697669099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700, "random": 170.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137692842600003, 47.978193927200003 ], [ -122.137654272099994, 47.981326184399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400, "random": 163.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.613426266499999, 47.471353912 ], [ -117.607613926300004, 47.472278094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400, "random": 137.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303344193200004, 46.5641172674 ], [ -122.296621681100007, 46.5642108312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800, "random": 26.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.707163542100005, 47.506718892199999 ], [ -117.714815111799993, 47.514854791399998 ], [ -117.714928811799993, 47.530660338499999 ], [ -117.704477620199995, 47.548263456599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000, "random": 199.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.444060501300001, 47.158268456 ], [ -122.427613443799999, 47.1581515823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100, "random": 25.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.906568351900006, 47.102522463299998 ], [ -123.895831974399997, 47.110762699200002 ], [ -123.897945931, 47.118216256399997 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.134892608599998 ], [ -123.888992968500006, 47.144192540600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000, "random": 106.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313390933899996, 48.4356182605 ], [ -122.307978405499995, 48.435595460800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000, "random": 61.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407309262599995, 48.690169743399998 ], [ -122.449674891499996, 48.6936253155 ], [ -122.474557695200005, 48.703646174100001 ], [ -122.4754001915, 48.7114461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000, "random": 58.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.654549427500001, 45.717300241700002 ], [ -122.656990761200007, 45.732546164200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800, "random": 8.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.054383254299999 ], [ -117.620506636499996, 48.060076006499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300, "random": 117.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.351239545599995, 46.069099866199998 ], [ -118.356477484600006, 46.068884259900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500, "random": 193.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.717959422600003, 48.285470006399997 ], [ -117.819166039899997, 48.320150205300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000, "random": 121.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292458623200005, 47.733778690400001 ], [ -122.292441666499997, 47.735585142300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300, "random": 110.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226140987199997, 48.528254450399999 ], [ -122.226018055, 48.537578659499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000, "random": 36.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411184230499998, 47.664084168199999 ], [ -117.411097387599995, 47.686238881100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000, "random": 109.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229301542100004, 47.180660177199996 ], [ -122.229284166499994, 47.1772685985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000, "random": 132.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332281600300007, 47.467204479400003 ], [ -122.3299629869, 47.474841478899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000, "random": 123.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.112692130300005, 48.000211144399998 ], [ -122.106317910599998, 48.002878399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500, "random": 184.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143204017900004, 48.917388145700002 ], [ -122.143442866699999, 48.931350329399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000, "random": 42.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177835226900001, 48.046828316 ], [ -122.177025547499994, 48.051845694900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600, "random": 112.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.611206928599998, 47.594612786900001 ], [ -117.607441234600003, 47.594573299899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500, "random": 113.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.896576102500006, 46.289316622500003 ], [ -122.890796080300007, 46.301280442600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000, "random": 134.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.428490086700002 ], [ -122.622593568699997, 47.438378847099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000, "random": 151.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.076154776400003, 46.820639691700002 ], [ -123.070578495899994, 46.818061401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700, "random": 50.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.874470869500001, 45.824429695 ], [ -120.859747683400002, 45.8244297002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000, "random": 126.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.523562276800007, 47.978488490700002 ], [ -117.551496168100002, 47.993632692699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000, "random": 134.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.390124871799998, 47.393230258800003 ], [ -121.379639739699996, 47.386711917200003 ], [ -121.3634004667, 47.342296723300002 ], [ -121.351847411400001, 47.339440451500003 ], [ -121.343448944299993, 47.330498774200002 ], [ -121.328788046, 47.3253104992 ], [ -121.309937195499998, 47.307573398400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700, "random": 10.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908639489600006, 46.899146685399998 ], [ -122.905777602300006, 46.908129383400002 ], [ -122.907920452900001, 46.932682540099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000, "random": 28.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382101974199998, 46.204770148 ], [ -123.366284463200003, 46.197242044100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000, "random": 172.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263676331200003, 46.2591722166 ], [ -119.256337961900002, 46.251966726399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000, "random": 59.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.804100865599999 ], [ -122.377164761499998, 48.804134103800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000, "random": 148.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.910635348200003, 46.267561943099999 ], [ -119.884688452199995, 46.258716924600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000, "random": 199.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813512360700003, 46.975265630300001 ], [ -123.812351579500003, 46.975862692200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200, "random": 136.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385450857500004, 47.954115057599999 ], [ -124.389529876300003, 47.9579786515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720, "random": 28.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.613519309500006, 46.373222121399998 ], [ -122.599339156, 46.378240487100001 ], [ -122.592318549699996, 46.364142104300001 ], [ -122.575630911800005, 46.3701554294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920, "random": 28.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.076791396299996, 48.630228082800002 ], [ -118.080925071300001, 48.633569000800001 ], [ -118.080422326499999, 48.645851570799998 ], [ -118.0855460386, 48.656612635599998 ], [ -118.076118270500004, 48.662017481200003 ], [ -118.052819214600007, 48.665559054600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500, "random": 46.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.731910468699994, 48.027148628500001 ], [ -117.741432639699994, 48.045341383299998 ], [ -117.741461706699994, 48.054927261899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000, "random": 137.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.115157878700003, 47.667096279399999 ], [ -122.107099275699994, 47.669954242800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": null, "random": 151.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.554898095499993, 47.306482052600003 ], [ -119.540464836200002, 47.301657132800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200, "random": 172.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.543956415300002, 47.777004347499997 ], [ -117.532580146699999, 47.7818048655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000, "random": 46.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.003392430700004, 47.308701873099999 ], [ -122.003632927599995, 47.309464702200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": null, "random": 60.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.077111309399996, 47.762355573599997 ], [ -120.034694087099993, 47.774461055300002 ], [ -119.992806629900002, 47.7795776217 ], [ -119.970717980100005, 47.810311780500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400, "random": 17.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724712097600005, 47.014546030200002 ], [ -122.715520784500001, 47.012462492899999 ], [ -122.704248210700001, 47.016611338399997 ], [ -122.692908625800001, 47.012290862500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000, "random": 134.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563018940700005, 45.641866075400003 ], [ -122.56552133, 45.648308855899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000, "random": 136.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.583822528600002 ], [ -122.443282949099995, 45.578531253800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000, "random": 164.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321304667800007, 47.679899929599998 ], [ -122.321624579399995, 47.680978481499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700, "random": 115.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.404321633099997, 45.615225457 ], [ -122.408008438600007, 45.611584036899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000, "random": 194.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.098432778900005, 47.1898992789 ], [ -123.098249415300003, 47.195211623900001 ], [ -123.0921869405, 47.1998399079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600, "random": 63.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.752041545599994, 48.996105339800003 ], [ -122.752345439300001, 48.997156789599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000, "random": 12.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297804080899994, 47.8210601157 ], [ -122.292406555300005, 47.820973150699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000, "random": 191.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.232845233299997, 47.208378484400001 ], [ -118.215332571199994, 47.214509543600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000, "random": 116.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.443902727600005, 48.446021134799999 ], [ -122.431338853400007, 48.446287310700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400, "random": 37.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.111411386300006, 46.283072301399997 ], [ -118.090008747799999, 46.289245971699998 ], [ -118.036098662200004, 46.288326295600001 ], [ -118.003770001299998, 46.305320537199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100, "random": 118.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096605699199998, 46.626868397499997 ], [ -123.081386745100005, 46.6270365528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000, "random": 153.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446627369200002, 47.230157966900002 ], [ -122.434938931800005, 47.2327862223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400, "random": 145.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.186352443700002, 46.830341964500001 ], [ -123.160385207600001, 46.827035102099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800, "random": 56.697 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.357230480799998, 48.866178092299997 ], [ -117.352188943599998, 48.873500374199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000, "random": 134.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434907904200003, 47.099300405800001 ], [ -122.434751610199996, 47.112394316900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500, "random": 75.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883861749900007, 46.583840508400002 ], [ -122.839874060100001, 46.576032654499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610, "random": 39.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.395608745700002 ], [ -121.397342688899997, 47.3964612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000, "random": 14.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.369476906499997, 47.0202996688 ], [ -122.373428712899994, 47.025255627900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000, "random": 15.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.010716259500001 ], [ -123.352240649300001, 47.017684745399997 ], [ -123.332968547299998, 47.037354000699999 ], [ -123.315836318, 47.043999294099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200, "random": 51.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.265225939100006, 47.055633962400002 ], [ -123.268924316500005, 47.067984467800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000, "random": 168.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239688719100002, 47.686200289600002 ], [ -117.239712502900005, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000, "random": 12.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486004744400006, 48.795206026899997 ], [ -122.486012535699999, 48.800551579699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900, "random": 25.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210439985500003, 48.515958146599999 ], [ -122.194015632499998, 48.523674249099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000, "random": 183.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515764730499995, 47.279822397399997 ], [ -122.515758745799999, 47.281707768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000, "random": 182.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300652700900002, 47.2899013547 ], [ -122.298604580399996, 47.290674507299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830, "random": 177.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626968669099995, 47.563649620699998 ], [ -122.625307651400007, 47.562195788499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710, "random": 198.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.161062147699994, 48.801349192399996 ], [ -118.172585386, 48.828152150299999 ], [ -118.199527991300002, 48.841347176399999 ], [ -118.204962522100004, 48.861182790299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000, "random": 177.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197572222900007, 46.169229399400002 ], [ -119.17625049, 46.184932840099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800, "random": 52.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.231297311900001 ], [ -118.720525774400002, 46.297552084199999 ], [ -118.584339470700002, 46.296193138699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290, "random": 28.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974348339900004, 47.316068813 ], [ -117.945230383400002, 47.3491519572 ], [ -117.938685422399999, 47.362423437700002 ], [ -117.938416296599996, 47.373410272699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000, "random": 92.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.836099174300003, 45.676024127300003 ], [ -120.835036922100002, 45.682664960300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000, "random": 174.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.027451012900002 ], [ -118.380517254300003, 46.031811534299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210, "random": 94.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.168515688100001, 47.847325751200003 ], [ -117.158869180099998, 47.869560835900003 ], [ -117.131255097899995, 47.885976483900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200, "random": 37.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.123852411200005, 46.273750084299998 ], [ -118.111411386300006, 46.283072301399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000, "random": 5.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.641894565100003, 47.379505721400001 ], [ -122.626109567699999, 47.3846980617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000, "random": 99.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.899091142399996, 46.794010221199997 ], [ -118.75567632, 46.792100750400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000, "random": 17.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247422590499994, 47.385264943800003 ], [ -122.247431142099998, 47.386713606199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900, "random": 196.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.419919126400004 ], [ -117.058680005900001, 46.419926261500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800, "random": 30.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.535337776800006, 48.098941472 ], [ -123.514687829300001, 48.101668274700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000, "random": 157.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673143573900006, 47.568179933 ], [ -122.667648745600005, 47.568424242600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700, "random": 110.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.693336633499996, 46.576760556799996 ], [ -122.670955736699995, 46.582551110300003 ], [ -122.648386479099997, 46.601923836600001 ], [ -122.634550855100002, 46.608460121199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700, "random": 159.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634550855100002, 46.608460121199997 ], [ -122.626250840699996, 46.611923550500002 ], [ -122.592978153399997, 46.612777225199999 ], [ -122.540197422, 46.605002059199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000, "random": 196.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.643005397499998 ], [ -117.507145410299998, 47.643066968100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450, "random": 8.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.578300568299994, 48.544846913900003 ], [ -117.564749090399999, 48.551411905599998 ], [ -117.5555575339, 48.561967218100001 ], [ -117.553454897799995, 48.5736906307 ], [ -117.558822491100003, 48.5802438479 ], [ -117.559705992199994, 48.593892183199998 ], [ -117.550171145199997, 48.605263212899999 ], [ -117.543007573400004, 48.630926416 ], [ -117.519271549400003, 48.641346430399999 ], [ -117.513471449799994, 48.6474798721 ], [ -117.497475777800005, 48.6538530694 ], [ -117.488961395100006, 48.651669244700003 ], [ -117.4778840213, 48.657428848 ], [ -117.469810877399993, 48.673426829199997 ], [ -117.456139936599996, 48.672476686899998 ], [ -117.4533799294, 48.684483503 ], [ -117.434306536299999, 48.679670209199998 ], [ -117.431606750100002, 48.6833095812 ], [ -117.429309953499995, 48.681385824700001 ], [ -117.427504968700006, 48.689210634600002 ], [ -117.410840975200003, 48.685132151700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000, "random": 108.504 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.631866589399998 ], [ -122.670440581099996, 45.631853572600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000, "random": 170.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.778971992800003 ], [ -117.402735532, 47.781179547199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100, "random": 107.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.172114409299994, 48.450282224600002 ], [ -118.178243425600002, 48.454828474899998 ], [ -118.180432223300002, 48.463571220699997 ], [ -118.169561568199995, 48.473834848800003 ], [ -118.1731326389, 48.4834075634 ], [ -118.136999374200002, 48.5254134037 ], [ -118.1205170275, 48.559925222799997 ], [ -118.109930425100004, 48.569916878800001 ], [ -118.090171582, 48.570911693200003 ], [ -118.073641162300007, 48.581071736 ], [ -118.073392596600002, 48.584875433800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000, "random": 69.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628868229899993, 47.621337157900001 ], [ -122.628901394099998, 47.632234824900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500, "random": 9.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.220231876100002, 46.267966630899998 ], [ -118.169361525799999, 46.2688128518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000, "random": 36.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202351162699998, 46.134711391400003 ], [ -119.203612629, 46.116266121300001 ], [ -119.223404088600006, 46.0911748268 ], [ -119.224889202, 46.031730899199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": null, "random": 130.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297223348299994, 47.513955855399999 ], [ -120.280863748499996, 47.533979624200001 ], [ -120.254385786900002, 47.548897750499997 ], [ -120.254393566900006, 47.557319987200003 ], [ -120.230933677099998, 47.591719530200002 ], [ -120.226185244600003, 47.605363248099998 ], [ -120.228219080299993, 47.619337377400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100, "random": 166.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.119648738600006, 48.635004250500003 ], [ -118.112920045400003, 48.644273739699997 ], [ -118.113645171200005, 48.6614121482 ], [ -118.125003599199999, 48.691547317400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000, "random": 32.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505963270500004, 45.681974861699999 ], [ -122.505958291699997, 45.675826886400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300, "random": 48.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672677226600001, 45.632554433599999 ], [ -122.673838776899998, 45.632559899699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000, "random": 125.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.978490988800004, 46.672381097500001 ], [ -122.971575499699995, 46.680680636600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000, "random": 50.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.394695192900002, 47.757093937699999 ], [ -117.384990934100003, 47.766735284100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800, "random": 156.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521661144700005, 48.408142504 ], [ -119.521733143099993, 48.4069900346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900, "random": 61.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.897147694899999, 47.186874414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900, "random": 121.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.304381981399999, 46.081133974700002 ], [ -118.293989290900001, 46.082369212300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": null, "random": 109.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.550955143799996, 47.3216616972 ], [ -119.546962332099994, 47.327187273600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000, "random": 46.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304212781499999, 47.644095444100003 ], [ -122.304514492500005, 47.645285222699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000, "random": 173.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281643589599994, 47.491197644099998 ], [ -122.284234380800001, 47.496645891500002 ], [ -122.294824384099996, 47.498289333300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000, "random": 169.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253913809599993, 47.589252353500001 ], [ -122.239877959799998, 47.590805383499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200, "random": 100.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.772634005300006, 46.957213138599997 ], [ -123.786851206799994, 46.967101999900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870, "random": 172.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.379782915200003 ], [ -117.174249895399996, 47.386765967199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200, "random": 64.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495984081200007, 47.795839855 ], [ -122.495587689600001, 47.797525249099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000, "random": 13.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.219653668600003, 47.673730154700003 ], [ -117.209623774600004, 47.671722867500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000, "random": 112.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.466470167099999, 45.714803707500003 ], [ -121.465374470599997, 45.714393327700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400, "random": 123.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.535952920900002, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000, "random": 126.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262930243100001, 47.461922989500003 ], [ -122.257680961399998, 47.462429673300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000, "random": 77.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327202421899997, 47.485407254199998 ], [ -122.324930132099993, 47.494050853399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000, "random": 24.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472532295199997, 47.170111582799997 ], [ -122.466503179200004, 47.176321938900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500, "random": 51.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187759518799993, 47.081938472700003 ], [ -122.177075129499997, 47.082155805299998 ], [ -122.157935570399999, 47.091469010600001 ], [ -122.144423085900002, 47.1117933341 ], [ -122.133641732, 47.120378446799997 ], [ -122.134312964499998, 47.127974281 ], [ -122.127858372, 47.130963939099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000, "random": 180.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.361971859799993, 48.427754610500003 ], [ -122.348619877, 48.42175299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000, "random": 94.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.101162050699998, 47.207212564800002 ], [ -123.100990567899998, 47.208217873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400, "random": 162.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.893545103500003, 47.212482255300003 ], [ -117.913373348700006, 47.2329689301 ], [ -117.918958854699994, 47.245528497400002 ], [ -117.930306638700003, 47.253502631099998 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.298032189799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": null, "random": 40.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.005266057699998, 47.944909575600001 ], [ -119.007361139, 47.943315751599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000, "random": 99.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.815097401399996, 48.097207949 ], [ -122.813259501299996, 48.100401481399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000, "random": 91.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.977254482299998, 47.860853409100002 ], [ -121.969933722600004, 47.859195632 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000, "random": 175.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.922091829899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000, "random": 125.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.356664533599997, 48.465761159700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200, "random": 153.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.604052753100007, 48.8920780487 ], [ -122.617444360700006, 48.891747907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000, "random": 124.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313512649399996, 47.284003214499997 ], [ -122.313571236499996, 47.286134394100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000, "random": 173.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811926119600002, 46.952123449200002 ], [ -123.804648479700006, 46.958726717300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000, "random": 76.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.408296755899997, 46.999944815200003 ], [ -123.396041911699996, 47.002634929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200, "random": 60.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047517464899997, 46.474461423100003 ], [ -117.039751810200002, 46.480061668799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000, "random": 62.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564705970600002, 47.501189749200002 ], [ -117.564681711199995, 47.503963135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000, "random": 43.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.358205390599998 ], [ -119.043777732799995, 46.417275371599999 ], [ -119.028268493799999, 46.425247257700001 ], [ -119.024690463699997, 46.4313046328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500, "random": 15.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176420952499996, 46.767562564899997 ], [ -119.1764829488, 46.775469671700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": null, "random": 138.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.062181571899998, 47.649175315900003 ], [ -120.046486571299994, 47.644601957500001 ], [ -120.027698695, 47.624115890100001 ], [ -120.004422111899999, 47.621042911099998 ], [ -119.997191266499996, 47.612737743099999 ], [ -119.834408544200002, 47.612643410899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290, "random": 165.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.999816557599999 ], [ -118.662907646700006, 47.0795552087 ], [ -118.666884878100007, 47.090319640600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700, "random": 5.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.602040066900003, 48.259580257300001 ], [ -121.597016547500004, 48.272879412899997 ], [ -121.573681599500006, 48.284673753200003 ], [ -121.556182769499998, 48.301317863100003 ], [ -121.555153906599998, 48.311333202900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000, "random": 99.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.615444107900004, 47.504820946599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000, "random": 104.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312488370500006, 47.516734821100002 ], [ -122.32119741, 47.52336099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000, "random": 91.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249348690100007, 47.397617755600002 ], [ -122.249430835300004, 47.412208168699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300, "random": 46.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.854497924100002, 47.174925353799999 ], [ -120.850297723400004, 47.1752256328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000, "random": 95.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212564099800005, 47.921590993700001 ], [ -122.208424345899999, 47.919513115699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200, "random": 17.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.826291358800006, 46.757455186599998 ], [ -120.812730530799996, 46.750683834500002 ], [ -120.7884944778, 46.748308334100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100, "random": 158.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190996790900002, 47.980424217200003 ], [ -122.188574241400005, 47.980730406600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300, "random": 117.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.223043156099997 ], [ -117.073002491599993, 47.224069194400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100, "random": 46.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385537422400006, 45.579732123100001 ], [ -122.377695820100001, 45.580622760200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000, "random": 142.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.635694855799997, 47.565040098799997 ], [ -122.632929343599997, 47.565033362400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000, "random": 53.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215305772199997, 47.449957293700002 ], [ -122.217875041900001, 47.467115633500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": null, "random": 133.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.933656759300007, 48.052435164 ], [ -119.945798684500005, 48.0554741634 ], [ -119.959613368299998, 48.075767125200002 ], [ -120.006912248399999, 48.074198118 ], [ -120.023280871599994, 48.097388932699999 ], [ -120.010172526199995, 48.107961368700003 ], [ -120.011146644799993, 48.125285978500003 ], [ -120.004345499, 48.130411721 ], [ -120.008260941800003, 48.136621045399998 ], [ -120.042387539700002, 48.14314282 ], [ -120.066499598600004, 48.1555692556 ], [ -120.093399640200005, 48.181107116699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500, "random": 124.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483953405400001, 46.795471160200002 ], [ -118.394400316399995, 46.794857809699998 ], [ -118.377736913700005, 46.778042339700001 ], [ -118.363530173599997, 46.776225738299999 ], [ -118.318941215600006, 46.758863934899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000, "random": 7.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.925161936600006, 48.557993926 ], [ -117.936550431100002, 48.566794575300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000, "random": 88.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208930873499995, 47.809437448499999 ], [ -122.207231988299995, 47.8094477645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400, "random": 107.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908323311199993, 46.144437382500001 ], [ -122.907560117399996, 46.1465486719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000, "random": 35.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689141188199997, 47.683932213600002 ], [ -122.686912074800006, 47.693288397400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920, "random": 92.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.310434832400006, 46.756377710499997 ], [ -118.308445228899998, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500, "random": 102.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039537514299994, 48.183976228399999 ], [ -117.039552860800001, 48.182953896900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000, "random": 113.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.368678888199995, 47.115004149199997 ], [ -118.360231664899999, 47.1201988782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600, "random": 198.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.534078826600002 ], [ -121.778499806, 46.533836540800003 ], [ -121.757849323299993, 46.538880423400002 ], [ -121.735491287399995, 46.552653248200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000, "random": 58.095 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433966807700003, 47.206401298899998 ], [ -122.433972606799998, 47.207413103199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400, "random": 34.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.048710915699999, 46.7291966819 ], [ -119.086822704300005, 46.7395693677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": null, "random": 57.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.055065723799999 ], [ -119.857595908, 48.073214422600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000, "random": 69.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284409614099999, 48.3059359445 ], [ -117.283901925600006, 48.305182219599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000, "random": 24.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174164814199997, 46.737912873399999 ], [ -117.172787934200002, 46.739769734200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": null, "random": 113.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.974790843500003, 47.8173888452 ], [ -119.958056924499999, 47.85237627 ], [ -119.932979261400007, 47.858485205800001 ], [ -119.920256300700004, 47.873118329500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400, "random": 183.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.141047318800005, 47.664764855599998 ], [ -118.141127255200004, 47.703250923100001 ], [ -118.150278550199999, 47.711075863600001 ], [ -118.152428712399995, 47.722723446300002 ], [ -118.170377575200007, 47.7449382474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": null, "random": 45.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256687638100004, 47.112363657 ], [ -119.256713113299995, 47.116471302199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": null, "random": 162.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.323551961700005, 47.161804575200001 ], [ -119.329880551900004, 47.173255506899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000, "random": 83.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242300813300005, 48.238812016799997 ], [ -122.240777442300001, 48.238810643900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380, "random": 59.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.701864316499993, 48.078607276 ], [ -122.701618611800001, 48.085962439600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000, "random": 148.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341327669500004, 47.821450980100003 ], [ -122.335881339400004, 47.821450872100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000, "random": 77.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.303302551300007, 47.159893548299998 ], [ -118.292877678, 47.167144058600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": null, "random": 159.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.738029801699994, 47.162025528500003 ], [ -119.725560926300005, 47.169794972399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600, "random": 95.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.370628562199997 ], [ -124.053203924, 46.3755642012 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400, "random": 150.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364992514899996, 45.997101925700001 ], [ -122.400432161099999, 45.996368779400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000, "random": 193.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248800093100002, 47.205358269500003 ], [ -122.247035195199999, 47.223914254900002 ], [ -122.254672479700005, 47.242503585599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600, "random": 65.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.689663011899995, 48.0306013366 ], [ -122.691035371, 48.051247552699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000, "random": 199.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263980777200004, 47.675082619299999 ], [ -122.263567333599994, 47.675734394599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500, "random": 185.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.914222778500005, 46.056575632600001 ], [ -118.907596618699998, 46.056201396299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000, "random": 78.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.113857708300003 ], [ -123.420014403099998, 48.114684685299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790, "random": 20.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.644329631700003, 48.5973721967 ], [ -118.631443151499994, 48.596023515600002 ], [ -118.567910825799999, 48.6153465501 ], [ -118.565952585, 48.612231788300001 ], [ -118.544543882100001, 48.611507833200001 ], [ -118.527591791500001, 48.597047814 ], [ -118.513711910400005, 48.595243222 ], [ -118.509752482, 48.597062377599997 ], [ -118.515545926900003, 48.599558024 ], [ -118.512743502, 48.603296746799998 ], [ -118.478274150499999, 48.607220431099996 ], [ -118.458550925599994, 48.6047398165 ], [ -118.466097377200001, 48.608220733800003 ], [ -118.466188894300004, 48.612117931900002 ], [ -118.444458355199998, 48.611307733899999 ], [ -118.441765153199995, 48.629936669899998 ], [ -118.432870114099998, 48.621829994099997 ], [ -118.419859738499994, 48.624682760600002 ], [ -118.403671908899994, 48.621080540500003 ], [ -118.346492019799996, 48.597342514300003 ], [ -118.3089665113, 48.5891488571 ], [ -118.293268038899996, 48.579172332500001 ], [ -118.248791252700002, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000, "random": 23.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341074642799995, 48.435897211 ], [ -122.339797739, 48.435892029900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000, "random": 51.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286436785199996, 47.054106290100002 ], [ -123.275767478500001, 47.053812293299998 ], [ -123.261700467200001, 47.044745902300001 ], [ -123.251203279099997, 47.045282316300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600, "random": 36.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.584339470700002, 46.296193138699998 ], [ -118.564229176599994, 46.296122949599997 ], [ -118.552650364499996, 46.2885666946 ], [ -118.533822775700003, 46.290820586400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000, "random": 176.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.152082744599994, 47.701179935 ], [ -117.133293255400005, 47.7045387135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000, "random": 150.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.723272356499997 ], [ -117.144376428, 46.7217073773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000, "random": 174.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349645452600001, 48.006891476200003 ], [ -117.349664889600007, 48.017722257899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000, "random": 189.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501840835400003, 45.672127572199997 ], [ -122.488599286099998, 45.671834034299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420, "random": 105.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.372622271500006, 46.147436197 ], [ -118.384336109200007, 46.173192444400001 ], [ -118.381582691, 46.197844069299997 ], [ -118.393251195399998, 46.216571464300003 ], [ -118.369596328300005, 46.237150703300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400, "random": 182.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265450775100007, 46.869141366299999 ], [ -122.274121317300001, 46.876869981699997 ], [ -122.297828366700003, 46.874006170800001 ], [ -122.302654463400003, 46.878201674899998 ], [ -122.300696449699998, 46.885655934600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630, "random": 52.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.693699750099995, 48.906634052 ], [ -121.695932072600002, 48.9034555044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000, "random": 25.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730318212399993, 46.682339102299999 ], [ -123.729453772900001, 46.683375648199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600, "random": 111.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225111655199996, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.232841557300006, 48.603029983600003 ], [ -122.2181484826, 48.626466917400002 ], [ -122.212974645499997, 48.652713438100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000, "random": 90.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207007235500001, 47.904960629900003 ], [ -122.207060034, 47.907289321699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000, "random": 62.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.259303365400001, 47.257024668299998 ], [ -122.260742998300003, 47.268899057500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": null, "random": 109.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853456536899998, 47.190478665500002 ], [ -119.853410503099994, 47.219448708199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600, "random": 88.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885683715900001, 47.987020464300002 ], [ -122.884773839800005, 47.985575900699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000, "random": 110.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709777343400006, 47.632488696099998 ], [ -122.705059787699994, 47.643361435599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000, "random": 30.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.010921804399999, 46.169143498300002 ], [ -123.004795632699995, 46.1661237024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000, "random": 9.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552555247699999, 45.677831341699999 ], [ -122.552151748699998, 45.68208727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810, "random": 55.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.036809172100007, 46.397406746599998 ], [ -123.027368158599998, 46.4021888563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": null, "random": 151.687 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.610829685599995, 47.034561590700001 ], [ -120.608500123, 47.037484430200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000, "random": 90.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764636559600007, 47.052285571600002 ], [ -122.764951061299996, 47.043090291699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200, "random": 145.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.653194853800002 ], [ -118.157668452699994, 47.654046720899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000, "random": 164.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298504515100007, 47.39547624 ], [ -122.2947389534, 47.393602726300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000, "random": 163.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100990567899998, 47.208217873 ], [ -123.100278283400002, 47.211973236299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200, "random": 132.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.259072874500006, 45.559875325100002 ], [ -122.231353542799994, 45.561100054500002 ], [ -122.218554959100004, 45.566170939899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200, "random": 62.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907305875800006, 46.275376903 ], [ -122.907643551800007, 46.276932524700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": null, "random": 88.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.434715633099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300, "random": 42.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.733907703900002 ], [ -120.222795104200003, 45.742975333899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000, "random": 172.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.415017563099994, 48.001060961100002 ], [ -122.439416369699998, 48.0042427956 ], [ -122.454109795400001, 47.999610826900003 ], [ -122.461690018400006, 48.004296339200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200, "random": 73.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.205906906199999, 46.733752018300002 ], [ -117.201053661299994, 46.733760269299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000, "random": 56.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435054349400005, 47.083944887599998 ], [ -122.434931526, 47.097314452399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200, "random": 101.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356477484600006, 46.068884259900003 ], [ -118.356457815400006, 46.074867789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700, "random": 114.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953673774899997, 46.728946156100001 ], [ -122.953762576299994, 46.735381752099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000, "random": 74.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.853054034099998, 47.511870957699998 ], [ -121.8359319626, 47.513746622500001 ], [ -121.813496104400002, 47.4952951892 ], [ -121.802151302599995, 47.491269221700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100, "random": 35.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194201973800006, 46.765336616 ], [ -122.253935509900003, 46.785385082700003 ], [ -122.275474118700004, 46.799962383299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400, "random": 147.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511892241799998, 46.626064118499997 ], [ -120.511892390300005, 46.626211773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000, "random": 18.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.901294042700002, 46.153556146900002 ], [ -122.903046981700001, 46.1632969984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000, "random": 165.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.193721204799999, 46.733421816300002 ], [ -117.1864957616, 46.7314771721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600, "random": 136.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.474010406100007, 48.644148752900001 ], [ -119.468087418600007, 48.652635510300001 ], [ -119.472001648900005, 48.658440658 ], [ -119.470238379099996, 48.672824975600001 ], [ -119.450386834699998, 48.694933143299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400, "random": 115.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432670010899997, 47.298060625799998 ], [ -122.434434259, 47.2999575945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000, "random": 19.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813204082300004, 46.976649580699998 ], [ -123.814395560500003, 46.976034897300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000, "random": 172.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329103704700003, 47.746905411100002 ], [ -122.329330637, 47.750282030299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700, "random": 186.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.458839821599994, 46.542296331800003 ], [ -122.443120517500006, 46.542618453499998 ], [ -122.3866181203, 46.532630198900002 ], [ -122.366339486800001, 46.541955119599997 ], [ -122.343352711400001, 46.5461871073 ], [ -122.327708489599999, 46.544720647200002 ], [ -122.304327892, 46.5536935513 ], [ -122.284059821300005, 46.552903539500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000, "random": 83.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.816531071200004, 47.861761082 ], [ -121.797381755900005, 47.865036690099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000, "random": 49.253 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666431452599994, 45.628936169200003 ], [ -122.662273975700003, 45.6359541769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600, "random": 16.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.472295554799999, 47.762035526699997 ], [ -121.447920831, 47.746246104800001 ], [ -121.397646104299994, 47.727042968200003 ], [ -121.373545979, 47.711839309699997 ], [ -121.361024243299994, 47.711537211500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": null, "random": 5.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263371855399996, 47.638306306200001 ], [ -119.273375543499995, 47.674324566800003 ], [ -119.261594314800007, 47.714929188100001 ], [ -119.223094233400005, 47.750173504599999 ], [ -119.184373336299998, 47.7994133674 ], [ -119.137777039400007, 47.8249299577 ], [ -119.092601985599998, 47.868149586400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000, "random": 21.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266329677599998, 47.4869149652 ], [ -122.264866090300004, 47.491703250199997 ], [ -122.278134291900002, 47.503810530099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000, "random": 67.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486045841800006, 48.807775980499997 ], [ -122.4860064346, 48.811532211399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900, "random": 118.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.279490163099993, 47.717187422099997 ], [ -121.268427383299993, 47.714650480099998 ], [ -121.231444571599994, 47.718151091199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400, "random": 156.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045511900500003, 46.405807141300002 ], [ -117.045556290500002, 46.407257511799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130, "random": 123.388 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.547293361499996, 46.809731403400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000, "random": 179.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200, "random": 118.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885677573400002, 47.456866807899999 ], [ -123.911596226900002, 47.459380444499999 ], [ -123.923859645, 47.469176691500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800, "random": 141.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.488599286099998, 45.671834034299998 ], [ -122.4838115389, 45.669601332299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740, "random": 35.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.879828308199997 ], [ -118.602961059799995, 48.883680658899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700, "random": 56.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.168613105199995, 48.592225908400003 ], [ -118.1487240923, 48.588179482699999 ], [ -118.138547334500004, 48.605885063599999 ], [ -118.138157565900002, 48.616784387099997 ], [ -118.122722282300003, 48.627437196700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400, "random": 187.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.368204376800001 ], [ -117.055900839800003, 46.375029719799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000, "random": 168.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326823310600005, 47.455452040200001 ], [ -122.331248711399994, 47.4630152497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": null, "random": 24.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.699642433800001 ], [ -119.813493301400001, 47.703398905199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000, "random": 186.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298400040499999, 47.810449784 ], [ -122.282439766699994, 47.818971508799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000, "random": 19.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634901901099994, 47.541423549599998 ], [ -122.631275782100005, 47.542736967899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000, "random": 120.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428034605899995, 47.2286568082 ], [ -122.4318700022, 47.232465395200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000, "random": 134.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321705720500006, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600, "random": 35.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.371338407499998 ], [ -120.3200450577, 46.370271266899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000, "random": 47.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.103012937499997 ], [ -123.347335902300003, 48.1065914367 ], [ -123.323599047100004, 48.097567697800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500, "random": 6.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.683929235400001, 46.655606363499999 ], [ -123.682365185600005, 46.653719422899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000, "random": 119.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335313918300002, 48.3777532366 ], [ -122.3304605047, 48.395398995900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400, "random": 120.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.250397884899996, 47.489208102200003 ], [ -118.201298935500006, 47.530819933700002 ], [ -118.165389282600003, 47.5731302322 ], [ -118.162533537300007, 47.628203114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800, "random": 141.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189552282899996, 47.981753639600001 ], [ -122.188026520700006, 47.981696082200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400, "random": 74.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.990869454199995, 46.314935954600003 ], [ -117.976232691199996, 46.321695543899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500, "random": 94.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.006329476299996, 46.597462697399997 ], [ -119.0062862284, 46.665049294699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000, "random": 153.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.070683973300007, 47.656083693600003 ], [ -122.062691487199999, 47.656513354700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000, "random": 158.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.521601558199997 ], [ -121.956100259400003, 46.526670455900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900, "random": 13.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.299917084200004, 46.570027498100004 ], [ -123.298782994500002, 46.570037575500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800, "random": 167.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048155407699994, 48.1858130018 ], [ -117.046821640499999, 48.184334389599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000, "random": 66.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.592477569499998 ], [ -122.629176730099999, 47.602542402200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000, "random": 30.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570935883800004, 45.608022223200003 ], [ -122.567523710399996, 45.607301340100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000, "random": 152.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.684438964799995, 47.569585520099999 ], [ -122.683470598300005, 47.569596387099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000, "random": 198.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310957498199997, 47.8036768463 ], [ -122.298400040499999, 47.810449784 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900, "random": 137.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.754702693599995, 49.000477059600001 ], [ -122.7560316167, 49.002105786900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000, "random": 193.465 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.623147673700004, 46.247388389100003 ], [ -119.561988090200003, 46.266925669499997 ], [ -119.543004641899998, 46.265484455600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000, "random": 128.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.964206655200002, 46.175219826899998 ], [ -118.944422024100007, 46.160754929299998 ], [ -118.938095491400006, 46.145703599800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000, "random": 199.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885748099899999, 46.980644841100002 ], [ -123.887405132300003, 46.979481806199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000, "random": 182.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.151355371900003 ], [ -122.966420914300002, 46.148026853200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900, "random": 165.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.580670595800001, 46.885660649599998 ], [ -119.496037783899993, 46.867087036299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000, "random": 76.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228383378800004, 48.510483485499996 ], [ -122.225707636699994, 48.510474068599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000, "random": 149.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234498646800006, 47.881930069399999 ], [ -122.231700448599995, 47.881947714100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100, "random": 25.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.298782994500002, 46.570037575500002 ], [ -123.297649161500004, 46.57004764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000, "random": 16.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159282954700004, 48.053711065500003 ], [ -122.143016176299994, 48.053691370700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400, "random": 140.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.602961059799995, 48.883680658899998 ], [ -118.596057866699994, 48.892923052900002 ], [ -118.570254226100005, 48.908147445300003 ], [ -118.565603363899996, 48.918246327399999 ], [ -118.567017040300001, 48.926835929200003 ], [ -118.554464131700001, 48.945234088900001 ], [ -118.547780080300001, 48.952897832600001 ], [ -118.535707589599994, 48.956689139600002 ], [ -118.535316050500001, 48.962720426399997 ], [ -118.527808847599999, 48.96466224 ], [ -118.527014819300007, 48.979270572300003 ], [ -118.508294435500005, 48.992025951599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400, "random": 102.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.893927695299993, 46.993141810700003 ], [ -123.89576752, 46.994894794300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000, "random": 10.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.027146233699995, 46.218717987399998 ], [ -119.005115164200006, 46.203549009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700, "random": 173.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.199146895600002 ], [ -121.959928208899996, 47.199071826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000, "random": 161.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658847900599994, 47.084419417699998 ], [ -122.648398392, 47.0870048504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000, "random": 172.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.831365726599998, 47.536963829199998 ], [ -121.818240268300002, 47.5195028025 ], [ -121.784766034599997, 47.497869259700003 ], [ -121.787286583799997, 47.495120452199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910, "random": 27.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266717231599998, 46.865519286100003 ], [ -122.265443253900003, 46.866803346399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400, "random": 8.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140333593799994, 47.407055777499998 ], [ -123.140658202300003, 47.4063958443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300, "random": 62.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.169614650900002, 47.114894477900002 ], [ -124.170179750499997, 47.117562055400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": null, "random": 141.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985030158399994, 47.962080118599999 ], [ -118.979586832799995, 47.9655777499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100, "random": 15.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.084256158399995, 48.270597111900003 ], [ -120.054381129099994, 48.302216498900002 ], [ -120.052332428699998, 48.311117559499998 ], [ -120.054159302100004, 48.318300484799998 ], [ -120.073517983399995, 48.341795184600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000, "random": 126.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106841988200003, 47.568936548499998 ], [ -122.089028105400004, 47.559338976900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000, "random": 52.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.306701697199998 ], [ -122.003392430700004, 47.308701873099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": null, "random": 99.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540464836200002, 47.301657132800003 ], [ -119.511083533299995, 47.289512866899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000, "random": 102.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.688866910499996, 47.850447619400001 ], [ -121.685113262599998, 47.848515193700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": null, "random": 57.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.997062663899996, 47.839282063399999 ], [ -119.988693195, 47.831858359400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800, "random": 135.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.719695223200006, 46.918530600899999 ], [ -123.719926339799997, 46.929127072 ], [ -123.725596944599999, 46.934066637199997 ], [ -123.7341821694, 46.934487670800003 ], [ -123.765640039800005, 46.951272514899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000, "random": 70.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.192734459500002 ], [ -122.233798993899995, 47.191531117499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600, "random": 112.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.568033511899998 ], [ -122.251829467700006, 46.576354116499999 ], [ -122.242171044399996, 46.589172878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000, "random": 49.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.401167823799994, 47.574689448299999 ], [ -117.403113814, 47.587377182499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100, "random": 86.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.374466812500003, 47.612938518100002 ], [ -124.387585093300004, 47.658327919599998 ], [ -124.399384164400004, 47.675181022899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100, "random": 178.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396824529400007, 47.527430858599999 ], [ -117.400467428400006, 47.536405350400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000, "random": 56.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322886246899998, 47.8212957342 ], [ -122.3176863857, 47.821213939400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000, "random": 28.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900246505499993, 46.280731519100001 ], [ -122.906720867399997, 46.292249626500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000, "random": 62.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.660981036599999 ], [ -117.411184230499998, 47.664084168199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100, "random": 145.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.120364078199998, 46.665071150400003 ], [ -121.094687686200004, 46.667114901399998 ], [ -121.069524709099994, 46.677030287400001 ], [ -121.031274976600002, 46.672351954299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 19.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.289590062100004, 47.406038896399998 ], [ -120.287327632, 47.3995120011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400, "random": 128.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.045574354799996, 46.418180045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000, "random": 35.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219199176399997, 47.467699012399997 ], [ -122.204514745, 47.471240198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000, "random": 107.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675936023800006, 47.659448765 ], [ -122.679523123400003, 47.662857905 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": null, "random": 89.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.281561717599999, 47.129753712599999 ], [ -119.279016421, 47.131032577399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000, "random": 111.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581291760599996, 48.852425293 ], [ -122.584121356599994, 48.855268045400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300, "random": 156.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.839874060100001, 46.576032654499997 ], [ -122.783631913299999, 46.577250301799999 ], [ -122.740483576499997, 46.571200670099998 ], [ -122.719415844599993, 46.5756303426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600, "random": 189.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.814031488599994, 46.438120687500003 ], [ -122.803768033799997, 46.438116363900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000, "random": 27.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474034679799999, 46.531778940899997 ], [ -120.473632489099998, 46.539386031900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100, "random": 185.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.875069146900003, 46.241169451399998 ], [ -123.908889928299999, 46.24591744 ], [ -123.923083369699995, 46.253659694200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000, "random": 112.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.683738198399993, 47.566162133 ], [ -117.682656430799994, 47.567672217800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700, "random": 108.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005822603200002, 46.322037676800001 ], [ -124.005530761800003, 46.330932774300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000, "random": 36.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.658745078699994, 46.039408490699998 ], [ -118.618376446799999, 46.052427601799998 ], [ -118.590318347099995, 46.056768336099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": null, "random": 66.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.274000198099998, 47.133551295499998 ], [ -119.268238731400004, 47.136438738800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100, "random": 116.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.368059892399998, 46.302762493400003 ], [ -119.359215874499995, 46.303838941599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000, "random": 65.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528456185699994, 48.412367485300003 ], [ -119.513846497499998, 48.416820343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000, "random": 98.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.877917606599993, 47.669492940399998 ], [ -117.876637564500001, 47.669509908499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400, "random": 165.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380348873100004, 47.809725424200003 ], [ -122.380263885800005, 47.805983955499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000, "random": 96.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320209480599999, 47.679544030400002 ], [ -122.319748079199996, 47.681633366299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900, "random": 42.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485239836199995, 48.668069469099997 ], [ -122.487987734300006, 48.674750813800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000, "random": 104.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314996101099993, 46.382480047800001 ], [ -120.315006217600001, 46.380740113900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000, "random": 104.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.542815102200002 ], [ -122.334359019499999, 47.548548451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": null, "random": 59.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.858794341600003, 47.233334252200002 ], [ -119.854827819899995, 47.23342187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900, "random": 187.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.948955028699999, 46.845376988700004 ], [ -120.9198054238, 46.8088624381 ], [ -120.873089680800007, 46.791110633800002 ], [ -120.852016458, 46.772953741800002 ], [ -120.828010115799998, 46.764664162899997 ], [ -120.829623844899999, 46.7598306382 ], [ -120.826291358800006, 46.757455186599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800, "random": 184.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.089481469800006, 46.794082912 ], [ -124.091057119300004, 46.798829385600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000, "random": 47.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550990690500001, 45.6012653728 ], [ -122.552815713100003, 45.612150505899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000, "random": 33.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125415966899993, 47.358062176499999 ], [ -122.119955079299999, 47.3581151088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000, "random": 193.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313809808800002, 47.204468161800001 ], [ -122.3082844841, 47.202410391199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200, "random": 19.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.750392393200002 ], [ -124.318117613599995, 47.758716167599999 ], [ -124.285558002900004, 47.772692314099999 ], [ -124.275994782500007, 47.782098248799997 ], [ -124.253015192299998, 47.782266314099999 ], [ -124.249513006599997, 47.788139217900003 ], [ -124.252147575799995, 47.798129800600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200, "random": 163.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.345364542299997 ], [ -124.054761731100001, 46.345935959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000, "random": 181.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044267114199997, 46.4171675734 ], [ -117.041806177799998, 46.4188762721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200, "random": 6.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043384833600001, 46.308854520300002 ], [ -124.043382483900004, 46.311738539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000, "random": 83.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.098636280500003, 47.712113508 ], [ -117.068928025899993, 47.724161605600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000, "random": 143.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.123153926599997, 48.073268084699997 ], [ -123.108662332099996, 48.0731296075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400, "random": 101.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.674446665399998 ], [ -122.12152933, 47.673893233500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260, "random": 85.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.717799358099995, 47.855788432600001 ], [ -118.724477231099996, 47.865725622799999 ], [ -118.726298887200002, 47.861651810200001 ], [ -118.726665692300003, 47.866288751 ], [ -118.719381634300007, 47.872965003700003 ], [ -118.708130171, 47.8753570306 ], [ -118.718790448799993, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.695278346600006, 47.904651593 ], [ -118.697462099600003, 47.9153870731 ], [ -118.689698978, 47.918831830899997 ], [ -118.689657366199995, 47.926800027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000, "random": 99.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293853606100001, 47.205180808400002 ], [ -122.293910744200005, 47.206571607400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000, "random": 122.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.935795755699999, 46.138481177499997 ], [ -118.929965198399998, 46.123441249599999 ], [ -118.912557676899993, 46.099909023800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": null, "random": 116.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.661540138700005, 47.596128795299997 ], [ -120.657240849299995, 47.598358932399996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000, "random": 23.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292399687100001, 47.731803153800001 ], [ -122.292458623200005, 47.733778690400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000, "random": 36.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.075175116500006, 47.919765200500002 ], [ -122.066163770700001, 47.914320767100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000, "random": 93.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.975211354699994, 46.7336230278 ], [ -123.009632193300007, 46.792990391499998 ], [ -123.0095031858, 46.798359712500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000, "random": 62.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.235275246399993, 48.510504468 ], [ -122.233958638399997, 48.510507948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800, "random": 148.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.408008438600007, 45.611584036899998 ], [ -122.407719966299993, 45.610616827199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300, "random": 144.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.242171044399996, 46.589172878 ], [ -122.234256123899996, 46.599102378600001 ], [ -122.228913431099997, 46.619556014600001 ], [ -122.212368657499994, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.196027513399997, 46.678830972900002 ], [ -122.199475948699998, 46.704274646099996 ], [ -122.219318060700004, 46.725100626600003 ], [ -122.207953888600002, 46.733543559700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000, "random": 172.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.692446627600006, 47.852294339899998 ], [ -121.688866910499996, 47.850447619400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100, "random": 118.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.975040301799993, 46.404702300399997 ], [ -122.969891123699995, 46.401938255399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000, "random": 97.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.893429722299999, 46.5484187108 ], [ -123.916177315300004, 46.573512981199997 ], [ -123.919376863899998, 46.599048486299999 ], [ -123.914218501299999, 46.614399492899999 ], [ -123.923164002700005, 46.626471825499998 ], [ -123.919501275299993, 46.6405634658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800, "random": 44.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.459574139699995, 48.110067689200001 ], [ -123.444992339600006, 48.122498577499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000, "random": 137.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335377560200001, 47.251222220400003 ], [ -122.335522585199996, 47.2647220072 ], [ -122.322068257, 47.282622666400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700, "random": 166.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.439813485299993, 48.704571899400001 ], [ -119.438928498500005, 48.705561124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200, "random": 80.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.132279748499997 ], [ -117.243020091899993, 47.135105077299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500, "random": 58.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.086847589599998, 46.789299463299997 ], [ -124.089481469800006, 46.794082912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": null, "random": 22.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.306162506899994, 47.100752626800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000, "random": 131.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121769870700007, 47.994857270600001 ], [ -122.112692130300005, 48.000211144399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400, "random": 114.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.141418465699999, 47.506199375599998 ], [ -122.124828016699993, 47.500840259100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000, "random": 185.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.135129008199996, 47.640071799 ], [ -122.137740144700004, 47.653882365299999 ], [ -122.134945908, 47.661054174599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100, "random": 18.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.971224907800007, 46.509867260900002 ], [ -117.948634125400005, 46.5101973652 ], [ -117.933378364199996, 46.5226592223 ], [ -117.890691547499998, 46.545066264699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000, "random": 177.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.530963991599997 ], [ -121.971946803199998, 47.535619038900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520, "random": 180.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.581639639900004, 47.917669780399997 ], [ -124.5903548008, 47.917783212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900, "random": 67.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.352607275099999, 46.656816854 ], [ -121.341432663, 46.659413473699999 ], [ -121.338596938600006, 46.655945921399997 ], [ -121.309273345899996, 46.656902899599999 ], [ -121.280773722600003, 46.650732321299998 ], [ -121.272090374599998, 46.6447841556 ], [ -121.178513834300006, 46.644438357799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900, "random": 136.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.699941006700001, 45.923000308 ], [ -120.6965690225, 45.932484254899997 ], [ -120.658347041699997, 45.956264141699997 ], [ -120.653767463600005, 45.964120995199998 ], [ -120.653819625300002, 45.9965615172 ], [ -120.6409423299, 46.006740966400002 ], [ -120.640247159599994, 46.015923189900001 ], [ -120.622499665700005, 46.027136071699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000, "random": 194.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000, "random": 114.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295419811299993, 47.434556835099997 ], [ -122.295851618399993, 47.440464837699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000, "random": 192.992 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475223036800003, 46.251686108599998 ], [ -119.476190246800002, 46.2572390375 ], [ -119.487123072399996, 46.257906344299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": null, "random": 126.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.588995856500006, 47.556839945100002 ], [ -120.587783032100006, 47.556146923299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870, "random": 8.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.358835633699996 ], [ -124.448179424100005, 48.316370943300001 ], [ -124.441553728, 48.308745064500002 ], [ -124.417037992100006, 48.3016446894 ], [ -124.393930611299993, 48.286981512200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000, "random": 98.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294762770600002, 47.059261084699997 ], [ -122.294065221799997, 47.077717873200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": null, "random": 143.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201790951899994, 47.873417739399997 ], [ -120.201226112499995, 47.874421860799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900, "random": 151.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.649269084400004, 46.944496517399998 ], [ -123.619259354600004, 46.946597392800001 ], [ -123.603235701700001, 46.958887734199998 ], [ -123.604161349699993, 46.966113391699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 132.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320670922800005, 47.431977706799998 ], [ -120.312829956300007, 47.422532371700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500, "random": 150.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.736603192399997, 45.698763389600003 ], [ -121.705405211400006, 45.699214593699999 ], [ -121.675943883100004, 45.709975587899997 ], [ -121.660410934200002, 45.709731907399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200, "random": 133.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.383026138199995, 46.204013241799998 ], [ -123.382101974199998, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000, "random": 149.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347032287700003, 47.6426862378 ], [ -122.347331628500001, 47.652771084299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": null, "random": 132.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.155404306899996, 47.884345211400003 ], [ -120.151117993100002, 47.883422456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200, "random": 165.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436279972099996, 48.948557349799998 ], [ -119.436673530199997, 48.948907181300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000, "random": 37.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295977065599999, 47.161081479099998 ], [ -122.297846414, 47.161450810200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400, "random": 128.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715379481699998, 48.208231873599999 ], [ -117.715450652900003, 48.269998491800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000, "random": 19.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545044147900001, 47.770388726599997 ], [ -117.543956415300002, 47.777004347499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200, "random": 30.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.359215874499995, 46.303838941599999 ], [ -119.347277198399993, 46.300384193100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000, "random": 36.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184727787599996, 48.095997776300003 ], [ -122.1847725776, 48.105912285800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": null, "random": 180.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.546840635600006, 47.103900780899998 ], [ -119.455945538500004, 47.103975955400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600, "random": 156.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.203516548099998, 46.708001321 ], [ -117.202704700200002, 46.709013116400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000, "random": 48.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.552765544699994, 45.7037149254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000, "random": 41.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.285830725700002 ], [ -122.8997031408, 46.286789132300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500, "random": 173.461 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.290235887100003 ], [ -124.056046583300002, 46.289125868100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800, "random": 7.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485346572799997, 46.534276731799999 ], [ -122.475498549, 46.5361010556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500, "random": 117.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.709438419799994, 46.677684145400001 ], [ -123.703899168600003, 46.675045581699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300, "random": 198.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.861432180899996, 46.652330978 ], [ -118.852401448600006, 46.651074980200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000, "random": 21.579 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692795812699998, 47.661573015 ], [ -122.688031643100004, 47.664446406 ], [ -122.688240011299996, 47.669276652599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200, "random": 88.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.666904292400005, 47.098835126799997 ], [ -118.665300448500005, 47.116167762400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000, "random": 109.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675931461600001, 47.541411500599999 ], [ -122.674891777200003, 47.544020254700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000, "random": 98.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.301686665199995, 47.301951192600001 ], [ -121.291613470800002, 47.299067816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600, "random": 79.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.444658126500002 ], [ -122.847864650800005, 46.442898255599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800, "random": 85.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.178138580500004, 46.728901855700002 ], [ -117.176904797399999, 46.729513769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": null, "random": 118.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.955039408800005, 46.881056224 ], [ -119.946533330600005, 46.912385824099999 ], [ -119.956933746399997, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700, "random": 17.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.603542558200004, 46.528545867399998 ], [ -122.595569385700003, 46.5253458249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000, "random": 68.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223601115799994, 47.800389682400002 ], [ -122.231502126300001, 47.8140192332 ], [ -122.256407739500006, 47.828138808399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000, "random": 55.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.821463436599998 ], [ -122.341327669500004, 47.821450980100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000, "random": 75.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916349545399996, 47.639117271 ], [ -121.910259396399994, 47.659120641800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100, "random": 80.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.052535915500002, 46.466597142 ], [ -124.052470810800003, 46.468177250499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000, "random": 95.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.970772608100006, 47.857093264699998 ], [ -121.970344695, 47.859287672699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000, "random": 47.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.356549436099996, 47.722576938800003 ], [ -117.354923516100001, 47.7296515994 ], [ -117.360673813700004, 47.739238645100002 ], [ -117.359198299200003, 47.750275475499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": null, "random": 90.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.132821385499994, 47.418328842900003 ], [ -119.106952077800003, 47.402903720600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000, "random": 5.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.347277198399993, 46.300384193100001 ], [ -119.337027626799994, 46.296916328499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000, "random": 56.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961493482099996, 48.050293977400003 ], [ -122.950720210599997, 48.050275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300, "random": 54.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.363333971200007, 46.1950290192 ], [ -123.354448297499999, 46.187236830899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520, "random": 170.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256087151599999, 47.483856851399999 ], [ -118.254686200500004, 47.485610696400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700, "random": 180.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.359094590200002, 46.932385889400003 ], [ -121.305830498800006, 46.952091588800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700, "random": 81.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965112893599994, 48.524065543100001 ], [ -121.930126868499997, 48.526423975199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000, "random": 77.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.976871810800006, 46.656330602 ], [ -122.979941061399998, 46.666273563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650, "random": 66.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.034530523800001, 46.549222742 ], [ -124.037800322899997, 46.549187373599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": null, "random": 48.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.292841949500001, 47.615724197299997 ], [ -119.288231320899996, 47.617049865200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400, "random": 69.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.229044672699999, 47.802095034499999 ], [ -117.212868834600002, 47.8047418564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000, "random": 121.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121619318300006, 47.675441060799997 ], [ -122.121605019, 47.674446665399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000, "random": 41.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507145410299998, 47.643066968100001 ], [ -117.489974820499995, 47.637797794500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000, "random": 167.776 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.015518639700005, 46.171407070599997 ], [ -123.010921804399999, 46.169143498300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300, "random": 194.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323440946900007, 48.920195971799998 ], [ -122.321912505200004, 48.920192245499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900, "random": 65.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.074160424799999, 47.489790063500003 ], [ -123.0798887479, 47.4834193437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100, "random": 161.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.514228560500001, 45.8854969434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000, "random": 47.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498918855499994, 47.150179615500001 ], [ -122.483975944600004, 47.158948731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500, "random": 47.627 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475337364799998, 46.862537997 ], [ -119.453286095699994, 46.8561637408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000, "random": 57.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.830253409099996, 47.446511538899998 ], [ -122.826922042899994, 47.451325656100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000, "random": 124.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048376727199994, 47.695688856099999 ], [ -117.041702596700006, 47.696631789500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000, "random": 180.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.410853660100003, 47.751319912500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500, "random": 164.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.624899490399997, 47.844751263399999 ], [ -117.641565621, 47.853127625799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000, "random": 175.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463797409400001, 48.749722479 ], [ -122.462212289700005, 48.753686761700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000, "random": 74.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202404855500006, 47.3748567353 ], [ -122.202208686600002, 47.3993044634 ], [ -122.197170263199993, 47.403363690100001 ], [ -122.197056867599997, 47.413407153100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000, "random": 7.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.192866507600002, 45.6576560325 ], [ -121.1823283839, 45.649040017399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000, "random": 136.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.367307089600004, 47.8179585281 ], [ -122.366358296100003, 47.821482107900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100, "random": 118.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.993152412800001, 47.222746832 ], [ -120.994043556799994, 47.223727202900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000, "random": 96.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.714824595300001 ], [ -122.475189450900004, 48.714396165799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": null, "random": 178.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.177412450299997, 47.092857525399999 ], [ -119.16309152, 47.091568875699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000, "random": 23.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.480684650599997 ], [ -122.335443671899995, 48.490275393399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900, "random": 140.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.823931182699994, 45.699442413 ], [ -120.824585887400005, 45.698633973100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200, "random": 27.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075169820799999, 48.606899166200002 ], [ -118.078393723199994, 48.614926917699997 ], [ -118.071981789399999, 48.621449876299998 ], [ -118.076791396299996, 48.630228082800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100, "random": 89.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.033892636800005, 46.491529151400002 ], [ -124.0337063992, 46.492951732800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": null, "random": 18.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.982323996900007, 47.8274002482 ], [ -119.978618622599996, 47.826373309099999 ], [ -119.9835503921, 47.812666688500002 ], [ -119.9808716374, 47.813702714100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000, "random": 52.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740854975199994, 45.911170197300002 ], [ -122.740274834399997, 45.907107905300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900, "random": 66.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999084702600001, 46.301980308499999 ], [ -119.978187844399997, 46.302344182100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900, "random": 95.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133540258899998, 46.81166858 ], [ -119.048219812100001, 46.7995487771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": null, "random": 121.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.598554678200003, 47.251897161499997 ], [ -119.580225479500001, 47.271544972500003 ], [ -119.579814783499998, 47.2816012149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600, "random": 56.837 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.246165081599997, 46.327693020399998 ], [ -120.228797033399999, 46.322331888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200, "random": 83.232 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.942512646200001 ], [ -122.629242144599999, 45.941283986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000, "random": 20.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.010361091899995, 47.639842481800002 ], [ -121.998265185600005, 47.631397117100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000, "random": 113.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061969381500006, 47.547621303500001 ], [ -122.060931313500006, 47.548863751299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000, "random": 129.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332083917399999, 47.470421492500002 ], [ -122.328608609300005, 47.469981829600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400, "random": 102.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.929173544700006, 47.476353555300001 ], [ -123.933762918699998, 47.480111486299997 ], [ -123.9589950413, 47.480252005399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000, "random": 95.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052362381500004, 46.336389697 ], [ -117.048737936199998, 46.339771771499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400, "random": 153.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.994894794300002 ], [ -123.899165273, 46.997061728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800, "random": 10.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.856273262499997, 46.5369650839 ], [ -117.821799270900001, 46.524455646600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000, "random": 49.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960098434499997, 46.898463150700003 ], [ -122.946759334399999, 46.9213451432 ], [ -122.938989524299998, 46.947495190700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": null, "random": 131.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.773068226500001, 47.195996988600001 ], [ -120.760723422500007, 47.191786192800002 ], [ -120.733227393600004, 47.200510216200001 ], [ -120.718972574299997, 47.199367178300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500, "random": 194.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.258073011899995, 47.8098225751 ], [ -124.263804262199997, 47.8258077379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600, "random": 166.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.793487933899996, 46.665097873599997 ], [ -123.783180389699993, 46.669837987400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000, "random": 106.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.197447519799994, 47.522700233099997 ], [ -117.2106226505, 47.536636413300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000, "random": 93.836 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.826102687499997, 46.970061214099999 ], [ -123.815854623199996, 46.974060636499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100, "random": 6.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.171286162900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900, "random": 157.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.424404903500005, 45.650548964899997 ], [ -122.424463433100001, 45.643325581100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430, "random": 197.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.102769807900003, 46.9174522008 ], [ -117.086594622199996, 46.916693263299997 ], [ -117.087513180499997, 46.9125608238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000, "random": 125.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.772467209200002 ], [ -122.603242915400003, 47.777122210199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800, "random": 121.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.729215848800003 ], [ -121.520988362899999, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600, "random": 131.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.812254684899997 ], [ -122.380734713400003, 47.811839642700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000, "random": 155.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.735001393600001, 46.2109623873 ], [ -119.713434180099995, 46.219565023800001 ], [ -119.674690503500003, 46.223081242900001 ], [ -119.664788411299995, 46.231690929599999 ], [ -119.637867173299995, 46.241859079100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900, "random": 157.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.041806177799998, 46.4188762721 ], [ -117.039897904499995, 46.420186914399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500, "random": 139.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.600903624799997, 46.974749123099997 ], [ -123.600900171800006, 46.975635005400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200, "random": 68.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100111778499993, 47.212806620899997 ], [ -123.098450693100006, 47.215078872699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300, "random": 69.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.543770665700002 ], [ -117.393975486399995, 47.553421222099999 ], [ -117.401167823799994, 47.574689448299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000, "random": 123.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232988543600001, 47.151747261200001 ], [ -122.236666418599995, 47.1398909033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000, "random": 102.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.734957906099993, 48.990539037799998 ], [ -122.7349574112, 48.993987434899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000, "random": 8.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.199842588400003, 48.083854521500001 ], [ -123.172942795699996, 48.079452223799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000, "random": 98.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.895016053500001, 46.191009795500001 ], [ -122.887897361499995, 46.229024854899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900, "random": 21.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854307513099997, 46.898691382099997 ], [ -119.747707891900006, 46.898969608400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000, "random": 125.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651542756799998, 47.791613631499999 ], [ -122.649407823399997, 47.8021122484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000, "random": 60.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284519740799993, 47.924487110100003 ], [ -122.275846758, 47.922028224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000, "random": 182.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206790649300004, 47.897200912700001 ], [ -122.206818324099999, 47.898121112 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000, "random": 128.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.125470582199995, 47.6666303079 ], [ -117.111967994599993, 47.670190563299997 ], [ -117.103034504199996, 47.677801453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800, "random": 18.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134307384099998, 46.782398865099999 ], [ -119.134285547299996, 46.797073158700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000, "random": 22.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296589390400001, 47.169780002099998 ], [ -122.296698139599997, 47.176629062899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000, "random": 86.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344436500499995, 47.686959592599997 ], [ -122.344449168, 47.6905617273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000, "random": 93.883 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346368735499993, 46.060517989899999 ], [ -118.347086854799997, 46.061393464600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000, "random": 41.293 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213334177500002, 47.641671832699998 ], [ -122.209303932400005, 47.642807809799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000, "random": 125.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.154772907500003, 46.270129968399999 ], [ -118.153247686300006, 46.270134871800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000, "random": 63.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024690463699997, 46.4313046328 ], [ -119.024166969800007, 46.432556087099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000, "random": 42.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664524259399997, 45.6843405722 ], [ -122.663319481499997, 45.688951116799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000, "random": 85.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209358164500003, 47.758825033100003 ], [ -122.207429610299997, 47.758988673600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000, "random": 51.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.071866758699997, 47.091058025300001 ], [ -123.032670722299997, 47.085083518799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000, "random": 165.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.232206470199998 ], [ -119.038983233799996, 46.226914300700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000, "random": 41.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143304038899998, 47.665506429499999 ], [ -117.125470582199995, 47.6666303079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000, "random": 103.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.131475035900003 ], [ -122.970843132499994, 46.1276076543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000, "random": 26.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.943733583300002, 46.1159145 ], [ -122.930069412099996, 46.1160931581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000, "random": 116.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552765544699994, 45.7037149254 ], [ -122.552640114300004, 45.707988681499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": null, "random": 132.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.346173789399998, 47.470182604800002 ], [ -120.340586229600007, 47.468390233800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900, "random": 165.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.046821640499999, 48.184334389599996 ], [ -117.045447888599995, 48.184042304899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190, "random": 42.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.665300448500005, 47.116167762400003 ], [ -118.665095142699997, 47.130762764899998 ], [ -118.686528826499995, 47.131084059099997 ], [ -118.686887325499995, 47.152595293300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000, "random": 17.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.070578495899994, 46.818061401 ], [ -123.044564731899996, 46.803217081699998 ], [ -123.036791997400002, 46.802544382500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000, "random": 31.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632955459200005, 47.576988526599997 ], [ -122.631158803199995, 47.583273830499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000, "random": 47.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.389177909500006, 47.234445270199998 ], [ -122.346482993500004, 47.216109298900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200, "random": 38.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.678110354400005, 45.939490944399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000, "random": 70.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257239849399994, 47.8906887228 ], [ -122.248475669300007, 47.900072614400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800, "random": 157.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.389567766599995, 47.425001746699998 ], [ -117.385169842799996, 47.441644864700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000, "random": 189.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.416808021500003 ], [ -119.508623276099996, 48.416772673399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": null, "random": 25.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.558893640899996, 47.103882462800001 ], [ -119.546840635600006, 47.103900780899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700, "random": 184.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.650452046200002 ], [ -121.268768391600005, 48.673574506500003 ], [ -121.242891162899994, 48.674773404299998 ], [ -121.241787132300004, 48.684823235800003 ], [ -121.213387223400005, 48.699623839200001 ], [ -121.178856267599997, 48.704780591800002 ], [ -121.161546213700007, 48.711848967500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700, "random": 83.394 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141556500500002, 47.4513001292 ], [ -117.150006285, 47.471500643600002 ], [ -117.147371004899995, 47.490110618 ], [ -117.153421024300002, 47.495456488899997 ], [ -117.154349678100004, 47.505029488300003 ], [ -117.172934664699994, 47.508330293100002 ], [ -117.191148354299997, 47.518341588699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000, "random": 125.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321821318399998, 47.769655941800004 ], [ -122.316117804900003, 47.7897600047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540, "random": 51.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972667927700002, 47.309471964700002 ], [ -117.974348339900004, 47.316068813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800, "random": 91.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857643340400003, 46.429368113400002 ], [ -123.842250419799996, 46.411322035600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790, "random": 135.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.030679460200005, 46.532012021900002 ], [ -124.031138145499995, 46.546457236800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200, "random": 38.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428358999500006, 48.4448569455 ], [ -122.422067295399998, 48.442737456499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000, "random": 108.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191990948400004, 47.972673900899999 ], [ -122.190376081899998, 47.976893661600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000, "random": 177.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256407739500006, 47.828138808399999 ], [ -122.261565343100003, 47.831348407100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000, "random": 9.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.038967760700004, 46.420267917099999 ], [ -117.035943937699997, 46.420450428199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000, "random": 185.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.419929703899996, 47.244357102199999 ], [ -122.399809360899994, 47.247245078100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": null, "random": 167.082 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306162506899994, 47.100752626800002 ], [ -119.276011298399993, 47.102681285 ], [ -119.235963051599995, 47.098099812699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000, "random": 191.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651372136500001, 47.765032788399999 ], [ -122.650736343700004, 47.769589163600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000, "random": 171.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379453463499999, 47.274969727799999 ], [ -122.387307348500002, 47.278952222299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": null, "random": 191.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.338671784200002, 47.467239294 ], [ -120.337752153, 47.467994632100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000, "random": 83.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350617898799996, 47.943270476800002 ], [ -117.349574717300001, 47.970653730400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": null, "random": 106.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.823953648699998, 47.1032398754 ], [ -119.7595545426, 47.103450609399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": null, "random": 166.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.497304892800003, 47.424536612300003 ], [ -119.513907363200005, 47.458259009199999 ], [ -119.514748121300002, 47.484157015199997 ], [ -119.495956553100001, 47.526218889799999 ], [ -119.487752680499995, 47.534625173 ], [ -119.469831748700003, 47.542619719199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000, "random": 146.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.594120527599998, 47.5625995288 ], [ -117.593576416800005, 47.563948315899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900, "random": 111.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.286645904300002, 47.055729321199998 ], [ -123.275437230099996, 47.055580731299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900, "random": 26.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.962763316100002 ], [ -118.564368032, 46.978427891599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000, "random": 187.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.543664555099994, 46.622677312599997 ], [ -120.538427603100004, 46.6224575094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500, "random": 97.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.560743450299995, 47.285298956 ], [ -122.559860193099993, 47.2754181914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000, "random": 8.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.487502730599999, 45.727786525 ], [ -121.506079833100003, 45.730967526800001 ], [ -121.512387064699993, 45.7354852032 ], [ -121.513886217199996, 45.742904109100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000, "random": 29.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.898255787099998, 46.144421575199999 ], [ -122.897437776, 46.144707728900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900, "random": 42.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.110834784900007, 46.868530839 ], [ -124.111600125, 46.885083233899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900, "random": 56.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.197786695199994, 47.203763312600003 ], [ -124.198122559400005, 47.209654990099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200, "random": 56.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309204530200006, 48.963860375199999 ], [ -122.288498891399996, 48.963997296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000, "random": 164.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322301403099999, 47.438774618899998 ], [ -122.320426351199998, 47.4439375555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000, "random": 95.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.468507851400005, 47.639029918699997 ], [ -117.447814221599998, 47.648093677200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000, "random": 178.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.790344373899998 ], [ -122.143430620900006, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300, "random": 133.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514138715399994, 47.305285326 ], [ -122.514153226100007, 47.305786013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000, "random": 117.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304949803200003, 47.644164856499998 ], [ -122.288654999200006, 47.644785095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660, "random": 60.346 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.052819214600007, 48.665559054600003 ], [ -118.024835520899998, 48.673690401 ], [ -118.015632408900004, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.024673985500002, 48.714996295 ], [ -118.042427928099997, 48.725869214299998 ], [ -118.049032637400003, 48.735909365300003 ], [ -118.044931377099999, 48.751377685199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900, "random": 9.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.440954132100003, 48.108110856800003 ], [ -123.432584160299996, 48.117319823400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600, "random": 130.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321748363099999, 48.934759017 ], [ -122.320919167699998, 48.943809498299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000, "random": 89.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163708641699998, 47.169319040799998 ], [ -122.159146879800005, 47.168838945200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270, "random": 57.391 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.372681329499997 ], [ -123.043603345600005, 46.377894367499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800, "random": 57.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193495728900004, 46.757317083099998 ], [ -122.192044511299997, 46.763148214899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500, "random": 156.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.439196369400001 ], [ -122.322227200399993, 47.438885178600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400, "random": 90.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.432584160299996, 48.117319823400003 ], [ -123.431723711900005, 48.118274773099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500, "random": 50.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.770391468200003, 46.955307304500003 ], [ -123.772634005300006, 46.957213138599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400, "random": 59.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.971539450800002 ], [ -123.804653298800005, 46.970295887799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": null, "random": 71.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.455945538500004, 47.103975955400003 ], [ -119.439990119300006, 47.103981369899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600, "random": 150.964 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202704700200002, 46.709013116400001 ], [ -117.194491271900006, 46.712316346400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600, "random": 11.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.458971800599997 ], [ -122.843211788399998, 46.456561604500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000, "random": 32.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305500032200001, 47.697580308500001 ], [ -122.300439660400002, 47.710521918399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000, "random": 81.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241412149300004, 48.510407569900003 ], [ -122.238568264, 48.510509214400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800, "random": 176.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.941795765899997, 46.848996036300001 ], [ -119.956438555800005, 46.870475719 ], [ -119.955039408800005, 46.881056224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000, "random": 56.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.119955079299999, 47.3581151088 ], [ -122.118393322900005, 47.358083689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200, "random": 5.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291789386399998, 48.335745977499997 ], [ -122.234636542900006, 48.316921300700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900, "random": 78.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682680229799999, 47.572870406500002 ], [ -117.682262921499998, 47.579790864700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700, "random": 183.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296621681100007, 46.5642108312 ], [ -122.2876908004, 46.562905111900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100, "random": 20.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726070176700006, 47.994823643300002 ], [ -117.731910468699994, 48.027148628500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100, "random": 20.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.967332821200003 ], [ -122.179158673200007, 48.976749001 ], [ -122.224427992800003, 48.963554317400003 ], [ -122.2383116691, 48.981859587400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400, "random": 118.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.165467930700004, 47.071513026700003 ], [ -124.1655918294, 47.0723702608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400, "random": 144.569 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.476340768100002, 47.024825293600003 ], [ -118.442204373400003, 47.046546835100003 ], [ -118.414110318900001, 47.059196785600001 ], [ -118.409653168199995, 47.068022810599999 ], [ -118.4070751366, 47.103309537400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": null, "random": 64.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.689533732400001 ], [ -120.734080409300006, 47.676187191700002 ], [ -120.736360708, 47.665311162099997 ], [ -120.729389874800006, 47.659802408 ], [ -120.720056191899999, 47.640403619399997 ], [ -120.727803017100001, 47.630566086800002 ], [ -120.712111008299999, 47.593611076800002 ], [ -120.701765463, 47.584174099 ], [ -120.675248149599994, 47.588574571099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400, "random": 81.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.901532568700006, 45.682342419100003 ], [ -121.886071306100007, 45.6924749788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000, "random": 137.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384990934100003, 47.766735284100001 ], [ -117.378220896599998, 47.772633437400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200, "random": 13.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907560117399996, 46.1465486719 ], [ -122.908506061500006, 46.146702232199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300, "random": 93.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.372061313499998, 47.663072830700003 ], [ -117.362563030900006, 47.666706290299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800, "random": 194.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.052470810800003, 46.468177250499998 ], [ -124.050056982, 46.490640709700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000, "random": 188.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655219925200001, 47.5591158808 ], [ -122.653297245499999, 47.565534571500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": null, "random": 41.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.739399423699993, 47.756380132700002 ], [ -120.7384906148, 47.736019593599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500, "random": 95.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602042804600003, 47.854763585699999 ], [ -122.5840564696, 47.852153791799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600, "random": 13.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.472295554799999, 47.762035526699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": null, "random": 114.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.229740409599998, 47.087392561400002 ], [ -119.242600533599997, 47.097918976899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000, "random": 142.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.097084689900001 ], [ -122.434931526, 47.097314452399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300, "random": 48.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515656255300001, 47.2992775357 ], [ -122.515642471600003, 47.300595473599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520, "random": 135.085 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.388534752699996 ], [ -122.676854582100006, 46.378840872300003 ], [ -122.673496635199996, 46.361284465600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940, "random": 20.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485822753299999, 46.536429871300001 ], [ -122.485346572799997, 46.534276731799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600, "random": 128.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.670778448299998, 46.937560636199997 ], [ -123.649269084400004, 46.944496517399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": null, "random": 126.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.028398647300001 ], [ -119.194727604199997, 47.057704760599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500, "random": 52.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.162754246700004, 47.017383114399998 ], [ -124.155021291500006, 47.017344680199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000, "random": 54.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073018590499998, 47.2267941681 ], [ -117.111583927699996, 47.232390043099997 ], [ -117.130472870899993, 47.242079002799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400, "random": 110.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.649779292799998 ], [ -121.602009161799998, 46.657210274599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810, "random": 6.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.003543932300005, 48.8008410224 ], [ -118.000052419900001, 48.807387833900002 ], [ -117.983991490099996, 48.813793330800003 ], [ -117.973215923799998, 48.815372547400003 ], [ -117.948739246100004, 48.8094853403 ], [ -117.929254646499999, 48.814740995199998 ], [ -117.911425089, 48.827107032500003 ], [ -117.895948446399998, 48.850870247400003 ], [ -117.881274636, 48.853652644599997 ], [ -117.872197637699998, 48.864854032099998 ], [ -117.853598904199998, 48.873679994 ], [ -117.841272719900005, 48.871952626300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700, "random": 139.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356448217199997, 46.075882035799999 ], [ -118.356443458, 46.077185899500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200, "random": 106.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188026520700006, 47.981696082200003 ], [ -122.186673872300005, 47.981687837899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000, "random": 164.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.852175045300001, 46.976073338900001 ], [ -123.853981904500003, 46.976075110399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200, "random": 70.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.485438046699997, 45.798617495400002 ], [ -121.490785135199999, 45.807210590499999 ], [ -121.489711447600001, 45.823819330100001 ], [ -121.509518930300004, 45.849808906200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200, "random": 12.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042441887099997, 48.184010170500002 ], [ -117.043933314200004, 48.184029565199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": null, "random": 133.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853547960699998, 47.103252983899999 ], [ -119.853533075, 47.117722674900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000, "random": 45.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.085935890100004, 47.358074866599999 ], [ -122.074051220699999, 47.358100533399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000, "random": 181.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197636001199996, 47.9682783923 ], [ -122.191990948400004, 47.972673900899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000, "random": 67.308 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.539356012400006, 47.679508670799997 ], [ -122.550960549699994, 47.690504212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": null, "random": 88.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.109561014699999 ], [ -119.718033773200005, 48.102378565599999 ], [ -119.698707638499997, 48.103403189200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000, "random": 34.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109827108800005, 47.875295458700002 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000, "random": 98.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356664533599997, 48.465761159700001 ], [ -122.347162814399994, 48.4689593505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000, "random": 72.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498739627199996, 48.452263302299997 ], [ -122.443902727600005, 48.446021134799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200, "random": 93.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.861547543699999, 46.850109919399998 ], [ -122.861982835899994, 46.851655257200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300, "random": 112.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.000025473699999 ], [ -122.263615147500005, 49.002336597099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500, "random": 164.101 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.318941215600006, 46.758863934899999 ], [ -118.308445228899998, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000, "random": 41.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292335809600004, 47.816111394 ], [ -122.292308948799999, 47.813704600199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300, "random": 178.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254686200500004, 47.485610696400002 ], [ -118.250397884899996, 47.489208102200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300, "random": 20.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.517062986699997, 46.6712561513 ], [ -120.509031671900004, 46.676702796299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930, "random": 104.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.790697915699994, 47.436332432199997 ], [ -117.788774298, 47.435239557599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600, "random": 81.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.541748150399997, 46.93783701 ], [ -122.528332171700001, 46.937764175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000, "random": 152.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113361770400005, 47.671528366 ], [ -122.103599726200002, 47.668444842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960, "random": 145.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.310189760599997 ], [ -124.0611205915, 46.313346213300001 ], [ -124.064645587200005, 46.309558892200002 ], [ -124.060652883900005, 46.305650457200002 ], [ -124.063199593500002, 46.2983588775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800, "random": 57.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356192679399996, 47.978819259399998 ], [ -122.370959862099994, 47.979159491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600, "random": 45.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824585887400005, 45.698633973100002 ], [ -120.824534867899999, 45.698019660299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300, "random": 50.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.695998937500001 ], [ -121.289666681599996, 45.697135679500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200, "random": 8.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.703840774599996, 48.269305853100001 ], [ -118.711807993600004, 48.271740175799998 ], [ -118.734745553699995, 48.299072435200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300, "random": 119.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.548771068100002 ], [ -120.291710569599999, 46.534745933400004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000, "random": 102.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.998265185600005, 47.631397117100001 ], [ -121.987460641699997, 47.627994798400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000, "random": 173.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.951208942899996, 46.115761426399999 ], [ -122.950614760899995, 46.116489802300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900, "random": 24.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380734713400003, 47.811839642700001 ], [ -122.379606535099995, 47.811428451799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500, "random": 67.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.642180426199999, 48.495334999699999 ], [ -121.626657964399996, 48.488780807700003 ], [ -121.596169762100004, 48.487275378900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000, "random": 32.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462088280299994, 47.197049535799998 ], [ -122.461663028299995, 47.200192883299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000, "random": 83.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.971575499699995, 46.680680636600002 ], [ -122.9696916332, 46.693354364500003 ], [ -122.972693801600002, 46.703306275499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900, "random": 15.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.058680005900001, 46.419926261500002 ], [ -117.057416806500001, 46.419927330900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130, "random": 185.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.689657366199995, 47.926800027 ], [ -118.689936079500001, 47.929218270500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": null, "random": 15.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.497251069100002, 47.370285029800002 ], [ -119.490492646700005, 47.375924811600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000, "random": 110.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400514288599993, 47.055858198499998 ], [ -122.428494472899999, 47.078773705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": null, "random": 98.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.739491654099993, 47.756511044100002 ], [ -120.730179083, 47.7636832556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500, "random": 54.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999527805300005, 46.240131802800001 ], [ -119.999211918300006, 46.2864963221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900, "random": 194.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.322978895800006, 46.3718043346 ], [ -120.329526933799997, 46.375119312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300, "random": 6.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054745626300004, 46.346612471 ], [ -124.054580485599999, 46.350118615100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900, "random": 99.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.709147899900003, 47.759454432799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000, "random": 124.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.497189516900001 ], [ -119.529422804, 48.5261884807 ], [ -119.543399478799998, 48.558806781100003 ], [ -119.542882178900001, 48.565245776099999 ], [ -119.533609333300006, 48.575604223399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200, "random": 168.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.115033679899994, 47.462147459299999 ], [ -123.111580438800004, 47.459121237799998 ], [ -123.113551631600004, 47.453231937300004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800, "random": 15.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.481716270099994, 47.930896701099996 ], [ -124.529993278099994, 47.915069702499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000, "random": 155.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.097314452399999 ], [ -122.434907904200003, 47.099300405800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000, "random": 93.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048949727099995, 46.735058809100003 ], [ -117.039945704600001, 46.7324070437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000, "random": 66.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.144613716499997 ], [ -122.908492533499995, 46.144467836099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000, "random": 10.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039897904499995, 46.420186914399999 ], [ -117.039123163699998, 46.420256329600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800, "random": 5.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289183953199995, 48.155717637899997 ], [ -122.286498895299999, 48.155695823199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000, "random": 158.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.375955261300007, 48.104855547100001 ], [ -123.371877727300003, 48.104868243600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400, "random": 48.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.582719030299998, 48.488844632899998 ], [ -121.554500350500007, 48.491304965200001 ], [ -121.488132799799999, 48.508950098 ], [ -121.472142264200002, 48.508843736199999 ], [ -121.462345584399998, 48.5215887624 ], [ -121.449902918800007, 48.52736977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": null, "random": 24.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.392358608500004, 47.918864183700002 ], [ -119.360155687399995, 47.933766285600001 ], [ -119.342171066899994, 47.933953057300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600, "random": 119.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.695467909900003 ], [ -121.546083814499994, 46.683030593200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000, "random": 153.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.804653298800005, 46.970295887799999 ], [ -123.811070066900001, 46.973262377700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": null, "random": 5.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.053845938899997, 47.835984992900002 ], [ -120.052354033300006, 47.8358056633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710, "random": 17.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.995311748799999 ], [ -119.461780776500007, 49.000086810600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000, "random": 52.726 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.124004338700004, 47.8375143859 ], [ -122.110117861, 47.860666174800002 ], [ -122.109827108800005, 47.875295458700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000, "random": 147.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671985478500005, 47.5475493235 ], [ -122.667352865799998, 47.549059761300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800, "random": 56.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.360611100200003, 46.0686802253 ], [ -118.362058013500004, 46.068646754299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000, "random": 51.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.516495101300002 ], [ -120.480199159899996, 46.522222813900001 ], [ -120.474034679799999, 46.531778940899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000, "random": 194.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325733290200006, 48.435758576600001 ], [ -122.322813391899999, 48.435726219899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000, "random": 74.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552696417299998, 47.121026171899999 ], [ -122.547904716900007, 47.123849887799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000, "random": 89.286 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661702096400006, 45.644626475400003 ], [ -122.662431148, 45.652190629700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000, "random": 33.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434170529799999, 47.162825656599999 ], [ -122.433966120899996, 47.205404862400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000, "random": 90.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.150787088599998, 48.152052366299998 ], [ -122.140608262699999, 48.151913289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500, "random": 170.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.820463539499997 ], [ -122.9030126575, 47.817110515099998 ], [ -122.909988232700002, 47.811340111100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000, "random": 188.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045083350200002, 47.394535369899998 ], [ -122.040221681899993, 47.405137523800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000, "random": 170.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.564935972499995, 45.659147453300001 ], [ -122.552764512099998, 45.6654147454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000, "random": 162.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.071156388600002 ], [ -122.817955935100002, 48.078069092200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000, "random": 183.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198286336199999, 47.515964748400002 ], [ -122.1981171515, 47.5215347846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000, "random": 114.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.652657702600003 ], [ -117.404003193700007, 47.652123854400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100, "random": 106.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083607430399994, 46.219435461700002 ], [ -119.080202258200003, 46.218655692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500, "random": 117.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.383672593599997, 48.891377649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000, "random": 181.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.429972983599995, 48.117565995200003 ], [ -123.418933152799994, 48.113039913100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600, "random": 72.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824534867899999, 45.698019660299998 ], [ -120.823931182699994, 45.699442413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000, "random": 36.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.006849018899999 ], [ -123.370724874, 47.010716259500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000, "random": 191.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207036498600004, 47.459407738700001 ], [ -122.207176229699996, 47.460991061 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000, "random": 101.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198132583200007, 48.807184498600002 ], [ -122.202534822900006, 48.816156561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000, "random": 161.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214303316900001, 47.982048124400002 ], [ -122.213780260299998, 47.994220742499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000, "random": 23.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.590030423900004, 46.933191201900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000, "random": 93.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.145732405700002, 46.217595725400002 ], [ -119.139733927, 46.216805478799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400, "random": 94.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.653351083899999 ], [ -121.905265762400006, 45.663017263500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100, "random": 197.025 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.794603387500004, 46.664438437800001 ], [ -123.793487933899996, 46.665097873599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200, "random": 157.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.930280839700004, 47.061828455200001 ], [ -123.929195204500004, 47.069822031400001 ], [ -123.905349794700001, 47.086237888100001 ], [ -123.906568351900006, 47.102522463299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750, "random": 121.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.160080238399999 ], [ -123.377247312500003, 46.171261278599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000, "random": 21.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.017149371100004, 47.533899271 ], [ -122.007897527200001, 47.536442657 ], [ -121.9862702466, 47.530963991599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": null, "random": 83.696 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.686049460099994, 47.1944007257 ], [ -119.605898204900001, 47.244359302399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000, "random": 187.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334726948400004, 47.537831831200002 ], [ -122.334116065, 47.542815102200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800, "random": 151.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.140780876199997, 45.611278229100002 ], [ -121.145887174500004, 45.620746481799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000, "random": 117.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.508228369299999, 48.417115248400002 ], [ -119.495704665900007, 48.427975281099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": null, "random": 15.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192406912199999, 47.866359942 ], [ -120.201790951899994, 47.873417739399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": null, "random": 20.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292917287199998, 47.407953191799997 ], [ -120.292457478399996, 47.406215807400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000, "random": 135.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312425316399995, 48.305289375900003 ], [ -122.322055364899995, 48.313308008200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000, "random": 18.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191330456499998, 47.755720280799999 ], [ -122.1719789948, 47.757621596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000, "random": 135.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688809379800006, 47.664663366799999 ], [ -122.692306908800006, 47.663643126399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000, "random": 16.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.928973282499996, 46.952792743899998 ], [ -122.934240825299995, 46.952766632500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300, "random": 112.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.641372188699997 ], [ -121.975013542900001, 45.6406654273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100, "random": 65.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.714723801299996, 46.890466702200001 ], [ -123.719695223200006, 46.918530600899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800, "random": 161.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.831867271600004, 45.823059503700001 ], [ -120.824681801899999, 45.823005993499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000, "random": 24.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.494065390700001 ], [ -121.794753258599997, 47.489394127300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400, "random": 77.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.330317322100001, 48.658599065700002 ], [ -119.300956592, 48.653291277100003 ], [ -119.232008359800005, 48.6707268101 ], [ -119.217076145500002, 48.669421975200002 ], [ -119.197765522899999, 48.6613912396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000, "random": 115.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.425622572899996, 47.223122782 ], [ -122.426290922600003, 47.225964252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000, "random": 111.721 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.850297723400004, 47.1752256328 ], [ -120.835010601, 47.181362192900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700, "random": 75.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320236381300006, 48.949281296 ], [ -122.309466058, 48.955792833799997 ], [ -122.309204530200006, 48.963860375199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000, "random": 83.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.062748397700005, 47.545705776699997 ], [ -122.061969381500006, 47.547621303500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": null, "random": 172.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.638076096700004, 47.812191295300003 ], [ -119.636809987, 47.811607921399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200, "random": 20.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265002944299994, 48.993579316 ], [ -122.264987750200007, 48.999101576400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000, "random": 76.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.045389357700003, 47.390333093300001 ], [ -122.045083350200002, 47.394535369899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200, "random": 103.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.986200562099995, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200, "random": 187.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212974645499997, 48.652713438100001 ], [ -122.212867549799995, 48.655877457400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100, "random": 156.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.565023409600002 ], [ -122.626945866, 47.565015327600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000, "random": 42.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197938621899993, 47.509415060800002 ], [ -122.198286336199999, 47.515964748400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000, "random": 190.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886444128799994, 47.5692233555 ], [ -121.871409960500003, 47.5666180383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000, "random": 163.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.301269834600006, 47.373309348399999 ], [ -122.296379117300006, 47.386520195199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000, "random": 27.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.240266890800001 ], [ -122.376126003699994, 47.240486919699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300, "random": 71.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336830963899999, 45.574285426199999 ], [ -122.320922755599995, 45.572154233500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600, "random": 94.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.073392596600002, 48.584875433800001 ], [ -118.075376155699999, 48.590211446200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000, "random": 48.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682677724300007, 47.572143868700003 ], [ -117.682680229799999, 47.572870406500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800, "random": 185.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.423311671099995, 47.317046900500003 ], [ -122.393359055199994, 47.322379808800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000, "random": 62.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.652190629700002 ], [ -122.664164383799999, 45.6564855831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000, "random": 50.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.285944848200003, 47.661989355800003 ], [ -122.273121321399998, 47.668605412600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000, "random": 22.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908492533499995, 46.144467836099999 ], [ -122.907479926299999, 46.144285354499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200, "random": 126.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886071306100007, 45.6924749788 ], [ -121.885352651700003, 45.692845945499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800, "random": 93.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.680783935599997 ], [ -120.477020851500001, 46.690052266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000, "random": 166.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517339148900007, 47.1402583462 ], [ -122.508717176600001, 47.144773798300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000, "random": 52.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284413691400005, 47.511800325499998 ], [ -122.295991660699997, 47.5348589719 ], [ -122.305256741600004, 47.543467570099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000, "random": 136.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323952406499998, 47.397136250199999 ], [ -122.311449370800005, 47.391536018099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800, "random": 191.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.674302085800001 ], [ -117.194966866599998, 46.679247582099997 ], [ -117.204128328600007, 46.690852856 ], [ -117.204337991100005, 46.705845765100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500, "random": 186.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960173329200003, 47.282055380499997 ], [ -122.947621414799997, 47.284312022800002 ], [ -122.907262820300005, 47.319622827800004 ], [ -122.880446336399999, 47.331920456200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000, "random": 139.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899606179700001, 46.398070720299998 ], [ -122.8901249197, 46.407106646899997 ], [ -122.890377804099998, 46.415684535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300, "random": 165.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.907976328800004, 46.693935844599999 ], [ -120.900450840399998, 46.695472322100002 ], [ -120.899340182700001, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000, "random": 11.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.197026639599997 ], [ -122.201456902100006, 47.194176953499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200, "random": 177.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.919119912499994, 48.705888890600001 ], [ -120.901878823399997, 48.6993047307 ], [ -120.886932951399999, 48.687870629300001 ], [ -120.873063218300004, 48.666214950300002 ], [ -120.860204576, 48.658019622799998 ], [ -120.857094496599998, 48.647109356599998 ], [ -120.839655481700007, 48.623667670099998 ], [ -120.805261098800003, 48.5968427615 ], [ -120.791055603100006, 48.575344822700004 ], [ -120.771988072400006, 48.5619204268 ], [ -120.755918936399993, 48.536094319699998 ], [ -120.735353297, 48.523771493799998 ], [ -120.7300186258, 48.505391496500003 ], [ -120.704735194799994, 48.501405464699999 ], [ -120.674267565099996, 48.519739794400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000, "random": 120.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.750282030299999 ], [ -122.329647234, 47.751023302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800, "random": 7.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.168691485899998, 48.4567062705 ], [ -120.164120107900004, 48.448203115799998 ], [ -120.162657037, 48.427700415899999 ], [ -120.142750791400005, 48.409648073900001 ], [ -120.139458114199996, 48.395595955700003 ], [ -120.122453029300004, 48.367342777799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000, "random": 158.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.590366244199998, 47.419579391100001 ], [ -121.577603552200003, 47.410002127200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": null, "random": 18.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.215258356299998, 47.075122481199998 ], [ -119.229740409599998, 47.087392561400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000, "random": 5.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655009775600007, 48.296169091400003 ], [ -122.645906529200005, 48.3044536381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000, "random": 150.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.347960920799999 ], [ -122.614439244300002, 48.357150764799997 ], [ -122.637650204699995, 48.35872899 ], [ -122.648135869499995, 48.362966348800001 ], [ -122.652939327799999, 48.369485278299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800, "random": 99.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.236329210800001 ], [ -122.052791283299996, 48.244961878700003 ], [ -122.042270083600002, 48.247273043100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000, "random": 190.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.510906144800003, 46.644208450199997 ], [ -120.523724998, 46.637739616700003 ], [ -120.517679251299995, 46.631227130200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000, "random": 103.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.246088026600006, 47.482214079199998 ], [ -122.226281250599996, 47.477733349499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000, "random": 159.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.606337912499995, 48.873286374800003 ], [ -118.6042284774, 48.879828308199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700, "random": 156.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.115551230199998, 47.444827978200003 ], [ -123.125057273300001, 47.4302399209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000, "random": 199.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.888987911800001, 46.435916736300001 ], [ -122.887483816100001, 46.446560103400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000, "random": 159.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.330248918500004, 47.653713239 ], [ -117.305953399700002, 47.6666196591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": null, "random": 178.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.510085755899993, 46.926149802799998 ], [ -120.497976910800006, 46.926218229200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000, "random": 36.569 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193531274199998, 47.369374337399996 ], [ -122.189202811599998, 47.3678526781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": null, "random": 126.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.579814783499998, 47.2816012149 ], [ -119.566673812700003, 47.2998586553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000, "random": 151.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.170552412600003, 46.261830974 ], [ -119.123284544300006, 46.248662601600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000, "random": 37.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.267577082899997 ], [ -122.900246505499993, 46.280731519100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000, "random": 82.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335644288300003, 47.5965279925 ], [ -122.336611513099996, 47.601770505300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900, "random": 42.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498405559600002, 47.799630733699999 ], [ -122.498048415300005, 47.798506382500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000, "random": 18.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632864206899995, 47.566635514799998 ], [ -122.632946940099998, 47.567332683300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000, "random": 36.823 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213863515900002, 47.998943614399998 ], [ -122.213900569399996, 48.008866067299998 ], [ -122.206679268499997, 48.016692825699998 ], [ -122.194138329, 48.014328780600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000, "random": 73.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265870576400005, 47.820744648900003 ], [ -122.260355003699999, 47.8200633469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900, "random": 199.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.517805186299995, 46.829215650800002 ], [ -117.505667950900005, 46.832959152800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000, "random": 124.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612614699800005, 48.512615782 ], [ -122.615807335900001, 48.512636822700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000, "random": 94.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.681154462600006, 47.566246198599998 ], [ -122.687235929099998, 47.575458442200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000, "random": 68.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.504965103899998 ], [ -122.244125636199996, 48.506295213100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100, "random": 139.929 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050199969199994, 46.340770072600002 ], [ -117.054448335299995, 46.341189423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340, "random": 81.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.556848579199993, 46.635516328100003 ], [ -118.552489513599994, 46.641494681200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400, "random": 7.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.034173789099995, 46.1565283618 ], [ -119.040486107299998, 46.161211968099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900, "random": 59.738 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.208746956400006, 46.519219156 ], [ -120.187902884, 46.506059951799998 ], [ -120.151217007699998, 46.505769000100003 ], [ -120.134855667899998, 46.5011777327 ], [ -120.012205994799999, 46.519745854200004 ], [ -119.969209900300001, 46.519651668 ], [ -119.910788556699998, 46.536420505400002 ], [ -119.880076303300001, 46.533993313800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600, "random": 49.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876734233400001, 47.905864379299999 ], [ -122.869598558600003, 47.893534107800001 ], [ -122.876775826400007, 47.886442176099997 ], [ -122.878869901399995, 47.866027985700001 ], [ -122.889188629299994, 47.8487536576 ], [ -122.886976263199998, 47.834194096499999 ], [ -122.878214631899993, 47.826987207599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400, "random": 67.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682703077799999, 47.701236210200001 ], [ -122.660162054099999, 47.704564702799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000, "random": 49.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955243405499999, 46.147106829499997 ], [ -122.951711013400001, 46.146902157200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000, "random": 42.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485654962300003, 48.869841039900002 ], [ -122.485347089399994, 48.891721005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850, "random": 71.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692298812199994, 47.332496083700001 ], [ -118.692231093100006, 47.333315666600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000, "random": 84.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.471265438299994, 46.539414212799997 ], [ -120.471680580300003, 46.531543452599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000, "random": 114.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.456888889400005, 47.7154157955 ], [ -117.458669386799997, 47.715411884399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000, "random": 174.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.091746744800005, 46.250303521799999 ], [ -119.071993451200001, 46.249483691800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200, "random": 97.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.226814156700001 ], [ -117.042645019299997, 47.2398211593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400, "random": 60.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.250447797899994, 46.524888901499999 ], [ -120.208746956400006, 46.519219156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": null, "random": 121.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.261368236300001, 47.631497785199997 ], [ -119.262067483300001, 47.638792737300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900, "random": 95.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.049476697399996, 46.168670079 ], [ -119.054732335300002, 46.173406560300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000, "random": 46.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.584121356599994, 48.855268045400003 ], [ -122.588445244300004, 48.8674825234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": null, "random": 172.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.003281298499999, 47.947389362 ], [ -119.005266057699998, 47.944909575600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900, "random": 164.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.450386834699998, 48.694933143299998 ], [ -119.442670124299994, 48.701328551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400, "random": 126.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075356614399993, 48.598579374300002 ], [ -118.075169820799999, 48.606899166200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300, "random": 172.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.225745399199994, 46.736355393899998 ], [ -117.208860642800005, 46.733747506299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000, "random": 144.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335932665900003, 48.347174658900002 ], [ -122.335313918300002, 48.3777532366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200, "random": 155.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.791625482900002 ], [ -118.735554338, 46.793750807800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000, "random": 114.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.122345378399999, 47.667181773700001 ], [ -122.115157878700003, 47.667096279399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600, "random": 150.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.417664840599997, 46.246889012499999 ], [ -120.410713062599996, 46.255407269700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900, "random": 19.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875671430799997, 47.824142318100002 ], [ -122.878433839099998, 47.821394556500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000, "random": 119.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410523712599996, 47.752316359200002 ], [ -117.406639866399999, 47.763222621200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300, "random": 127.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265005071199994, 48.9927318071 ], [ -122.265002944299994, 48.993579316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900, "random": 84.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269375668099997, 47.484840194500002 ], [ -122.271537638, 47.477462388399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500, "random": 9.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863144207199994, 47.438638765599997 ], [ -122.851089359900001, 47.446717857899998 ], [ -122.843229071500005, 47.447241419800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": null, "random": 115.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.333734241200005, 46.9675559139 ], [ -119.320979929399996, 46.965364278199999 ], [ -119.290589343700006, 46.981978531700001 ], [ -119.254646437100007, 46.981691158700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600, "random": 136.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.877917606599993, 47.669492940399998 ], [ -117.882368880900003, 47.690430715700003 ], [ -117.872121492299996, 47.713378462900003 ], [ -117.870530194300002, 47.732077034600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": null, "random": 7.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.408900948099998 ], [ -120.292056688399995, 47.410528213699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000, "random": 37.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.480181976799997, 47.163214850199999 ], [ -122.473678655800001, 47.161579212200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100, "random": 145.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.583684497899995, 47.813587039799998 ], [ -122.575679242, 47.808398297399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500, "random": 43.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.170997888499997, 48.267960125199998 ], [ -122.210814926099999, 48.308349596799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000, "random": 33.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.593368100200003 ], [ -117.564917202, 47.591692702800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000, "random": 38.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184768822300001, 48.068137954100003 ], [ -122.184688057800003, 48.081606951700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300, "random": 65.877 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.371241075399993, 46.100085005300002 ], [ -118.375260257600004, 46.129716562399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": null, "random": 155.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.997641541099995, 47.684484429800001 ], [ -118.985352868500001, 47.684966131 ], [ -118.9278071982, 47.709840051400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000, "random": 68.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179508185499998, 47.587907527399999 ], [ -122.179914892699998, 47.598495893900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000, "random": 42.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407107026299997, 45.6049828823 ], [ -122.406870838900005, 45.601867264600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": null, "random": 75.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490492646700005, 47.375924811600001 ], [ -119.488596417300002, 47.377485891200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000, "random": 193.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485965163399996, 48.833349154399997 ], [ -122.4859682883, 48.855145538899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900, "random": 111.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.066111656799997 ], [ -124.127774356900005, 48.061089142900002 ], [ -124.0856497531, 48.068244521399997 ], [ -124.037698168600002, 48.0703874967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700, "random": 69.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.813279974300002 ], [ -121.557856685800004, 47.807637566499999 ], [ -121.540417972, 47.810158778199998 ], [ -121.517471643600004, 47.804071842299997 ], [ -121.512400876699999, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000, "random": 176.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661277098900001, 45.746467718700004 ], [ -122.664414851900005, 45.756639908099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000, "random": 185.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.135501710200003, 47.972868825600003 ], [ -122.114744563800002, 47.954618627499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": null, "random": 14.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.298061500200006, 47.409742022300001 ], [ -120.300607207100001, 47.409654076099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000, "random": 42.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247352685300001, 47.377958376700001 ], [ -122.247376556299997, 47.381354441399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900, "random": 54.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644238838700005, 46.531879556699998 ], [ -122.634093082299998, 46.532248674500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400, "random": 122.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.203516548099998, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.222631107599994, 46.725847558300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000, "random": 84.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.400125516599999, 45.586998701900001 ], [ -122.402641327300003, 45.585686270099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000, "random": 7.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293787584699999, 47.200149198600002 ], [ -122.293870047200002, 47.204398406 ], [ -122.290066264700002, 47.2038050564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000, "random": 24.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.406884499699999, 47.158958883700002 ], [ -122.393823270400006, 47.158137239699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100, "random": 75.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370959862099994, 47.979159491 ], [ -122.385831363199998, 47.982748053900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000, "random": 179.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293814458300005, 47.198880376799998 ], [ -122.293787584699999, 47.200149198600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000, "random": 89.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.649042313899997 ], [ -122.655558176300005, 47.650535837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000, "random": 139.037 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673833689800006, 45.631859894199998 ], [ -122.6726646061, 45.631866589399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500, "random": 62.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.912284865700002, 46.056970700299999 ], [ -118.909947142199997, 46.058308654699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500, "random": 167.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474208349899996, 46.700892472 ], [ -120.465829961099999, 46.711097427799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000, "random": 94.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377696220900006, 47.798612414700003 ], [ -122.373695657499994, 47.795196513100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000, "random": 111.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296157619300004, 48.435565171 ], [ -122.291840117899994, 48.435550659800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000, "random": 83.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188511970299999, 47.611623862899997 ], [ -122.188529648, 47.616765508900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000, "random": 171.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653315631300003, 47.567379882300003 ], [ -122.653297245499999, 47.565534571500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000, "random": 182.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916597970300003, 46.144744943200003 ], [ -122.916264697100004, 46.145605350099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000, "random": 138.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.028516892599995, 46.305963005899997 ], [ -120.013093485200002, 46.3059829046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300, "random": 102.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320553420799996, 48.891030585 ], [ -122.320722865899995, 48.912829965100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000, "random": 81.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.038983233799996, 46.226914300700003 ], [ -119.027146233699995, 46.218717987399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000, "random": 79.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.528253126199999, 46.654039018799999 ], [ -120.527113323099996, 46.655943553199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000, "random": 164.932 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118265929399996, 47.2502870454 ], [ -122.112160128799999, 47.242931552599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000, "random": 160.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.793799155900004, 47.433132785799998 ], [ -117.783418362399999, 47.441020789200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000, "random": 195.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293993914699996, 47.326235555899999 ], [ -122.292614717500001, 47.344545475799997 ], [ -122.295819424300007, 47.353032929900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000, "random": 163.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626109567699999, 47.3846980617 ], [ -122.620850775199997, 47.372720529399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000, "random": 146.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410423958199999, 47.740712806499999 ], [ -117.407087236199999, 47.744195225299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300, "random": 29.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.399522232699994, 48.793981232900002 ], [ -119.401078624700006, 48.814963264399999 ], [ -119.409891775800006, 48.8417212767 ], [ -119.407549153299996, 48.859081556299998 ], [ -119.423760253300003, 48.8850520385 ], [ -119.426794558799998, 48.898801598699997 ], [ -119.420443464, 48.919524219700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200, "random": 14.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.621462692899996, 46.346976223799999 ], [ -123.6093516169, 46.356012526100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100, "random": 23.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903076937500003, 46.284254283700001 ], [ -122.901700070499999, 46.285276014200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000, "random": 124.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244670656400004, 47.904148545300004 ], [ -122.24100502, 47.904892859199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000, "random": 176.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.319274617600001, 47.577721374600003 ], [ -122.318990083399996, 47.579369760500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800, "random": 17.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332618262099999, 48.341159403600003 ], [ -122.322313601900007, 48.340974526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000, "random": 96.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217566158099999, 47.849690876499999 ], [ -122.218079123799996, 47.8520936404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000, "random": 28.235 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.062691487199999, 47.656513354700003 ], [ -122.024659802599999, 47.644263262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000, "random": 44.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.211100709899995, 47.878184265599998 ], [ -122.2064495037, 47.878180766299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000, "random": 57.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.603896853600006, 47.6429304571 ], [ -117.593089756500007, 47.642918812600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000, "random": 48.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688395438200004, 45.8215294532 ], [ -122.699496916599998, 45.845401667700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600, "random": 143.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514228560500001, 45.8854969434 ], [ -122.514116367699998, 45.8882670084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700, "random": 148.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.412787102400003, 47.422542421899998 ], [ -121.412508613300005, 47.418857502400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000, "random": 185.845 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.067000553100002, 48.031134417300002 ], [ -122.051514997400005, 48.034741364600002 ], [ -122.015412092800005, 48.067401767299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000, "random": 44.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.047865250500003 ], [ -122.867737390599999, 46.066231654399999 ], [ -122.866731665200007, 46.081553949700002 ], [ -122.876647239099995, 46.102739118099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000, "random": 30.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.661060041399999 ], [ -122.292384800099995, 47.661192848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000, "random": 55.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.728844260700001, 46.3273755528 ], [ -122.709604065799994, 46.341306258899998 ], [ -122.705966832, 46.350625811100002 ], [ -122.6957643354, 46.359026044300002 ], [ -122.679498242500003, 46.361618515499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000, "random": 196.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.126056682500007, 47.833819378100003 ], [ -122.124004338700004, 47.8375143859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320, "random": 191.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.044931377099999, 48.751377685199998 ], [ -118.034109831899997, 48.763627811 ], [ -118.002920408199998, 48.781715524500001 ], [ -117.998459415400006, 48.793023789300001 ], [ -118.003543932300005, 48.8008410224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680, "random": 186.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.704906039099995, 48.278203789899997 ], [ -119.706008475800004, 48.282630412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700, "random": 160.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300484167799993, 46.887392915900001 ], [ -122.295683874600002, 46.910147070800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000, "random": 154.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515944338099999, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000, "random": 36.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.475500972600003, 47.715405460100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900, "random": 91.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.948745162199998, 47.3816100186 ], [ -122.914757678599997, 47.388043454699996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200, "random": 171.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.597361691299994, 47.828865968800002 ], [ -117.608683861800003, 47.839539399300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": null, "random": 112.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.293885132499994, 47.149636909800002 ], [ -119.294218817200004, 47.149727948900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000, "random": 199.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169616112499995, 47.877828645699999 ], [ -122.1659527236, 47.877799075399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500, "random": 69.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.080202258200003, 46.218655692 ], [ -119.076728009700005, 46.226590831800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000, "random": 60.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632929343599997, 47.565033362400001 ], [ -122.632862566, 47.565755526899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600, "random": 80.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.003770001299998, 46.305320537199997 ], [ -117.9916818783, 46.312854873399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000, "random": 95.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054913420899993, 46.331157364600003 ], [ -124.044713133499997, 46.331198202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580, "random": 101.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.031138145499995, 46.546457236800002 ], [ -124.034530523800001, 46.549222742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000, "random": 91.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.290526581899996, 47.672483866100002 ], [ -117.274059505500006, 47.674765049900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000, "random": 131.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206818324099999, 47.898121112 ], [ -122.207007235500001, 47.904960629900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000, "random": 31.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281965348300005, 47.864172748 ], [ -122.280478947800006, 47.865772013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500, "random": 24.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.149338525600001, 45.627246477 ], [ -121.153525229400003, 45.636291317800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000, "random": 31.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.887897361499995, 46.229024854899997 ], [ -122.885558695599997, 46.243136327400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000, "random": 30.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.291613470800002, 47.299067816 ], [ -121.285599041099999, 47.294343061399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000, "random": 153.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.730092058300002, 45.9194293595 ], [ -122.7339030885, 45.918773383199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000, "random": 118.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.079520179400006, 46.232297928400001 ], [ -119.080053636599999, 46.233384559900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": null, "random": 10.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.939367330300001, 47.026315604300002 ], [ -119.865717202, 47.0813852641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200, "random": 178.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.585172443900007, 47.092882859500001 ], [ -117.597036992200003, 47.095543250600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320, "random": 69.04 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.865029997199997 ], [ -118.214404576, 48.874449448 ], [ -118.219199731900005, 48.891168941399997 ], [ -118.218489894200005, 48.896205512800002 ], [ -118.204913599199998, 48.908879903699997 ], [ -118.222481004599999, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.223193704400003, 48.971453685500002 ], [ -118.224439920799995, 48.998115780500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000, "random": 95.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.056532360299997, 47.195825610500002 ], [ -121.046769006600002, 47.190672131600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000, "random": 183.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215998368200005, 47.473770254400002 ], [ -122.216263351899997, 47.478470607600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": null, "random": 111.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.956002034900003 ], [ -119.002377226700006, 47.948533089199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800, "random": 44.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043382483900004, 46.311738539 ], [ -124.044606618200007, 46.317989866200001 ], [ -124.054772670800006, 46.323425158100001 ], [ -124.054947732100004, 46.330246772899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000, "random": 103.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.234147864099995, 46.387454465300003 ], [ -120.200680188899995, 46.357573287699999 ], [ -120.182959056, 46.349209599600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000, "random": 68.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411097387599995, 47.686238881100003 ], [ -117.411101904299997, 47.687150654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000, "random": 103.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.582610488200004, 47.642912863 ], [ -117.577214570099997, 47.642932904799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000, "random": 136.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643946939900005, 47.502784521800002 ], [ -122.634247378599994, 47.504927174099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000, "random": 93.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.147513064799995, 47.339074769200003 ], [ -122.143767362399998, 47.345066001900001 ], [ -122.128207298199996, 47.353574893599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000, "random": 52.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.650885583600001, 47.537444733500003 ], [ -122.637848629700002, 47.542187291499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000, "random": 91.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495889545400004, 48.783500549099998 ], [ -122.497820086399997, 48.783587733399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000, "random": 12.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.182511221699997, 46.729023359400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000, "random": 48.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564633443899993, 47.513589589299997 ], [ -117.5670476974, 47.526881555 ], [ -117.593629232699996, 47.554738091399997 ], [ -117.594120527599998, 47.5625995288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900, "random": 159.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.159561450200002, 47.252225085900001 ], [ -123.145765470900002, 47.252121037599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": null, "random": 177.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.303513312099994, 47.110007206900001 ], [ -119.294245746800001, 47.119132439200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 197.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615807335900001, 48.512636822700003 ], [ -122.636132486099996, 48.512755540500002 ], [ -122.657978741700006, 48.5069926006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000, "random": 136.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.668938631800003, 48.0733486098 ], [ -123.598965558, 48.063806291399999 ], [ -123.583078776199997, 48.065841690100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000, "random": 195.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292406555300005, 47.820973150699999 ], [ -122.287114971500003, 47.8209339215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000, "random": 133.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.746224608399999, 48.137356281899997 ], [ -123.745586975199998, 48.137285238700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200, "random": 65.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.462653556099994, 48.1066210145 ], [ -123.462540653399998, 48.107899627400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910, "random": 151.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668572481799998, 47.894342293400001 ], [ -117.686186201400005, 47.890718012100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900, "random": 155.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.441091926599995, 48.703150918200002 ], [ -119.439813485299993, 48.704571899400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000, "random": 149.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.288368397699998 ], [ -122.177941413900001, 47.288130723499997 ], [ -122.154828224400006, 47.274967721400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": null, "random": 30.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.950074709399999, 47.861313163799998 ], [ -119.930668758, 47.8631043834 ], [ -119.920442447799999, 47.872582175399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600, "random": 139.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.324149951099997, 46.973314033699999 ], [ -117.349911117100007, 46.987419149499999 ], [ -117.354064457, 47.005882445099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100, "random": 183.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405380887899994, 48.685132053300002 ], [ -117.396461636200002, 48.667289585799999 ], [ -117.371385464900001, 48.638834787699999 ], [ -117.362922273199999, 48.603348115800003 ], [ -117.352655557299997, 48.590436785900003 ], [ -117.354644499200006, 48.566966490200002 ], [ -117.345558882600002, 48.5553675301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000, "random": 130.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351048352700005, 47.782943186399997 ], [ -122.348707769499995, 47.781426295800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600, "random": 90.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.333317827499997 ], [ -118.69367346, 47.333365258299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000, "random": 74.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.047676523800007, 47.733358665799997 ], [ -117.041955367100002, 47.735800091400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500, "random": 6.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265443253900003, 46.866803346399998 ], [ -122.265450775100007, 46.869141366299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000, "random": 108.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.053676429700005, 47.357995259100001 ], [ -122.043550485099999, 47.357973821800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000, "random": 162.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.709670661800004, 47.463275161699997 ], [ -121.696592014, 47.446769656400001 ], [ -121.6749565537, 47.443251501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000, "random": 94.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.732315224099999 ], [ -122.637075428399996, 47.733467131899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800, "random": 119.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.125057273300001, 47.4302399209 ], [ -123.140333593799994, 47.407055777499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": null, "random": 35.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.762408837899997, 47.146818992100002 ], [ -119.738029801699994, 47.162025528500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": null, "random": 7.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.023988532800004, 47.836037193 ], [ -120.014883602300003, 47.838858014700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000, "random": 116.327 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364278768800006, 47.821506704400001 ], [ -122.361708309099996, 47.821485407600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000, "random": 82.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.644133222500002 ], [ -122.367891931399996, 48.654517081400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500, "random": 92.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.980925049600003, 47.207837572700001 ], [ -120.982525220699998, 47.209234482500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100, "random": 40.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.673838776899998, 45.632559899699999 ], [ -122.677075241200001, 45.632772139099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600, "random": 81.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811070066900001, 46.973262377700003 ], [ -123.813278595100002, 46.9750588263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000, "random": 189.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.935642047900004, 47.522410772800001 ], [ -121.903493556599997, 47.506541775800002 ], [ -121.889966995600005, 47.507262303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500, "random": 93.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.169361525799999, 46.2688128518 ], [ -118.159927028200002, 46.270183251399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800, "random": 94.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.361212471599998 ], [ -120.117892276500001, 48.359995303799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000, "random": 6.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179444856399996, 47.665768017300003 ], [ -117.143304038899998, 47.665506429499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000, "random": 158.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.527048557500002 ], [ -122.6680239887, 47.531878978500004 ], [ -122.662091039200007, 47.539282091600001 ], [ -122.650885583600001, 47.537444733500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000, "random": 135.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.891017634700006, 46.421545267 ], [ -122.888987911800001, 46.435916736300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000, "random": 197.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298604580399996, 47.290674507299997 ], [ -122.284486184800002, 47.298220875799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470, "random": 16.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.065402195100006, 46.505633184399997 ], [ -118.109757182, 46.512921210800002 ], [ -118.140418843299997, 46.527665872299998 ], [ -118.154752003499993, 46.539479251700001 ], [ -118.178033677200006, 46.547293889499997 ], [ -118.178732483199994, 46.558210958899998 ], [ -118.217550979400002, 46.584015334100002 ], [ -118.222302280899996, 46.598111115099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500, "random": 80.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.722622225500004, 45.928000884200003 ], [ -122.725591561399995, 45.920528940899999 ], [ -122.730092058300002, 45.9194293595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000, "random": 95.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.333169631900006, 46.376967707399999 ], [ -120.359757614700001, 46.390548467899997 ], [ -120.393374497699995, 46.415054976599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000, "random": 31.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.906003446900002, 47.021545965500003 ], [ -122.898390582700003, 47.025431031899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800, "random": 136.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.625157561899996, 46.600746377699998 ], [ -123.618744180500002, 46.592608218199999 ], [ -123.618502852899994, 46.564256892800003 ], [ -123.6111780751, 46.555555809 ], [ -123.603576087500002, 46.554836152199996 ], [ -123.587927380300002, 46.563085968499998 ], [ -123.574657667500006, 46.5626246259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": null, "random": 197.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.675248149599994, 47.588574571099997 ], [ -120.67150803, 47.590263712199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200, "random": 127.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.889112476099996, 46.583669137900003 ], [ -122.885750729199998, 46.583809204700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000, "random": 186.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.778759274099997, 48.917169304399998 ], [ -117.777288263200006, 48.917759441100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500, "random": 108.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.961543513799995, 47.60154051 ], [ -121.953247282800007, 47.588372095700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000, "random": 154.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.114744563800002, 47.954618627499997 ], [ -122.106378900300001, 47.952031161599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900, "random": 14.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729377121900001, 46.686629520799997 ], [ -123.7300519299, 46.688858411699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000, "random": 33.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.517679251299995, 46.631227130200003 ], [ -120.513577041800005, 46.628489658200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000, "random": 43.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200, "random": 110.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.182511221699997, 46.729023359400003 ], [ -117.180095245900006, 46.728918094299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": null, "random": 39.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.305116425799994, 47.526696943499999 ], [ -120.293092081899999, 47.543409541300001 ], [ -120.262078237, 47.568872114100003 ], [ -120.249176440499994, 47.586962431300002 ], [ -120.239242191399995, 47.621125704299999 ], [ -120.241420398499997, 47.630983512500002 ], [ -120.228266789700001, 47.650259650599999 ], [ -120.224545529500006, 47.663264841699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000, "random": 106.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.571273361700001 ], [ -121.888033564200001, 47.567584502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000, "random": 36.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379284717800005, 48.240979182499999 ], [ -122.370672134800003, 48.2410706967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000, "random": 34.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.085823104799999, 46.196615068200003 ], [ -119.093346862800004, 46.199133631599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": null, "random": 125.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.152582169300004, 47.860201246599999 ], [ -120.114481517, 47.847725419500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540, "random": 182.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.971606228400006, 46.509744574199999 ], [ -117.977840654, 46.512579007900001 ], [ -118.029558898800005, 46.502950393100001 ], [ -118.050008143, 46.507292613700002 ], [ -118.065402195100006, 46.505633184399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000, "random": 23.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645684510400002, 47.7518428642 ], [ -122.639978566899998, 47.756166092299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400, "random": 85.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.594712953699997, 47.504905792 ], [ -122.592794232299994, 47.504927880300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600, "random": 130.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.052821815499996, 47.141055273299997 ], [ -122.036341396, 47.156422077599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200, "random": 179.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.204337991100005, 46.705845765100001 ], [ -117.203516548099998, 46.708001321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000, "random": 163.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.942880451299999 ], [ -117.481552386600001, 47.9470052096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100, "random": 177.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.141300861900007, 47.405012501800002 ], [ -123.147774384399995, 47.384520677700003 ], [ -123.159376622, 47.370405308599999 ], [ -123.161116265700002, 47.340641815700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600, "random": 171.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.555153906599998, 48.311333202900002 ], [ -121.554392316299996, 48.321462528600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000, "random": 28.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.819166039899997, 48.320150205300003 ], [ -117.826670839800002, 48.327146945499997 ], [ -117.833986735799996, 48.353122342900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000, "random": 184.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329829059700003, 47.704134634699997 ], [ -122.329952106299999, 47.704882007199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000, "random": 159.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.154828224400006, 47.274967721400003 ], [ -122.152629008199995, 47.274448600299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200, "random": 171.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.841560284099998, 47.410924864 ], [ -122.838363531100001, 47.410922375600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400, "random": 36.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385482118499993, 47.946057096099999 ], [ -124.385457650199996, 47.948085936299996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500, "random": 143.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161116265700002, 47.340641815700003 ], [ -123.161323536300003, 47.333867098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700, "random": 111.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.860540292699994, 47.423328077500003 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000, "random": 124.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.027992805500006, 47.359680347900003 ], [ -122.020926540700003, 47.361394117099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430, "random": 199.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.375260257600004, 46.129716562399999 ], [ -118.372622271500006, 46.147436197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000, "random": 170.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552592386800001, 45.667269374599996 ], [ -122.552555247699999, 45.677831341699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000, "random": 87.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.137126389299993, 46.221619445499996 ], [ -119.134005824, 46.2288412929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400, "random": 176.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348249025300007, 48.4942122629 ], [ -122.377330564199994, 48.515561334899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000, "random": 58.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.509518930300004, 45.849808906200003 ], [ -121.510864891400004, 45.865505866299998 ], [ -121.521232831899994, 45.884748055700001 ], [ -121.499674197900006, 45.915317054 ], [ -121.489450713, 45.960811529600001 ], [ -121.493535282300002, 45.968435289200002 ], [ -121.525210308599995, 45.9957998151 ], [ -121.533733565099993, 45.998403068800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": null, "random": 188.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.794473089500002, 48.098315156799998 ], [ -119.790196608299993, 48.100144655100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000, "random": 83.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.445709836900001 ], [ -122.5823712081, 48.454401804699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000, "random": 144.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.799623657799998, 48.050485332299999 ], [ -122.815529775599998, 48.068412549100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000, "random": 22.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664164383799999, 45.6564855831 ], [ -122.666920309700004, 45.663291930500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000, "random": 66.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.334192049500004, 47.590279780800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000, "random": 39.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345492024099997, 47.752635419400001 ], [ -122.345920634, 47.770834163700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800, "random": 75.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.685005097499996, 48.650649293199997 ], [ -118.673811891499994, 48.650431699499997 ], [ -118.670635263199998, 48.654138832599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600, "random": 124.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228797033399999, 46.322331888 ], [ -120.117378226699998, 46.248725870800001 ], [ -120.041926287600006, 46.221991493099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190, "random": 63.927 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.584396609699994, 46.533432677599997 ], [ -118.565160662400004, 46.537428166 ], [ -118.534825247, 46.572156727399999 ], [ -118.561154034200001, 46.627326138400001 ], [ -118.556848579199993, 46.635516328100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570, "random": 13.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.246433641500005, 46.055605308700002 ], [ -122.245609134899993, 46.055680719800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300, "random": 30.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262812267699999, 48.992749594800003 ], [ -122.265005071199994, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400, "random": 161.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.483953405400001, 46.795471160200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000, "random": 113.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.496735426400001 ], [ -122.252782505699997, 48.502886244300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300, "random": 196.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.056208336699996, 48.7288096268 ], [ -121.024812358099993, 48.7241331 ], [ -120.968318631900004, 48.705224961299997 ], [ -120.919119912499994, 48.705888890600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000, "random": 117.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.788090911200001, 46.967896691 ], [ -123.801005869, 46.971539450800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 161.296 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612626586600001, 48.493451127500002 ], [ -122.612833645500004, 48.496398719699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100, "random": 119.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.637751379400001, 48.063009348500003 ], [ -117.636770498199994, 48.062719337099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900, "random": 120.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.954577124599993, 48.075450517699998 ], [ -123.916784450199998, 48.067797845 ], [ -123.858852409199997, 48.049459926700003 ], [ -123.826778905099999, 48.052291291899998 ], [ -123.807677862399999, 48.048863648699999 ], [ -123.779905823099995, 48.060119262500002 ], [ -123.769762640300002, 48.075838811600001 ], [ -123.7358376193, 48.0813231124 ], [ -123.730668280800003, 48.086136372799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000, "random": 106.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.648308855899998 ], [ -122.579412024899995, 45.667671509400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000, "random": 144.752 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.375970115900003, 47.246990619100004 ], [ -122.373038808499999, 47.247348751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": null, "random": 181.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.086191127799999 ], [ -119.862843386099996, 47.089686787200002 ], [ -119.8540034289, 47.093700135 ], [ -119.853547960699998, 47.103252983899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900, "random": 58.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.080364486099995, 46.745280488500001 ], [ -124.082452188100007, 46.754402918799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100, "random": 67.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.060939272699997, 46.176246614599997 ], [ -119.074559942500002, 46.186526936600004 ], [ -119.077331005, 46.1940733709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900, "random": 59.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.430579358700001 ], [ -122.876359546700002, 47.4318329878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600, "random": 156.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.496876955600001, 47.797040983899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000, "random": 6.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168895232500006, 47.752366135400003 ], [ -122.161191571299995, 47.745209637099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": null, "random": 165.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.566673812700003, 47.2998586553 ], [ -119.561131671, 47.307552076599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000, "random": 90.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144515819600002, 48.227617892399998 ], [ -117.114708009799998, 48.222520715199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000, "random": 171.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292993751799997, 47.156628841500002 ], [ -122.294069570399998, 47.160493451299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000, "random": 131.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271494257699999, 47.377466250099999 ], [ -122.24684628, 47.377964291200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000, "random": 83.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661701633600003, 45.779505486300003 ], [ -122.656548613499993, 45.7796107255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000, "random": 59.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.394991893300002, 47.657584632800003 ], [ -117.3965543236, 47.661842762900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": null, "random": 174.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.201670504199996, 47.721495814900003 ], [ -120.197066983400006, 47.735520968199999 ], [ -120.188416507400007, 47.745071832299999 ], [ -120.148957768100004, 47.762722774899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000, "random": 195.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.283809503200004, 47.760008456599998 ], [ -122.280599866599999, 47.756565837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000, "random": 178.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.400418780199999, 46.474277949700003 ], [ -120.387370638700006, 46.467004185500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800, "random": 134.127 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.754773443199994, 46.682331222199998 ], [ -123.745782143599996, 46.682825318699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000, "random": 127.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564647296199993, 47.507958508500003 ], [ -117.564633443899993, 47.513589589299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": null, "random": 60.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.103450609399999 ], [ -119.558893640899996, 47.103882462800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000, "random": 150.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.314791488500006, 47.797788041300002 ], [ -122.310957498199997, 47.8036768463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200, "random": 180.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.016289419499998, 46.139440137500003 ], [ -119.013609534699995, 46.147890311099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000, "random": 94.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.797563812500002, 46.224556295900001 ], [ -119.779376178199996, 46.221205174600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800, "random": 138.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.148584559100001, 47.888641626199998 ], [ -122.144284589, 47.891173255600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000, "random": 90.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257680961399998, 47.462429673300001 ], [ -122.253811390799996, 47.4617511143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000, "random": 101.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651197780100006, 48.3765935554 ], [ -122.646951111700005, 48.391135786100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000, "random": 139.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.489974820499995, 47.637797794500003 ], [ -117.483419434499993, 47.634916335500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000, "random": 69.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669463427099998, 48.280628991100002 ], [ -122.668693546900002, 48.283922347400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": null, "random": 20.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.288340059399999, 47.399384796299998 ], [ -120.2863393433, 47.398285650200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000, "random": 178.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.733806907100004 ], [ -122.296538445699994, 47.733797081399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000, "random": 188.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.142989269300003 ], [ -123.0963235193, 47.134272394600004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500, "random": 143.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.981395463599995, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800, "random": 109.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.072862455399999, 48.6070846621 ], [ -118.075403226600002, 48.606220092400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400, "random": 145.232 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045556290500002, 46.407257511799997 ], [ -117.045566791300004, 46.414486419900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000, "random": 130.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.419932827700002 ], [ -117.041885819499996, 46.419993072600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": null, "random": 65.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.781151703399999, 48.104181729499999 ], [ -119.775684841300006, 48.108642657799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000, "random": 194.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.920372202400003, 48.554843041200002 ], [ -117.925161936600006, 48.557993926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400, "random": 58.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897497354099997, 46.479396397800002 ], [ -122.881749481, 46.475259386899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000, "random": 103.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363209074799997, 47.2405896685 ], [ -122.344490274500004, 47.241062232600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700, "random": 56.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.150260957100002, 46.142040045900004 ], [ -118.132651075499993, 46.157455291300003 ], [ -118.130696857900006, 46.165415474500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800, "random": 189.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.205741983700001 ], [ -122.909567729, 46.233183287899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800, "random": 29.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.886859147400003 ], [ -124.104230764099995, 46.887871778200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200, "random": 59.739 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.919524219700001 ], [ -119.434163266900001, 48.932386835899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900, "random": 140.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385759302799997, 47.940854639400001 ], [ -124.385510623499997, 47.944172956300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000, "random": 124.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.938095491400006, 46.145703599800001 ], [ -118.935795755699999, 46.138481177499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000, "random": 119.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.561537528599999, 47.710001753 ], [ -122.570785594699998, 47.713968150699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000, "random": 40.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323204156299994, 47.592989716799998 ], [ -122.315658494299996, 47.594845418600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700, "random": 168.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176413614599994, 46.796858286499997 ], [ -119.176696844099993, 46.804638285300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400, "random": 185.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364342917200005, 46.888526117300003 ], [ -117.364248234599998, 46.889589876499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100, "random": 107.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.273133342400001, 47.540782054399997 ], [ -124.287584452, 47.536577081899999 ], [ -124.319847884699996, 47.516524179199997 ], [ -124.333430982500005, 47.519141528500001 ], [ -124.337624769399994, 47.5271647394 ], [ -124.333471332299993, 47.538223003500001 ], [ -124.356428060900001, 47.554005940800003 ], [ -124.374466812500003, 47.612938518100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000, "random": 56.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.465256976900001 ], [ -122.219199176399997, 47.467699012399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000, "random": 153.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.687327648299998, 45.815867042 ], [ -122.685471017200001, 45.815918602799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000, "random": 188.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128207298199996, 47.353574893599998 ], [ -122.110572710599996, 47.363944159500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000, "random": 187.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.056532360299997, 47.195825610500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000, "random": 41.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579254389100001, 45.780262944 ], [ -122.563268685200001, 45.7805094295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000, "random": 62.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.344680786799998, 47.671728963900001 ], [ -117.341965966499998, 47.672396184299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200, "random": 77.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.850561469400006, 46.660610888900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000, "random": 197.341 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629521198600003, 48.320290979399999 ], [ -122.628642300899998, 48.325690041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100, "random": 154.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.579864137300007, 47.812264536500003 ], [ -121.570503455, 47.813279974300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000, "random": 168.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.460090051099996, 47.158565784700002 ], [ -122.444060501300001, 47.158268456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000, "random": 110.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293168879500001, 47.850417256599997 ], [ -122.287576154700005, 47.858150705100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000, "random": 107.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.981774674500002 ], [ -122.189552282899996, 47.981753639600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000, "random": 76.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152647623600004, 47.804983049199997 ], [ -122.143430620900006, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000, "random": 182.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.906720867399997, 46.292249626500002 ], [ -122.914456217400001, 46.320216529699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000, "random": 77.966 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194984523499997, 47.502141777600002 ], [ -122.187184739399996, 47.501857325400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300, "random": 80.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129688599199994, 48.200331111600001 ], [ -122.129998052199994, 48.205757020199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900, "random": 172.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.871409960500003, 47.5666180383 ], [ -121.865544333200006, 47.5625960148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600, "random": 108.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.682365185600005, 46.653719422899997 ], [ -123.662398840700007, 46.646951966099998 ], [ -123.6542600354, 46.633500722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000, "random": 140.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100207740599998, 47.126232692499997 ], [ -123.102377983, 47.112671686100001 ], [ -123.09520306, 47.106661623500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500, "random": 64.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485156688800004, 48.993345617800003 ], [ -122.48508877, 49.000573970300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000, "random": 77.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.474633272700004, 47.393916472299999 ], [ -121.446973949300002, 47.398224332399998 ], [ -121.431214226099996, 47.424461473699999 ], [ -121.422341719499997, 47.428268878300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000, "random": 125.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626679802699996, 45.6184887446 ], [ -122.598939776600005, 45.612974016800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000, "random": 160.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.811612660199998 ], [ -122.192118820399998, 47.812969411099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000, "random": 90.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300115628599997, 47.918585403900003 ], [ -122.300174272299998, 47.921996202499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000, "random": 109.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632929343599997, 47.565033362400001 ], [ -122.630443639299997, 47.565025907699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000, "random": 106.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411137105700007, 47.6944973222 ], [ -117.411138760100002, 47.695364210599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000, "random": 177.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639256115600006, 47.867730523600002 ], [ -122.609054417199999, 47.8521256366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000, "random": 166.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349586635600005, 47.9814746809 ], [ -117.349645452600001, 48.006891476200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700, "random": 12.678 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.743735295700006, 48.025325982600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000, "random": 130.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125523976699995, 47.463515808799997 ], [ -122.137621938500004, 47.465295400099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300, "random": 86.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.417472887399995, 48.746283143299998 ], [ -117.414688142299994, 48.756626766499998 ], [ -117.402437726, 48.767667125899997 ], [ -117.4076382091, 48.776459047700001 ], [ -117.422085135299994, 48.782708073099997 ], [ -117.423235010699997, 48.788371205700003 ], [ -117.3946339612, 48.826819088800001 ], [ -117.388047876900004, 48.857011534900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200, "random": 6.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.696374883499999 ], [ -120.824534867899999, 45.698019660299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600, "random": 48.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.723851232200005, 47.772533091 ], [ -118.722593508499997, 47.770852469499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260, "random": 181.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.829386907599996, 47.140876411299999 ], [ -117.844891009700007, 47.154291328299998 ], [ -117.871041369599993, 47.157813877199999 ], [ -117.8713875973, 47.187839622699997 ], [ -117.890363619599995, 47.209222122699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000, "random": 51.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.793659489500001, 48.0437626987 ], [ -122.799623657799998, 48.050485332299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500, "random": 167.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.491553232699999 ], [ -122.910333599099999, 46.482928058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400, "random": 15.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.496037783899993, 46.867087036299999 ], [ -119.475337364799998, 46.862537997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000, "random": 143.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334702393599997, 47.537528499399997 ], [ -122.334726948400004, 47.537831831200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810, "random": 98.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.056080360799996, 46.325030540900002 ], [ -117.063967954600002, 46.328821040299999 ], [ -117.053320189399997, 46.335256508400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600, "random": 130.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.969891123699995, 46.401938255399998 ], [ -122.961521274199995, 46.401988221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500, "random": 71.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045566791300004, 46.414486419900001 ], [ -117.045192163600007, 46.416527455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000, "random": 116.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339365238799999, 47.5748709959 ], [ -122.336346718100003, 47.591654033399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500, "random": 75.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.706218593200006, 46.8779876268 ], [ -123.709580028600001, 46.8824221446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200, "random": 159.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.465118033899998, 46.282211226100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000, "random": 133.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.182392328899994, 46.715330188400003 ], [ -117.184576053, 46.720909245599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100, "random": 174.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.361391847199997, 46.549463895599999 ], [ -120.335129764, 46.548771068100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700, "random": 29.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.881018551099999 ], [ -117.364342917200005, 46.888526117300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200, "random": 87.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.769599737799993, 46.954635166599999 ], [ -123.770391468200003, 46.955307304500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000, "random": 103.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202462298100002, 47.095325541900003 ], [ -122.187759518799993, 47.081938472700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000, "random": 6.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.198694023100003, 47.2401706315 ], [ -123.191242888199994, 47.242935812799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410, "random": 68.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.097610307799997, 45.826067191100002 ], [ -121.077566918499997, 45.836913589200002 ], [ -121.064289423600002, 45.837612584699997 ], [ -121.060896024499996, 45.843177933500002 ], [ -121.044002493600004, 45.843371461099998 ], [ -121.042019508, 45.848528330800001 ], [ -121.037431310399995, 45.841060737600003 ], [ -121.015416675300003, 45.841381874200003 ], [ -121.0043878428, 45.846294675199999 ], [ -121.003848291799997, 45.857237926899998 ], [ -120.997219649499996, 45.857574439399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000, "random": 51.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233958638399997, 48.510507948 ], [ -122.232397920400004, 48.510494546399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000, "random": 141.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617473035900005, 47.365342874900001 ], [ -122.617793133600003, 47.366051473299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800, "random": 46.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.496488730199999, 47.798131725399998 ], [ -122.497554247799997, 47.798831291100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520, "random": 174.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.829286058400001, 45.694065406599996 ], [ -120.8236282381, 45.696374883499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000, "random": 136.42 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.530420705599994, 46.643087440400002 ], [ -120.5304211479, 46.648673581899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000, "random": 60.395 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637075428399996, 47.733467131899999 ], [ -122.637777688900002, 47.736774087199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000, "random": 163.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387305963599999, 46.0008733795 ], [ -118.389504835099999, 46.011689678300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900, "random": 100.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.186352443700002, 46.830341964500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990, "random": 66.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571060807899997, 46.970023831600002 ], [ -118.588821056599997, 46.970155862799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": null, "random": 88.388 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813196231899994, 47.612634348100002 ], [ -119.755706339, 47.612164193300003 ], [ -119.737823227500002, 47.605157884199997 ], [ -119.720721817200001, 47.591102789399997 ], [ -119.694629581200005, 47.584182828400003 ], [ -119.669767452599999, 47.599791676300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000, "random": 21.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243057082700005, 47.378057579 ], [ -122.237362405499994, 47.377914705199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000, "random": 132.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.361708309099996, 47.821485407600001 ], [ -122.3518259847, 47.821404826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000, "random": 13.387 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193293704599995, 47.6371487563 ], [ -122.188159619700002, 47.632297944299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": null, "random": 22.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.315534249899997, 47.101630402300003 ], [ -119.312911608, 47.103458954799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700, "random": 117.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.160167104799996, 47.653951884500003 ], [ -118.157668452699994, 47.654046720899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200, "random": 41.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.970613858599997 ], [ -123.802314696699995, 46.971505074900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": null, "random": 23.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.071479554600003, 47.648195998 ], [ -120.071448459500004, 47.649174407700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000, "random": 194.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.347086854799997, 46.061393464600002 ], [ -118.348481306400004, 46.063085166599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200, "random": 163.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.329101340899996, 47.787323772299999 ], [ -117.303824325, 47.787519684300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000, "random": 110.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.197652766600001, 47.528447926200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000, "random": 67.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432220221600005, 47.238642593500003 ], [ -122.433074099799995, 47.240304818299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000, "random": 199.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.098450693100006, 47.215078872699998 ], [ -123.082787016699996, 47.216778785700001 ], [ -123.054103736900004, 47.2368676818 ], [ -123.0463421603, 47.247280654299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000, "random": 131.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054226041299998, 47.693974327299998 ], [ -117.048376727199994, 47.695688856099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000, "random": 15.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.916960776300002, 46.737852894299998 ], [ -119.918138718799995, 46.745319525799999 ], [ -119.930383358300006, 46.756611664600001 ], [ -119.925060968599993, 46.799259524599996 ], [ -119.919467667899994, 46.813419137399997 ], [ -119.929564560299994, 46.8257316077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": null, "random": 51.297 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.042225635199998, 46.969683760899997 ], [ -119.040600717100006, 46.969676722800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300, "random": 135.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.959413616800006, 46.896544591599998 ], [ -122.950446235800001, 46.896255370299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500, "random": 59.561 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.590106375900007, 48.488568208499998 ], [ -121.582719030299998, 48.488844632899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000, "random": 114.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.074051220699999, 47.358100533399998 ], [ -122.056859545, 47.357999824899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300, "random": 169.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.155209171400003, 45.649156826899997 ], [ -121.104388387900002, 45.648591460600002 ], [ -121.081741522900003, 45.658490519899999 ], [ -121.037369215300004, 45.664174095600004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100, "random": 118.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.304061906800001 ], [ -122.514138715399994, 47.305285326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000, "random": 119.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294752189299999, 47.3943368889 ], [ -122.296674778699995, 47.399436909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000, "random": 130.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331494065300006, 48.413596405900002 ], [ -122.335142695200005, 48.421566968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300, "random": 163.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.031274976600002, 46.672351954299998 ], [ -120.975125560099997, 46.671171640600001 ], [ -120.953974219700001, 46.683679184699997 ], [ -120.942336238099998, 46.683459211799999 ], [ -120.923659893600004, 46.690189834599998 ], [ -120.919967452, 46.695363991199997 ], [ -120.907976328800004, 46.693935844599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000, "random": 180.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879310735199994, 46.977845548600001 ], [ -123.882350975700007, 46.979220086200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000, "random": 89.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.475500972600003, 47.715405460100001 ], [ -117.477586451400001, 47.715503692399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800, "random": 190.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961521274199995, 46.401988221 ], [ -122.949013170200004, 46.402084921899998 ], [ -122.927933023799994, 46.411610068800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000, "random": 74.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670186995799995, 45.775331764199997 ], [ -122.674247167299995, 45.7884633898 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000, "random": 39.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.569522175499998, 47.2976027952 ], [ -122.572847574400001, 47.301360429600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000, "random": 45.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.665613796700001, 46.813801431199998 ], [ -117.655064922899996, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400, "random": 21.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320722865899995, 48.912829965100002 ], [ -122.320664178399994, 48.920195997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000, "random": 139.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918327484900004, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000, "random": 44.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.053064106800001 ], [ -122.294762770600002, 47.059261084699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800, "random": 168.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.051781073399994, 46.3795878122 ], [ -117.044817678100003, 46.394140990099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000, "random": 5.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182562213300002, 47.686153273599999 ], [ -122.179669549600007, 47.699244791799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800, "random": 198.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121615187200007, 47.676595685599999 ], [ -122.121619318300006, 47.675441060799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400, "random": 9.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300696449699998, 46.885655934600003 ], [ -122.300484167799993, 46.887392915900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100, "random": 136.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.519208512800006, 46.049950256599999 ], [ -118.480204124, 46.049048642800003 ], [ -118.438085937300002, 46.0577292113 ], [ -118.415063311300003, 46.070678448300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000, "random": 131.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341055291700002, 48.431311013600002 ], [ -122.341026043900001, 48.4420756317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990, "random": 27.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.253697876299995, 46.720834603900002 ], [ -117.222631107599994, 46.725847558300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400, "random": 21.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364914465300004, 46.890563387699999 ], [ -117.3636245159, 46.890955849400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000, "random": 74.433 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179090836499995, 48.040414721600001 ], [ -122.177835226900001, 48.046828316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000, "random": 125.049 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.573975922299994, 47.642938657400002 ], [ -117.566205816600004, 47.642947503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200, "random": 195.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.914296787699996, 47.015110256299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000, "random": 136.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191598935599998, 48.012573229799997 ], [ -122.190360403, 48.011258829500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000, "random": 86.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.494952058799996, 45.724974359400001 ], [ -121.489969530099998, 45.724018802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900, "random": 62.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.375045609799997, 46.549398523800001 ], [ -120.361391847199997, 46.549463895599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000, "random": 132.984 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.622499665700005, 46.027136071699999 ], [ -120.575532397200007, 46.039428891299998 ], [ -120.534751098499996, 46.123950149700001 ], [ -120.515530493599996, 46.143093366599999 ], [ -120.5037936831, 46.172358962799997 ], [ -120.487854800199997, 46.197116284700002 ], [ -120.479708986399999, 46.203649917900002 ], [ -120.429869876400005, 46.222839543699997 ], [ -120.419279593, 46.233519365600003 ], [ -120.417664840599997, 46.246889012499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000, "random": 112.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.346098276600003, 46.053273733 ], [ -118.346368735499993, 46.060517989899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800, "random": 99.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.291710569599999, 46.534745933400004 ], [ -120.250447797899994, 46.524888901499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900, "random": 57.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.669240505199994, 46.040335022800001 ], [ -118.658745078699994, 46.039408490699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300, "random": 39.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.338430626600001, 47.787597206599997 ], [ -117.329101340899996, 47.787323772299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500, "random": 140.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696088831899999, 47.524835015800001 ], [ -122.697108961799998, 47.524879573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000, "random": 164.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.284254798600003 ], [ -122.302875798200006, 47.300053013800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000, "random": 12.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181158518399997, 47.3649772586 ], [ -122.176118084400002, 47.363166787799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000, "random": 154.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809046887500003, 46.977210686299998 ], [ -123.813204082300004, 46.976649580699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200, "random": 21.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730710282900006, 46.682355779799998 ], [ -123.709438419799994, 46.677684145400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000, "random": 81.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244776326099995, 47.3180985045 ], [ -122.244685812399993, 47.329721985799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000, "random": 174.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303760564200005, 47.510609425299997 ], [ -122.312488370500006, 47.516734821100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220, "random": 37.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.040065100500001, 47.240331654800002 ], [ -117.039872538300003, 47.240275062099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000, "random": 148.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462747020199998, 47.215959170799998 ], [ -122.461552615700001, 47.228736272500001 ], [ -122.446627369200002, 47.230157966900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000, "random": 113.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.324862717299993, 47.675410475100001 ], [ -117.282785873700007, 47.681052638399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000, "random": 154.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.418933152799994, 48.113039913100003 ], [ -123.417186310700004, 48.112326338499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000, "random": 43.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624560448099999, 47.475269707800003 ], [ -122.642332524, 47.4978831795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": null, "random": 20.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.303554765499996, 47.410929097 ], [ -120.304106900199997, 47.412297837799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000, "random": 191.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045381435699994, 48.1774974633 ], [ -117.0441181005, 48.178055343499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000, "random": 6.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323606871600006, 47.7340600888 ], [ -122.312795996199995, 47.733976653100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000, "random": 80.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187296503900001, 48.144438471199997 ], [ -122.190021415199993, 48.159825483299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400, "random": 141.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.667477375700003 ], [ -117.359431970399996, 47.668611138199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300, "random": 102.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.517031573500006, 46.533035016500001 ], [ -122.485346572799997, 46.534276731799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200, "random": 10.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195484263400004, 48.820649558100001 ], [ -122.171628361800003, 48.832355060099999 ], [ -122.155341196, 48.853030999 ], [ -122.152315166600005, 48.8665218931 ], [ -122.157023436599999, 48.880620672500001 ], [ -122.143323619100002, 48.904712373700001 ], [ -122.138001808699997, 48.9060853167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820, "random": 43.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.154559089200006, 47.039676186900003 ], [ -117.160861289600007, 47.050954630500001 ], [ -117.146111612, 47.067878035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000, "random": 86.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876510017399994, 46.543928554799997 ], [ -122.876494769900006, 46.555080308400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200, "random": 28.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.929564560299994, 46.8257316077 ], [ -119.938781506699996, 46.835315190400003 ], [ -119.937863401300007, 46.843234490500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600, "random": 97.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.043125887399995, 48.348189060800003 ], [ -120.036243503099996, 48.360787946199999 ], [ -119.980976306499997, 48.371736888 ], [ -119.932133725400007, 48.3695684578 ], [ -119.914175859099998, 48.374242439600003 ], [ -119.898418789600001, 48.3889279841 ], [ -119.888243079600002, 48.387799660399999 ], [ -119.864801083900005, 48.396933852799997 ], [ -119.823544965400004, 48.380893153599999 ], [ -119.784579131, 48.3798347197 ], [ -119.749742668600007, 48.366086568299998 ], [ -119.728766633500001, 48.367106699600001 ], [ -119.706563017099995, 48.362740641099997 ], [ -119.699333410500003, 48.346764899500002 ], [ -119.668092465499996, 48.323036739300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000, "random": 98.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.428494472899999, 47.078773705 ], [ -122.435054349400005, 47.083944887599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100, "random": 123.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.268924316500005, 47.067984467800002 ], [ -123.252518965899995, 47.078996395899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000, "random": 30.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.183208277800006, 47.244320631100003 ], [ -121.176899997099994, 47.238944811700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270, "random": 91.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.037800322899997, 46.549187373599999 ], [ -124.037331726900007, 46.567241591600002 ], [ -124.026552155600001, 46.58429985 ], [ -124.039728302699999, 46.597881698499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300, "random": 40.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044085349400007, 47.0525732949 ], [ -124.050553109899994, 47.056629236299997 ], [ -124.108217474699998, 47.056023750400001 ], [ -124.153148232199996, 47.043350307399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900, "random": 143.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.551069679199998, 47.505156933899997 ], [ -122.529840017400005, 47.504901930199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500, "random": 148.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.721200055500006, 48.2626191576 ], [ -119.704906039099995, 48.278203789899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000, "random": 183.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547259863500003, 45.758946281599997 ], [ -122.5473330202, 45.770303523700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500, "random": 15.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333581230199997, 48.341165856 ], [ -122.332618262099999, 48.341159403600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": null, "random": 187.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.214171931899998, 47.656175559899999 ], [ -120.192470933099997, 47.683827524199998 ], [ -120.190232750099995, 47.694023640200001 ], [ -120.193718794800006, 47.699853448500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600, "random": 67.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320919167699998, 48.943809498299998 ], [ -122.320236381300006, 48.949281296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000, "random": 75.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179936919200003, 47.812576249400003 ], [ -122.175415037899995, 47.811547043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900, "random": 104.932 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959158209099996, 46.348167717800003 ], [ -123.955544747199994, 46.3504543 ], [ -123.949867913, 46.373269799699997 ], [ -123.953188389199994, 46.378421541800002 ], [ -123.949521156800003, 46.384398347299999 ], [ -123.951959767, 46.402502512600002 ], [ -123.938858253, 46.403238409799997 ], [ -123.934644570499998, 46.4158252959 ], [ -123.924298937200007, 46.419092955099998 ], [ -123.916010472099998, 46.429796141200001 ], [ -123.905851756800004, 46.429320091199997 ], [ -123.900365878200006, 46.434797424300001 ], [ -123.890681059900004, 46.435014693100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100, "random": 63.157 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.927933023799994, 46.411610068800002 ], [ -122.912117888599994, 46.4105521332 ], [ -122.891660015599996, 46.418162911099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000, "random": 14.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.180194115600003, 46.345278852200003 ], [ -120.179114482299994, 46.345519165399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100, "random": 75.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.991568619299997, 47.204446626799999 ], [ -121.991078005399999, 47.204921628199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600, "random": 151.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133344349400005, 46.826322014900001 ], [ -119.133187297500001, 46.840989608400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900, "random": 119.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.728286148199999, 46.577329772399999 ], [ -119.724843941800003, 46.568316690099998 ], [ -119.690281129100001, 46.546380582300003 ], [ -119.679092947200004, 46.526348272200003 ], [ -119.663420272799996, 46.513299188700003 ], [ -119.616605860500002, 46.502381391299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000, "random": 30.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.282622666400002 ], [ -122.317848845699999, 47.289841138299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": null, "random": 26.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.275276593300006, 47.132523853400002 ], [ -119.274000198099998, 47.133551295499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000, "random": 17.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321491668199997, 47.561289773 ], [ -122.320109391, 47.569219939200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000, "random": 83.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158789864100001, 46.209496312699997 ], [ -119.158836492899994, 46.212219507299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000, "random": 41.026 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280478947800006, 47.865772013 ], [ -122.278980462600003, 47.867386825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800, "random": 68.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202938502600006, 46.165273956500002 ], [ -119.197572222900007, 46.169229399400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000, "random": 70.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411138760100002, 47.695364210599998 ], [ -117.411153862700004, 47.713375171899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000, "random": 183.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472720513400006, 46.937733804200001 ], [ -122.471659728500001, 46.9377123473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330, "random": 57.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.679949024300001, 48.862366554600001 ], [ -121.675440298599995, 48.865191048600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500, "random": 37.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137980814599999, 48.917211390399999 ], [ -122.143204017900004, 48.917388145700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": null, "random": 152.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.392358608500004, 47.918864183700002 ], [ -119.396171573499998, 47.919272726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000, "random": 113.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.979941061399998, 46.666273563 ], [ -122.978490988800004, 46.672381097500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400, "random": 179.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252218766599995, 47.303482780300001 ], [ -122.253658472200001, 47.301293576100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000, "random": 27.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.357999824899998 ], [ -122.053676429700005, 47.357995259100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000, "random": 73.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.353351102700003, 47.7851161679 ], [ -122.351048352700005, 47.782943186399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000, "random": 76.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068928025899993, 47.724161605600003 ], [ -117.047676523800007, 47.733358665799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400, "random": 98.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.906271557799997, 46.981082315400002 ], [ -123.908386053900003, 46.981101741099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000, "random": 164.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.544028419100002, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000, "random": 188.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.293851920700007, 47.250946951400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270, "random": 152.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.039544621900006, 47.033662887 ], [ -122.043659030499995, 47.051688720900003 ], [ -122.041031056600005, 47.073412833500001 ], [ -122.047472656300002, 47.080452981100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610, "random": 121.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.412269855199995, 46.701216260800003 ], [ -118.344182075500001, 46.736172435599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000, "random": 167.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.949387860200005, 47.658311021199999 ], [ -117.937941742199996, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000, "random": 180.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.562413658599993, 45.606210172499999 ], [ -122.527484212399997, 45.5979967225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000, "random": 137.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054913420899993, 46.331157364600003 ], [ -124.054873250300005, 46.332317277199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000, "random": 22.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294065221799997, 47.077717873200001 ], [ -122.293924077300005, 47.080038511300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600, "random": 97.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813727298700002, 47.922952148299998 ], [ -122.794710098699994, 47.917547327800001 ], [ -122.758100077199998, 47.894541503500001 ], [ -122.739633872200002, 47.8911395035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000, "random": 62.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344621017700007, 47.705063887500003 ], [ -122.344733938499999, 47.706554117800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900, "random": 80.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364993136400003, 46.874611063800003 ], [ -117.365001117099993, 46.875100319600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000, "random": 54.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552151748699998, 45.68208727 ], [ -122.531897904499999, 45.682684997099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100, "random": 11.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.732310652699994, 46.324533827800003 ], [ -122.728844260700001, 46.3273755528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900, "random": 118.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.034031109400004, 48.927868621199998 ], [ -122.022755928799995, 48.927085030299999 ], [ -122.007539068300005, 48.919368790599997 ], [ -121.9849997675, 48.9008367068 ], [ -121.945053307500004, 48.8896410913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000, "random": 60.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.778025327899996, 48.108358907499998 ], [ -122.772874057500005, 48.109600754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000, "random": 131.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345578705600005, 47.780681488900001 ], [ -122.344690913099996, 47.7817536234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000, "random": 157.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249028468199995, 47.4830589416 ], [ -122.246088026600006, 47.482214079199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900, "random": 152.296 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.886803316599995, 47.569096800600001 ], [ -121.887427285, 47.571845126699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000, "random": 68.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657978741700006, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600, "random": 119.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.885330176300002, 47.913927091600002 ], [ -122.876734233400001, 47.905864379299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000, "random": 139.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342045024100003, 47.213577697200002 ], [ -122.313809808800002, 47.204468161800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": null, "random": 23.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.332058296699998, 47.626482681200002 ], [ -119.297877166500001, 47.616608480700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000, "random": 92.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.587377182499999 ], [ -117.411745008500006, 47.601977328499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000, "random": 76.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.303873683800006, 46.414040556400003 ], [ -120.284252451200004, 46.405664437900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400, "random": 126.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.047085011600004, 47.1062792018 ], [ -122.055419725099995, 47.112433828 ], [ -122.049031700800001, 47.130287962600001 ], [ -122.055720622199999, 47.138818733199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000, "random": 167.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990849498299994, 47.865717413600002 ], [ -121.979120459399994, 47.861321829600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700, "random": 32.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.306414616599994, 48.261716417199999 ], [ -124.264793495800006, 48.253169139299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780, "random": 166.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.841272719900005, 48.871952626300001 ], [ -117.827799169, 48.888248786799998 ], [ -117.813692616699996, 48.897117719900002 ], [ -117.8009917503, 48.899088371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000, "random": 122.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183614853199998, 48.051864397400003 ], [ -122.182293234300005, 48.051873874400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500, "random": 99.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.565015327600001 ], [ -122.626968669099995, 47.563649620699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200, "random": 135.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511460093300002, 45.716637242399997 ], [ -120.476914834400006, 45.702702538300002 ], [ -120.408308669099995, 45.705944172 ], [ -120.320910965500005, 45.7192547167 ], [ -120.2633497092, 45.733907703900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100, "random": 195.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.585343985400002, 48.360215974900001 ], [ -119.583575739099999, 48.361600175900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000, "random": 173.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208424345899999, 47.919513115699999 ], [ -122.207438282699997, 47.918856067699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": null, "random": 175.187 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.977574437499996, 48.130752286 ], [ -118.976256149700006, 48.135096529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": null, "random": 82.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.648337193300002 ], [ -119.123757455299994, 47.684669851400002 ], [ -118.997641541099995, 47.684484429800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": null, "random": 166.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.816994486400006, 47.165445994899997 ], [ -120.810858967900003, 47.1638387052 ], [ -120.804396129799997, 47.151352432199999 ], [ -120.783573285100005, 47.132517797399998 ], [ -120.726863476399998, 47.124847728399999 ], [ -120.716556976099994, 47.115900373700001 ], [ -120.714591251100003, 47.108965525800002 ], [ -120.691960834, 47.099261159299999 ], [ -120.623508512300006, 47.043255125400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500, "random": 128.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.117020060499996, 48.208448951699999 ], [ -122.104308415800006, 48.222137855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": null, "random": 80.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.639930354499995, 47.813732472 ], [ -119.638076096700004, 47.812191295300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": null, "random": 18.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.484229716900003, 47.393484868400002 ], [ -119.497304892800003, 47.424536612300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000, "random": 27.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106928824700006, 48.0063280675 ], [ -122.108092835899996, 48.013254047899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000, "random": 127.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.472049768399998 ], [ -122.215998368200005, 47.473770254400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000, "random": 73.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.341965966499998, 47.672396184299998 ], [ -117.328302663499997, 47.675441359600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000, "random": 89.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.713259493500004, 47.523971466399999 ], [ -122.706629013200001, 47.524789163100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500, "random": 161.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.161546213700007, 48.711848967500003 ], [ -121.135489484700003, 48.710141451200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310, "random": 13.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.953554316600005, 46.5073208118 ], [ -121.954272166500004, 46.516741194600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000, "random": 63.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.979002671100005, 46.331672597400001 ], [ -119.9790994297, 46.365427737399997 ], [ -119.970594385, 46.375313022599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": null, "random": 110.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.071448459500004, 47.649174407700002 ], [ -120.063467216700005, 47.649181278599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500, "random": 121.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.934698828799995, 47.192199706799997 ], [ -121.911303440300003, 47.166006055099999 ], [ -121.903224043700007, 47.164233431500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000, "random": 79.851 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.362741011400004, 46.041507820699998 ], [ -118.346459198399998, 46.051056921600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000, "random": 85.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.007230255699994, 47.1840617967 ], [ -120.965876132600002, 47.193616516900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400, "random": 70.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.677740465299998 ], [ -123.754773443199994, 46.682331222199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000, "random": 86.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.552013002099997 ], [ -122.209087407400006, 46.511489794299997 ], [ -122.182798105299995, 46.509401143600002 ], [ -122.156375670499997, 46.518996575700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000, "random": 12.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312795996199995, 47.733976653100001 ], [ -122.310073364900006, 47.7339389204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400, "random": 187.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.142254547199997 ], [ -119.171952885600007, 46.153817292699998 ], [ -119.149547750599993, 46.154170422100002 ], [ -119.124214058299998, 46.149340478699997 ], [ -119.066814936599997, 46.126888887900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000, "random": 61.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231398764900007, 47.396166360400002 ], [ -122.221480861800003, 47.403598799800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800, "random": 188.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740532149700002, 48.027070327099999 ], [ -122.735063893900005, 48.030824420599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500, "random": 199.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151589597300003, 48.946090996400002 ], [ -122.153615448400004, 48.949882378300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000, "random": 165.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705951896299993, 45.815636231 ], [ -122.702661090500001, 45.815547701600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200, "random": 51.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.787519684300001 ], [ -117.258208773099994, 47.7876105753 ], [ -117.229044672699999, 47.802095034499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000, "random": 184.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.437038326600003 ], [ -122.60172507, 48.441816691900002 ], [ -122.602890707, 48.445709836900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000, "random": 12.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.541484241899994, 48.011987346 ], [ -122.545504734600001, 48.015191195900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710, "random": 166.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.130472870899993, 47.242079002799997 ], [ -117.132009721, 47.274123715400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300, "random": 9.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.499879326400006, 48.710301255700003 ], [ -122.5020729469, 48.715965125899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000, "random": 125.737 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.167652506400003, 46.726238503700003 ], [ -117.1648061028, 46.723272356499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000, "random": 127.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.324949506199999, 47.760975014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000, "random": 22.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.817955935100002, 48.078069092200003 ], [ -122.815097401399996, 48.097207949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000, "random": 53.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.019798038299996, 47.1768730848 ], [ -122.016253916, 47.178420765399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000, "random": 99.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.426673153600007, 45.579885332700002 ], [ -122.417005457800002, 45.575197740100002 ], [ -122.396298268699994, 45.578556758600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500, "random": 109.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.401783262500004, 47.934588286900002 ], [ -124.385759302799997, 47.940854639400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000, "random": 173.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.192594841100004, 47.413683046800003 ], [ -123.217959682200004, 47.432796524799997 ], [ -123.210562271200004, 47.455407284800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": null, "random": 142.098 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.586741587099993, 47.0023957095 ], [ -120.555502563700003, 46.976959838500001 ], [ -120.530963491099996, 46.971801339099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600, "random": 168.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.775469671700002 ], [ -119.176494649899993, 46.782072591599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000, "random": 96.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344383008400001, 48.239891315900003 ], [ -122.330308403700002, 48.239693958899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700, "random": 68.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629242144599999, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000, "random": 121.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.976408319699999, 47.306520851 ], [ -117.964072776199998, 47.312061945700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000, "random": 146.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.333010153700002, 46.3081349737 ], [ -120.321048285, 46.321089582600003 ], [ -120.320503305499997, 46.331399090600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000, "random": 20.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.576764640199997, 47.486222185700001 ], [ -117.575965758600006, 47.486890338099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000, "random": 57.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.164627110400005, 47.757210535799999 ], [ -122.165346057799994, 47.754516793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": null, "random": 75.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.058178621300002, 47.856017657199999 ], [ -120.054025982499994, 47.855326762899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000, "random": 193.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.529484328400002, 47.134748182 ], [ -122.517339148900007, 47.1402583462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000, "random": 119.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.777466965299993, 47.867838558300001 ], [ -121.748839064899997, 47.867178683399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700, "random": 98.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.168091001400001, 46.191027551200001 ], [ -123.152718130599993, 46.193261962400001 ], [ -123.121081402499996, 46.190065032200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000, "random": 89.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280599866599999, 47.756565837 ], [ -122.276408048500002, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000, "random": 196.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.316117804900003, 47.7897600047 ], [ -122.314791488500006, 47.797788041300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900, "random": 139.627 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.945454993400006, 47.236177875400003 ], [ -123.931145249500005, 47.243796473800003 ], [ -123.918289174700007, 47.267288911100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000, "random": 42.308 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.302806556699998 ], [ -122.244302140900004, 47.302712250399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 108.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.320670922800005, 47.431977706799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600, "random": 85.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704489392200003, 48.892193408899999 ], [ -122.726383728900004, 48.892152279699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000, "random": 68.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.261565343100003, 47.831348407100002 ], [ -122.263270535, 47.832397759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300, "random": 81.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.278589829400005, 48.097019969599998 ], [ -117.272998256099996, 48.122049334499998 ], [ -117.303435399899996, 48.151795164299998 ], [ -117.301413406799995, 48.172607385500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000, "random": 111.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.420014403099998, 48.114684685299999 ], [ -123.427211290700001, 48.117642047700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000, "random": 189.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.855145538899997 ], [ -122.485955958800005, 48.862420218399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000, "random": 80.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324949506199999, 47.760975014 ], [ -122.321821318399998, 47.769655941800004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000, "random": 63.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298157912799994, 47.312895011 ], [ -122.293993914699996, 47.326235555899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500, "random": 160.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.713075020700003, 47.760489837199998 ], [ -118.710341624, 47.7597380108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100, "random": 83.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.372529039599996, 48.86403205 ], [ -117.369079137599996, 48.8628154536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000, "random": 18.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110572710599996, 47.363944159500001 ], [ -122.098714277300004, 47.369492418100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000, "random": 14.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.742490409399998 ], [ -117.172470015599998, 46.747419563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000, "random": 193.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.230733731599997, 47.817835607600003 ], [ -122.224013073500004, 47.809721463499997 ], [ -122.208930873499995, 47.809437448499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000, "random": 35.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.167144058600002 ], [ -118.232845233299997, 47.208378484400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000, "random": 199.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699652221400001, 47.5252936288 ], [ -122.700925811100007, 47.525407789200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000, "random": 131.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552764512099998, 45.6654147454 ], [ -122.552592386800001, 45.667269374599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400, "random": 167.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.421050314499993, 45.924138658899999 ], [ -122.380710601499999, 45.924278572799999 ], [ -122.379692780100001, 45.927861829500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200, "random": 65.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.525521910799995, 46.958589578900003 ], [ -121.532332495199995, 46.946931668600001 ], [ -121.531075310600002, 46.930943534299999 ], [ -121.535794516899998, 46.915604535500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000, "random": 113.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.983976336599994, 47.432043093399997 ], [ -121.967236218599993, 47.436449093100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200, "random": 123.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.365631712500004, 47.112475028 ], [ -118.365674851199998, 47.1169194581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000, "random": 43.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344490274500004, 47.241062232600001 ], [ -122.335050748, 47.244062294099997 ], [ -122.329833774799994, 47.257366559399998 ], [ -122.3081914375, 47.284254798600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350, "random": 111.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552489513599994, 46.641494681200001 ], [ -118.5525255652, 46.642228519900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720, "random": 114.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.265757964399995, 45.711153535199998 ], [ -121.247272167600002, 45.721711103499999 ], [ -121.244181878, 45.7277440027 ], [ -121.229868824299999, 45.729292887 ], [ -121.231423560600007, 45.737261284600002 ], [ -121.221621632199998, 45.7415590831 ], [ -121.222903344, 45.748171594799999 ], [ -121.208489151799995, 45.7508996878 ], [ -121.210902855399993, 45.760478560099997 ], [ -121.205395357300006, 45.7679900328 ], [ -121.213184099900005, 45.772415070500003 ], [ -121.207883874, 45.779291027 ], [ -121.205570273700005, 45.792557085200002 ], [ -121.194649921700005, 45.795047038 ], [ -121.169827870399999, 45.812276654400002 ], [ -121.153119387900006, 45.814953813 ], [ -121.151145783700002, 45.818334026400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": null, "random": 151.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.402914986699997, 46.971519895699998 ], [ -120.353361006100002, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.256574074699998, 46.949958202700003 ], [ -120.238285223399998, 46.943963765100001 ], [ -120.151783782199999, 46.943795133899997 ], [ -120.128529736199994, 46.938409907400001 ], [ -120.092331719499995, 46.944947566300002 ], [ -120.043471089799993, 46.936309792099998 ], [ -119.985668490899997, 46.939923999500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000, "random": 43.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287818599800005, 47.924514488600003 ], [ -122.284519740799993, 47.924487110100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800, "random": 143.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335262653900003, 47.416057096199999 ], [ -122.335244606, 47.423954462799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600, "random": 82.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.048737936199998, 46.339771771499997 ], [ -117.048778895200002, 46.340650080300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300, "random": 167.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.013609534699995, 46.147890311099999 ], [ -119.024188294699997, 46.149871227699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": null, "random": 87.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.103458954799997 ], [ -119.309497313199998, 47.105841174600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000, "random": 99.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239846835099996, 47.644532783199999 ], [ -117.2398564282, 47.646212052700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600, "random": 136.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.660410934200002, 45.709731907399998 ], [ -121.626766506400003, 45.710480206500002 ], [ -121.60448404, 45.720874631500003 ], [ -121.560878346099997, 45.723055259799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400, "random": 12.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.082633971199996, 48.348568806899998 ], [ -120.078231726699997, 48.346462605900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880, "random": 178.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377247312500003, 46.171261278599999 ], [ -123.377141808800005, 46.180276374400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600, "random": 151.365 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.821799270900001, 46.524455646600003 ], [ -117.791959430199995, 46.5168198788 ], [ -117.765576876099999, 46.490972070300003 ], [ -117.738467898, 46.482343388099999 ], [ -117.703876668500001, 46.464325457199998 ], [ -117.688071123599997, 46.462746474500001 ], [ -117.662548626900005, 46.4746878646 ], [ -117.628745336400002, 46.478021616299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000, "random": 79.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.979770850500003, 46.660022128100003 ], [ -122.978020353, 46.660570661400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000, "random": 177.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612617318700003, 48.511792983799999 ], [ -122.612614699800005, 48.512615782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000, "random": 44.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434856954099999, 47.119480979099997 ], [ -122.434416219900001, 47.147529408600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000, "random": 136.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.925646077099998 ], [ -122.302810058600002, 47.929817519099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600, "random": 28.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.910259396399994, 47.659120641800001 ], [ -121.90705395, 47.6776154772 ], [ -121.920396291100005, 47.682901991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000, "random": 132.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181631231599994, 48.034487448100002 ], [ -122.179892135299994, 48.039576142599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300, "random": 136.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.836314269699997 ], [ -120.792112052700006, 45.848375413299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710, "random": 63.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575630911800005, 46.3701554294 ], [ -122.553890672700007, 46.371903656599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400, "random": 92.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.583078776199997, 48.065841690100001 ], [ -123.576471668500005, 48.0656101736 ], [ -123.558629214600003, 48.081956269599999 ], [ -123.559067470200006, 48.088831529 ], [ -123.542425415, 48.096386168800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400, "random": 80.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.252147575799995, 47.798129800600002 ], [ -124.250508615499996, 47.804211862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000, "random": 137.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.308076516400007, 47.275568560899998 ], [ -122.309832841599999, 47.2779256038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000, "random": 68.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.965868137599998, 47.199186921500001 ], [ -121.9637319287, 47.199146895600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000, "random": 66.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.659666966800003, 48.286359741399998 ], [ -122.657869700299997, 48.2871805041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000, "random": 71.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595381933100001, 48.34623453 ], [ -119.591078218299998, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100, "random": 186.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603123068399995, 45.9389260974 ], [ -119.601830692299998, 46.102565853100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000, "random": 57.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334359019499999, 47.548548451 ], [ -122.339379851700002, 47.562061614199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000, "random": 16.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.030444367199998 ], [ -122.067000553100002, 48.031134417300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000, "random": 48.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297950785699996, 46.980094485599999 ], [ -122.296344995400005, 47.0166678167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000, "random": 169.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846710272600006, 46.859045713699999 ], [ -122.828370843499997, 46.857484681099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700, "random": 116.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.769069669299995, 48.139676945799998 ], [ -123.746224608399999, 48.137356281899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000, "random": 159.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385831363199998, 47.982748053900004 ], [ -122.392171147400006, 47.986605199400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600, "random": 83.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.047472656300002, 47.080452981100002 ], [ -122.048032810099997, 47.0854558399 ], [ -122.057602940899997, 47.0916817763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000, "random": 185.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.358098863599999 ], [ -122.1070219689, 47.358060180499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800, "random": 167.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.349924354400002, 46.069095536 ], [ -118.351239545599995, 46.069099866199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 82.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324544580500003, 47.436711554299997 ], [ -120.3225528424, 47.434276469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000, "random": 23.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.455259890500002, 48.240034233 ], [ -122.447469078099999, 48.241938468800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000, "random": 67.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815518941400001, 46.975464231899998 ], [ -123.816707412599996, 46.9748418645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000, "random": 90.614 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.132246497699995, 48.917315639800002 ], [ -122.102984160899993, 48.916997040299997 ], [ -122.079909498199996, 48.924179648600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700, "random": 65.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446916738200002, 45.910167278 ], [ -122.446800662900003, 45.913702032899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900, "random": 127.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.113035482200004, 48.624541672200003 ], [ -118.122722282300003, 48.627437196700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": null, "random": 199.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.960076450800003, 46.940448732900002 ], [ -119.956933746399997, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760, "random": 167.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467199858100003, 47.0097954879 ], [ -117.490699524799993, 47.015148808799999 ], [ -117.498907800500007, 47.033033125599999 ], [ -117.512262025200002, 47.040723695600001 ], [ -117.524091053800007, 47.062203222800001 ], [ -117.545125112, 47.08432072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000, "random": 77.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.655737714700003 ], [ -122.070683973300007, 47.656083693600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300, "random": 198.574 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.333488752700006, 46.937467422799998 ], [ -117.335165828900003, 46.942808011899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000, "random": 13.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656548613499993, 45.7796107255 ], [ -122.605320177, 45.780129801500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000, "random": 82.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.009898974199999, 48.071628269 ], [ -121.990053825299995, 48.083409856199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000, "random": 121.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.484172063499997, 46.938007018199997 ], [ -122.472720513400006, 46.937733804200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300, "random": 142.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.485900583099998 ], [ -121.590106375900007, 48.488568208499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000, "random": 187.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216263351899997, 47.478470607600002 ], [ -122.217077273100003, 47.479908761399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600, "random": 118.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.967463185100002 ], [ -124.403657352300002, 47.970099866299996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500, "random": 32.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.252518965899995, 47.078996395899999 ], [ -123.233037072800002, 47.083276060499998 ], [ -123.221728577799993, 47.096152986600003 ], [ -123.169892022, 47.099323329900002 ], [ -123.137011834399999, 47.106127557199997 ], [ -123.132767539200003, 47.110886788199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900, "random": 127.837 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.552013002099997 ], [ -122.275303538700001, 46.553456335600004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000, "random": 164.272 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.155021291500006, 47.017344680199997 ], [ -124.158562931299997, 47.042143090300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000, "random": 56.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663319481499997, 45.688951116799998 ], [ -122.658726878400003, 45.6977308437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400, "random": 97.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.442124530399994, 48.107323541500001 ], [ -123.440954132100003, 48.108110856800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500, "random": 42.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.978427891599999 ], [ -118.543979549100001, 46.996993641400003 ], [ -118.476340768100002, 47.024825293600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000, "random": 47.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.388880896499998, 46.023864194700003 ], [ -118.387709362, 46.027451012900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000, "random": 122.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345489043399994, 47.752490517399998 ], [ -122.345492024099997, 47.752635419400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300, "random": 47.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.014914702799999, 48.26670449 ], [ -122.010267715400005, 48.2683045733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900, "random": 95.777 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.727758078299999 ], [ -121.487502730599999, 45.727786525 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000, "random": 24.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293851920700007, 47.250946951400003 ], [ -122.294736287700005, 47.2575680773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000, "random": 43.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326526705800006, 47.603443393299997 ], [ -122.330796798799994, 47.608824904400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000, "random": 35.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903136226599997, 46.385390741199998 ], [ -122.899606179700001, 46.398070720299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000, "random": 95.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309832841599999, 47.2779256038 ], [ -122.311388725499995, 47.2800166221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000, "random": 159.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.896051288500004, 46.980998530599997 ], [ -123.897076554700007, 46.981004020500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400, "random": 182.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.424463433100001, 45.643325581100001 ], [ -122.417694339600004, 45.641107566099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500, "random": 161.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.651386023200004, 48.504193452800003 ], [ -121.642180426199999, 48.495334999699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000, "random": 77.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288664435200005, 48.843341019900002 ], [ -122.288327355299998, 48.854065229299998 ], [ -122.293860970699996, 48.857565579199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600, "random": 32.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161323536300003, 47.333867098 ], [ -123.148514151399993, 47.321809282099998 ], [ -123.133682051400001, 47.318666754900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000, "random": 159.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.985830348199997, 47.742682870899998 ], [ -121.985662542599997, 47.745168652300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100, "random": 105.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.623220084899998, 47.469905047300003 ], [ -117.613426266499999, 47.471353912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200, "random": 135.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715551513099996, 48.280931139700002 ], [ -117.717959422600003, 48.285470006399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200, "random": 42.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255634568199994, 48.839046183599997 ], [ -122.239504252499998, 48.831823512100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600, "random": 36.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507545144299996, 47.7371619655 ], [ -117.507510958300003, 47.741638156500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000, "random": 29.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989641515900004, 47.213883977099997 ], [ -121.989711786399994, 47.228316551900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000, "random": 69.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281493610200002, 47.463910419100003 ], [ -122.273758761400003, 47.465095805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400, "random": 151.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.422185317900002, 48.565442515800001 ], [ -122.4228327812, 48.599331285300003 ], [ -122.431475859399995, 48.604413221500003 ], [ -122.439355010300005, 48.617793965600001 ], [ -122.442411123400007, 48.615387797499999 ], [ -122.448077930599993, 48.623742527799998 ], [ -122.462714495100002, 48.626500790199998 ], [ -122.4898137335, 48.6488973023 ], [ -122.492151906800004, 48.661706411200001 ], [ -122.485239836199995, 48.668069469099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000, "random": 12.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631489075399998, 47.504928710800002 ], [ -122.624429651, 47.504849437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000, "random": 32.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.749722348399999, 45.9177650679 ], [ -122.753449416099997, 45.923645172599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": null, "random": 13.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.294218817200004, 47.149727948900001 ], [ -119.311843170200007, 47.156724983700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000, "random": 51.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.200787005199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000, "random": 140.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292441666499997, 47.735585142300003 ], [ -122.280297386599997, 47.752002751100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000, "random": 97.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.979430596900002 ], [ -122.185861118, 47.979473196500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800, "random": 155.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.720736025400001, 48.026811053700001 ], [ -122.697769073, 48.018281475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100, "random": 18.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.861982835899994, 46.851655257200001 ], [ -122.858695725399997, 46.8532935721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000, "random": 87.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097157172300001, 47.181812840200003 ], [ -123.097337669699996, 47.182654412799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700, "random": 27.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.420257639400006, 46.436042089499999 ], [ -117.402156754399996, 46.444197372200001 ], [ -117.335145353399994, 46.4329973878 ], [ -117.323681866499996, 46.436435528799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700, "random": 146.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979117066100002, 47.199396871700003 ], [ -121.965868137599998, 47.199186921500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500, "random": 82.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.643095278200001 ], [ -117.668611477100001, 47.642951301700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": null, "random": 175.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.628766045199995, 47.589121012600003 ], [ -120.613968958499996, 47.580745454899997 ], [ -120.612801962899994, 47.573591045699999 ], [ -120.605716968, 47.567442828200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300, "random": 179.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310528437800002, 46.041780703500002 ], [ -122.305684987, 46.049059604699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700, "random": 120.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.366284463200003, 46.197242044100001 ], [ -123.363333971200007, 46.1950290192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000, "random": 169.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.034209998400001, 47.159549653900001 ], [ -122.019798038299996, 47.1768730848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800, "random": 102.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.120553856399994, 48.526076599200003 ], [ -122.1053402812, 48.526935763499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900, "random": 52.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726659829599996, 48.9068699571 ], [ -122.7265048358, 48.917598413199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700, "random": 30.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471184156600003, 46.2575715157 ], [ -119.425480768499995, 46.2734329699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100, "random": 105.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349794205400002, 48.032114906300002 ], [ -117.343635146, 48.047403949299998 ], [ -117.344202033800002, 48.061754727 ], [ -117.324163432199995, 48.07997589 ], [ -117.324990554099998, 48.091918625600002 ], [ -117.300604824700002, 48.098504866299997 ], [ -117.284168690399994, 48.096746748299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000, "random": 189.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.004448625699993, 48.0205093633 ], [ -122.995804225599997, 48.024055760499998 ], [ -122.978516714500003, 48.046585562 ], [ -122.961493482099996, 48.050293977400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000, "random": 7.886 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.362749748699997, 48.108559920200001 ], [ -123.360196787500001, 48.109344406699996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000, "random": 50.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802398376300005, 46.967887712299998 ], [ -123.802397479299998, 46.9687249499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100, "random": 141.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.818184803500003 ], [ -122.304976714299997, 48.832388806399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200, "random": 153.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.048219812100001, 46.7995487771 ], [ -119.014123186899994, 46.794659240800001 ], [ -118.899091142399996, 46.794010221199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000, "random": 138.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.200787005199999 ], [ -123.099712027199999, 47.205696953500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500, "random": 140.756 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.073517983399995, 48.341795184600002 ], [ -120.078231726699997, 48.346462605900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400, "random": 164.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593576416800005, 47.563948315899999 ], [ -117.593599657300004, 47.5661401873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000, "random": 40.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183877881399994, 47.174736546 ], [ -122.1691805082, 47.169896643900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000, "random": 152.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692635556699997, 47.663252331199999 ], [ -122.692988927399995, 47.661397052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500, "random": 196.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.860105265800001 ], [ -117.660195675699995, 47.887269221 ], [ -117.660024695399997, 47.8932611587 ], [ -117.668572481799998, 47.894342293400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000, "random": 186.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669376341299994, 45.632571970599997 ], [ -122.670439506700006, 45.632577207799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000, "random": 109.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.234976754500003 ], [ -122.491951754400006, 47.2348877891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": null, "random": 80.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.560510624499997, 47.308418187 ], [ -119.554898095499993, 47.306482052600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700, "random": 125.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463166107899994, 48.964615040399998 ], [ -122.451971471799993, 48.964651037800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000, "random": 94.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.146615172400004, 46.217968659900002 ], [ -119.145732405700002, 46.217595725400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600, "random": 46.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.904018699199995, 47.188626240200001 ], [ -120.909723769199999, 47.190106762600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000, "random": 96.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143054576699996, 47.977909322099997 ], [ -122.135501710200003, 47.972868825600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700, "random": 103.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682262921499998, 47.579790864700001 ], [ -117.675621899, 47.579410600700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": null, "random": 13.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.263021805500003, 47.637183544099997 ], [ -119.263371855399996, 47.638306306200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480, "random": 43.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.776045267699999, 48.928358074 ], [ -117.772249994299997, 48.944995950299997 ], [ -117.790310030100002, 48.944472558400001 ], [ -117.793458758900002, 48.955565369299997 ], [ -117.803578175499993, 48.961075513200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000, "random": 129.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.375313022599997 ], [ -119.966750153099994, 46.379458651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": null, "random": 159.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.680267402200002, 48.008990227200002 ], [ -119.685472808699998, 48.0097116078 ], [ -119.691075897800005, 48.018709410200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400, "random": 83.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.640540398400006, 46.334941224399998 ], [ -123.638490685099995, 46.335207877800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000, "random": 38.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.431030774600003, 48.5268378739 ], [ -121.423972012799993, 48.549134164599998 ], [ -121.410725826299995, 48.564458051499997 ], [ -121.4024787094, 48.583136517200003 ], [ -121.375975903599993, 48.591890566799997 ], [ -121.362319661499996, 48.606256059700002 ], [ -121.361058331400002, 48.614514294700001 ], [ -121.323200632600006, 48.632921979099997 ], [ -121.3028444423, 48.650452046200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000, "random": 10.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295097717100006, 47.047555150800001 ], [ -122.294801654, 47.053064106800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000, "random": 126.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.043999294099997 ], [ -123.286436785199996, 47.054106290100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400, "random": 63.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.819662877499994, 48.04931957 ], [ -122.8179486123, 48.071156388600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000, "random": 12.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.824934680200002, 46.970652030700002 ], [ -123.825814271400006, 46.971474761700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000, "random": 133.626 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563268685200001, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600, "random": 188.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.205738671700004, 47.981949443399998 ], [ -122.212960739, 47.982029513699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": null, "random": 139.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.698707638499997, 48.103403189200002 ], [ -119.685372148200003, 48.104020449099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900, "random": 74.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.104308415800006, 48.222137855 ], [ -122.069679602600004, 48.23396758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000, "random": 90.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163645855400006, 47.879601492200003 ], [ -122.160861847800007, 47.8814089364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000, "random": 131.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.523271327399996, 47.653629992799999 ], [ -122.532036854400005, 47.672053053100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300, "random": 33.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521393624699996, 48.408433846900003 ], [ -119.523296206200001, 48.409470013799996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000, "random": 54.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433966120899996, 47.205404862400002 ], [ -122.433966807700003, 47.206401298899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400, "random": 86.578 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.585162399400005, 47.092333980500001 ], [ -121.567425209, 47.040379196099998 ], [ -121.5551957128, 47.0303667214 ], [ -121.534091938299994, 47.022575639700001 ], [ -121.527644598799995, 47.012875758299998 ], [ -121.535952920900002, 46.980696515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400, "random": 53.737 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.568132031799998 ], [ -117.145445481500005, 46.572191855600003 ], [ -117.157084679500002, 46.5836610466 ], [ -117.172901762, 46.591922349500003 ], [ -117.160724520299993, 46.616443833 ], [ -117.187576040799996, 46.647802853599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000, "random": 160.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.531933408199997 ], [ -122.334702393599997, 47.537528499399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760, "random": 143.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.617451727700001 ], [ -118.652672234400001, 48.600003888400003 ], [ -118.644329631700003, 48.5973721967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800, "random": 13.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.942272354599993, 47.916813951100004 ], [ -118.911555399600005, 47.9213656063 ], [ -118.863354704499997, 47.901154007099997 ], [ -118.853739297800004, 47.883868775899998 ], [ -118.723851232200005, 47.772533091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900, "random": 198.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.132767539200003, 47.110886788199998 ], [ -123.105067388600006, 47.129641063599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100, "random": 38.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.528332171700001, 46.937764175 ], [ -122.492390975500001, 46.937977309899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200, "random": 108.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.767190433500005, 46.6744470342 ], [ -123.7615325079, 46.677740465299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800, "random": 165.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487123072399996, 46.257906344299997 ], [ -119.487330415100004, 46.260755377499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000, "random": 93.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553076278600003, 48.822516070900001 ], [ -122.573687598, 48.844831450599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000, "random": 130.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.523470564500002, 46.661985736299997 ], [ -120.5197381527, 46.668125952899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": null, "random": 81.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.364767205800007, 47.619390169399999 ], [ -119.332058296699998, 47.626482681200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000, "random": 60.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.651129321200003, 47.565545994200001 ], [ -122.647571915599997, 47.565258176100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700, "random": 6.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.329418103500004, 46.960126358 ], [ -123.311013336499997, 46.938552592599997 ], [ -123.289881683800004, 46.900863713299998 ], [ -123.248062190100001, 46.845884290299999 ], [ -123.239989388300003, 46.8414422249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300, "random": 136.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.158793713899996, 48.238953466799998 ], [ -122.1669055996, 48.255016462699999 ], [ -122.166633346300003, 48.2648550145 ], [ -122.170997888499997, 48.267960125199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200, "random": 157.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054404370699999, 46.352653916100003 ], [ -124.053680407900004, 46.367582858299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000, "random": 172.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.740854975199994, 45.911170197300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300, "random": 35.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.502302775900006, 48.402278157200001 ], [ -119.5084842224, 48.403136738900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000, "random": 190.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.482884856799998, 45.722539983099999 ], [ -121.467735256400005, 45.715283597800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000, "random": 136.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662126769699995, 47.571362035299998 ], [ -122.656562609900007, 47.570330458100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600, "random": 109.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.743763598499996, 46.715301692700002 ], [ -123.740663072199993, 46.725386481500003 ], [ -123.747921108300005, 46.733567417300002 ], [ -123.743904499600006, 46.739343071500002 ], [ -123.754733782499997, 46.760574447 ], [ -123.740655286700004, 46.778157634499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000, "random": 49.748 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.720909245599998 ], [ -117.183098546500005, 46.728416263500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190, "random": 73.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.557835361399995, 46.643125399399999 ], [ -118.557997059100003, 46.644559999499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800, "random": 181.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039552860800001, 48.182953896900003 ], [ -117.0395862835, 48.181055213699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200, "random": 65.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.602182966400001 ], [ -121.668828194, 46.610192722699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850, "random": 73.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.167496769400003, 46.9781722496 ], [ -121.127381782599997, 46.981007469200001 ], [ -121.114380514800004, 46.987075613400002 ], [ -121.0946681442, 46.989267303 ], [ -121.091382184599993, 46.985618151399997 ], [ -121.094611184800002, 46.970342713299999 ], [ -121.047290544299997, 46.928324619199998 ], [ -121.046742942899996, 46.920190613099997 ], [ -121.000008664099994, 46.892140688799998 ], [ -120.987418402900005, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000, "random": 195.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657592177799998, 48.293044692199999 ], [ -122.655009775600007, 48.296169091400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": null, "random": 7.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.362657404499998, 47.815367954899997 ], [ -119.362262838800007, 47.860085765500003 ], [ -119.370723211400005, 47.873830969899998 ], [ -119.372644044099999, 47.904567970700001 ], [ -119.392358608500004, 47.918864183700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500, "random": 58.077 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617444360700006, 48.891747907 ], [ -122.638529037400005, 48.891709409500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000, "random": 36.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.683470598300005, 47.569596387099999 ], [ -122.673143573900006, 47.568179933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": null, "random": 195.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.835643111799996, 47.234027670400003 ], [ -119.832023730100005, 47.2340352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000, "random": 42.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.325524706799996, 46.081735058900001 ], [ -118.304381981399999, 46.081133974700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500, "random": 79.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.297649161500004, 46.57004764 ], [ -123.296317791800007, 46.576533839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600, "random": 105.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.980935669499999 ], [ -123.889523026299997, 46.980961881 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000, "random": 128.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.558935183800003, 47.595361529199998 ], [ -117.495753249700002, 47.624062761300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990, "random": 39.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.821714855600007, 46.524855555800002 ], [ -117.813822898200002, 46.522181513600003 ], [ -117.789186845100005, 46.525469168900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200, "random": 135.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197493669699995, 46.811423551700003 ], [ -119.173708393699997, 46.811531078199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650, "random": 19.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.212746255599995, 47.457686866300001 ], [ -123.216374178400002, 47.462553504100001 ], [ -123.210549580299997, 47.476434858099999 ], [ -123.210305096300004, 47.492304965199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000, "random": 13.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305256741600004, 47.543467570099999 ], [ -122.316635572899997, 47.551762746800001 ], [ -122.321491668199997, 47.561289773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000, "random": 17.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.935418056499998, 46.959676324500002 ], [ -122.930355641299997, 46.976133841500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800, "random": 65.449 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.743735295700006, 48.025325982600002 ], [ -122.740532149700002, 48.027070327099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000, "random": 130.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.980935669499999 ], [ -123.8857715571, 46.989221384300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000, "random": 12.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296698139599997, 47.176629062899998 ], [ -122.284847670800005, 47.181573349200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100, "random": 94.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073001201099999, 47.2221634757 ], [ -117.073000361, 47.223043156099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500, "random": 92.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.879282575900007, 47.669483932600002 ], [ -117.877917606599993, 47.669492940399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600, "random": 133.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050176045499995, 46.475581515199998 ], [ -117.069818918300001, 46.486190991699999 ], [ -117.077465049599994, 46.497786296699999 ], [ -117.087484261100002, 46.539395298300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400, "random": 51.478 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814156772700002, 46.974248551 ], [ -123.811070066900001, 46.973262377700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": null, "random": 197.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.827257676599999, 47.106307188 ], [ -119.762408837899997, 47.146818992100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700, "random": 6.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.899961343100003, 47.187712731600001 ], [ -120.892643017300003, 47.185219467700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100, "random": 131.836 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179908097500004, 46.729629926199998 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500, "random": 91.684 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.309728932499993, 46.365077469399999 ], [ -120.251843555400001, 46.331539616400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000, "random": 62.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497820086399997, 48.783587733399997 ], [ -122.505656007200002, 48.785005835600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000, "random": 133.588 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180984819399995, 46.730694767199999 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000, "random": 88.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363416141800002, 47.790622223299998 ], [ -122.3582161004, 47.791729721099998 ], [ -122.353351102700003, 47.7851161679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000, "random": 51.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888992968500006, 47.144192540600002 ], [ -123.879496601, 47.1617156776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000, "random": 85.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.401936063400001, 47.239469308 ], [ -122.396987132299998, 47.237584311799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000, "random": 164.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.356706419099993, 47.781286752100002 ], [ -117.353191655499998, 47.787208051500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000, "random": 90.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.711427765899998, 47.374522075599998 ], [ -122.694793762299994, 47.381239063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500, "random": 35.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.376030476500006, 48.891834109 ], [ -122.374565794299997, 48.904788295 ], [ -122.358535363800002, 48.9093392192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500, "random": 23.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.277256571300001, 46.772497546 ], [ -117.308363602599997, 46.788409983699999 ], [ -117.328066208199999, 46.830123369399999 ], [ -117.338401674300002, 46.838069271499997 ], [ -117.339143604, 46.850435511500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800, "random": 105.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378772240299995, 47.812427925900003 ], [ -122.372126264299993, 47.817776268499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000, "random": 26.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087849026499995, 46.731794332100002 ], [ -117.0573687, 46.739057813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000, "random": 46.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.337050963199999, 48.503991479 ], [ -122.342600390300007, 48.513479003100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500, "random": 26.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.670635263199998, 48.654138832599997 ], [ -118.665529603699994, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.664034573199999, 48.679033690799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900, "random": 171.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.153615448400004, 48.949882378300003 ], [ -122.163014477, 48.967332821200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000, "random": 128.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.600874425699999, 45.687439573699997 ], [ -122.640386359700003, 45.712503753900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100, "random": 45.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076895172600004, 46.910582235900002 ], [ -117.076982486199995, 46.910862134799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900, "random": 30.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.015580453200002, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.072862455399999, 48.6070846621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000, "random": 195.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189505252100005, 46.267690257300004 ], [ -119.170552412600003, 46.261830974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000, "random": 177.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411298272899998, 47.739633774 ], [ -117.410423958199999, 47.740712806499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000, "random": 131.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.769986980299997 ], [ -122.283809503200004, 47.760008456599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500, "random": 93.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.442670124299994, 48.701328551 ], [ -119.442107154799999, 48.701994917900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540, "random": 182.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696519453299999, 48.061245007099998 ], [ -122.701745014599993, 48.0668212303 ], [ -122.701864316499993, 48.078607276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000, "random": 163.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075376155699999, 48.590211446200001 ], [ -118.075356614399993, 48.598579374300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200, "random": 43.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.128754746599995, 46.600496945700002 ], [ -123.126263012799996, 46.6018315229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000, "random": 184.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206475225600002, 47.791083140399998 ], [ -122.223601115799994, 47.800389682400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800, "random": 157.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.916634654199996, 46.697295796600002 ], [ -119.916960776300002, 46.737852894299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500, "random": 148.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.810426917100003, 46.3376105866 ], [ -123.815649382700002, 46.354383327900003 ], [ -123.811811120300007, 46.365574241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000, "random": 151.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.596393383099993, 47.1027062195 ], [ -122.579321671499997, 47.107892831500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400, "random": 86.812 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.620506636499996, 48.060076006499997 ], [ -117.630503668, 48.080995459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300, "random": 129.411 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.817306757200001, 46.9516445414 ], [ -123.811926119600002, 46.952123449200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000, "random": 197.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.423149831100005, 47.236217271 ], [ -122.417644232100002, 47.238212922800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000, "random": 173.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.812260239500006, 45.822992682799999 ], [ -120.808106471399995, 45.824581942400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000, "random": 94.644 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.547485506900003, 45.785201757800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100, "random": 68.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.726046511600003, 48.150359313899997 ], [ -117.725780578599995, 48.156229186200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200, "random": 143.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.751849100699999, 46.203691501 ], [ -119.748601067500005, 46.206079067600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400, "random": 99.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.268826955099996, 48.080346231699998 ], [ -124.263311905400002, 48.085966764600002 ], [ -124.2672293, 48.093890668 ], [ -124.262034490700003, 48.102087042400001 ], [ -124.250927388099996, 48.111969025500002 ], [ -124.223742336599997, 48.1213082047 ], [ -124.212531038099996, 48.133819620200001 ], [ -124.220293182800006, 48.1428270627 ], [ -124.2160466622, 48.147615903099997 ], [ -124.220635952500004, 48.153990031900001 ], [ -124.207708131800004, 48.157824318099998 ], [ -124.204632396199997, 48.167186739400002 ], [ -124.210345909599994, 48.1692167689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": null, "random": 7.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014883602300003, 47.838858014700001 ], [ -120.014828527199995, 47.839831442300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000, "random": 123.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.309143099099998, 47.774377396299997 ], [ -122.306404079100005, 47.772538580800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000, "random": 148.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455809751100006, 46.516358140900003 ], [ -120.449533775800006, 46.503965486799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000, "random": 108.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.754178235300003, 47.064444536899998 ], [ -122.725374037199998, 47.067929690100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000, "random": 124.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632531038099998, 46.964619754799998 ], [ -122.632854251099999, 46.958792651300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300, "random": 111.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410433622300005, 48.690488770499996 ], [ -117.413544959399999, 48.721379622199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": null, "random": 158.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.973536307900005, 47.845064539600003 ], [ -119.950074709399999, 47.861313163799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000, "random": 137.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.526935763499999 ], [ -122.061180415699994, 48.529185624199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000, "random": 196.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.377164761499998, 48.804134103800003 ], [ -122.350631459100001, 48.803690529199997 ], [ -122.343789167099999, 48.807321054799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400, "random": 168.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.122453029300004, 48.367342777799998 ], [ -120.1210178754, 48.361212471599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200, "random": 136.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.086477503399998 ], [ -118.256499768300003, 46.093037346400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000, "random": 9.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.488003742900005, 46.607531401800003 ], [ -120.479885092200007, 46.597737697200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800, "random": 15.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914757678599997, 47.388043454699996 ], [ -122.892366147199994, 47.404043715599997 ], [ -122.877710028199999, 47.408801618699997 ], [ -122.860540292699994, 47.423328077500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": null, "random": 152.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.469043884300007, 47.3852988959 ], [ -119.426913667, 47.395513492900001 ], [ -119.387340543099995, 47.414520736699998 ], [ -119.300634945400006, 47.424903109799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": null, "random": 69.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.121253997400004, 47.087799811700002 ], [ -119.050805502599999, 47.085767763600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800, "random": 112.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.889523026299997, 46.980961881 ], [ -123.888386398500003, 46.980177755299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500, "random": 193.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140899954299996, 47.654795746799998 ], [ -118.141047318800005, 47.664764855599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000, "random": 146.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160861847800007, 47.8814089364 ], [ -122.148584559100001, 47.888641626199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300, "random": 81.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953782416699994, 46.736692891399997 ], [ -122.953823151799995, 46.748781150699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700, "random": 11.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.133187297500001, 46.840989608400001 ], [ -119.133148108100002, 46.886685746 ], [ -119.138472205699998, 46.892262265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000, "random": 5.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628834077099995, 47.615881278700002 ], [ -122.628868229899993, 47.621337157900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000, "random": 196.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570973798599994, 48.462635752300002 ], [ -122.5588999199, 48.459854942900002 ], [ -122.540648413599996, 48.462952426100003 ], [ -122.498739627199996, 48.452263302299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000, "random": 88.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214348263700003, 48.206328150499999 ], [ -122.218321885899996, 48.216603711499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": null, "random": 43.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.381469205400002 ], [ -119.469043884300007, 47.3852988959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000, "random": 43.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.474841478899997 ], [ -122.327737404700002, 47.479270819699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000, "random": 85.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.304949803200003, 47.644164856499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400, "random": 156.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.554392316299996, 48.321462528600001 ], [ -121.550058107599995, 48.3318886554 ], [ -121.551453485799996, 48.343744063899997 ], [ -121.540112692, 48.346215164 ], [ -121.539906925400004, 48.366375817 ], [ -121.542024863600005, 48.372287589 ], [ -121.554425459200004, 48.380127436400002 ], [ -121.550013380300001, 48.393466863100002 ], [ -121.556872268199996, 48.413587564899998 ], [ -121.566872919, 48.4288842168 ], [ -121.591700101200004, 48.451327644199999 ], [ -121.5855182759, 48.460927573500001 ], [ -121.5934495363, 48.485900583099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260, "random": 135.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.734570016700005, 47.116926604200003 ], [ -117.742925110100003, 47.117459606600001 ], [ -117.7549057664, 47.125716432399997 ], [ -117.817509280300001, 47.111093263299999 ], [ -117.822912325199994, 47.114442770099998 ], [ -117.8293478123, 47.1355148253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000, "random": 95.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.067753216300005, 46.246804529800002 ], [ -119.046642025, 46.232206470199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300, "random": 187.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.124828016699993, 47.500840259100002 ], [ -122.121905390099997, 47.500530407799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000, "random": 123.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313301401100006, 47.316652422799997 ], [ -122.311990139700001, 47.333987546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000, "random": 142.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334374309400005, 47.529782668300001 ], [ -122.334499835, 47.531933408199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": null, "random": 49.4 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979586832799995, 47.9655777499 ], [ -118.979697854299999, 47.968430380400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700, "random": 116.685 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385457650199996, 47.948085936299996 ], [ -124.385447165200006, 47.948955410099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000, "random": 175.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485955958800005, 48.862420218399997 ], [ -122.485687149200004, 48.8695370939 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890, "random": 76.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.345558882600002, 48.5553675301 ], [ -117.306432185399999, 48.541940968299997 ], [ -117.302804502200004, 48.536050454799998 ], [ -117.304650258899997, 48.527031102899997 ], [ -117.278524899800004, 48.511845619100001 ], [ -117.269024632599994, 48.499256187100002 ], [ -117.269265238, 48.4873224193 ], [ -117.275854017300006, 48.479154680299999 ], [ -117.320541457, 48.4685163989 ], [ -117.325942598799998, 48.458761719500004 ], [ -117.323780920499999, 48.439318060799998 ], [ -117.316627106799999, 48.425214068400003 ], [ -117.319097356900002, 48.4189460662 ], [ -117.313120485400006, 48.4113756271 ], [ -117.314630901300006, 48.394450270599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100, "random": 134.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498048415300005, 47.798506382500001 ], [ -122.497295586, 47.7975770117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000, "random": 25.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.435463721399998, 46.5745924593 ], [ -120.393324315200005, 46.556351737500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000, "random": 169.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.395398995900003 ], [ -122.330911508100002, 48.406025215600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000, "random": 161.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644801591399997, 47.501961609200002 ], [ -122.643946939900005, 47.502784521800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000, "random": 150.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.372126264299993, 47.817776268499998 ], [ -122.367307089600004, 47.8179585281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000, "random": 178.777 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.877799075399999 ], [ -122.163645855400006, 47.879601492200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000, "random": 136.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.427211290700001, 48.117642047700002 ], [ -123.430902000800003, 48.119157941600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000, "random": 192.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.503821823500004, 48.102754873599999 ], [ -123.468545392099998, 48.106190606399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": null, "random": 56.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.239928314300002 ], [ -119.471071659100005, 47.273753970100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700, "random": 29.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290450982199999, 45.696258645699999 ], [ -121.279633118600003, 45.690688236100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900, "random": 162.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.936642209200002 ], [ -122.357934341199993, 46.980224389500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500, "random": 185.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495587689600001, 47.797525249099998 ], [ -122.496488730199999, 47.798131725399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000, "random": 168.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.934240825299995, 46.952766632500001 ], [ -122.935715474899993, 46.952758994100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700, "random": 128.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.462540653399998, 48.107899627400002 ], [ -123.459574139699995, 48.110067689200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000, "random": 129.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323883246600005, 47.632698970699998 ], [ -122.322628571500005, 47.6386200098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000, "random": 81.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336749310399995, 48.484639012499997 ], [ -122.338500106400005, 48.486228159900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000, "random": 74.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.099857116599999 ], [ -117.219321340899995, 48.113310778900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000, "random": 101.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.273121321399998, 47.668605412600002 ], [ -122.271061548700004, 47.6700439942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700, "random": 5.018 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361066420699999, 47.253456630599999 ], [ -117.370585678599994, 47.268075141799997 ], [ -117.361254009199996, 47.290879305300002 ], [ -117.390138784, 47.310362066400003 ], [ -117.388597733400005, 47.3194727622 ], [ -117.380662463099995, 47.330079757599997 ], [ -117.380673193600003, 47.360657544200002 ], [ -117.391339284599994, 47.389115786399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000, "random": 81.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.454401804699998 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100, "random": 85.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.994354542899998, 46.567494215899998 ], [ -119.004060927500007, 46.5740844587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000, "random": 151.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.665955536300004, 45.631898547 ], [ -122.669376341299994, 45.632571970599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000, "random": 143.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.465759248200001, 48.106460575 ], [ -123.461138151100002, 48.106935246699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000, "random": 75.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.499917878399998, 48.717652925499998 ], [ -122.486331208, 48.714824595300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300, "random": 151.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.213367238700002, 48.372379240100003 ], [ -122.229673571099994, 48.385256496799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000, "random": 18.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182972372099997, 48.152416491099999 ], [ -122.172296207800002, 48.152289709199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000, "random": 134.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.167008503600002, 46.191719662700002 ], [ -119.159158770900007, 46.198638478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000, "random": 85.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.157044219200003, 47.280328202200003 ], [ -123.145765470900002, 47.252121037599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100, "random": 69.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.173877287899998, 47.112127049400002 ], [ -124.169614650900002, 47.114894477900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930, "random": 64.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.575464457699994, 47.091801678300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000, "random": 31.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248475669300007, 47.900072614400003 ], [ -122.244670656400004, 47.904148545300004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000, "random": 10.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632907041400003, 47.572695391300002 ], [ -122.632955459200005, 47.576988526599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000, "random": 141.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335608842799999, 48.475571374099999 ], [ -122.335565019599997, 48.4778597679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900, "random": 74.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.685005097499996, 48.650649293199997 ], [ -118.685503561600001, 48.644882601900001 ], [ -118.667711126, 48.617451727700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100, "random": 119.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.905691619400002, 46.282456889599999 ], [ -122.903578295299994, 46.283861002400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000, "random": 164.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.458669386799997, 47.715411884399998 ], [ -117.4605875174, 47.7154071362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430, "random": 96.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.270425518300001, 46.912759444700001 ], [ -117.249834160600003, 46.924645796900002 ], [ -117.234331027799996, 46.925309947800002 ], [ -117.220529711899999, 46.933106671200001 ], [ -117.159352064399997, 46.941705790500002 ], [ -117.136080919600005, 46.932633247600002 ], [ -117.110476071299999, 46.928462956899999 ], [ -117.102769807900003, 46.9174522008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000, "random": 84.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.700925811100007, 47.525407789200003 ], [ -122.704501785700003, 47.525661698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000, "random": 118.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.150880994199994, 47.779603159 ], [ -122.1387763237, 47.784870612299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": null, "random": 176.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.691075897800005, 48.018709410200003 ], [ -119.697687025299999, 48.0311183966 ], [ -119.693725489499997, 48.039290469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000, "random": 162.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347271149400001, 47.653986720200002 ], [ -122.347269898199997, 47.664239955699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000, "random": 70.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.875302195800003, 47.036689104 ], [ -122.859381883899999, 47.040353374799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000, "random": 169.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252782505699997, 48.502886244300001 ], [ -122.247228536, 48.504965103899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410, "random": 72.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625012856500007, 47.562436961899998 ], [ -122.629614867, 47.565023409600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000, "random": 178.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335881339400004, 47.821450872100002 ], [ -122.325052919499996, 47.821329708500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000, "random": 93.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.836073628299999, 46.4372194695 ], [ -122.814031488599994, 46.438120687500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300, "random": 178.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042241304699999, 46.474230977700003 ], [ -117.047517464899997, 46.474461423100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000, "random": 42.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.051516255099997, 47.391659997799998 ], [ -122.044831924299999, 47.399706131899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000, "random": 134.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658726878400003, 45.6977308437 ], [ -122.652986888300006, 45.709455040100003 ], [ -122.654549427500001, 45.717300241700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500, "random": 66.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.347624507399999, 48.055953127199999 ], [ -124.337683892399994, 48.054732999700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900, "random": 11.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320539039099998, 46.338643096699997 ], [ -120.320194750699997, 46.3605182529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000, "random": 14.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674207111699999, 45.781370643 ], [ -122.667261725700001, 45.779820175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500, "random": 133.499 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.759989077900002 ], [ -117.164438154400003, 46.769754928300003 ], [ -117.151417176099997, 46.780286467800003 ], [ -117.147368489, 46.790469895500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970, "random": 6.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.027368158599998, 46.4021888563 ], [ -122.998701202099994, 46.413611615500002 ], [ -122.975040301799993, 46.404702300399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000, "random": 156.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.546840301700001, 46.992764977500002 ], [ -122.545777661, 46.996177086499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": null, "random": 130.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.694359620499995, 47.189224623400001 ], [ -119.686049460099994, 47.1944007257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300, "random": 77.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.770900456899994, 45.861551476899997 ], [ -120.756138064300004, 45.871859525 ], [ -120.748887042700005, 45.883275659699997 ], [ -120.712459360899999, 45.899262853800003 ], [ -120.711577386200005, 45.907740132400001 ], [ -120.7006339016, 45.9221097398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900, "random": 117.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595048768599995, 48.355996996800002 ], [ -119.585343985400002, 48.360215974900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000, "random": 58.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315085552799999, 47.821191790100002 ], [ -122.294569069800005, 47.846843594500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000, "random": 157.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.611566454499993, 47.534032947900002 ], [ -122.609635826599998, 47.534003386099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000, "random": 37.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.784870612299997 ], [ -122.135115949400003, 47.794290888200003 ], [ -122.116088142500004, 47.794953841100003 ], [ -122.111416419500003, 47.8021101024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800, "random": 117.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364967587799995, 46.8759309573 ], [ -117.364903450300005, 46.877276230200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000, "random": 142.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.527484212399997, 45.5979967225 ], [ -122.515822848300004, 45.594914321600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000, "random": 11.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.071997034099994, 47.4423650536 ], [ -122.079603723899993, 47.4579919468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000, "random": 177.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.570754986499999 ], [ -122.662126769699995, 47.571362035299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500, "random": 170.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320194750699997, 46.3605182529 ], [ -120.322978895800006, 46.3718043346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": null, "random": 8.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.072100487599997, 47.859499395 ], [ -120.058178621300002, 47.856017657199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": null, "random": 15.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324887521400001, 47.438245710899999 ], [ -120.3248167693, 47.440990914899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000, "random": 135.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.328302663499997, 47.675441359600001 ], [ -117.324862717299993, 47.675410475100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000, "random": 165.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.553936957300003 ], [ -122.655219925200001, 47.5591158808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000, "random": 133.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239631880800005, 47.671672712099998 ], [ -117.239584531099993, 47.672579561500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200, "random": 33.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.902264898200002 ], [ -124.111012387700001, 46.904012754100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300, "random": 56.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.419911749400001 ], [ -117.063917083, 46.419919126400004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000, "random": 31.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.366799176699999, 47.790544377 ], [ -122.363416141800002, 47.790622223299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820, "random": 69.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.446800662900003, 45.913702032899998 ], [ -122.4272617564, 45.917127220799998 ], [ -122.421117973700007, 45.919803521200002 ], [ -122.421050314499993, 45.924138658899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": null, "random": 96.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.277783324799998, 47.131652171799999 ], [ -119.275276593300006, 47.132523853400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": null, "random": 87.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.336058576299997 ], [ -120.566039557300002, 47.345552567799999 ], [ -120.571515201099999, 47.350585589200001 ], [ -120.563363344, 47.359157664199998 ], [ -120.576749715099993, 47.363819611899999 ], [ -120.594234535400005, 47.381679915900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000, "random": 193.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.916295967099998, 47.637296985500001 ], [ -121.916349545399996, 47.639117271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600, "random": 6.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487330415100004, 46.260755377499997 ], [ -119.487608308600002, 46.269831528600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000, "random": 96.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.567913207199993, 47.593745037799998 ], [ -117.5675988781, 47.593368100200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400, "random": 5.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.803937911800006, 45.826466493799998 ], [ -120.801473643, 45.836314269699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100, "random": 163.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.994938289800004, 46.142280192699999 ], [ -122.987609849699993, 46.137842902099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000, "random": 121.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344353330900006, 48.469916134100004 ], [ -122.3407517853, 48.471136370499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800, "random": 35.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338500106400005, 48.486228159900001 ], [ -122.348249025300007, 48.4942122629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000, "random": 87.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820154302899994, 47.454597961799998 ], [ -122.804266783800003, 47.467763599800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400, "random": 72.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.880076303300001, 46.533993313800003 ], [ -119.827895480199999, 46.549339935900001 ], [ -119.791445814, 46.569212579 ], [ -119.728293539399999, 46.578053477799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000, "random": 51.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.459748548600004, 48.772434026699997 ], [ -122.449178166500005, 48.776042751399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000, "random": 77.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515950787600005, 47.258434649100003 ], [ -122.515944338099999, 47.2599591042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000, "random": 103.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288654999200006, 47.644785095 ], [ -122.231923075500006, 47.636062816299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000, "random": 144.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263852823700006, 47.758298512899998 ], [ -122.251864888499995, 47.758569785399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000, "random": 63.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236666418599995, 47.1398909033 ], [ -122.237300031100006, 47.132452638700002 ], [ -122.229238150100002, 47.117950629200003 ], [ -122.2143535286, 47.103607615800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200, "random": 144.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.682026725199997 ], [ -123.789643650599999, 46.6852246296 ], [ -123.811450259200001, 46.699384844699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000, "random": 195.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.432112725699994, 47.233323158899999 ], [ -122.431873938199999, 47.234680353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000, "random": 41.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.771342824500003 ], [ -122.459748548600004, 48.772434026699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100, "random": 161.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.699115260200003, 47.332546760500001 ], [ -118.6953209574, 47.333317827499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800, "random": 185.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979611987799998, 48.090995406899999 ], [ -121.961577666699995, 48.093592054200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000, "random": 82.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.679523123400003, 47.662857905 ], [ -122.688809379800006, 47.664663366799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000, "random": 70.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.834496190699994, 47.4399094921 ], [ -122.830253409099996, 47.446511538899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000, "random": 22.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156623732400007, 47.468501808500001 ], [ -122.188620638700002, 47.478462399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100, "random": 73.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.301413406799995, 48.172607385500001 ], [ -117.301532072699999, 48.181441509700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000, "random": 110.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.251203279099997, 47.045282316300003 ], [ -123.231164055400001, 47.0504387055 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300, "random": 50.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140899954299996, 47.654795746799998 ], [ -118.097893087100005, 47.657305852199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000, "random": 56.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296538445699994, 47.733797081399999 ], [ -122.292458623200005, 47.733778690400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500, "random": 49.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.197523307899999, 46.738419939400003 ], [ -119.189779697, 46.738143993800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300, "random": 76.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.179114482299994, 46.345519165399999 ], [ -120.177603705500005, 46.345860060299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200, "random": 22.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.752345439300001, 48.997156789599998 ], [ -122.752047289800004, 48.997865276399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800, "random": 146.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.509031671900004, 46.676702796299999 ], [ -120.487292380499994, 46.680124523300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000, "random": 70.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.661842762900001 ], [ -117.387193219400004, 47.661914020600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100, "random": 134.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.746143435299999, 45.815362244299997 ], [ -122.744893128599998, 45.8153696587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000, "random": 114.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.626404641100002 ], [ -122.666431452599994, 45.628936169200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000, "random": 187.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.110563041199995, 46.248522956800002 ], [ -119.093941382599994, 46.249878458300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000, "random": 72.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223176560499994, 47.922657651400002 ], [ -122.212564099800005, 47.921590993700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100, "random": 127.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.488540894899998 ], [ -124.113922483300001, 47.496262306600002 ], [ -124.161478036899993, 47.506903678 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": null, "random": 9.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.205954712600004, 46.984795443199999 ], [ -119.117929867499996, 46.984670877500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500, "random": 197.214 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.398548074700003, 45.5841573262 ], [ -122.385518978199997, 45.582108216400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500, "random": 176.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.280918513700001, 48.0699570958 ], [ -124.268826955099996, 48.080346231699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200, "random": 38.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876359546700002, 47.4318329878 ], [ -122.863144207199994, 47.438638765599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500, "random": 57.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.204962522100004, 48.861182790299999 ], [ -118.205892243, 48.865029997199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400, "random": 40.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385510623499997, 47.944172956300001 ], [ -124.385482118499993, 47.946057096099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000, "random": 143.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.391268319600002, 47.004069776800002 ], [ -123.387506762900003, 47.005179546500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000, "random": 98.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.009572551600002 ], [ -122.889729460300003, 47.992352819099999 ], [ -122.885683715900001, 47.987020464300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000, "random": 86.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245590463699997, 47.1960629254 ], [ -122.238361396, 47.192734459500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000, "random": 135.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330911508100002, 48.406025215600003 ], [ -122.331494065300006, 48.413596405900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300, "random": 114.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.991078005399999, 47.204921628199997 ], [ -121.989641515900004, 47.213883977099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800, "random": 72.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.435115977699994, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400, "random": 31.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.032032014600006, 45.6195630227 ], [ -122.024621875199998, 45.625404013100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000, "random": 147.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139011970599995, 47.358015368099998 ], [ -122.134010446800005, 47.3579773429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400, "random": 83.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.579410600700001 ], [ -117.668745172900003, 47.579876434399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800, "random": 95.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.560878346099997, 45.723055259799999 ], [ -121.551175261400005, 45.727845065099999 ], [ -121.524779511, 45.729215848800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000, "random": 85.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628901394099998, 47.632234824900003 ], [ -122.629359729399994, 47.645556277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800, "random": 41.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.362058013500004, 46.068646754299998 ], [ -118.369780510400005, 46.069847874399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": null, "random": 144.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.783017302900006, 47.112021711899999 ], [ -120.766603867200004, 47.1063778563 ], [ -120.759944575299997, 47.096013762200002 ], [ -120.745137846700004, 47.090283595599999 ], [ -120.738883428500003, 47.083321157699999 ], [ -120.658515798799996, 47.051493470600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000, "random": 14.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172296207800002, 48.152289709199998 ], [ -122.161616720599994, 48.152123549599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000, "random": 100.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885748099899999, 46.980644841100002 ], [ -123.8857327674, 46.980935669499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000, "random": 168.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.982525220699998, 47.209234482500001 ], [ -120.993152412800001, 47.222746832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000, "random": 59.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.884038854300002, 46.662768880900003 ], [ -118.871481668100003, 46.6542060226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000, "random": 74.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.397896310299998, 48.106192363300003 ], [ -123.375955261300007, 48.104855547100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900, "random": 22.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413577184900007, 48.728581825799999 ], [ -117.413560260899999, 48.732500641599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000, "random": 26.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207028983800001, 47.914243946 ], [ -122.206275969299995, 47.9180096463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800, "random": 28.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.595569385700003, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800, "random": 137.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606443415300006, 48.1635594746 ], [ -122.609133392, 48.171286162900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900, "random": 58.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.909559214599994, 47.346792407499997 ], [ -123.911487520899996, 47.361791660599998 ], [ -123.902577135399994, 47.372295066600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000, "random": 64.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128272774199999, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000, "random": 194.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280297386599997, 47.752002751100001 ], [ -122.276408048500002, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000, "random": 138.704 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295311486800003, 47.043931016199998 ], [ -122.295097717100006, 47.047555150800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500, "random": 81.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.099491124899998, 46.8588806371 ], [ -124.061492395499997, 46.864288916500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000, "random": 126.378 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.570973798599994, 48.462635752300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400, "random": 123.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.487608308600002, 46.269831528600001 ], [ -119.490306656599998, 46.272344573200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700, "random": 13.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.122722282300003, 48.627437196700001 ], [ -118.119648738600006, 48.635004250500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000, "random": 107.547 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207819198600006, 47.09966335 ], [ -122.202462298100002, 47.095325541900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500, "random": 41.774 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.403610252500002, 45.699383097400002 ], [ -121.394945338200003, 45.698223114599998 ], [ -121.382957728500003, 45.705115008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": null, "random": 12.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.693725489499997, 48.039290469 ], [ -119.690447248400005, 48.061481261600001 ], [ -119.719186609900007, 48.065900689800003 ], [ -119.724720005799995, 48.076439116400003 ], [ -119.743242646599995, 48.076781011599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000, "random": 51.134 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.610708492499995, 45.647880158 ], [ -122.5974622536, 45.649728357699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800, "random": 121.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.937571908899997, 46.753909554400003 ], [ -122.923246241499996, 46.773207573400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000, "random": 33.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669058799699997, 47.749633705599997 ], [ -122.651372136500001, 47.765032788399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900, "random": 19.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.308852550600001 ], [ -124.043384833600001, 46.308854520300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400, "random": 96.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.449902918800007, 48.52736977 ], [ -121.431030774600003, 48.5268378739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": null, "random": 138.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.714915032600004, 47.809342382399997 ], [ -120.716962414799994, 47.811497214799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700, "random": 8.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159927028200002, 46.270183251399999 ], [ -118.154772907500003, 46.270129968399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000, "random": 172.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201995781500003, 47.927137552200001 ], [ -122.195827584499995, 47.933021241 ], [ -122.199245749599996, 47.961609169200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000, "random": 188.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649407823399997, 47.8021122484 ], [ -122.643319372600004, 47.818106847899998 ], [ -122.630091157500004, 47.828750694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400, "random": 140.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.369596328300005, 46.237150703300003 ], [ -118.339726884300006, 46.287725998100001 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700, "random": 58.166 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357934341199993, 46.980224389500002 ], [ -122.359252624299998, 46.999076360899998 ], [ -122.368916961400004, 47.009369658099999 ], [ -122.369476906499997, 47.0202996688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000, "random": 153.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143016176299994, 48.053691370700001 ], [ -122.140842334, 48.053655770799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800, "random": 188.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.246165081599997, 46.327693020399998 ], [ -120.199816309400006, 46.331131533499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000, "random": 115.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200054353400006, 47.578719073899997 ], [ -122.181098346799999, 47.579760287200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820, "random": 94.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.851188812399997, 46.650840242299999 ], [ -118.808361708700005, 46.634901689199999 ], [ -118.762386459400005, 46.6345593673 ], [ -118.726639387199995, 46.6292584921 ], [ -118.709064484199999, 46.620073978199997 ], [ -118.651963250099996, 46.623324300699998 ], [ -118.641494067099998, 46.631430572 ], [ -118.619519763400007, 46.6393677099 ], [ -118.611755359300005, 46.649048560700002 ], [ -118.588493994499999, 46.647813660899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100, "random": 71.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.936550431100002, 48.566794575300001 ], [ -117.952607635800007, 48.577391783300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000, "random": 166.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315402910200007, 47.684710450399997 ], [ -122.315126489700006, 47.685256401700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000, "random": 82.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.827259250400004, 47.454059906 ], [ -122.826922042899994, 47.451325656100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600, "random": 46.336 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.571845126699998 ], [ -121.913192354700001, 47.596592544300002 ], [ -121.9096907598, 47.624989034199999 ], [ -121.916295967099998, 47.637296985500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500, "random": 113.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.970993700799994, 47.278675160600002 ], [ -122.960173329200003, 47.282055380499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400, "random": 174.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741373518499998, 48.056659417200002 ], [ -117.704874261, 48.067061891500003 ], [ -117.673159591399994, 48.062248924 ], [ -117.637751379400001, 48.063009348500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000, "random": 181.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274709422599997, 47.4287124851 ], [ -122.269011183299995, 47.437789766599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000, "random": 151.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338880034200002, 47.778114643400002 ], [ -122.346227490700002, 47.777795554199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000, "random": 183.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.316103289400004, 46.377988710799997 ], [ -120.318493365, 46.376254892799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700, "random": 84.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699066423100007, 45.6412649874 ], [ -122.704142351399994, 45.644577060899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000, "random": 173.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.005115164200006, 46.203549009 ], [ -118.964206655200002, 46.175219826899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": null, "random": 18.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.100944860699997 ], [ -119.315534249899997, 47.101630402300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000, "random": 14.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515544164900007, 47.635779378599999 ], [ -122.519827714200005, 47.644479769900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500, "random": 124.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.536636413300002 ], [ -117.214770178199998, 47.541673317399997 ], [ -117.214435222399999, 47.561959096 ], [ -117.222910009800003, 47.573066742800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490, "random": 79.683 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.982514410199997 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.994894794300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000, "random": 84.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.203586134700004, 47.475180577300002 ], [ -122.200274287699997, 47.480323985299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000, "random": 94.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.362380338099996, 46.244018440399998 ], [ -119.353119512299997, 46.244832268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000, "random": 46.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925928061600004, 46.146338437399997 ], [ -122.923520705, 46.146068995299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600, "random": 16.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.319380156799994, 46.299522199400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400, "random": 38.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.596169762100004, 48.487275378900001 ], [ -121.590106375900007, 48.488568208499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700, "random": 154.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.373150104100006, 45.946680716 ], [ -119.351379696199999, 45.944648158699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000, "random": 42.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260742998300003, 47.268899057500001 ], [ -122.2583295166, 47.280565297099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000, "random": 31.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780998914600005, 48.0297888001 ], [ -122.778477748699999, 48.030190115700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000, "random": 107.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190397844499998, 48.011226214399997 ], [ -122.186084026499998, 48.021915049900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000, "random": 53.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486103143099996, 48.782691250100001 ], [ -122.486096201899997, 48.783628412500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600, "random": 171.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490306656599998, 46.272344573200002 ], [ -119.494241787899995, 46.279543472100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000, "random": 111.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515897937899993, 47.271095951 ], [ -122.515764730499995, 47.279822397399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900, "random": 42.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192044511299997, 46.763148214899999 ], [ -122.193654417499999, 46.764554452200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100, "random": 160.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.436951250299998, 48.9352749432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000, "random": 165.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669383742700006, 45.631846962499999 ], [ -122.665955536300004, 45.631898547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000, "random": 183.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.298724590700004, 48.096108532499997 ], [ -123.291251261799999, 48.0954124931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000, "random": 105.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.854222276399994, 46.975166309899997 ], [ -123.8318384982, 46.975077901200002 ], [ -123.827868590500003, 46.971685376300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800, "random": 37.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.379716311400003, 47.661938751100003 ], [ -117.372061313499998, 47.663072830700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700, "random": 69.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.644601753700002, 46.616740397100003 ], [ -123.625157561899996, 46.600746377699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000, "random": 138.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.183098546500005, 46.728416263500002 ], [ -117.182511221699997, 46.729023359400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000, "random": 154.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.291328040700002 ], [ -122.657592177799998, 48.293044692199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000, "random": 76.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.304903977600006, 46.292829903700003 ], [ -119.306688915, 46.278802215500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": null, "random": 84.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.389404974499996, 47.919132812400001 ], [ -119.388810295, 47.917927027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400, "random": 167.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.172041843399995, 47.3177075499 ], [ -123.181487179900003, 47.299874506400002 ], [ -123.174905591300003, 47.289039031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180, "random": 138.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.784000054700002, 47.472842312 ], [ -118.784263452900007, 47.6121559913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900, "random": 189.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.845082926399996, 46.293579813599997 ], [ -122.835107025100001, 46.292878933499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800, "random": 161.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357382771900006, 46.929736850399998 ], [ -122.35740693, 46.936642209200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100, "random": 136.114 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.829348175700005, 45.7148576644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000, "random": 106.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.400290715300002, 47.399395735500001 ], [ -121.390124871799998, 47.393230258800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500, "random": 77.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.519587863200002, 48.4074511711 ], [ -119.521661144700005, 48.408142504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700, "random": 193.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.453286095699994, 46.8561637408 ], [ -119.346452902899998, 46.810764896599999 ], [ -119.256984579499999, 46.810235263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000, "random": 25.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.284252451200004, 46.405664437900001 ], [ -120.268235143300004, 46.401178348800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500, "random": 187.925 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.091057119300004, 46.798829385600001 ], [ -124.106282358499996, 46.849519700099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000, "random": 61.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237362405499994, 47.377914705199998 ], [ -122.2306881417, 47.377835494599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000, "random": 157.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629359729399994, 47.645556277 ], [ -122.6335380628, 47.649042313899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800, "random": 41.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.890681059900004, 46.435014693100001 ], [ -123.857643340400003, 46.429368113400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000, "random": 148.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835036922100002, 45.682664960300002 ], [ -120.817606109799996, 45.691454533200002 ], [ -120.815376949200001, 45.697928946300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000, "random": 106.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.963814797400005, 47.857816596799999 ], [ -121.927065336300004, 47.8558599343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000, "random": 57.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740547181500006, 45.902501182500004 ], [ -122.749722348399999, 45.9177650679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000, "random": 136.32 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.863757516299998, 47.086768846799998 ], [ -118.720874480299997, 47.086155289099999 ], [ -118.675635892800003, 47.096990195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000, "random": 45.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.498935680700001, 46.649277051799999 ], [ -120.510906144800003, 46.644208450199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500, "random": 121.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094730493599997, 47.139868914 ], [ -122.091587142099996, 47.1407602078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000, "random": 145.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.268748856399995, 47.472178548899997 ], [ -122.2710239707, 47.4775799592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500, "random": 56.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.533822775700003, 46.290820586400002 ], [ -118.493390640200005, 46.287987258199998 ], [ -118.428761567699993, 46.299220350900001 ], [ -118.356201937600005, 46.2999263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": null, "random": 189.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.174837509100001, 47.767969201900002 ], [ -120.16517224, 47.770798302800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900, "random": 27.921 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507482687600003, 47.744381586199999 ], [ -117.520380013700006, 47.758297026599998 ], [ -117.547264673100003, 47.765923818899999 ], [ -117.545044147900001, 47.770388726599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000, "random": 130.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324775391299994, 47.405730086699997 ], [ -122.3251389542, 47.4075113691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000, "random": 46.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184062738199998, 47.760638188199998 ], [ -122.185841226099996, 47.763446951299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000, "random": 12.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294634377799994, 47.364358862499998 ], [ -122.290042830100006, 47.383756241699999 ], [ -122.292053646699998, 47.400669800400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700, "random": 31.996 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.727008460899995, 45.815673419100001 ], [ -122.705951896299993, 45.815636231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100, "random": 177.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.736058461599995, 46.6468473933 ], [ -119.707334022300003, 46.6539357057 ], [ -119.686256486700003, 46.6685040964 ], [ -119.681750283900001, 46.675001696099997 ], [ -119.682116182, 46.701919444 ], [ -119.641524010300003, 46.730890227700002 ], [ -119.627051021900002, 46.735547573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000, "random": 152.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.577214570099997, 47.642932904799999 ], [ -117.573975922299994, 47.642938657400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000, "random": 32.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274414357200001, 47.485065206599998 ], [ -122.281643589599994, 47.491197644099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100, "random": 164.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.896416472599995, 47.698580768500001 ], [ -122.897990560300002, 47.693584234699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000, "random": 185.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675738111399994, 47.081330050200002 ], [ -122.658847900599994, 47.084419417699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400, "random": 104.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.528676364399999, 48.406051984299999 ], [ -119.528498714799994, 48.409540793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300, "random": 76.616 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.296317791800007, 46.576533839 ], [ -123.294364747900005, 46.578394847399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000, "random": 174.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.931624680400006, 47.027755501100003 ], [ -122.928170766799994, 47.026188983300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910, "random": 47.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.791383799100004, 46.614441905299998 ], [ -117.793103767700003, 46.617894857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000, "random": 133.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.046894581499998, 46.419929593500001 ], [ -117.045583721, 46.419935817599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000, "random": 127.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.192442595100005, 47.69589869 ], [ -117.152082744599994, 47.701179935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400, "random": 136.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.382865474799999, 47.812642294500002 ], [ -122.3819741537, 47.812114513899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900, "random": 18.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515328583900001, 47.301975486400003 ], [ -122.514518613, 47.304061906800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000, "random": 146.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353862608699998, 47.838149676500002 ], [ -117.355582348900001, 47.858807196800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000, "random": 139.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.371997110799995, 46.837063334 ], [ -120.353925733799997, 46.812565686900001 ], [ -120.361749255099994, 46.802185177799998 ], [ -120.358754236799996, 46.7928184397 ], [ -120.372836771500005, 46.781903642899998 ], [ -120.380605613, 46.759389077900003 ], [ -120.390116766399998, 46.7494451154 ], [ -120.386459662600004, 46.730567182599998 ], [ -120.405296181500006, 46.724135662499997 ], [ -120.413679759900006, 46.714272714700002 ], [ -120.433016451, 46.710978993300003 ], [ -120.443323640399996, 46.696344282399998 ], [ -120.475978806100002, 46.681083667 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000, "random": 108.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206275969299995, 47.9180096463 ], [ -122.207438282699997, 47.918856067699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000, "random": 140.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.167410245900001, 47.230914669100002 ], [ -121.148772436800002, 47.220398466500001 ], [ -121.135298152199994, 47.2179205415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100, "random": 11.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.435384177100005, 48.9477318207 ], [ -119.436279972099996, 48.948557349799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000, "random": 197.433 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.350947556400001, 46.221897885 ], [ -119.341877601899995, 46.209562485799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": null, "random": 9.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.627788861799999 ], [ -120.215035859300002, 47.641981006400002 ], [ -120.214171931899998, 47.656175559899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": null, "random": 124.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.467994632100002 ], [ -120.335546620299993, 47.469450059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600, "random": 31.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.699066423100007, 45.6412649874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000, "random": 182.201 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.087849026499995, 46.731794332100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700, "random": 149.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434299490300006, 47.304822344400002 ], [ -122.427580837400001, 47.316802342099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000, "random": 28.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042496270800001, 48.183023593599998 ], [ -117.042441887099997, 48.184010170500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500, "random": 60.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331189920400007, 48.963797220499998 ], [ -122.309204530200006, 48.963860375199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000, "random": 182.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.219321340899995, 48.113310778900001 ], [ -117.143191344, 48.145029846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": null, "random": 168.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455331932199996, 46.8189351153 ], [ -120.460674446200002, 46.827583423299998 ], [ -120.454364847899996, 46.837752781399999 ], [ -120.462611753499999, 46.844241462799999 ], [ -120.461324043900007, 46.850322894199998 ], [ -120.465279252900004, 46.8539700858 ], [ -120.482104421499997, 46.855324776700002 ], [ -120.479444945300003, 46.867276903499999 ], [ -120.495264574399997, 46.876788251500003 ], [ -120.479579040100006, 46.875455864599999 ], [ -120.474817454199993, 46.882884498899998 ], [ -120.492220401599994, 46.884089970300003 ], [ -120.503503352899997, 46.896610545100003 ], [ -120.492884433499995, 46.902015629700003 ], [ -120.504769142, 46.910050121 ], [ -120.510085755899993, 46.926149802799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500, "random": 51.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354729390800003, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.314391569500003, 46.030212649399999 ], [ -122.310528437800002, 46.041780703500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000, "random": 117.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247073417799996, 47.310505541600001 ], [ -122.244776326099995, 47.3180985045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000, "random": 39.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317780212100004, 47.335423352100001 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000, "random": 12.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168007203900004, 47.757408442100001 ], [ -122.159818660100001, 47.760252736799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790, "random": 103.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.274123715400002 ], [ -117.159173196200001, 47.2805495454 ], [ -117.164055686400005, 47.292556320800003 ], [ -117.164444508800003, 47.311338761899997 ], [ -117.192413928799994, 47.3317954981 ], [ -117.178036524899994, 47.358104779100003 ], [ -117.180916077399999, 47.364663773499998 ], [ -117.174270773, 47.379782915200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000, "random": 34.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336148263300004, 48.417507714499997 ], [ -122.333605948400006, 48.417495423699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000, "random": 160.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.107113214899996, 46.2075458387 ], [ -119.102014152300001, 46.2227420627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000, "random": 45.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293083368400005, 47.125652137099998 ], [ -122.293022339499998, 47.136469010699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000, "random": 159.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645684510400002, 47.7518428642 ], [ -122.652429818900004, 47.757228435099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000, "random": 99.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.919617324800001, 46.147218448 ], [ -122.910399241899995, 46.147036878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000, "random": 12.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.209983535899994, 48.0853786216 ], [ -123.199842588400003, 48.083854521500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300, "random": 181.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.909947142199997, 46.058308654699999 ], [ -118.907596618699998, 46.056201396299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000, "random": 66.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.359716934100007, 47.256945056299998 ], [ -122.357446163099993, 47.26443574 ], [ -122.379453463499999, 47.274969727799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300, "random": 49.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.322374392399993, 48.543587961 ], [ -120.315249300299996, 48.535665574699998 ], [ -120.274692061400003, 48.520893431399998 ], [ -120.259511199299993, 48.511797698599999 ], [ -120.251419826299994, 48.501356904 ], [ -120.227272885299996, 48.488256588500001 ], [ -120.192831503500003, 48.477935123899996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300, "random": 97.953 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.283146126800006, 48.069756569200003 ], [ -124.280918513700001, 48.0699570958 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000, "random": 152.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296674778699995, 47.399436909 ], [ -122.2967521172, 47.419099415200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000, "random": 190.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.666099862199999 ], [ -122.321705720500006, 47.670374577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600, "random": 141.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044817678100003, 46.394140990099999 ], [ -117.044476644, 46.404073277199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000, "random": 198.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411212053400007, 47.684340672200001 ], [ -117.411193487199995, 47.6661553637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400, "random": 107.284 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.594541512800006, 48.355123430799999 ], [ -119.591651933099996, 48.350216857600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600, "random": 124.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.495704665900007, 48.427975281099997 ], [ -119.479320311600006, 48.442710676799997 ], [ -119.47455389, 48.456507402900002 ], [ -119.504726913, 48.497189516900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100, "random": 37.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.064449026800006, 46.626975794400003 ], [ -123.054039295600006, 46.628090926799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000, "random": 100.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411143579899999, 47.659075543699998 ], [ -117.411162631, 47.660981036599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000, "random": 35.514 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.348481306400004, 46.063085166599997 ], [ -118.349164427700003, 46.063926639899996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100, "random": 104.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.312854873399999 ], [ -117.990869454199995, 46.314935954600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": null, "random": 157.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.146079747199998 ], [ -119.293885132499994, 47.149636909800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000, "random": 56.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.447469078099999, 48.241938468800001 ], [ -122.379284717800005, 48.240979182499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000, "random": 92.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.265129968300002, 47.4614024105 ], [ -122.262930243100001, 47.461922989500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700, "random": 172.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620784164200003, 46.934374699400003 ], [ -122.607582212500006, 46.941363190200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700, "random": 80.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.323681866499996, 46.436435528799997 ], [ -117.3010762949, 46.426715932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": null, "random": 62.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.460712354199998, 46.956629708400001 ], [ -119.397075758900002, 46.957773680199999 ], [ -119.364154806399995, 46.970687616299998 ], [ -119.333734241200005, 46.9675559139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400, "random": 173.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.069679602600004, 48.23396758 ], [ -122.061555391, 48.236329210800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": null, "random": 40.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.676547299899994, 48.011006920299998 ], [ -119.677492645900003, 48.010363151900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000, "random": 22.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.848233224300003, 46.858616212599998 ], [ -122.846710272600006, 46.859045713699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800, "random": 74.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.655064922899996, 46.809179515 ], [ -117.641301768100007, 46.8104615568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600, "random": 118.408 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.665049294699998 ], [ -118.975226715600002, 46.6637302723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000, "random": 11.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252009338299999, 47.857141929100003 ], [ -122.236957759500001, 47.879069739499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300, "random": 87.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.930126868499997, 48.526423975199997 ], [ -121.844016557700002, 48.5411010945 ], [ -121.825182067399993, 48.538972313 ], [ -121.793327001899996, 48.543507314300001 ], [ -121.772702548799998, 48.537823519299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600, "random": 93.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.288498891399996, 48.963997296 ], [ -122.276224988400003, 48.965022025099998 ], [ -122.271528554400007, 48.974869667199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": null, "random": 50.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.050805502599999, 47.085767763600003 ], [ -119.035163557299995, 47.085426001800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000, "random": 168.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.802151302599995, 47.491269221700001 ], [ -121.7916752446, 47.483269079499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000, "random": 84.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.970153865499995, 47.844960878599998 ], [ -121.970772608100006, 47.857093264699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900, "random": 74.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.788297571699999 ], [ -117.849457433599994, 46.7998322141 ], [ -117.810174320100003, 46.813648863799997 ], [ -117.781126713800006, 46.804881802399997 ], [ -117.757124281900005, 46.802723918399998 ], [ -117.716713311, 46.810350787799997 ], [ -117.6914546669, 46.808715409 ], [ -117.665613796700001, 46.813801431199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000, "random": 185.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.515841842200004, 47.267143818699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000, "random": 178.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.449716718900007, 47.644309250900001 ], [ -117.451612066899997, 47.646901725900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000, "random": 14.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.017592158599996, 46.448268561600003 ], [ -119.010465749199994, 46.4807072897 ], [ -119.015118414200003, 46.497445895799999 ], [ -119.011426253400003, 46.514580199 ], [ -119.014775383499995, 46.533049264100001 ], [ -118.995992353700004, 46.561228338900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000, "random": 93.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256337961900002, 46.251966726399999 ], [ -119.246127238300005, 46.240989423400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800, "random": 73.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.963632788399998 ], [ -122.331189920400007, 48.963797220499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000, "random": 172.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.479857033800002, 45.585751721199998 ], [ -122.466151024, 45.583822528600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000, "random": 70.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.159158770900007, 46.198638478 ], [ -119.158824453600005, 46.202223090700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000, "random": 179.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667352865799998, 47.549059761300001 ], [ -122.65895148, 47.553936957300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000, "random": 26.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.637777688900002, 47.736774087199997 ], [ -122.639182061300005, 47.7464774496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000, "random": 152.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511485307300006, 46.626062679199997 ], [ -120.506997635900007, 46.6257073162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000, "random": 14.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.626086199200003, 47.428820891 ], [ -121.613173791099996, 47.428575583700002 ], [ -121.590366244199998, 47.419579391100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000, "random": 74.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.527113323099996, 46.655943553199997 ], [ -120.525899249099993, 46.657957479399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200, "random": 96.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176696844099993, 46.804638285300001 ], [ -119.176764818099997, 46.809746805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": null, "random": 113.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.604080864699995, 47.553360155500002 ], [ -120.598927088500005, 47.555361186900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000, "random": 59.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.559255047500002, 46.933983955800002 ], [ -122.555660958900006, 46.936196930900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000, "random": 102.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.865051254600004, 46.5465667665 ], [ -122.801159647800006, 46.543946767900003 ], [ -122.747421571, 46.532339046 ], [ -122.719771164400001, 46.532048859500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000, "random": 15.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.380517254300003, 46.031811534299997 ], [ -118.362741011400004, 46.041507820699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000, "random": 65.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.913444846399997, 47.0253389513 ], [ -122.909487464199998, 47.021750611400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000, "random": 92.157 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341401835200003, 48.4590968726 ], [ -122.342445297400005, 48.476913573499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000, "random": 45.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342600390300007, 48.513479003100002 ], [ -122.351539957400007, 48.530520055799997 ], [ -122.350200969100001, 48.553164776800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720, "random": 71.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.777288263200006, 48.917759441100003 ], [ -117.776045267699999, 48.928358074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000, "random": 70.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.520498653900006, 45.757592861699997 ], [ -121.52754616, 45.760623493799997 ], [ -121.527989065599996, 45.7661176923 ], [ -121.512133462400001, 45.776374164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000, "random": 77.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.533987290900001, 48.009762296300003 ], [ -122.541484241899994, 48.011987346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000, "random": 6.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736798022100004, 46.680552573500002 ], [ -123.730318212399993, 46.682339102299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300, "random": 93.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.733480595399996, 47.762334290200002 ], [ -118.721243935800004, 47.763146625200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000, "random": 73.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.307952314299996, 47.390989098200002 ], [ -122.300412458799997, 47.3957738513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000, "random": 128.134 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.687235929099998, 47.575458442200002 ], [ -122.690131623900001, 47.579854202900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000, "random": 145.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.053651104099998 ], [ -122.119313093900004, 48.053547427399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300, "random": 7.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.073220077299993, 47.347496595 ], [ -123.029325592199996, 47.350804202100001 ], [ -122.986872527200006, 47.373399569199997 ], [ -122.948745162199998, 47.3816100186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000, "random": 110.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.306404079100005, 47.772538580800003 ], [ -122.302597486, 47.769986980299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500, "random": 130.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.053320189399997, 46.335256508400001 ], [ -117.052362381500004, 46.336389697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800, "random": 194.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.778477748699999, 48.030190115700002 ], [ -122.757972415799998, 48.031755234899997 ], [ -122.745826823, 48.0252187014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000, "random": 68.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.071993451200001, 46.249483691800002 ], [ -119.067753216300005, 46.246804529800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100, "random": 148.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.280918513700001, 48.0699570958 ], [ -124.2359717776, 48.066111656799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000, "random": 37.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387506762900003, 47.005179546500003 ], [ -123.382100299, 47.006849018899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": null, "random": 163.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.262669504300007, 47.139868927099997 ], [ -119.270112652500003, 47.141966536399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900, "random": 196.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.177155703300002, 46.188470852800002 ], [ -123.168091001400001, 46.191027551200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000, "random": 18.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.231164055400001, 47.0504387055 ], [ -123.175467152, 47.058686653499997 ], [ -123.154699037100002, 47.055249629099997 ], [ -123.111280294599993, 47.032595602599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000, "random": 181.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.102014152300001, 46.2227420627 ], [ -119.101122588, 46.224092029300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000, "random": 165.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236957759500001, 47.879069739499997 ], [ -122.226896444499999, 47.886791904900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400, "random": 164.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.827153834699999, 45.869699138900003 ], [ -119.7799581015, 45.866032850700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200, "random": 108.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.082452188100007, 46.754402918799997 ], [ -124.081342461399998, 46.775793406600002 ], [ -124.086847589599998, 46.789299463299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000, "random": 148.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.978234071800003 ], [ -122.143054576699996, 47.977909322099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100, "random": 138.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053680407900004, 46.367582858299997 ], [ -124.053438936, 46.370628562199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200, "random": 192.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.942007440400005, 46.895919678200002 ], [ -122.908639489600006, 46.899146685399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": null, "random": 183.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.854070022599998, 47.088382438799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600, "random": 73.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176764818099997, 46.809746805 ], [ -119.176781515900004, 46.8114994409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520, "random": 176.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.422710867399999, 46.696905779399998 ], [ -118.412269855199995, 46.701216260800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000, "random": 73.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186387532799998, 47.640513346799999 ], [ -122.186903818399998, 47.663630478599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000, "random": 132.763 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938989524299998, 46.947495190700003 ], [ -122.935418056499998, 46.959676324500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000, "random": 49.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.487178151899997, 46.671384763600003 ], [ -120.49646088, 46.659635398200002 ], [ -120.498935680700001, 46.649277051799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800, "random": 161.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691426359499999, 45.635858138700002 ], [ -122.693857063799996, 45.637225155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000, "random": 25.077 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.976564048599997 ], [ -123.627228668900003, 46.976553239399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000, "random": 59.032 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411101904299997, 47.687150654 ], [ -117.411137105700007, 47.6944973222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100, "random": 83.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.783180389699993, 46.669837987400001 ], [ -123.767190433500005, 46.6744470342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000, "random": 42.974 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.435100794500002, 47.715447291099998 ], [ -117.436421814100001, 47.715439546799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000, "random": 100.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.198761111899998 ], [ -122.129688599199994, 48.200331111600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500, "random": 194.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.123052548399997 ], [ -122.594666773900002, 48.151680394700001 ], [ -122.606443415300006, 48.1635594746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000, "random": 89.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653297245499999, 47.565534571500002 ], [ -122.651129321200003, 47.565545994200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700, "random": 188.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.610192722699999 ], [ -121.6663638136, 46.614190986399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160, "random": 198.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.588837556200005, 45.975811147599998 ], [ -121.612529331299996, 45.9625721062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600, "random": 168.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.739710289800001, 46.7012896138 ], [ -123.743763598499996, 46.715301692700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000, "random": 173.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330409308399993, 47.607952382599997 ], [ -122.328646019499999, 47.6218398679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000, "random": 139.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.005165366499995, 47.2658148473 ], [ -123.002965502600006, 47.266040634699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000, "random": 57.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158836492899994, 46.212219507299999 ], [ -119.150977982499995, 46.214876564199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100, "random": 9.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.979211973399998 ], [ -122.748239795499998, 48.9864873577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700, "random": 126.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885948848799998, 46.520281643799997 ], [ -123.893429722299999, 46.5484187108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400, "random": 109.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.885769935400006, 46.990092803099998 ], [ -123.885752763100001, 46.9927676585 ], [ -123.893927695299993, 46.993141810700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000, "random": 27.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189894961700006, 47.979068415699999 ], [ -122.188666249, 47.979430596900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700, "random": 23.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.550846561900002 ], [ -122.422185317900002, 48.565442515800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400, "random": 32.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264959141099993, 49.000030960399997 ], [ -122.265263764699995, 49.002333133100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000, "random": 29.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657848881700005, 48.289541012699999 ], [ -122.657837721, 48.291328040700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200, "random": 124.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.170377575200007, 47.7449382474 ], [ -118.173659831099997, 47.788368584600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500, "random": 166.129 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.162533537300007, 47.628203114 ], [ -118.159705125, 47.642734092600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000, "random": 96.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.907061669900003, 46.680637532299997 ], [ -119.916634654199996, 46.697295796600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000, "random": 69.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106378900300001, 47.952031161599997 ], [ -122.094618564, 47.951492505799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620, "random": 127.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.695932072600002, 48.9034555044 ], [ -121.671356511300004, 48.887175527899998 ], [ -121.668374638499998, 48.873596402099999 ], [ -121.673980881299997, 48.875803847199997 ], [ -121.659489746399998, 48.868863089400001 ], [ -121.658026228300002, 48.864041946100002 ], [ -121.654761913499996, 48.866308154499997 ], [ -121.658917247100007, 48.8590433627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130, "random": 61.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.946881149200003 ], [ -118.691796812500002, 47.953716427499998 ], [ -118.700143917600002, 47.961274106899999 ], [ -118.700766693399999, 47.971575598800001 ], [ -118.693236644400002, 47.985804220299997 ], [ -118.692878650200001, 47.995849852900001 ], [ -118.686557654699996, 48.000397680699997 ], [ -118.688109738400001, 48.005163178899998 ], [ -118.681191137499994, 48.013475131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300, "random": 130.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730055253499998, 48.6419111855 ], [ -118.701095040599995, 48.6529300754 ], [ -118.685005097499996, 48.650649293199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900, "random": 36.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715519020900004, 48.276246085099999 ], [ -117.715551513099996, 48.280931139700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000, "random": 161.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581342993899995, 47.310972648499998 ], [ -122.5934601063, 47.324644617899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440, "random": 46.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.642582851699999, 46.970873143399999 ], [ -118.659863915100004, 46.970594937100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000, "random": 87.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435029923800002, 47.243209781300003 ], [ -122.419929703899996, 47.244357102199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100, "random": 183.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.784936310800006, 46.3717532207 ], [ -123.756719426700002, 46.355663285200002 ], [ -123.7347135662, 46.354353747399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": null, "random": 13.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.364767205800007, 47.619390169399999 ], [ -119.353659263799997, 47.631053870800002 ], [ -119.359501847199994, 47.641373911099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700, "random": 196.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.673063449899999, 47.463794937599999 ], [ -117.623220084899998, 47.469905047300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000, "random": 31.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.282785873700007, 47.681052638399997 ], [ -117.279905047599996, 47.681635658600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": null, "random": 117.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.304106900199997, 47.412297837799997 ], [ -120.305523870299993, 47.415408638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000, "random": 57.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340549846499997, 46.073901475299998 ], [ -118.325524706799996, 46.081735058900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000, "random": 37.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.608242578700001, 48.428787876800001 ], [ -122.6067917986, 48.437038326600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100, "random": 32.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485768792599998, 48.891409465599999 ], [ -122.464240563, 48.891667265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700, "random": 21.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814496006799999, 46.9745245963 ], [ -123.814156772700002, 46.974248551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100, "random": 153.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392436934100004, 47.321613730400003 ], [ -122.390362912499995, 47.321634062199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000, "random": 21.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909083344899997, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": null, "random": 126.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.297877166500001, 47.616608480700002 ], [ -119.292841949500001, 47.615724197299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000, "random": 30.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666197776800004, 48.284130638100002 ], [ -122.659666966800003, 48.286359741399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000, "random": 49.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.578544731500003, 46.685708578700002 ], [ -121.578967939099996, 46.689687297200003 ], [ -121.562292404, 46.695467909900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000, "random": 106.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313425795499995, 47.297956594799999 ], [ -122.313330040500006, 47.303094966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000, "random": 121.159 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674247167299995, 45.7884633898 ], [ -122.681333363600004, 45.806361536300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000, "random": 61.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.359283416699995, 46.069578111 ], [ -118.353867199899994, 46.069697845599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000, "random": 178.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.555317337800005, 47.809538789599998 ], [ -122.531041412600004, 47.809513658299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000, "random": 63.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.509100327799999 ], [ -122.332916532900001, 47.5234893652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000, "random": 185.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140454259600006, 47.730977296299997 ], [ -122.131767779900002, 47.714400972699998 ], [ -122.1321920922, 47.695282679199998 ], [ -122.128253515300003, 47.687407080900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200, "random": 142.473 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981410569499999, 46.757281391200003 ], [ -121.947499467200004, 46.755041928399997 ], [ -121.927378301700003, 46.749355201599997 ], [ -121.922037542499993, 46.742687586499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300, "random": 157.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.793750807800002 ], [ -118.568417730799993, 46.794722484399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000, "random": 38.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.500959157099999, 46.623267507500003 ], [ -120.488003742900005, 46.607531401800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200, "random": 5.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.940179987500002, 47.196077890700003 ], [ -120.943771749199996, 47.196532896500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200, "random": 32.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104230764099995, 46.887871778200001 ], [ -124.104302567, 46.895974041599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200, "random": 137.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.638490685099995, 46.335207877800002 ], [ -123.621462692899996, 46.346976223799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000, "random": 154.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.127789926700004, 46.243575565299999 ], [ -119.126619412400004, 46.246327603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200, "random": 103.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.974182862099994, 46.327018262400003 ], [ -117.979395154200006, 46.336957343400002 ], [ -117.978538772700006, 46.346463855700001 ], [ -117.952490936700002, 46.356372887600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500, "random": 36.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.865544333200006, 47.5625960148 ], [ -121.834786903799994, 47.5539873994 ], [ -121.840684343099994, 47.551463573500001 ], [ -121.831365726599998, 47.536963829199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000, "random": 108.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.985662542599997, 47.745168652300002 ], [ -121.984573390700007, 47.751380410599999 ], [ -121.955705313600006, 47.7697208879 ], [ -121.974017169299998, 47.7885071981 ], [ -121.982341791600007, 47.812780129099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000, "random": 53.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.754235983800001, 46.978403612 ], [ -123.744597967700003, 46.973572635799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000, "random": 189.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.013093485200002, 46.3059829046 ], [ -119.9861758662, 46.306076549499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000, "random": 87.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.125181517800002, 48.200293378700003 ], [ -122.123612070700005, 48.200278239399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700, "random": 63.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.437155858500006, 48.707698988200001 ], [ -119.436000641700005, 48.710984053300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000, "random": 190.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515822848300004, 45.594914321600001 ], [ -122.515628701099999, 45.594861204200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500, "random": 53.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.596412455899994, 48.892060699699996 ], [ -122.598388599399996, 48.891661797600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000, "random": 57.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.007865329200001, 47.872487544 ], [ -121.990849498299994, 47.865717413600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000, "random": 24.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364816528700004, 46.879029799500003 ], [ -117.364773078, 46.879906306800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000, "random": 140.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.234861136500001 ], [ -122.510003080700002, 47.249038175899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000, "random": 122.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.394695192900002, 47.757093937699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700, "random": 190.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.459894611699994, 45.712339651100002 ], [ -121.425352203499997, 45.699600537199998 ], [ -121.403610252500002, 45.699383097400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100, "random": 137.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.959860863399996, 46.711980420300002 ], [ -122.956475352799998, 46.711286950599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930, "random": 107.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.049059604699998 ], [ -122.274830503199993, 46.063600691700003 ], [ -122.246433641500005, 46.055605308700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000, "random": 138.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.065493119899998, 47.817931230100001 ], [ -122.0562501932, 47.829998507799999 ], [ -122.029595684300006, 47.8298762266 ], [ -121.999229962399994, 47.852339701799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000, "random": 103.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.136478190800005, 47.638442178699997 ], [ -122.135129008199996, 47.640071799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000, "random": 37.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.546985666500007, 45.816821755600003 ], [ -122.522068819599994, 45.853246725600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000, "random": 10.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232887504800004, 47.923352192499998 ], [ -122.223176560499994, 47.922657651400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000, "random": 190.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129998052199994, 48.205757020199997 ], [ -122.143389182, 48.224677901699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000, "random": 74.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209602461599999, 48.821069883 ], [ -122.202529349100004, 48.8159609661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300, "random": 147.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.937941742199996, 47.660685361 ], [ -117.916702149900004, 47.665311003900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000, "random": 87.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.491951754400006, 47.2348877891 ], [ -122.493797523, 47.234861136500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000, "random": 55.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764871137399993, 47.061291889300001 ], [ -122.764545577600003, 47.056484255900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000, "random": 39.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.011506857699999 ], [ -122.688198335500005, 47.009027615599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000, "random": 32.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.349936357600001, 47.243030334799997 ], [ -122.336563296799994, 47.245039798100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000, "random": 95.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311962962300001, 47.352280902300002 ], [ -122.3092462539, 47.358081797099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200, "random": 40.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157996431499996, 46.139111668399998 ], [ -118.150260957100002, 46.142040045900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400, "random": 80.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320503305499997, 46.331399090600002 ], [ -120.320539039099998, 46.338643096699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": null, "random": 101.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.580873540200002, 47.335330983600002 ], [ -120.568278873, 47.336058576299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000, "random": 96.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.372559284399998 ], [ -122.200615099800004, 47.372272058599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300, "random": 148.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.733411255299998, 47.643483853100001 ], [ -117.690253067, 47.643095278200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000, "random": 72.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325052919499996, 47.821329708500002 ], [ -122.322886246899998, 47.8212957342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000, "random": 8.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257445157700005, 47.201882110100001 ], [ -122.254047685, 47.200943512800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600, "random": 76.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.614190986399997 ], [ -121.657725599100004, 46.623916184800002 ], [ -121.616003575799994, 46.647894068200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400, "random": 103.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972796020800004, 46.3237819677 ], [ -117.974182862099994, 46.327018262400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800, "random": 129.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.524309672900003, 47.504827718400001 ], [ -122.510482342299994, 47.504848737300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000, "random": 193.024 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322457988599993, 47.646211059 ], [ -122.322462732, 47.649617031399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900, "random": 104.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256984579499999, 46.810235263 ], [ -119.218196494200001, 46.814163495099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600, "random": 167.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.446045358099994, 46.371667617200004 ], [ -119.440655677400002, 46.380876464899998 ], [ -119.422814149700002, 46.383299103600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600, "random": 49.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427580837400001, 47.316802342099997 ], [ -122.423311671099995, 47.317046900500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600, "random": 180.222 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857728382399998, 46.693948643900001 ], [ -123.843169682799996, 46.698412045799998 ], [ -123.815351378800003, 46.670740711699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500, "random": 121.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.099110968399998, 47.18070609 ], [ -123.097157172300001, 47.181812840200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100, "random": 192.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.859747683400002, 45.8244297002 ], [ -120.831867271600004, 45.823059503700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500, "random": 187.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.579954340900002, 48.364475813299997 ], [ -119.545085984599993, 48.396250068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200, "random": 75.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.285789036099999, 46.5613718886 ], [ -122.275243482700006, 46.558324606299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000, "random": 169.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293226289900005, 47.118364891100001 ], [ -122.293083368400005, 47.125652137099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300, "random": 117.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.792112052700006, 45.848375413299998 ], [ -120.770900456899994, 45.861551476899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390, "random": 188.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.681191137499994, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.674533895600007, 48.032939331100003 ], [ -118.668829663, 48.0503155854 ], [ -118.673824602600007, 48.069260523899999 ], [ -118.69074626, 48.082852740600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000, "random": 39.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.893609498800004, 46.589134577700001 ], [ -122.904494363, 46.602130269200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600, "random": 17.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.113551631600004, 47.453231937300004 ], [ -123.115551230199998, 47.444827978200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000, "random": 175.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.417644232100002, 47.238212922800003 ], [ -122.408349942100003, 47.2391797955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300, "random": 92.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625971802600006, 47.398107085 ], [ -122.625772112199996, 47.400002299699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000, "random": 183.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.224368274400007, 47.477801894899997 ], [ -122.220911129, 47.478825466300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000, "random": 139.107 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.551496168100002, 47.993632692699997 ], [ -117.566302510300005, 47.993875943600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800, "random": 179.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.699941006700001, 45.923000308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800, "random": 135.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.942512646200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": null, "random": 123.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.618136899600003, 47.250037303500001 ], [ -119.598554678200003, 47.251897161499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000, "random": 164.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304514492500005, 47.645285222699997 ], [ -122.304573455500005, 47.649044063300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000, "random": 52.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.444732982900007, 47.632699017299998 ], [ -117.448371310200002, 47.641008035600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000, "random": 62.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.100278283400002, 47.211973236299997 ], [ -123.100111778499993, 47.212806620899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000, "random": 154.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884496518500001, 46.256196953100002 ], [ -122.8921920489, 46.267577082899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000, "random": 134.755 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341143146500002, 48.446976752200001 ], [ -122.341401835200003, 48.4590968726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700, "random": 135.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950446235800001, 46.896255370299997 ], [ -122.942007440400005, 46.895919678200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000, "random": 104.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900788784599996, 46.108478242700002 ], [ -122.892543258700002, 46.106806579699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600, "random": 117.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883825273799999, 47.952251071399999 ], [ -122.881744519600005, 47.9446523903 ], [ -122.853669394500002, 47.940789816900001 ], [ -122.813727298700002, 47.922952148299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000, "random": 192.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.595569385700003, 46.5253458249 ], [ -122.565213602, 46.543440782799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200, "random": 171.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.496876955600001, 47.797040983899997 ], [ -122.495984081200007, 47.795839855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000, "random": 61.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813259501299996, 48.100401481399999 ], [ -122.788558961099994, 48.102942128199999 ], [ -122.783199502800002, 48.107007579799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000, "random": 99.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239712502900005, 47.6897536118 ], [ -117.218478744600006, 47.694493817100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000, "random": 162.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487190900004, 47.739650548199997 ], [ -117.411427803, 47.740847495899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000, "random": 167.716 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239584531099993, 47.672579561500001 ], [ -117.2395516805, 47.672993962200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000, "random": 96.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.694793762299994, 47.381239063 ], [ -122.680812527, 47.388765448500003 ], [ -122.661306576300007, 47.388976470899998 ], [ -122.651867621700006, 47.385441657299999 ], [ -122.652851016599996, 47.377332321499999 ], [ -122.641894565100003, 47.379505721400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500, "random": 67.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.823931182699994, 45.699442413 ], [ -120.800817614300001, 45.711712685800002 ], [ -120.808059784299999, 45.719956501399999 ], [ -120.814450276299993, 45.72130035 ], [ -120.822499269700003, 45.743168923 ], [ -120.822947646900005, 45.777179853299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600, "random": 56.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609054417199999, 47.8521256366 ], [ -122.602042804600003, 47.854763585699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000, "random": 142.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169983570699998, 47.753052414899997 ], [ -122.168895232500006, 47.752366135400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000, "random": 131.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.445060728100003, 47.066579651399998 ], [ -122.434686733199996, 47.083417430099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200, "random": 142.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.040486107299998, 46.161211968099998 ], [ -119.049476697399996, 46.168670079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000, "random": 97.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229390794599993, 47.192863402299999 ], [ -122.22939549, 47.191639746100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700, "random": 15.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.786851206799994, 46.967101999900002 ], [ -123.788090911200001, 46.967896691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700, "random": 73.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311493874600004, 46.862481513299997 ], [ -122.330955177899995, 46.868650931300003 ], [ -122.346151983200002, 46.864671256299999 ], [ -122.348599611699996, 46.8698964015 ], [ -122.341247335299997, 46.878373559099998 ], [ -122.359020038699995, 46.8898382458 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000, "random": 39.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.218478744600006, 47.694493817100003 ], [ -117.192442595100005, 47.69589869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000, "random": 174.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.208800066199998, 47.915072194099999 ], [ -122.207566482900006, 47.915287680600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000, "random": 67.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.132707043300002, 48.1526864406 ], [ -122.116764399600001, 48.151631423700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000, "random": 10.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.821463436599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000, "random": 37.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.888045170599995, 47.034962724700002 ], [ -122.875302195800003, 47.036689104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600, "random": 189.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.492390975500001, 46.937977309899999 ], [ -122.484172063499997, 46.938007018199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000, "random": 99.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220352926700002, 47.582451626400001 ], [ -122.200054353400006, 47.578719073899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000, "random": 57.757 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.469437454900003, 46.506554291800001 ], [ -120.4796170905, 46.516495101300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000, "random": 42.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575401006199996, 47.487355220600001 ], [ -117.564733440400005, 47.498272492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350, "random": 179.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467680710099998, 46.702386698200002 ], [ -117.467287985300004, 46.7034528115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300, "random": 51.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.199816309400006, 46.331131533499999 ], [ -120.180194115600003, 46.345278852200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000, "random": 7.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.661463342399998 ], [ -122.285944848200003, 47.661989355800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000, "random": 114.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275636924400004, 47.870880789399997 ], [ -122.274852247499993, 47.8718113531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100, "random": 172.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.729957308199999, 48.0326119562 ], [ -122.720736025400001, 48.026811053700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": null, "random": 153.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.306528688200004, 47.416668391899996 ], [ -120.317045772100002, 47.429466244099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000, "random": 177.392 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.620686334699997, 46.6605003365 ], [ -120.614235774899996, 46.6544908714 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200, "random": 86.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364914465300004, 46.890563387699999 ], [ -117.364248234599998, 46.889589876499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000, "random": 187.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.214291678800002 ], [ -122.462747020199998, 47.215959170799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000, "random": 12.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.044831924299999, 47.399706131899997 ], [ -122.039324433900006, 47.407973190200003 ], [ -122.005064919500001, 47.419436488800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000, "random": 118.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434380151200003, 47.148970958900001 ], [ -122.434250602, 47.155430989599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": null, "random": 184.236 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294775757099998, 47.415324222800002 ], [ -120.294127652200004, 47.413015349399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000, "random": 75.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196925317099996, 47.445266757200002 ], [ -122.198250392399999, 47.447197230199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000, "random": 148.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.570692450600006, 47.803729114699998 ], [ -122.563306341, 47.80561327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000, "random": 93.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244986940100006, 48.156605492600001 ], [ -122.238352000500001, 48.1519754742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000, "random": 77.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552815713100003, 45.612150505899997 ], [ -122.556305050399999, 45.616735027099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200, "random": 60.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.624893170799993, 45.928329865400002 ], [ -119.603047109, 45.936904906499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470, "random": 20.775 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.842379238299998, 47.839766465700002 ], [ -117.855326948499993, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000, "random": 90.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.971946803199998, 47.535619038900002 ], [ -121.942399051199999, 47.530214060600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100, "random": 152.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.363341681900003 ], [ -119.579954340900002, 48.364475813299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000, "random": 164.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190021415199993, 48.159825483299997 ], [ -122.193028377600001, 48.176135222 ], [ -122.199439421799994, 48.184232346199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440, "random": 144.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.884811685899997 ], [ -118.332910287700003, 46.911286584700001 ], [ -118.343440479400002, 46.915750159 ], [ -118.345358429599997, 47.002118431 ], [ -118.352361527599996, 47.0106200548 ], [ -118.347825199499994, 47.040541544900002 ], [ -118.365168418099998, 47.0601072344 ], [ -118.365631712500004, 47.112475028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000, "random": 6.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320662024800001, 47.676906509799998 ], [ -122.32934455, 47.695753648699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600, "random": 136.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.938415335599998, 47.194899606299998 ], [ -120.940179987500002, 47.196077890700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": null, "random": 186.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.092601985599998, 47.868149586400001 ], [ -119.092825470700006, 47.880457760200002 ], [ -119.0773477173, 47.890119071500003 ], [ -119.064173043799997, 47.905872503799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700, "random": 177.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.954310122899997, 46.719354594599999 ], [ -122.955524056300007, 46.716503990200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000, "random": 179.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192243083299999, 47.494131979700001 ], [ -122.195341635899993, 47.499456439200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520, "random": 35.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.151145783700002, 45.818334026400002 ], [ -121.146396011500002, 45.821781871200002 ], [ -121.120394404699994, 45.818296193400002 ], [ -121.115288165099997, 45.825028865500002 ], [ -121.100019608099998, 45.824926880500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000, "random": 198.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134010446800005, 47.3579773429 ], [ -122.128107064100007, 47.358033512399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000, "random": 18.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337551775799994, 45.9498941429 ], [ -119.332466565399997, 45.9393404761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700, "random": 192.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.822585393400004, 48.534895129 ], [ -117.817888608199993, 48.525398877400001 ], [ -117.804791347, 48.514740899800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": null, "random": 193.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.089820147799998, 47.839707846700001 ], [ -120.053845938899997, 47.835984992900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260, "random": 111.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.612498886499999 ], [ -118.7206203577, 47.6136015226 ], [ -118.721686502200001, 47.756587506300001 ], [ -118.710111471299996, 47.757920299600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000, "random": 160.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764545577600003, 47.056484255900003 ], [ -122.764636559600007, 47.052285571600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900, "random": 43.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.945053307500004, 48.8896410913 ], [ -121.942027628899993, 48.889158419700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000, "random": 16.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.216714377599999, 47.911343964899999 ], [ -122.212938500800007, 47.91279953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000, "random": 65.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.224735507399998, 47.5862739437 ], [ -117.221607451300002, 47.596981261499998 ], [ -117.223579115199996, 47.616455505799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000, "random": 147.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.015412092800005, 48.067401767299998 ], [ -122.009898974199999, 48.071628269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000, "random": 175.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.150977982499995, 46.214876564199997 ], [ -119.141109524399994, 46.215426044399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": null, "random": 146.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.718972574299997, 47.199367178300001 ], [ -120.708024373599997, 47.203648771300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000, "random": 122.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.098714277300004, 47.369492418100002 ], [ -122.081556476599999, 47.3772542241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000, "random": 164.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.590602617200005, 45.652794820399997 ], [ -122.581605412299993, 45.655987363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000, "random": 49.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.297511450399995, 46.300101854099999 ], [ -119.304903977600006, 46.292829903700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000, "random": 129.597 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.104738240499998 ], [ -122.951208942899996, 46.115761426399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000, "random": 69.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.279633118600003, 45.690688236100002 ], [ -121.213879230399996, 45.673461159799999 ], [ -121.192866507600002, 45.6576560325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710, "random": 10.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398139108899997, 47.395175907 ], [ -121.398065622, 47.395608745700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": null, "random": 7.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.977015037599998, 47.817024460699997 ], [ -119.974790843500003, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790, "random": 195.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704325545200007, 46.773822606700001 ], [ -117.693973727100001, 46.788923715800003 ], [ -117.677831532799999, 46.793652444899998 ], [ -117.655064922899996, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000, "random": 87.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.257900493099996, 47.291814197699999 ], [ -122.254118291, 47.299842864399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000, "random": 29.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.770303523700001 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000, "random": 133.345 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.014328780600003 ], [ -122.191598935599998, 48.012573229799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": null, "random": 151.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854827819899995, 47.23342187 ], [ -119.853366397299993, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000, "random": 142.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.653823445500002 ], [ -117.330248918500004, 47.653713239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900, "random": 25.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.765640039800005, 46.951272514899998 ], [ -123.769599737799993, 46.954635166599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000, "random": 167.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.451210130099994, 46.577085327600003 ], [ -120.435463721399998, 46.5745924593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900, "random": 124.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.665049294699998 ], [ -119.005874759600005, 46.700806829800001 ], [ -119.009835216300004, 46.710106335299997 ], [ -119.022009186, 46.720422426299997 ], [ -119.048710915699999, 46.7291966819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000, "random": 67.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.957740050399998 ], [ -122.619337819, 45.9439148266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000, "random": 46.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411745008500006, 47.601977328499999 ], [ -117.439007811799996, 47.624062479899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100, "random": 136.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.616494335699997, 48.788441017300002 ], [ -118.616803513, 48.795955186900002 ], [ -118.603415779200006, 48.804910712199998 ], [ -118.591618267499996, 48.827026486400001 ], [ -118.592129602599996, 48.835434792599997 ], [ -118.603937251700003, 48.855909163600003 ], [ -118.606337912499995, 48.873286374800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000, "random": 177.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.864239590400004, 47.511184175899999 ], [ -121.853054034099998, 47.511870957699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900, "random": 176.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.278589829400005, 48.097019969599998 ], [ -117.251298774, 48.099857116599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300, "random": 82.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.583279323499994, 47.481886183299999 ], [ -117.581932979, 47.482522184700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000, "random": 186.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.700474082699998, 46.8819430195 ], [ -122.688859129400001, 46.888362931400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000, "random": 38.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.435610210099995, 45.580163137200003 ], [ -122.426673153600007, 45.579885332700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000, "random": 164.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.324165458899998, 47.729615819499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": null, "random": 78.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.469831748700003, 47.542619719199998 ], [ -119.4532411733, 47.566569662900001 ], [ -119.436268802900003, 47.572640579800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600, "random": 169.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347169334100002, 48.919529469799997 ], [ -122.323440946900007, 48.920195971799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000, "random": 73.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.099712027199999, 47.205696953500002 ], [ -123.101162050699998, 47.207212564800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000, "random": 59.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.521907403699998, 45.856848830799997 ], [ -122.5200551004, 45.865996916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000, "random": 123.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.413129962100001, 48.450215427099998 ], [ -122.3810673208, 48.4573156123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000, "random": 94.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.541726008099999 ], [ -122.634901901099994, 47.541423549599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800, "random": 109.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952739627200003, 46.720041065 ], [ -122.952249981600005, 46.7274803396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000, "random": 138.768 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.879906306800002 ], [ -117.3647146566, 46.881018551099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000, "random": 23.643 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312363667300005, 47.347799161099999 ], [ -122.311962962300001, 47.352280902300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000, "random": 115.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.184801595899998 ], [ -120.897727887100004, 47.180423953599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600, "random": 157.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.952607635800007, 48.577391783300001 ], [ -117.989437568599996, 48.589057101599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000, "random": 69.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632946940099998, 47.567332683300002 ], [ -122.632914151400001, 47.571068204600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000, "random": 180.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.996177086499998 ], [ -122.544028419100002, 47.00195264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000, "random": 64.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345252791700005, 47.741452447 ], [ -122.345489043399994, 47.752490517399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": null, "random": 135.707 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.498698481900007, 47.369072135099998 ], [ -119.497251069100002, 47.370285029800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": null, "random": 11.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.657240849299995, 47.598358932399996 ], [ -120.654043935600001, 47.599084438699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000, "random": 98.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515628701099999, 45.594861204200001 ], [ -122.494389272800007, 45.589055721699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800, "random": 180.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.450008249200003 ], [ -117.141556500500002, 47.4513001292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000, "random": 53.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.732395601100002 ], [ -117.174164814199997, 46.737912873399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000, "random": 145.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515758745799999, 47.281707768 ], [ -122.515740677500006, 47.290804219499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000, "random": 92.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245588636600004, 47.441221085499997 ], [ -122.243838936399996, 47.456863249199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600, "random": 71.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523296206200001, 48.409470013799996 ], [ -119.525680334100002, 48.410508638499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000, "random": 151.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.811532211399999 ], [ -122.4859938914, 48.815000193800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000, "random": 116.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.965876132600002, 47.193616516900001 ], [ -120.928033390699994, 47.189314567899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000, "random": 110.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.508717176600001, 47.144773798300001 ], [ -122.498918855499994, 47.150179615500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000, "random": 66.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263541723100005, 47.922179159300001 ], [ -122.251099789600005, 47.923251180100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100, "random": 23.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.899961343100003, 47.187712731600001 ], [ -120.904018699199995, 47.188626240200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000, "random": 187.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187184739399996, 47.501857325400003 ], [ -122.182621094699996, 47.498815123200004 ], [ -122.174077864200001, 47.505820768600003 ], [ -122.159856862200002, 47.504657659899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600, "random": 65.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.729995110700003, 48.962176777700002 ], [ -122.728414178700007, 48.9757559926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000, "random": 192.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.418963561400005, 47.831494809600002 ], [ -117.423143167099994, 47.884351820399999 ], [ -117.453850354599993, 47.918261358400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200, "random": 30.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719519990600006, 45.649917745300002 ], [ -122.730817493900005, 45.655963797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000, "random": 58.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.090309300800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700, "random": 133.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.966750153099994, 46.379458651 ], [ -119.950716872800001, 46.397066288200001 ], [ -119.947935165800004, 46.414195625399998 ], [ -119.937359903699999, 46.433729893200002 ], [ -119.938319542, 46.4575952693 ], [ -119.931018093099993, 46.474130456200001 ], [ -119.901708315500002, 46.497304085 ], [ -119.884335095899999, 46.505082388399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000, "random": 69.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.924700924500002, 46.1221385232 ], [ -122.918327484900004, 46.1179762286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000, "random": 152.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.659992095900002 ], [ -117.413322953399998, 47.659074764899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800, "random": 185.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152366198600006, 47.733080413899998 ], [ -122.140454259600006, 47.730977296299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900, "random": 121.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704477620199995, 47.548263456599997 ], [ -117.704451580400004, 47.551027418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000, "random": 94.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780998914600005, 48.0297888001 ], [ -122.788828616299995, 48.0414353719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200, "random": 71.454 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897990560300002, 47.693584234699998 ], [ -122.900066849799998, 47.677266599900001 ], [ -122.932301409600001, 47.6518739395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000, "random": 192.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.003632927599995, 47.309464702200003 ], [ -122.011624264299996, 47.333040471099999 ], [ -122.018297171699999, 47.341006772299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000, "random": 89.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159818660100001, 47.760252736799998 ], [ -122.157000635700001, 47.765024263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300, "random": 154.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.681604375399999, 48.269260962 ], [ -121.674372320399996, 48.2692255901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000, "random": 172.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.527130170600003, 47.006995839200002 ], [ -122.460282873, 47.059036581100003 ], [ -122.445060728100003, 47.066579651399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000, "random": 14.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.525993174800007, 48.794574176700003 ], [ -122.544684767600003, 48.8138630642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800, "random": 69.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.307012344300006, 46.567981686 ], [ -123.299917084200004, 46.570027498100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000, "random": 56.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.319748079199996, 47.681633366299998 ], [ -122.318091806, 47.682431997400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200, "random": 20.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.905102340499994, 46.184711848900001 ], [ -122.907074601299996, 46.190049258599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000, "random": 111.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172787934200002, 46.739769734200003 ], [ -117.1710414458, 46.742490409399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000, "random": 137.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.882350975700007, 46.979220086200002 ], [ -123.885748099899999, 46.980644841100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000, "random": 40.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.006531622099999, 47.055212302699999 ], [ -122.999819081400005, 47.050500637500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": null, "random": 189.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.323545995499998, 47.476904531599999 ], [ -120.320705919600002, 47.4808771816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000, "random": 32.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.787286583799997, 47.495120452199998 ], [ -121.788376675, 47.494065390700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000, "random": 110.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.825197281100003 ], [ -122.243115319599994, 47.825676567800002 ], [ -122.233172088499998, 47.821066967299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400, "random": 58.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.882980214300005, 46.712717408099998 ], [ -120.873686989600003, 46.712256900699998 ], [ -120.845798615700005, 46.721461564199998 ], [ -120.818784696600005, 46.719442916699997 ], [ -120.8111956085, 46.726698166299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600, "random": 193.282 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.574657667500006, 46.5626246259 ], [ -123.540294740700006, 46.557692377800002 ], [ -123.520315093700006, 46.545220347399997 ], [ -123.494926021, 46.541009466600002 ], [ -123.416451494900002, 46.550889163599997 ], [ -123.393897732400006, 46.5443022941 ], [ -123.374665320600002, 46.551940327499999 ], [ -123.3387554018, 46.5498400922 ], [ -123.318153313400003, 46.553769905700001 ], [ -123.307012344300006, 46.567981686 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000, "random": 118.934 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.744597967700003, 46.973572635799997 ], [ -123.738195968599996, 46.971090700700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": null, "random": 104.549 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.064173043799997, 47.905872503799998 ], [ -119.056355265600004, 47.915376585200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000, "random": 159.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.650736343700004, 47.769589163600003 ], [ -122.651542756799998, 47.791613631499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000, "random": 75.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.736102562400006, 46.693707214699998 ], [ -123.747746263300002, 46.693374154399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000, "random": 25.176 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461613891900001, 48.760763625700001 ], [ -122.462228315900006, 48.768161057299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100, "random": 74.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.803768033799997, 46.438116363900001 ], [ -122.726748559900003, 46.437357559500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000, "random": 113.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.247280654299999 ], [ -123.045670011, 47.247837466199996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000, "random": 23.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.609005895700001 ], [ -122.570935883800004, 45.608022223200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000, "random": 153.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553834768499996, 46.952413496699997 ], [ -122.546840301700001, 46.992764977500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570, "random": 58.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.552551361799999, 46.644788750300002 ], [ -118.549509477200004, 46.645356033399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000, "random": 166.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.219327033699997, 47.30338806 ], [ -122.186934388599994, 47.298301147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000, "random": 160.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.658117051700003, 45.618558865399997 ], [ -122.633422151299996, 45.6184980719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900, "random": 117.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.842250419799996, 46.411322035600001 ], [ -123.834998321100002, 46.394895656499997 ], [ -123.828198165900005, 46.391360921900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480, "random": 23.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.146875159499999, 48.306812825500003 ], [ -118.163118670599999, 48.352028812299999 ], [ -118.171552227500001, 48.409100633100003 ], [ -118.170843796300005, 48.428829625399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": null, "random": 47.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853405347299997, 47.222329436499997 ], [ -119.853382887400002, 47.231885111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100, "random": 53.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.761994264799995, 48.063266369600001 ], [ -117.755210289199994, 48.116761860099999 ], [ -117.732778112199995, 48.138301395100001 ], [ -117.726046511600003, 48.150359313899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700, "random": 73.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.722712223299993, 48.168542211599998 ], [ -117.726284757100004, 48.176220476499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": null, "random": 60.342 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.590263712199999 ], [ -120.667643367899998, 47.592781258700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": null, "random": 72.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.254646437100007, 46.981691158700002 ], [ -119.205954712600004, 46.984795443199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000, "random": 35.703 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185741568699996, 47.754859998100002 ], [ -122.184062738199998, 47.760638188199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000, "random": 137.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.780129801500003 ], [ -122.599982644, 45.780145376699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000, "random": 53.879 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095723781800004, 47.157298820199998 ], [ -123.095106414, 47.142989269300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000, "random": 83.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275545727899996, 47.820914372499999 ], [ -122.265870576400005, 47.820744648900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460, "random": 82.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.774083295099999 ], [ -118.288657225600005, 46.787931700800002 ], [ -118.309745397100002, 46.8098489829 ], [ -118.309986261899994, 46.8161196557 ], [ -118.321764154500002, 46.822539058 ], [ -118.332139242099998, 46.838981876600002 ], [ -118.336263813200006, 46.8534807148 ], [ -118.334575397, 46.884811685899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000, "random": 93.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.987609501799994, 46.157644308199998 ], [ -122.983354596599995, 46.155547457499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100, "random": 172.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.917970384499995, 46.9819334325 ], [ -123.92417003, 46.982514410199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100, "random": 134.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.333365258299999 ], [ -118.692231093100006, 47.333315666600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000, "random": 46.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.255459168900003, 47.145496228900001 ], [ -117.267706028099994, 47.161508018200003 ], [ -117.289177435699997, 47.167952476099998 ], [ -117.295845237199998, 47.183325498099997 ], [ -117.329578624299998, 47.186982457500001 ], [ -117.354687911200003, 47.203496109299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 112.339 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.832449934699994, 47.104225926799998 ], [ -119.830782215400006, 47.103697310500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100, "random": 104.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811450259200001, 46.699384844699999 ], [ -123.8253745361, 46.709170275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000, "random": 174.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.224092029300003 ], [ -119.099771153899994, 46.223724902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600, "random": 107.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884773839800005, 47.985575900699999 ], [ -122.882024161499999, 47.968795396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": null, "random": 72.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.746889316500003, 47.2346362782 ], [ -119.725170925599997, 47.248912161500002 ], [ -119.618136899600003, 47.250037303500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000, "random": 149.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661304943800005, 45.647498224 ], [ -122.649649797199999, 45.650423183699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000, "random": 29.581 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.406870838900005, 45.601867264600003 ], [ -122.4055026586, 45.596100378800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600, "random": 192.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.728964255699999 ], [ -122.953673774899997, 46.728946156100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000, "random": 101.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.115130120299995, 47.672044652099999 ], [ -122.113361770400005, 47.671528366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900, "random": 115.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.301532072699999, 48.181441509700001 ], [ -117.301212642400003, 48.191267265 ], [ -117.289717620199994, 48.206522926700003 ], [ -117.291480250199996, 48.2273126077 ], [ -117.283086253500002, 48.236682837499998 ], [ -117.284575433900002, 48.281276573600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000, "random": 101.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327158730700006, 47.713627215899997 ], [ -122.3242862882, 47.7185219104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900, "random": 34.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.738462718600005, 48.535925892400002 ], [ -121.722336944700004, 48.531946086200001 ], [ -121.707521914899999, 48.519146603499998 ], [ -121.676039301700001, 48.515161287300003 ], [ -121.651386023200004, 48.504193452800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": null, "random": 71.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.658515798799996, 47.051493470600001 ], [ -120.629181264300001, 47.0396007246 ], [ -120.586741587099993, 47.0023957095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500, "random": 197.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.138001808699997, 48.9060853167 ], [ -122.137590950499998, 48.917143280200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": null, "random": 30.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.398285650200002 ], [ -120.256496735599995, 47.385313725800003 ], [ -120.192223719300003, 47.377314531099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700, "random": 178.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.850561469400006, 46.660610888900003 ], [ -118.836746209300003, 46.6949715887 ], [ -118.834885435800004, 46.7191386362 ], [ -118.820843535500003, 46.734021038900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000, "random": 56.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.951711013400001, 46.146902157200003 ], [ -122.925928061600004, 46.146338437399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700, "random": 111.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.857643340400003, 46.429368113400002 ], [ -123.856614353400005, 46.4366406332 ], [ -123.871447488200005, 46.447636019800001 ], [ -123.874041637299996, 46.459116775200002 ], [ -123.887829776399997, 46.479158477699997 ], [ -123.885948848799998, 46.520281643799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400, "random": 94.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.438928498500005, 48.705561124 ], [ -119.437398043100004, 48.707299203300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100, "random": 170.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.766732319699997, 48.110171865 ], [ -122.760830541199994, 48.112587725399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000, "random": 129.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645906529200005, 48.3044536381 ], [ -122.643433158400001, 48.306580660599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000, "random": 67.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.846451108899998, 47.424603187199999 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700, "random": 37.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626092716800002, 47.389054986200001 ], [ -122.625971802600006, 47.398107085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200, "random": 171.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.052535915500002, 46.466597142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000, "random": 86.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096767187400005, 47.034123827899997 ], [ -123.075452955200006, 47.040501892199998 ], [ -123.057714818400001, 47.040926856200002 ], [ -123.022376311800002, 47.0580771821 ], [ -123.012427460200001, 47.056316642699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000, "random": 179.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.992391644899996, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540, "random": 40.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270593977499999, 46.287340526100003 ], [ -122.2586933356, 46.282962894800001 ], [ -122.218407742300002, 46.290256532 ], [ -122.1949063653, 46.282330540300002 ], [ -122.201910292600004, 46.278940565399999 ], [ -122.216691878199995, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.218532111800002, 46.277597057100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200, "random": 133.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254669381300005, 47.479786644 ], [ -118.254619604499993, 47.483794136199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": null, "random": 197.89 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.831155034299996, 47.103871256600002 ], [ -119.827257676599999, 47.106307188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000, "random": 94.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.897076554700007, 46.981004020500002 ], [ -123.902252551, 46.981045286799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400, "random": 78.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194015632499998, 48.523674249099997 ], [ -122.149310257, 48.5311401242 ], [ -122.120553856399994, 48.526076599200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000, "random": 108.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215888421800003, 47.844398369499999 ], [ -122.217566158099999, 47.849690876499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900, "random": 197.604 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.571252840200003, 48.114671255600001 ], [ -123.566690726800005, 48.114021332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500, "random": 131.952 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.537578659499999 ], [ -122.225111655199996, 48.5503306146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000, "random": 14.696 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.850435511500002 ], [ -117.349797920599997, 46.859706395899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000, "random": 187.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.952490936700002, 46.356372887600003 ], [ -117.939261629200004, 46.382620523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": null, "random": 130.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.306221311900003, 47.416281941 ], [ -120.306528688200004, 47.416668391899996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000, "random": 82.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.277773723600006, 47.879481564 ], [ -122.279969000299999, 47.882689195399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800, "random": 53.221 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042666862199994, 48.178097309100004 ], [ -117.042496270800001, 48.183023593599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100, "random": 6.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.513886217199996, 45.742904109100003 ], [ -121.520498653900006, 45.757592861699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000, "random": 94.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.447814221599998, 47.648093677200002 ], [ -117.419560291500005, 47.652634740700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": null, "random": 152.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319580717500003, 47.471603209500003 ], [ -120.302587343100001, 47.468606566600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000, "random": 48.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.844831450599997 ], [ -122.581291760599996, 48.852425293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000, "random": 99.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.031730899199999 ], [ -119.226778941800006, 46.018087104300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": null, "random": 158.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.138472205699998, 46.892262265 ], [ -119.1444896159, 46.898485156200003 ], [ -119.136399920399995, 46.911106677299998 ], [ -119.127970605499996, 46.948558243699999 ], [ -119.118610982700005, 46.959526672899997 ], [ -119.117938296399998, 46.970178233699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": null, "random": 83.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.002377226700006, 47.948533089199998 ], [ -119.003281298499999, 47.947389362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000, "random": 73.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097337669699996, 47.182654412799998 ], [ -123.098432778900005, 47.1898992789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000, "random": 96.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.101069391699994, 47.945623791300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000, "random": 49.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320756053599993, 47.5899474422 ], [ -122.320505071599996, 47.597507913800001 ], [ -122.326526705800006, 47.603443393299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000, "random": 160.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.616890748499998, 47.095200003599999 ], [ -122.596393383099993, 47.1027062195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000, "random": 105.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109931729799996, 48.0262394664 ], [ -122.110236543900001, 48.0279042262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000, "random": 127.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352326864700004, 47.896195442500002 ], [ -117.3511036365, 47.903873351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100, "random": 196.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405380887899994, 48.685132053300002 ], [ -117.410433622300005, 48.690488770499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000, "random": 117.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705914185200001, 48.212264044199998 ], [ -122.725461141899999, 48.211111053899998 ], [ -122.739906625399996, 48.229200774500001 ], [ -122.714806118200002, 48.240309297800003 ], [ -122.709870923099999, 48.252375046899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000, "random": 59.772 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579412024899995, 45.667671509400002 ], [ -122.587012075, 45.679331785400002 ], [ -122.600874425699999, 45.687439573699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000, "random": 135.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.478825466300002 ], [ -122.219472077800006, 47.479506736399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000, "random": 103.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671804578500002, 45.623437204 ], [ -122.665487439100005, 45.620068800200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000, "random": 39.318 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.906697669099998 ], [ -122.485438928199997, 48.935124034799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200, "random": 41.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044727134499993, 46.308126455599997 ], [ -124.0447225968, 46.308871953599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000, "random": 13.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.549966554799994, 45.596930635500001 ], [ -122.550990690500001, 45.6012653728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000, "random": 83.898 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093941382599994, 46.249878458300003 ], [ -119.091746744800005, 46.250303521799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000, "random": 58.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.522068819599994, 45.853246725600002 ], [ -122.521907403699998, 45.856848830799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000, "random": 79.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350203448900004, 47.913704343699997 ], [ -117.350617898799996, 47.943270476800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000, "random": 78.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.005064919500001, 47.419436488800002 ], [ -121.983976336599994, 47.432043093399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100, "random": 144.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.807249664599993, 45.812378431500001 ], [ -120.803937911800006, 45.826466493799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000, "random": 103.644 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293173814799999, 47.922087901099999 ], [ -122.291437428099997, 47.922028754499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700, "random": 143.87 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.946056784200003 ], [ -122.485215379099998, 48.964238869100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000, "random": 136.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564729693399997, 47.498854207599997 ], [ -117.564705970600002, 47.501189749200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900, "random": 38.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.047629963199995, 46.628574325099997 ], [ -123.0183397646, 46.6437586626 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240, "random": 98.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.722593508499997, 47.770852469499999 ], [ -118.72180243, 47.830754206500004 ], [ -118.715817163300002, 47.841824483499998 ], [ -118.717799358099995, 47.855788432600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100, "random": 156.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.422067295399998, 48.442737456499998 ], [ -122.390445812, 48.442298905900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000, "random": 184.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.981876614400001 ], [ -122.204347122200005, 47.9819297636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000, "random": 118.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407456154499997, 47.7875219182 ], [ -117.405978251099995, 47.8001660961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800, "random": 95.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.866032850700002 ], [ -119.7003175758, 45.890464521299997 ], [ -119.663181917399996, 45.913184000299999 ], [ -119.624893170799993, 45.928329865400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800, "random": 102.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.056135401899994, 46.290258796700002 ], [ -124.048097541100006, 46.302051926899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000, "random": 144.142 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.223328891899996, 47.909586154800003 ], [ -122.216714377599999, 47.911343964899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700, "random": 147.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.469176691500003 ], [ -123.929173544700006, 47.476353555300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000, "random": 130.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.698740873399998, 47.5866961105 ], [ -122.698640741899993, 47.596019008900001 ], [ -122.7047490044, 47.600798524600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300, "random": 153.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.881992736800001, 48.547212818699997 ], [ -117.880045880699996, 48.547326521099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300, "random": 176.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223631723799997, 47.6278867921 ], [ -117.239846835099996, 47.644532783199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000, "random": 108.207 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699315561399999, 48.259360944199997 ], [ -122.673042558899994, 48.267163379099998 ], [ -122.669463427099998, 48.280628991100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000, "random": 41.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.422341719499997, 47.428268878300003 ], [ -121.411041178199994, 47.424357692199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": null, "random": 136.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.037484430200003 ], [ -120.609221849299999, 47.048058592099999 ], [ -120.629428280400006, 47.074477523200002 ], [ -120.655282075800002, 47.092161682099999 ], [ -120.6686598398, 47.12002506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000, "random": 121.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271022847200001, 47.4819453096 ], [ -122.274414357200001, 47.485065206599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000, "random": 90.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274216435499994, 47.847995263800001 ], [ -122.276814935700003, 47.872663023800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400, "random": 42.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407269104899996, 47.239352940499998 ], [ -122.401936063400001, 47.239469308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000, "random": 130.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.148572778100004, 47.167724522500002 ], [ -122.144185524799994, 47.167459107200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900, "random": 67.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.569178883700005, 47.594619977500003 ], [ -117.567913207199993, 47.593745037799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000, "random": 49.613 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328864462499993, 47.741140359 ], [ -122.329772653299997, 47.743695937799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000, "random": 190.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607582212500006, 46.941363190200001 ], [ -122.606541076799999, 46.941941313299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000, "random": 135.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.772874057500005, 48.109600754 ], [ -122.770687135100005, 48.109957957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000, "random": 35.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.326852616599993, 46.297790684 ], [ -119.320499343899996, 46.2934725609 ], [ -119.308518342300005, 46.2931233698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700, "random": 20.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.602426876400003, 48.353805119 ], [ -119.595048768599995, 48.355996996800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000, "random": 88.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312755550399999, 47.470155670899999 ], [ -122.300968213600001, 47.465753183499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000, "random": 50.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169841807500006, 47.580124984199998 ], [ -122.138075286900005, 47.578657203900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": null, "random": 70.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.014828527199995, 47.839831442300003 ], [ -120.012783225299998, 47.839805990800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000, "random": 51.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.889896867600001 ], [ -122.716366211899995, 47.8813080117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000, "random": 100.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249771308899994, 47.758393083800001 ], [ -122.243678337199995, 47.757435704 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000, "random": 178.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293918658300001, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100, "random": 55.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741382096899997, 48.056948228099998 ], [ -117.756234783300002, 48.059508372099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000, "random": 17.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.383307260599999 ], [ -122.22977526, 47.383322670299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000, "random": 168.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247376556299997, 47.381354441399999 ], [ -122.247422590499994, 47.385264943800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000, "random": 191.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.247837466199996 ], [ -123.035016130299994, 47.253938049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000, "random": 165.22 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.504790449200001 ], [ -122.594712953699997, 47.504905792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500, "random": 138.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521179451400002, 48.403968476899998 ], [ -119.508228369299999, 48.417115248400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400, "random": 31.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.434163266900001, 48.932386835899997 ], [ -119.435115977699994, 48.9331846153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": null, "random": 74.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483207461299997, 47.3815237106 ], [ -119.483208834400003, 47.383543517500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800, "random": 81.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.885083233899998 ], [ -124.1116144402, 46.886809233699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000, "random": 153.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.097722760300002, 47.498851086400002 ], [ -122.087032509400004, 47.5100083536 ], [ -122.069854013799997, 47.518141062799998 ], [ -122.061944812299998, 47.5311845564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000, "random": 141.694 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.248590292599999, 46.260915772899999 ], [ -119.227936412099993, 46.272792226200004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000, "random": 160.904 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.179892135299994, 48.039576142599998 ], [ -122.179090836499995, 48.040414721600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600, "random": 162.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.042270083600002, 48.247273043100002 ], [ -122.026469474, 48.256522769299998 ], [ -122.022907918599998, 48.2627125108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800, "random": 95.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528498714799994, 48.409540793 ], [ -119.528486519099999, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000, "random": 137.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.804648479700006, 46.958726717300003 ], [ -123.802570051499998, 46.962027894499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220, "random": 165.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.998448902900002 ], [ -117.276758911599998, 46.004401290799997 ], [ -117.280941070099999, 45.998989409300002 ], [ -117.279817264100004, 46.005447460799999 ], [ -117.257661345599999, 46.027222317300001 ], [ -117.251726872399999, 46.041729002700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": null, "random": 39.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.810762466100002, 47.234104028899999 ], [ -119.768146463600004, 47.234302020599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700, "random": 111.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002713399300006, 46.212166620799998 ], [ -119.998439324, 46.211121560300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200, "random": 109.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.991998143499998, 46.566813438799997 ], [ -118.994354542899998, 46.567494215899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420, "random": 14.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398139108899997, 47.395175907 ], [ -121.389878388499994, 47.392771093100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000, "random": 29.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.329526933799997, 46.375119312 ], [ -120.333169631900006, 46.376967707399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000, "random": 99.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764763806900007, 47.0392228487 ], [ -122.738644335800004, 47.034927617599998 ], [ -122.7287961018, 47.025054085699999 ], [ -122.727145829899996, 47.017871292099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000, "random": 74.259 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.286526806300003, 47.390672964899998 ], [ -122.279313519599995, 47.389970334 ], [ -122.271494257699999, 47.377466250099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000, "random": 84.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.422649327499997, 46.383209281 ], [ -119.398917675099995, 46.370274191599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900, "random": 146.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903302717100004, 47.183036081799997 ], [ -120.900869444700007, 47.186221290299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400, "random": 88.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815351378800003, 46.670740711699999 ], [ -123.812298900499997, 46.666584194499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400, "random": 151.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.139092994400002 ], [ -122.068412443200003, 47.143839552499998 ], [ -122.059029398, 47.142195626800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900, "random": 176.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.907596618699998, 46.056201396299997 ], [ -118.891347990400007, 46.054345918499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000, "random": 185.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550960549699994, 47.690504212 ], [ -122.561537528599999, 47.710001753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000, "random": 100.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215924349100007, 47.895325602900002 ], [ -122.210202773399999, 47.909684149199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300, "random": 89.945 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.576764640199997, 47.486222185700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800, "random": 103.144 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.533609333300006, 48.575604223399999 ], [ -119.524710521700001, 48.585216161399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000, "random": 58.275 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337027626799994, 46.296916328499996 ], [ -119.326852616599993, 46.297790684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000, "random": 67.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.471659728500001, 46.9377123473 ], [ -122.442382649699994, 46.937291079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400, "random": 65.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.673063449899999, 47.463794937599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000, "random": 175.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315658494299996, 47.594845418600002 ], [ -122.308759580599997, 47.590099480699998 ], [ -122.294028606099999, 47.590082601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000, "random": 40.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.983354596599995, 46.155547457499999 ], [ -122.981141874800002, 46.154457643900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000, "random": 190.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436381713900005, 47.23258819 ], [ -122.430465540499995, 47.233370266100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000, "random": 58.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200615099800004, 47.372272058599997 ], [ -122.193531274199998, 47.369374337399996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760, "random": 111.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.693039969400004, 48.519622803499999 ], [ -117.687454235700002, 48.519733623500002 ], [ -117.669804598, 48.503722179 ], [ -117.636421909199996, 48.527874183500003 ], [ -117.593606156, 48.539764033200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000, "random": 138.13 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239794730599996, 47.658376090600001 ], [ -117.239711879500007, 47.670702168399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300, "random": 103.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990053825299995, 48.083409856199999 ], [ -121.990426831600004, 48.086663289400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800, "random": 28.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.145887174500004, 45.620746481799998 ], [ -121.149338525600001, 45.627246477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500, "random": 33.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.376254892799999 ], [ -120.319926556499993, 46.3750583048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300, "random": 62.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314185593399998, 46.416664953 ], [ -120.314218402500003, 46.414630410199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900, "random": 9.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.002965502600006, 47.266040634699998 ], [ -122.970993700799994, 47.278675160600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000, "random": 22.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531041412600004, 47.809513658299998 ], [ -122.517886741599995, 47.808439866900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000, "random": 194.636 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.490590750600006, 47.396883244900003 ], [ -121.474633272700004, 47.393916472299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000, "random": 180.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.577836386199998 ], [ -122.179508185499998, 47.587907527399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400, "random": 85.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.003615758899997, 46.14714661 ], [ -122.994938289800004, 46.142280192699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700, "random": 177.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.659076343699994, 48.208690553399997 ], [ -122.667102884900004, 48.208880163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200, "random": 14.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.054039295600006, 46.628090926799999 ], [ -123.047629963199995, 46.628574325099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000, "random": 109.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.200943512800002 ], [ -122.245590463699997, 47.1960629254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": null, "random": 46.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.956933746399997, 46.9310727047 ], [ -119.896076097800005, 46.9263943244 ], [ -119.871633614299995, 46.903268617800002 ], [ -119.854307513099997, 46.898691382099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000, "random": 87.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082754858300007, 46.252250739 ], [ -119.084694014, 46.259515049400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000, "random": 164.502 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.155310860500002 ], [ -122.292993751799997, 47.156628841500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": null, "random": 68.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.020261139300004, 47.841391245200001 ], [ -120.019405647699998, 47.840956773099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000, "random": 72.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.405648486499999, 47.745687617500003 ], [ -117.402291177, 47.749169702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000, "random": 187.284 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073978514199993, 46.426337746 ], [ -117.060792853099997, 46.430979098800002 ], [ -117.039772546699993, 46.4312642493 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200, "random": 148.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.335165828900003, 46.942808011899999 ], [ -117.3342443282, 46.950269737399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000, "random": 66.05 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.880045880699996, 48.547326521099997 ], [ -117.874397081799998, 48.547393829800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000, "random": 118.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.900788784599996, 46.108478242700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000, "random": 130.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434416219900001, 47.147529408600001 ], [ -122.434380151200003, 47.148970958900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000, "random": 190.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.567523710399996, 45.607301340100001 ], [ -122.562413658599993, 45.606210172499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000, "random": 72.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.748839064899997, 47.867178683399999 ], [ -121.735085712200004, 47.8671728801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300, "random": 153.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056272845799995, 47.140579682099997 ], [ -122.052821815499996, 47.141055273299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400, "random": 171.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.000988019900007, 46.213675046399999 ], [ -119.999627863800001, 46.2207119718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700, "random": 101.43 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.263804262199997, 47.8258077379 ], [ -124.284970288699995, 47.848449747300002 ], [ -124.321749231200002, 47.854895498300003 ], [ -124.331318487299995, 47.860193407099999 ], [ -124.337820728500006, 47.871093506599998 ], [ -124.356402838199998, 47.8868367862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700, "random": 172.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.044601999400001 ], [ -124.165467930700004, 47.071513026700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400, "random": 5.191 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.727145829899996, 47.017871292099997 ], [ -122.724712097600005, 47.014546030200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": null, "random": 149.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.305523870299993, 47.415408638 ], [ -120.306221311900003, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400, "random": 23.603 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.596764177200001, 47.476342927099999 ], [ -117.589920216099998, 47.479158675500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900, "random": 194.825 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.131550921799999 ], [ -123.667125840599994, 48.119117447900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000, "random": 141.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.287813674800006, 46.259568700099997 ], [ -119.286003107499994, 46.258553541200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000, "random": 150.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.394791245799993, 46.231576610899999 ], [ -123.389461253299999, 46.211684178900001 ], [ -123.384092012699995, 46.206252844399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000, "random": 38.559 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192273680499994, 47.490126072800003 ], [ -122.192243083299999, 47.494131979700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000, "random": 168.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395343726899995, 47.050702173600001 ], [ -122.397788788400007, 47.053147781100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800, "random": 15.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.595048768599995, 48.355996996800002 ], [ -119.594541512800006, 48.355123430799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000, "random": 22.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514116367699998, 45.8882670084 ], [ -122.5115938422, 45.888912007400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100, "random": 65.609 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.754691057599999 ], [ -121.549283456500007, 46.762803223100001 ], [ -121.548311338199994, 46.770192139099997 ], [ -121.554831628, 46.787550731499998 ], [ -121.556314331600007, 46.813407365899998 ], [ -121.534523232699996, 46.8339911582 ], [ -121.518975271800002, 46.8309746734 ], [ -121.530643629300002, 46.8388115136 ], [ -121.530532102099997, 46.842213440499997 ], [ -121.514777234, 46.854388616500003 ], [ -121.528250949400004, 46.856193764099999 ], [ -121.530214892399997, 46.863507109799997 ], [ -121.539947008799999, 46.866897170599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": null, "random": 43.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.589636086599995, 47.005992688100001 ], [ -120.585973655499998, 47.006613832299998 ], [ -120.594317222200004, 47.014034000099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000, "random": 111.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.126619412400004, 46.246327603 ], [ -119.126488052300004, 46.2492677583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100, "random": 191.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515642471600003, 47.300595473599998 ], [ -122.515328583900001, 47.301975486400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400, "random": 165.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.101265123600001, 48.614546561300003 ], [ -118.113035482200004, 48.624541672200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000, "random": 84.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264316543600003, 47.883095025300001 ], [ -122.258312819500006, 47.889540971800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000, "random": 15.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192163134799998, 48.188250864499999 ], [ -122.143708184100007, 48.18863098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000, "random": 34.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.652429818900004, 47.757228435099996 ], [ -122.655187397899994, 47.757996620299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000, "random": 53.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.830325525099994, 45.986546639099998 ], [ -122.843998045199996, 46.003648610100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000, "random": 44.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324938986899994, 47.527130547399999 ], [ -122.326926969300004, 47.529118855599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000, "random": 134.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909597880600003, 46.328237141499997 ], [ -122.905808485600005, 46.354027410299999 ], [ -122.907833053399997, 46.367123983799999 ], [ -122.903136226599997, 46.385390741199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000, "random": 56.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.102498928399996, 47.974783777900001 ], [ -122.102748296599998, 47.978079114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000, "random": 69.937 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.348953841300002, 47.801871614299998 ], [ -117.347212270900002, 47.824463311700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000, "random": 150.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.256488287600007, 47.674437746800002 ], [ -117.233238630299994, 47.6740978586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000, "random": 154.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.331248711399994, 47.4630152497 ], [ -122.332281600300007, 47.467204479400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000, "random": 83.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.135298152199994, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500, "random": 199.146 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.892643017300003, 47.185219467700001 ], [ -120.854497924100002, 47.174925353799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000, "random": 100.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815854623199996, 46.974060636499999 ], [ -123.814496006799999, 46.9745245963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300, "random": 170.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.608683861800003, 47.839539399300001 ], [ -117.624899490399997, 47.844751263399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000, "random": 96.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705075456700001, 45.857927414499997 ], [ -122.708600869500003, 45.870002268199997 ], [ -122.730447400399996, 45.885969214900001 ], [ -122.740547181500006, 45.902501182500004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000, "random": 181.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232397920400004, 48.510494546399997 ], [ -122.228383378800004, 48.510483485499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650, "random": 52.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.553890672700007, 46.371903656599997 ], [ -122.534066687099994, 46.365076150500002 ], [ -122.522015790300003, 46.353105643699998 ], [ -122.520840599799996, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.460026123099993, 46.334198960499997 ], [ -122.443621199399999, 46.332719415100001 ], [ -122.423975580600001, 46.324379435899999 ], [ -122.411602687400006, 46.3288268712 ], [ -122.406588061700006, 46.3248804093 ], [ -122.410505858099995, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.374170816800003, 46.311320336199998 ], [ -122.351060563499999, 46.307101177200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": null, "random": 70.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.224545529500006, 47.663264841699998 ], [ -120.2234272269, 47.664815758099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000, "random": 52.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347162814399994, 48.4689593505 ], [ -122.344353330900006, 48.469916134100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400, "random": 173.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.465118033899998, 46.282211226100003 ], [ -123.457284327500005, 46.270600365299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000, "random": 183.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111443955599995, 47.463154478500002 ], [ -122.125523976699995, 47.463515808799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": null, "random": 192.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.790196608299993, 48.100144655100003 ], [ -119.786847801899995, 48.101573517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400, "random": 114.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073978514199993, 46.426337746 ], [ -117.100394632900006, 46.424564911 ], [ -117.125371263800005, 46.430966392899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000, "random": 81.215 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.464420831200002, 46.253760514900002 ], [ -119.397000433700001, 46.261485678600003 ], [ -119.367954599100003, 46.249044282600003 ], [ -119.360045066400005, 46.239658493599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000, "random": 103.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.617236635699996, 48.329849408500003 ], [ -119.612560325800004, 48.333892043299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000, "random": 137.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510861239099995, 48.786701213800001 ], [ -122.525993174800007, 48.794574176700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000, "random": 124.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.828370843499997, 46.857484681099997 ], [ -122.781279970100002, 46.860815077399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000, "random": 151.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239869003899997, 47.648870384699997 ], [ -117.239836574400002, 47.653445707300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860, "random": 43.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361719793199995, 48.8661339983 ], [ -117.362424148499997, 48.868840071800001 ], [ -117.357230480799998, 48.866178092299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000, "random": 110.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.276408048500002, 47.7535766576 ], [ -122.263852823700006, 47.758298512899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000, "random": 114.471 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.797381755900005, 47.865036690099998 ], [ -121.777466965299993, 47.867838558300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000, "random": 92.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.780353631500006, 48.0276618969 ], [ -122.780998914600005, 48.0297888001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000, "random": 62.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.532417350599999, 47.395800791500001 ], [ -121.516019994299995, 47.395384207500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": null, "random": 83.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.103212133200003 ], [ -119.322729826, 47.1025870681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000, "random": 24.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.590546161600003, 47.642919808899997 ], [ -117.582610488200004, 47.642912863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000, "random": 163.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643780328399998, 47.565060084300001 ], [ -122.635694855799997, 47.565040098799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": null, "random": 136.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.299594983399999, 47.467860027599997 ], [ -120.297504746300007, 47.4351022237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200, "random": 128.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.936574460800003, 47.687389638399999 ], [ -121.971630424300002, 47.694471996799997 ], [ -121.981015434499994, 47.701289548600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000, "random": 106.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186934388599994, 47.298301147 ], [ -122.177499564100003, 47.302421793299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510, "random": 19.531 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.210305096300004, 47.492304965199999 ], [ -123.223149286699993, 47.496208975899997 ], [ -123.241884607499998, 47.495334530400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600, "random": 72.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.835107025100001, 46.292878933499999 ], [ -122.811246994599998, 46.296957639399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100, "random": 5.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.039757417399997, 46.474224958 ], [ -117.042241304699999, 46.474230977700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200, "random": 25.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.564575694300004, 48.367474039699999 ], [ -119.532459189700006, 48.386062696099998 ], [ -119.521179451400002, 48.403968476899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000, "random": 5.341 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322342181699995, 47.656009406199999 ], [ -122.321753728, 47.666099862199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000, "random": 130.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462212289700005, 48.753686761700003 ], [ -122.461613891900001, 48.760763625700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000, "random": 166.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.253811390799996, 47.4617511143 ], [ -122.249888866199996, 47.4623828171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800, "random": 82.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.410713062599996, 46.255407269700001 ], [ -120.398281170600001, 46.275315587900003 ], [ -120.369368935400004, 46.278623167399999 ], [ -120.358067647699997, 46.296773851700003 ], [ -120.333010153700002, 46.3081349737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000, "random": 147.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.251354512900001 ], [ -119.082754858300007, 46.252250739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000, "random": 183.281 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427658785600002, 47.228320779900002 ], [ -122.428034605899995, 47.2286568082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700, "random": 194.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719415844599993, 46.5756303426 ], [ -122.717335933699999, 46.575631057599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200, "random": 145.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045192163600007, 46.416527455 ], [ -117.044267114199997, 46.4171675734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000, "random": 176.103 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.516977211599993, 46.626072081799997 ], [ -120.511485307300006, 46.626062679199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300, "random": 154.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.829286058400001, 45.694065406599996 ], [ -120.824585887400005, 45.698633973100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000, "random": 91.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.415699133900006, 48.794193523300002 ], [ -122.395950267, 48.804100865599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": null, "random": 49.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.396171573499998, 47.919272726 ], [ -119.435392769299995, 47.921655645100003 ], [ -119.513500012199998, 47.950443261 ], [ -119.532978846199995, 47.951055420700001 ], [ -119.542299767399996, 47.944370181399997 ], [ -119.564793237, 47.942888834100003 ], [ -119.637172496199994, 47.952075620700001 ], [ -119.647925282900005, 47.960306243700003 ], [ -119.653408476300001, 47.972149719100003 ], [ -119.648516800500005, 47.984891512600001 ], [ -119.650674805500003, 47.991201863400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": null, "random": 108.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.405551403199993, 47.6207224415 ], [ -119.380593231700004, 47.623579840200001 ], [ -119.364767205800007, 47.619390169399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200, "random": 30.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.812298900499997, 46.666584194499997 ], [ -123.809145399, 46.664934623699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000, "random": 94.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.206095185800002 ], [ -119.107113214899996, 46.2075458387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": null, "random": 41.416 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.336241185299997, 47.455026644500002 ], [ -120.336009498500005, 47.460814383200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400, "random": 42.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073011345599994, 47.225680904699999 ], [ -117.073018590499998, 47.2267941681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000, "random": 42.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328924299099995, 47.734101792600001 ], [ -122.323606871600006, 47.7340600888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600, "random": 178.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.094127007599994, 47.7457487872 ], [ -121.089394242300003, 47.7454347093 ], [ -121.076475200100006, 47.755168167299999 ], [ -121.077587389599998, 47.768615076899998 ], [ -121.072908743799999, 47.773323135 ], [ -121.060451893, 47.780380106899997 ], [ -121.035389348199999, 47.784305637499997 ], [ -121.014991914700005, 47.7731379178 ], [ -120.989064927800001, 47.7669597776 ], [ -120.940314911200005, 47.781799178299998 ], [ -120.926773205, 47.783582643199999 ], [ -120.911885984, 47.779719270800001 ], [ -120.873618181599994, 47.791271958599999 ], [ -120.826087037199997, 47.777964567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780, "random": 104.509 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.855326948499993, 47.8483119805 ], [ -117.848318289700003, 47.8533575039 ], [ -117.838164281, 47.874034997400003 ], [ -117.838518667499997, 47.8839866036 ], [ -117.816077455699997, 47.904185807 ], [ -117.772937646800003, 47.9319295106 ], [ -117.760164329299997, 47.951480255299998 ], [ -117.730670601499995, 47.977879762199997 ], [ -117.730227038, 47.990898945399998 ], [ -117.726070176700006, 47.994823643300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": null, "random": 135.873 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.623508512300006, 47.043255125400002 ], [ -120.610829685599995, 47.034561590700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": null, "random": 161.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.336009498500005, 47.460814383200002 ], [ -120.337091754499994, 47.465744417400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000, "random": 74.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.935715474899993, 46.952758994100002 ], [ -122.938006402699997, 46.952749092600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000, "random": 163.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328646019499999, 47.6218398679 ], [ -122.325588856799996, 47.630978120899996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100, "random": 137.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.400146886499996, 46.2808655483 ], [ -119.388823944899997, 46.286635138800001 ], [ -119.385055086400001, 46.296956751300002 ], [ -119.379846899300006, 46.300134073300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300, "random": 72.814 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.114708009799998, 48.222520715199998 ], [ -117.071831916899995, 48.214604191900001 ], [ -117.049170610700003, 48.187568367899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100, "random": 6.413 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.664034573199999, 48.679033690799997 ], [ -118.659283546300003, 48.69353696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600, "random": 58.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234367686100001, 48.315786019199997 ], [ -122.234636542900006, 48.316921300700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500, "random": 163.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.201053661299994, 46.733760269299999 ], [ -117.193721204799999, 46.733421816300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000, "random": 78.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411284607599995, 47.686239548300001 ], [ -117.411212053400007, 47.684340672200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700, "random": 157.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.833986735799996, 48.353122342900001 ], [ -117.854425242, 48.423985311199999 ], [ -117.900843413800004, 48.4812158123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000, "random": 124.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.054732335300002, 46.173406560300002 ], [ -119.060939272699997, 46.176246614599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760, "random": 193.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.829999029100001 ], [ -117.190686371200002, 47.838280048599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000, "random": 16.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.883914385099999, 46.977057906600002 ], [ -123.882465413199995, 46.976299685699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000, "random": 70.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336346718100003, 47.591654033399998 ], [ -122.336639681099996, 47.603665978099997 ], [ -122.344887317399994, 47.6170758429 ], [ -122.343595607400005, 47.624654211600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900, "random": 24.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.010267715400005, 48.2683045733 ], [ -121.996997621899993, 48.274448992099998 ], [ -121.988260855299998, 48.273541100099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000, "random": 66.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.101805642100004, 47.183774694500002 ], [ -123.096605849699998, 47.174752381099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200, "random": 66.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.260169830899997, 48.250693192599996 ], [ -124.259541705700002, 48.249031188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700, "random": 139.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.425905332500001 ], [ -117.264041694300005, 46.408347277799997 ], [ -117.247172635400005, 46.403561831499999 ], [ -117.226361452600003, 46.405697020600002 ], [ -117.214302369600006, 46.411735887200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000, "random": 39.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.215305276899997, 48.151827843900001 ], [ -122.193737871799996, 48.152206488799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600, "random": 181.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379692780100001, 45.927861829500003 ], [ -122.379639449899997, 45.940375024200002 ], [ -122.370412417500006, 45.9461267079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000, "random": 62.14 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227138639200007, 48.152008653599999 ], [ -122.215305276899997, 48.151827843900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000, "random": 183.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237932510500002, 48.399327514900001 ], [ -122.240646758099999, 48.402724443700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500, "random": 54.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387443636200004, 47.004675303699997 ], [ -123.383147769299995, 46.998968611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000, "random": 136.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313307756100002, 47.315182427400003 ], [ -122.313301401100006, 47.316652422799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400, "random": 149.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.022907918599998, 48.2627125108 ], [ -122.014914702799999, 48.26670449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000, "random": 134.523 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339379851700002, 47.562061614199997 ], [ -122.339393127, 47.566849212699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": null, "random": 162.912 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.202803984400006, 47.8632306636 ], [ -120.192406912199999, 47.866359942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000, "random": 117.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615444107900004, 47.504820946599999 ], [ -122.6100956059, 47.504790449200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000, "random": 192.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.803073749299998, 46.977342476899999 ], [ -123.774590595299998, 46.981635785199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100, "random": 32.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.802266037800003 ], [ -122.927885323400005, 47.783870469299998 ], [ -122.918575283600006, 47.773557936400003 ], [ -122.899541536900003, 47.769144235500001 ], [ -122.892787170600002, 47.753863997700002 ], [ -122.877788674599998, 47.743200821 ], [ -122.896416472599995, 47.698580768500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100, "random": 90.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.498903427100004, 47.800573328399999 ], [ -122.498405559600002, 47.799630733699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000, "random": 155.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876494769900006, 46.555080308400001 ], [ -122.876970128099998, 46.5656688487 ], [ -122.886654867, 46.581896048499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000, "random": 173.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.071848028399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100, "random": 188.996 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.042645019299997, 47.2398211593 ], [ -117.040065100500001, 47.240331654800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000, "random": 194.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.569219939200003 ], [ -122.319274617600001, 47.577721374600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": null, "random": 26.481 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.725560926300005, 47.169794972399998 ], [ -119.694359620499995, 47.189224623400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000, "random": 62.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.666920309700004, 45.663291930500002 ], [ -122.664597099299996, 45.671567055700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100, "random": 5.23 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.646878596799993, 48.773768593699998 ], [ -118.616494335699997, 48.788441017300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000, "random": 176.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133293255400005, 47.7045387135 ], [ -117.098636280500003, 47.712113508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000, "random": 105.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280194517799998, 48.492612765399997 ], [ -122.274507670399998, 48.4947462696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000, "random": 113.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900722461699999, 46.143634459700003 ], [ -122.899190315699997, 46.144094870899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700, "random": 183.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.943771749199996, 47.196532896500003 ], [ -120.946239913599996, 47.196853032699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800, "random": 198.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440663445400006, 48.388454813599999 ], [ -119.475197836600003, 48.3959072026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100, "random": 131.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.907287510100005, 48.548539055799999 ], [ -117.9122497826, 48.5496184382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": null, "random": 13.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.233116836500002 ], [ -119.864013776799993, 47.233227695899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100, "random": 112.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.601830692299998, 46.102565853100003 ], [ -119.601019963499994, 46.184141123099998 ], [ -119.632513277399994, 46.186802706800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000, "random": 152.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.215236535800003, 46.232174863799997 ], [ -119.197881418400002, 46.229694839700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300, "random": 41.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.706502771900006, 48.268688746099997 ], [ -121.681604375399999, 48.269260962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400, "random": 88.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.331286685500004, 46.333369696699997 ], [ -119.316818358500001, 46.325761236300004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500, "random": 197.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.404073277199998 ], [ -117.045511900500003, 46.405807141300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400, "random": 186.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073002491599993, 47.224069194400002 ], [ -117.073011345599994, 47.225680904699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000, "random": 177.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.590030423900004, 46.933191201900001 ], [ -122.563890205, 46.932042617500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": null, "random": 194.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.560510624499997, 47.308418187 ], [ -119.550955143799996, 47.3216616972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880, "random": 139.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.891660015599996, 46.418162911099998 ], [ -122.889569424300007, 46.439612233699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": null, "random": 77.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.140301766600004, 47.371384494399997 ], [ -120.114579346799999, 47.362005859699998 ], [ -120.091885291, 47.346745424799998 ], [ -120.075915479299994, 47.328340233299997 ], [ -120.0718463794, 47.315076503100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600, "random": 150.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000, "random": 41.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626686593800002, 48.190429204799997 ], [ -122.626854860799995, 48.196363055399999 ], [ -122.634093994799997, 48.199324225700003 ], [ -122.634532628, 48.205514688400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000, "random": 72.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.717006410400003 ], [ -117.411341617700003, 47.7366272099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000, "random": 33.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387305272299997, 46.000728261399999 ], [ -118.387305963599999, 46.0008733795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000, "random": 19.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202143817800007, 46.1517167071 ], [ -119.202193656700004, 46.147961704799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000, "random": 118.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356148350200002, 45.5765439754 ], [ -122.337119991799995, 45.5743187936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000, "random": 116.424 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.131894078499997, 46.233167577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800, "random": 177.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.790469895500003 ], [ -117.117146970899995, 46.81324534 ], [ -117.114738057799997, 46.828756093899997 ], [ -117.125073024800002, 46.842087681499997 ], [ -117.125431145700006, 46.8526895018 ], [ -117.131172054299995, 46.860007814100001 ], [ -117.125766231499995, 46.8805636369 ], [ -117.1162608729, 46.891596946900002 ], [ -117.076818303500005, 46.908707466800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700, "random": 129.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.738038295099997, 48.647705843399997 ], [ -118.734073830100002, 48.640476501099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000, "random": 179.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.337119991799995, 45.5743187936 ], [ -122.336830963899999, 45.574285426199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000, "random": 72.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462228315900006, 48.768161057299999 ], [ -122.468301725, 48.776074627900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100, "random": 172.467 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264357131599994, 48.430063418 ], [ -122.263353143700002, 48.438694333100003 ], [ -122.256353227899993, 48.445051718199998 ], [ -122.243784615899997, 48.445532820099999 ], [ -122.237675901599999, 48.451805089200001 ], [ -122.234037299799994, 48.459902027 ], [ -122.236469985499994, 48.467881476899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400, "random": 61.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.360091659199995, 46.897778200200001 ], [ -117.348076300599999, 46.903921453199999 ], [ -117.351204804600002, 46.911617455 ], [ -117.348839072100006, 46.920878082 ], [ -117.333488752700006, 46.937467422799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": null, "random": 132.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.194813099699999, 47.703980669800004 ], [ -120.202296207499998, 47.715799214 ], [ -120.201670504199996, 47.721495814900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200, "random": 160.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.979144045400005, 46.317064306299997 ], [ -119.979002671100005, 46.331672597400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000, "random": 142.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981395463599995, 47.1994152348 ], [ -121.979117066100002, 47.199396871700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": null, "random": 192.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297733659499997, 47.424238153899999 ], [ -120.296981004599999, 47.420685698699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000, "random": 13.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.233238630299994, 47.6740978586 ], [ -117.219653668600003, 47.673730154700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": null, "random": 13.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.019405647699998, 47.840956773099997 ], [ -120.014828527199995, 47.839831442300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000, "random": 149.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188620638700002, 47.478462399 ], [ -122.196553840199996, 47.484010758099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000, "random": 137.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.280565297099997 ], [ -122.257900493099996, 47.291814197699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000, "random": 154.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.594258495099993, 45.612560721500003 ], [ -122.5755446732, 45.609005895700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970, "random": 67.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.159772116600003 ], [ -122.637763506900001, 48.165050337099999 ], [ -122.637216878100006, 48.170651624900003 ], [ -122.6311760448, 48.1709418294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900, "random": 21.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.392350543099994, 47.989246294799997 ], [ -124.390330186, 48.023498306299999 ], [ -124.386135645099998, 48.034372402199999 ], [ -124.3771964333, 48.0428294994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000, "random": 121.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.941476871299997, 46.633570246 ], [ -122.955074431599996, 46.644085364200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000, "random": 153.123 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226281250599996, 47.477733349499999 ], [ -122.224368274400007, 47.477801894899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000, "random": 80.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239836574400002, 47.653445707300001 ], [ -117.239811284300004, 47.657120099700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": null, "random": 79.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.861271357500001, 47.0847839089 ], [ -119.862512719, 47.086191127799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000, "random": 195.731 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.967236218599993, 47.436449093100002 ], [ -121.946308529099994, 47.461068424300002 ], [ -121.892547873599995, 47.477118088700003 ], [ -121.884585692, 47.504313222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700, "random": 135.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989930148799999, 48.083179436199998 ], [ -121.9880421437, 48.083743317600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": null, "random": 100.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.962360795400002, 46.955497291 ], [ -119.973932701199999, 47.000551023200003 ], [ -119.955503780399994, 47.008358663700001 ], [ -119.948540106799996, 47.015559494599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000, "random": 90.095 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324930132099993, 47.494050853399997 ], [ -122.325629622, 47.509100327799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400, "random": 57.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.601735842799997, 48.255269148799997 ], [ -121.602040066900003, 48.259580257300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000, "random": 152.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300174272299998, 47.921996202499997 ], [ -122.300279957, 47.925646077099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100, "random": 99.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.211121560300001 ], [ -119.939310191399997, 46.196885705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600, "random": 129.301 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.466470167099999, 45.714803707500003 ], [ -121.467239711399998, 45.719390102 ], [ -121.486682184, 45.727758078299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500, "random": 181.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999627863800001, 46.2207119718 ], [ -119.999527805300005, 46.240131802800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000, "random": 7.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564681711199995, 47.503963135 ], [ -117.564647296199993, 47.507958508500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": null, "random": 24.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.270112652500003, 47.141966536399998 ], [ -119.285225107, 47.146079747199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000, "random": 27.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.066163770700001, 47.914320767100001 ], [ -122.043624208300002, 47.905663460600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000, "random": 109.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505656007200002, 48.785005835600003 ], [ -122.510861239099995, 48.786701213800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000, "random": 144.659 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.636545418399997 ], [ -120.530420705599994, 46.643087440400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000, "random": 170.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181406580699999, 48.04479845 ], [ -122.183991175800003, 48.049409982599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300, "random": 138.966 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.221472718599998 ], [ -123.959008749, 47.232263906199996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900, "random": 53.129 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.605679964900006, 46.474828890700003 ], [ -117.604193276399997, 46.474899599300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500, "random": 19.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.693857063799996, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000, "random": 56.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.481945285799995, 46.252083253199999 ], [ -119.464420831200002, 46.253760514900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000, "random": 136.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231700448599995, 47.881947714100001 ], [ -122.2196680439, 47.8802932531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": null, "random": 153.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.037299586499998, 47.9328968903 ], [ -119.0177040011, 47.936793106099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": null, "random": 53.941 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.768146463600004, 47.234302020599998 ], [ -119.746889316500003, 47.2346362782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500, "random": 125.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.981859587400002 ], [ -122.247115922099994, 48.985535873800004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000, "random": 108.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.141795278499998, 48.074895211 ], [ -123.123153926599997, 48.073268084699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500, "random": 137.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225554844100003, 48.514186971299999 ], [ -122.226140987199997, 48.528254450399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000, "random": 28.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344498386400005, 47.694213665299998 ], [ -122.344589742099998, 47.702170326100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400, "random": 98.228 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.820843535500003, 46.734021038900003 ], [ -118.755786355400005, 46.7871441721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000, "random": 38.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.098612585699996, 47.664587444399999 ], [ -122.0911114715, 47.658210758599999 ], [ -122.078551081, 47.655737714700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000, "random": 124.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907479926299999, 46.144285354499999 ], [ -122.900722461699999, 46.143634459700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000, "random": 123.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325588856799996, 47.630978120899996 ], [ -122.322472589399993, 47.655393277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540, "random": 163.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.549509477200004, 46.645356033399999 ], [ -118.499925167499995, 46.651618769800002 ], [ -118.4903184729, 46.661104496199997 ], [ -118.422710867399999, 46.696905779399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": null, "random": 27.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.010650954699997, 47.939312536800003 ], [ -118.956054795900002, 47.924618672900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700, "random": 64.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.827797273100003, 47.386578722800003 ], [ -122.828844436300002, 47.396432791 ], [ -122.837562270099994, 47.402573245 ], [ -122.841560284099998, 47.410924864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000, "random": 51.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682357182700002, 47.708675146300003 ], [ -122.669058799699997, 47.749633705599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000, "random": 22.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.890377804099998, 46.415684535 ], [ -122.891017634700006, 46.421545267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000, "random": 135.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266313958500007, 47.834250899200001 ], [ -122.272434016700004, 47.839550714399998 ], [ -122.274216435499994, 47.847995263800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700, "random": 109.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905530764600002, 48.536362987700002 ], [ -117.905823096600002, 48.545437755899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000, "random": 47.891 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.686912074800006, 47.693288397400003 ], [ -122.682357182700002, 47.708675146300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200, "random": 17.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140658202300003, 47.4063958443 ], [ -123.163633337899995, 47.400670797399997 ], [ -123.178948864399999, 47.404167540899998 ], [ -123.192594841100004, 47.413683046800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120, "random": 48.375 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.352188943599998, 48.873500374199999 ], [ -117.328671577700007, 48.892802401 ], [ -117.323863822899995, 48.917414421399997 ], [ -117.313312870700003, 48.924551532199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000, "random": 162.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.411186267399998 ], [ -122.623334611, 47.428490086700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000, "random": 197.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.695753648699998 ], [ -122.329520216600002, 47.704326296600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800, "random": 141.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.917262878299994, 46.191692043800003 ], [ -119.876496051199993, 46.187636732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": null, "random": 139.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.610829685599995, 47.034561590700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000, "random": 133.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314680302499994, 46.389563781200003 ], [ -120.314996101099993, 46.382480047800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000, "random": 27.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.792203240600003, 47.476414011 ], [ -122.766324464899995, 47.494235084899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410, "random": 60.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.734745553699995, 48.299072435200003 ], [ -118.749316236200002, 48.337391075 ], [ -118.740822615200003, 48.360696116699998 ], [ -118.749928096800005, 48.3721707244 ], [ -118.746782561800003, 48.391658652399997 ], [ -118.732095543200003, 48.399702401 ], [ -118.737561094, 48.413972939300002 ], [ -118.7275775146, 48.426510824899999 ], [ -118.740327682699998, 48.440180960500001 ], [ -118.753665736299993, 48.465738197599997 ], [ -118.746982322600005, 48.472528777599997 ], [ -118.735895575699999, 48.473485250400003 ], [ -118.728005195500003, 48.479780616900001 ], [ -118.736595278799996, 48.481778244200001 ], [ -118.741212636399993, 48.4967914056 ], [ -118.734063119200002, 48.5303352221 ], [ -118.749655491699997, 48.547726507199997 ], [ -118.7437512212, 48.554224740899997 ], [ -118.7430996768, 48.561204275400002 ], [ -118.748123516199996, 48.568683920700003 ], [ -118.743263617500006, 48.576670889500001 ], [ -118.739216443800004, 48.602950922200002 ], [ -118.730110936499997, 48.620922179899999 ], [ -118.730232978100005, 48.634915810899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000, "random": 196.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163884508099997, 47.758583553299999 ], [ -122.164627110400005, 47.757210535799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000, "random": 75.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.152629008199995, 47.274448600299998 ], [ -122.140760655799994, 47.263418390399998 ], [ -122.128270881899994, 47.2605031318 ], [ -122.118265929399996, 47.2502870454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900, "random": 55.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668745172900003, 47.579876434399999 ], [ -117.662921207300002, 47.5817195825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000, "random": 170.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.510509214400003 ], [ -122.235275246399993, 48.510504468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390, "random": 76.895 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.274276368499997, 46.855512758 ], [ -122.266699629399994, 46.862906199800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000, "random": 83.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.702206125399996, 47.857269046900001 ], [ -121.692446627600006, 47.852294339899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540, "random": 10.963 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.679949024300001, 48.862366554600001 ], [ -121.681376835899997, 48.853757585700002 ], [ -121.6884690105, 48.848900350699999 ], [ -121.687054447799994, 48.844639396600002 ], [ -121.692746180100002, 48.846878846899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": null, "random": 70.92 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.664815758099998 ], [ -120.208080886900007, 47.675976654 ], [ -120.207255602700002, 47.690389145 ], [ -120.216190432199994, 47.709176983399999 ], [ -120.227572237399997, 47.721805404599998 ], [ -120.226245647599995, 47.731950372900002 ], [ -120.213750323499994, 47.750966833699998 ], [ -120.198341733700005, 47.760267227900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000, "random": 39.722 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.141109524399994, 46.215426044399997 ], [ -119.137126389299993, 46.221619445499996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000, "random": 50.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.519827714200005, 47.644479769900002 ], [ -122.523271327399996, 47.653629992799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 167.713 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612773958299996, 48.500455119199998 ], [ -122.612637467, 48.510080076800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000, "random": 186.409 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434751610199996, 47.112394316900001 ], [ -122.434856954099999, 47.119480979099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800, "random": 120.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.758479940200004, 47.374409228799998 ], [ -122.747891127100004, 47.378056967299997 ], [ -122.716252286300005, 47.3743552356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000, "random": 174.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346482993500004, 47.216109298900001 ], [ -122.342045024100003, 47.213577697200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680, "random": 10.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.808522019199998, 47.315432174400001 ], [ -118.755651232399998, 47.3133928496 ], [ -118.699115260200003, 47.332546760500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900, "random": 46.469 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349664889600007, 48.017722257899997 ], [ -117.349794205400002, 48.032114906300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600, "random": 182.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.866511907399996, 46.303640157300002 ], [ -122.856270913499998, 46.293861375799999 ], [ -122.845082926399996, 46.293579813599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500, "random": 168.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.969987798800005, 46.711048393200002 ], [ -122.967530762799996, 46.710550664899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900, "random": 13.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.379846899300006, 46.300134073300001 ], [ -119.368059892399998, 46.302762493400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000, "random": 47.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630563411699995, 47.091197464099999 ], [ -122.616890748499998, 47.095200003599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100, "random": 105.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.105071092299994, 46.558843211300001 ], [ -117.1186833573, 46.567252646500002 ], [ -117.133768563, 46.568132031799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500, "random": 57.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.099771153899994, 46.223724902 ], [ -119.083607430399994, 46.219435461700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": null, "random": 140.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.711531943099999, 47.778904274799999 ], [ -120.714915032600004, 47.809342382399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000, "random": 87.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036750891599993, 47.900683868199998 ], [ -122.016682762399995, 47.876868300399998 ], [ -122.007865329200001, 47.872487544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": null, "random": 128.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.812067633799998 ], [ -119.628741595899996, 47.815448603699998 ], [ -119.384124385099994, 47.815340295200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000, "random": 22.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061944812299998, 47.5311845564 ], [ -122.063206050100007, 47.541252563500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900, "random": 188.043 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.716252286300005, 47.3743552356 ], [ -122.711427765899998, 47.374522075599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500, "random": 56.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953113903100004, 46.7191026108 ], [ -122.952739627200003, 46.720041065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100, "random": 65.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275474118700004, 46.799962383299999 ], [ -122.2907543651, 46.8008242314 ], [ -122.299983892900002, 46.812840824 ], [ -122.301013682299995, 46.829940275299997 ], [ -122.317915837200005, 46.830976994799997 ], [ -122.319811388600002, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900, "random": 101.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.389529876300003, 47.9579786515 ], [ -124.4034665195, 47.967463185100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000, "random": 160.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322041165900004, 47.665261286499998 ], [ -122.320662024800001, 47.676906509799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500, "random": 128.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.682656430799994, 47.567672217800002 ], [ -117.682677724300007, 47.572143868700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000, "random": 186.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.879906306800002 ], [ -117.363705522499998, 46.879882787699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000, "random": 40.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291617161399998, 47.4596862569 ], [ -122.289639374299995, 47.463861837800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400, "random": 67.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.405540528800003, 45.591761287200001 ], [ -122.405550858400005, 45.590604158600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000, "random": 55.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344690913099996, 47.7817536234 ], [ -122.318197500500006, 47.817590762099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": null, "random": 149.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813078488499997, 47.809276636200003 ], [ -119.807194764200005, 47.81403994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": null, "random": 150.15 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256773541300007, 47.1311262985 ], [ -119.257655936099994, 47.13692103 ], [ -119.262669504300007, 47.139868927099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000, "random": 174.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335328359100004, 47.777775342299996 ], [ -122.324557230300002, 47.777643065600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200, "random": 155.268 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436951250299998, 48.9352749432 ], [ -119.435384177100005, 48.9477318207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300, "random": 103.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.140718703700003, 46.270164958499997 ], [ -118.137725332700001, 46.2707786892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400, "random": 54.249 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.482522184700002 ], [ -117.580789949, 47.4831439672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900, "random": 60.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.858695725399997, 46.8532935721 ], [ -122.858686049400006, 46.854842923500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000, "random": 56.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357062296400002, 47.2404187331 ], [ -122.356727114, 47.243057706499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000, "random": 100.579 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466503179200004, 47.176321938900003 ], [ -122.463059040700003, 47.187472294899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100, "random": 90.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.587677712100003, 48.121059934599998 ], [ -122.588157825, 48.123052548399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000, "random": 184.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628891718899993, 47.606866331900001 ], [ -122.628802942700005, 47.6101244229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400, "random": 129.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207953888600002, 46.733543559700003 ], [ -122.196139648499994, 46.748677111699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100, "random": 94.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328944853899998, 47.443369255100002 ], [ -122.323901086800007, 47.439792601699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300, "random": 66.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.341521748200002 ], [ -119.331286685500004, 46.333369696699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200, "random": 150.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238352000500001, 48.1519754742 ], [ -122.227138639200007, 48.152008653599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400, "random": 134.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.776669665699998, 48.013523673900004 ], [ -122.780353631500006, 48.0276618969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000, "random": 147.967 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.251864888499995, 47.758569785399999 ], [ -122.249771308899994, 47.758393083800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000, "random": 186.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.353119512299997, 46.244832268 ], [ -119.326344193899999, 46.247386953800003 ], [ -119.2942399537, 46.2575534355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000, "random": 37.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206509130100002, 47.372560948100002 ], [ -122.2022136155, 47.372559284399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000, "random": 160.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207656748700003, 47.809595844900002 ], [ -122.207468784100001, 47.820115982099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000, "random": 83.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.411041178199994, 47.424357692199997 ], [ -121.410533367900001, 47.412298435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": null, "random": 130.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853528771200004, 47.132225026500002 ], [ -119.853456536899998, 47.190478665500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100, "random": 33.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.601144086399998, 46.737913385100001 ], [ -119.245276133600001, 46.738246830500003 ], [ -119.217119996199997, 46.744384869299999 ], [ -119.197523307899999, 46.738419939400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720, "random": 194.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.588821056599997, 46.970155862799999 ], [ -118.642582851699999, 46.970873143399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000, "random": 83.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.614500727399999, 47.715477569100003 ], [ -122.615658233700003, 47.716138798099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400, "random": 122.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.653636113200001 ], [ -118.160167104799996, 47.653951884500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000, "random": 42.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318990083399996, 47.579369760500001 ], [ -122.320756053599993, 47.5899474422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500, "random": 14.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.359431970399996, 47.668611138199999 ], [ -117.357802083500005, 47.669377798500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100, "random": 78.269 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.822698338800002 ], [ -118.645078139800006, 46.842607114300002 ], [ -118.629114515799998, 46.872638199800001 ], [ -118.614234367700007, 46.889912435 ], [ -118.610684004, 46.906538107199999 ], [ -118.581993796500001, 46.941389633199996 ], [ -118.571639149, 46.962763316100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000, "random": 24.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195341635899993, 47.499456439200003 ], [ -122.197938621899993, 47.509415060800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000, "random": 43.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.489909530399999, 47.721909145 ], [ -117.495769602799996, 47.726124747199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000, "random": 14.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407087236199999, 47.744195225299997 ], [ -117.405648486499999, 47.745687617500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000, "random": 68.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.226778941800006, 46.018087104300001 ], [ -119.2574764079, 46.000240513599998 ], [ -119.332811429399996, 45.9767889078 ], [ -119.342571420799999, 45.964510513599997 ], [ -119.337551775799994, 45.9498941429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580, "random": 174.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.708209588200006, 46.429779552600003 ], [ -122.703586609, 46.427471247699998 ], [ -122.709740199500004, 46.421314208799998 ], [ -122.709493913599999, 46.405756735899999 ], [ -122.689147502, 46.388534752699996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000, "random": 24.575 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.570828087099997 ], [ -117.568738831800005, 47.5884737405 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": null, "random": 6.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.652569693499998, 48.004195568299998 ], [ -119.676555192, 48.0264537662 ], [ -119.660073465899998, 48.075083944100001 ], [ -119.660197139600001, 48.087172621800001 ], [ -119.667734408200005, 48.098021789800001 ], [ -119.67945547, 48.102554608299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000, "random": 188.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.673131294900003 ], [ -122.115130120299995, 47.672044652099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100, "random": 112.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.520988362899999, 45.728362545 ], [ -121.494952058799996, 45.724974359400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": null, "random": 96.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.961777098400006, 46.9451030468 ], [ -119.960076450800003, 46.940448732900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800, "random": 78.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978187844399997, 46.302344182100001 ], [ -119.978378541200001, 46.305298659400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000, "random": 189.131 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239540986700007, 47.675790767199999 ], [ -117.239688719100002, 47.686200289600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000, "random": 11.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.399809360899994, 47.247245078100001 ], [ -122.375970115900003, 47.246990619100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000, "random": 38.04 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.381252285399995, 47.653855957099999 ], [ -117.369699153200003, 47.653911932699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700, "random": 27.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.477020851500001, 46.690052266 ], [ -120.474208349899996, 46.700892472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000, "random": 154.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.581805244199998, 46.629370911 ], [ -120.572463558899997, 46.625166001700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000, "random": 67.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043550485099999, 47.357973821800002 ], [ -122.037604776699993, 47.3579773831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000, "random": 23.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.175415037899995, 47.811547043 ], [ -122.152647623600004, 47.804983049199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300, "random": 190.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.160385207600001, 46.827035102099998 ], [ -123.139226139, 46.825809829599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000, "random": 192.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.794753258599997, 47.489394127300002 ], [ -121.795776139500006, 47.488786529400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000, "random": 145.007 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.544684767600003, 48.8138630642 ], [ -122.553076278600003, 48.822516070900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": null, "random": 124.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.038000225900007, 47.932554457499997 ], [ -119.037299586499998, 47.9328968903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100, "random": 167.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.578434107199996, 46.6855847693 ], [ -121.580507756700001, 46.689020807600002 ], [ -121.577414489800006, 46.693108164199998 ], [ -121.582474136399995, 46.700438860799999 ], [ -121.575415380099997, 46.710651851199998 ], [ -121.577530478699998, 46.7192388112 ], [ -121.568712757200004, 46.732258391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000, "random": 174.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692306908800006, 47.663643126399997 ], [ -122.692635556699997, 47.663252331199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000, "random": 72.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413322953399998, 47.659074764899998 ], [ -117.413437023900002, 47.653519803800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": null, "random": 28.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.434715633099998 ], [ -120.324887521400001, 47.438245710899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000, "random": 38.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802397479299998, 46.9687249499 ], [ -123.802945078600004, 46.969721982800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720, "random": 78.878 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.210371058700005, 46.969113485599998 ], [ -121.167496769400003, 46.9781722496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000, "random": 190.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.341877601899995, 46.209562485799999 ], [ -119.322456991099997, 46.199550152299999 ], [ -119.276750017400005, 46.197014617299999 ], [ -119.256585895800001, 46.188298165799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": null, "random": 101.258 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.440990914899999 ], [ -120.336241185299997, 47.455026644500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600, "random": 12.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747707891900006, 46.898969608400002 ], [ -119.644604154800007, 46.89906961 ], [ -119.618472587699998, 46.893930868200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": null, "random": 105.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.976256149700006, 48.135096529 ], [ -118.9780832374, 48.162019726300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000, "random": 92.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.360196787500001, 48.109344406699996 ], [ -123.355714051, 48.103012937499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000, "random": 134.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345093507800001, 47.732289174899996 ], [ -122.345113336899999, 47.734153058499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300, "random": 167.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.563927364099996, 46.969397904799997 ], [ -118.571060807899997, 46.970023831600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000, "random": 196.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.048949727099995, 46.735058809100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000, "random": 97.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317848845699999, 47.289841138299998 ], [ -122.313425795499995, 47.297956594799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800, "random": 60.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.362563030900006, 47.666706290299999 ], [ -117.361293531, 47.667477375700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000, "random": 121.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764951061299996, 47.043090291699997 ], [ -122.764763806900007, 47.0392228487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000, "random": 19.155 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320029378900003, 46.416952264800003 ], [ -120.303873683800006, 46.414040556400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000, "random": 5.937 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311388725499995, 47.2800166221 ], [ -122.313512649399996, 47.284003214499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500, "random": 67.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.692908625800001, 47.012290862500002 ], [ -122.691647237, 47.011506857699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000, "random": 62.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475189450900004, 48.714396165799997 ], [ -122.474417510500004, 48.7139080205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": null, "random": 141.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.299797941199998, 47.468286093700002 ], [ -120.300591393800005, 47.476574434500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000, "random": 107.093 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237437233600005, 48.2352708759 ], [ -122.245689518600003, 48.2439992336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500, "random": 154.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.223122036800007, 46.277953835 ], [ -118.220231876100002, 46.267966630899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": null, "random": 110.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999184879200001, 47.231264707299999 ], [ -119.979024003099994, 47.243286215799998 ], [ -119.953679130500007, 47.233042477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200, "random": 43.094 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.605002059199997 ], [ -122.483849761900004, 46.602125338199997 ], [ -122.473279573699998, 46.606940884799997 ], [ -122.467370770599999, 46.603630116700003 ], [ -122.450062567700002, 46.604114027400001 ], [ -122.440916089599995, 46.600881776500003 ], [ -122.415195407300004, 46.578467194799998 ], [ -122.405942033900004, 46.576299297 ], [ -122.342465496599999, 46.585586274900002 ], [ -122.303344193200004, 46.5641172674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200, "random": 31.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.357802083500005, 47.669377798500001 ], [ -117.350062995499997, 47.670920962499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000, "random": 66.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.080053636599999, 46.233384559900003 ], [ -119.082482434599996, 46.2383223812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100, "random": 140.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137683173799999, 47.9777063656 ], [ -122.137692842600003, 47.978193927200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000, "random": 146.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.705059787699994, 47.643361435599999 ], [ -122.704569052599993, 47.657168150399997 ], [ -122.692795812699998, 47.661573015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600, "random": 65.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.716240117700004 ], [ -122.953113903100004, 46.7191026108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900, "random": 60.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497554247799997, 47.798831291100001 ], [ -122.498405559600002, 47.799630733699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": null, "random": 99.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.010505758400001, 47.939819788299999 ], [ -119.000531301600006, 47.942681546700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000, "random": 182.525 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.366468523400002, 47.653903994499998 ], [ -117.3473440936, 47.653823445500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000, "random": 173.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670747021099999, 47.549449447400001 ], [ -122.670987526399998, 47.554042039599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400, "random": 57.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.554051004900003, 46.938020830100001 ], [ -122.541748150399997, 46.93783701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": null, "random": 155.62 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.080174666800005, 47.641780437800001 ], [ -120.076774006700006, 47.6417886706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": null, "random": 147.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.193718794800006, 47.699853448500001 ], [ -120.194813099699999, 47.703980669800004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600, "random": 193.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.308445228899998, 46.758407436 ], [ -118.303895728499995, 46.757897512500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400, "random": 51.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.135489484700003, 48.710141451200002 ], [ -121.122077192500001, 48.710944112599996 ], [ -121.115029734399997, 48.707361821900001 ], [ -121.109336121300004, 48.695409804699999 ], [ -121.099843404300003, 48.689473943499998 ], [ -121.0945409463, 48.6918135397 ], [ -121.096277325700001, 48.709551898800001 ], [ -121.082852733699994, 48.709745874299998 ], [ -121.078062217199999, 48.716635953100003 ], [ -121.056208336699996, 48.7288096268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000, "random": 121.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.976119766400004, 46.717613398600001 ], [ -122.975211354699994, 46.7336230278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000, "random": 66.247 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363718605399995, 47.1582777108 ], [ -122.347888551400004, 47.157627397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000, "random": 41.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183991175800003, 48.049409982599997 ], [ -122.184467597799994, 48.058461578699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000, "random": 67.041 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.406639866399999, 47.763222621200001 ], [ -117.404484347199997, 47.769196807699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200, "random": 109.824 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061180415699994, 48.529185624199997 ], [ -121.995102127199999, 48.529884678499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000, "random": 51.894 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315126489700006, 47.685256401700002 ], [ -122.305920903699999, 47.692050453299998 ], [ -122.305500032200001, 47.697580308500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000, "random": 105.584 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.349209599600002 ], [ -120.169866038799995, 46.341031590900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400, "random": 150.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.177700826099993, 47.252309208900002 ], [ -123.159561450200002, 47.252225085900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500, "random": 45.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.624854864200003 ], [ -122.515544164900007, 47.635779378599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700, "random": 92.457 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161191571299995, 47.745209637099997 ], [ -122.152366198600006, 47.733080413899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200, "random": 161.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.787090855099997 ], [ -117.338430626600001, 47.787597206599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000, "random": 99.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.102748296599998, 47.978079114 ], [ -122.105537798300006, 47.997887191499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000, "random": 138.928 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.158042872499998 ], [ -122.034209998400001, 47.159549653900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900, "random": 174.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668092465499996, 48.323036739300001 ], [ -119.661528531399995, 48.319145752700003 ], [ -119.629552896, 48.320592771500003 ], [ -119.617236635699996, 48.329849408500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100, "random": 49.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.982514410199997 ], [ -123.950176130800003, 46.983300724099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710, "random": 191.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.462247583299998, 48.999873746399999 ], [ -119.463853232399998, 49.000086726200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000, "random": 188.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.024166969800007, 46.432556087099996 ], [ -119.017592158599996, 46.448268561600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": null, "random": 5.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.147986288799999, 47.650382479500003 ], [ -120.127173921299999, 47.663350395499997 ], [ -120.126555338100005, 47.657244559 ], [ -120.120461827499994, 47.653422160600002 ], [ -120.080174666800005, 47.641780437800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 120.782 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.510080076800001 ], [ -122.612617318700003, 48.511792983799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880, "random": 11.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.063199593500002, 46.2983588775 ], [ -124.056135401899994, 46.290258796700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000, "random": 116.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594346368399997, 46.638631750199998 ], [ -120.581805244199998, 46.629370911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000, "random": 20.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.380263885800005, 47.805983955499997 ], [ -122.380257938599996, 47.804112396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800, "random": 176.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156375670499997, 46.518996575700001 ], [ -122.114488660899994, 46.5370987947 ], [ -122.075361051200005, 46.547629864400001 ], [ -122.006641240899995, 46.535915039899997 ], [ -121.986591913699996, 46.538688354199998 ], [ -121.957297598699995, 46.535353420699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000, "random": 199.352 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626067163499997, 48.340201578799999 ], [ -122.6126424216, 48.347960920799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500, "random": 113.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.757118402499998 ], [ -121.517626724099998, 45.751039350900001 ], [ -121.523758137200005, 45.743828405199999 ], [ -121.520988362899999, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": null, "random": 168.586 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.044526764699995, 47.980223996 ], [ -119.012865283099998, 47.973416241300001 ], [ -119.0033625218, 47.963923508400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100, "random": 176.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188574241400005, 47.980730406600003 ], [ -122.188128621, 47.980798293100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000, "random": 133.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605712079300005, 46.941489775199997 ], [ -122.593279583, 46.934769492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000, "random": 82.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294028606099999, 47.590082601 ], [ -122.253913809599993, 47.589252353500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000, "random": 11.239 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.019444770600003, 47.354386546299999 ], [ -122.020276654100002, 47.358392289500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": null, "random": 177.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256713113299995, 47.116471302199997 ], [ -119.256773541300007, 47.1311262985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100, "random": 23.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054873250300005, 46.332317277199998 ], [ -124.054617725, 46.345364542299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800, "random": 196.892 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.847887418300004, 46.441879990399997 ], [ -122.840896095299996, 46.437830048400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000, "random": 182.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.360045066400005, 46.239658493599997 ], [ -119.350947556400001, 46.221897885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400, "random": 115.307 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.675429160199997, 47.8437264887 ], [ -121.654254000899996, 47.836387341299996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500, "random": 41.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.663662453900002, 48.160481324099997 ], [ -119.669600042300004, 48.1820762782 ], [ -119.713417765, 48.219644448499999 ], [ -119.724364535099994, 48.245841032800001 ], [ -119.721200055500006, 48.2626191576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000, "random": 150.577 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.029850228900003, 46.153645635499998 ], [ -119.034173789099995, 46.1565283618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000, "random": 87.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128107064100007, 47.358033512399999 ], [ -122.125415966899993, 47.358062176499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800, "random": 132.497 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.981015434499994, 47.701289548600002 ], [ -121.984212694099995, 47.709333908399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000, "random": 76.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463809638300006, 48.770903545199999 ], [ -122.4626339661, 48.771342824500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200, "random": 184.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.751644395400007, 48.9896016788 ], [ -122.752041545599994, 48.996105339800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600, "random": 19.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266731554800003, 47.464860049899997 ], [ -122.264304021200005, 47.455548918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000, "random": 6.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348707769499995, 47.781426295800003 ], [ -122.338699596, 47.777782415499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000, "random": 123.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.919949281900003, 46.138478727100001 ], [ -122.916597970300003, 46.144744943200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000, "random": 117.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.290066264700002, 47.2038050564 ], [ -122.2839041915, 47.203041813200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000, "random": 93.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.560438579899994, 47.285820962099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000, "random": 14.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.407463921200005, 47.812350919499998 ], [ -117.418963561400005, 47.831494809600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400, "random": 20.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.514740899800003 ], [ -117.730931075599997, 48.514076662800001 ], [ -117.712309982899995, 48.502534610300003 ], [ -117.693039969400004, 48.519622803499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550, "random": 152.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.136088338099995, 48.2791408008 ], [ -118.149275505800006, 48.303081924899999 ], [ -118.146875159499999, 48.306812825500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300, "random": 93.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.123423944700001 ], [ -122.922800699199996, 46.134795839399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500, "random": 93.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295473367200003, 48.336979776200003 ], [ -122.291789386399998, 48.335745977499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900, "random": 133.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350062995499997, 47.670920962499999 ], [ -117.346819229800005, 47.670965818100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000, "random": 71.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.930355641299997, 46.976133841500001 ], [ -122.920784729, 46.988044540099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000, "random": 50.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322472589399993, 47.655393277 ], [ -122.322041165900004, 47.665261286499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": null, "random": 65.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.641980364899993, 47.815343803 ], [ -119.639930354499995, 47.813732472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": null, "random": 60.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.291111567900003, 47.124036589900001 ], [ -119.289772823, 47.125491757500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000, "random": 135.74 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709003421099993, 47.069723781599997 ], [ -122.675738111399994, 47.081330050200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": null, "random": 14.935 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.520787201099999 ], [ -120.428276927300004, 47.5058028204 ], [ -120.419383384599996, 47.491891901499997 ], [ -120.409870612600002, 47.4855387729 ], [ -120.369219394400005, 47.475868365899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700, "random": 151.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.402641327300003, 45.585686270099998 ], [ -122.399757851100006, 45.5841944043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600, "random": 112.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.086822704300005, 46.7395693677 ], [ -119.128396550100007, 46.754754981200001 ], [ -119.133957063300002, 46.7636604311 ], [ -119.134307384099998, 46.782398865099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000, "random": 80.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.020926540700003, 47.361394117099998 ], [ -122.023756906900005, 47.373336764299999 ], [ -122.033489674500004, 47.383822299599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000, "random": 188.602 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.215888421800003, 47.844398369499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900, "random": 48.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.231444571599994, 47.718151091199999 ], [ -121.153541424099998, 47.711786608099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000, "random": 115.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244685812399993, 47.329721985799999 ], [ -122.244613142399999, 47.3498974886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600, "random": 21.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.874397081799998, 48.547393829800001 ], [ -117.857271574199999, 48.547321301799997 ], [ -117.846071542399997, 48.541501869100003 ], [ -117.826594003, 48.539435667 ], [ -117.822585393400004, 48.534895129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000, "random": 185.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602514984699994, 48.892054163399997 ], [ -122.604052753100007, 48.8920780487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740, "random": 39.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.543440782799998 ], [ -122.547609945700003, 46.5481464139 ], [ -122.533595399700005, 46.557360412199998 ], [ -122.522613037300005, 46.552822087400003 ], [ -122.497669879300005, 46.558356832400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200, "random": 63.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.077185899500002 ], [ -118.356975755899995, 46.085091073800001 ], [ -118.367201556599994, 46.0864838173 ], [ -118.371241075399993, 46.100085005300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300, "random": 166.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002713399300006, 46.212166620799998 ], [ -120.000988019900007, 46.213675046399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200, "random": 59.993 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.124733954200003 ], [ -117.242601926099994, 47.1282451493 ], [ -117.2426281993, 47.132279748499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000, "random": 108.075 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547613590099999, 45.751890626200002 ], [ -122.547259863500003, 45.758946281599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000, "random": 70.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143708184100007, 48.18863098 ], [ -122.137032019700001, 48.197182604699996 ], [ -122.1294755917, 48.198761111899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000, "random": 87.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.214537179800004, 47.794421606 ], [ -122.212059351299999, 47.798474756099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": null, "random": 89.418 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.035624221600003, 47.8496165293 ], [ -120.027710127399999, 47.847421361099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000, "random": 156.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.882465413199995, 46.976299685699999 ], [ -123.854222276399994, 46.975166309899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000, "random": 36.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.376126003699994, 47.240486919699997 ], [ -122.363209074799997, 47.2405896685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000, "random": 155.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.646951111700005, 48.391135786100001 ], [ -122.644629580599997, 48.407845547299999 ], [ -122.649107889500002, 48.412059429099997 ], [ -122.644296266200001, 48.416713377199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000, "random": 27.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.172942795699996, 48.079452223799997 ], [ -123.156678518500001, 48.076900807299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210, "random": 22.174 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547293361499996, 46.809731403400001 ], [ -118.546976293699998, 46.869643260899998 ], [ -118.569126928900005, 46.887579446700002 ], [ -118.567129985400001, 46.9387620133 ], [ -118.560421084, 46.967199453200003 ], [ -118.563927364099996, 46.969397904799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800, "random": 143.571 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.002991199700006, 47.22593134 ], [ -121.014215763699994, 47.227848639699999 ], [ -121.026637711800007, 47.238114649400003 ], [ -121.037645272700004, 47.241057134800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000, "random": 83.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.220909691099997 ], [ -122.434052037300006, 47.223093094200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500, "random": 43.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.739118173700007, 48.647625688799998 ], [ -118.738038295099997, 48.647705843399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000, "random": 114.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634247378599994, 47.504927174099997 ], [ -122.631489075399998, 47.504928710800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": null, "random": 37.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.895747200100004, 48.038517837 ], [ -119.901327047799995, 48.048282498799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000, "random": 169.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.054141350199998, 48.060912372700002 ], [ -123.031785024900003, 48.044469539700003 ], [ -123.030803482099998, 48.0385584263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560, "random": 95.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172200222699999, 47.181828016700003 ], [ -117.140332949200001, 47.196383458200003 ], [ -117.111567534800002, 47.193257371599998 ], [ -117.097512456, 47.196042980100003 ], [ -117.074089992300003, 47.221197500099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300, "random": 183.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.521733143099993, 48.4069900346 ], [ -119.5217501674, 48.405112934199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": null, "random": 157.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998120266399994, 47.839360396799997 ], [ -119.973536307900005, 47.845064539600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000, "random": 101.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.203041813200002 ], [ -122.267351222100004, 47.200733364100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000, "random": 150.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.898390582700003, 47.025431031899998 ], [ -122.888045170599995, 47.034962724700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000, "random": 81.548 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121370892300007, 48.200256519299998 ], [ -122.117020060499996, 48.208448951699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000, "random": 55.113 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324340674400005, 47.397956274 ], [ -122.324775391299994, 47.405730086699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": null, "random": 108.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.233113436300002 ], [ -119.869200631, 47.233116836500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000, "random": 143.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158824453600005, 46.202223090700002 ], [ -119.158800310700002, 46.207751197699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": null, "random": 116.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297504746300007, 47.4351022237 ], [ -120.297532598299995, 47.433356212900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000, "random": 191.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.101466101499994, 47.953296692599999 ], [ -122.102498928399996, 47.974783777900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900, "random": 52.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.876637564500001, 47.669509908499997 ], [ -117.863223933100002, 47.669020976200002 ], [ -117.820463209400003, 47.657724507200001 ], [ -117.789328067900001, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": null, "random": 60.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337599522800005, 47.1039064442 ], [ -119.325419947, 47.103212133200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000, "random": 42.954 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.932042617500002 ], [ -122.559255047500002, 46.933983955800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100, "random": 130.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575464457699994, 47.091801678300001 ], [ -117.585172443900007, 47.092882859500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900, "random": 67.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.914296787699996, 47.015110256299998 ], [ -123.922339548699995, 47.0316557254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000, "random": 88.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236469985499994, 48.467881476899997 ], [ -122.246574405199993, 48.491427682299999 ], [ -122.247022692499996, 48.503030819599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100, "random": 133.44 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.437398043100004, 48.707299203300003 ], [ -119.437155858500006, 48.707698988200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720, "random": 29.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.266699629399994, 46.862906199800001 ], [ -122.266703538399994, 46.863486567899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000, "random": 124.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373038808499999, 47.247348751 ], [ -122.359716934100007, 47.256945056299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000, "random": 161.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.461138151100002, 48.106935246699997 ], [ -123.443990572700002, 48.1073916924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000, "random": 171.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176118084400002, 47.363166787799997 ], [ -122.165440596500005, 47.358027944100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000, "random": 109.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.308871953599997 ], [ -124.0487521206, 46.310189760599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000, "random": 57.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311990139700001, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900, "random": 127.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.393359055199994, 47.322379808800001 ], [ -122.392436934100004, 47.321613730400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": null, "random": 49.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.320705919600002, 47.4808771816 ], [ -120.3133639391, 47.495252997199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": null, "random": 172.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.507057266100006, 46.9588101485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400, "random": 192.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385406426700001, 47.951680910299999 ], [ -124.385450857500004, 47.954115057599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000, "random": 80.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552640114300004, 45.707988681499998 ], [ -122.552276004, 45.729913109500004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400, "random": 51.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.734073830100002, 48.640476501099997 ], [ -118.730244100799993, 48.641839496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000, "random": 135.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.472210814600004, 47.235116731600002 ], [ -122.482796616, 47.234976754500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000, "random": 104.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.972693801600002, 46.703306275499997 ], [ -122.976119766400004, 46.717613398600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000, "random": 57.866 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626109567699999, 47.3846980617 ], [ -122.626092716800002, 47.389054986200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600, "random": 66.171 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632531038099998, 46.964619754799998 ], [ -122.626893820500001, 46.9614926076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": null, "random": 55.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.063467216700005, 47.649181278599997 ], [ -120.062181571899998, 47.649175315900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000, "random": 16.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.673893233500003 ], [ -122.118861794, 47.673131294900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000, "random": 181.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.274059505500006, 47.674765049900003 ], [ -117.256488287600007, 47.674437746800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000, "random": 29.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212059351299999, 47.798474756099999 ], [ -122.210869349700005, 47.8004619779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800, "random": 158.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076982486199995, 46.910862134799999 ], [ -117.079932052299995, 46.911435068899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000, "random": 26.209 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.699724232799994, 47.527355071599999 ], [ -122.697432892600006, 47.529005529700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": null, "random": 115.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.307552076599997 ], [ -119.560510624499997, 47.308418187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000, "random": 18.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697432892600006, 47.529005529700001 ], [ -122.675931461600001, 47.541411500599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": null, "random": 141.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668479131400005, 48.004624036199999 ], [ -119.676547299899994, 48.011006920299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000, "random": 144.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.361630322899998 ], [ -122.301269834600006, 47.373309348399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000, "random": 43.797 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.086780999300004, 47.0992170671 ], [ -123.082402119899996, 47.091821405300003 ], [ -123.071866758699997, 47.091058025300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000, "random": 164.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.675635892800003, 47.096990195 ], [ -118.656406237200002, 47.096673849200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000, "random": 152.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.305953399700002, 47.6666196591 ], [ -117.290526581899996, 47.672483866100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600, "random": 198.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.946239913599996, 47.196853032699998 ], [ -120.980925049600003, 47.207837572700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000, "random": 103.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.694314524200003 ], [ -122.329550276199996, 47.704780986599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900, "random": 20.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.812506490700002 ], [ -117.578335198800005, 47.815136782400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000, "random": 40.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.770687135100005, 48.109957957 ], [ -122.769308763400005, 48.110002460499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500, "random": 38.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.107346350699999 ], [ -121.585162399400005, 47.092333980500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000, "random": 65.596 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909487464199998, 47.021750611400002 ], [ -122.905644480899994, 47.0217112789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600, "random": 87.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.583575739099999, 48.361600175900001 ], [ -119.5813873763, 48.363341681900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700, "random": 16.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.140658202300003, 47.4063958443 ], [ -123.141300861900007, 47.405012501800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": null, "random": 192.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780884531500007, 48.089934490300003 ], [ -119.780943323499997, 48.1019970336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700, "random": 54.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275195431499995, 46.5570314235 ], [ -122.275243482700006, 46.558324606299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000, "random": 185.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.812351579500003, 46.975862692200003 ], [ -123.808962595200001, 46.976225300599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000, "random": 43.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662469567599999, 47.526988495399998 ], [ -122.682461222599997, 47.527847209699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": null, "random": 35.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.630695250499997, 47.511765176499999 ], [ -120.617984029799999, 47.542049652499998 ], [ -120.604080864699995, 47.553360155500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200, "random": 144.048 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.399757851100006, 45.5841944043 ], [ -122.398548074700003, 45.5841573262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600, "random": 86.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.858686049400006, 46.854842923500001 ], [ -122.848233224300003, 46.858616212599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": null, "random": 162.75 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.315076503100002 ], [ -120.067706026300002, 47.300839926899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000, "random": 19.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486012535699999, 48.800551579699999 ], [ -122.486049226399999, 48.804308499100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000, "random": 134.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649845078799999, 47.508163976699997 ], [ -122.662469567599999, 47.526988495399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000, "random": 144.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639978566899998, 47.756166092299999 ], [ -122.626154857900005, 47.7579682585 ], [ -122.612448723499995, 47.766183538299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000, "random": 168.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.430273952899995, 48.782618922300003 ], [ -122.425146652500004, 48.786557197400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000, "random": 124.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.978378541200001, 46.305298659400002 ], [ -119.978590577099993, 46.312565612199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": null, "random": 140.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.831858359400002 ], [ -119.982323996900007, 47.8274002482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000, "random": 72.918 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434522701299997, 47.243324141099997 ], [ -122.435249748800004, 47.247047007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000, "random": 94.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.085823104799999, 46.196615068200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000, "random": 141.689 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.227936412099993, 46.272792226200004 ], [ -119.209573680800005, 46.273875129300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000, "random": 27.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.317848845699999, 47.289841138299998 ], [ -122.313524644099999, 47.289689111500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900, "random": 46.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334982037399996, 48.341173762499999 ], [ -122.333581230199997, 48.341165856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000, "random": 149.92 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207231988299995, 47.8094477645 ], [ -122.201057805600001, 47.810066305900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900, "random": 162.449 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.404212287799993, 46.6342410524 ], [ -121.352607275099999, 46.656816854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250, "random": 31.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.952784719500002, 46.505659931700002 ], [ -121.953554316600005, 46.5073208118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500, "random": 50.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.616605860500002, 46.502381391299998 ], [ -119.496091153699993, 46.445493522699998 ], [ -119.450875451499996, 46.408809451 ], [ -119.436530491799999, 46.3912099912 ], [ -119.422649327499997, 46.383209281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000, "random": 83.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343802884200002, 47.624644189500003 ], [ -122.344927504300003, 47.617072186400001 ], [ -122.336412100700002, 47.602846105099999 ], [ -122.336656090600002, 47.591692172599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000, "random": 137.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.639182061300005, 47.7464774496 ], [ -122.645684510400002, 47.7518428642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000, "random": 5.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631158803199995, 47.583273830499998 ], [ -122.629830761500003, 47.587574997200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000, "random": 190.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.106375590599995, 48.003220730300001 ], [ -122.106928824700006, 48.0063280675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600, "random": 182.658 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.871481668100003, 46.6542060226 ], [ -118.861432180899996, 46.652330978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000, "random": 152.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.845944419399999 ], [ -120.371997110799995, 46.837063334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": null, "random": 101.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.439990119300006, 47.103981369899998 ], [ -119.355451271600003, 47.103965290799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000, "random": 74.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.239811284300004, 47.657120099700002 ], [ -117.239794730599996, 47.658376090600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600, "random": 140.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.922339548699995, 47.0316557254 ], [ -123.92729038, 47.057205959599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300, "random": 59.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.018413775799999, 47.563368342499999 ], [ -123.032639621399994, 47.552839043799999 ], [ -123.043476330499999, 47.5508843024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000, "random": 73.219 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677075241200001, 45.632772139099998 ], [ -122.683336977899998, 45.632826922100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200, "random": 36.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.212868834600002, 47.8047418564 ], [ -117.215157028700006, 47.816339138099998 ], [ -117.209306007699993, 47.8264252345 ], [ -117.202021796, 47.829999029100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500, "random": 187.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.882024161499999, 47.968795396 ], [ -122.882889924699995, 47.954483349299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600, "random": 5.765 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.717335933699999, 46.575631057599999 ], [ -122.704647052599995, 46.575601790199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200, "random": 125.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.314630901300006, 48.394450270599997 ], [ -117.304788643699993, 48.374284687900001 ], [ -117.304460834899999, 48.339463458300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000, "random": 140.027 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.128522187800002, 48.1877057823 ], [ -122.1294755917, 48.198761111899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000, "random": 119.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199245749599996, 47.961609169200003 ], [ -122.197636001199996, 47.9682783923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900, "random": 159.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.975013542900001, 45.6406654273 ], [ -121.942783099099998, 45.651906592300001 ], [ -121.929382045599993, 45.648165335599998 ], [ -121.9186778089, 45.653351083899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550, "random": 85.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692231093100006, 47.333315666600001 ], [ -118.688932753200007, 47.338112147799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900, "random": 100.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377449328699996, 46.187590274599998 ], [ -123.385745206600006, 46.192387792399998 ], [ -123.383026138199995, 46.204013241799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000, "random": 144.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.672173066399999 ], [ -122.501840835400003, 45.672127572199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000, "random": 13.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180095245900006, 46.728918094299999 ], [ -117.178138580500004, 46.728901855700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000, "random": 37.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.354854885099996, 47.323674358600002 ], [ -122.347324198099997, 47.330514827199998 ], [ -122.332027696, 47.331823643699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200, "random": 74.57 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.743899810299993, 45.669430911699997 ], [ -122.757700882, 45.666794190899999 ], [ -122.761332858700001, 45.681265217799996 ], [ -122.762062245600006, 45.693696678599999 ], [ -122.754285258699994, 45.723794704200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300, "random": 167.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979369534100002, 48.165617216699999 ], [ -118.985480828099995, 48.1713371337 ], [ -118.989236202399994, 48.191350379699998 ], [ -119.015462019500006, 48.2099485026 ], [ -119.034631474199998, 48.214355773599998 ], [ -119.041464078900006, 48.222582555300001 ], [ -119.082194230799999, 48.235761230900003 ], [ -119.125051920299995, 48.238780830700001 ], [ -119.136195757799996, 48.244515602100002 ], [ -119.1441751598, 48.272080556500001 ], [ -119.1341101995, 48.301291093400003 ], [ -119.152683295100005, 48.314616154699998 ], [ -119.152996717299999, 48.325473562500001 ], [ -119.158525312899997, 48.332544932200001 ], [ -119.1751984327, 48.339271577600002 ], [ -119.198188019, 48.355774322899997 ], [ -119.235022948, 48.3647323247 ], [ -119.395760849300004, 48.374796818199997 ], [ -119.440663445400006, 48.388454813599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000, "random": 78.97 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.192831503500003, 48.477935123899996 ], [ -120.190064272399994, 48.477574027099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000, "random": 150.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.347212270900002, 47.824463311700001 ], [ -117.353862608699998, 47.838149676500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000, "random": 89.753 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.117168574499999, 47.165835136200002 ], [ -122.114431986499994, 47.165563315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200, "random": 14.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.662921207300002, 47.5817195825 ], [ -117.611206928599998, 47.594612786900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000, "random": 125.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.530788449400006, 47.258858195899997 ], [ -122.542797158699997, 47.262309813900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400, "random": 186.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938487959100001, 47.641296821200001 ], [ -122.946166179399995, 47.630652062400003 ], [ -122.959420462500006, 47.6280408601 ], [ -122.957242236300004, 47.6249005791 ], [ -122.981051959799998, 47.616057893799997 ], [ -122.986200562099995, 47.609617512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000, "random": 181.827 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284961471499997, 47.889952125 ], [ -122.291357602399998, 47.899252708399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000, "random": 157.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194046084600004, 47.755353640700001 ], [ -122.191330456499998, 47.755720280799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000, "random": 13.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161550008099994, 47.357992697299998 ], [ -122.140709792699994, 47.358002554700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000, "random": 193.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984212694099995, 47.709333908399998 ], [ -121.986203267799993, 47.722900691500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840, "random": 136.052 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620045942199994, 46.371824077299998 ], [ -122.613519309500006, 46.373222121399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000, "random": 117.167 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.702661090500001, 45.815547701600003 ], [ -122.690480811800001, 45.815702704400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000, "random": 127.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.012427460200001, 47.056316642699997 ], [ -123.009562583700003, 47.0558186162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000, "random": 119.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.332466565399997, 45.9393404761 ], [ -119.328758051799994, 45.931618116599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000, "random": 87.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.573222517700003 ], [ -118.956697523299994, 46.592964228299998 ], [ -118.927445826300001, 46.601833494300003 ], [ -118.856430317, 46.646165675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700, "random": 133.831 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.546083814499994, 46.683030593200002 ], [ -121.515669882699996, 46.6719110445 ], [ -121.488359887300007, 46.669303348100001 ], [ -121.449676745100007, 46.636191558500002 ], [ -121.444363943499994, 46.624708263199999 ], [ -121.404212287799993, 46.6342410524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000, "random": 94.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.193814887200006, 47.253304627399999 ], [ -121.183208277800006, 47.244320631100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000, "random": 46.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.111280294599993, 47.032595602599997 ], [ -123.096767187400005, 47.034123827899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600, "random": 6.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.921877134200003, 46.276283257400003 ], [ -122.907305875800006, 46.275376903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400, "random": 172.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.999211918300006, 46.2864963221 ], [ -119.999084702600001, 46.301980308499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000, "random": 181.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.221480861800003, 47.403598799800001 ], [ -122.220202578699997, 47.407237497300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400, "random": 49.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.990426831600004, 48.086663289400001 ], [ -121.980184742099993, 48.091167015099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000, "random": 87.612 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.145765470900002, 47.252121037599998 ], [ -123.132021950199999, 47.236342335499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700, "random": 33.462 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.303895728499995, 46.757897512500001 ], [ -118.226642999, 46.741705580100003 ], [ -118.205403212500002, 46.744748685600001 ], [ -118.173260837300006, 46.756869523 ], [ -118.153201407500006, 46.769193063499998 ], [ -118.129621305300006, 46.768072341299998 ], [ -118.092781726200002, 46.780339700100001 ], [ -118.048258043600001, 46.775332670600001 ], [ -118.023973467100006, 46.764545732599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000, "random": 138.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.005882445099999 ], [ -117.361681404799995, 47.029055953899999 ], [ -117.380268960400002, 47.050856712200002 ], [ -117.383139624899997, 47.076413216699997 ], [ -117.378854292, 47.096423184099997 ], [ -117.380029153899997, 47.174195565799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": null, "random": 54.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.627788861799999 ], [ -120.222736942400005, 47.626980318400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150, "random": 95.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377712239800005, 46.153926303 ], [ -123.377077820300002, 46.155161435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900, "random": 159.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.885352651700003, 45.692845945499997 ], [ -121.8772638059, 45.6967885603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000, "random": 75.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045574354799996, 46.418180045 ], [ -117.045583721, 46.419935817599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000, "random": 187.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486096201899997, 48.783628412500001 ], [ -122.486078625499999, 48.784378007400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100, "random": 5.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.370271266899998 ], [ -120.3149587825, 46.367729826599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000, "random": 114.76 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.202193656700004, 46.147961704799997 ], [ -119.202351162699998, 46.134711391400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900, "random": 40.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289184802099996, 48.435552414900002 ], [ -122.267135357900003, 48.429927612199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000, "random": 74.693 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254672479700005, 47.242503585599998 ], [ -122.255900186800005, 47.246006102899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000, "random": 168.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.575965758600006, 47.486890338099997 ], [ -117.575401006199996, 47.487355220600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700, "random": 180.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.078669235899994, 46.627029767700002 ], [ -123.064449026800006, 46.626975794400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000, "random": 109.18 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.996112927300004, 46.161845104900003 ], [ -122.987609501799994, 46.157644308199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000, "random": 8.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.897727887100004, 47.180423953599998 ], [ -120.872614316899998, 47.163858439499997 ], [ -120.8239451755, 47.1552275616 ], [ -120.799000461199995, 47.117870625499997 ], [ -120.783017302900006, 47.112021711899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400, "random": 105.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.624742220200005, 48.581611522800003 ], [ -120.601208134800004, 48.596618759099997 ], [ -120.589545207499995, 48.598662590499998 ], [ -120.533159985099999, 48.599376551699997 ], [ -120.511770525, 48.5910610484 ], [ -120.484167310800004, 48.586844211500001 ], [ -120.455082172900006, 48.596210188100002 ], [ -120.436049630400007, 48.597849873 ], [ -120.392947623500007, 48.579805828799998 ], [ -120.366562825599999, 48.561277073600003 ], [ -120.338960773400004, 48.548602804200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100, "random": 150.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515740677500006, 47.290804219499996 ], [ -122.515673186100003, 47.298106525199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000, "random": 76.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.293808411900002, 46.314192016500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700, "random": 47.874 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284575433900002, 48.281276573600003 ], [ -117.283901925600006, 48.305182219599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000, "random": 173.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.067799451300004, 46.9127572907 ], [ -117.054738688200004, 46.925380803499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700, "random": 84.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.224677901699998 ], [ -122.158793713899996, 48.238953466799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200, "random": 61.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.604193276399997, 46.474899599300002 ], [ -117.591579081299997, 46.474002727600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000, "random": 111.862 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.180984819399995, 46.730694767199999 ], [ -117.179623886, 46.732395601100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500, "random": 164.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.218196494200001, 46.814163495099997 ], [ -119.207861427400005, 46.811573174300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000, "random": 108.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.391671100400004, 47.654295770099999 ], [ -117.394991893300002, 47.657584632800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200, "random": 93.631 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134312927699995, 46.818765882 ], [ -119.133344349400005, 46.826322014900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000, "random": 34.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.209573680800005, 46.273875129300002 ], [ -119.189505252100005, 46.267690257300004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000, "random": 60.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814395560500003, 46.976034897300003 ], [ -123.815518941400001, 46.975464231899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000, "random": 82.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.266329677599998, 47.4869149652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000, "random": 116.712 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802570051499998, 46.962027894499997 ], [ -123.802398376300005, 46.967887712299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800, "random": 40.988 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.534428898499996, 47.912791220199999 ], [ -124.538034814, 47.913818841199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000, "random": 24.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.562905111900001 ], [ -122.285789036099999, 46.5613718886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100, "random": 169.063 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.415532539899999, 47.426933366100002 ], [ -121.415857063199994, 47.425849765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000, "random": 162.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547904716900007, 47.123849887799999 ], [ -122.536283653500007, 47.130792169400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600, "random": 66.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.636770498199994, 48.062719337099999 ], [ -117.621722756699995, 48.059676954899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000, "random": 47.29 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200274287699997, 47.480323985299997 ], [ -122.192273680499994, 47.490126072800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000, "random": 162.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313709108699996, 47.777338075700001 ], [ -122.309143099099998, 47.774377396299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000, "random": 164.149 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335721940799999, 48.471719653599997 ], [ -122.335608842799999, 48.475571374099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800, "random": 84.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005822603200002, 46.322037676800001 ], [ -124.021535225899996, 46.317579506500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000, "random": 27.333 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.506325005899996, 45.684857825500004 ], [ -122.505963270500004, 45.681974861699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300, "random": 11.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.137725332700001, 46.2707786892 ], [ -118.123852411200005, 46.273750084299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000, "random": 50.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.505667950900005, 46.832959152800001 ], [ -117.490097050299994, 46.841035463099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000, "random": 187.37 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.155430989599999 ], [ -122.434200290299998, 47.159344943199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000, "random": 175.202 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950720210599997, 48.050275 ], [ -122.948992860800004, 48.050272209600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600, "random": 67.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.012650628499998, 46.208424581199999 ], [ -119.007894310200001, 46.211723726800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850, "random": 164.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672716964499998, 48.159354847700001 ], [ -122.672541743, 48.159772116600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000, "random": 45.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.602130269200003 ], [ -122.911197239800003, 46.610010098099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000, "random": 159.265 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.802694032399998 ], [ -123.006696476399995, 46.802802063599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600, "random": 150.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385422505199998, 47.9505814332 ], [ -124.385406426700001, 47.951680910299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": null, "random": 89.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.408900948099998 ], [ -120.294348910300002, 47.409876959899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": null, "random": 29.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.811607921399997 ], [ -119.63597552, 47.812067633799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000, "random": 143.092 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.316818358500001, 46.325761236300004 ], [ -119.302112785, 46.3183716498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000, "random": 158.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502199980499995, 48.71608606 ], [ -122.502234449, 48.717660434800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100, "random": 44.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.026166157099993, 46.162222024899997 ], [ -123.018241547299993, 46.155430162899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100, "random": 58.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352294519599994, 47.974775063099997 ], [ -122.355572140199996, 47.978279434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000, "random": 52.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.495769602799996, 47.726124747199997 ], [ -117.507545144299996, 47.7371619655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000, "random": 43.374 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282804357200007, 47.423422322500002 ], [ -122.274709422599997, 47.4287124851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000, "random": 80.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667261725700001, 45.779820175 ], [ -122.661701633600003, 45.779505486300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000, "random": 183.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.203586134700004, 47.475180577300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400, "random": 33.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.242096332900005, 46.1031326564 ], [ -118.204917645899997, 46.123542948 ], [ -118.157996431499996, 46.139111668399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000, "random": 192.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955074431599996, 46.644085364200002 ], [ -122.967097065800004, 46.649895724 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000, "random": 184.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.889523026299997, 46.980961881 ], [ -123.896051288500004, 46.980998530599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600, "random": 48.348 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.748308334100003 ], [ -120.771834294100003, 46.7474467101 ], [ -120.723988084599995, 46.734874448799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000, "random": 58.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243705511399995, 48.507550046 ], [ -122.241412149300004, 48.510407569900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000, "random": 175.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.245689518600003, 48.2439992336 ], [ -122.264917707699993, 48.264714313900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400, "random": 170.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.361024243299994, 47.711537211500001 ], [ -121.354234893899999, 47.711904269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200, "random": 9.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356457815400006, 46.074867789 ], [ -118.356448217199997, 46.075882035799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140, "random": 106.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.784263452900007, 47.6121559913 ], [ -118.763698451, 47.612498886499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000, "random": 27.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843998045199996, 46.003648610100001 ], [ -122.852240996, 46.023438807300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000, "random": 193.51 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.685128998600007, 47.527235927900001 ], [ -122.695218099499996, 47.5247783015 ], [ -122.699724232799994, 47.527355071599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000, "random": 126.161 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.314872538100005, 47.821191207799998 ], [ -122.3121013887, 47.821183169599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000, "random": 99.756 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.360231664899999, 47.1201988782 ], [ -118.303302551300007, 47.159893548299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800, "random": 92.299 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.971631410100002, 46.2117605619 ], [ -118.910028470699999, 46.215109501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700, "random": 128.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000, "random": 169.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.822188395799998, 47.046986950600001 ], [ -122.813332455299999, 47.0524920951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300, "random": 103.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.018241547299993, 46.155430162899997 ], [ -123.003615758899997, 46.14714661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": null, "random": 117.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.198341733700005, 47.760267227900002 ], [ -120.174837509100001, 47.767969201900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000, "random": 171.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.165346057799994, 47.754516793 ], [ -122.169983570699998, 47.753052414899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000, "random": 10.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.178672227500002, 48.051849715099998 ], [ -122.177025547499994, 48.051845694900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000, "random": 168.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.004795632699995, 46.1661237024 ], [ -123.000372751800001, 46.1639381329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000, "random": 135.389 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.717660434800003 ], [ -122.499917878399998, 48.717652925499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": null, "random": 26.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.507057266100006, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.495989393100004, 46.923752129199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000, "random": 61.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328890954499997, 47.590308791600002 ], [ -122.323204156299994, 47.592989716799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000, "random": 23.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.682431997400002 ], [ -122.315402910200007, 47.684710450399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000, "random": 134.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.187823246800001 ], [ -122.201484693699996, 48.1878947696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670, "random": 87.673 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.686186201400005, 47.890718012100002 ], [ -117.6975572419, 47.884403535300002 ], [ -117.702216121399999, 47.876802217200002 ], [ -117.706620235800003, 47.879310378 ], [ -117.706336095099999, 47.868864365699999 ], [ -117.711948378700001, 47.8632977854 ], [ -117.714582124299994, 47.852040546799998 ], [ -117.74506215, 47.840110603200003 ], [ -117.760735503, 47.8384094476 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": null, "random": 9.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.052354033300006, 47.8358056633 ], [ -120.027228826400005, 47.836194659500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000, "random": 124.752 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552569830099998, 45.682084899199999 ], [ -122.552572928100005, 45.685580574500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000, "random": 193.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.581896048499999 ], [ -122.893609498800004, 46.589134577700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000, "random": 8.117 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.020834266600005, 47.078057988899999 ], [ -123.012741509899996, 47.056407929099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000, "random": 182.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264959141099993, 49.000030960399997 ], [ -122.263463248, 49.000025473699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200, "random": 120.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.756234783300002, 48.059508372099998 ], [ -117.761994264799995, 48.063266369600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900, "random": 140.725 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.075403226600002, 48.606220092400001 ], [ -118.101265123600001, 48.614546561300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000, "random": 73.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.979770850500003, 46.660022128100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000, "random": 38.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207350378399994, 48.193054996800001 ], [ -122.214348263700003, 48.206328150499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700, "random": 53.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.441316758699998, 48.702892499100003 ], [ -119.440005912, 48.702379542300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000, "random": 56.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110236543900001, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830, "random": 43.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.000573970300003 ], [ -122.484170717, 49.002204739299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000, "random": 119.382 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.729913109500004 ], [ -122.547613590099999, 45.751890626200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000, "random": 53.562 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187813994500004, 47.631938593199997 ], [ -122.186387532799998, 47.640513346799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000, "random": 45.784 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.988044540099999 ], [ -122.909083344899997, 47.005153403 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000, "random": 80.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.581605412299993, 45.655987363 ], [ -122.564935972499995, 45.659147453300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300, "random": 112.316 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907920452900001, 46.932682540099997 ], [ -122.907890131200006, 46.941803024499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400, "random": 150.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.210345909599994, 48.1692167689 ], [ -124.214900463899994, 48.176768044100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000, "random": 121.715 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187210101600002, 47.561286902699997 ], [ -122.183918427600005, 47.5658400246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000, "random": 169.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.303613538299999, 47.651571254899999 ], [ -122.3008871177, 47.659302034500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": null, "random": 86.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.340586229600007, 47.468390233800001 ], [ -120.338522724699999, 47.4670473491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100, "random": 158.591 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704451580400004, 47.551027418 ], [ -117.704062271799998, 47.552004905099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000, "random": 176.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.770834163700002 ], [ -122.346227490700002, 47.777795554199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000, "random": 175.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.572847574400001, 47.301360429600003 ], [ -122.581342993899995, 47.310972648499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000, "random": 88.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.745690893700001, 46.215864676300001 ], [ -119.735001393600001, 46.2109623873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": null, "random": 107.867 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.901327047799995, 48.048282498799999 ], [ -119.912733243900007, 48.045239571 ], [ -119.933656759300007, 48.052435164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000, "random": 80.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.273758761400003, 47.465095805 ], [ -122.265129968300002, 47.4614024105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000, "random": 183.122 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.129688599199994, 48.200331111600001 ], [ -122.125181517800002, 48.200293378700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500, "random": 36.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.888743691900004, 48.271523789100002 ], [ -121.879409098099998, 48.269112916399997 ], [ -121.839341072600007, 48.277300650299999 ], [ -121.771208812400005, 48.278800167500002 ], [ -121.7475431859, 48.276570994099998 ], [ -121.725738871900006, 48.26881907 ], [ -121.706502771900006, 48.268688746099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700, "random": 26.035 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.506537166300006, 45.781926395200003 ], [ -121.485438046699997, 45.798617495400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000, "random": 79.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.821213939400003 ], [ -122.314872538100005, 47.821191207799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180, "random": 64.762 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.686887325499995, 47.152595293300003 ], [ -118.684853976300005, 47.167379317200002 ], [ -118.691529932099996, 47.1733521134 ], [ -118.6870124756, 47.185154631899998 ], [ -118.685918682099995, 47.2602317232 ], [ -118.691379497599996, 47.2616081181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600, "random": 190.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974382568400003, 46.706849165500003 ], [ -122.973281621500007, 46.70702645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000, "random": 102.535 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.477586451400001, 47.715503692399999 ], [ -117.482808032700007, 47.717963365300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300, "random": 149.564 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.726582953700003, 46.621161997599998 ], [ -119.727511011800004, 46.634082462099997 ], [ -119.736058461599995, 46.6468473933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000, "random": 133.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292384800099995, 47.661192848 ], [ -122.2869879295, 47.661463342399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600, "random": 115.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.239989388300003, 46.8414422249 ], [ -123.2289306877, 46.840788556200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000, "random": 121.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196962788500002, 47.441505653500002 ], [ -122.196925317099996, 47.445266757200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000, "random": 68.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.922800699199996, 46.134795839399999 ], [ -122.919949281900003, 46.138478727100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800, "random": 101.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.512970924499996, 47.623864315600002 ], [ -122.51414874, 47.624854864200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910, "random": 70.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.708193058399999 ], [ -117.253697876299995, 46.720834603900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500, "random": 120.534 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905841872400003, 48.5465546852 ], [ -117.904334281399997, 48.5465658408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900, "random": 125.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.503673288599998, 47.802746125200002 ], [ -122.498903427100004, 47.800573328399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700, "random": 132.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356476260799994, 46.068734943199999 ], [ -118.360611100200003, 46.0686802253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930, "random": 6.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.855326948499993, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000, "random": 154.212 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000, "random": 105.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.203649239900002, 47.8781466533 ], [ -122.169616112499995, 47.877828645699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700, "random": 105.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.161323536300003, 47.333867098 ], [ -123.172041843399995, 47.3177075499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000, "random": 127.839 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.105912285800002 ], [ -122.187296503900001, 48.144438471199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000, "random": 191.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.620832926800006, 47.372853172799999 ], [ -122.618821704499993, 47.371309362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": null, "random": 186.262 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.268238731400004, 47.136438738800003 ], [ -119.262380566, 47.139674647699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200, "random": 63.03 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.910399241899995, 46.147036878 ], [ -122.908506061500006, 46.146702232199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400, "random": 27.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.967463185100002 ], [ -124.425941613899994, 47.962641102399999 ], [ -124.440388540100003, 47.963740785200002 ], [ -124.450942961500004, 47.954877667700003 ], [ -124.460686978599995, 47.952414175199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": null, "random": 146.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292457478399996, 47.406215807400002 ], [ -120.288340059399999, 47.399384796299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000, "random": 111.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.443282949099995, 45.578531253800001 ], [ -122.435610210099995, 45.580163137200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000, "random": 28.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322628571500005, 47.6386200098 ], [ -122.322457988599993, 47.646211059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700, "random": 41.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.494241787899995, 46.279543472100002 ], [ -119.493588994299998, 46.301316915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": null, "random": 114.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.677492645900003, 48.010363151900002 ], [ -119.680267402200002, 48.008990227200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000, "random": 10.28 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.722898993100003, 47.467079809499999 ], [ -121.709670661800004, 47.463275161699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900, "random": 60.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.222631107599994, 46.725847558300003 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.741345992600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000, "random": 170.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.419935817599999 ], [ -117.0442946621, 46.419932827700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000, "random": 47.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201270292199993, 47.448793830500001 ], [ -122.207036498600004, 47.459407738700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000, "random": 85.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184688057800003, 48.081606951700003 ], [ -122.184727787599996, 48.095997776300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000, "random": 64.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.063206050100007, 47.541252563500002 ], [ -122.062748397700005, 47.545705776699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800, "random": 92.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.525680334100002, 48.410508638499998 ], [ -119.528486519099999, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500, "random": 75.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.889061920499998, 47.175619884299998 ], [ -123.918238997499998, 47.185584487900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600, "random": 134.331 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.417694339600004, 45.641107566099997 ], [ -122.398723856199993, 45.638331331899998 ], [ -122.398672794099994, 45.6242774567 ], [ -122.403423195, 45.623380243900002 ], [ -122.404321633099997, 45.615225457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460, "random": 9.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.100019608099998, 45.824926880500001 ], [ -121.097610307799997, 45.826067191100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600, "random": 145.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.106171724600003, 48.2554318205 ], [ -120.084256158399995, 48.270597111900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400, "random": 132.539 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515673186100003, 47.298106525199998 ], [ -122.515656255300001, 47.2992775357 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100, "random": 190.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.442107154799999, 48.701994917900002 ], [ -119.441091926599995, 48.703150918200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500, "random": 10.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.715450652900003, 48.269998491800003 ], [ -117.715519020900004, 48.276246085099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000, "random": 154.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.395949240899995, 46.416943327699997 ], [ -120.428797596899997, 46.4412917927 ], [ -120.431166201899998, 46.457537800200001 ], [ -120.469437454900003, 46.506554291800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000, "random": 21.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655187397899994, 47.757996620299998 ], [ -122.656604586900002, 47.758415467299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300, "random": 51.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.081386745100005, 46.6270365528 ], [ -123.078669235899994, 46.627029767700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000, "random": 47.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.830965119499993, 47.857991970500002 ], [ -121.816531071200004, 47.861761082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": null, "random": 111.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.084428763399998 ], [ -119.780884531500007, 48.089934490300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000, "random": 187.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.350200969100001, 48.553164776800003 ], [ -122.347632495900001, 48.563982262400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100, "random": 43.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.173659831099997, 47.788368584600001 ], [ -118.173984645700003, 47.8032868437 ], [ -118.183505781500003, 47.821951415800001 ], [ -118.201888360599995, 47.825049034700001 ], [ -118.211777280600003, 47.834107386500001 ], [ -118.215510755500006, 47.859732329800003 ], [ -118.26205996, 47.8659297604 ], [ -118.267057536099998, 47.876041956800002 ], [ -118.264417688500004, 47.886536003 ], [ -118.273512318499996, 47.895398528800001 ], [ -118.276445819200006, 47.9099818571 ], [ -118.302215694799997, 47.903241149700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": null, "random": 197.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970717980100005, 47.810311780500001 ], [ -119.974790843500003, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": null, "random": 76.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.305279921700006, 47.108785126400001 ], [ -119.303513312099994, 47.110007206900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200, "random": 160.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.578335198800005, 47.815136782400003 ], [ -117.597361691299994, 47.828865968800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000, "random": 113.164 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.881472127500004, 47.086916141899998 ], [ -118.863757516299998, 47.086768846799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000, "random": 143.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.606992276200003, 48.3197133157 ], [ -119.601718577900002, 48.340327786700001 ], [ -119.595381933100001, 48.34623453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000, "random": 167.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.107133159599996 ], [ -123.40157192, 48.106683647099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000, "random": 118.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.901700070499999, 46.285276014200001 ], [ -122.900982517, 46.285830725700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500, "random": 151.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.358463390799997, 47.214502144100003 ], [ -117.353382393299995, 47.223769246300002 ], [ -117.362624217600001, 47.2400995255 ], [ -117.361066420699999, 47.253456630599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900, "random": 119.015 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332743201499994, 47.408543256 ], [ -122.335262653900003, 47.416057096199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000, "random": 81.989 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229284166499994, 47.1772685985 ], [ -122.229542768200005, 47.157073806200003 ], [ -122.232988543600001, 47.151747261200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000, "random": 182.933 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": null, "random": 96.169 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297532598299995, 47.433356212900001 ], [ -120.297733659499997, 47.424238153899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300, "random": 167.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955524056300007, 46.716503990200003 ], [ -122.955941604200007, 46.715546307300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000, "random": 172.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.659296037600001, 47.442238591200002 ], [ -121.626086199200003, 47.428820891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000, "random": 43.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110236543900001, 48.0279042262 ], [ -122.07298877, 48.030444367199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900, "random": 80.38 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157684185799994, 47.646000131599997 ], [ -118.1576753991, 47.653194853800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000, "random": 142.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411313281899993, 47.715101221300003 ], [ -117.412724274599995, 47.715145703700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830, "random": 137.832 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.002206617100001 ], [ -122.48508877, 49.000573970300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880, "random": 153.599 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.302215694799997, 47.903241149700001 ], [ -118.309588441299994, 47.908349294399997 ], [ -118.331877313899994, 47.905910724800002 ], [ -118.336265769899995, 47.910054110700003 ], [ -118.3214853554, 47.929501375699999 ], [ -118.316162062700002, 47.946065235799999 ], [ -118.295303866, 47.981120140500003 ], [ -118.286330111699996, 47.992986808399998 ], [ -118.266897083299995, 48.006793175399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700, "random": 9.031 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.917598413199997 ], [ -122.726153012200001, 48.955162657199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000, "random": 152.09 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.268235143300004, 46.401178348800002 ], [ -120.2470329935, 46.394338942399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000, "random": 111.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.394338942399997 ], [ -120.234147864099995, 46.387454465300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700, "random": 62.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.289175401700007, 48.155283600700002 ], [ -122.289183953199995, 48.155717637899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300, "random": 61.17 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.501053194600004, 47.512147903299997 ], [ -122.497304913700006, 47.5119962431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200, "random": 76.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.709840051400001 ], [ -118.925005797, 47.710824323700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000, "random": 151.669 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.647181838500003, 47.642928796500001 ], [ -117.644148320200003, 47.642923887800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000, "random": 9.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282439766699994, 47.818971508799997 ], [ -122.262222131900003, 47.831227666700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000, "random": 46.353 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.473637693100002, 48.718321439699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400, "random": 22.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.976177337500005, 46.0002961924 ], [ -118.932685793700003, 46.0274987811 ], [ -118.940467505900003, 46.042184302099997 ], [ -118.936268210799994, 46.051675932 ], [ -118.928109122400002, 46.056746178899999 ], [ -118.912284865700002, 46.056970700299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000, "random": 150.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926622838300005, 46.123057845200002 ], [ -122.924700924500002, 46.1221385232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000, "random": 180.45 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182933121100007, 47.988551102700001 ], [ -122.1739059983, 47.999571344 ], [ -122.181406580699999, 48.04479845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000, "random": 111.849 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323901086800007, 47.439792601699999 ], [ -122.3228061274, 47.439196369400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000, "random": 123.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.262222131900003, 47.831227666700002 ], [ -122.259846258600007, 47.83972786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930, "random": 13.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.786436959200003, 48.651103998 ], [ -118.777027675900001, 48.649473503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560, "random": 81.739 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659778051700002, 47.332892974899998 ], [ -118.606439410099995, 47.343846301900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000, "random": 43.595 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.168007203900004, 47.757408442100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": null, "random": 18.065 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475337364799998, 46.862537997 ], [ -119.472151592800003, 46.948450380099999 ], [ -119.474905207800006, 46.952859182300003 ], [ -119.460712354199998, 46.956629708400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100, "random": 148.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343789167099999, 48.807321054799999 ], [ -122.332564168800005, 48.8145942815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000, "random": 93.001 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.397788788400007, 47.053147781100002 ], [ -122.400514288599993, 47.055858198499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300, "random": 76.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.730668280800003, 48.086136372799999 ], [ -123.709329636299998, 48.084667624300003 ], [ -123.700970304500004, 48.078593043799998 ], [ -123.678622098800005, 48.073901581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000, "random": 111.136 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324165458899998, 47.729615819499998 ], [ -122.328864462499993, 47.741140359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": null, "random": 68.172 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294127652200004, 47.413015349399998 ], [ -120.292956606700002, 47.408097835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200, "random": 121.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.354234893899999, 47.711904269 ], [ -121.335221147499993, 47.713217372499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800, "random": 46.246 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.589920216099998, 47.479158675500003 ], [ -117.583279323499994, 47.481886183299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000, "random": 140.147 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322055364899995, 48.313308008200003 ], [ -122.334493912699998, 48.337354783899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300, "random": 18.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730244100799993, 48.641839496 ], [ -118.730055253499998, 48.6419111855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000, "random": 135.185 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118393322900005, 47.358083689 ], [ -122.1091619452, 47.358098863599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000, "random": 76.544 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.176099475200004, 47.580180733 ], [ -122.169841807500006, 47.580124984199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000, "random": 198.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623732039299995, 47.533996747 ], [ -122.611566454499993, 47.534032947900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000, "random": 90.152 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.665699589200003 ], [ -122.098612585699996, 47.664587444399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": null, "random": 73.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.832023730100005, 47.2340352 ], [ -119.810762466100002, 47.234104028899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000, "random": 115.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.579321671499997, 47.107892831500003 ], [ -122.562387903599998, 47.115388587399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000, "random": 147.868 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218079123799996, 47.8520936404 ], [ -122.216376018299997, 47.872784710099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400, "random": 81.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.919501275299993, 46.6405634658 ], [ -123.921074264, 46.671480705500002 ], [ -123.917576436900006, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.884865680299995, 46.685492823899999 ], [ -123.875376226699998, 46.68435008 ], [ -123.857728382399998, 46.693948643900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770, "random": 171.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.050149800499995, 46.287366661699998 ], [ -117.039512786200007, 46.314980599800002 ], [ -117.0421390618, 46.326714515200003 ], [ -117.0484351291, 46.317446563099999 ], [ -117.056080360799996, 46.325030540900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": null, "random": 42.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.598927088500005, 47.555361186900001 ], [ -120.592701960499994, 47.558975723899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700, "random": 122.046 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.627051021900002, 46.735547573 ], [ -119.601144086399998, 46.737913385100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": null, "random": 32.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.251785278900002, 47.1061646856 ], [ -119.256687638100004, 47.112363657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200, "random": 18.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.076728009700005, 46.226590831800003 ], [ -119.079520179400006, 46.232297928400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000, "random": 96.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330190562400006, 47.612879725900001 ], [ -122.329134167, 47.615596198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": null, "random": 21.621 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.227703042800002, 47.624133213699999 ], [ -120.221912289100004, 47.6270557243 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000, "random": 54.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.776074627900002 ], [ -122.483284069700005, 48.782474480200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000, "random": 168.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914753907600002, 46.150245296500003 ], [ -122.915731495200006, 46.166789577800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000, "random": 173.532 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.051859428900002 ], [ -122.183614853199998, 48.051864397400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": null, "random": 13.25 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.311843170200007, 47.156724983700002 ], [ -119.323551961700005, 47.161804575200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810, "random": 98.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.420394895499996, 46.908116647100002 ], [ -121.407449924600002, 46.9139103029 ], [ -121.373876563799996, 46.917117209300002 ], [ -121.359094590200002, 46.932385889400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500, "random": 169.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.905265762400006, 45.663017263500002 ], [ -121.909674525599996, 45.674994064700002 ], [ -121.901532568700006, 45.682342419100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000, "random": 75.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.798359712500002 ], [ -123.002559608799999, 46.810008946899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000, "random": 170.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.622593568699997, 47.438378847099997 ], [ -122.623797006700002, 47.463593822599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000, "random": 59.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.108662332099996, 48.0731296075 ], [ -123.092913658699999, 48.0727563835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000, "random": 15.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.195658382399998, 47.535101455899998 ], [ -122.192662903699997, 47.553294547699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000, "random": 126.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335565019599997, 48.4778597679 ], [ -122.322498894, 48.477758466899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000, "random": 186.124 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300968213600001, 47.465753183499999 ], [ -122.281493610200002, 47.463910419100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000, "random": 125.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.668611477100001, 47.642951301700002 ], [ -117.647181838500003, 47.642928796500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000, "random": 103.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.256585895800001, 46.188298165799999 ], [ -119.233645215099997, 46.177308943699998 ], [ -119.207555940899994, 46.170970004399997 ], [ -119.202402813899994, 46.164669637199999 ], [ -119.202143817800007, 46.1517167071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960, "random": 24.942 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.659283546300003, 48.69353696 ], [ -118.654012462699995, 48.729929546199998 ], [ -118.660739732600007, 48.7395905415 ], [ -118.647419978200006, 48.7574573152 ], [ -118.6471151083, 48.765380910600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410, "random": 36.042 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.487719554700007, 46.731020675400003 ], [ -117.482876996499996, 46.737467882300002 ], [ -117.460660441200005, 46.747847563299999 ], [ -117.452984552399997, 46.757850277099998 ], [ -117.396687838099993, 46.769281830300002 ], [ -117.375448974500003, 46.7524284104 ], [ -117.364269794, 46.748263931700002 ], [ -117.357628565100001, 46.737004650800003 ], [ -117.341117993599994, 46.736918286700003 ], [ -117.333013661699994, 46.742959484799997 ], [ -117.317662284199997, 46.731813860700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700, "random": 92.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667102884900004, 48.208880163 ], [ -122.686143286399997, 48.2123143699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000, "random": 65.513 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182293234300005, 48.051873874400002 ], [ -122.178672227500002, 48.051849715099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000, "random": 162.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.158800310700002, 46.207751197699999 ], [ -119.158789864100001, 46.209496312699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000, "random": 155.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082482434599996, 46.2383223812 ], [ -119.083420541, 46.240239538899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000, "random": 73.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304446133300004, 47.944617216399998 ], [ -122.304056684200006, 47.947165397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200, "random": 159.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.847864650800005, 46.442898255599999 ], [ -122.847887418300004, 46.441879990399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000, "random": 20.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.212309471600001 ], [ -122.705914185200001, 48.212264044199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000, "random": 171.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.437900821900001, 47.715449835400001 ], [ -117.456888889400005, 47.7154157955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000, "random": 161.592 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.644296266200001, 48.416713377199997 ], [ -122.620384397, 48.420264665200001 ], [ -122.608242578700001, 48.428787876800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000, "random": 122.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.672993962200003 ], [ -117.239540986700007, 47.675790767199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000, "random": 21.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295248680200004, 47.430983851400001 ], [ -122.295419811299993, 47.434556835099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000, "random": 27.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.787872723199996, 47.059731396899998 ], [ -122.754178235300003, 47.064444536899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000, "random": 63.981 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296344995400005, 47.0166678167 ], [ -122.295539751600003, 47.040162607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000, "random": 30.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186903818399998, 47.663630478599998 ], [ -122.186214256599996, 47.672270169299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600, "random": 15.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.441323932299994, 48.96428992 ], [ -122.407449955, 48.964023052599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500, "random": 159.987 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.598169341299993, 48.116751797 ], [ -123.571252840200003, 48.114671255600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000, "random": 151.841 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629830761500003, 47.587574997200001 ], [ -122.6295353398, 47.592477569499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000, "random": 116.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.404003193700007, 47.652123854400003 ], [ -117.399313164399999, 47.652035602700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000, "random": 89.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.248794955299999, 47.432275411299997 ], [ -122.245588636600004, 47.441221085499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500, "random": 153.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.715965125899999 ], [ -122.502199980499995, 48.71608606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900, "random": 10.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.480736056799998, 46.677532789300002 ], [ -120.482170985500005, 46.678401852699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000, "random": 78.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.396298268699994, 45.578556758600001 ], [ -122.392433527099996, 45.579523637500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000, "random": 186.594 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485215379099998, 48.964238869100001 ], [ -122.485156688800004, 48.993345617800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000, "random": 18.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.968528090199996, 46.303720239100002 ], [ -119.928320592099993, 46.272068797400003 ], [ -119.910635348200003, 46.267561943099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000, "random": 83.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820947948200001, 45.976521508499999 ], [ -122.830325525099994, 45.986546639099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000, "random": 153.551 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.807636250900003, 46.977246300099999 ], [ -123.803073749299998, 46.977342476899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600, "random": 27.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.089258647700007, 46.543182164599997 ], [ -117.092957843700006, 46.546111440499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900, "random": 138.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.903014288700007, 48.491295040099999 ], [ -117.900032163299997, 48.514822412 ], [ -117.9050816787, 48.534381227799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000, "random": 108.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.035016130299994, 47.253938049 ], [ -123.005165366499995, 47.2658148473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700, "random": 95.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.206725611400003, 48.3642645921 ], [ -122.213367238700002, 48.372379240100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800, "random": 188.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.462998099800004, 45.713505250099999 ], [ -121.459894611699994, 45.712339651100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": null, "random": 22.194 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.294348910300002, 47.409876959899997 ], [ -120.298061500200006, 47.409742022300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000, "random": 167.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159856862200002, 47.504657659899998 ], [ -122.156531073599993, 47.505727264299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000, "random": 67.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.291251261799999, 48.0954124931 ], [ -123.209983535899994, 48.0853786216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000, "random": 20.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.084882845199999, 46.328472961599999 ], [ -120.068762990699994, 46.3226150928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200, "random": 180.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.870530194300002, 47.732077034600003 ], [ -117.874789038800003, 47.738757506699997 ], [ -117.883322839300007, 47.7409083111 ], [ -117.890492870200006, 47.756243305300003 ], [ -117.893734817899997, 47.773156233500004 ], [ -117.888588976299999, 47.779159660300003 ], [ -117.889926040399999, 47.788750644499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": null, "random": 146.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.073214422600003 ], [ -119.806099495699996, 48.093206145899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000, "random": 18.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.717006410400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": null, "random": 9.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.567442828200001 ], [ -120.602068424199999, 47.564209197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000, "random": 148.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.096605849699998, 47.174752381099999 ], [ -123.095723781800004, 47.157298820199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000, "random": 52.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.020276654100002, 47.358392289500003 ], [ -122.020926540700003, 47.361394117099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": null, "random": 108.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117938296399998, 46.970178233699997 ], [ -119.117929867499996, 46.984670877500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500, "random": 163.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.642734092600001 ], [ -118.157684185799994, 47.646000131599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000, "random": 196.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.660981036599999 ], [ -117.41331834, 47.659992095900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700, "random": 16.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.185421141800006, 48.477806843800003 ], [ -120.178109296299994, 48.472588289599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000, "random": 136.854 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335194298800005, 47.734143629599998 ], [ -122.334332897300001, 47.734144514599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700, "random": 65.3 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.251494599200001, 46.630101903400003 ], [ -123.180143380499999, 46.634200065800002 ], [ -123.168465260800005, 46.630680131399998 ], [ -123.174419729199997, 46.6133083665 ], [ -123.158177663900005, 46.597497374699998 ], [ -123.128754746599995, 46.600496945700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000, "random": 16.008 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218321885899996, 48.216603711499999 ], [ -122.237437233600005, 48.2352708759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730, "random": 88.211 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071540468899997, 46.195922281199998 ], [ -117.069636538, 46.227851873699997 ], [ -117.059636007199998, 46.229493693099997 ], [ -117.059504067299997, 46.274982224699997 ], [ -117.050149800499995, 46.287366661699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000, "random": 109.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.638014144300001, 48.311229020200003 ], [ -122.629521198600003, 48.320290979399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000, "random": 170.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.360542910299998, 47.320727857100003 ], [ -122.356089198, 47.322505603700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000, "random": 28.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.483419434499993, 47.634916335500002 ], [ -117.479700109600003, 47.633284509399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000, "random": 114.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.309937195499998, 47.307573398400002 ], [ -121.301686665199995, 47.301951192600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": null, "random": 42.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228161390799997, 47.622663198700003 ], [ -120.228121380800005, 47.624127678900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400, "random": 119.417 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076752340900001, 46.909721281499998 ], [ -117.076895172600004, 46.910582235900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280, "random": 172.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410840975200003, 48.685132151700003 ], [ -117.405380887899994, 48.685132053300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000, "random": 11.363 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193654417499999, 46.764554452200002 ], [ -122.194201973800006, 46.765336616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000, "random": 151.313 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291437428099997, 47.922028754499998 ], [ -122.287818599800005, 47.924514488600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700, "random": 133.21 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.176494649899993, 46.782072591599999 ], [ -119.176413614599994, 46.796858286499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900, "random": 40.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.526471648200001, 45.9932175677 ], [ -122.541733257399997, 45.9878702719 ], [ -122.541973759900003, 45.975841807099997 ], [ -122.552955512899999, 45.964338254300003 ], [ -122.562864451500005, 45.958308226100002 ], [ -122.575637757, 45.957740050399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900, "random": 69.039 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229673571099994, 48.385256496799997 ], [ -122.237932510500002, 48.399327514900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": null, "random": 96.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594234535400005, 47.381679915900001 ], [ -120.612720184200001, 47.3953748749 ], [ -120.643282387300005, 47.393382498900003 ], [ -120.656123628499998, 47.402611804199999 ], [ -120.659486369500002, 47.417434481699999 ], [ -120.656077980899994, 47.431696426499997 ], [ -120.662592284699997, 47.441003752299999 ], [ -120.6536874982, 47.450987204 ], [ -120.660583827599993, 47.4614951171 ], [ -120.655618841500001, 47.474500767599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700, "random": 171.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.764092501899995, 47.3690425701 ], [ -122.758479940200004, 47.374409228799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000, "random": 190.978 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.298262488099994, 47.217606902699998 ], [ -122.294008676399997, 47.224909226299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940, "random": 82.356 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.051247552699998 ], [ -122.6907759825, 48.056749767100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000, "random": 153.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334192049500004, 47.590279780800003 ], [ -122.335644288300003, 47.5965279925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": null, "random": 181.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.117722674900001 ], [ -119.853529322100002, 47.119197753900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800, "random": 130.204 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.891347990400007, 46.054345918499997 ], [ -118.867474842199996, 46.0534348511 ], [ -118.839622420200001, 46.065252100499997 ], [ -118.788012284100006, 46.072450643 ], [ -118.711137464100005, 46.053156728099999 ], [ -118.684914254500001, 46.041502158699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000, "random": 165.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292053646699998, 47.400669800400003 ], [ -122.289378304699994, 47.416887971 ], [ -122.282804357200007, 47.423422322500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000, "random": 79.747 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.353867199899994, 46.069697845599997 ], [ -118.340549846499997, 46.073901475299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000, "random": 47.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192662903699997, 47.553294547699998 ], [ -122.187210101600002, 47.561286902699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000, "random": 131.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.999229962399994, 47.852339701799998 ], [ -121.989326623300002, 47.858550461900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000, "random": 25.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.853981904500003, 46.976075110399997 ], [ -123.879310735199994, 46.977845548600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500, "random": 190.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880446336399999, 47.331920456200002 ], [ -122.851419877699996, 47.349845709699999 ], [ -122.836474754700006, 47.374286003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000, "random": 181.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140709792699994, 47.358002554700001 ], [ -122.139011970599995, 47.358015368099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200, "random": 132.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.511892390300005, 46.626211773 ], [ -120.5261373787, 46.636545418399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000, "random": 142.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.299538563599995, 47.712054475400002 ], [ -122.292399687100001, 47.731803153800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200, "random": 90.971 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.728293539399999, 46.578053477799997 ], [ -119.727402952800006, 46.601883459299998 ], [ -119.736755477200006, 46.608082752500003 ], [ -119.727055624900004, 46.612594851099999 ], [ -119.726582953700003, 46.621161997599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000, "random": 146.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.313307756100002, 47.315182427400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200, "random": 167.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.664934623699999 ], [ -123.794603387500004, 46.664438437800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000, "random": 167.997 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347257021100006, 47.6739649907 ], [ -122.344436500499995, 47.686959592599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600, "random": 106.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.723988084599995, 46.734874448799999 ], [ -120.700207955899998, 46.728203798599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000, "random": 77.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.928170766799994, 47.026188983300003 ], [ -122.913444846399997, 47.0253389513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200, "random": 66.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.222795104200003, 45.742975333899999 ], [ -120.198037933500004, 45.750653004199997 ], [ -120.185809987799999, 45.7626742717 ], [ -120.149614449799998, 45.779602804100001 ], [ -120.072888972100003, 45.7937322728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800, "random": 59.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.769308763400005, 48.110002460499999 ], [ -122.766732319699997, 48.110171865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 8.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.408850766199997 ], [ -120.289590062100004, 47.406038896399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700, "random": 194.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.311023756200001, 46.854882640900001 ], [ -122.302889471499995, 46.856180188099998 ], [ -122.311493874600004, 46.862481513299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900, "random": 27.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.154518767300004, 47.506121499599999 ], [ -122.151498588600006, 47.506257013099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000, "random": 85.641 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.328144988899993, 47.6228434601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000, "random": 110.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.487130901500002 ], [ -122.25450026, 47.484675827499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600, "random": 13.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.117892276500001, 48.359995303799998 ], [ -120.082633971199996, 48.348568806899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250, "random": 5.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.890363619599995, 47.209222122699998 ], [ -117.893545103500003, 47.212482255300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000, "random": 143.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.218703100300004, 47.436264282700002 ], [ -122.215305772199997, 47.449957293700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000, "random": 192.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328144988899993, 47.6228434601 ], [ -122.324181676, 47.632101247500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100, "random": 175.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.721243935800004, 47.763146625200001 ], [ -118.713075020700003, 47.760489837199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000, "random": 88.35 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140608262699999, 48.151913289 ], [ -122.132707043300002, 48.1526864406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": null, "random": 131.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.594317222200004, 47.014034000099997 ], [ -120.5925213891, 47.0219833385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000, "random": 165.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.557333596200003 ], [ -120.471265438299994, 46.539414212799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": null, "random": 133.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813451003200001, 47.612634845099997 ], [ -119.8134804078, 47.699642433800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700, "random": 187.803 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378643621500004, 48.516946430200001 ], [ -122.410855576, 48.550846561900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900, "random": 104.484 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.916702149900004, 47.665311003900001 ], [ -117.879282575900007, 47.669483932600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000, "random": 114.719 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.616765508900002 ], [ -122.187813994500004, 47.631938593199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000, "random": 24.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.343617639499996, 47.625224852300001 ], [ -122.347032287700003, 47.6426862378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000, "random": 63.789 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342303708100005, 47.7341359849 ], [ -122.335194298800005, 47.734143629599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000, "random": 52.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.598939776600005, 45.612974016800003 ], [ -122.594258495099993, 45.612560721500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": null, "random": 82.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.641980364899993, 47.815343803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000, "random": 131.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.999819081400005, 47.050500637500001 ], [ -122.991001614300004, 47.0450336894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300, "random": 171.423 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880352613300005, 46.306112660499998 ], [ -122.866511907399996, 46.303640157300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": null, "random": 35.516 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.602068424199999, 47.564209197 ], [ -120.598347073400006, 47.562079282799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200, "random": 85.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.400467428400006, 47.536405350400003 ], [ -117.398395829, 47.543770665700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": null, "random": 63.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.488596417300002, 47.377485891200003 ], [ -119.482679815, 47.381469205400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000, "random": 19.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.442382649699994, 46.937291079 ], [ -122.35740693, 46.936642209200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100, "random": 58.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.910859572100001 ], [ -117.067799451300004, 46.9127572907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000, "random": 115.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.904892859199997 ], [ -122.228090332199997, 47.908324735699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000, "random": 128.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353191655499998, 47.787208051500002 ], [ -117.352315237100001, 47.7871149729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000, "random": 66.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914296097499999, 46.200138842100003 ], [ -122.916599885, 46.205741983700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000, "random": 192.819 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402514188599994, 47.775377664 ], [ -117.402440419900003, 47.775794797400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000, "random": 191.097 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.656990761200007, 45.732546164200002 ], [ -122.661277098900001, 45.746467718700004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": null, "random": 96.872 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.685372148200003, 48.104020449099998 ], [ -119.668283837900006, 48.1388517209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000, "random": 13.186 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.473322861400007, 46.584970764799998 ], [ -120.470989273200004, 46.584876290399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000, "random": 132.733 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.966420914300002, 46.148026853200001 ], [ -122.955243405499999, 46.147106829499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460, "random": 155.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.317662284199997, 46.731813860700001 ], [ -117.290075712100005, 46.725393049799997 ], [ -117.267322546, 46.708193058399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000, "random": 123.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.443990572700002, 48.1073916924 ], [ -123.442124530399994, 48.107323541500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000, "random": 159.238 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.060210817500007, 48.064407704300002 ], [ -123.054141350199998, 48.060912372700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970, "random": 84.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.113183876600004, 46.908188825099998 ], [ -124.112468387199996, 46.908720344199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000, "random": 186.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433972606799998, 47.207413103199997 ], [ -122.4340414925, 47.220909691099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700, "random": 110.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.950176130800003, 46.983300724099998 ], [ -123.958464947300001, 46.982430452400003 ], [ -123.963881663899997, 46.9871110108 ], [ -123.999196046099996, 46.993426610199997 ], [ -124.004088097199997, 47.00857363 ], [ -124.038134999700006, 47.045714760700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600, "random": 55.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.701501382399996, 47.757762028099997 ], [ -118.700325316700003, 47.757666899199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000, "random": 80.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.740847495899999 ], [ -117.411487897, 47.7439536479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000, "random": 34.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.350203448900004, 47.913704343699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000, "random": 198.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.415683315800003 ], [ -122.218703100300004, 47.436264282700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900, "random": 15.014 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.264793495800006, 48.253169139299999 ], [ -124.260389031, 48.2542321886 ], [ -124.260169830899997, 48.250693192599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500, "random": 37.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.884335095899999, 46.505082388399998 ], [ -119.876676456799999, 46.5100011675 ], [ -119.873467005400002, 46.5215778241 ], [ -119.880280900700001, 46.5340131046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600, "random": 84.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.824681801899999, 45.823005993499997 ], [ -120.822628386199995, 45.822990394900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000, "random": 85.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329243180199995, 47.331743374399998 ], [ -122.321901880599995, 47.332697738599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000, "random": 125.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.028935226800002, 46.511817406699997 ], [ -124.030679460200005, 46.532012021900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000, "random": 50.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.774590595299998, 46.981635785199998 ], [ -123.754235983800001, 46.978403612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000, "random": 146.842 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.053655770799999 ], [ -122.139335004, 48.053651104099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000, "random": 131.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.646212052700001 ], [ -117.239869003899997, 47.648870384699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000, "random": 149.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298424995199994, 47.1999364331 ], [ -122.293814458300005, 47.198880376799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000, "random": 123.944 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293233785499993, 47.910375483199999 ], [ -122.291437428099997, 47.922028754499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900, "random": 56.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.936904906499997 ], [ -119.445210249100001, 45.9475940632 ], [ -119.410562102, 45.958355706600003 ], [ -119.400160619600001, 45.949325932500003 ], [ -119.373150104100006, 45.946680716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800, "random": 12.01 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.815518941400001, 46.975464231899998 ], [ -123.814658128900007, 46.974667433800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000, "random": 118.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188159619700002, 47.632297944299999 ], [ -122.154129026099994, 47.629523595199998 ], [ -122.136478190800005, 47.638442178699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": null, "random": 161.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.775684841300006, 48.108642657799997 ], [ -119.765463651, 48.109561014699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000, "random": 170.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231923075500006, 47.636062816299997 ], [ -122.213334177500002, 47.641671832699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000, "random": 162.834 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.832270050299996, 47.045933568700001 ], [ -122.822188395799998, 47.046986950600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000, "random": 22.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.284168690399994, 48.096746748299999 ], [ -117.278589829400005, 48.097019969599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000, "random": 116.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473678655800001, 47.161579212200003 ], [ -122.460090051099996, 47.158565784700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300, "random": 30.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.298032189799997 ], [ -117.972813399800003, 47.3032197247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": null, "random": 59.536 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.667643367899998, 47.592781258700001 ], [ -120.661540138700005, 47.596128795299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000, "random": 20.903 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.357139855499994, 48.627319620199998 ], [ -122.363905077, 48.644133222500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000, "random": 107.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690070823200003, 47.674254571299997 ], [ -122.689141188199997, 47.683932213600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300, "random": 158.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.349164427700003, 46.063926639899996 ], [ -118.349924354400002, 46.069095536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000, "random": 187.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.472249359299994, 46.567494454399998 ], [ -120.4705735995, 46.557333596200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000, "random": 150.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.979061219899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500, "random": 131.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.265180498099994, 46.656573853200001 ], [ -118.287525629800001, 46.668511983199998 ], [ -118.3072819323, 46.668686791900001 ], [ -118.334445877299999, 46.677688487099999 ], [ -118.378357700199999, 46.677736874600001 ], [ -118.389137803, 46.689395814599997 ], [ -118.391198589, 46.697209202700002 ], [ -118.412269855199995, 46.701216260800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300, "random": 176.734 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.921315964399994, 47.192773287900003 ], [ -120.938415335599998, 47.194899606299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830, "random": 108.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.945000196699993, 48.163679703299998 ], [ -123.924409383899999, 48.154730365699997 ], [ -123.931758113599997, 48.1536438133 ], [ -123.929539981900007, 48.1451803052 ], [ -123.9164706989, 48.136571501200002 ], [ -123.8875301745, 48.136348665900002 ], [ -123.859788945399998, 48.14722078 ], [ -123.800128254599997, 48.139589319800002 ], [ -123.769069669299995, 48.139676945799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800, "random": 187.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.249830436700002 ], [ -117.229377774599996, 48.238971747699999 ], [ -117.214957211400005, 48.232692742200001 ], [ -117.144515819600002, 48.227617892399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260, "random": 113.074 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.937838489300006, 47.657930743599998 ], [ -117.937941742199996, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300, "random": 27.619 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.178109296299994, 48.472588289599997 ], [ -120.168691485899998, 48.4567062705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000, "random": 20.384 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.169896643900003 ], [ -122.163708641699998, 47.169319040799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200, "random": 113.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.889403680800001, 46.6634446901 ], [ -118.884038854300002, 46.662768880900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000, "random": 59.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.685113262599998, 47.848515193700003 ], [ -121.675429160199997, 47.8437264887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300, "random": 49.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.747204117300001, 46.790029089500003 ], [ -118.740366325, 46.791625482900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700, "random": 79.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.079909498199996, 48.924179648600003 ], [ -122.077280059299994, 48.924155999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700, "random": 53.328 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.700207955899998, 46.728203798599999 ], [ -120.694754548899994, 46.726677142600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900, "random": 15.638 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.450008249200003 ], [ -117.132012054800001, 47.4522702959 ], [ -117.127300859599998, 47.4454628501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900, "random": 6.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.545085984599993, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900, "random": 78.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.403136738900002 ], [ -119.512349200200006, 48.403682629400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000, "random": 35.576 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.436421814100001, 47.715439546799999 ], [ -117.437900821900001, 47.715449835400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000, "random": 55.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.182057323600006, 47.709590182100001 ], [ -122.1889808432, 47.723609466200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300, "random": 98.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.710824323700002 ], [ -118.794121772400004, 47.7561814138 ], [ -118.733480595399996, 47.762334290200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500, "random": 74.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802603124800001, 46.376002249599999 ], [ -123.793654273499996, 46.376748832700002 ], [ -123.784936310800006, 46.3717532207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800, "random": 88.213 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.153541424099998, 47.711786608099999 ], [ -121.122913737800005, 47.717304702500002 ], [ -121.137841357100001, 47.724181647899997 ], [ -121.121011578500003, 47.7462420572 ], [ -121.094127007599994, 47.7457487872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000, "random": 52.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.681333363600004, 45.806361536300003 ], [ -122.688395438200004, 45.8215294532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000, "random": 58.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.568738831800005, 47.5884737405 ], [ -117.558935183800003, 47.595361529199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200, "random": 24.005 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.153525229400003, 45.636291317800001 ], [ -121.156170974700004, 45.649046365099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000, "random": 14.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.377964291200001 ], [ -122.243057082700005, 47.378057579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000, "random": 18.057 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.808962595200001, 46.976225300599999 ], [ -123.807636250900003, 46.977246300099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900, "random": 108.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.918289174700007, 47.267288911100003 ], [ -123.908246139200003, 47.295452563799998 ], [ -123.906519178300002, 47.332855418800001 ], [ -123.909559214599994, 47.346792407499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400, "random": 142.203 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.618472587699998, 46.893930868200002 ], [ -119.602185105700002, 46.890372220899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000, "random": 78.732 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903046981700001, 46.1632969984 ], [ -122.904291841900005, 46.1726255536 ], [ -122.899266838100004, 46.180291897499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000, "random": 20.28 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140080255399994, 47.814511612899999 ], [ -122.1281371157, 47.830633641600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000, "random": 128.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886834120299994, 47.987701528899997 ], [ -122.884867830700003, 47.987938207299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000, "random": 164.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.780145376699998 ], [ -122.579254389100001, 45.780262944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000, "random": 63.686 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.973281621500007, 46.70702645 ], [ -122.974771932400003, 46.711262675199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600, "random": 128.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.338960773400004, 48.548602804200002 ], [ -120.322374392399993, 48.543587961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000, "random": 72.006 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.176904797399999, 46.729513769 ], [ -117.170253539900003, 46.7278386224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000, "random": 136.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.468545392099998, 48.106190606399998 ], [ -123.465759248200001, 48.106460575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500, "random": 181.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.994685753699997, 47.197484103500003 ], [ -121.992391644899996, 47.199177298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800, "random": 171.26 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.947883190100001, 46.753357173300003 ], [ -122.937571908899997, 46.753909554400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000, "random": 61.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623797006700002, 47.463593822599996 ], [ -122.624560448099999, 47.475269707800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000, "random": 46.986 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329772653299997, 47.743695937799998 ], [ -122.329103704700003, 47.746905411100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000, "random": 59.887 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.781061765399997, 48.107655859499999 ], [ -122.778025327899996, 48.108358907499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000, "random": 188.972 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612448723499995, 47.766183538299998 ], [ -122.607158394, 47.772467209200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000, "random": 70.615 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370672134800003, 48.2410706967 ], [ -122.344383008400001, 48.239891315900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400, "random": 187.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.415857063199994, 47.425849765 ], [ -121.412787102400003, 47.422542421899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200, "random": 110.315 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087460968499997, 46.4153003586 ], [ -117.069154655, 46.419911749400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000, "random": 79.946 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.572463558899997, 46.625166001700002 ], [ -120.543664555099994, 46.622677312599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000, "random": 46.649 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609634455600002, 48.493290848299999 ], [ -122.612626586600001, 48.493451127500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100, "random": 131.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.304460834899999, 48.339463458300003 ], [ -117.284409614099999, 48.3059359445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770, "random": 144.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.344182075500001, 46.736172435599997 ], [ -118.323169183600001, 46.743165071699998 ], [ -118.310434832400006, 46.756377710499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000, "random": 157.083 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247431142099998, 47.386713606199997 ], [ -122.249348690100007, 47.397617755600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000, "random": 47.31 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434200290299998, 47.159344943199997 ], [ -122.434170529799999, 47.162825656599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000, "random": 12.674 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.079868423600004, 46.8216532259 ], [ -123.076154776400003, 46.820639691700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160, "random": 150.567 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.557997059100003, 46.644559999499997 ], [ -118.549526725700005, 46.655378434 ], [ -118.544379813199996, 46.674259497900003 ], [ -118.529189422200005, 46.689391436299999 ], [ -118.527862787, 46.697937023 ], [ -118.528930961399993, 46.709283549 ], [ -118.547975839399996, 46.713458256899997 ], [ -118.547381969, 46.780265899100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300, "random": 59.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.487292380499994, 46.680124523300002 ], [ -120.482692837, 46.680783935599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000, "random": 159.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.113000581700007, 48.151740135399997 ], [ -122.118752809200004, 48.164313309400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900, "random": 24.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.156594273899998, 47.654047759699999 ], [ -118.142086452399994, 47.654405452600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900, "random": 91.305 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.939261629200004, 46.382620523 ], [ -117.932211046700004, 46.398570912899999 ], [ -117.941360581799998, 46.406069642200002 ], [ -117.947913774300005, 46.422564267200002 ], [ -117.946966541400002, 46.4295031017 ], [ -117.958727449400001, 46.4507231244 ], [ -117.962632911, 46.468502493199999 ], [ -117.960982553899996, 46.487304485899998 ], [ -117.973472473599998, 46.499872626399998 ], [ -117.971224907800007, 46.509867260900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": null, "random": 178.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.109908886699998, 46.970152356699998 ], [ -119.042225635199998, 46.969683760899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000, "random": 65.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.235297938100004, 46.234123724200003 ], [ -119.215236535800003, 46.232174863799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": null, "random": 125.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.309497313199998, 47.105841174600002 ], [ -119.305279921700006, 47.108785126400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300, "random": 58.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.539695353699997, 48.0975545684 ], [ -123.535337776800006, 48.098941472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000, "random": 77.082 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207429610299997, 47.758988673600001 ], [ -122.194046084600004, 47.755353640700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100, "random": 182.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.936904906499997 ], [ -119.603123068399995, 45.9389260974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100, "random": 54.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281476550400001, 48.139959181099996 ], [ -122.282074030299995, 48.147754863700001 ], [ -122.289175401700007, 48.155283600700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000, "random": 137.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.528486519099999, 48.4108456019 ], [ -119.528456185699994, 48.412367485300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000, "random": 7.995 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843229071500005, 47.447241419800001 ], [ -122.827259250400004, 47.454059906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800, "random": 62.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247022692499996, 48.503030819599999 ], [ -122.247228536, 48.504965103899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300, "random": 87.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.208860642800005, 46.733747506299999 ], [ -117.205906906199999, 46.733752018300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000, "random": 136.289 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.040221681899993, 47.405137523800001 ], [ -122.038411720799999, 47.408974487899997 ], [ -122.0506265625, 47.4234707779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500, "random": 180.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.361971859799993, 48.427754610500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100, "random": 109.456 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.058417653500001, 47.257382574 ], [ -121.062345597100006, 47.260573463699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000, "random": 107.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.258312819500006, 47.889540971800002 ], [ -122.257239849399994, 47.8906887228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000, "random": 170.794 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.109321064499994, 47.8989017492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000, "random": 117.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.261144368700002 ], [ -119.287813674800006, 46.259568700099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000, "random": 104.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.765303224099995, 47.063831071899997 ], [ -122.765114033100005, 47.0629504411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400, "random": 16.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.602009161799998, 46.657210274599997 ], [ -121.593992933400003, 46.667723986799999 ], [ -121.577172669600003, 46.675008162399998 ], [ -121.574877501800003, 46.6824470233 ], [ -121.578544731500003, 46.685708578700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000, "random": 18.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101223870799998, 46.205201664199997 ], [ -119.1061582106, 46.206095185800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000, "random": 189.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667648745600005, 47.568424242600003 ], [ -122.663594378, 47.570754986499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000, "random": 9.646 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649649797199999, 45.650423183699999 ], [ -122.649304439100007, 45.650350070899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800, "random": 136.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.092957843700006, 46.546111440499999 ], [ -117.105071092299994, 46.558843211300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920, "random": 60.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142671519100006, 48.777236292200001 ], [ -118.149771082599997, 48.787323916799998 ], [ -118.1606954688, 48.792579171100002 ], [ -118.161062147699994, 48.801349192399996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400, "random": 141.916 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.256499768300003, 46.093037346400003 ], [ -118.252640320599994, 46.0995793775 ], [ -118.242096332900005, 46.1031326564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": null, "random": 189.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.282818381200002, 47.619376442899998 ], [ -119.261368236300001, 47.631497785199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610, "random": 111.553 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.658917247100007, 48.8590433627 ], [ -121.663029092499997, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.675440298599995, 48.865191048600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000, "random": 50.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.365807384299998, 47.7605601689 ], [ -117.367348161699994, 47.7688728977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100, "random": 6.197 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952249981600005, 46.7274803396 ], [ -122.952269366, 46.728964255699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000, "random": 188.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347632495900001, 48.563982262400003 ], [ -122.343703571600003, 48.5958995493 ], [ -122.346242833700003, 48.607025927800002 ], [ -122.354567975600006, 48.617470432600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": null, "random": 34.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.598347073400006, 47.562079282799999 ], [ -120.588995856500006, 47.556839945100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000, "random": 160.87 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249888866199996, 47.4623828171 ], [ -122.2408435002, 47.465256976900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300, "random": 160.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.854497924100002, 47.174925353799999 ], [ -120.816994486400006, 47.165445994899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700, "random": 87.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.904923274699996, 47.572494750300002 ], [ -121.8981135123, 47.571273361700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400, "random": 184.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.093399640200005, 48.181107116699998 ], [ -120.096475565, 48.196846776400001 ], [ -120.1071532972, 48.197688796500003 ], [ -120.128256094899996, 48.2086361697 ], [ -120.117478759899996, 48.231212465200002 ], [ -120.116185349099993, 48.249036687500002 ], [ -120.106171724600003, 48.2554318205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000, "random": 82.184 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123612070700005, 48.200278239399999 ], [ -122.121370892300007, 48.200256519299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100, "random": 47.511 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.077973130199993, 47.442965311 ], [ -117.039788959500001, 47.434903152399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810, "random": 11.326 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.533733565099993, 45.998403068800002 ], [ -121.554996926699999, 45.999801197700002 ], [ -121.563611498200004, 45.990116305199997 ], [ -121.583700345099999, 45.982602100100003 ], [ -121.588837556200005, 45.975811147599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": null, "random": 102.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.329880551900004, 47.173255506899999 ], [ -119.337592942, 47.182491657900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400, "random": 133.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.337683892399994, 48.054732999700001 ], [ -124.314971761699994, 48.058467795399999 ], [ -124.302801498899996, 48.067339551800004 ], [ -124.283146126800006, 48.069756569200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": null, "random": 41.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.076774006700006, 47.6417886706 ], [ -120.074763273399995, 47.641906708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700, "random": 144.112 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.037698168600002, 48.0703874967 ], [ -123.954577124599993, 48.075450517699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000, "random": 166.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282398509900005, 47.194193480700001 ], [ -122.281111013, 47.198441099599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100, "random": 93.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907074601299996, 46.190049258599998 ], [ -122.914296097499999, 46.200138842100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000, "random": 116.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552572928100005, 45.685580574500001 ], [ -122.55279656, 45.6913817983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": null, "random": 174.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.806099495699996, 48.093206145899998 ], [ -119.794473089500002, 48.098315156799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000, "random": 29.39 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510003080700002, 47.249038175899997 ], [ -122.511115720299998, 47.250253162900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700, "random": 165.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.481130804700001, 46.467320462700002 ], [ -117.472479664199994, 46.459484187100003 ], [ -117.467053922199995, 46.447064925699998 ], [ -117.444469186099994, 46.446626901400002 ], [ -117.431164983299993, 46.436213980399998 ], [ -117.420257639400006, 46.436042089499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300, "random": 153.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.660162054099999, 47.704564702799999 ], [ -122.654604637600002, 47.70607599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400, "random": 119.158 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.955941604200007, 46.715546307300002 ], [ -122.957186697400005, 46.712643048799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000, "random": 20.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.181516434599999, 46.226705456 ], [ -119.146615172400004, 46.217968659900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000, "random": 8.329 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.146068995299999 ], [ -122.922241113200002, 46.146487239599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000, "random": 139.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320426351199998, 47.4439375555 ], [ -122.326823310600005, 47.455452040200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000, "random": 172.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.358081797099999 ], [ -122.3074304764, 47.361630322899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000, "random": 60.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.358060180499997 ], [ -122.085935890100004, 47.358074866599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800, "random": 158.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.733411255299998, 47.643483853100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000, "random": 62.338 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.448371310200002, 47.641008035600002 ], [ -117.449716718900007, 47.644309250900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000, "random": 165.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.615658233700003, 47.716138798099998 ], [ -122.635316501199995, 47.7250143013 ], [ -122.6370291084, 47.732315224099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000, "random": 111.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300439660400002, 47.710521918399998 ], [ -122.299538563599995, 47.712054475400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200, "random": 135.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747539303799996, 46.209412533399998 ], [ -119.747620288500002, 46.214015703100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600, "random": 152.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434802071700005, 45.664913890199998 ], [ -122.429621236, 45.6621546541 ], [ -122.428884604199993, 45.654393977700003 ], [ -122.424404903500005, 45.650548964899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000, "random": 20.773 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.477758466899999 ], [ -122.321610488, 48.478041881499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900, "random": 8.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.993213695400001 ], [ -122.526471648200001, 45.9932175677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390, "random": 52.257 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.199232453899995, 47.177370832800001 ], [ -117.172200222699999, 47.181828016700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000, "random": 47.463 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.521938566900005, 47.258344291 ], [ -122.530788449400006, 47.258858195899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": null, "random": 87.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.546962332099994, 47.327187273600003 ], [ -119.498698481900007, 47.369072135099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500, "random": 10.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726153012200001, 48.955162657199999 ], [ -122.729995110700003, 48.962176777700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780, "random": 155.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.200650561700002, 47.125971467500001 ], [ -117.220439268500002, 47.120872 ], [ -117.231149710099999, 47.122069650199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400, "random": 22.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.668283837900006, 48.1388517209 ], [ -119.663662453900002, 48.160481324099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000, "random": 199.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.291840117899994, 48.435550659800001 ], [ -122.289184802099996, 48.435552414900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000, "random": 53.349 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.353191655499998, 47.787208051500002 ], [ -117.351819382399995, 47.791903946399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500, "random": 44.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.419911749400001 ], [ -117.069332021600005, 46.421228217900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700, "random": 188.723 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.356402838199998, 47.8868367862 ], [ -124.356115536700003, 47.893767724699998 ], [ -124.364424330800006, 47.894831987300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100, "random": 37.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.161478036899993, 47.506903678 ], [ -124.200483022200004, 47.530399395899998 ], [ -124.222936962700004, 47.5343029792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000, "random": 42.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505958291699997, 45.675826886400003 ], [ -122.505932908, 45.672173066399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100, "random": 196.434 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.387790361200004, 46.886648408900001 ], [ -117.381710075699999, 46.890607102899999 ], [ -117.364914465300004, 46.890563387699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700, "random": 139.116 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.654254000899996, 47.836387341299996 ], [ -121.641825713900005, 47.834176160399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200, "random": 65.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.233183287899998 ], [ -122.899682500099999, 46.2497847546 ], [ -122.913101688699996, 46.263063801500003 ], [ -122.925089530199998, 46.2644933419 ], [ -122.923781125100007, 46.271508343100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900, "random": 177.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.250919281800002 ], [ -119.475223036800003, 46.251686108599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400, "random": 134.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.181781152799999, 46.731695621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000, "random": 79.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.280950360700004, 48.235572681 ], [ -122.242300813300005, 48.238812016799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000, "random": 192.266 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.560843662600007, 47.642884424899997 ], [ -117.509427539, 47.643005397499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000, "random": 84.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.198441099599997 ], [ -122.2782598167, 47.202915207499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500, "random": 110.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.457284327500005, 46.270600365299998 ], [ -123.410991960900006, 46.261708922300002 ], [ -123.4005832438, 46.253119203700003 ], [ -123.394791245799993, 46.231576610899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100, "random": 147.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.367729826599998 ], [ -120.309728932499993, 46.365077469399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000, "random": 28.951 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.632101247500003 ], [ -122.323883246600005, 47.632698970699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200, "random": 25.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364164788300002, 46.874010902899997 ], [ -117.364993136400003, 46.874611063800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200, "random": 160.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.507510958300003, 47.741638156500002 ], [ -117.507482687600003, 47.744381586199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300, "random": 195.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.745586975199998, 48.137285238700002 ], [ -123.734538853499998, 48.136053459400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000, "random": 122.871 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564733440400005, 47.498272492 ], [ -117.564729693399997, 47.498854207599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000, "random": 187.906 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.674891777200003, 47.544020254700001 ], [ -122.670747021099999, 47.549449447400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700, "random": 181.227 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.178055343499999 ], [ -117.042666862199994, 48.178097309100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100, "random": 137.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.239504252499998, 48.831823512100001 ], [ -122.219542389099999, 48.827706554899997 ], [ -122.209602461599999, 48.821069883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300, "random": 104.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.904476184399996, 45.824738004899999 ], [ -120.874470869500001, 45.824429695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700, "random": 113.431 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923781125100007, 46.271508343100002 ], [ -122.921877134200003, 46.276283257400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000, "random": 76.447 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.478041881499998 ], [ -122.280194517799998, 48.492612765399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400, "random": 174.927 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054947732100004, 46.330246772899997 ], [ -124.054913420899993, 46.331157364600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600, "random": 31.011 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510934174799999, 47.622969177800002 ], [ -122.512970924499996, 47.623864315600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000, "random": 70.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.735008518699999, 47.515738177199999 ], [ -122.7222646763, 47.523320564599999 ], [ -122.713259493500004, 47.523971466399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140, "random": 119.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.224439920799995, 48.998115780500001 ], [ -118.223933752099995, 49.000114250300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000, "random": 185.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.134272394600004 ], [ -123.100207740599998, 47.126232692499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000, "random": 170.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664414851900005, 45.756639908099999 ], [ -122.670186995799995, 45.775331764199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300, "random": 145.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.171286162900003 ], [ -122.626200851199997, 48.183153552 ], [ -122.626686593800002, 48.190429204799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000, "random": 187.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326526705800006, 47.603443393299997 ], [ -122.330409308399993, 47.607952382599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700, "random": 130.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.822947646900005, 45.777179853299998 ], [ -120.822576432600002, 45.7876068164 ], [ -120.816935508100002, 45.795557156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590, "random": 189.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351060563499999, 46.307101177200003 ], [ -122.352797293799995, 46.296583677100003 ], [ -122.345537396200001, 46.293138434900001 ], [ -122.337001989, 46.304714286200003 ], [ -122.327803631699993, 46.307844081100001 ], [ -122.320873072699996, 46.303652442299999 ], [ -122.313153103, 46.306626277900001 ], [ -122.310008285199999, 46.300143160799998 ], [ -122.302261997399995, 46.297025635499999 ], [ -122.293837210299998, 46.300079688300002 ], [ -122.295182346, 46.306206869100002 ], [ -122.280729278600006, 46.311646972699997 ], [ -122.273189866799996, 46.303082327 ], [ -122.266298115500007, 46.301502894 ], [ -122.278922869900001, 46.303445798600002 ], [ -122.270593977499999, 46.287340526100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000, "random": 180.466 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.781179547199997 ], [ -117.407456154499997, 47.7875219182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000, "random": 192.506 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.694733022400001, 47.501473805 ], [ -117.684279966800005, 47.508587719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300, "random": 196.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.748303415500004, 48.995657530599999 ], [ -122.754702693599995, 49.000477059600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": null, "random": 134.428 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.885851000599999, 47.990264323799998 ], [ -119.883860723400005, 47.998745385600003 ], [ -119.895747200100004, 48.038517837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400, "random": 55.938 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.667125840599994, 48.119117447900003 ], [ -123.656102616499993, 48.118102910200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800, "random": 51.711 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.875069146900003, 46.241169451399998 ], [ -123.857446159700004, 46.251084458699999 ], [ -123.851433015300003, 46.260249697799999 ], [ -123.840213429399995, 46.262507367300003 ], [ -123.832579781099994, 46.2695656832 ], [ -123.816652754800003, 46.271283450200002 ], [ -123.807445187400006, 46.286089142100003 ], [ -123.8110220943, 46.292755949 ], [ -123.800581824800005, 46.304354306100002 ], [ -123.798028018799997, 46.329180811 ], [ -123.801002646599997, 46.334452709600001 ], [ -123.810426917100003, 46.3376105866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700, "random": 68.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.940825486899996, 45.666529629400003 ], [ -120.929771406499995, 45.665412162099997 ], [ -120.925640917099997, 45.6605136294 ], [ -120.895578058300003, 45.6660810678 ], [ -120.829286058400001, 45.694065406599996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000, "random": 69.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.282889944499999, 47.185892098499998 ], [ -122.282398509900005, 47.194193480700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000, "random": 42.309 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.648673581899999 ], [ -120.528253126199999, 46.654039018799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000, "random": 59.051 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.671691275200004, 45.622917794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100, "random": 48.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.621722756699995, 48.059676954899999 ], [ -117.620433343599998, 48.059935189100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000, "random": 198.163 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.617583253099994, 46.9743856487 ], [ -123.608437708, 46.973359107199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100, "random": 145.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.904334281399997, 48.5465658408 ], [ -117.881992736800001, 48.547212818699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400, "random": 162.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.995102127199999, 48.529884678499997 ], [ -121.965112893599994, 48.524065543100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000, "random": 150.701 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.950614760899995, 46.116489802300002 ], [ -122.943733583300002, 46.1159145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000, "random": 126.182 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688198335500005, 47.009027615599997 ], [ -122.669449984600007, 47.0015817743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200, "random": 135.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.194491271900006, 46.712316346400002 ], [ -117.182392328899994, 46.715330188400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000, "random": 155.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.891173255600002 ], [ -122.128272774199999, 47.8811551589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000, "random": 98.252 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199439421799994, 48.184232346199998 ], [ -122.207350378399994, 48.193054996800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90, "random": 42.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.308202455300005, 48.987334862 ], [ -117.300957911, 48.991489365699998 ], [ -117.299785418300004, 48.999809148499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500, "random": 26.522 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.465829961099999, 46.711097427799999 ], [ -120.449938789300006, 46.725476403 ], [ -120.452959759300001, 46.732866331399997 ], [ -120.447479879599996, 46.741750038900001 ], [ -120.458408863299994, 46.747923271499999 ], [ -120.455703188300006, 46.752654797700004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000, "random": 73.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902577135399994, 47.372295066600003 ], [ -123.888628473599994, 47.402682276900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000, "random": 10.311 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.069555480600002, 47.551632014200003 ], [ -122.051875352500005, 47.545388803500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100, "random": 145.241 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.072888972100003, 45.7937322728 ], [ -119.99534977, 45.823920287100002 ], [ -119.934621232300003, 45.835692303599998 ], [ -119.909311418599998, 45.835764298400001 ], [ -119.877972909600004, 45.841746087399997 ], [ -119.848685047, 45.8673243697 ], [ -119.827153834699999, 45.869699138900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500, "random": 30.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.130696857900006, 46.165415474500001 ], [ -118.139120139100001, 46.178478269700001 ], [ -118.136094057199998, 46.184593336600003 ], [ -118.137789048200005, 46.231021613599999 ], [ -118.153095305400001, 46.2591521015 ], [ -118.153247686300006, 46.270134871800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000, "random": 99.625 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.442298905900003 ], [ -122.378756131, 48.4364435691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300, "random": 30.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.212563024299996, 47.247972246800003 ], [ -124.222223573, 47.256667980400003 ], [ -124.241823402400001, 47.2957168744 ], [ -124.2808034862, 47.321448112500001 ], [ -124.288020639099997, 47.335912143500003 ], [ -124.285010407200005, 47.347029011300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000, "random": 76.278 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.690131623900001, 47.579854202900002 ], [ -122.698740873399998, 47.5866961105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000, "random": 16.31 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569069800005, 47.846843594500001 ], [ -122.293168879500001, 47.850417256599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": null, "random": 86.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.985668490899997, 46.939923999500003 ], [ -119.961766615599998, 46.9450388749 ], [ -119.962360795400002, 46.955497291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000, "random": 180.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335443671899995, 48.490275393399997 ], [ -122.337050963199999, 48.503991479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600, "random": 15.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.493588994299998, 46.301316915 ], [ -119.493315447399993, 46.311516519900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000, "random": 179.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202427917799994, 47.372559331300003 ], [ -122.202404855500006, 47.3748567353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000, "random": 122.665 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293910744200005, 47.206571607400001 ], [ -122.293918658300001, 47.209493222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000, "random": 14.884 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.987460641699997, 47.627994798400003 ], [ -121.959372736399999, 47.6196353188 ], [ -121.9574628206, 47.613211520100002 ], [ -121.961543513799995, 47.60154051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400, "random": 79.542 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.465374470599997, 45.714393327700002 ], [ -121.462998099800004, 45.713505250099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900, "random": 97.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.399775561200002, 47.514428535900002 ], [ -117.393937328700005, 47.521223274699999 ], [ -117.396824529400007, 47.527430858599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000, "random": 38.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411341617700003, 47.7366272099 ], [ -117.411298272899998, 47.739633774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000, "random": 77.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.827797273100003, 47.386578722800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300, "random": 27.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.474404846900001, 48.964420136500003 ], [ -122.463166107899994, 48.964615040399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900, "random": 87.568 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.460686978599995, 47.952414175199998 ], [ -124.463115591800005, 47.940796587199998 ], [ -124.481716270099994, 47.930896701099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600, "random": 42.323 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.959928208899996, 47.199071826 ], [ -121.934698828799995, 47.192199706799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700, "random": 91.443 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.768640501500002, 48.011228311499998 ], [ -122.776669665699998, 48.013523673900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600, "random": 83.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.196139648499994, 46.748677111699998 ], [ -122.193495728900004, 46.757317083099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000, "random": 199.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573335582699997, 47.802767164400002 ], [ -122.570692450600006, 47.803729114699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200, "random": 22.861 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143430620900006, 47.804831104 ], [ -122.137834511600005, 47.804839361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000, "random": 84.807 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.661054174599997 ], [ -122.130451733599998, 47.666130757799998 ], [ -122.122345378399999, 47.667181773700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200, "random": 61.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.469021541100005, 45.664782696 ], [ -122.434802071700005, 45.664913890199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100, "random": 44.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.174905591300003, 47.289039031 ], [ -123.157044219200003, 47.280328202200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500, "random": 120.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.719485383899993, 46.918204854899997 ], [ -123.713314280899993, 46.928964203900001 ], [ -123.670778448299998, 46.937560636199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000, "random": 136.705 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402639499800003, 47.780817988400003 ], [ -117.402846948, 47.780997213100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800, "random": 116.999 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.475259386899999 ], [ -122.865755115799999, 46.470908225099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000, "random": 146.503 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.277685793499998, 48.843534593299999 ], [ -122.255634568199994, 48.839046183599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000, "random": 80.874 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.473632489099998, 46.539386031900001 ], [ -120.470537695700003, 46.541032083600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": null, "random": 76.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.655618841500001, 47.474500767599999 ], [ -120.652862503600005, 47.482823007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000, "random": 87.405 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.814658128900007, 46.974667433800001 ], [ -123.813512360700003, 46.975265630300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000, "random": 166.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.429078792699997, 47.2340191897 ], [ -122.434832094599997, 47.233171242200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800, "random": 5.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.732842367800004, 48.984169559599998 ], [ -122.748303415500004, 48.995657530599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000, "random": 48.071 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.598388599399996, 48.891661797600001 ], [ -122.602514984699994, 48.892054163399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": null, "random": 103.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.813702714100003 ], [ -119.977015037599998, 47.817024460699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000, "random": 30.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.638529037400005, 48.891709409500002 ], [ -122.704489392200003, 48.892193408899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400, "random": 88.312 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.775306882099997, 46.318841576600001 ], [ -122.762299791299995, 46.31964321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": null, "random": 94.608 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853366397299993, 47.2334497115 ], [ -119.835643111799996, 47.234027670400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000, "random": 186.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.892543258700002, 46.106806579699999 ], [ -122.878591007500006, 46.106773383099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000, "random": 186.816 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.156531073599993, 47.505727264299999 ], [ -122.154518767300004, 47.506121499599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100, "random": 132.508 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.890796080300007, 46.301280442600003 ], [ -122.880352613300005, 46.306112660499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000, "random": 160.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.044713133499997, 46.331198202 ], [ -124.005317905200002, 46.330929457499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700, "random": 38.632 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.876750402799999, 47.992102516499997 ], [ -122.859082226400005, 47.989908301900002 ], [ -122.837626119600003, 48.001758278899999 ], [ -122.830088621599998, 48.010798787200002 ], [ -122.830197864599995, 48.021011226699997 ], [ -122.819662877499994, 48.04931957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000, "random": 75.402 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322813391899999, 48.435726219899998 ], [ -122.317486779500001, 48.435666194200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000, "random": 8.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.815000193800003 ], [ -122.485965163399996, 48.833349154399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800, "random": 59.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.495709623500005, 48.697630287400003 ], [ -122.488916339599996, 48.702409161 ], [ -122.499879326400006, 48.710301255700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900, "random": 77.178 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.387443636200004, 47.004675303699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000, "random": 87.133 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.513577041800005, 46.628489658200003 ], [ -120.500959157099999, 46.623267507500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000, "random": 19.736 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.157000635700001, 47.765024263 ], [ -122.150880994199994, 47.779603159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000, "random": 37.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207468784100001, 47.820115982099999 ], [ -122.2074577992, 47.821711911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000, "random": 166.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334422739100006, 47.441651558300002 ], [ -122.333948725900001, 47.447507310299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600, "random": 40.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319926556499993, 46.3750583048 ], [ -120.3201578547, 46.371338407499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000, "random": 6.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334493912699998, 48.337354783899997 ], [ -122.335932665900003, 48.347174658900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620, "random": 172.798 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497669879300005, 46.558356832400001 ], [ -122.4954759572, 46.5519074288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000, "random": 139.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431338853400007, 48.446287310700001 ], [ -122.413129962100001, 48.450215427099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600, "random": 11.63 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.848015462500001, 46.9435702245 ], [ -123.817306757200001, 46.9516445414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000, "random": 15.019 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486049226399999, 48.804308499100003 ], [ -122.486045841800006, 48.807775980499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000, "random": 198.441 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296379117300006, 47.386520195199999 ], [ -122.294752189299999, 47.3943368889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700, "random": 31.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.729444855200001, 46.685617088800001 ], [ -123.729377121900001, 46.686629520799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000, "random": 120.913 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344589742099998, 47.702170326100003 ], [ -122.344621017700007, 47.705063887500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000, "random": 129.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186214256599996, 47.672270169299999 ], [ -122.185288907399993, 47.674292900899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000, "random": 107.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.649304439100007, 45.650350070899997 ], [ -122.6469881652, 45.649510166799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200, "random": 71.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.822628386199995, 45.822990394900003 ], [ -120.812260239500006, 45.822992682799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480, "random": 136.956 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.308445228899998, 46.758407436 ], [ -118.292762753600002, 46.764096650699997 ], [ -118.286718814, 46.774083295099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100, "random": 67.422 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297200401500007, 46.953190535499999 ], [ -122.297950785699996, 46.980094485599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000, "random": 172.561 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229321239900003, 47.184349968100001 ], [ -122.229301542100004, 47.180660177199996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300, "random": 43.398 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.740655286700004, 46.778157634499998 ], [ -123.738474948, 46.794769198499999 ], [ -123.7460823296, 46.798760494200003 ], [ -123.7468410221, 46.804272677599997 ], [ -123.719861257900007, 46.829680921799998 ], [ -123.719344868899995, 46.842988622500002 ], [ -123.709325860899995, 46.860369718599998 ], [ -123.710861781600002, 46.867079880799999 ], [ -123.706218593200006, 46.8779876268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000, "random": 65.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411153862700004, 47.713375171899997 ], [ -117.4111252748, 47.7150977748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000, "random": 132.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.383322670299997 ], [ -122.221482003800006, 47.3825173806 ], [ -122.206509130100002, 47.372560948100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000, "random": 151.053 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.287114971500003, 47.8209339215 ], [ -122.275545727899996, 47.820914372499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200, "random": 186.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.097893087100005, 47.657305852199997 ], [ -117.949387860200005, 47.658311021199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000, "random": 154.741 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.324938986899994, 47.527130547399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": null, "random": 183.622 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.300607207100001, 47.409654076099997 ], [ -120.302961090799997, 47.409563274699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000, "random": 92.377 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.897607260699999, 46.140453967500001 ], [ -122.899867603100006, 46.1496842122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300, "random": 107.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.450888819400006, 48.973570904 ], [ -119.459484559, 48.995311748799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900, "random": 68.857 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.505479518300007, 47.758430550299998 ], [ -118.481714559400004, 47.7503088944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000, "random": 113.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.688858411699997 ], [ -123.731371050600004, 46.690374335400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000, "random": 64.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.712449603799996, 47.611406311800003 ], [ -122.709777343400006, 47.632488696099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": null, "random": 106.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.148957768100004, 47.762722774899999 ], [ -120.122256524199997, 47.768333715300002 ], [ -120.093945142199999, 47.761873328500002 ], [ -120.077111309399996, 47.762355573599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800, "random": 67.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.240646758099999, 48.402724443700002 ], [ -122.264357131599994, 48.430063418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": null, "random": 185.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853382887400002, 47.231885111 ], [ -119.853366397299993, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000, "random": 140.264 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.668125952899999 ], [ -120.517062986699997, 46.6712561513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000, "random": 121.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.845516085300005, 47.415535475 ], [ -122.846451108899998, 47.424603187199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000, "random": 41.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.187256140599999, 48.152320979800002 ], [ -122.185756288500002, 48.152351143600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000, "random": 165.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.631275782100005, 47.542736967899998 ], [ -122.626972580599997, 47.5417504284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": null, "random": 152.494 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.587783032100006, 47.556146923299998 ], [ -120.550170608499997, 47.5350150951 ], [ -120.513671577099998, 47.535619490199998 ], [ -120.489047915200004, 47.528097962300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000, "random": 26.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704142351399994, 45.644577060899998 ], [ -122.719519990600006, 45.649917745300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800, "random": 90.028 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.751462042399993, 48.988601174099998 ], [ -122.751644395400007, 48.9896016788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000, "random": 149.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298119690099995, 47.502022685199996 ], [ -122.303760564200005, 47.510609425299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700, "random": 165.731 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.293989290900001, 46.082369212300001 ], [ -118.273667244099997, 46.085029912499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300, "random": 175.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142801879199993, 48.773659770499997 ], [ -118.142671519100006, 48.777236292200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000, "random": 5.368 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.310073364900006, 47.7339389204 ], [ -122.297844387, 47.733806907100004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100, "random": 25.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264987750200007, 48.999101576400001 ], [ -122.264959141099993, 49.000030960399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250, "random": 125.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251726872399999, 46.041729002700002 ], [ -117.251525721500002, 46.041766317099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000, "random": 110.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.668693546900002, 48.283922347400001 ], [ -122.666197776800004, 48.284130638100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000, "random": 133.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.474802377900005, 46.589699519299998 ], [ -120.472033946300002, 46.574554882900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": null, "random": 59.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.398285650200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200, "random": 103.91 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.106282358499996, 46.849519700099997 ], [ -124.107970430400002, 46.858858882100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960, "random": 140.72 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.679498242500003, 46.361618515499998 ], [ -122.673496635199996, 46.361284465600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300, "random": 47.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431338853400007, 48.446287310700001 ], [ -122.428358999500006, 48.4448569455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000, "random": 162.285 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201456902100006, 47.194176953499998 ], [ -122.199021370899999, 47.184436357400003 ], [ -122.1869699983, 47.176977667300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000, "random": 103.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.948992860800004, 48.050272209600003 ], [ -122.924021202600002, 48.050093762 ], [ -122.878540130299996, 48.040559161300003 ], [ -122.867162067899997, 48.0307219954 ], [ -122.8622427496, 48.016476719099998 ], [ -122.863957586, 48.009572551600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700, "random": 100.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.908506061500006, 46.146702232199999 ], [ -122.9093031811, 46.144613716499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000, "random": 112.546 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.765158587800002, 47.473214056700002 ], [ -121.748260992300004, 47.473255323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700, "random": 15.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.720699274200001 ], [ -122.202201079100007, 48.746018506699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000, "random": 194.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.127785851400006, 47.2236494996 ], [ -123.126591027299995, 47.200112170099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360, "random": 82.848 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.642228519900002 ], [ -118.552551361799999, 46.644788750300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600, "random": 67.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.939310191399997, 46.196885705 ], [ -119.917262878299994, 46.191692043800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250, "random": 178.345 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.699124298900003, 47.370913265299997 ], [ -118.692013021700006, 47.379163309900001 ], [ -118.683686833400003, 47.415365733500003 ], [ -118.712923261200004, 47.426961387 ], [ -118.774183369900001, 47.47212032 ], [ -118.784000054700002, 47.472842312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000, "random": 167.767 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.649510166799999 ], [ -122.634028489399995, 45.6462602442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200, "random": 35.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.348789402500003, 48.270258328799997 ], [ -124.346379688300004, 48.267524864899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400, "random": 188.106 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379606535099995, 47.811428451799998 ], [ -122.380348873100004, 47.809725424200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300, "random": 135.086 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.487987734300006, 48.674750813800003 ], [ -122.495709623500005, 48.697630287400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200, "random": 43.985 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.385447165200006, 47.948955410099998 ], [ -124.385422505199998, 47.9505814332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000, "random": 99.483 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.198250392399999, 47.447197230199997 ], [ -122.201270292199993, 47.448793830500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300, "random": 157.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.625942597700003, 46.931430109600001 ], [ -122.620784164200003, 46.934374699400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800, "random": 167.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.741461706699994, 48.054927261899998 ], [ -117.741382096899997, 48.056948228099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700, "random": 143.801 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.191242888199994, 47.242935812799999 ], [ -123.177700826099993, 47.252309208900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800, "random": 169.808 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385518978199997, 45.582108216400002 ], [ -122.385791668799996, 45.580608216400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600, "random": 189.324 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321912505200004, 48.920192245499997 ], [ -122.321748363099999, 48.934759017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000, "random": 8.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.878180766299998 ], [ -122.203649239900002, 47.8781466533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000, "random": 108.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111652555800006, 48.091880012300003 ], [ -122.113000581700007, 48.151740135399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980, "random": 14.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.289666681599996, 45.697135679500001 ], [ -121.265757964399995, 45.711153535199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000, "random": 54.058 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.887483816100001, 46.446560103400003 ], [ -122.883989153599998, 46.470894437200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100, "random": 169.527 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.025496558200004, 46.176554459099997 ], [ -123.015518639700005, 46.171407070599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100, "random": 9.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.871835006699996, 46.234767102799999 ], [ -123.875069146900003, 46.241169451399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200, "random": 103.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.425480768499995, 46.2734329699 ], [ -119.400146886499996, 46.2808655483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000, "random": 84.785 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.339444431899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000, "random": 55.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.423954462799998 ], [ -122.335452365600005, 47.433953091600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500, "random": 75.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.957186697400005, 46.712643048799997 ], [ -122.957660988499995, 46.7115370036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000, "random": 33.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.243057706499997 ], [ -122.349936357600001, 47.243030334799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000, "random": 81.089 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588445244300004, 48.8674825234 ], [ -122.588656535200002, 48.885036555799999 ], [ -122.591845204199998, 48.889032620599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900, "random": 139.555 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.811811120300007, 46.365574241 ], [ -123.802603124800001, 46.376002249599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400, "random": 120.357 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.912557676899993, 46.099909023800002 ], [ -118.907754209299995, 46.0783797271 ], [ -118.909947142199997, 46.058308654699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500, "random": 46.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.079932052299995, 46.911435068899998 ], [ -117.078564578300004, 46.916863749100003 ], [ -117.088242708099997, 46.922427921100002 ], [ -117.088840978700006, 46.92764545 ], [ -117.100853582900001, 46.939439698900003 ], [ -117.089517337299995, 46.952695673299999 ], [ -117.091558463699997, 46.962297936500001 ], [ -117.106181593599999, 46.9621618746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000, "random": 49.173 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960202830200004, 47.0399823411 ], [ -122.947829976099996, 47.035821079100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": null, "random": 6.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.262067483300001, 47.638792737300001 ], [ -119.2528967959, 47.648337193300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100, "random": 114.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.688859129400001, 46.888362931400003 ], [ -122.677566838800004, 46.898679828799999 ], [ -122.653175096499993, 46.907216632699999 ], [ -122.625942597700003, 46.931430109600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000, "random": 150.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.682461222599997, 47.527847209699999 ], [ -122.685128998600007, 47.527235927900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000, "random": 89.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.419560291500005, 47.652634740700002 ], [ -117.415831441, 47.652657702600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000, "random": 50.064 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346227490700002, 47.777795554199997 ], [ -122.345578705600005, 47.780681488900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500, "random": 30.899 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.704647052599995, 46.575601790199997 ], [ -122.693336633499996, 46.576760556799996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000, "random": 197.71 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.928033390699994, 47.189314567899999 ], [ -120.9071870107, 47.184801595899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210, "random": 180.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.691379497599996, 47.2616081181 ], [ -118.690909899700003, 47.275779749199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200, "random": 21.593 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.106181593599999, 46.9621618746 ], [ -117.120126662299995, 46.971134931800002 ], [ -117.120109916499999, 46.978540374 ], [ -117.126189047500006, 46.982384562 ], [ -117.124753048399995, 46.988998379100003 ], [ -117.133198237800002, 46.9962242171 ], [ -117.133319862099995, 47.006823296900002 ], [ -117.142039298100002, 47.007076338799997 ], [ -117.143037231799994, 47.013949521800001 ], [ -117.149085764800006, 47.018058777699999 ], [ -117.145822696300002, 47.024883235200001 ], [ -117.153145931200001, 47.029842948800002 ], [ -117.154559089200006, 47.039676186900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200, "random": 49.397 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.755786355400005, 46.7871441721 ], [ -118.740215335200006, 46.796289770800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000, "random": 6.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.101902878499999, 47.463429943 ], [ -123.115033679899994, 47.462147459299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500, "random": 32.156 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.987643918900005, 47.202569875 ], [ -121.984257470599999, 47.200949296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": null, "random": 125.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.948540106799996, 47.015559494599998 ], [ -119.939367330300001, 47.026315604300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000, "random": 154.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.426290922600003, 47.225964252 ], [ -122.427658785600002, 47.228320779900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200, "random": 44.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.363705522499998, 46.879882787699998 ], [ -117.346081624799993, 46.8885837829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000, "random": 37.968 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.258386957400006, 47.8454224344 ], [ -122.252009338299999, 47.857141929100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000, "random": 101.319 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.324644617899999 ], [ -122.604669340599997, 47.337400484 ], [ -122.612537009, 47.354407756500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220, "random": 43.464 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.192879460900002, 47.478116615700003 ], [ -118.250105687200005, 47.4783678971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600, "random": 149.728 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.994043556799994, 47.223727202900001 ], [ -121.000623798800007, 47.225756175800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000, "random": 21.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.709870923099999, 48.252375046899999 ], [ -122.699315561399999, 48.259360944199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100, "random": 85.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.674267565099996, 48.519739794400003 ], [ -120.656283470700004, 48.524243667199997 ], [ -120.642462817899997, 48.514664508300001 ], [ -120.645728382200005, 48.5241251482 ], [ -120.630991237800004, 48.548929906399998 ], [ -120.635335244199993, 48.562586263299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": null, "random": 138.882 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.490023690499996, 47.608153128700003 ], [ -119.463563905100003, 47.619693369099998 ], [ -119.405551403199993, 47.6207224415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000, "random": 146.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.914223824800004, 46.952800067 ], [ -122.928973282499996, 46.952792743899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000, "random": 122.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.326926969300004, 47.529118855599997 ], [ -122.332482108500002, 47.534523388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000, "random": 116.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347331628500001, 47.652771084299999 ], [ -122.347271149400001, 47.653986720200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200, "random": 57.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.207861427400005, 46.811573174300001 ], [ -119.197493669699995, 46.811423551700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370, "random": 134.193 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710111471299996, 47.757920299600002 ], [ -118.709147899900003, 47.759454432799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000, "random": 55.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.562387903599998, 47.115388587399998 ], [ -122.552696417299998, 47.121026171899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000, "random": 8.455 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351939517100007, 48.916026991700001 ], [ -122.347169334100002, 48.919529469799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800, "random": 111.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.346819229800005, 47.670965818100001 ], [ -117.344680786799998, 47.671728963900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000, "random": 62.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.346235717300004, 48.421707577399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500, "random": 156.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.294364747900005, 46.578394847399998 ], [ -123.285299971599997, 46.585682634100003 ], [ -123.275877446, 46.601635138100001 ], [ -123.274118186400003, 46.620403917600001 ], [ -123.279970455099999, 46.629098702900002 ], [ -123.251494599200001, 46.630101903400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700, "random": 171.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.347624507399999, 48.055953127199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700, "random": 157.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690592520199999, 47.504065769900002 ], [ -117.692970777599996, 47.5042331597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900, "random": 162.991 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.950269737399999 ], [ -117.331775249499998, 46.959163964399998 ], [ -117.322818839500002, 46.967879378500001 ], [ -117.324149951099997, 46.973314033699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000, "random": 122.943 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.024659802599999, 47.644263262 ], [ -122.010361091899995, 47.639842481800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000, "random": 172.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.322505603700002 ], [ -122.354854885099996, 47.323674358600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100, "random": 106.304 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.692231093100006, 47.333315666600001 ], [ -118.678249238600003, 47.332770853600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": null, "random": 117.757 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.131032577399999 ], [ -119.277783324799998, 47.131652171799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100, "random": 10.088 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.980184742099993, 48.091167015099998 ], [ -121.979611987799998, 48.090995406899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000, "random": 105.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.046769006600002, 47.190672131600003 ], [ -121.038355446799997, 47.182166446799997 ], [ -121.007230255699994, 47.1840617967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200, "random": 156.881 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.664030351799994, 46.187236132099997 ], [ -119.702656278800006, 46.187511225199998 ], [ -119.705876784599994, 46.190218696099997 ], [ -119.706586938100003, 46.205078869499999 ], [ -119.716955895, 46.1992803057 ], [ -119.727638469300004, 46.208586048599997 ], [ -119.742631921599994, 46.20699312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000, "random": 185.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.260355003699999, 47.8200633469 ], [ -122.254854845, 47.825197281100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000, "random": 131.805 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.445297398199997, 48.7767299988 ], [ -122.430273952899995, 48.782618922300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000, "random": 83.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.834496190699994, 47.4399094921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000, "random": 34.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.482808032700007, 47.717963365300001 ], [ -117.489909530399999, 47.721909145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000, "random": 45.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.995992353700004, 46.561228338900001 ], [ -118.985089341, 46.573222517700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300, "random": 82.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.591078218299998, 48.349487973 ], [ -119.564575694300004, 48.367474039699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800, "random": 151.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223579115199996, 47.616455505799998 ], [ -117.223590741300001, 47.620646532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000, "random": 104.276 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.232938177099996, 47.303522884400003 ], [ -122.227424004400007, 47.30291529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620, "random": 18.869 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.730232978100005, 48.634915810899997 ], [ -118.734073830100002, 48.640476501099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": null, "random": 44.864 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.091568875699998 ], [ -119.134440507700006, 47.088984407700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000, "random": 187.444 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.051875352500005, 47.545388803500003 ], [ -122.041144706599994, 47.542865930700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000, "random": 110.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.165440596500005, 47.358027944100002 ], [ -122.161550008099994, 47.357992697299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100, "random": 150.541 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.679254322399999, 48.501561491799997 ], [ -122.678125457199997, 48.506689568200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": null, "random": 51.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228219080299993, 47.619337377400001 ], [ -120.227703042800002, 47.624133213699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620, "random": 184.629 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377077820300002, 46.155161435 ], [ -123.376808335, 46.160080238399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": null, "random": 128.036 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.342171066899994, 47.933953057300002 ], [ -119.269229067799998, 47.949993130099998 ], [ -119.182919095299994, 47.975983726400003 ], [ -119.116579822199995, 47.973212309799997 ], [ -119.044526764699995, 47.980223996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700, "random": 42.744 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.714130412800003 ], [ -121.736603192399997, 45.698763389600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700, "random": 114.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.829348175700005, 45.7148576644 ], [ -121.792484011300004, 45.716168026200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000, "random": 23.519 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294069570399998, 47.160493451299999 ], [ -122.295977065599999, 47.161081479099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000, "random": 172.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373428712899994, 47.025255627900002 ], [ -122.395343726899995, 47.050702173600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700, "random": 34.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.920396291100005, 47.682901991 ], [ -121.936574460800003, 47.687389638399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": null, "random": 34.852 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.102554608299997 ], [ -119.685372148200003, 48.104020449099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800, "random": 99.162 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.259541705700002, 48.249031188 ], [ -124.255117614699998, 48.243497388599998 ], [ -124.25782102, 48.235749494700002 ], [ -124.248701245700005, 48.213043931800001 ], [ -124.249669383, 48.206221953 ], [ -124.233746447800002, 48.1994776202 ], [ -124.216417290199999, 48.183723047900003 ], [ -124.214900463899994, 48.176768044100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": null, "random": 151.781 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.743242646599995, 48.076781011599998 ], [ -119.780711497, 48.084428763399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000, "random": 164.729 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.081556476599999, 47.3772542241 ], [ -122.051516255099997, 47.391659997799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": null, "random": 144.295 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.650674805500003, 47.991201863400001 ], [ -119.656563119799998, 47.9990210152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500, "random": 196.294 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364248234599998, 46.889589876499997 ], [ -117.360091659199995, 46.897778200200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000, "random": 40.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.286498895299999, 48.155695823199999 ], [ -122.244986940100006, 48.156605492600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100, "random": 184.273 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475223036800003, 46.251686108599998 ], [ -119.471913238300004, 46.252522673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000, "random": 98.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.628745336400002, 46.478021616299998 ], [ -117.605679964900006, 46.474828890700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": null, "random": 64.793 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.787897360599999, 47.764215841499997 ], [ -120.773033534600003, 47.767278769800001 ], [ -120.746654179499998, 47.763538214299999 ], [ -120.739399423699993, 47.756380132700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400, "random": 192.538 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356201937600005, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300, "random": 9.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.840788556200003 ], [ -123.2217410927, 46.8391963722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000, "random": 73.888 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.105537798300006, 47.997887191499998 ], [ -122.106375590599995, 48.003220730300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000, "random": 111.115 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.037604776699993, 47.3579773831 ], [ -122.027992805500006, 47.359680347900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000, "random": 54.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.821183169599998 ], [ -122.297804080899994, 47.8210601157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000, "random": 19.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.427613443799999, 47.1581515823 ], [ -122.406884499699999, 47.158958883700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000, "random": 80.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.464867018099994, 47.234548287499997 ], [ -122.472210814600004, 47.235116731600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000, "random": 172.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899867603100006, 46.1496842122 ], [ -122.901294042700002, 46.153556146900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000, "random": 10.573 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217875041900001, 47.467115633500001 ], [ -122.217877603399998, 47.4696365374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710, "random": 151.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.056749767100001 ], [ -122.696519453299999, 48.061245007099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000, "random": 195.656 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.366358296100003, 47.821482107900003 ], [ -122.364278768800006, 47.821506704400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000, "random": 164.056 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.644148320200003, 47.642923887800002 ], [ -117.603896853600006, 47.6429304571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200, "random": 89.429 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.734938343799996, 48.989098350900001 ], [ -122.734957906099993, 48.990539037799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900, "random": 131.054 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364903450300005, 46.877276230200003 ], [ -117.364816528700004, 46.879029799500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000, "random": 64.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137654272099994, 47.981326184399997 ], [ -122.121769870700007, 47.994857270600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": null, "random": 28.96 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.117929867499996, 46.984670877500001 ], [ -119.118580357699997, 46.992286446 ], [ -119.1257014177, 46.999039541099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000, "random": 152.897 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.470989273200004, 46.584876290399997 ], [ -120.467404367699999, 46.5847787764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000, "random": 150.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.671705466099993, 48.941482030899998 ], [ -122.720192553399997, 48.972556366299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700, "random": 123.425 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.882889924699995, 47.954483349299998 ], [ -122.886536485, 47.946045573299997 ], [ -122.885330176300002, 47.913927091600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900, "random": 23.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181781152799999, 46.731695621 ], [ -117.180984819399995, 46.730694767199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600, "random": 129.507 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.141675486099999, 45.591480020900001 ], [ -122.032032014600006, 45.6195630227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100, "random": 124.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.198122559400005, 47.209654990099999 ], [ -124.212152107500003, 47.231032798699999 ], [ -124.214479951900003, 47.238986616600002 ], [ -124.209016989299997, 47.243407156400004 ], [ -124.212563024299996, 47.247972246800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": null, "random": 61.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.297025515100003, 47.511100222800003 ], [ -120.297223348299994, 47.513955855399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990, "random": 132.671 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.048097541100006, 46.302051926899999 ], [ -124.043770745100005, 46.303261111499999 ], [ -124.044727134499993, 46.308126455599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000, "random": 158.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.627228668900003, 46.976553239399998 ], [ -123.617583253099994, 46.9743856487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000, "random": 96.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.659302034500001 ], [ -122.299961998800001, 47.660377680700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000, "random": 35.379 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.514687829300001, 48.101668274700003 ], [ -123.503821823500004, 48.102754873599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000, "random": 124.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.646332902200001, 47.565068923399998 ], [ -122.643780328399998, 47.565060084300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200, "random": 28.663 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.635335244199993, 48.562586263299998 ], [ -120.624742220200005, 48.581611522800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000, "random": 163.168 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345113336899999, 47.734153058499999 ], [ -122.345252791700005, 47.741452447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660, "random": 199.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.913818841199998 ], [ -124.581639639900004, 47.917669780399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000, "random": 78.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302810058600002, 47.929817519099998 ], [ -122.306318668, 47.933030505200001 ], [ -122.305106573299994, 47.943574850099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": null, "random": 72.12 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.101776099600002 ], [ -119.251785278900002, 47.1061646856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000, "random": 125.788 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.103607615800001 ], [ -122.207819198600006, 47.09966335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000, "random": 87.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.640386359700003, 45.712503753900002 ], [ -122.653858604500002, 45.722849267100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": null, "random": 45.012 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.479148192699995, 47.369122823700003 ], [ -119.483207461299997, 47.3815237106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100, "random": 183.343 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322313601900007, 48.340974526 ], [ -122.312772597600002, 48.340779633499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000, "random": 134.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.967097065800004, 46.649895724 ], [ -122.976871810800006, 46.656330602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900, "random": 31.56 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.431723711900005, 48.118274773099998 ], [ -123.429972983599995, 48.117565995200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": null, "random": 160.385 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436268802900003, 47.572640579800002 ], [ -119.402481413299995, 47.5956212233 ], [ -119.383187235500003, 47.596946528099998 ], [ -119.332058296699998, 47.626482681200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980, "random": 190.639 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.254619604499993, 47.483794136199997 ], [ -118.254686200500004, 47.485610696400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000, "random": 139.94 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.435892029900003 ], [ -122.325733290200006, 48.435758576600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000, "random": 195.779 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231061585399999, 47.379822712200003 ], [ -122.231066910699994, 47.381651080899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000, "random": 55.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315042102800007, 47.158578655 ], [ -122.298407559699996, 47.160127157200002 ], [ -122.296589390400001, 47.169780002099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000, "random": 7.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278134291900002, 47.503810530099997 ], [ -122.2798420437, 47.505773472500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000, "random": 172.482 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297946799100004, 47.261963874400003 ], [ -122.308076516400007, 47.275568560899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000, "random": 158.099 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.505773472500003 ], [ -122.284413691400005, 47.511800325499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900, "random": 90.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174511757399998, 47.576419745199999 ], [ -122.176526323399997, 47.583935181100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000, "random": 141.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.425146652500004, 48.786557197400001 ], [ -122.415699133900006, 48.794193523300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000, "random": 166.485 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.367891931399996, 48.654517081400002 ], [ -122.373754085399995, 48.667369821299999 ], [ -122.392959171699999, 48.676777316299997 ], [ -122.395917154599999, 48.686673301799999 ], [ -122.407309262599995, 48.690169743399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700, "random": 116.81 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.730817493900005, 45.655963797 ], [ -122.743899810299993, 45.669430911699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000, "random": 195.647 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.215332571199994, 47.214509543600002 ], [ -118.115096241100005, 47.244354989400001 ], [ -118.082052294199997, 47.257865115199998 ], [ -118.023491591799996, 47.2986486916 ], [ -117.976408319699999, 47.306520851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000, "random": 16.066 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.511115720299998, 47.250253162900002 ], [ -122.515075674499997, 47.256877502199998 ], [ -122.521938566900005, 47.258344291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000, "random": 155.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486078625499999, 48.784378007400001 ], [ -122.486004744400006, 48.795206026899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000, "random": 36.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.964072776199998, 47.312061945700002 ], [ -117.913429381499995, 47.336114276700002 ], [ -117.879740662399996, 47.369764059799998 ], [ -117.845044421899999, 47.392821286699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000, "random": 130.451 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.840044763199998 ], [ -122.288664435200005, 48.843341019900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": null, "random": 198.65 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.591499650299994, 47.005676041599997 ], [ -120.589636086599995, 47.005992688100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800, "random": 193.624 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.412508613300005, 47.418857502400002 ], [ -121.411428730899999, 47.405602473 ], [ -121.398139108899997, 47.395175907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000, "random": 64.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883989153599998, 46.470894437200002 ], [ -122.880379792400007, 46.482924602099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000, "random": 14.792 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.811246994599998, 46.296957639399999 ], [ -122.798851736299994, 46.3024562624 ], [ -122.794617451799994, 46.311135123900002 ], [ -122.775306882099997, 46.318841576600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000, "random": 30.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.033489674500004, 47.383822299599998 ], [ -122.045389357700003, 47.390333093300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000, "random": 167.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.018297171699999, 47.341006772299998 ], [ -122.019444770600003, 47.354386546299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700, "random": 14.177 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.205514688400001 ], [ -122.659076343699994, 48.208690553399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000, "random": 137.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292406555300005, 47.820973150699999 ], [ -122.292350839099996, 47.817337438599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400, "random": 21.552 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.158562931299997, 47.042143090300002 ], [ -124.1580458631, 47.044601999400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": null, "random": 173.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.300634945400006, 47.424903109799999 ], [ -119.276295148700001, 47.427504391500001 ], [ -119.259466273499996, 47.425004990399998 ], [ -119.21615798, 47.432584836 ], [ -119.158737554499993, 47.419138251900002 ], [ -119.132821385499994, 47.418328842900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000, "random": 195.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485438928199997, 48.935124034799998 ], [ -122.485447935, 48.939132261799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000, "random": 103.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.255900186800005, 47.246006102899997 ], [ -122.259303365400001, 47.257024668299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700, "random": 187.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.524710521700001, 48.585216161399998 ], [ -119.508790073300005, 48.612612715200001 ], [ -119.474010406100007, 48.644148752900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000, "random": 166.843 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197061164900006, 47.422016212400003 ], [ -122.196962788500002, 47.441505653500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000, "random": 38.11 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269938081700005, 47.670837953899998 ], [ -122.263980777200004, 47.675082619299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000, "random": 31.637 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609635826599998, 47.534003386099997 ], [ -122.601757504, 47.533987933100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000, "random": 163.818 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.725374037199998, 47.067929690100001 ], [ -122.709003421099993, 47.069723781599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000, "random": 182.521 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.616370594100005, 45.647869762200003 ], [ -122.610708492499995, 45.647880158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000, "random": 127.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244249076299994, 47.385615921800003 ], [ -122.231398764900007, 47.396166360400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200, "random": 23.195 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007894310200001, 46.211723726800003 ], [ -118.971631410100002, 46.2117605619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700, "random": 84.558 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.512349200200006, 48.403682629400002 ], [ -119.519587863200002, 48.4074511711 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200, "random": 38.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192044511299997, 46.763148214899999 ], [ -122.11013683, 46.753453195299997 ], [ -122.030912055399995, 46.758700120299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000, "random": 117.407 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.278115035200003, 46.258741845099998 ], [ -119.248590292599999, 46.260915772899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000, "random": 110.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.032670722299997, 47.085083518799998 ], [ -123.020834266600005, 47.078057988899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000, "random": 151.826 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.315006217600001, 46.380740113900004 ], [ -120.315010283700005, 46.3792337657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100, "random": 31.838 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.490097050299994, 46.841035463099999 ], [ -117.485569689, 46.846203803100003 ], [ -117.472855002599999, 46.848499236499997 ], [ -117.449174040700001, 46.862006864500003 ], [ -117.422903828399996, 46.865651362800001 ], [ -117.3996057791, 46.874945813099998 ], [ -117.387790361200004, 46.886648408900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": null, "random": 51.758 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.093027113299996, 47.839093077199998 ], [ -120.089820147799998, 47.839707846700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400, "random": 113.079 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.030464217800002, 46.1645370289 ], [ -123.026166157099993, 46.162222024899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000, "random": 50.666 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.116764399600001, 48.151631423700003 ], [ -122.113042958099996, 48.151495118200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400, "random": 189.682 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.142984832899998, 47.505758847899997 ], [ -122.141418465699999, 47.506199375599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100, "random": 54.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190408600699996, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000, "random": 13.616 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.234841367100003, 47.588418258 ], [ -122.220352926700002, 47.582451626400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300, "random": 134.277 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.805370855600003, 45.826504570600001 ], [ -120.803937911800006, 45.826466493799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000, "random": 31.68 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.483975944600004, 47.158948731 ], [ -122.472532295199997, 47.170111582799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000, "random": 48.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.652939327799999, 48.369485278299997 ], [ -122.651197780100006, 48.3765935554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000, "random": 177.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335452365600005, 47.433953091600003 ], [ -122.334422739100006, 47.441651558300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000, "random": 198.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.483284069700005, 48.782474480200001 ], [ -122.495889545400004, 48.783500549099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700, "random": 125.24 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174249895399996, 47.386765967199999 ], [ -117.173724844299997, 47.422916251300002 ], [ -117.150480259600002, 47.430404979599999 ], [ -117.142610203100006, 47.437815548300001 ], [ -117.142135434799997, 47.4475636134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000, "random": 93.354 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334332897300001, 47.734144514599997 ], [ -122.328924299099995, 47.734101792600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900, "random": 96.495 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.556012713800001, 46.475141642799997 ], [ -117.481130804700001, 46.467320462700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100, "random": 116.583 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482170985500005, 46.678401852699999 ], [ -120.482692837, 46.680783935599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": null, "random": 187.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.708024373599997, 47.203648771300003 ], [ -120.698400881, 47.209642341 ], [ -120.700699732900006, 47.215577636 ], [ -120.694781049100001, 47.236991933100001 ], [ -120.697644300899995, 47.243371084800003 ], [ -120.692343656399999, 47.250618917799997 ], [ -120.701112210299996, 47.298624756899997 ], [ -120.695750097499996, 47.304468245199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000, "random": 94.745 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.531588126099997 ], [ -122.017149371100004, 47.533899271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000, "random": 168.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629176730099999, 47.602542402200001 ], [ -122.628891718899993, 47.606866331900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000, "random": 180.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.323599047100004, 48.097567697800002 ], [ -123.298724590700004, 48.096108532499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650, "random": 109.362 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726748559900003, 46.437357559500001 ], [ -122.717766014299997, 46.430033826600003 ], [ -122.708209588200006, 46.429779552600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000, "random": 186.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292350839099996, 47.817337438599999 ], [ -122.292335809600004, 47.816111394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000, "random": 36.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.667631105300003, 47.654718396200003 ], [ -122.675936023800006, 47.659448765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820, "random": 49.367 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.168613105199995, 48.592225908400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900, "random": 96.543 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054448335299995, 46.341189423 ], [ -117.055967899899997, 46.341815561799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000, "random": 9.024 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.274684021200002, 48.273037025599997 ], [ -122.312425316399995, 48.305289375900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000, "random": 99.244 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.494389272800007, 45.589055721699999 ], [ -122.479857033800002, 45.585751721199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000, "random": 40.049 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.108407210500005, 47.919607097499998 ], [ -122.107704590799997, 47.928863465200003 ], [ -122.100879718, 47.9337909869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000, "random": 144.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246127238300005, 46.240989423400002 ], [ -119.235297938100004, 46.234123724200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100, "random": 46.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076818303500005, 46.908707466800003 ], [ -117.076752340900001, 46.909721281499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": null, "random": 84.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.495989393100004, 46.923752129199997 ], [ -120.430333448, 46.888163857599999 ], [ -120.421200501900003, 46.872488978100002 ], [ -120.399685686200002, 46.861410143599997 ], [ -120.392986140800005, 46.850372226799998 ], [ -120.3829623596, 46.845944419399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000, "random": 32.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217459721400004, 47.297124874700003 ], [ -122.1920375216, 47.288368397699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200, "random": 135.437 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.928703781500005, 47.060152495700002 ], [ -123.930280839700004, 47.061828455200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000, "random": 62.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899190315699997, 46.144094870899998 ], [ -122.898255787099998, 46.144421575199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800, "random": 130.358 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.364424330800006, 47.894831987300002 ], [ -124.380610664900004, 47.8957632885 ], [ -124.3925708525, 47.907732108799998 ], [ -124.4096776218, 47.9282853343 ], [ -124.401783262500004, 47.934588286900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000, "random": 15.721 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.396041911699996, 47.002634929 ], [ -123.391268319600002, 47.004069776800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100, "random": 21.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.000623798800007, 47.225756175800001 ], [ -121.002991199700006, 47.22593134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600, "random": 137.496 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.434299490300006, 47.304822344400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000, "random": 28.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.690459375499998, 46.973761333699997 ], [ -123.6476283043, 46.976564048599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500, "random": 76.842 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.346379688300004, 48.267524864899997 ], [ -124.306414616599994, 48.261716417199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800, "random": 14.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436673530199997, 48.948907181300001 ], [ -119.4441638638, 48.956316748600003 ], [ -119.450888819400006, 48.973570904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000, "random": 64.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741565261700003, 45.906180137500002 ], [ -122.742501081900002, 45.905662710400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100, "random": 110.771 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.607613926300004, 47.472278094 ], [ -117.596764177200001, 47.476342927099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900, "random": 92.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.981077636899997, 45.663863346 ], [ -120.954162518299995, 45.662902425299997 ], [ -120.940825486899996, 45.666529629400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270, "random": 121.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.974306665299999 ], [ -118.6636857174, 46.999816557599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": null, "random": 37.118 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.605898204900001, 47.244359302399999 ], [ -119.600328075299998, 47.249977530700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": null, "random": 107.524 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.035163557299995, 47.085426001800002 ], [ -118.881472127500004, 47.086916141899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000, "random": 150.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.373695657499994, 47.795196513100002 ], [ -122.370072911299999, 47.792450454899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300, "random": 177.233 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.336470433499997, 48.421250475100003 ], [ -122.336148263300004, 48.417507714499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000, "random": 38.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210984360099999, 47.877210461899999 ], [ -122.206978686499994, 47.878310343700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800, "random": 121.589 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.808398297399997 ], [ -122.570692450600006, 47.803729114699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900, "random": 106.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295683874600002, 46.910147070800001 ], [ -122.281615102200007, 46.925646623799999 ], [ -122.283671996699994, 46.935493017 ], [ -122.280667169599994, 46.940053463399998 ], [ -122.297200401500007, 46.953190535499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": null, "random": 113.446 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.903180645099994, 48.0520592106 ], [ -119.899717106, 48.055065723799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000, "random": 41.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.333948725900001, 47.447507310299997 ], [ -122.328944853899998, 47.443369255100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100, "random": 5.501 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.781279970100002, 46.860815077399998 ], [ -122.712202419899995, 46.876077905300001 ], [ -122.700474082699998, 46.8819430195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600, "random": 107.091 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.932301409600001, 47.6518739395 ], [ -122.938487959100001, 47.641296821200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300, "random": 11.786 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.455703188300006, 46.752654797700004 ], [ -120.452897962099996, 46.761204563900002 ], [ -120.455769459699994, 46.7658039465 ], [ -120.448160540900005, 46.771326237499999 ], [ -120.453802828400001, 46.779077655599998 ], [ -120.450487568699998, 46.788478560400002 ], [ -120.462421480700002, 46.800526586 ], [ -120.445886250900003, 46.800772012199999 ], [ -120.440139215800002, 46.807093327700002 ], [ -120.455331932199996, 46.8189351153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800, "random": 7.263 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.392171147400006, 47.986605199400003 ], [ -122.4022467347, 47.997022132700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000, "random": 28.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670440581099996, 45.631853572600001 ], [ -122.669383742700006, 45.631846962499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000, "random": 76.585 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.536283653500007, 47.130792169400003 ], [ -122.529484328400002, 47.134748182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000, "random": 177.073 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.433074099799995, 47.240304818299997 ], [ -122.434522701299997, 47.243324141099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000, "random": 137.876 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.472033946300002, 46.574554882900003 ], [ -120.472249359299994, 46.567494454399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": null, "random": 65.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.002363671200001, 47.8395520304 ], [ -119.998120266399994, 47.839360396799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000, "random": 75.153 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.106661623500003 ], [ -123.086780999300004, 47.0992170671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000, "random": 45.372 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217836586399997, 47.470858336299997 ], [ -122.217721755, 47.472049768399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000, "random": 122.512 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.347269898199997, 47.664239955699998 ], [ -122.347257021100006, 47.6739649907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000, "random": 123.804 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.377835494599999 ], [ -122.231061585399999, 47.379822712200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900, "random": 162.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.380029153899997, 47.174195565799998 ], [ -117.358463390799997, 47.214502144100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600, "random": 136.132 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.005882445099999 ], [ -117.396414713599995, 47.005315240100003 ], [ -117.416230368399994, 47.000500429100001 ], [ -117.443577852800004, 47.002770102600003 ], [ -117.467199858100003, 47.0097954879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000, "random": 125.515 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.251099789600005, 47.923251180100003 ], [ -122.232887504800004, 47.923352192499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100, "random": 191.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903578295299994, 46.283861002400002 ], [ -122.903076937500003, 46.284254283700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000, "random": 134.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.979061219899997 ], [ -122.190996790900002, 47.980424217200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400, "random": 145.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.918238997499998, 47.185584487900002 ], [ -123.953239554500001, 47.197622027400001 ], [ -123.969523937, 47.221472718599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900, "random": 62.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.162019726300002 ], [ -118.979369534100002, 48.165617216699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600, "random": 48.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.843211788399998, 46.456561604500003 ], [ -122.84688053, 46.444658126500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900, "random": 150.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.005317905200002, 46.330929457499998 ], [ -123.9777350926, 46.332348983099997 ], [ -123.959158209099996, 46.348167717800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900, "random": 51.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.975226715600002, 46.6637302723 ], [ -118.889403680800001, 46.6634446901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100, "random": 189.005 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.055900839800003, 46.375029719799997 ], [ -117.051781073399994, 46.3795878122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300, "random": 174.623 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.553750953800005, 48.099661530200002 ], [ -123.539896056800004, 48.097479742099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000, "random": 126.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.304056684200006, 47.947165397 ], [ -122.301118508399995, 47.948844012800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400, "random": 160.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628925867099994, 47.698701822700002 ], [ -122.622685723800004, 47.702539463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000, "random": 126.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.012286397599993, 46.802428045600003 ], [ -123.007921493, 46.802694032399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000, "random": 83.949 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.649845078799999, 47.508163976699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000, "random": 82.582 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.350048794200006, 47.798025673799998 ], [ -117.348953841300002, 47.801871614299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000, "random": 48.461 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697108961799998, 47.524879573 ], [ -122.699652221400001, 47.5252936288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800, "random": 148.959 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.738143993800001 ], [ -119.177360819200004, 46.741290161400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000, "random": 71.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.264917707699993, 48.264714313900001 ], [ -122.274684021200002, 48.273037025599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000, "random": 27.824 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.189202811599998, 47.3678526781 ], [ -122.181158518399997, 47.3649772586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000, "random": 132.761 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.043046834799995, 47.158505120500003 ], [ -122.036347956, 47.158042872499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400, "random": 21.651 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.355572140199996, 47.978279434 ], [ -122.356192679399996, 47.978819259399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000, "random": 132.021 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.284847670800005, 47.181573349200001 ], [ -122.282889944499999, 47.185892098499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000, "random": 75.013 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.186231877500006, 47.6058898709 ], [ -122.188511970299999, 47.611623862899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000, "random": 77.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.229378595499995, 47.190287898299999 ], [ -122.229321239900003, 47.184349968100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000, "random": 60.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626972580599997, 47.5417504284 ], [ -122.627433367600005, 47.534492499499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000, "random": 19.478 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.299842864399999 ], [ -122.247073417799996, 47.310505541600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700, "random": 124.677 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907890131200006, 46.941803024499997 ], [ -122.907878279900004, 46.947303939299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900, "random": 128.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.467735256400005, 45.715283597800003 ], [ -121.466470167099999, 45.714803707500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230, "random": 84.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.803578175499993, 48.961075513200001 ], [ -117.826045427500006, 48.982554419300001 ], [ -117.831676094800002, 49.0005187362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.170843796300005, 48.428829625399999 ], [ -118.172114409299994, 48.450282224600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100, "random": 44.847 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436000641700005, 48.710984053300002 ], [ -119.406018745500006, 48.764166706899999 ], [ -119.399522232699994, 48.793981232900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800, "random": 149.335 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390362912499995, 47.321634062199998 ], [ -122.370823995099997, 47.328699203200003 ], [ -122.365478030800006, 47.3194849976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300, "random": 152.829 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.384092012699995, 46.206252844399998 ], [ -123.382101974199998, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500, "random": 159.406 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.852153791799999 ], [ -122.5873849699, 47.840113277299999 ], [ -122.583684497899995, 47.813587039799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500, "random": 198.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.814116547099999, 47.773148257300001 ], [ -120.787897360599999, 47.764215841499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000, "random": 145.598 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.964023052599998 ], [ -122.352240221, 48.963632788399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000, "random": 64.493 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185756288500002, 48.152351143600001 ], [ -122.182972372099997, 48.152416491099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": null, "random": 110.34 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.074763273399995, 47.641906708 ], [ -120.071479554600003, 47.648195998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": null, "random": 64.859 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.936793106099998 ], [ -119.010505758400001, 47.939819788299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600, "random": 20.563 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.382957728500003, 45.705115008 ], [ -121.375916228600005, 45.709248454499999 ], [ -121.344323671200002, 45.710894640500001 ], [ -121.306263080700006, 45.705016652399998 ], [ -121.290450982199999, 45.696258645699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000, "random": 21.045 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531897904499999, 45.682684997099997 ], [ -122.507749843100001, 45.684020572100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700, "random": 191.488 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087484261100002, 46.539395298300001 ], [ -117.089258647700007, 46.543182164599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000, "random": 124.292 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.292951033600005, 47.905080688 ], [ -122.293397033700003, 47.910813296699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500, "random": 193.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.283901925600006, 48.305182219599999 ], [ -117.257790597699994, 48.266246552600002 ], [ -117.2411593235, 48.249830436700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400, "random": 22.965 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.742631921599994, 46.20699312 ], [ -119.748601067500005, 46.206079067600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000, "random": 138.914 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.259515049400001 ], [ -119.086751526200004, 46.265575562400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000, "random": 197.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210202773399999, 47.909684149199997 ], [ -122.201995781500003, 47.927137552200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000, "random": 159.069 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.981141874800002, 46.154457643900002 ], [ -122.974844153, 46.151355371900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000, "random": 89.962 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.475978806100002, 46.681083667 ], [ -120.487178151899997, 46.671384763600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000, "random": 142.8 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.271061548700004, 47.6700439942 ], [ -122.269938081700005, 47.670837953899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": null, "random": 69.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.047467202600004, 47.854848015199998 ], [ -120.035624221600003, 47.8496165293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000, "random": 105.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989711786399994, 47.228316551900001 ], [ -121.989767487799995, 47.242794495200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000, "random": 79.126 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.225707636699994, 48.510474068599997 ], [ -122.210439985500003, 48.515958146599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900, "random": 55.458 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.566302510300005, 47.993875943600003 ], [ -117.603813975600005, 48.032440236100001 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.054383254299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000, "random": 23.404 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.942399051199999, 47.530214060600002 ], [ -121.935642047900004, 47.522410772800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900, "random": 142.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690324555299995, 47.561941458900002 ], [ -117.683738198399993, 47.566162133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000, "random": 151.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.677410102099998, 47.563648136099999 ], [ -122.681154462600006, 47.566246198599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000, "random": 69.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334974644100001, 47.5375233364 ], [ -122.335002743900006, 47.5378934087 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": null, "random": 16.889 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.384124385099994, 47.815340295200002 ], [ -119.362657404499998, 47.815367954899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100, "random": 49.445 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.314218402500003, 46.414630410199997 ], [ -120.314606942300003, 46.403812259600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500, "random": 162.95 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.715759012199996, 46.348975076199999 ], [ -123.705950597300003, 46.336866644399997 ], [ -123.694991834, 46.332735147599998 ], [ -123.689871589600003, 46.3183120371 ], [ -123.659298985600003, 46.333068984400001 ], [ -123.640540398400006, 46.334941224399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000, "random": 83.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.307978405499995, 48.435595460800002 ], [ -122.296157619300004, 48.435565171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000, "random": 78.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.057416806500001, 46.419927330900002 ], [ -117.046894581499998, 46.419929593500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000, "random": 112.121 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294736287700005, 47.2575680773 ], [ -122.297946799100004, 47.261963874400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500, "random": 182.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.988260855299998, 48.273541100099997 ], [ -121.961003822500004, 48.268461116300003 ], [ -121.931899796400003, 48.270673013500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000, "random": 162.096 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.106683647099999 ], [ -123.397896310299998, 48.106192363300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000, "random": 54.366 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.516019994299995, 47.395384207500001 ], [ -121.490590750600006, 47.396883244900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900, "random": 168.231 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.043933314200004, 48.184029565199999 ], [ -117.0441181005, 48.178055343499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000, "random": 34.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.157668452699994, 47.654046720899998 ], [ -118.156594273899998, 47.654047759699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000, "random": 166.735 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.899266838100004, 46.180291897499998 ], [ -122.895016053500001, 46.191009795500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000, "random": 153.061 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293794192500002, 47.082939788600001 ], [ -122.293539254899997, 47.098614527599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900, "random": 46.822 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641301768100007, 46.8104615568 ], [ -117.593064935, 46.813265940900003 ], [ -117.558641708699994, 46.8037170574 ], [ -117.5379557025, 46.808646305899998 ], [ -117.52930964, 46.8231348395 ], [ -117.517805186299995, 46.829215650800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 19.251 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324887521400001, 47.438245710899999 ], [ -120.324544580500003, 47.436711554299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000, "random": 78.165 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.342445297400005, 48.476913573499999 ], [ -122.3416041033, 48.480684650599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000, "random": 5.109 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.664597099299996, 45.671567055700002 ], [ -122.664524259399997, 45.6843405722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": null, "random": 99.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.129590621600002, 47.8811242831 ], [ -120.108461782399999, 47.873871282400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000, "random": 36.915 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411274585200005, 47.653047753300001 ], [ -117.411143579899999, 47.659075543699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000, "random": 152.084 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.243678337199995, 47.757435704 ], [ -122.213526108300002, 47.750497457900003 ], [ -122.209358164500003, 47.758825033100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000, "random": 173.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144185524799994, 47.167459107200003 ], [ -122.117168574499999, 47.165835136200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500, "random": 175.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.704062271799998, 47.552004905099999 ], [ -117.690324555299995, 47.561941458900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400, "random": 22.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.792100750400003 ], [ -118.747204117300001, 46.790029089500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520, "random": 157.948 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.087513180499997, 46.9125608238 ], [ -117.083074089, 46.911444977899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300, "random": 108.714 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.403657352300002, 47.970099866299996 ], [ -124.402715935800003, 47.979570032799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700, "random": 74.998 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.364992514899996, 45.997101925700001 ], [ -122.354729390800003, 46.000879137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000, "random": 32.02 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.099324035400002, 47.139000997399997 ], [ -122.094730493599997, 47.139868914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500, "random": 51.067 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.747620288500002, 46.214015703100003 ], [ -119.743116059200005, 46.21487318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400, "random": 12.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.988874057900006, 47.203160202399999 ], [ -121.987643918900005, 47.202569875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000, "random": 180.08 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.927793161099999, 46.622196574599997 ], [ -122.941476871299997, 46.633570246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": null, "random": 28.438 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.182491657900002 ], [ -119.3489993938, 47.189958653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100, "random": 127.181 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045447888599995, 48.184042304899997 ], [ -117.043933314200004, 48.184029565199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": null, "random": 104.459 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.369219394400005, 47.475868365899998 ], [ -120.346173789399998, 47.470182604800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000, "random": 91.526 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.408349942100003, 47.2391797955 ], [ -122.4000472078, 47.240266890800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000, "random": 14.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300412458799997, 47.3957738513 ], [ -122.298504515100007, 47.39547624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": null, "random": 115.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.813493301400001, 47.703398905199997 ], [ -119.813078488499997, 47.809276636200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000, "random": 152.978 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109321064499994, 47.8989017492 ], [ -122.108407210500005, 47.919607097499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000, "random": 34.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.876647239099995, 46.102739118099997 ], [ -122.883404753700006, 46.113522401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800, "random": 18.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.385791668799996, 45.580608216400002 ], [ -122.385537422400006, 45.579732123100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000, "random": 123.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.686143286399997, 48.2123143699 ], [ -122.6931398543, 48.212309471600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300, "random": 72.254 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.365001117099993, 46.875100319600001 ], [ -117.364967587799995, 46.8759309573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400, "random": 129.85 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.534428898499996, 47.912791220199999 ], [ -124.543249937200002, 47.903258946199998 ], [ -124.5843571045, 47.8989411015 ], [ -124.589609673799998, 47.893574977699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": null, "random": 42.267 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.495252997199998 ], [ -120.305116425799994, 47.526696943499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600, "random": 102.489 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.529840017400005, 47.504901930199999 ], [ -122.524309672900003, 47.504827718400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800, "random": 57.907 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.853127625799999 ], [ -117.645634686, 47.860105265800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300, "random": 54.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.726383728900004, 48.892152279699999 ], [ -122.726659829599996, 48.9068699571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100, "random": 175.033 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.972278891399995, 47.307327865300003 ], [ -117.972667927700002, 47.309471964700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300, "random": 144.399 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.674372320399996, 48.2692255901 ], [ -121.650090085499997, 48.272815312399999 ], [ -121.636073569800004, 48.263767642399998 ], [ -121.608756056199994, 48.255339874599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500, "random": 159.274 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.130963939099999 ], [ -122.099324035400002, 47.139000997399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800, "random": 186.436 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.701501382399996, 47.757762028099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000, "random": 137.245 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.089028105400004, 47.559338976900001 ], [ -122.069555480600002, 47.551632014200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300, "random": 81.919 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.796719230600004, 45.702403201099997 ], [ -120.783342698300004, 45.709177157399999 ], [ -120.731943881600003, 45.717010811400002 ], [ -120.722153623200001, 45.7293069774 ], [ -120.651777994300005, 45.7521047655 ], [ -120.613536037800003, 45.756390915799997 ], [ -120.561045115799999, 45.7497909585 ], [ -120.533222806799998, 45.7346091661 ], [ -120.511460093300002, 45.716637242399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000, "random": 11.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.249430835300004, 47.412208168699998 ], [ -122.248794955299999, 47.432275411299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": null, "random": 56.653 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.896682750599993, 47.232740356299999 ], [ -119.874718310899993, 47.233060459900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000, "random": 127.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.920372202400003, 48.554843041200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800, "random": 56.108 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.384646521899995, 47.448870130499998 ], [ -117.399817400299995, 47.470547998699999 ], [ -117.399775561200002, 47.514428535900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000, "random": 120.727 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137834511600005, 47.804839361 ], [ -122.113749425699993, 47.805010633199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000, "random": 84.973 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.637867173299995, 46.241859079100003 ], [ -119.623147673700004, 46.247388389100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000, "random": 138.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.970843132499994, 46.1276076543 ], [ -122.962783807199997, 46.122637066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000, "random": 176.1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.359198299200003, 47.750275475499997 ], [ -117.365807384299998, 47.7605601689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000, "random": 8.477 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.566849212699999 ], [ -122.339365238799999, 47.5748709959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300, "random": 191.679 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.604161349699993, 46.966113391699999 ], [ -123.600903624799997, 46.974749123099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000, "random": 159.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.181055213699999 ], [ -117.039658043, 48.178021214399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100, "random": 34.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.402715935800003, 47.979570032799998 ], [ -124.392350543099994, 47.989246294799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800, "random": 172.055 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.166103580500007, 47.093467787100003 ], [ -117.182975160300003, 47.104809716799998 ], [ -117.200650561700002, 47.125971467500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000, "random": 114.635 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069332021600005, 46.421228217900001 ], [ -117.073978514199993, 46.426337746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000, "random": 88.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328890954499997, 47.590308791600002 ], [ -122.329127007, 47.5903078499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000, "random": 102.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.202410391199997 ], [ -122.298424995199994, 47.1999364331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600, "random": 157.072 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.492951732800002 ], [ -124.033257147900002, 46.505364523600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000, "random": 112.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294824384099996, 47.498289333300001 ], [ -122.298119690099995, 47.502022685199996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000, "random": 131.248 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.495753249700002, 47.624062761300003 ], [ -117.468507851400005, 47.639029918699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000, "random": 12.016 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.903224043700007, 47.164233431500001 ], [ -121.872005178500004, 47.161402969199997 ], [ -121.849103710700007, 47.15273018 ], [ -121.824800200699997, 47.159426348499998 ], [ -121.7896956437, 47.177662045799998 ], [ -121.724175330500003, 47.156995242299999 ], [ -121.689080403600002, 47.153353215400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000, "random": 118.708 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.515841842200004, 47.267143818699999 ], [ -122.515897937899993, 47.271095951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000, "random": 75.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.341026043900001, 48.4420756317 ], [ -122.341143146500002, 48.446976752200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000, "random": 33.846 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295851618399993, 47.440464837699999 ], [ -122.296188563499996, 47.445261311700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000, "random": 198.196 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.788828616299995, 48.0414353719 ], [ -122.793659489500001, 48.0437626987 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400, "random": 184.047 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082086450299997, 46.2486605032 ], [ -119.082542582, 46.251354512900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000, "random": 190.143 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.922091829899998 ], [ -122.263541723100005, 47.922179159300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000, "random": 162.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.483269079499998 ], [ -121.781215774100005, 47.474074807100003 ], [ -121.765158587800002, 47.473214056700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100, "random": 189.087 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.177360819200004, 46.741290161400002 ], [ -119.176420952499996, 46.767562564899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400, "random": 81.19 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.989221384300002 ], [ -123.885769935400006, 46.990092803099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100, "random": 182.676 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.356012526100002 ], [ -123.579659652800004, 46.356972248200002 ], [ -123.571658753799994, 46.360634495100001 ], [ -123.527978486899997, 46.347672681699997 ], [ -123.498598979400001, 46.3468225811 ], [ -123.4940632677, 46.324685392100001 ], [ -123.4668950282, 46.295217675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000, "random": 145.698 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.852401448600006, 46.651074980200001 ], [ -118.851188812399997, 46.650840242299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": null, "random": 78.044 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.943315751599997 ], [ -119.010650954699997, 47.939312536800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000, "random": 35.448 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.606541076799999, 46.941941313299999 ], [ -122.605712079300005, 46.941489775199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200, "random": 14.863 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.592794232299994, 47.504927880300002 ], [ -122.551069679199998, 47.505156933899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000, "random": 140.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.989767487799995, 47.242794495200002 ], [ -121.985591299199996, 47.260870346099999 ], [ -121.993396961, 47.270149034699998 ], [ -121.989355304900002, 47.285608678199999 ], [ -121.998744108400004, 47.294913668900001 ], [ -122.002777857, 47.306701697199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200, "random": 163.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.471913238300004, 46.252522673 ], [ -119.471184156600003, 46.2575715157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000, "random": 15.976 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.593318681499994, 46.978376439100003 ], [ -123.481658804, 46.9993368592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000, "random": 76.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.197061164900006, 47.422016212400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300, "random": 132.634 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.043384833600001, 46.308854520300002 ], [ -124.0447225968, 46.308871953599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580, "random": 11.218 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.247623398299993, 48.0127941378 ], [ -118.237039096700002, 48.018168332499997 ], [ -118.2214889113, 48.049565817100003 ], [ -118.222936142500004, 48.053637239700002 ], [ -118.197038204500004, 48.073047323600001 ], [ -118.204700130500001, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.204016274099999, 48.108946106499999 ], [ -118.200662958, 48.116023653500001 ], [ -118.192017662, 48.117837666100002 ], [ -118.202303033, 48.117174424799998 ], [ -118.209093898199995, 48.124787487699997 ], [ -118.201753202500001, 48.134801942800003 ], [ -118.166797815899997, 48.155945894200002 ], [ -118.171011121899994, 48.163215754200003 ], [ -118.167759214599997, 48.177816706100003 ], [ -118.171949811600001, 48.190878052800002 ], [ -118.170007308300001, 48.198677821799997 ], [ -118.179961741900001, 48.205546312300001 ], [ -118.175431716700004, 48.217891139199999 ], [ -118.1569623818, 48.228394239899998 ], [ -118.135412156300006, 48.251569121899998 ], [ -118.1314821032, 48.261999135899998 ], [ -118.136088338099995, 48.2791408008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000, "random": 19.243 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.738195968599996, 46.971090700700003 ], [ -123.690459375499998, 46.973761333699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000, "random": 106.811 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227424004400007, 47.30291529 ], [ -122.219327033699997, 47.30338806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800, "random": 114.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.937863401300007, 46.843234490500002 ], [ -119.941795765899997, 46.848996036300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500, "random": 104.529 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281570073300003, 48.136485829599998 ], [ -122.281476550400001, 48.139959181099996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": null, "random": 38.791 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.027228826400005, 47.836194659500002 ], [ -120.025068951899996, 47.8360845439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000, "random": 87.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.210984360099999, 47.877210461899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400, "random": 73.93 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.816935508100002, 45.795557156 ], [ -120.807249664599993, 45.812378431500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000, "random": 23.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143430620900006, 47.804831104 ], [ -122.140080255399994, 47.814511612899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820, "random": 132.706 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.156893121600007, 48.189540328100001 ], [ -124.136633293599999, 48.189693283300002 ], [ -124.119184240099997, 48.197333688500002 ], [ -124.111972148899994, 48.193056858600002 ], [ -124.099026134, 48.196380852700003 ], [ -124.065449075900005, 48.184203205599999 ], [ -124.067003423, 48.179499668 ], [ -124.062503482699995, 48.182271907500002 ], [ -124.060996547499997, 48.174474656599998 ], [ -124.0071237943, 48.171246608099999 ], [ -123.998301385600001, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.159929366500002 ], [ -123.9544082731, 48.165129369600002 ], [ -123.945000196699993, 48.163679703299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000, "random": 141.383 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.178420765399999 ], [ -121.994685753699997, 47.197484103500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000, "random": 88.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244125636199996, 48.506295213100003 ], [ -122.243705511399995, 48.507550046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700, "random": 54.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.997022132700003 ], [ -122.415017563099994, 48.001060961100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900, "random": 149.922 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.510482342299994, 47.504848737300001 ], [ -122.503509391500003, 47.505998994 ], [ -122.501053194600004, 47.512147903299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000, "random": 9.554 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.473686591399996, 48.725491598399998 ], [ -122.467423081800007, 48.738158788299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000, "random": 61.48 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869602347099999, 46.251520877600001 ], [ -119.8182520318, 46.237973053499999 ], [ -119.797563812500002, 46.224556295900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320, "random": 184.344 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.675440298599995, 48.865191048600003 ], [ -121.678315036499995, 48.8665390524 ], [ -121.679949024300001, 48.862366554600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300, "random": 44.518 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.078231726699997, 48.346462605900001 ], [ -120.054575691099998, 48.344579262899998 ], [ -120.043125887399995, 48.348189060800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900, "random": 177.802 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.503479943100004, 45.998358346400003 ], [ -122.5258480464, 45.993213695400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500, "random": 10.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.747746263300002, 46.693374154399997 ], [ -123.752354357300007, 46.686064117 ], [ -123.768029697200006, 46.680362283100003 ], [ -123.7755784334, 46.682026725199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500, "random": 99.59 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.250508615499996, 47.804211862 ], [ -124.250517205400001, 47.810937674199998 ], [ -124.258073011899995, 47.8098225751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100, "random": 163.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923083369699995, 46.253659694200003 ], [ -123.948649006799997, 46.276338217700001 ], [ -123.968499198399996, 46.306327607299998 ], [ -124.0020006548, 46.320577083300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600, "random": 80.983 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.895974041599999 ], [ -124.108797736, 46.902264898200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600, "random": 130.192 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.577540315199997, 46.513334344299999 ], [ -122.562440734800006, 46.517004806 ], [ -122.550440133, 46.534454282600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500, "random": 18.302 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.840896095299996, 46.437830048400002 ], [ -122.836073628299999, 46.4372194695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000, "random": 184.371 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.653858604500002, 45.722849267100003 ], [ -122.653998623800007, 45.723149806499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600, "random": 144.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.170179750499997, 47.117562055400001 ], [ -124.177471151700004, 47.126216089 ], [ -124.1826998409, 47.154647452100001 ], [ -124.187773493500003, 47.156870476599998 ], [ -124.192508816, 47.166726177599998 ], [ -124.188426140100006, 47.1715589354 ], [ -124.194333575499996, 47.177704042800002 ], [ -124.187285399199993, 47.180239896800003 ], [ -124.197088365300004, 47.182362931500002 ], [ -124.197786695199994, 47.203763312600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000, "random": 123.691 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.177499564100003, 47.302421793299999 ], [ -122.158397736699996, 47.329830075399997 ], [ -122.147513064799995, 47.339074769200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500, "random": 182.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.490640709700003 ], [ -124.033892636800005, 46.491529151400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000, "random": 40.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279969000299999, 47.882689195399998 ], [ -122.284961471499997, 47.889952125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200, "random": 73.07 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.820346137499996, 47.407048446300003 ], [ -122.8153357809, 47.404942925199997 ], [ -122.811344422900007, 47.392650133399997 ], [ -122.815997779100002, 47.377902822700001 ], [ -122.805811247799994, 47.360133497900001 ], [ -122.790764019500003, 47.362458267599997 ], [ -122.778300719100002, 47.374504504 ], [ -122.772786725399996, 47.372474926599999 ], [ -122.771733287, 47.367584963299997 ], [ -122.764092501899995, 47.3690425701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000, "random": 55.652 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383224272700005, 47.809751709099999 ], [ -122.383177258700002, 47.803115381799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000, "random": 170.025 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.192118820399998, 47.812969411099999 ], [ -122.179936919200003, 47.812576249400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400, "random": 108.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.813512360700003, 46.975265630300001 ], [ -123.814395560500003, 46.976034897300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000, "random": 186.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.953247282800007, 47.588372095700002 ], [ -121.9327980228, 47.578598486200001 ], [ -121.904923274699996, 47.572494750300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900, "random": 120.557 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300174272299998, 47.921996202499997 ], [ -122.293173814799999, 47.922087901099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700, "random": 25.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402440419900003, 47.775794797400003 ], [ -117.402071636299993, 47.780597520100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000, "random": 40.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.884688452199995, 46.258716924600002 ], [ -119.869602347099999, 46.251520877600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000, "random": 162.062 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411242756799993, 47.6526173898 ], [ -117.411274585200005, 47.653047753300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100, "random": 157.667 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.630443639299997, 47.565025907699997 ], [ -122.629614867, 47.565023409600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000, "random": 160.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324557230300002, 47.777643065600003 ], [ -122.313709108699996, 47.777338075700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400, "random": 164.332 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.273667244099997, 46.085029912499998 ], [ -118.2672424979, 46.086477503399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": null, "random": 48.214 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656563119799998, 47.9990210152 ], [ -119.652569693499998, 48.004195568299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800, "random": 140.364 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.096386168800002 ], [ -123.539695353699997, 48.0975545684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000, "random": 37.205 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.694754548899994, 46.726677142600003 ], [ -120.668235797799994, 46.711479115499998 ], [ -120.653571841399994, 46.694966391900003 ], [ -120.651183799199998, 46.682767821 ], [ -120.620686334699997, 46.6605003365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": null, "random": 128.393 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.359501847199994, 47.641373911099997 ], [ -119.3541224664, 47.654364337799997 ], [ -119.362883742899996, 47.670910110400001 ], [ -119.362657404499998, 47.815367954899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500, "random": 6.426 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.365478030800006, 47.3194849976 ], [ -122.360542910299998, 47.320727857100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000, "random": 13.288 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.669449984600007, 47.0015817743 ], [ -122.655330546900004, 46.993301497399997 ], [ -122.647069200399997, 46.976312431799997 ], [ -122.632531038099998, 46.964619754799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800, "random": 115.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134285547299996, 46.797073158700002 ], [ -119.134312927699995, 46.818765882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000, "random": 120.865 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.216805478799998 ], [ -119.138060967300007, 46.216909794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800, "random": 113.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.654604637600002, 47.70607599 ], [ -122.645523064399995, 47.699437756 ], [ -122.628925867099994, 47.698701822700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300, "random": 157.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.719771164400001, 46.532048859500001 ], [ -122.644238838700005, 46.531879556699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000, "random": 185.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.201484693699996, 48.1878947696 ], [ -122.192163134799998, 48.188250864499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000, "random": 97.229 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.723609466200003 ], [ -122.187198009200003, 47.738498455299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000, "random": 158.709 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.740274834399997, 45.907107905300002 ], [ -122.741565261700003, 45.906180137500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000, "random": 124.355 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345113336899999, 47.734153058499999 ], [ -122.342303708100005, 47.7341359849 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000, "random": 139.381 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.244529904100006, 47.361148228799998 ], [ -122.243988081300003, 47.374066723799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800, "random": 139.359 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263396776899995, 47.458701214199998 ], [ -122.267055740800004, 47.4665917564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000, "random": 18.435 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.461663028299995, 47.200192883299998 ], [ -122.462495706, 47.214291678800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000, "random": 196.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327737404700002, 47.479270819699998 ], [ -122.327202421899997, 47.485407254199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800, "random": 179.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.878433839099998, 47.821394556500003 ], [ -122.8867284289, 47.820463539499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360, "random": 109.688 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.467287985300004, 46.7034528115 ], [ -117.464807280599999, 46.720976935099998 ], [ -117.471211870900007, 46.712594502499996 ], [ -117.479274072799996, 46.711277151899999 ], [ -117.487719554700007, 46.731020675400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000, "random": 23.003 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.370072911299999, 47.792450454899999 ], [ -122.366799176699999, 47.790544377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200, "random": 87.961 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.733824069899995, 47.954373254399997 ], [ -122.738740937700001, 47.9595773681 ], [ -122.740667413899999, 47.978864272300001 ], [ -122.748428735199994, 47.994645822899997 ], [ -122.758586856199997, 48.006758683199998 ], [ -122.768640501500002, 48.011228311499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400, "random": 155.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.602185105700002, 46.890372220899998 ], [ -119.580670595800001, 46.885660649599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000, "random": 49.751 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.880379792400007, 46.482924602099999 ], [ -122.87656073, 46.494718014 ], [ -122.876510017399994, 46.543928554799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000, "random": 111.601 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.159146879800005, 47.168838945200001 ], [ -122.148572778100004, 47.167724522500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500, "random": 94.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.888912007400002 ], [ -122.501812683400004, 45.893398658499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100, "random": 146.208 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.004060927500007, 46.5740844587 ], [ -119.001741281199998, 46.585143338400002 ], [ -119.006329476299996, 46.597462697399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000, "random": 165.53 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.447553519499998 ], [ -123.879754704500002, 47.455784508100002 ], [ -123.885677573400002, 47.456866807899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950, "random": 197.401 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.789186845100005, 46.525469168900003 ], [ -117.776208735099999, 46.536546569599999 ], [ -117.774915493, 46.548261041700002 ], [ -117.769523678100001, 46.556350365500002 ], [ -117.780763064799999, 46.568198419799998 ], [ -117.775135213400006, 46.580586403 ], [ -117.785289441200007, 46.587495737300003 ], [ -117.781376055, 46.592409526 ], [ -117.791383799100004, 46.614441905299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000, "random": 135.692 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252591198299996, 47.484034392399998 ], [ -122.249028468199995, 47.4830589416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400, "random": 175.64 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.900843413800004, 48.4812158123 ], [ -117.903014288700007, 48.491295040099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000, "random": 16.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.266313958500007, 47.834250899200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000, "random": 71.787 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.906365783799998, 46.180099770799998 ], [ -122.905102340499994, 46.184711848900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000, "random": 159.908 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.463059040700003, 47.187472294899997 ], [ -122.462088280299994, 47.197049535799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000, "random": 177.565 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.354448297499999, 46.187236830899998 ], [ -123.328413565800005, 46.163832368500003 ], [ -123.282398489599998, 46.152649885300001 ], [ -123.262813461600004, 46.155398660700001 ], [ -123.232627280399996, 46.172727256500004 ], [ -123.177155703300002, 46.188470852800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000, "random": 73.351 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118752809200004, 48.164313309400001 ], [ -122.128562375100003, 48.178306022599998 ], [ -122.128522187800002, 48.1877057823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100, "random": 67.759 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.736303099699995, 46.646619395899997 ], [ -119.800631610400004, 46.633273275 ], [ -119.850580666699997, 46.633900159299998 ], [ -119.894843293700006, 46.664206179600001 ], [ -119.907061669900003, 46.680637532299997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000, "random": 139.009 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.184932840099997 ], [ -119.167008503600002, 46.191719662700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400, "random": 139.806 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.038134999700006, 47.045714760700001 ], [ -124.044085349400007, 47.0525732949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000, "random": 156.237 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.709147899900003, 47.759454432799998 ], [ -118.707944478, 47.7591802313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400, "random": 50.369 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.616003575799994, 46.647894068200003 ], [ -121.6109588785, 46.649779292799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000, "random": 5.386 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.735085712200004, 47.8671728801 ], [ -121.719934467599998, 47.865876767899998 ], [ -121.702206125399996, 47.857269046900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": null, "random": 15.261 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.389372647400002 ], [ -119.484229716900003, 47.393484868400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000, "random": 198.271 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.193737871799996, 48.152206488799997 ], [ -122.187256140599999, 48.152320979800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100, "random": 15.06 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.703899168600003, 46.675045581699997 ], [ -123.695083687700006, 46.669070081500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000, "random": 162.885 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.655558176300005, 47.650535837 ], [ -122.667631105300003, 47.654718396200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000, "random": 198.957 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.259846258600007, 47.83972786 ], [ -122.258386957400006, 47.8454224344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930, "random": 64.413 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.243020091899993, 47.135105077299997 ], [ -117.255459168900003, 47.145496228900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800, "random": 84.795 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634093082299998, 46.532248674500003 ], [ -122.613916913, 46.533086125200001 ], [ -122.603542558200004, 46.528545867399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800, "random": 41.657 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.142086452399994, 47.654405452600002 ], [ -118.140899954299996, 47.654795746799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300, "random": 146.151 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202201079100007, 48.746018506699997 ], [ -122.200782833800005, 48.778292325099997 ], [ -122.190482595600002, 48.789698039500003 ], [ -122.190454977399995, 48.796208521200001 ], [ -122.198132583200007, 48.807184498600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000, "random": 132.796 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.783199502800002, 48.107007579799998 ], [ -122.781061765399997, 48.107655859499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500, "random": 110.815 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.430902000800003, 48.119157941600001 ], [ -123.431723711900005, 48.118274773099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": null, "random": 92.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853410503099994, 47.219448708199998 ], [ -119.853405347299997, 47.222329436499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000, "random": 69.853 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.156678518500001, 48.076900807299999 ], [ -123.141795278499998, 48.074895211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000, "random": 116.347 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.311449370800005, 47.391536018099998 ], [ -122.307952314299996, 47.390989098200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000, "random": 194.743 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.748260992300004, 47.473255323 ], [ -121.722898993100003, 47.467079809499999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600, "random": 161.961 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740215335200006, 46.796289770800001 ], [ -118.708150143599994, 46.814428946699998 ], [ -118.6742632423, 46.822698338800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710, "random": 173.84 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.305830498800006, 46.952091588800002 ], [ -121.255807396799995, 46.966597163899998 ], [ -121.210371058700005, 46.969113485599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000, "random": 146.813 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612833645500004, 48.496398719699997 ], [ -122.612773958299996, 48.500455119199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000, "random": 71.979 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.647571915599997, 47.565258176100002 ], [ -122.646332902200001, 47.565068923399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000, "random": 162.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.041144706599994, 47.542865930700003 ], [ -122.0241863249, 47.531588126099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000, "random": 26.334 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302875798200006, 47.300053013800003 ], [ -122.298157912799994, 47.312895011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": null, "random": 69.256 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.931093545899998 ], [ -119.882298275099998, 47.942018174499999 ], [ -119.875741968699998, 47.958051341699999 ], [ -119.887958120700006, 47.972440806100003 ], [ -119.889532435700005, 47.982532057299998 ], [ -119.885851000599999, 47.990264323799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000, "random": 51.54 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.079603723899993, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.111443955599995, 47.463154478500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900, "random": 188.314 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.792484011300004, 45.716168026200002 ], [ -121.786225659, 45.714130412800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000, "random": 18.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.278802215500001 ], [ -119.302305689799994, 46.267676536899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000, "random": 71.856 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.590318347099995, 46.056768336099999 ], [ -118.519208512800006, 46.049950256599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": null, "random": 18.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134440507700006, 47.088984407700003 ], [ -119.121253997400004, 47.087799811700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000, "random": 104.88 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.600798524600002 ], [ -122.711238820700004, 47.605228821399997 ], [ -122.712449603799996, 47.611406311800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000, "random": 179.605 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.093418599900005, 46.285167135599998 ], [ -119.092502097899995, 46.340179474199999 ], [ -119.0860022305, 46.358205390599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000, "random": 95.391 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270295565200001, 47.4970013804 ], [ -122.25791496, 47.487130901500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000, "random": 129.975 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349574717300001, 47.970653730400002 ], [ -117.349586635600005, 47.9814746809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700, "random": 99.47 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.190064272399994, 48.477574027099998 ], [ -120.185421141800006, 48.477806843800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000, "random": 62.648 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.888628473599994, 47.402682276900002 ], [ -123.876309722100004, 47.421393489899998 ], [ -123.877036547, 47.447553519499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": null, "random": 193.833 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.312829956300007, 47.422532371700001 ], [ -120.306221311900003, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000, "random": 156.322 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.577603552200003, 47.410002127200002 ], [ -121.550163449199999, 47.398183204299997 ], [ -121.532417350599999, 47.395800791500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000, "random": 196.223 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.233172088499998, 47.821066967299998 ], [ -122.230733731599997, 47.817835607600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700, "random": 41.472 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.377141808800005, 46.180276374400002 ], [ -123.377449328699996, 46.187590274599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": null, "random": 189.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.294245746800001, 47.119132439200001 ], [ -119.291111567900003, 47.124036589900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": null, "random": 194.672 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.530963491099996, 46.971801339099997 ], [ -120.526300065599997, 46.970960180100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400, "random": 111.242 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.815376949200001, 45.697928946300003 ], [ -120.796719230600004, 45.702403201099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000, "random": 120.764 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.883591746600004, 47.509036991899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000, "random": 159.148 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.330796798799994, 47.608824904400002 ], [ -122.330190562400006, 47.612879725900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000, "random": 5.128 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.565755526899999 ], [ -122.632864206899995, 47.566635514799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000, "random": 89.517 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.591845204199998, 48.889032620599998 ], [ -122.606768074300007, 48.898128227699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900, "random": 57.901 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.960869672200005, 46.896587943100002 ], [ -122.959413616800006, 46.896544591599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000, "random": 9.82 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.105067388600006, 47.129641063599998 ], [ -123.099174975500006, 47.130178044399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000, "random": 26.754 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.857571645600004, 46.037467729299998 ], [ -122.8610659653, 46.047865250500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400, "random": 198.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.734538853499998, 48.136053459400003 ], [ -123.716298311, 48.131550921799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200, "random": 143.828 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.480252005399997 ], [ -124.027686928500003, 47.471479931 ], [ -124.0967538612, 47.488540894899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500, "random": 18.611 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.358535363800002, 48.9093392192 ], [ -122.358082049800004, 48.915412848 ], [ -122.351939517100007, 48.916026991700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000, "random": 20.52 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.183918427600005, 47.5658400246 ], [ -122.176695557599999, 47.572470087200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000, "random": 34.675 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.023438807300003 ], [ -122.857571645600004, 46.037467729299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500, "random": 159.291 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.319380156799994, 46.299522199400002 ], [ -118.29383435, 46.299169540199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000, "random": 52.505 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.596100378800003 ], [ -122.405540528800003, 45.591761287200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800, "random": 156.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.728414178700007, 48.9757559926 ], [ -122.7335974346, 48.979211973399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000, "random": 69.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.543004641899998, 46.265484455600003 ], [ -119.523755174, 46.261389296200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700, "random": 93.49 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.912670494899999 ], [ -122.734609879900006, 47.937546706399999 ], [ -122.733824069899995, 47.954373254399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000, "random": 156.475 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.111774724100002 ], [ -118.368678888199995, 47.115004149199997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000, "random": 195.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.121632499500002 ], [ -122.926121849899999, 46.122971713699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000, "random": 67.893 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.323952406499998, 47.397136250199999 ], [ -122.324340674400005, 47.397956274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500, "random": 19.029 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.678110354400005, 45.939490944399999 ], [ -122.695865641500006, 45.943167264899998 ], [ -122.7043424684, 45.9356642435 ], [ -122.720061706099997, 45.933789863199998 ], [ -122.722622225500004, 45.928000884200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": null, "random": 82.69 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.288231320899996, 47.617049865200002 ], [ -119.282818381200002, 47.619376442899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100, "random": 30.994 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.109086964699998, 46.858851588299999 ], [ -124.110834784900007, 46.868530839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500, "random": 126.911 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790, "random": 54.939 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.678249238600003, 47.332770853600003 ], [ -118.667678610099998, 47.329164710100002 ], [ -118.659778051700002, 47.332892974899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200, "random": 23.724 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626893820500001, 46.9614926076 ], [ -122.617047133900002, 46.956992231699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000, "random": 163.002 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.922037542499993, 46.742687586499997 ], [ -121.918473005799996, 46.741198450799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600, "random": 137.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.493315447399993, 46.311516519900003 ], [ -119.4925583765, 46.329979207 ], [ -119.453908727599995, 46.355869256799998 ], [ -119.446045358099994, 46.371667617200004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000, "random": 186.844 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.825814271400006, 46.971474761700001 ], [ -123.830980867199997, 46.976009928800003 ], [ -123.852175045300001, 46.976073338900001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": null, "random": 85.67 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.657929994699998, 47.999466185099998 ], [ -119.668479131400005, 48.004624036199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500, "random": 68.46 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.379606535099995, 47.811428451799998 ], [ -122.378772240299995, 47.812427925900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.905823096600002, 48.545437755899997 ], [ -117.905841872400003, 48.5465546852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000, "random": 100.283 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.656102616499993, 48.118102910200001 ], [ -123.598169341299993, 48.116751797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000, "random": 168.681 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632854251099999, 46.958792651300001 ], [ -122.607696380799993, 46.942584212500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000, "random": 110.175 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.161616720599994, 48.152123549599999 ], [ -122.150787088599998, 48.152052366299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000, "random": 122.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.355582348900001, 47.858807196800001 ], [ -117.355593639800006, 47.858945272299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000, "random": 163.137 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.279905047599996, 47.681635658600001 ], [ -117.244831362599996, 47.6887168246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000, "random": 89.821 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.239877959799998, 47.590805383499998 ], [ -122.234841367100003, 47.588418258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000, "random": 11.778 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.209303932400005, 47.642807809799997 ], [ -122.193293704599995, 47.6371487563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": null, "random": 120.858 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.669767452599999, 47.599791676300001 ], [ -119.661215119399998, 47.607000547600002 ], [ -119.606683159100001, 47.599362431800003 ], [ -119.519316737, 47.599671664399999 ], [ -119.506659076, 47.606149404600004 ], [ -119.490023690499996, 47.608153128700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000, "random": 157.27 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.453850354599993, 47.918261358400002 ], [ -117.4773490149, 47.942880451299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000, "random": 52.936 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212938500800007, 47.91279953 ], [ -122.208800066199998, 47.915072194099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000, "random": 134.427 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.346235717300004, 48.421707577399999 ], [ -122.336470433499997, 48.421250475100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200, "random": 56.125 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.512133462400001, 45.776374164 ], [ -121.506537166300006, 45.781926395200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200, "random": 64.421 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.399384164400004, 47.675181022899999 ], [ -124.410029993199998, 47.690538550699998 ], [ -124.413158489799997, 47.715324170899997 ], [ -124.3232512525, 47.750392393200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000, "random": 69.2 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.521972394399995, 46.626090815 ], [ -120.516977211599993, 46.626072081799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100, "random": 167.633 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.313312870700003, 48.924551532199999 ], [ -117.307119418, 48.929199144199998 ], [ -117.316531308199998, 48.932748811700002 ], [ -117.319907535599995, 48.941222607 ], [ -117.315980128299998, 48.951803024699998 ], [ -117.317591745599998, 48.960123958200001 ], [ -117.311418774399996, 48.968857460499997 ], [ -117.313240792299993, 48.984467610899998 ], [ -117.308202455300005, 48.987334862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": null, "random": 156.321 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.830782215400006, 47.103697310500003 ], [ -119.829366692, 47.102574142900004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890, "random": 172.189 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.794898273800001, 48.900775119099997 ], [ -117.789824640899994, 48.912891269500001 ], [ -117.778759274099997, 48.917169304399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500, "random": 187.145 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.387307348500002, 47.278952222299999 ], [ -122.404672067600004, 47.283851474899997 ], [ -122.416893607199995, 47.296642897799998 ], [ -122.432670010899997, 47.298060625799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700, "random": 140.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802418755299996, 46.969282630400002 ], [ -123.8023268261, 46.970613858599997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000, "random": 191.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.172470015599998, 46.747419563 ], [ -117.1689737584, 46.759989077900002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000, "random": 69.154 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.979120459399994, 47.861321829600001 ], [ -121.977254482299998, 47.860853409100002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000, "random": 38.432 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322422964099999, 47.640441942899997 ], [ -122.3161312286, 47.6429143031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800, "random": 119.618 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.617047133900002, 46.956992231699999 ], [ -122.6116398299, 46.956535307700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000, "random": 44.105 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.628802942700005, 47.6101244229 ], [ -122.628834077099995, 47.615881278700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": null, "random": 27.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.646298814600001, 47.596485754 ], [ -120.628766045199995, 47.589121012600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900, "random": 160.179 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.176904797399999, 46.729513769 ], [ -117.178835770500001, 46.729585266299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000, "random": 121.453 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.410853660100003, 47.751319912500001 ], [ -117.410523712599996, 47.752316359200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000, "random": 195.749 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.431873938199999, 47.234680353 ], [ -122.432220221600005, 47.238642593500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000, "random": 164.86 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.884867830700003, 47.987938207299997 ], [ -122.883245172, 47.9882925028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000, "random": 19.004 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670987526399998, 47.554042039599999 ], [ -122.677410102099998, 47.563648136099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500, "random": 59.566 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.910333599099999, 46.482928058 ], [ -122.897497354099997, 46.479396397800002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000, "random": 130.038 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.467404367699999, 46.5847787764 ], [ -120.451210130099994, 46.577085327600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000, "random": 158.77 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.827868590500003, 46.971685376300002 ], [ -123.826985228699996, 46.970870741799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800, "random": 74.556 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.391339284599994, 47.389115786399998 ], [ -117.389567766599995, 47.425001746699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000, "random": 77.955 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312772597600002, 48.340779633499999 ], [ -122.305721706699998, 48.339435954800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000, "random": 59.33 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.507749843100001, 45.684020572100003 ], [ -122.506325005899996, 45.684857825500004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000, "random": 77.102 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.479885092200007, 46.597737697200003 ], [ -120.474802377900005, 46.589699519299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000, "random": 151.287 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.295539751600003, 47.040162607 ], [ -122.295311486800003, 47.043931016199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100, "random": 19.9 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475197836600003, 48.3959072026 ], [ -119.502302775900006, 48.402278157200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000, "random": 95.909 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.412724274599995, 47.715145703700003 ], [ -117.435100794500002, 47.715447291099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000, "random": 166.695 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.210869349700005, 47.8004619779 ], [ -122.207714154599998, 47.806353196499998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410, "random": 110.905 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.222302280899996, 46.598111115099996 ], [ -118.225764350399999, 46.604595703500003 ], [ -118.2223138409, 46.609761519099997 ], [ -118.240486649499999, 46.627919481500001 ], [ -118.245091406200004, 46.641602208099997 ], [ -118.265180498099994, 46.656573853200001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400, "random": 66.474 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.413427022500002, 47.653110738199999 ], [ -117.413460895200004, 47.652722661600002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000, "random": 26.926 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.779376178199996, 46.221205174600001 ], [ -119.755606592199996, 46.220951481299998 ], [ -119.745690893700001, 46.215864676300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000, "random": 167.135 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.132021950199999, 47.236342335499998 ], [ -123.127785851400006, 47.2236494996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000, "random": 46.476 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.351819382399995, 47.791903946399998 ], [ -117.350048794200006, 47.798025673799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": null, "random": 14.491 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.292056688399995, 47.410528213699997 ], [ -120.294127652200004, 47.413015349399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000, "random": 156.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.807636250900003, 46.977246300099999 ], [ -123.809046887500003, 46.977210686299998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000, "random": 193.317 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332916532900001, 47.5234893652 ], [ -122.334374309400005, 47.529782668300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000, "random": 61.498 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293108524199994, 47.392427434 ], [ -122.286526806300003, 47.390672964899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000, "random": 78.958 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.649728357699999 ], [ -122.590602617200005, 45.652794820399997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300, "random": 14.78 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.435239557599999 ], [ -117.7149843296, 47.4501888753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200, "random": 129.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.826087037199997, 47.777964567 ], [ -120.814116547099999, 47.773148257300001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": null, "random": 175.167 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.979697854299999, 47.968430380400001 ], [ -118.962146472599997, 47.978897152099997 ], [ -118.95552571, 47.996767366100002 ], [ -118.942277831200002, 48.015486803400002 ], [ -118.943583254299995, 48.025575113 ], [ -118.986769332500003, 48.053062632900001 ], [ -118.973666882200007, 48.0641934995 ], [ -118.982148101899995, 48.075814884899998 ], [ -118.982032154600006, 48.092766660099997 ], [ -118.989815542900004, 48.104462178799999 ], [ -118.979093252699997, 48.119789106200002 ], [ -118.977574437499996, 48.130752286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300, "random": 93.58 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054761731100001, 46.345935959 ], [ -124.054745626300004, 46.346612471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800, "random": 148.068 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.267135357900003, 48.429927612199997 ], [ -122.264774667, 48.429909313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690, "random": 118.119 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.597036992200003, 47.095543250600002 ], [ -117.631861121200004, 47.106672080700001 ], [ -117.6461224106, 47.116630621500001 ], [ -117.683843117699993, 47.1180750089 ], [ -117.707883861, 47.111339266400002 ], [ -117.719060914799996, 47.1167193872 ], [ -117.734570016700005, 47.116926604200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100, "random": 59.142 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.142135434799997, 47.4475636134 ], [ -117.141577431, 47.450008249200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690, "random": 130.923 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.346081624799993, 46.8885837829 ], [ -117.304149258899997, 46.899020955099999 ], [ -117.2746295508, 46.914191606099998 ], [ -117.270425518300001, 46.912759444700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000, "random": 16.415 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190376081899998, 47.976893661600002 ], [ -122.182977455200003, 47.986938321099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000, "random": 76.034 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883404753700006, 46.113522401 ], [ -122.898236750099997, 46.128944340899999 ], [ -122.897607260699999, 46.140453967500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200, "random": 106.41 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.692970777599996, 47.5042331597 ], [ -117.693498972900002, 47.504267856699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600, "random": 180.198 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.808106471399995, 45.824581942400002 ], [ -120.805370855600003, 45.826504570600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000, "random": 37.606 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.911903540099999, 46.176592032800002 ], [ -122.906365783799998, 46.180099770799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100, "random": 136.104 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.349797920599997, 46.859706395899998 ], [ -117.357008144700004, 46.865091813500001 ], [ -117.355403140199996, 46.871722587800001 ], [ -117.364164788300002, 46.874010902899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300, "random": 74.977 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.076752340900001, 46.909721281499998 ], [ -117.068840619, 46.910859572100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000, "random": 110.742 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.191639746100002 ], [ -122.229378595499995, 47.190287898299999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900, "random": 92.306 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.023973467100006, 46.764545732599998 ], [ -117.983142065099997, 46.762939243200002 ], [ -117.9366891767, 46.785311949099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000, "random": 117.766 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.097038422799997, 46.8218084668 ], [ -123.090539888799995, 46.821737349700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200, "random": 159.835 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054580485599999, 46.350118615100001 ], [ -124.054404370699999, 46.352653916100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000, "random": 159.076 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974771932400003, 46.711262675199997 ], [ -122.969987798800005, 46.711048393200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000, "random": 94.617 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.137621938500004, 47.465295400099997 ], [ -122.156623732400007, 47.468501808500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000, "random": 45.376 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.481552386600001, 47.9470052096 ], [ -117.523562276800007, 47.978488490700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000, "random": 35.746 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.041885819499996, 46.419993072600001 ], [ -117.039897904499995, 46.420186914399999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000, "random": 109.486 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.328608609300005, 47.469981829600002 ], [ -122.312755550399999, 47.470155670899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000, "random": 190.61 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.802945078600004, 46.969721982800003 ], [ -123.804653298800005, 46.970295887799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000, "random": 143.572 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.278115035200003, 46.258741845099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910, "random": 197.528 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.369079137599996, 48.8628154536 ], [ -117.364148903, 48.859789320799997 ], [ -117.361719793199995, 48.8661339983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800, "random": 72.385 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.383672593599997, 48.891377649 ], [ -122.376030476500006, 48.891834109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700, "random": 117.216 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.678622098800005, 48.073901581 ], [ -123.668938631800003, 48.0733486098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000, "random": 117.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.981774674500002 ], [ -122.1922476604, 47.98179891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000, "random": 52.875 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.538427603100004, 46.6224575094 ], [ -120.521972394399995, 46.626090815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000, "random": 116.396 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.951492505799997 ], [ -122.070743662699996, 47.940611303300003 ], [ -122.075175116500006, 47.919765200500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000, "random": 170.403 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.813332455299999, 47.0524920951 ], [ -122.787872723199996, 47.059731396899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300, "random": 43.7 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.942027628899993, 48.889158419700003 ], [ -121.924199672399993, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.905807949500002 ], [ -121.868282109399999, 48.901853285800001 ], [ -121.784534729200004, 48.912529716199998 ], [ -121.774012250799998, 48.909379435399998 ], [ -121.760173423300003, 48.911338270800002 ], [ -121.735164816099996, 48.902851706699998 ], [ -121.704622587299994, 48.908486916299999 ], [ -121.693699750099995, 48.906634052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900, "random": 37.924 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.359020038699995, 46.8898382458 ], [ -122.358974689600004, 46.893314978799999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000, "random": 125.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.649617031399998 ], [ -122.322342181699995, 47.656009406199999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000, "random": 154.799 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185841226099996, 47.763446951299997 ], [ -122.187659689399993, 47.765906531200002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800, "random": 108.896 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352094649099996, 47.974724356899998 ], [ -122.352294519599994, 47.974775063099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000, "random": 5.98 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293860970699996, 48.857565579199999 ], [ -122.309739520700006, 48.866004975300001 ], [ -122.309741426499997, 48.883469732099996 ], [ -122.320569675100003, 48.884244666400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800, "random": 70.17 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.812114513899999 ], [ -122.383224272700005, 47.809751709099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000, "random": 21.533 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.684279966800005, 47.508587719 ], [ -117.587167089, 47.570828087099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000, "random": 135.607 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.836474754700006, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000, "random": 121.303 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.103599726200002, 47.668444842 ], [ -122.0997715333, 47.665699589200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100, "random": 161.412 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.731371050600004, 46.690374335400001 ], [ -123.736102562400006, 46.693707214699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000, "random": 40.654 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278341099800002, 47.5080120111 ], [ -122.278866618600006, 47.503633281500001 ], [ -122.270295565200001, 47.4970013804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000, "random": 30.662 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329550276199996, 47.704780986599999 ], [ -122.327158730700006, 47.713627215899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600, "random": 32.718 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.735491287399995, 46.552653248200002 ], [ -121.691047104199995, 46.576150272900001 ], [ -121.686166017900007, 46.5905859513 ], [ -121.6750836999, 46.602182966400001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000, "random": 172.537 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.232465395200002 ], [ -122.432112725699994, 47.233323158899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": null, "random": 115.141 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.874718310899993, 47.233060459900003 ], [ -119.8700407404, 47.233113436300002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000, "random": 94.234 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.795776139500006, 47.488786529400002 ], [ -121.796723100400001, 47.488245636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000, "random": 58.545 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.643433158400001, 48.306580660599998 ], [ -122.638014144300001, 48.311229020200003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000, "random": 181.439 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332482108500002, 47.534523388 ], [ -122.335020042799997, 47.539161601099998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000, "random": 46.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.930069412099996, 46.1160931581 ], [ -122.926866154, 46.121632499500002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300, "random": 31.642 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.107970430400002, 46.858858882100002 ], [ -124.099491124899998, 46.8588806371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900, "random": 94.199 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451869323400004, 45.910112283700002 ], [ -122.446916738200002, 45.910167278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": null, "random": 148.16 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.654043935600001, 47.599084438699997 ], [ -120.646298814600001, 47.596485754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000, "random": 115.023 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.449533775800006, 46.503965486799999 ], [ -120.413722501899997, 46.485627965600003 ], [ -120.400418780199999, 46.474277949700003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400, "random": 129.452 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.451970973200005, 45.905929542300001 ], [ -122.449036129199996, 45.907485293199997 ], [ -122.451869323400004, 45.910112283700002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000, "random": 61.661 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.670439506700006, 45.632577207799997 ], [ -122.672677226600001, 45.632554433599999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000, "random": 27.225 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.953823151799995, 46.748781150699998 ], [ -122.947883190100001, 46.753357173300003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000, "random": 34.699 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.178835770500001, 46.729585266299999 ], [ -117.179908097500004, 46.729629926199998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300, "random": 86.414 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.299169540199998 ], [ -118.276819223, 46.297266298 ], [ -118.223122036800007, 46.277953835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000, "random": 156.902 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269011183299995, 47.437789766599998 ], [ -122.263346709499999, 47.459854487900003 ], [ -122.268748856399995, 47.472178548899997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400, "random": 43.855 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.187576040799996, 46.647802853599998 ], [ -117.191547868499995, 46.659965461299997 ], [ -117.198894176899998, 46.666906221 ], [ -117.195441231, 46.674302085800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200, "random": 48.66 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.889896867600001 ], [ -122.724042039, 47.912670494899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000, "random": 75.298 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.315010283700005, 46.3792337657 ], [ -120.316103289400004, 46.377988710799997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000, "random": 195.226 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.591651933099996, 48.350216857600003 ], [ -119.591078218299998, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800, "random": 26.817 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.062662945900001, 48.175291644300003 ], [ -117.052759201, 48.175989763899999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000, "random": 69.255 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.661703215100005, 45.643383049100002 ], [ -122.661702096400006, 45.644626475400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": null, "random": 160.111 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.854070022599998, 47.088382438799997 ], [ -119.834701650499994, 47.1010560076 ], [ -119.823953648699998, 47.1032398754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900, "random": 11.702 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.057602940899997, 47.0916817763 ], [ -122.045870413800003, 47.099088973599997 ], [ -122.045497248800004, 47.103424531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400, "random": 162.769 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545504734600001, 48.015191195900002 ], [ -122.560413762099998, 48.026229210899999 ], [ -122.566855818400001, 48.045068422600004 ], [ -122.568239859100004, 48.088513600600002 ], [ -122.587677712100003, 48.121059934599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000, "random": 195.365 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297484794799999, 47.9152081943 ], [ -122.300115628599997, 47.918585403900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": null, "random": 194.419 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.317045772100002, 47.429466244099999 ], [ -120.317659566200007, 47.430224949500001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000, "random": 145.664 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.513846497499998, 48.416820343 ], [ -119.51157568, 48.416808021500003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400, "random": 15.492 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.024621875199998, 45.625404013100002 ], [ -122.016374166199995, 45.631952482800003 ], [ -122.008840982300001, 45.6309029624 ], [ -121.9860480217, 45.641372188699997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000, "random": 183.945 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.720192553399997, 48.972556366299997 ], [ -122.732842367800004, 48.984169559599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000, "random": 88.79 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657856322499995, 48.288349140299999 ], [ -122.657848881700005, 48.289541012699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": null, "random": 30.479 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.526300065599997, 46.970960180100001 ], [ -120.497732858, 46.970479080600001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700, "random": 48.668 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.041926287600006, 46.221991493099999 ], [ -120.002713399300006, 46.212166620799998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000, "random": 78.442 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220202578699997, 47.407237497300002 ], [ -122.2207233046, 47.415683315800003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000, "random": 73.969 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082356505600004, 46.248275294300001 ], [ -119.082086450299997, 46.2486605032 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860, "random": 102.628 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.355639000400004, 45.989233166399998 ], [ -122.364778925899998, 45.992938942 ], [ -122.364992514899996, 45.997101925700001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700, "random": 82.224 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.549998759200001 ], [ -120.375045609799997, 46.549398523800001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900, "random": 125.931 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.632513277399994, 46.186802706800002 ], [ -119.664030351799994, 46.187236132099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": null, "random": 67.55 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.106952077800003, 47.402903720600001 ], [ -119.0663191716, 47.405924539200001 ], [ -119.042294462100003, 47.385609201599998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100, "random": 58.206 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.956100259400003, 46.526670455900003 ], [ -121.957297598699995, 46.535353420699998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600, "random": 91.081 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.415063311300003, 46.070678448300001 ], [ -118.376473190699997, 46.071652278400002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800, "random": 188.468 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.202529349100004, 48.8159609661 ], [ -122.195484263400004, 48.820649558100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000, "random": 166.36 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547235864699999, 45.811720037800001 ], [ -122.546985666500007, 45.816821755600003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000, "random": 86.73 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000, "random": 177.078 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.826985228699996, 46.970870741799999 ], [ -123.826102687499997, 46.970061214099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000, "random": 70.982 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.947829976099996, 47.035821079100003 ], [ -122.931624680400006, 47.027755501100003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000, "random": 84.809 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.993987434899999 ], [ -122.735394202600006, 49.002070207099997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000, "random": 102.587 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.293808411900002, 46.314192016500002 ], [ -119.286240130699994, 46.308479073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000, "random": 163.138 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305106573299994, 47.943574850099999 ], [ -122.304446133300004, 47.944617216399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900, "random": 18.655 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.689080403600002, 47.153353215400003 ], [ -121.659291020300003, 47.159135812800002 ], [ -121.619821252, 47.133142341 ], [ -121.612406941700002, 47.121064557099999 ], [ -121.5963308595, 47.107346350699999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500, "random": 97.487 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.223590741300001, 47.620646532 ], [ -117.223631723799997, 47.6278867921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300, "random": 22.217 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.886809233699999 ], [ -124.1042063039, 46.886859147400003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900, "random": 93.373 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.877039614300003, 46.547358720600002 ], [ -122.875264102299994, 46.547352524099999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900, "random": 95.917 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320664178399994, 48.920195997 ], [ -122.321912505200004, 48.920192245499997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400, "random": 164.022 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.358974689600004, 46.893314978799999 ], [ -122.357382771900006, 46.929736850399998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400, "random": 121.947 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.351531242299998, 47.9748188959 ], [ -122.352094649099996, 47.974724356899998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000, "random": 160.188 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.000372751800001, 46.1639381329 ], [ -122.996112927300004, 46.161845104900003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000, "random": 166.645 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.111416419500003, 47.8021101024 ], [ -122.1053446624, 47.810401153900003 ], [ -122.065493119899998, 47.817931230100001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000, "random": 22.325 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.631602476200001 ], [ -122.665955536300004, 45.631898547 ] ] } } +{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1922237193, 47.3773145311 ], [ -120.1403017666, 47.3713844944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209227556, 45.5721542335 ], [ -122.29949512, 45.571607305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.3260483397, 47.6867923802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2673512221, 47.2007333641 ], [ -122.2604202074, 47.2012176284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832090078, 47.3836367426 ], [ -119.4832316128, 47.3884806862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940086764, 47.2249092263 ], [ -122.293850203, 47.2500481115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.1254917575 ], [ -119.2815617176, 47.1297537126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555936398, 47.8589452723 ], [ -117.3577112718, 47.8814244662 ], [ -117.3523268647, 47.8961954425 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8752641023, 46.5473525241 ], [ -122.8650512546, 46.5465667665 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2105622712, 47.4554072848 ], [ -123.2127462556, 47.4576868663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0687629907, 46.3226150928 ], [ -120.0440296636, 46.3075497622 ], [ -120.0285168926, 46.3059630059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2219122891, 47.6270557243 ], [ -120.2084267507, 47.6265613257 ], [ -120.1950551418, 47.6327544789 ], [ -120.1809857702, 47.6313450664 ], [ -120.1479862888, 47.6503824795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1193130939, 48.0535474274 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3005913938, 47.4765744345 ], [ -120.2973152366, 47.5006578675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1084617824, 47.8738712824 ], [ -120.1019008002, 47.8648083629 ], [ -120.0721004876, 47.859499395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0894657528, 46.2734887506 ], [ -119.0934185999, 46.2851671356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2217568694, 47.194537858 ], [ -122.212761856, 47.1970266396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799148927, 47.5984958939 ], [ -122.1862318775, 47.6058898709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.4051129342 ], [ -119.5213520361, 48.4038791845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1265910273, 47.2001121701 ], [ -123.1018056421, 47.1837746945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.1813621929 ], [ -120.8081625673, 47.19291613 ], [ -120.7730682265, 47.1959969886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3325641688, 48.8145942815 ], [ -122.327035238, 48.8181848035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045734555, 47.6490440633 ], [ -122.3036135383, 47.6515712549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5884939945, 46.6478136609 ], [ -118.5565118981, 46.6435530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9202563007, 47.8731183295 ], [ -119.9168716778, 47.8830195848 ], [ -119.9175688105, 47.9042347352 ], [ -119.888689271, 47.925649692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3181975005, 47.8175907621 ], [ -122.3150855528, 47.8211917901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339339028, 47.4005463581 ], [ -117.7937991559, 47.4331327858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3920677701, 47.6528570613 ], [ -117.3930264257, 47.6536012073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616900184, 48.0042963392 ], [ -122.4676875773, 48.0079051908 ], [ -122.531073695, 48.0085360069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2789804626, 47.867386825 ], [ -122.2756369244, 47.8708807894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5609895827, 46.3647132472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3260483397, 47.6867923802 ], [ -122.32907164, 47.6943145242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4710716591, 47.2737539701 ], [ -119.4826447809, 47.3232113182 ], [ -119.4756411869, 47.3509675109 ], [ -119.4791481927, 47.3691228237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6882400113, 47.6692766526 ], [ -122.6900708232, 47.6742545713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3773305642, 48.5155613349 ], [ -122.3786436215, 48.5169464302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4817145594, 47.7503088944 ], [ -118.4711275269, 47.7344847908 ], [ -118.3936449799, 47.6932837218 ], [ -118.3442644432, 47.6573447006 ], [ -118.3165261274, 47.6448669186 ], [ -118.2186138675, 47.6426665493 ], [ -118.1788708956, 47.6503359058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.2074211012 ], [ -121.9888740579, 47.2031602024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5299932781, 47.9150697025 ], [ -124.5344288985, 47.9127912202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8042667838, 47.4677635998 ], [ -122.7922032406, 47.476414011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4611233972, 47.2285063751 ], [ -122.46060986, 47.2297520929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.0718480284 ], [ -122.1116525558, 48.0918800123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6286423009, 48.325690041 ], [ -122.6303344465, 48.3337416853 ], [ -122.6260671635, 48.3402015788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2311497101, 47.1220696502 ], [ -117.235609286, 47.1247339542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0309120554, 46.7587001203 ], [ -121.9814105695, 46.7572813912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135449594, 48.7213796222 ], [ -117.4135771849, 48.7285818258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4059782511, 47.8001660961 ], [ -117.4074639212, 47.8123509195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3365632968, 47.2450397981 ], [ -122.3353775602, 47.2512222204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.2534933593 ], [ -122.4363679452, 47.2544445506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0933468628, 46.1991336316 ], [ -119.1012238708, 46.2052016642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1911483543, 47.5183415887 ], [ -117.1974475198, 47.5227002331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7397102898, 46.7012896138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959583754, 47.4506600917 ], [ -122.2916171614, 47.4596862569 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397118795, 47.6707021684 ], [ -117.2396318808, 47.6716727121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933744977, 46.4150549766 ], [ -120.3959492409, 46.4169433277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6734966352, 46.3612844656 ], [ -122.650489049, 46.3557399918 ], [ -122.6382937487, 46.3654953749 ], [ -122.6200459422, 46.3718240773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2765740876, 47.8734029921 ], [ -122.2777737236, 47.879481564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2143023696, 46.4117358872 ], [ -117.2060959145, 46.4151094256 ], [ -117.1848415097, 46.4126701464 ], [ -117.1634328434, 46.4240635088 ], [ -117.1438680931, 46.4278013383 ], [ -117.0874609685, 46.4153003586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6334221513, 45.6184980719 ], [ -122.6266798027, 45.6184887446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0436033456, 46.3778943675 ], [ -123.0368091721, 46.3974067466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0250689519, 47.8360845439 ], [ -120.0239885328, 47.836037193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499497496, 45.7806466337 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.4527245935 ], [ -122.8201543029, 47.4545979618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832088344, 47.3835435175 ], [ -119.4832090078, 47.3836367426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2346365429, 48.3169213007 ], [ -122.2366632871, 48.3204677227 ], [ -122.2321815344, 48.32047636 ], [ -122.2326302599, 48.3235497417 ], [ -122.2091366451, 48.3331360287 ], [ -122.20310466, 48.3476787003 ], [ -122.2067256114, 48.3642645921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.0085360069 ], [ -122.5339872909, 48.0097622963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0547386882, 46.9253808035 ], [ -117.0395144382, 46.9302931184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.3543537474 ], [ -123.7157590122, 46.3489750762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.6837937197, 47.1293370288 ], [ -120.7051341774, 47.1629714624 ], [ -120.7023177917, 47.1754533511 ], [ -120.7067796881, 47.1840974012 ], [ -120.7080243736, 47.2036487713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958194243, 47.3530329299 ], [ -122.2946343778, 47.3643588625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6177931336, 47.3660514733 ], [ -122.6156699298, 47.3867506969 ], [ -122.624274168, 47.4020537577 ], [ -122.624470827, 47.4111862674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5325801467, 47.7818048655 ], [ -117.5272372278, 47.7876435363 ], [ -117.5354467442, 47.7978975469 ], [ -117.5536352201, 47.8043838824 ], [ -117.5553559852, 47.8104238423 ], [ -117.5692400943, 47.8125064907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0395375143, 48.1839762284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0905398888, 46.8217373497 ], [ -123.0798684236, 46.8216532259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2715285544, 48.9748696672 ], [ -122.2650050712, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3370917545, 47.4657444174 ], [ -120.3384219874, 47.4671390718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1844675978, 48.0584615787 ], [ -122.1847688223, 48.0681379541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1030345042, 47.677801453 ], [ -117.0542260413, 47.6939743273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.0903093008 ], [ -122.6305634117, 47.0911974641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -118.9998507933, 47.9597933478 ], [ -119.0016246215, 47.9560020349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4171863107, 48.1123263385 ], [ -123.404306887, 48.1071331596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7066290132, 47.5247891631 ], [ -122.6974328926, 47.5290055297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930223395, 47.1364690107 ], [ -122.2929693831, 47.1402423696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.9794731965 ], [ -122.1697766801, 47.9782340718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2010578056, 47.8100663059 ], [ -122.1943284707, 47.8116126602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0258249511, 46.1766934283 ], [ -123.0304642178, 46.1645370289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.1738772879, 47.1121270494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -119.0018417526, 47.9714245764 ], [ -118.98586136, 47.9716814731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2255548441, 48.5141869713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1262630128, 46.6018315229 ], [ -123.0966056992, 46.6268683975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2662889573, 47.055615833 ], [ -123.2652259391, 47.0556339624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0614923955, 46.8642889165 ], [ -124.0521133187, 46.8710825521 ], [ -124.0439366003, 46.8923982723 ], [ -124.0040591243, 46.8921353893 ], [ -123.9890755509, 46.9098779782 ], [ -123.9365577148, 46.9230494022 ], [ -123.9197831063, 46.931113491 ], [ -123.8673289312, 46.9433556183 ], [ -123.8480154625, 46.9435702245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969102286, 47.5026900234 ], [ -122.1949845235, 47.5021417776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7534494161, 45.9236451726 ], [ -122.7604926179, 45.9331454264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.5344542826 ], [ -122.5170315735, 46.5330350165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2776857935, 48.8435345933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159492661, 47.2571623867 ], [ -122.5159507876, 47.2584346491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7078176969, 48.1979655963 ], [ -117.7153794817, 48.2082318736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3290774024, 47.5942483647 ], [ -122.3297505745, 47.5932743791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018126834, 45.8933986585 ], [ -122.4525420007, 45.8955411657 ], [ -122.4519709732, 45.9059295423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2866459043, 47.0557293212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8857507292, 46.5838092047 ], [ -122.8838617499, 46.5838405084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.7802658991 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0929136587, 48.0727563835 ], [ -123.0602108175, 48.0644077043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055508584, 45.5906041586 ], [ -122.4001255166, 45.5869987019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.8236282381, 45.6963748835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6889327532, 47.3381121478 ], [ -118.6995142736, 47.3563618481 ], [ -118.6991242989, 47.3709132653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.6683085988, 48.2948724981 ], [ -119.626284036, 48.3081932192 ], [ -119.6069922762, 48.3197133157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.2322639062 ], [ -123.9454549934, 47.2361778754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578697003, 48.2871805041 ], [ -122.6578563225, 48.2883491403 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5178867416, 47.8084398669 ], [ -122.5036732886, 47.8027461252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6622739757, 45.6359541769 ], [ -122.6617032151, 45.6433830491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9144562174, 46.3202165297 ], [ -122.9095978806, 46.3282371415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7834183624, 47.4410207892 ], [ -117.6947330224, 47.501473805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349389318, 47.2327862223 ], [ -122.4231498311, 47.236217271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351426952, 48.421566968 ], [ -122.3410552917, 48.4313110136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8899669956, 47.507262303 ], [ -121.8642395904, 47.5111841759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9560547959, 47.9246186729 ], [ -118.9422723546, 47.9168139511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8535287712, 47.1322250265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0376452727, 47.2410571348 ], [ -121.0465852827, 47.2442852642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3851698428, 47.4416448647 ], [ -117.3846465219, 47.4488701305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0391231637, 46.4202563296 ], [ -117.0389677607, 46.4202679171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3025873431, 47.4686065666 ], [ -120.2997979412, 47.4682860937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7663244649, 47.4942350849 ], [ -122.7350085187, 47.5157381772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4004321611, 45.9963687794 ], [ -122.4160233566, 45.9925843034 ], [ -122.4240462352, 45.9831575594 ], [ -122.4609396952, 45.9952678398 ], [ -122.5034799431, 45.9983583464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0501760455, 46.4755815152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4028330225, 47.1110883316 ], [ -118.3796443329, 47.1117747241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.0951016391, 47.4382498075 ], [ -117.0779731302, 47.442965311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3023056898, 46.2676765369 ], [ -119.2905873773, 46.2611443687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3815863213, 47.8032716419 ], [ -122.3832557827, 47.8034144615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1514985886, 47.5062570131 ], [ -122.1429848329, 47.5057588479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095625837, 47.0558186162 ], [ -123.0065316221, 47.0552123027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844861848, 47.2982208758 ], [ -122.2721730722, 47.3039622013 ], [ -122.2563579686, 47.3028065567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.6585103049, 48.1402801323 ], [ -117.6860630929, 48.148122845 ], [ -117.7037053316, 48.1707366815 ], [ -117.7005163888, 48.1889954329 ], [ -117.7078176969, 48.1979655963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3435956074, 47.6246542116 ], [ -122.3436176395, 47.6252248523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1273008596, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6257721122, 47.4000022997 ], [ -122.6242524897, 47.402892309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5666907268, 48.114021332 ], [ -123.561617171, 48.1030684118 ], [ -123.5537509538, 48.0996615302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6849142545, 46.0415021587 ], [ -118.6692405052, 46.0403350228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2137802603, 47.9942207425 ], [ -122.2138635159, 47.9989436144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7457821436, 46.6828253187 ], [ -123.7367980221, 46.6805525735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0563552656, 47.9153765852 ], [ -119.0380002259, 47.9325544575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.2402395389 ], [ -119.0854605595, 46.245260658 ], [ -119.0823565056, 46.2482752943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1375909505, 48.9171432802 ], [ -122.1322464977, 48.9173156398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8455160853, 47.415535475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3939306113, 48.2869815122 ], [ -124.3487894025, 48.2702583288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340520373, 47.2230930942 ], [ -122.4250777648, 47.2230824389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1137494257, 47.8050106332 ], [ -122.1118699043, 47.8049010687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8883863985, 46.9801777553 ], [ -123.8874051323, 46.9794818062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802579386, 47.804112396 ], [ -122.3815863213, 47.8032716419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0277101274, 47.8474213611 ], [ -120.0202611393, 47.8413912452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4744048469, 48.9644201365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356457951, 47.2494493698 ], [ -122.436113822, 47.2534933593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856871492, 48.8695370939 ], [ -122.4856549623, 48.8698410399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7622997913, 46.31964321 ], [ -122.7323106527, 46.3245338278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8640137768, 47.2332276959 ], [ -119.8587943416, 47.2333342522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7770276759, 48.649473503 ], [ -118.7391181737, 48.6476256888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9823417916, 47.8127801291 ], [ -121.970995859, 47.8259643642 ], [ -121.9694473416, 47.8430757428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1766955576, 47.5724700872 ], [ -122.174140027, 47.5778363862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2268964445, 47.8867919049 ], [ -122.2159243491, 47.8953256029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.1421956268 ], [ -122.0564566441, 47.1405104825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.0572059596 ], [ -123.9287037815, 47.0601524957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2280903322, 47.9083247357 ], [ -122.2233288919, 47.9095861548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4105333679, 47.412298435 ], [ -121.4002907153, 47.3993957355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9656135911, 47.858227985 ], [ -121.9638147974, 47.8578165968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340284894, 45.6462602442 ], [ -122.6163705941, 45.6478697622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.9187733832 ], [ -122.7404887482, 45.9171006476 ], [ -122.741223238, 45.913180857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3513796962, 45.9446481587 ], [ -119.3350044738, 45.9455289592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.9810452868 ], [ -123.9062715578, 46.9810823154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0215352259, 46.3175795065 ], [ -124.0286534428, 46.311088406 ], [ -124.0415185162, 46.3088525506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2754372301, 47.0555807313 ], [ -123.2662889573, 47.055615833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2439880813, 47.3740667238 ], [ -122.2442490763, 47.3856159218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3174867795, 48.4356661942 ], [ -122.3133909339, 48.4356182605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.9818766144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.1033095374 ], [ -118.3877812751, 47.1104919463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.7023795423 ], [ -119.4186609734, 48.6884346356 ], [ -119.3587578096, 48.6725327308 ], [ -119.3466152635, 48.6636563193 ], [ -119.3303173221, 48.6585990657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7931037677, 46.617894857 ], [ -117.8115600109, 46.6379634079 ], [ -117.8063279649, 46.6553619757 ], [ -117.7983218662, 46.6661079567 ], [ -117.8154114815, 46.6748014633 ], [ -117.8035001513, 46.6863405276 ], [ -117.7939941091, 46.689334233 ], [ -117.7839885351, 46.7092148338 ], [ -117.7533189568, 46.7361703665 ], [ -117.7312634359, 46.7380609644 ], [ -117.7294282626, 46.7486084104 ], [ -117.7158828796, 46.7583207914 ], [ -117.7043255452, 46.7738226067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8466345144, 47.0432987731 ], [ -122.8322700503, 47.0459335687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2337989939, 47.1915311175 ], [ -122.2217568694, 47.194537858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7651140331, 47.0629504411 ], [ -122.7648711374, 47.0612918893 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.8311196925, 46.7198868797 ], [ -123.846375426, 46.71976203 ], [ -123.8573903297, 46.7294966365 ], [ -123.875915207, 46.7307655351 ], [ -123.8845152186, 46.7436092547 ], [ -123.8841812425, 46.749824761 ], [ -123.8906555633, 46.7520952605 ], [ -123.9166124942, 46.7438549649 ], [ -123.9263452217, 46.7256804588 ], [ -123.9472489197, 46.7258811772 ], [ -123.9742906306, 46.7404871457 ], [ -123.9900095006, 46.7320277366 ], [ -124.0203997477, 46.7246504747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2973152366, 47.5006578675 ], [ -120.2970255151, 47.5111002228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8906915475, 46.5450662647 ], [ -117.8745068603, 46.5453492398 ], [ -117.8562732625, 46.5369650839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6957500975, 47.3044682452 ], [ -120.6919262643, 47.3189008424 ], [ -120.6706596611, 47.3260826644 ], [ -120.6285638874, 47.3350952018 ], [ -120.6108972417, 47.3314579592 ], [ -120.5922999578, 47.3366776893 ], [ -120.5808735402, 47.3353309836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0454972488, 47.103424531 ], [ -122.0470850116, 47.1062792018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2862401307, 46.308479073 ], [ -119.2975114504, 46.3001018541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3989176751, 46.3702741916 ], [ -119.346211276, 46.3415217482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1080928359, 48.0132540479 ], [ -122.1099317298, 48.0262394664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9099882327, 47.8113401111 ], [ -122.918842027, 47.8022660378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2969810046, 47.4206856987 ], [ -120.2947757571, 47.4153242228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.4859844964, 46.5456788983 ], [ -122.4858227533, 46.5364298713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.7266981663 ], [ -120.7921152532, 46.7356473477 ], [ -120.7884944778, 46.7483083341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9894375686, 48.5890571016 ], [ -118.0155804532, 48.600051746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832316128, 47.3884806862 ], [ -119.483234393, 47.3893726474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929693831, 47.1402423696 ], [ -122.2929747612, 47.1553108605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4077199663, 45.6106168272 ], [ -122.4071070263, 45.6049828823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3831477693, 46.998968611 ], [ -123.3765852382, 46.990906447 ], [ -123.3417045343, 46.9717882087 ], [ -123.3294181035, 46.960126358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269502017, 47.4085571911 ], [ -122.3327432015, 47.408543256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1318940785, 46.233167577 ], [ -119.1277899267, 46.2435755653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.5397640332 ], [ -117.5783005683, 48.5448469139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1099088867, 46.9701523567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6654874391, 45.6200688002 ], [ -122.6581170517, 45.6185588654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6032429154, 47.7771222102 ], [ -122.5869526009, 47.7962217258 ], [ -122.5733355827, 47.8027671644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3029610908, 47.4095632747 ], [ -120.3035547655, 47.410929097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6904808118, 45.8157027044 ], [ -122.6873276483, 45.815867042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.3544077565 ], [ -122.6174730359, 47.3653428749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.4747937676 ], [ -117.5560127138, 46.4751416428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4716805803, 46.5315434526 ], [ -120.4693962361, 46.5221425225 ], [ -120.4558097511, 46.5163581409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9728133998, 47.3032197247 ], [ -117.9722788914, 47.3073278653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8657551158, 46.4709082251 ], [ -122.8491311695, 46.4661882079 ], [ -122.8425140234, 46.4589718006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067680743, 48.8981282277 ], [ -122.6369094129, 48.9223479428 ], [ -122.6562396315, 48.9328552001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1118699043, 47.8049010687 ], [ -122.1116803023, 47.8021510795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2163760183, 47.8727847101 ], [ -122.2148947405, 47.8742828444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3464591984, 46.0510569216 ], [ -118.3460982766, 46.053273733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.4028330225, 47.1110883316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9542721665, 46.5167411946 ], [ -121.9544576073, 46.5216015582 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2077141546, 47.8063531965 ], [ -122.2076567487, 47.8095958449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3844324012, 47.6538454237 ], [ -117.3812522854, 47.6538559571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7360398713, 48.9865050839 ], [ -122.7349383438, 48.9890983509 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7396338722, 47.8911395035 ], [ -122.7323375199, 47.8898968676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8449429934, 47.1094620687 ], [ -119.8324499347, 47.1042259268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487788952, 46.3406500803 ], [ -117.0501999692, 46.3407700726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6934989729, 47.5042678567 ], [ -117.7071635421, 47.5067188922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2745076704, 48.4947462696 ], [ -122.269198387, 48.4967354264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3764731907, 46.0716522784 ], [ -118.3592834167, 46.069578111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876098497, 46.1378429021 ], [ -122.9772037818, 46.1314750359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9699337226, 47.859195632 ], [ -121.9656135911, 47.858227985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0557206222, 47.1388187332 ], [ -122.0562728458, 47.1405796821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0465852827, 47.2442852642 ], [ -121.0567745234, 47.2489122397 ], [ -121.0584176535, 47.257382574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0203997477, 46.7246504747 ], [ -124.0529293689, 46.7278782014 ], [ -124.0776344175, 46.7398991912 ], [ -124.0803644861, 46.7452804885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8764960512, 46.187636732 ], [ -119.8533745816, 46.1859133588 ], [ -119.7720886189, 46.1957457749 ], [ -119.7518491007, 46.203691501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6833369779, 45.6328269221 ], [ -122.6914263595, 45.6358581387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5930897565, 47.6429188126 ], [ -117.5905461616, 47.6429198089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9627838072, 46.122637066 ], [ -122.9506147609, 46.1164898023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2069786865, 47.8783103437 ], [ -122.2066756596, 47.8885941556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.2613892962 ], [ -119.4819452858, 46.2520832532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1010693917, 47.9456237913 ], [ -122.1014661015, 47.9532966926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.1016300232, 48.1547517197 ], [ -117.0626629459, 48.1752916443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4352497488, 47.247047007 ], [ -122.4356457951, 47.2494493698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4491781665, 48.7760427514 ], [ -122.4452973982, 48.7767299988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282535153, 47.6874070809 ], [ -122.1216151872, 47.6765956856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5320368544, 47.6720530531 ], [ -122.5393560124, 47.6795086708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.5086822913 ], [ -120.6306952505, 47.5117651765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078625453, 46.9528052372 ], [ -122.9142238248, 46.952800067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1702535399, 46.7278386224 ], [ -117.1676525064, 46.7262385037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9694473416, 47.8430757428 ], [ -121.9701538655, 47.8449608786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8281981659, 46.3913609219 ], [ -123.8208903441, 46.382916336 ], [ -123.8026031248, 46.3760022496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0867515262, 46.2655755624 ], [ -119.0894657528, 46.2734887506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2933970337, 47.9108132967 ], [ -122.2974847948, 47.9152081943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422944621, 47.3856092016 ], [ -118.8779127198, 47.3299221964 ], [ -118.8574529391, 47.3194821919 ], [ -118.8085220192, 47.3154321744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3873706387, 46.4670041855 ], [ -120.3487396874, 46.4448370306 ], [ -120.3388625978, 46.4245692837 ], [ -120.3200293789, 46.4169522648 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.9328552001 ], [ -122.6717054661, 48.9414820309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2855990411, 47.2943430614 ], [ -121.2804778056, 47.2793125532 ], [ -121.2700379923, 47.2712377268 ], [ -121.2354555076, 47.2675076438 ], [ -121.1938148872, 47.2533046274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3938232704, 47.1581372397 ], [ -122.3637186054, 47.1582777108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7482397955, 48.9864873577 ], [ -122.7514620424, 48.9886011741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3057217067, 48.3394359548 ], [ -122.2954733672, 48.3369797762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2149004639, 48.1767680441 ], [ -124.2030181472, 48.1804550312 ], [ -124.1958320085, 48.1776212387 ], [ -124.1651364154, 48.1913499188 ], [ -124.1568931216, 48.1895403281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9161184136, 46.92713066 ], [ -121.963812764, 46.9377729595 ], [ -121.9797784534, 46.9518926584 ], [ -121.9921794341, 46.953076988 ], [ -122.0038358385, 46.9609913498 ], [ -122.0181933196, 46.9787080824 ], [ -122.0159365761, 46.9942734533 ], [ -122.0378595927, 47.0138315263 ], [ -122.0395446219, 47.033662887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2471159221, 48.9855358738 ], [ -122.2478579965, 48.9927289918 ], [ -122.2628122677, 48.9927495948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1906863712, 47.8382800486 ], [ -117.1758197528, 47.8346000768 ], [ -117.1685156881, 47.8473257512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329141514, 47.5710682046 ], [ -122.6329070414, 47.5726953913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1768999971, 47.2389448117 ], [ -121.1674102459, 47.2309146691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904031135, 47.7736472661 ], [ -122.1954185124, 47.784730909 ], [ -122.2064752256, 47.7910831404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2501056872, 47.4783678971 ], [ -118.2546693813, 47.479786644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9232462415, 46.7732075734 ], [ -122.9104250154, 46.7795778822 ], [ -122.8948463321, 46.7986803418 ], [ -122.8750274612, 46.7955222634 ], [ -122.8635507845, 46.8063295169 ], [ -122.8615475437, 46.8501099194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049767143, 48.8323888064 ], [ -122.296485317, 48.8400447632 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.2157321624, 47.8782642533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8071947642, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2999619988, 47.6603776807 ], [ -122.298324518, 47.6610600414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219018806, 47.3326977386 ], [ -122.3177802121, 47.3354233521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6583512026, 47.8711608541 ], [ -122.6392561156, 47.8677305236 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5563050504, 45.6167350271 ], [ -122.5630189407, 45.6418660754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7608305412, 48.1125877254 ], [ -122.7602906483, 48.11202882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205696751, 48.8842446664 ], [ -122.3205534208, 48.891030585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1788708956, 47.6503359058 ], [ -118.16241258, 47.6536361132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2913576024, 47.8992527084 ], [ -122.2929510336, 47.905080688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2359630516, 47.0980998127 ], [ -119.1774124503, 47.0928575254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5604385799, 47.2858209621 ], [ -122.5695221755, 47.2976027952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1449657103, 47.7821349681 ], [ -122.1440770168, 47.7838492646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.0517882972 ], [ -122.1592829547, 48.0537110655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1876596894, 47.7659065312 ], [ -122.1904031135, 47.7736472661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9572975987, 46.5353534207 ], [ -121.90788364, 46.5340788266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9031806451, 48.0520592106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446131424, 47.3498974886 ], [ -122.2445299041, 47.3611482288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.4846758275 ], [ -122.2525911983, 47.4840343924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0915871421, 47.1407602078 ], [ -122.077350334, 47.1390929944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3895048351, 46.0116896783 ], [ -118.3888808965, 46.0238641947 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9785905771, 46.3125656122 ], [ -119.9791440454, 46.3170643063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7003253167, 47.7576668992 ], [ -118.6135280944, 47.7578991582 ], [ -118.547873384, 47.7633985376 ], [ -118.5164209056, 47.7586626614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3176595662, 47.4302249495 ], [ -120.319453417, 47.432412369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.41797883, 48.1138577083 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.5747409161 ], [ -122.1068419882, 47.5689365485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3673481617, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.7789719928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.4721425859 ], [ -120.3235459955, 47.4769045316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1511179931, 47.883422456 ], [ -120.1295906216, 47.8811242831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3352211475, 47.7132173725 ], [ -121.290688, 47.7127258764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8855586956, 46.2431363274 ], [ -122.8844965185, 46.2561969531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6668848781, 47.0903196406 ], [ -118.6669042924, 47.0988351268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9318997964, 48.2706730135 ], [ -121.9062086717, 48.2750002287 ], [ -121.8887436919, 48.2715237891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0740899923, 47.2211975001 ], [ -117.0730012011, 47.2221634757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2443021409, 47.3027122504 ], [ -122.2329381771, 47.3035228844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9076435518, 46.2769325247 ], [ -122.9056916194, 46.2824568896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.6490400174 ], [ -121.1552091714, 45.6491568269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.9987590553 ], [ -119.6579299947, 47.9994661851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2185549591, 45.5661709399 ], [ -122.2012990567, 45.5698716059 ], [ -122.1952852836, 45.5744734955 ], [ -122.1926793172, 45.5847363585 ], [ -122.1788052048, 45.588814009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2043471222, 47.9819297636 ], [ -122.2057386717, 47.9819494434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5684177308, 46.7947224844 ], [ -118.54734221, 46.794839539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.3444983864, 47.6942136653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9157314952, 46.1667895778 ], [ -122.9119035401, 46.1765920328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0373692153, 45.6641740956 ], [ -120.9810776369, 45.663863346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5915790813, 46.4740027276 ], [ -117.564276224, 46.4747937676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0677060263, 47.3008399269 ], [ -120.0660840825, 47.2782486825 ], [ -120.0772210514, 47.2539372425 ], [ -120.0729382811, 47.2433041563 ], [ -120.0578994726, 47.236158248 ], [ -120.0352275188, 47.2371715429 ], [ -119.9991848792, 47.2312647073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2229369627, 47.5343029792 ], [ -124.2731333424, 47.5407820544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241882947, 46.1498712277 ], [ -119.0298502289, 46.1536456355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434428667, 48.9313503294 ], [ -122.1515895973, 48.9460909964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135246441, 47.2896891115 ], [ -122.3006527009, 47.2899013547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7448931286, 45.8153696587 ], [ -122.7319332222, 45.815377897 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135712365, 47.2861343941 ], [ -122.3135246441, 47.2896891115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9972196495, 45.8575744394 ], [ -120.9526232876, 45.8609528341 ], [ -120.9521625359, 45.8499382636 ], [ -120.9420523635, 45.8461706302 ], [ -120.9368329014, 45.8325800913 ], [ -120.90654952, 45.8319001408 ], [ -120.9044761844, 45.8247380049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2515257215, 46.0417663171 ], [ -117.2441804807, 46.0447999212 ], [ -117.2380954947, 46.0571340349 ], [ -117.2390964135, 46.0506182014 ], [ -117.2352747181, 46.0504150878 ], [ -117.2398123566, 46.0452544415 ], [ -117.2301501473, 46.0513421257 ], [ -117.2303844377, 46.054464388 ], [ -117.2342914445, 46.0534318514 ], [ -117.2289228871, 46.0662303226 ], [ -117.2172844158, 46.0720892771 ], [ -117.2090263073, 46.0707833675 ], [ -117.2102099243, 46.0742553436 ], [ -117.1872269675, 46.0799763775 ], [ -117.1775707316, 46.0877797821 ], [ -117.1594657515, 46.0904525526 ], [ -117.14576963, 46.0998598289 ], [ -117.1354669642, 46.1156767211 ], [ -117.130739594, 46.1379000516 ], [ -117.1217205642, 46.148960802 ], [ -117.0817036198, 46.1745074608 ], [ -117.0792404746, 46.1865400964 ], [ -117.0715404689, 46.1959222812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.5343812278 ], [ -117.9055307646, 48.5363629877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9261218499, 46.1229717137 ], [ -122.925898762, 46.1234239447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9564753528, 46.7112869506 ], [ -122.9543423418, 46.7162401177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.3060765495 ], [ -119.9685280902, 46.3037202391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.6696013323 ], [ -122.4690215411, 45.664782696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6564062372, 47.0966738492 ], [ -118.6234748412, 47.0969147261 ], [ -118.5703483961, 47.1108950532 ], [ -118.5001739334, 47.110755101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4390078118, 47.6240624799 ], [ -117.4447329829, 47.6326990173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4890479152, 47.5280979623 ], [ -120.45450523, 47.5207872011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9097237692, 47.1901067626 ], [ -120.9213159644, 47.1927732879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.5499497496, 45.7806466337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2668970833, 48.0067931754 ], [ -118.2476233983, 48.0127941378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0772800593, 48.924155999 ], [ -122.0656513713, 48.9198042616 ], [ -122.0549081457, 48.9213240413 ], [ -122.0474169625, 48.9277221033 ], [ -122.0340311094, 48.9278686212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5082944355, 48.9920259516 ], [ -118.5037558939, 48.9999434555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8155297756, 48.0684125491 ], [ -122.8179486123, 48.0711563886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8167074126, 46.9748418645 ], [ -123.8249346802, 46.9706520307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1737083937, 46.8115310782 ], [ -119.1548022107, 46.8115761702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.4711363705 ], [ -122.3357219408, 48.4717196536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8895694243, 46.4396122337 ], [ -122.8882041537, 46.4395283256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.8306336416 ], [ -122.1260566825, 47.8338193781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2012261125, 47.8744218608 ], [ -120.1658245577, 47.8601832667 ], [ -120.1525821693, 47.8602012466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1232845443, 46.2486626016 ], [ -119.1105630412, 46.2485229568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4899695301, 45.724018802 ], [ -121.4828848568, 45.7225399831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1698660388, 46.3410315909 ], [ -120.0848828452, 46.3284729616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6909098997, 47.2757797492 ], [ -118.6904101142, 47.3214220899 ], [ -118.6860954235, 47.326048138 ], [ -118.692493076, 47.3283444103 ], [ -118.6922988122, 47.3324960837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9536791305, 47.233042477 ], [ -119.8966827506, 47.2327403563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1532476863, 46.2701348718 ], [ -118.1407187037, 46.2701649585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350638939, 48.0308244206 ], [ -122.7299573082, 48.0326119562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.7586626614 ], [ -118.5054795183, 47.7584305503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.0828527406 ], [ -118.6922772053, 48.0944969963 ], [ -118.7002081377, 48.1040161548 ], [ -118.6925905066, 48.1252812428 ], [ -118.6930351509, 48.1439533664 ], [ -118.7042337673, 48.1595006242 ], [ -118.7142740466, 48.2007014546 ], [ -118.7047677202, 48.2260732932 ], [ -118.6947159096, 48.2401285718 ], [ -118.6915026711, 48.2554038828 ], [ -118.6928620869, 48.2644862877 ], [ -118.7038407746, 48.2693058531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8880335642, 47.567584502 ], [ -121.8864441288, 47.5692233555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3704124175, 45.9461267079 ], [ -122.3622749788, 45.9559140373 ], [ -122.375570848, 45.9643347144 ], [ -122.3700050613, 45.9690659156 ], [ -122.3692999752, 45.9768294479 ], [ -122.3556390004, 45.9892331664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.4190994152 ], [ -122.2952486802, 47.4309838514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.3936027263 ], [ -122.2931085242, 47.392427434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380752869, 47.5786572039 ], [ -122.123054938, 47.5747409161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1810983468, 47.5797602872 ], [ -122.1760994752, 47.580180733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.9733591072 ], [ -123.5933186815, 46.9783764391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9829989628, 47.3264978242 ], [ -117.9837168125, 47.3338037132 ], [ -118.0012065196, 47.3339439117 ], [ -118.0053352606, 47.3422313462 ], [ -118.0190380245, 47.3455605705 ], [ -118.0413344485, 47.3583260637 ], [ -118.0859824317, 47.347843428 ], [ -118.1009161358, 47.3524254021 ], [ -118.1185016502, 47.3749703003 ], [ -118.1665050068, 47.402760537 ], [ -118.1827089763, 47.4201325168 ], [ -118.1889749684, 47.4362694977 ], [ -118.1843817029, 47.4682192357 ], [ -118.1928794609, 47.4781166157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9111972398, 46.6100100981 ], [ -122.9277931611, 46.6221965746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8344085442, 47.6126434109 ], [ -119.8131962319, 47.6126343481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.9704790806 ], [ -120.4029149867, 46.9715198957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0540259825, 47.8553267629 ], [ -120.0474672026, 47.8548480152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2604202074, 47.2012176284 ], [ -122.2488000931, 47.2053582695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1860840265, 48.0219150499 ], [ -122.1816312316, 48.0344874481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3546879112, 47.2034961093 ], [ -117.361690039, 47.2108541009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7219238918, 47.7633244454 ], [ -118.7225935085, 47.7708524695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6994969166, 45.8454016677 ], [ -122.7050754567, 45.8579274145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0434763305, 47.5508843024 ], [ -123.0407865476, 47.5395798157 ], [ -123.0503575134, 47.5292062176 ], [ -123.059297623, 47.5024290745 ], [ -123.0741604248, 47.4897900635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2157321624, 47.8782642533 ], [ -122.2111007099, 47.8781842656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1852889074, 47.6742929009 ], [ -122.1825622133, 47.6861532736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0332571479, 46.5053645236 ], [ -124.0289352268, 46.5118174067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3085183423, 46.2931233698 ], [ -119.3047423528, 46.2930973531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7604926179, 45.9331454264 ], [ -122.8049500418, 45.9609747813 ], [ -122.8209479482, 45.9765215085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3718777273, 48.1048682436 ], [ -123.3627497487, 48.1085599202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1770255475, 48.0518456949 ], [ -122.167626886, 48.0517882972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929566067, 47.408097835 ], [ -120.2929172872, 47.4079531918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2875761547, 47.8581507051 ], [ -122.2819653483, 47.864172748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3478885514, 47.157627397 ], [ -122.3150421028, 47.158578655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9162646971, 46.1456053501 ], [ -122.9147539076, 46.1502452965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7319332222, 45.815377897 ], [ -122.7270084609, 45.8156734191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.8668025285 ], [ -121.530549912, 46.869005372 ], [ -121.5227950438, 46.8649612608 ], [ -121.5289737696, 46.8698663514 ], [ -121.537161806, 46.86858299 ], [ -121.5294841863, 46.8711959296 ], [ -121.51710234, 46.8670852256 ], [ -121.5147529922, 46.8700968832 ], [ -121.5176596887, 46.8761957247 ], [ -121.5056293677, 46.8858544739 ], [ -121.480660576, 46.8939282214 ], [ -121.443504086, 46.8983759382 ], [ -121.4203948955, 46.9081166471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1751735539, 47.7677948795 ], [ -120.1859282772, 47.7676205033 ], [ -120.1840587587, 47.7828993523 ], [ -120.1996439306, 47.8048599228 ], [ -120.2093058833, 47.8268858662 ], [ -120.2023545245, 47.8407813167 ], [ -120.2104188578, 47.8533002068 ], [ -120.2028039844, 47.8632306636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.7777824155 ], [ -122.3353283591, 47.7777753423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1110123877, 46.9040127541 ], [ -124.1131838766, 46.9081888251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6142357749, 46.6544908714 ], [ -120.5943463684, 46.6386317502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6064394101, 47.3438463019 ], [ -118.5961167767, 47.3476217659 ], [ -118.5548000261, 47.3482337313 ], [ -118.5135806024, 47.3580620657 ], [ -118.4970061344, 47.3574102392 ], [ -118.4533036906, 47.3686689059 ], [ -118.3408593623, 47.4302279947 ], [ -118.2960394269, 47.4682522462 ], [ -118.2560871516, 47.4838568514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.3318236437 ], [ -122.3292431802, 47.3317433744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.2867891323 ], [ -122.8965761025, 46.2893166225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6716912752, 45.622917794 ], [ -122.6679722011, 45.6264046411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8782146319, 47.8269872076 ], [ -122.8756714308, 47.8241423181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.9990395411 ], [ -119.1601933723, 47.0283986473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3355466203, 47.469450059 ], [ -120.3195807175, 47.4716032095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829774552, 47.9869383211 ], [ -122.1829331211, 47.9885511027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1796695496, 47.6992447918 ], [ -122.1820573236, 47.7095901821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.3269502017, 47.4085571911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5110835333, 47.2895128669 ], [ -119.4703245021, 47.2726086288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3993131644, 47.6520356027 ], [ -117.3844324012, 47.6538454237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3303084037, 48.2396939589 ], [ -122.2809503607, 48.235572681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8383635311, 47.4109223756 ], [ -122.8295443158, 47.4127748773 ], [ -122.8203461375, 47.4070484463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5258992491, 46.6579574794 ], [ -120.5234705645, 46.6619857363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862032678, 47.7229006915 ], [ -121.9858303482, 47.7426828709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7868478019, 48.101573517 ], [ -119.7811517034, 48.1041817295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2071762297, 47.460991061 ], [ -122.2078807653, 47.466571782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0491706107, 48.1875683679 ], [ -117.0481554077, 48.1858130018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9270653363, 47.8558599343 ], [ -121.861666793, 47.8510041835 ], [ -121.8309651195, 47.8579919705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933243152, 46.5563517375 ], [ -120.385569175, 46.5499987592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5687127572, 46.732258391 ], [ -121.560456892, 46.7384901278 ], [ -121.556831556, 46.7546910576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2753035387, 46.5534563356 ], [ -122.2751954315, 46.5570314235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7257805786, 48.1562291862 ], [ -117.7227122233, 48.1685422116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9083860539, 46.9811017411 ], [ -123.9179703845, 46.9819334325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9222411132, 46.1464872396 ], [ -122.9218919138, 46.1466343189 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842574706, 47.200949296 ], [ -121.9813954636, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961885635, 47.4452613117 ], [ -122.2959583754, 47.4506600917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.190960133, 47.9817746745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2768149357, 47.8726630238 ], [ -122.2765740876, 47.8734029921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7486010675, 46.2060790676 ], [ -119.7475393038, 46.2094125334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5565118981, 46.6435530173 ], [ -118.5525513618, 46.6447887503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2066756596, 47.8885941556 ], [ -122.2022600424, 47.894649631 ], [ -122.2067906493, 47.8972009127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3336059484, 48.4174954237 ], [ -122.3330250741, 48.4174912688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2840598213, 46.5529035395 ], [ -122.2762378173, 46.5520130021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6274333676, 47.5344924995 ], [ -122.6237320393, 47.533996747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135602609, 48.7325006416 ], [ -117.4174728874, 48.7462831433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132785951, 46.9750588263 ], [ -123.8135123607, 46.9752656303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9384162966, 47.3734102727 ], [ -117.9150398251, 47.3982504993 ], [ -117.9034889508, 47.4225618796 ], [ -117.9043202925, 47.4371792471 ], [ -117.9110794237, 47.4456090228 ], [ -117.9222234569, 47.4504912849 ], [ -117.9478029623, 47.4527573229 ], [ -117.9564098516, 47.4576787359 ], [ -117.9495399132, 47.4703719079 ], [ -117.9510454936, 47.5055460418 ], [ -117.919069388, 47.5252624271 ], [ -117.9206461927, 47.5432700986 ], [ -117.9259768603, 47.5533776645 ], [ -117.9203852472, 47.5627460837 ], [ -117.9406277688, 47.5777330683 ], [ -117.9378384893, 47.6579307436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1336820514, 47.3186667549 ], [ -123.1117610605, 47.3369062558 ], [ -123.1048433653, 47.3569623887 ], [ -123.074686488, 47.3527052163 ], [ -123.0732200773, 47.347496595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6125603258, 48.3338920433 ], [ -119.6077631646, 48.3498164453 ], [ -119.6024268764, 48.353805119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7809433235, 48.1019970336 ], [ -119.7811517034, 48.1041817295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1978814184, 46.2296948397 ], [ -119.1815164346, 46.226705456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6300911575, 47.828750694 ], [ -122.6097297047, 47.8515622785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2426005336, 47.0979189769 ], [ -119.2452308425, 47.1004128397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0436242083, 47.9056634606 ], [ -122.0367508916, 47.9006838682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2752434827, 46.5583246063 ], [ -122.2684521921, 46.5680335119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3831772587, 47.8031153818 ], [ -122.3776962209, 47.7986124147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9543101229, 46.7193545946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3696991532, 47.6539119327 ], [ -117.3664685234, 47.6539039945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3554512716, 47.1039652908 ], [ -119.3375995228, 47.1039064442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1108326729, 48.0500968067 ], [ -122.110917332, 48.053411821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0668149366, 46.1268888879 ], [ -119.0454576014, 46.1224768114 ], [ -119.0330840552, 46.1382539413 ], [ -119.0162894195, 46.1394401375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770770356, 45.6326630802 ], [ -122.6738336898, 45.6318598942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6528625036, 47.482823007 ], [ -120.6499715907, 47.4876669203 ], [ -120.6333359953, 47.4949227596 ], [ -120.632703036, 47.5086822913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218919138, 46.1466343189 ], [ -122.9196173248, 46.147218448 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0308034821, 48.0385584263 ], [ -123.0044486257, 48.0205093633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2748522475, 47.8718113531 ], [ -122.2643165436, 47.8830950253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294537729, 46.6833756482 ], [ -123.7294448552, 46.6856170888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.071549412, 47.2268141567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5662058166, 47.642947503 ], [ -117.5608436626, 47.6428844249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939240773, 47.0800385113 ], [ -122.2937941925, 47.0829397886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7727025488, 48.5378235193 ], [ -121.7384627186, 48.5359258924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1219053901, 47.5005304078 ], [ -122.1121053337, 47.4972949224 ], [ -122.0977227603, 47.4988510864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9100284707, 46.215109501 ], [ -118.8769717239, 46.2152642916 ], [ -118.8462077967, 46.2312973119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1250035992, 48.6915473174 ], [ -118.1273843782, 48.6998160022 ], [ -118.1247088043, 48.7064325745 ], [ -118.1342768103, 48.7155462694 ], [ -118.1294134431, 48.7293164293 ], [ -118.1345781821, 48.7396855259 ], [ -118.1345342849, 48.7548742848 ], [ -118.1428018792, 48.7736597705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8593818839, 47.0403533748 ], [ -122.8466345144, 47.0432987731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255213817, 47.3019724752 ], [ -122.2174597214, 47.2971248747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9893266233, 47.8585504619 ], [ -121.9830239836, 47.8630432638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5427971587, 47.2623098139 ], [ -122.558955585, 47.2752600707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6418257139, 47.8341761604 ], [ -121.6207818793, 47.8353149584 ], [ -121.6173127355, 47.831729195 ], [ -121.6193646638, 47.8263548695 ], [ -121.611657277, 47.8196693372 ], [ -121.5798641373, 47.8122645365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1121601288, 47.2429315526 ], [ -122.1007898491, 47.2257041538 ], [ -122.0797946249, 47.2106178422 ], [ -122.0162359001, 47.2074211012 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.8477254195 ], [ -120.0906203728, 47.8396989688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2194720778, 47.4795067364 ], [ -122.2164680874, 47.4797552701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970568676, 47.4134071531 ], [ -122.197055607, 47.4196716079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976527666, 47.5284479262 ], [ -122.1956583824, 47.5351014559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.1108326729, 48.0500968067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.1769776673 ], [ -122.1838778814, 47.174736546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1210814025, 46.1900650322 ], [ -123.0254965582, 46.1765544591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9675307628, 46.7105506649 ], [ -122.9598608634, 46.7119804203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2452308425, 47.1004128397 ], [ -119.246720142, 47.1017760996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1977655229, 48.6613912396 ], [ -119.1755997273, 48.6644654674 ], [ -119.1707426962, 48.6669353976 ], [ -119.1709386262, 48.671956166 ], [ -119.1204415479, 48.6865746062 ], [ -119.1188143741, 48.7011238243 ], [ -119.0889645499, 48.714240826 ], [ -119.0173992596, 48.7251477101 ], [ -118.9956785762, 48.7322627102 ], [ -118.9864492298, 48.7210608245 ], [ -118.9733997716, 48.7226160113 ], [ -118.9658249069, 48.727845524 ], [ -118.9595941027, 48.7262226534 ], [ -118.9531841576, 48.7185782551 ], [ -118.9576035534, 48.7002983598 ], [ -118.9345969622, 48.6878700965 ], [ -118.8688363405, 48.6711250883 ], [ -118.8512041774, 48.6595871231 ], [ -118.8252356977, 48.6617094795 ], [ -118.7864369592, 48.651103998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.7707983028 ], [ -120.1432870731, 47.7795609484 ], [ -120.1351383039, 47.7887442363 ], [ -120.1287074183, 47.8197182574 ], [ -120.1038792438, 47.8410163455 ], [ -120.0930271133, 47.8390930772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0127832253, 47.8398059908 ], [ -120.0023636712, 47.8395520304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.5009103404 ], [ -122.6448015914, 47.5019616092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6076963808, 46.9425842125 ], [ -122.6065410768, 46.9419413133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559678999, 46.3418155618 ], [ -117.0639903277, 46.3515891074 ], [ -117.063194802, 46.3682043768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6849124897, 47.7012407269 ], [ -122.6827030778, 47.7012362102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523152371, 47.7871149729 ], [ -117.3512461081, 47.7870908551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8450444219, 47.3928212867 ], [ -117.8339339028, 47.4005463581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4044843472, 47.7691968077 ], [ -117.4025141886, 47.775377664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7262847571, 48.1762204765 ], [ -117.733773391, 48.1904773749 ], [ -117.7430272449, 48.1962049437 ], [ -117.7153794817, 48.2082318736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078807653, 47.466571782 ], [ -122.2079397277, 47.469068922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8899260404, 47.7887506445 ], [ -117.8929652387, 47.8103146594 ], [ -117.8688908212, 47.8392864583 ], [ -117.8530743045, 47.8375252203 ], [ -117.8559886683, 47.847262528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3447339385, 47.7065541178 ], [ -122.3450935078, 47.7322891749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3969871323, 47.2375843118 ], [ -122.3891779095, 47.2344452702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6087560562, 48.2553398746 ], [ -121.6017358428, 48.2552691488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.1759897639 ], [ -117.0453814357, 48.1774974633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0367919974, 46.8025443825 ], [ -123.0122863976, 46.8024280456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8269220429, 47.4513256561 ], [ -122.82404435, 47.4527245935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5357945169, 46.9156045355 ], [ -121.5448085614, 46.8957961512 ], [ -121.5392794958, 46.879268564 ], [ -121.539784148, 46.8668025285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146069423, 46.4038122596 ], [ -120.3146053499, 46.3930477992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1182479552, 46.824068652 ], [ -123.0970384228, 46.8218084668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111934872, 47.6661553637 ], [ -117.4111842305, 47.6640841682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7163662119, 47.8813080117 ], [ -122.6836020665, 47.8694778736 ], [ -122.6583512026, 47.8711608541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3871932194, 47.6619140206 ], [ -117.3797163114, 47.6619387511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9072875101, 48.5485390558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5474855069, 45.7852017578 ], [ -122.5472358647, 45.8117200378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.9072893217 ], [ -122.2070289838, 47.914243946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1144319865, 47.165563315 ], [ -122.0430468348, 47.1585051205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1947276042, 47.0577047606 ], [ -119.2152583563, 47.0751224812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134370239, 47.6535198038 ], [ -117.4134270225, 47.6531107382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2128675498, 48.6558774574 ], [ -122.2086782434, 48.6715402953 ], [ -122.1928310355, 48.6906540805 ], [ -122.2024134231, 48.7062719744 ], [ -122.2034031763, 48.7206992742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9762326912, 46.3216955439 ], [ -117.9727960208, 46.3237819677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4674230818, 48.7381587883 ], [ -122.4637974094, 48.749722479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924335271, 45.5795236375 ], [ -122.3693035949, 45.5791952308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.7853119491 ], [ -117.9163777996, 46.7845299182 ], [ -117.9028685233, 46.7882975717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.9820295137 ], [ -122.2143033169, 47.9820481244 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5815429294, 48.4637620468 ], [ -122.6018087989, 48.4912904705 ], [ -122.6096344556, 48.4932908483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146053499, 46.3930477992 ], [ -120.3146803025, 46.3895637812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.9114449779 ], [ -117.0799320523, 46.9114350689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310669107, 47.3816510809 ], [ -122.231080053, 47.3833072606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108149261, 48.3083495968 ], [ -122.2259636127, 48.3101151653 ], [ -122.2343676861, 48.3157860192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1440770168, 47.7838492646 ], [ -122.1434566593, 47.7903443739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2935392549, 47.0986145276 ], [ -122.2932262899, 47.1183648911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5556609589, 46.9361969309 ], [ -122.5540510049, 46.9380208301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6950836877, 46.6690700815 ], [ -123.6839292354, 46.6556063635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.1564220776 ], [ -122.036347956, 47.1580428725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2518435554, 46.3315396164 ], [ -120.2461650816, 46.3276930204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178776034, 47.4696365374 ], [ -122.2178365864, 47.4708583363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6074412346, 47.5945732999 ], [ -117.5691788837, 47.5946199775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.7653809106 ], [ -118.6468785968, 48.7737685937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078782799, 46.9473039393 ], [ -122.9078625453, 46.9528052372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7095800286, 46.8824221446 ], [ -123.7147238013, 46.8904667022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519714718, 48.9646510378 ], [ -122.4413239323, 48.96428992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667035384, 46.8634865679 ], [ -122.2667172316, 46.8655192861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9008694447, 47.1862212903 ], [ -120.8999613431, 47.1877127316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6598639151, 46.9705949371 ], [ -118.6639343919, 46.9743066653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.4264986925, 46.9955304106 ], [ -123.4082967559, 46.9999448152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133300405, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5001739334, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736376931, 48.7183214397 ], [ -122.4736865914, 48.7254915984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537625763, 46.7353817521 ], [ -122.9537824167, 46.7366928914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1531482322, 47.0433503074 ], [ -124.1580458631, 47.0446019994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3782208966, 47.7726334374 ], [ -117.3567064191, 47.7812867521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871980092, 47.7384984553 ], [ -122.1857415687, 47.7548599981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2312668834, 47.1532457302 ], [ -117.2052304992, 47.1675404896 ], [ -117.1992324539, 47.1773708328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3693035949, 45.5791952308 ], [ -122.3561483502, 45.5765439754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1548022107, 46.8115761702 ], [ -119.1335402589, 46.81166858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.7360195936 ], [ -120.7368808365, 47.7219030152 ], [ -120.7458505381, 47.6979837814 ], [ -120.737315796, 47.6895337324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.8258098296 ], [ -123.1182479552, 46.824068652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.7413459926 ], [ -117.2421417151, 46.7585806572 ], [ -117.2617325097, 46.7597945743 ], [ -117.2772565713, 46.772497546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281213808, 47.6241276789 ], [ -120.228042091, 47.6277888618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0025596088, 46.8100089469 ], [ -122.9724799034, 46.8603980407 ], [ -122.9600984345, 46.8984631507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8874051323, 46.9794818062 ], [ -123.8839143851, 46.9770579066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2438389364, 47.4568632492 ], [ -122.245609145, 47.4638125801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.3205770833 ], [ -124.0058226032, 46.3220376768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2229100098, 47.5730667428 ], [ -117.2247355074, 47.5862739437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938700472, 47.204398406 ], [ -122.2938536061, 47.2051808084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2256349011, 47.3030417103 ], [ -122.2255213817, 47.3019724752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2096237746, 47.6717228675 ], [ -117.1794448564, 47.6657680173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3880478769, 48.8570115349 ], [ -117.3766074887, 48.8656644561 ], [ -117.3725290396, 48.86403205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5538347685, 46.9524134967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.9391322618 ], [ -122.4853467091, 48.9460567842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3545679756, 48.6174704326 ], [ -122.3571398555, 48.6273196202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.3394444319 ], [ -122.3123636673, 47.3477991611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565626099, 47.5703304581 ], [ -122.6533156313, 47.5673798823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9910016143, 47.0450336894 ], [ -122.9602028302, 47.0399823411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6378486297, 47.5421872915 ], [ -122.6362542655, 47.5417260081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2448313626, 47.6887168246 ], [ -117.2397125029, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1785138343, 46.6444383578 ], [ -121.1697638253, 46.6471084885 ], [ -121.1517819412, 46.644685082 ], [ -121.1319390984, 46.6545385663 ], [ -121.1263725089, 46.6648692441 ], [ -121.1203640782, 46.6650711504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5707855947, 47.7139681507 ], [ -122.5923337529, 47.7058043179 ], [ -122.6145007274, 47.7154775691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853470894, 48.891721005 ], [ -122.485340099, 48.9066976691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376928426, 47.9781939272 ], [ -122.1376542721, 47.9813261844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6134262665, 47.471353912 ], [ -117.6076139263, 47.472278094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3033441932, 46.5641172674 ], [ -122.2966216811, 46.5642108312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7071635421, 47.5067188922 ], [ -117.7148151118, 47.5148547914 ], [ -117.7149288118, 47.5306603385 ], [ -117.7044776202, 47.5482634566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4440605013, 47.158268456 ], [ -122.4276134438, 47.1581515823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9065683519, 47.1025224633 ], [ -123.8958319744, 47.1107626992 ], [ -123.897945931, 47.1182162564 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.1348926086 ], [ -123.8889929685, 47.1441925406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133909339, 48.4356182605 ], [ -122.3079784055, 48.4355954608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4073092626, 48.6901697434 ], [ -122.4496748915, 48.6936253155 ], [ -122.4745576952, 48.7036461741 ], [ -122.4754001915, 48.7114461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6545494275, 45.7173002417 ], [ -122.6569907612, 45.7325461642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.0543832543 ], [ -117.6205066365, 48.0600760065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3512395456, 46.0690998662 ], [ -118.3564774846, 46.0688842599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7179594226, 48.2854700064 ], [ -117.8191660399, 48.3201502053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924586232, 47.7337786904 ], [ -122.2924416665, 47.7355851423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2261409872, 48.5282544504 ], [ -122.226018055, 48.5375786595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111842305, 47.6640841682 ], [ -117.4110973876, 47.6862388811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293015421, 47.1806601772 ], [ -122.2292841665, 47.1772685985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3322816003, 47.4672044794 ], [ -122.3299629869, 47.4748414789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1126921303, 48.0002111444 ], [ -122.1063179106, 48.002878399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1432040179, 48.9173881457 ], [ -122.1434428667, 48.9313503294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1778352269, 48.046828316 ], [ -122.1770255475, 48.0518456949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6112069286, 47.5946127869 ], [ -117.6074412346, 47.5945732999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8965761025, 46.2893166225 ], [ -122.8907960803, 46.3012804426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.4284900867 ], [ -122.6225935687, 47.4383788471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0761547764, 46.8206396917 ], [ -123.0705784959, 46.818061401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8744708695, 45.824429695 ], [ -120.8597476834, 45.8244297002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5235622768, 47.9784884907 ], [ -117.5514961681, 47.9936326927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3901248718, 47.3932302588 ], [ -121.3796397397, 47.3867119172 ], [ -121.3634004667, 47.3422967233 ], [ -121.3518474114, 47.3394404515 ], [ -121.3434489443, 47.3304987742 ], [ -121.328788046, 47.3253104992 ], [ -121.3099371955, 47.3075733984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9086394896, 46.8991466854 ], [ -122.9057776023, 46.9081293834 ], [ -122.9079204529, 46.9326825401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3821019742, 46.204770148 ], [ -123.3662844632, 46.1972420441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2636763312, 46.2591722166 ], [ -119.2563379619, 46.2519667264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.8041008656 ], [ -122.3771647615, 48.8041341038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9106353482, 46.2675619431 ], [ -119.8846884522, 46.2587169246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8123515795, 46.9758626922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854508575, 47.9541150576 ], [ -124.3895298763, 47.9579786515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6135193095, 46.3732221214 ], [ -122.599339156, 46.3782404871 ], [ -122.5923185497, 46.3641421043 ], [ -122.5756309118, 46.3701554294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0767913963, 48.6302280828 ], [ -118.0809250713, 48.6335690008 ], [ -118.0804223265, 48.6458515708 ], [ -118.0855460386, 48.6566126356 ], [ -118.0761182705, 48.6620174812 ], [ -118.0528192146, 48.6655590546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7319104687, 48.0271486285 ], [ -117.7414326397, 48.0453413833 ], [ -117.7414617067, 48.0549272619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151578787, 47.6670962794 ], [ -122.1070992757, 47.6699542428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5548980955, 47.3064820526 ], [ -119.5404648362, 47.3016571328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5439564153, 47.7770043475 ], [ -117.5325801467, 47.7818048655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0033924307, 47.3087018731 ], [ -122.0036329276, 47.3094647022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0771113094, 47.7623555736 ], [ -120.0346940871, 47.7744610553 ], [ -119.9928066299, 47.7795776217 ], [ -119.9707179801, 47.8103117805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7247120976, 47.0145460302 ], [ -122.7155207845, 47.0124624929 ], [ -122.7042482107, 47.0166113384 ], [ -122.6929086258, 47.0122908625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5630189407, 45.6418660754 ], [ -122.56552133, 45.6483088559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.5838225286 ], [ -122.4432829491, 45.5785312538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3213046678, 47.6798999296 ], [ -122.3216245794, 47.6809784815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4043216331, 45.615225457 ], [ -122.4080084386, 45.6115840369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984327789, 47.1898992789 ], [ -123.0982494153, 47.1952116239 ], [ -123.0921869405, 47.1998399079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7520415456, 48.9961053398 ], [ -122.7523454393, 48.9971567896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2978040809, 47.8210601157 ], [ -122.2924065553, 47.8209731507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2328452333, 47.2083784844 ], [ -118.2153325712, 47.2145095436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4439027276, 48.4460211348 ], [ -122.4313388534, 48.4462873107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1114113863, 46.2830723014 ], [ -118.0900087478, 46.2892459717 ], [ -118.0360986622, 46.2883262956 ], [ -118.0037700013, 46.3053205372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966056992, 46.6268683975 ], [ -123.0813867451, 46.6270365528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4466273692, 47.2301579669 ], [ -122.4349389318, 47.2327862223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1863524437, 46.8303419645 ], [ -123.1603852076, 46.8270351021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3572304808, 48.8661780923 ], [ -117.3521889436, 48.8735003742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349079042, 47.0993004058 ], [ -122.4347516102, 47.1123943169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838617499, 46.5838405084 ], [ -122.8398740601, 46.5760326545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.3956087457 ], [ -121.3973426889, 47.3964612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3694769065, 47.0202996688 ], [ -122.3734287129, 47.0252556279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.0107162595 ], [ -123.3522406493, 47.0176847454 ], [ -123.3329685473, 47.0373540007 ], [ -123.315836318, 47.0439992941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2652259391, 47.0556339624 ], [ -123.2689243165, 47.0679844678 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396887191, 47.6862002896 ], [ -117.2397125029, 47.6897536118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860047444, 48.7952060269 ], [ -122.4860125357, 48.8005515797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2104399855, 48.5159581466 ], [ -122.1940156325, 48.5236742491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157647305, 47.2798223974 ], [ -122.5157587458, 47.281707768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006527009, 47.2899013547 ], [ -122.2986045804, 47.2906745073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269686691, 47.5636496207 ], [ -122.6253076514, 47.5621957885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1610621477, 48.8013491924 ], [ -118.172585386, 48.8281521503 ], [ -118.1995279913, 48.8413471764 ], [ -118.2049625221, 48.8611827903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975722229, 46.1692293994 ], [ -119.17625049, 46.1849328401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.2312973119 ], [ -118.7205257744, 46.2975520842 ], [ -118.5843394707, 46.2961931387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9452303834, 47.3491519572 ], [ -117.9386854224, 47.3624234377 ], [ -117.9384162966, 47.3734102727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8360991743, 45.6760241273 ], [ -120.8350369221, 45.6826649603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.0274510129 ], [ -118.3805172543, 46.0318115343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1685156881, 47.8473257512 ], [ -117.1588691801, 47.8695608359 ], [ -117.1312550979, 47.8859764839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1238524112, 46.2737500843 ], [ -118.1114113863, 46.2830723014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6418945651, 47.3795057214 ], [ -122.6261095677, 47.3846980617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8990911424, 46.7940102212 ], [ -118.75567632, 46.7921007504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474225905, 47.3852649438 ], [ -122.2474311421, 47.3867136062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.4199191264 ], [ -117.0586800059, 46.4199262615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5353377768, 48.098941472 ], [ -123.5146878293, 48.1016682747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6731435739, 47.568179933 ], [ -122.6676487456, 47.5684242426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6933366335, 46.5767605568 ], [ -122.6709557367, 46.5825511103 ], [ -122.6483864791, 46.6019238366 ], [ -122.6345508551, 46.6084601212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6345508551, 46.6084601212 ], [ -122.6262508407, 46.6119235505 ], [ -122.5929781534, 46.6127772252 ], [ -122.540197422, 46.6050020592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.6430053975 ], [ -117.5071454103, 47.6430669681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783005683, 48.5448469139 ], [ -117.5647490904, 48.5514119056 ], [ -117.5555575339, 48.5619672181 ], [ -117.5534548978, 48.5736906307 ], [ -117.5588224911, 48.5802438479 ], [ -117.5597059922, 48.5938921832 ], [ -117.5501711452, 48.6052632129 ], [ -117.5430075734, 48.630926416 ], [ -117.5192715494, 48.6413464304 ], [ -117.5134714498, 48.6474798721 ], [ -117.4974757778, 48.6538530694 ], [ -117.4889613951, 48.6516692447 ], [ -117.4778840213, 48.657428848 ], [ -117.4698108774, 48.6734268292 ], [ -117.4561399366, 48.6724766869 ], [ -117.4533799294, 48.684483503 ], [ -117.4343065363, 48.6796702092 ], [ -117.4316067501, 48.6833095812 ], [ -117.4293099535, 48.6813858247 ], [ -117.4275049687, 48.6892106346 ], [ -117.4108409752, 48.6851321517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.6318665894 ], [ -122.6704405811, 45.6318535726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.7789719928 ], [ -117.402735532, 47.7811795472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1721144093, 48.4502822246 ], [ -118.1782434256, 48.4548284749 ], [ -118.1804322233, 48.4635712207 ], [ -118.1695615682, 48.4738348488 ], [ -118.1731326389, 48.4834075634 ], [ -118.1369993742, 48.5254134037 ], [ -118.1205170275, 48.5599252228 ], [ -118.1099304251, 48.5699168788 ], [ -118.090171582, 48.5709116932 ], [ -118.0736411623, 48.581071736 ], [ -118.0733925966, 48.5848754338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288682299, 47.6213371579 ], [ -122.6289013941, 47.6322348249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2202318761, 46.2679666309 ], [ -118.1693615258, 46.2688128518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2023511627, 46.1347113914 ], [ -119.203612629, 46.1162661213 ], [ -119.2234040886, 46.0911748268 ], [ -119.224889202, 46.0317308992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2972233483, 47.5139558554 ], [ -120.2808637485, 47.5339796242 ], [ -120.2543857869, 47.5488977505 ], [ -120.2543935669, 47.5573199872 ], [ -120.2309336771, 47.5917195302 ], [ -120.2261852446, 47.6053632481 ], [ -120.2282190803, 47.6193373774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1196487386, 48.6350042505 ], [ -118.1129200454, 48.6442737397 ], [ -118.1136451712, 48.6614121482 ], [ -118.1250035992, 48.6915473174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059632705, 45.6819748617 ], [ -122.5059582917, 45.6758268864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726772266, 45.6325544336 ], [ -122.6738387769, 45.6325598997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9784909888, 46.6723810975 ], [ -122.9715754997, 46.6806806366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3946951929, 47.7570939377 ], [ -117.3849909341, 47.7667352841 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5216611447, 48.408142504 ], [ -119.5217331431, 48.4069900346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.8971476949, 47.186874414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3043819814, 46.0811339747 ], [ -118.2939892909, 46.0823692123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5509551438, 47.3216616972 ], [ -119.5469623321, 47.3271872736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3042127815, 47.6440954441 ], [ -122.3045144925, 47.6452852227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2816435896, 47.4911976441 ], [ -122.2842343808, 47.4966458915 ], [ -122.2948243841, 47.4982893333 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2539138096, 47.5892523535 ], [ -122.2398779598, 47.5908053835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7726340053, 46.9572131386 ], [ -123.7868512068, 46.9671019999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.3797829152 ], [ -117.1742498954, 47.3867659672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4959840812, 47.795839855 ], [ -122.4955876896, 47.7975252491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2196536686, 47.6737301547 ], [ -117.2096237746, 47.6717228675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4653744706, 45.7143933277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5359529209, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2629302431, 47.4619229895 ], [ -122.2576809614, 47.4624296733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3272024219, 47.4854072542 ], [ -122.3249301321, 47.4940508534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4725322952, 47.1701115828 ], [ -122.4665031792, 47.1763219389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1877595188, 47.0819384727 ], [ -122.1770751295, 47.0821558053 ], [ -122.1579355704, 47.0914690106 ], [ -122.1444230859, 47.1117933341 ], [ -122.133641732, 47.1203784468 ], [ -122.1343129645, 47.127974281 ], [ -122.127858372, 47.1309639391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3619718598, 48.4277546105 ], [ -122.348619877, 48.42175299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1011620507, 47.2072125648 ], [ -123.1009905679, 47.208217873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8935451035, 47.2124822553 ], [ -117.9133733487, 47.2329689301 ], [ -117.9189588547, 47.2455284974 ], [ -117.9303066387, 47.2535026311 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.2980321898 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0052660577, 47.9449095756 ], [ -119.007361139, 47.9433157516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8150974014, 48.097207949 ], [ -122.8132595013, 48.1004014814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9772544823, 47.8608534091 ], [ -121.9699337226, 47.859195632 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.9220918299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.3566645336, 48.4657611597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6040527531, 48.8920780487 ], [ -122.6174443607, 48.891747907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135126494, 47.2840032145 ], [ -122.3135712365, 47.2861343941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8119261196, 46.9521234492 ], [ -123.8046484797, 46.9587267173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4082967559, 46.9999448152 ], [ -123.3960419117, 47.002634929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0397518102, 46.4800616688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647059706, 47.5011897492 ], [ -117.5646817112, 47.503963135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.3582053906 ], [ -119.0437777328, 46.4172753716 ], [ -119.0282684938, 46.4252472577 ], [ -119.0246904637, 46.4313046328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764209525, 46.7675625649 ], [ -119.1764829488, 46.7754696717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0621815719, 47.6491753159 ], [ -120.0464865713, 47.6446019575 ], [ -120.027698695, 47.6241158901 ], [ -120.0044221119, 47.6210429111 ], [ -119.9971912665, 47.6127377431 ], [ -119.8344085442, 47.6126434109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.9998165576 ], [ -118.6629076467, 47.0795552087 ], [ -118.6668848781, 47.0903196406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020400669, 48.2595802573 ], [ -121.5970165475, 48.2728794129 ], [ -121.5736815995, 48.2846737532 ], [ -121.5561827695, 48.3013178631 ], [ -121.5551539066, 48.3113332029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.6154441079, 47.5048209466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124883705, 47.5167348211 ], [ -122.32119741, 47.52336099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2493486901, 47.3976177556 ], [ -122.2494308353, 47.4122081687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8502977234, 47.1752256328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2125640998, 47.9215909937 ], [ -122.2084243459, 47.9195131157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8262913588, 46.7574551866 ], [ -120.8127305308, 46.7506838345 ], [ -120.7884944778, 46.7483083341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.1885742414, 47.9807304066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.2230431561 ], [ -117.0730024916, 47.2240691944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855374224, 45.5797321231 ], [ -122.3776958201, 45.5806227602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6356948558, 47.5650400988 ], [ -122.6329293436, 47.5650333624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153057722, 47.4499572937 ], [ -122.2178750419, 47.4671156335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9336567593, 48.052435164 ], [ -119.9457986845, 48.0554741634 ], [ -119.9596133683, 48.0757671252 ], [ -120.0069122484, 48.074198118 ], [ -120.0232808716, 48.0973889327 ], [ -120.0101725262, 48.1079613687 ], [ -120.0111466448, 48.1252859785 ], [ -120.004345499, 48.130411721 ], [ -120.0082609418, 48.1366210454 ], [ -120.0423875397, 48.14314282 ], [ -120.0664995986, 48.1555692556 ], [ -120.0933996402, 48.1811071167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4839534054, 46.7954711602 ], [ -118.3944003164, 46.7948578097 ], [ -118.3777369137, 46.7780423397 ], [ -118.3635301736, 46.7762257383 ], [ -118.3189412156, 46.7588639349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9251619366, 48.557993926 ], [ -117.9365504311, 48.5667945753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2089308735, 47.8094374485 ], [ -122.2072319883, 47.8094477645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9083233112, 46.1444373825 ], [ -122.9075601174, 46.1465486719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6891411882, 47.6839322136 ], [ -122.6869120748, 47.6932883974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3104348324, 46.7563777105 ], [ -118.3084452289, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395375143, 48.1839762284 ], [ -117.0395528608, 48.1829538969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3686788882, 47.1150041492 ], [ -118.3602316649, 47.1201988782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.5340788266 ], [ -121.778499806, 46.5338365408 ], [ -121.7578493233, 46.5388804234 ], [ -121.7354912874, 46.5526532482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339668077, 47.2064012989 ], [ -122.4339726068, 47.2074131032 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0487109157, 46.7291966819 ], [ -119.0868227043, 46.7395693677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.0550657238 ], [ -119.857595908, 48.0732144226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2844096141, 48.3059359445 ], [ -117.2839019256, 48.3051822196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1741648142, 46.7379128734 ], [ -117.1727879342, 46.7397697342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9747908435, 47.8173888452 ], [ -119.9580569245, 47.85237627 ], [ -119.9329792614, 47.8584852058 ], [ -119.9202563007, 47.8731183295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1410473188, 47.6647648556 ], [ -118.1411272552, 47.7032509231 ], [ -118.1502785502, 47.7110758636 ], [ -118.1524287124, 47.7227234463 ], [ -118.1703775752, 47.7449382474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2566876381, 47.112363657 ], [ -119.2567131133, 47.1164713022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3235519617, 47.1618045752 ], [ -119.3298805519, 47.1732555069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2423008133, 48.2388120168 ], [ -122.2407774423, 48.2388106439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7018643165, 48.078607276 ], [ -122.7016186118, 48.0859624396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3413276695, 47.8214509801 ], [ -122.3358813394, 47.8214508721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3033025513, 47.1598935483 ], [ -118.292877678, 47.1671440586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7380298017, 47.1620255285 ], [ -119.7255609263, 47.1697949724 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.3706285622 ], [ -124.053203924, 46.3755642012 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.4004321611, 45.9963687794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2488000931, 47.2053582695 ], [ -122.2470351952, 47.2239142549 ], [ -122.2546724797, 47.2425035856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.6896630119, 48.0306013366 ], [ -122.691035371, 48.0512475527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2639807772, 47.6750826193 ], [ -122.2635673336, 47.6757343946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9142227785, 46.0565756326 ], [ -118.9075966187, 46.0562013963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.1138577083 ], [ -123.4200144031, 48.1146846853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6443296317, 48.5973721967 ], [ -118.6314431515, 48.5960235156 ], [ -118.5679108258, 48.6153465501 ], [ -118.565952585, 48.6122317883 ], [ -118.5445438821, 48.6115078332 ], [ -118.5275917915, 48.597047814 ], [ -118.5137119104, 48.595243222 ], [ -118.509752482, 48.5970623776 ], [ -118.5155459269, 48.599558024 ], [ -118.512743502, 48.6032967468 ], [ -118.4782741505, 48.6072204311 ], [ -118.4585509256, 48.6047398165 ], [ -118.4660973772, 48.6082207338 ], [ -118.4661888943, 48.6121179319 ], [ -118.4444583552, 48.6113077339 ], [ -118.4417651532, 48.6299366699 ], [ -118.4328701141, 48.6218299941 ], [ -118.4198597385, 48.6246827606 ], [ -118.4036719089, 48.6210805405 ], [ -118.3464920198, 48.5973425143 ], [ -118.3089665113, 48.5891488571 ], [ -118.2932680389, 48.5791723325 ], [ -118.2487912527, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410746428, 48.435897211 ], [ -122.339797739, 48.4358920299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2757674785, 47.0538122933 ], [ -123.2617004672, 47.0447459023 ], [ -123.2512032791, 47.0452823163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843394707, 46.2961931387 ], [ -118.5642291766, 46.2961229496 ], [ -118.5526503645, 46.2885666946 ], [ -118.5338227757, 46.2908205864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1520827446, 47.701179935 ], [ -117.1332932554, 47.7045387135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.7232723565 ], [ -117.144376428, 46.7217073773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496454526, 48.0068914762 ], [ -117.3496648896, 48.0177222579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018408354, 45.6721275722 ], [ -122.4885992861, 45.6718340343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3726222715, 46.147436197 ], [ -118.3843361092, 46.1731924444 ], [ -118.381582691, 46.1978440693 ], [ -118.3932511954, 46.2165714643 ], [ -118.3695963283, 46.2371507033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654507751, 46.8691413663 ], [ -122.2741213173, 46.8768699817 ], [ -122.2978283667, 46.8740061708 ], [ -122.3026544634, 46.8782016749 ], [ -122.3006964497, 46.8856559346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6936997501, 48.906634052 ], [ -121.6959320726, 48.9034555044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7303182124, 46.6823391023 ], [ -123.7294537729, 46.6833756482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2251116552, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.2328415573, 48.6030299836 ], [ -122.2181484826, 48.6264669174 ], [ -122.2129746455, 48.6527134381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070072355, 47.9049606299 ], [ -122.207060034, 47.9072893217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2593033654, 47.2570246683 ], [ -122.2607429983, 47.2688990575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534565369, 47.1904786655 ], [ -119.8534105031, 47.2194487082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8856837159, 47.9870204643 ], [ -122.8847738398, 47.9855759007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7097773434, 47.6324886961 ], [ -122.7050597877, 47.6433614356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0109218044, 46.1691434983 ], [ -123.0047956327, 46.1661237024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525552477, 45.6778313417 ], [ -122.5521517487, 45.68208727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0368091721, 46.3974067466 ], [ -123.0273681586, 46.4021888563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6108296856, 47.0345615907 ], [ -120.608500123, 47.0374844302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7646365596, 47.0522855716 ], [ -122.7649510613, 47.0430902917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.6531948538 ], [ -118.1576684527, 47.6540467209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2985045151, 47.39547624 ], [ -122.2947389534, 47.3936027263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1009905679, 47.208217873 ], [ -123.1002782834, 47.2119732363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.2590728745, 45.5598753251 ], [ -122.2313535428, 45.5611000545 ], [ -122.2185549591, 45.5661709399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9073058758, 46.275376903 ], [ -122.9076435518, 46.2769325247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.4347156331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.7339077039 ], [ -120.2227951042, 45.7429753339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4150175631, 48.0010609611 ], [ -122.4394163697, 48.0042427956 ], [ -122.4541097954, 47.9996108269 ], [ -122.4616900184, 48.0042963392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2059069062, 46.7337520183 ], [ -117.2010536613, 46.7337602693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350543494, 47.0839448876 ], [ -122.434931526, 47.0973144524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564774846, 46.0688842599 ], [ -118.3564578154, 46.074867789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9537625763, 46.7353817521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8530540341, 47.5118709577 ], [ -121.8359319626, 47.5137466225 ], [ -121.8134961044, 47.4952951892 ], [ -121.8021513026, 47.4912692217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1942019738, 46.765336616 ], [ -122.2539355099, 46.7853850827 ], [ -122.2754741187, 46.7999623833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118922418, 46.6260641185 ], [ -120.5118923903, 46.626211773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9012940427, 46.1535561469 ], [ -122.9030469817, 46.1632969984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1937212048, 46.7334218163 ], [ -117.1864957616, 46.7314771721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4740104061, 48.6441487529 ], [ -119.4680874186, 48.6526355103 ], [ -119.4720016489, 48.658440658 ], [ -119.4702383791, 48.6728249756 ], [ -119.4503868347, 48.6949331433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4326700109, 47.2980606258 ], [ -122.434434259, 47.2999575945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132040823, 46.9766495807 ], [ -123.8143955605, 46.9760348973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3291037047, 47.7469054111 ], [ -122.329330637, 47.7502820303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.4588398216, 46.5422963318 ], [ -122.4431205175, 46.5426184535 ], [ -122.3866181203, 46.5326301989 ], [ -122.3663394868, 46.5419551196 ], [ -122.3433527114, 46.5461871073 ], [ -122.3277084896, 46.5447206472 ], [ -122.304327892, 46.5536935513 ], [ -122.2840598213, 46.5529035395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8165310712, 47.861761082 ], [ -121.7973817559, 47.8650366901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6664314526, 45.6289361692 ], [ -122.6622739757, 45.6359541769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4722955548, 47.7620355267 ], [ -121.447920831, 47.7462461048 ], [ -121.3976461043, 47.7270429682 ], [ -121.373545979, 47.7118393097 ], [ -121.3610242433, 47.7115372115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2633718554, 47.6383063062 ], [ -119.2733755435, 47.6743245668 ], [ -119.2615943148, 47.7149291881 ], [ -119.2230942334, 47.7501735046 ], [ -119.1843733363, 47.7994133674 ], [ -119.1377770394, 47.8249299577 ], [ -119.0926019856, 47.8681495864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663296776, 47.4869149652 ], [ -122.2648660903, 47.4917032502 ], [ -122.2781342919, 47.5038105301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860458418, 48.8077759805 ], [ -122.4860064346, 48.8115322114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.2794901631, 47.7171874221 ], [ -121.2684273833, 47.7146504801 ], [ -121.2314445716, 47.7181510912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455119005, 46.4058071413 ], [ -117.0455562905, 46.4072575118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.5472933615, 46.8097314034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8856775734, 47.4568668079 ], [ -123.9115962269, 47.4593804445 ], [ -123.923859645, 47.4691766915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4885992861, 45.6718340343 ], [ -122.4838115389, 45.6696013323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.8798283082 ], [ -118.6029610598, 48.8836806589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1686131052, 48.5922259084 ], [ -118.1487240923, 48.5881794827 ], [ -118.1385473345, 48.6058850636 ], [ -118.1381575659, 48.6167843871 ], [ -118.1227222823, 48.6274371967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.3682043768 ], [ -117.0559008398, 46.3750297198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3268233106, 47.4554520402 ], [ -122.3312487114, 47.4630152497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.6996424338 ], [ -119.8134933014, 47.7033989052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984000405, 47.810449784 ], [ -122.2824397667, 47.8189715088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6349019011, 47.5414235496 ], [ -122.6312757821, 47.5427369679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4280346059, 47.2286568082 ], [ -122.4318700022, 47.2324653952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217057205, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.3713384075 ], [ -120.3200450577, 46.3702712669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.1030129375 ], [ -123.3473359023, 48.1065914367 ], [ -123.3235990471, 48.0975676978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6839292354, 46.6556063635 ], [ -123.6823651856, 46.6537194229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353139183, 48.3777532366 ], [ -122.3304605047, 48.3953989959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2503978849, 47.4892081022 ], [ -118.2012989355, 47.5308199337 ], [ -118.1653892826, 47.5731302322 ], [ -118.1625335373, 47.628203114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1895522829, 47.9817536396 ], [ -122.1880265207, 47.9816960822 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9908694542, 46.3149359546 ], [ -117.9762326912, 46.3216955439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0063294763, 46.5974626974 ], [ -119.0062862284, 46.6650492947 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0706839733, 47.6560836936 ], [ -122.0626914872, 47.6565133547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.5216015582 ], [ -121.9561002594, 46.5266704559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2999170842, 46.5700274981 ], [ -123.2987829945, 46.5700375755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0481554077, 48.1858130018 ], [ -117.0468216405, 48.1843343896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.5924775695 ], [ -122.6291767301, 47.6025424022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709358838, 45.6080222232 ], [ -122.5675237104, 45.6073013401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6844389648, 47.5695855201 ], [ -122.6834705983, 47.5695963871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3109574982, 47.8036768463 ], [ -122.2984000405, 47.810449784 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7547026936, 49.0004770596 ], [ -122.7560316167, 49.0021057869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6231476737, 46.2473883891 ], [ -119.5619880902, 46.2669256695 ], [ -119.5430046419, 46.2654844556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9642066552, 46.1752198269 ], [ -118.9444220241, 46.1607549293 ], [ -118.9380954914, 46.1457035998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8874051323, 46.9794818062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.1513553719 ], [ -122.9664209143, 46.1480268532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5806705958, 46.8856606496 ], [ -119.4960377839, 46.8670870363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2283833788, 48.5104834855 ], [ -122.2257076367, 48.5104740686 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2344986468, 47.8819300694 ], [ -122.2317004486, 47.8819477141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987829945, 46.5700375755 ], [ -123.2976491615, 46.57004764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1592829547, 48.0537110655 ], [ -122.1430161763, 48.0536913707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6029610598, 48.8836806589 ], [ -118.5960578667, 48.8929230529 ], [ -118.5702542261, 48.9081474453 ], [ -118.5656033639, 48.9182463274 ], [ -118.5670170403, 48.9268359292 ], [ -118.5544641317, 48.9452340889 ], [ -118.5477800803, 48.9528978326 ], [ -118.5357075896, 48.9566891396 ], [ -118.5353160505, 48.9627204264 ], [ -118.5278088476, 48.96466224 ], [ -118.5270148193, 48.9792705723 ], [ -118.5082944355, 48.9920259516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8939276953, 46.9931418107 ], [ -123.89576752, 46.9948947943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0271462337, 46.2187179874 ], [ -119.0051151642, 46.203549009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.1991468956 ], [ -121.9599282089, 47.199071826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6588479006, 47.0844194177 ], [ -122.648398392, 47.0870048504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8313657266, 47.5369638292 ], [ -121.8182402683, 47.5195028025 ], [ -121.7847660346, 47.4978692597 ], [ -121.7872865838, 47.4951204522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667172316, 46.8655192861 ], [ -122.2654432539, 46.8668033464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1403335938, 47.4070557775 ], [ -123.1406582023, 47.4063958443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1696146509, 47.1148944779 ], [ -124.1701797505, 47.1175620554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9850301584, 47.9620801186 ], [ -118.9795868328, 47.9655777499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0842561584, 48.2705971119 ], [ -120.0543811291, 48.3022164989 ], [ -120.0523324287, 48.3111175595 ], [ -120.0541593021, 48.3183004848 ], [ -120.0735179834, 48.3417951846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1068419882, 47.5689365485 ], [ -122.0890281054, 47.5593389769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.3067016972 ], [ -122.0033924307, 47.3087018731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5404648362, 47.3016571328 ], [ -119.5110835333, 47.2895128669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6888669105, 47.8504476194 ], [ -121.6851132626, 47.8485151937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9970626639, 47.8392820634 ], [ -119.988693195, 47.8318583594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7196952232, 46.9185306009 ], [ -123.7199263398, 46.929127072 ], [ -123.7255969446, 46.9340666372 ], [ -123.7341821694, 46.9344876708 ], [ -123.7656400398, 46.9512725149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.1927344595 ], [ -122.2337989939, 47.1915311175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.5680335119 ], [ -122.2518294677, 46.5763541165 ], [ -122.2421710444, 46.589172878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4011678238, 47.5746894483 ], [ -117.403113814, 47.5873771825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3744668125, 47.6129385181 ], [ -124.3875850933, 47.6583279196 ], [ -124.3993841644, 47.6751810229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3968245294, 47.5274308586 ], [ -117.4004674284, 47.5364053504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228862469, 47.8212957342 ], [ -122.3176863857, 47.8212139394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9002465055, 46.2807315191 ], [ -122.9067208674, 46.2922496265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.4111842305, 47.6640841682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1203640782, 46.6650711504 ], [ -121.0946876862, 46.6671149014 ], [ -121.0695247091, 46.6770302874 ], [ -121.0312749766, 46.6723519543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2895900621, 47.4060388964 ], [ -120.287327632, 47.3995120011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.0455743548, 46.418180045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2191991764, 47.4676990124 ], [ -122.204514745, 47.471240198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759360238, 47.659448765 ], [ -122.6795231234, 47.662857905 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2815617176, 47.1297537126 ], [ -119.279016421, 47.1310325774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5812917606, 48.852425293 ], [ -122.5841213566, 48.8552680454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8398740601, 46.5760326545 ], [ -122.7836319133, 46.5772503018 ], [ -122.7404835765, 46.5712006701 ], [ -122.7194158446, 46.5756303426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8140314886, 46.4381206875 ], [ -122.8037680338, 46.4381163639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4740346798, 46.5317789409 ], [ -120.4736324891, 46.5393860319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.9088899283, 46.24591744 ], [ -123.9230833697, 46.2536596942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6837381984, 47.566162133 ], [ -117.6826564308, 47.5676722178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0055307618, 46.3309327743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6587450787, 46.0394084907 ], [ -118.6183764468, 46.0524276018 ], [ -118.5903183471, 46.0567683361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2740001981, 47.1335512955 ], [ -119.2682387314, 47.1364387388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3680598924, 46.3027624934 ], [ -119.3592158745, 46.3038389416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284561857, 48.4123674853 ], [ -119.5138464975, 48.416820343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8766375645, 47.6695099085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3803488731, 47.8097254242 ], [ -122.3802638858, 47.8059839555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202094806, 47.6795440304 ], [ -122.3197480792, 47.6816333663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852398362, 48.6680694691 ], [ -122.4879877343, 48.6747508138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149961011, 46.3824800478 ], [ -120.3150062176, 46.3807401139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.5428151022 ], [ -122.3343590195, 47.548548451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8587943416, 47.2333342522 ], [ -119.8548278199, 47.23342187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.9489550287, 46.8453769887 ], [ -120.9198054238, 46.8088624381 ], [ -120.8730896808, 46.7911106338 ], [ -120.852016458, 46.7729537418 ], [ -120.8280101158, 46.7646641629 ], [ -120.8296238449, 46.7598306382 ], [ -120.8262913588, 46.7574551866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0894814698, 46.794082912 ], [ -124.0910571193, 46.7988293856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509906905, 45.6012653728 ], [ -122.5528157131, 45.6121505059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1254159669, 47.3580621765 ], [ -122.1199550793, 47.3581151088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3138098088, 47.2044681618 ], [ -122.3082844841, 47.2024103912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.7503923932 ], [ -124.3181176136, 47.7587161676 ], [ -124.2855580029, 47.7726923141 ], [ -124.2759947825, 47.7820982488 ], [ -124.2530151923, 47.7822663141 ], [ -124.2495130066, 47.7881392179 ], [ -124.2521475758, 47.7981298006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.3453645423 ], [ -124.0547617311, 46.345935959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442671142, 46.4171675734 ], [ -117.0418061778, 46.4188762721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0433824839, 46.311738539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0986362805, 47.712113508 ], [ -117.0689280259, 47.7241616056 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1231539266, 48.0732680847 ], [ -123.1086623321, 48.0731296075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.6744466654 ], [ -122.12152933, 47.6738932335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7177993581, 47.8557884326 ], [ -118.7244772311, 47.8657256228 ], [ -118.7262988872, 47.8616518102 ], [ -118.7266656923, 47.866288751 ], [ -118.7193816343, 47.8729650037 ], [ -118.708130171, 47.8753570306 ], [ -118.7187904488, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.6952783466, 47.904651593 ], [ -118.6974620996, 47.9153870731 ], [ -118.689698978, 47.9188318309 ], [ -118.6896573662, 47.926800027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938536061, 47.2051808084 ], [ -122.2939107442, 47.2065716074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9357957557, 46.1384811775 ], [ -118.9299651984, 46.1234412496 ], [ -118.9125576769, 46.0999090238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6615401387, 47.5961287953 ], [ -120.6572408493, 47.5983589324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923996871, 47.7318031538 ], [ -122.2924586232, 47.7337786904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0751751165, 47.9197652005 ], [ -122.0661637707, 47.9143207671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9752113547, 46.7336230278 ], [ -123.0096321933, 46.7929903915 ], [ -123.0095031858, 46.7983597125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2352752464, 48.510504468 ], [ -122.2339586384, 48.510507948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4080084386, 45.6115840369 ], [ -122.4077199663, 45.6106168272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2421710444, 46.589172878 ], [ -122.2342561239, 46.5991023786 ], [ -122.2289134311, 46.6195560146 ], [ -122.2123686575, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.1960275134, 46.6788309729 ], [ -122.1994759487, 46.7042746461 ], [ -122.2193180607, 46.7251006266 ], [ -122.2079538886, 46.7335435597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6924466276, 47.8522943399 ], [ -121.6888669105, 47.8504476194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9750403018, 46.4047023004 ], [ -122.9698911237, 46.4019382554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8934297223, 46.5484187108 ], [ -123.9161773153, 46.5735129812 ], [ -123.9193768639, 46.5990484863 ], [ -123.9142185013, 46.6143994929 ], [ -123.9231640027, 46.6264718255 ], [ -123.9195012753, 46.6405634658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4595741397, 48.1100676892 ], [ -123.4449923396, 48.1224985775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353775602, 47.2512222204 ], [ -122.3355225852, 47.2647220072 ], [ -122.322068257, 47.2826226664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4398134853, 48.7045718994 ], [ -119.4389284985, 48.705561124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.1322797485 ], [ -117.2430200919, 47.1351050773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0868475896, 46.7892994633 ], [ -124.0894814698, 46.794082912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.3061625069, 47.1007526268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1217698707, 47.9948572706 ], [ -122.1126921303, 48.0002111444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1414184657, 47.5061993756 ], [ -122.1248280167, 47.5008402591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1351290082, 47.640071799 ], [ -122.1377401447, 47.6538823653 ], [ -122.134945908, 47.6610541746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9712249078, 46.5098672609 ], [ -117.9486341254, 46.5101973652 ], [ -117.9333783642, 46.5226592223 ], [ -117.8906915475, 46.5450662647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.5309639916 ], [ -121.9719468032, 47.5356190389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5816396399, 47.9176697804 ], [ -124.5903548008, 47.917783212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3526072751, 46.656816854 ], [ -121.341432663, 46.6594134737 ], [ -121.3385969386, 46.6559459214 ], [ -121.3092733459, 46.6569028996 ], [ -121.2807737226, 46.6507323213 ], [ -121.2720903746, 46.6447841556 ], [ -121.1785138343, 46.6444383578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6999410067, 45.923000308 ], [ -120.6965690225, 45.9324842549 ], [ -120.6583470417, 45.9562641417 ], [ -120.6537674636, 45.9641209952 ], [ -120.6538196253, 45.9965615172 ], [ -120.6409423299, 46.0067409664 ], [ -120.6402471596, 46.0159231899 ], [ -120.6224996657, 46.0271360717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954198113, 47.4345568351 ], [ -122.2958516184, 47.4404648377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4761902468, 46.2572390375 ], [ -119.4871230724, 46.2579063443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5889958565, 47.5568399451 ], [ -120.5877830321, 47.5561469233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.3588356337 ], [ -124.4481794241, 48.3163709433 ], [ -124.441553728, 48.3087450645 ], [ -124.4170379921, 48.3016446894 ], [ -124.3939306113, 48.2869815122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947627706, 47.0592610847 ], [ -122.2940652218, 47.0777178732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2017909519, 47.8734177394 ], [ -120.2012261125, 47.8744218608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6492690844, 46.9444965174 ], [ -123.6192593546, 46.9465973928 ], [ -123.6032357017, 46.9588877342 ], [ -123.6041613497, 46.9661133917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3206709228, 47.4319777068 ], [ -120.3128299563, 47.4225323717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7366031924, 45.6987633896 ], [ -121.7054052114, 45.6992145937 ], [ -121.6759438831, 45.7099755879 ], [ -121.6604109342, 45.7097319074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3830261382, 46.2040132418 ], [ -123.3821019742, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3470322877, 47.6426862378 ], [ -122.3473316285, 47.6527710843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1554043069, 47.8843452114 ], [ -120.1511179931, 47.883422456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362799721, 48.9485573498 ], [ -119.4366735302, 48.9489071813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959770656, 47.1610814791 ], [ -122.297846414, 47.1614508102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7153794817, 48.2082318736 ], [ -117.7154506529, 48.2699984918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5450441479, 47.7703887266 ], [ -117.5439564153, 47.7770043475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3592158745, 46.3038389416 ], [ -119.3472771984, 46.3003841931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847277876, 48.0959977763 ], [ -122.1847725776, 48.1059122858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5468406356, 47.1039007809 ], [ -119.4559455385, 47.1039759554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2027047002, 46.7090131164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.5527655447, 45.7037149254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.2858307257 ], [ -122.8997031408, 46.2867891323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.2902358871 ], [ -124.0560465833, 46.2891258681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853465728, 46.5342767318 ], [ -122.475498549, 46.5361010556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7094384198, 46.6776841454 ], [ -123.7038991686, 46.6750455817 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8614321809, 46.652330978 ], [ -118.8524014486, 46.6510749802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6927958127, 47.661573015 ], [ -122.6880316431, 47.664446406 ], [ -122.6882400113, 47.6692766526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6669042924, 47.0988351268 ], [ -118.6653004485, 47.1161677624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759314616, 47.5414115006 ], [ -122.6748917772, 47.5440202547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3016866652, 47.3019511926 ], [ -121.2916134708, 47.299067816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.4446581265 ], [ -122.8478646508, 46.4428982556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1781385805, 46.7289018557 ], [ -117.1769047974, 46.729513769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9550394088, 46.881056224 ], [ -119.9465333306, 46.9123858241 ], [ -119.9569337464, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6035425582, 46.5285458674 ], [ -122.5955693857, 46.5253458249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2236011158, 47.8003896824 ], [ -122.2315021263, 47.8140192332 ], [ -122.2564077395, 47.8281388084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.8214634366 ], [ -122.3413276695, 47.8214509801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9163495454, 47.639117271 ], [ -121.9102593964, 47.6591206418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0525359155, 46.466597142 ], [ -124.0524708108, 46.4681772505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9707726081, 47.8570932647 ], [ -121.970344695, 47.8592876727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3565494361, 47.7225769388 ], [ -117.3549235161, 47.7296515994 ], [ -117.3606738137, 47.7392386451 ], [ -117.3591982992, 47.7502754755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1328213855, 47.4183288429 ], [ -119.1069520778, 47.4029037206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3472771984, 46.3003841931 ], [ -119.3370276268, 46.2969163285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9614934821, 48.0502939774 ], [ -122.9507202106, 48.050275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3633339712, 46.1950290192 ], [ -123.3544482975, 46.1872368309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2560871516, 47.4838568514 ], [ -118.2546862005, 47.4856106964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3590945902, 46.9323858894 ], [ -121.3058304988, 46.9520915888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9651128936, 48.5240655431 ], [ -121.9301268685, 48.5264239752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9768718108, 46.656330602 ], [ -122.9799410614, 46.666273563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0345305238, 46.549222742 ], [ -124.0378003229, 46.5491873736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2928419495, 47.6157241973 ], [ -119.2882313209, 47.6170498652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2290446727, 47.8020950345 ], [ -117.2128688346, 47.8047418564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216193183, 47.6754410608 ], [ -122.121605019, 47.6744466654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5071454103, 47.6430669681 ], [ -117.4899748205, 47.6377977945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0155186397, 46.1714070706 ], [ -123.0109218044, 46.1691434983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3234409469, 48.9201959718 ], [ -122.3219125052, 48.9201922455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0741604248, 47.4897900635 ], [ -123.0798887479, 47.4834193437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.5142285605, 45.8854969434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989188555, 47.1501796155 ], [ -122.4839759446, 47.158948731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4532860957, 46.8561637408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8302534091, 47.4465115389 ], [ -122.8269220429, 47.4513256561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0483767272, 47.6956888561 ], [ -117.0417025967, 47.6966317895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.4108536601, 47.7513199125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6248994904, 47.8447512634 ], [ -117.641565621, 47.8531276258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4637974094, 48.749722479 ], [ -122.4622122897, 48.7536867617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024048555, 47.3748567353 ], [ -122.2022086866, 47.3993044634 ], [ -122.1971702632, 47.4033636901 ], [ -122.1970568676, 47.4134071531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1928665076, 45.6576560325 ], [ -121.1823283839, 45.6490400174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3673070896, 47.8179585281 ], [ -122.3663582961, 47.8214821079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9931524128, 47.222746832 ], [ -120.9940435568, 47.2237272029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.7148245953 ], [ -122.4751894509, 48.7143961658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1774124503, 47.0928575254 ], [ -119.16309152, 47.0915688757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.4806846506 ], [ -122.3354436719, 48.4902753934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8245858874, 45.6986339731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0751698208, 48.6068991662 ], [ -118.0783937232, 48.6149269177 ], [ -118.0719817894, 48.6214498763 ], [ -118.0767913963, 48.6302280828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0338926368, 46.4915291514 ], [ -124.0337063992, 46.4929517328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9823239969, 47.8274002482 ], [ -119.9786186226, 47.8263733091 ], [ -119.9835503921, 47.8126666885 ], [ -119.9808716374, 47.8137027141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7408549752, 45.9111701973 ], [ -122.7402748344, 45.9071079053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9990847026, 46.3019803085 ], [ -119.9781878444, 46.3023441821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1335402589, 46.81166858 ], [ -119.0482198121, 46.7995487771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5985546782, 47.2518971615 ], [ -119.5802254795, 47.2715449725 ], [ -119.5798147835, 47.2816012149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.2287970334, 46.322331888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.9425126462 ], [ -122.6292421446, 45.941283986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0103610919, 47.6398424818 ], [ -121.9982651856, 47.6313971171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619693815, 47.5476213035 ], [ -122.0609313135, 47.5488637513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3320839174, 47.4704214925 ], [ -122.3286086093, 47.4699818296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9291735447, 47.4763535553 ], [ -123.9337629187, 47.4801114863 ], [ -123.9589950413, 47.4802520054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0523623815, 46.336389697 ], [ -117.0487379362, 46.3397717715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.9948947943 ], [ -123.899165273, 46.997061728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8562732625, 46.5369650839 ], [ -117.8217992709, 46.5244556466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9600984345, 46.8984631507 ], [ -122.9467593344, 46.9213451432 ], [ -122.9389895243, 46.9474951907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7730682265, 47.1959969886 ], [ -120.7607234225, 47.1917861928 ], [ -120.7332273936, 47.2005102162 ], [ -120.7189725743, 47.1993671783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2580730119, 47.8098225751 ], [ -124.2638042622, 47.8258077379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7934879339, 46.6650978736 ], [ -123.7831803897, 46.6698379874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1974475198, 47.5227002331 ], [ -117.2106226505, 47.5366364133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8261026875, 46.9700612141 ], [ -123.8158546232, 46.9740606365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.1712861629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244049035, 45.6505489649 ], [ -122.4244634331, 45.6433255811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1027698079, 46.9174522008 ], [ -117.0865946222, 46.9166932633 ], [ -117.0875131805, 46.9125608238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.7724672092 ], [ -122.6032429154, 47.7771222102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.7292158488 ], [ -121.5209883629, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.8122546849 ], [ -122.3807347134, 47.8118396427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7350013936, 46.2109623873 ], [ -119.7134341801, 46.2195650238 ], [ -119.6746905035, 46.2230812429 ], [ -119.6647884113, 46.2316909296 ], [ -119.6378671733, 46.2418590791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418061778, 46.4188762721 ], [ -117.0398979045, 46.4201869144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6009036248, 46.9747491231 ], [ -123.6009001718, 46.9756350054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1001117785, 47.2128066209 ], [ -123.0984506931, 47.2150788727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.5437706657 ], [ -117.3939754864, 47.5534212221 ], [ -117.4011678238, 47.5746894483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329885436, 47.1517472612 ], [ -122.2366664186, 47.1398909033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349579061, 48.9905390378 ], [ -122.7349574112, 48.9939874349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1998425884, 48.0838545215 ], [ -123.1729427957, 48.0794522238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8950160535, 46.1910097955 ], [ -122.8878973615, 46.2290248549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8543075131, 46.8986913821 ], [ -119.7477078919, 46.8989696084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6515427568, 47.7916136315 ], [ -122.6494078234, 47.8021122484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2845197408, 47.9244871101 ], [ -122.275846758, 47.922028224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067906493, 47.8972009127 ], [ -122.2068183241, 47.898121112 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1254705822, 47.6666303079 ], [ -117.1119679946, 47.6701905633 ], [ -117.1030345042, 47.677801453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343073841, 46.7823988651 ], [ -119.1342855473, 46.7970731587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965893904, 47.1697800021 ], [ -122.2966981396, 47.1766290629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444365005, 47.6869595926 ], [ -122.344449168, 47.6905617273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3463687355, 46.0605179899 ], [ -118.3470868548, 46.0613934646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133341775, 47.6416718327 ], [ -122.2093039324, 47.6428078098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1547729075, 46.2701299684 ], [ -118.1532476863, 46.2701348718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0246904637, 46.4313046328 ], [ -119.0241669698, 46.4325560871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645242594, 45.6843405722 ], [ -122.6633194815, 45.6889511168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093581645, 47.7588250331 ], [ -122.2074296103, 47.7589886736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0718667587, 47.0910580253 ], [ -123.0326707223, 47.0850835188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.2322064702 ], [ -119.0389832338, 46.2269143007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1433040389, 47.6655064295 ], [ -117.1254705822, 47.6666303079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.1314750359 ], [ -122.9708431325, 46.1276076543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9437335833, 46.1159145 ], [ -122.9300694121, 46.1160931581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527655447, 45.7037149254 ], [ -122.5526401143, 45.7079886815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3461737894, 47.4701826048 ], [ -120.3405862296, 47.4683902338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468216405, 48.1843343896 ], [ -117.0454478886, 48.1840423049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6653004485, 47.1161677624 ], [ -118.6650951427, 47.1307627649 ], [ -118.6865288265, 47.1310840591 ], [ -118.6868873255, 47.1525952933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0705784959, 46.818061401 ], [ -123.0445647319, 46.8032170817 ], [ -123.0367919974, 46.8025443825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329554592, 47.5769885266 ], [ -122.6311588032, 47.5832738305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3891779095, 47.2344452702 ], [ -122.3464829935, 47.2161092989 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.6781103544, 45.9394909444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2572398494, 47.8906887228 ], [ -122.2484756693, 47.9000726144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3895677666, 47.4250017467 ], [ -117.3851698428, 47.4416448647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.4168080215 ], [ -119.5086232761, 48.4167726734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5588936409, 47.1038824628 ], [ -119.5468406356, 47.1039007809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.6504520462 ], [ -121.2687683916, 48.6735745065 ], [ -121.2428911629, 48.6747734043 ], [ -121.2417871323, 48.6848232358 ], [ -121.2133872234, 48.6996238392 ], [ -121.1788562676, 48.7047805918 ], [ -121.1615462137, 48.7118489675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1415565005, 47.4513001292 ], [ -117.150006285, 47.4715006436 ], [ -117.1473710049, 47.490110618 ], [ -117.1534210243, 47.4954564889 ], [ -117.1543496781, 47.5050294883 ], [ -117.1729346647, 47.5083302931 ], [ -117.1911483543, 47.5183415887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3218213184, 47.7696559418 ], [ -122.3161178049, 47.7897600047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9726679277, 47.3094719647 ], [ -117.9743483399, 47.316068813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8422504198, 46.4113220356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0306794602, 46.5320120219 ], [ -124.0311381455, 46.5464572368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4283589995, 48.4448569455 ], [ -122.4220672954, 48.4427374565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1919909484, 47.9726739009 ], [ -122.1903760819, 47.9768936616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2564077395, 47.8281388084 ], [ -122.2615653431, 47.8313484071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0389677607, 46.4202679171 ], [ -117.0359439377, 46.4204504282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4199297039, 47.2443571022 ], [ -122.3998093609, 47.2472450781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3061625069, 47.1007526268 ], [ -119.2760112984, 47.102681285 ], [ -119.2359630516, 47.0980998127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6513721365, 47.7650327884 ], [ -122.6507363437, 47.7695891636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3794534635, 47.2749697278 ], [ -122.3873073485, 47.2789522223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3386717842, 47.467239294 ], [ -120.337752153, 47.4679946321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3506178988, 47.9432704768 ], [ -117.3495747173, 47.9706537304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8239536487, 47.1032398754 ], [ -119.7595545426, 47.1034506094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4973048928, 47.4245366123 ], [ -119.5139073632, 47.4582590092 ], [ -119.5147481213, 47.4841570152 ], [ -119.4959565531, 47.5262188898 ], [ -119.4877526805, 47.534625173 ], [ -119.4698317487, 47.5426197192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5941205276, 47.5625995288 ], [ -117.5935764168, 47.5639483159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2866459043, 47.0557293212 ], [ -123.2754372301, 47.0555807313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.9627633161 ], [ -118.564368032, 46.9784278916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5436645551, 46.6226773126 ], [ -120.5384276031, 46.6224575094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5607434503, 47.285298956 ], [ -122.5598601931, 47.2754181914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4875027306, 45.727786525 ], [ -121.5060798331, 45.7309675268 ], [ -121.5123870647, 45.7354852032 ], [ -121.5138862172, 45.7429041091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8982557871, 46.1444215752 ], [ -122.897437776, 46.1447077289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1108347849, 46.868530839 ], [ -124.111600125, 46.8850832339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1977866952, 47.2037633126 ], [ -124.1981225594, 47.2096549901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092045302, 48.9638603752 ], [ -122.2884988914, 48.963997296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223014031, 47.4387746189 ], [ -122.3204263512, 47.4439375555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4685078514, 47.6390299187 ], [ -117.4478142216, 47.6480936772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.7903443739 ], [ -122.1434306209, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141387154, 47.305285326 ], [ -122.5141532261, 47.305786013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049498032, 47.6441648565 ], [ -122.2886549992, 47.644785095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0528192146, 48.6655590546 ], [ -118.0248355209, 48.673690401 ], [ -118.0156324089, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.0246739855, 48.714996295 ], [ -118.0424279281, 48.7258692143 ], [ -118.0490326374, 48.7359093653 ], [ -118.0449313771, 48.7513776852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4409541321, 48.1081108568 ], [ -123.4325841603, 48.1173198234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217483631, 48.934759017 ], [ -122.3209191677, 48.9438094983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1637086417, 47.1693190408 ], [ -122.1591468798, 47.1688389452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.3726813295 ], [ -123.0436033456, 46.3778943675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1934957289, 46.7573170831 ], [ -122.1920445113, 46.7631482149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.4391963694 ], [ -122.3222272004, 47.4388851786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4325841603, 48.1173198234 ], [ -123.4317237119, 48.1182747731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7703914682, 46.9553073045 ], [ -123.7726340053, 46.9572131386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.9715394508 ], [ -123.8046532988, 46.9702958878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4559455385, 47.1039759554 ], [ -119.4399901193, 47.1039813699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2027047002, 46.7090131164 ], [ -117.1944912719, 46.7123163464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.4589718006 ], [ -122.8432117884, 46.4565616045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3055000322, 47.6975803085 ], [ -122.3004396604, 47.7105219184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2414121493, 48.5104075699 ], [ -122.238568264, 48.5105092144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9417957659, 46.8489960363 ], [ -119.9564385558, 46.870475719 ], [ -119.9550394088, 46.881056224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1199550793, 47.3581151088 ], [ -122.1183933229, 47.358083689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2917893864, 48.3357459775 ], [ -122.2346365429, 48.3169213007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826802298, 47.5728704065 ], [ -117.6822629215, 47.5797908647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966216811, 46.5642108312 ], [ -122.2876908004, 46.5629051119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260701767, 47.9948236433 ], [ -117.7319104687, 48.0271486285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.9673328212 ], [ -122.1791586732, 48.976749001 ], [ -122.2244279928, 48.9635543174 ], [ -122.2383116691, 48.9818595874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1654679307, 47.0715130267 ], [ -124.1655918294, 47.0723702608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4763407681, 47.0248252936 ], [ -118.4422043734, 47.0465468351 ], [ -118.4141103189, 47.0591967856 ], [ -118.4096531682, 47.0680228106 ], [ -118.4070751366, 47.1033095374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.6895337324 ], [ -120.7340804093, 47.6761871917 ], [ -120.736360708, 47.6653111621 ], [ -120.7293898748, 47.659802408 ], [ -120.7200561919, 47.6404036194 ], [ -120.7278030171, 47.6305660868 ], [ -120.7121110083, 47.5936110768 ], [ -120.701765463, 47.584174099 ], [ -120.6752481496, 47.5885745711 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9015325687, 45.6823424191 ], [ -121.8860713061, 45.6924749788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3849909341, 47.7667352841 ], [ -117.3782208966, 47.7726334374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9075601174, 46.1465486719 ], [ -122.9085060615, 46.1467022322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3720613135, 47.6630728307 ], [ -117.3625630309, 47.6667062903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0524708108, 46.4681772505 ], [ -124.050056982, 46.4906407097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6552199252, 47.5591158808 ], [ -122.6532972455, 47.5655345715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7393994237, 47.7563801327 ], [ -120.7384906148, 47.7360195936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6020428046, 47.8547635857 ], [ -122.5840564696, 47.8521537918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.4722955548, 47.7620355267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2297404096, 47.0873925614 ], [ -119.2426005336, 47.0979189769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.0970846899 ], [ -122.434931526, 47.0973144524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156562553, 47.2992775357 ], [ -122.5156424716, 47.3005954736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.3885347527 ], [ -122.6768545821, 46.3788408723 ], [ -122.6734966352, 46.3612844656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4858227533, 46.5364298713 ], [ -122.4853465728, 46.5342767318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6707784483, 46.9375606362 ], [ -123.6492690844, 46.9444965174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.0283986473 ], [ -119.1947276042, 47.0577047606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1627542467, 47.0173831144 ], [ -124.1550212915, 47.0173446802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.1115839277, 47.2323900431 ], [ -117.1304728709, 47.2420790028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.6497792928 ], [ -121.6020091618, 46.6572102746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0035439323, 48.8008410224 ], [ -118.0000524199, 48.8073878339 ], [ -117.9839914901, 48.8137933308 ], [ -117.9732159238, 48.8153725474 ], [ -117.9487392461, 48.8094853403 ], [ -117.9292546465, 48.8147409952 ], [ -117.911425089, 48.8271070325 ], [ -117.8959484464, 48.8508702474 ], [ -117.881274636, 48.8536526446 ], [ -117.8721976377, 48.8648540321 ], [ -117.8535989042, 48.873679994 ], [ -117.8412727199, 48.8719526263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564482172, 46.0758820358 ], [ -118.356443458, 46.0771858995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1880265207, 47.9816960822 ], [ -122.1866738723, 47.9816878379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8521750453, 46.9760733389 ], [ -123.8539819045, 46.9760751104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4854380467, 45.7986174954 ], [ -121.4907851352, 45.8072105905 ], [ -121.4897114476, 45.8238193301 ], [ -121.5095189303, 45.8498089062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0439333142, 48.1840295652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535479607, 47.1032529839 ], [ -119.853533075, 47.1177226749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0859358901, 47.3580748666 ], [ -122.0740512207, 47.3581005334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976360012, 47.9682783923 ], [ -122.1919909484, 47.9726739009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5393560124, 47.6795086708 ], [ -122.5509605497, 47.690504212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.1095610147 ], [ -119.7180337732, 48.1023785656 ], [ -119.6987076385, 48.1034031892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1098271088, 47.8752954587 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3566645336, 48.4657611597 ], [ -122.3471628144, 48.4689593505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4987396272, 48.4522633023 ], [ -122.4439027276, 48.4460211348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8615475437, 46.8501099194 ], [ -122.8619828359, 46.8516552572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.0000254737 ], [ -122.2636151475, 49.0023365971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3189412156, 46.7588639349 ], [ -118.3084452289, 46.758407436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923358096, 47.816111394 ], [ -122.2923089488, 47.8137046002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546862005, 47.4856106964 ], [ -118.2503978849, 47.4892081022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5170629867, 46.6712561513 ], [ -120.5090316719, 46.6767027963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7906979157, 47.4363324322 ], [ -117.788774298, 47.4352395576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5417481504, 46.93783701 ], [ -122.5283321717, 46.937764175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1133617704, 47.671528366 ], [ -122.1035997262, 47.668444842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.3101897606 ], [ -124.0611205915, 46.3133462133 ], [ -124.0646455872, 46.3095588922 ], [ -124.0606528839, 46.3056504572 ], [ -124.0631995935, 46.2983588775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561926794, 47.9788192594 ], [ -122.3709598621, 47.979159491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245858874, 45.6986339731 ], [ -120.8245348679, 45.6980196603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.6959989375 ], [ -121.2896666816, 45.6971356795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7038407746, 48.2693058531 ], [ -118.7118079936, 48.2717401758 ], [ -118.7347455537, 48.2990724352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.5487710681 ], [ -120.2917105696, 46.5347459334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9982651856, 47.6313971171 ], [ -121.9874606417, 47.6279947984 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9512089429, 46.1157614264 ], [ -122.9506147609, 46.1164898023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3807347134, 47.8118396427 ], [ -122.3796065351, 47.8114284518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6421804262, 48.4953349997 ], [ -121.6266579644, 48.4887808077 ], [ -121.5961697621, 48.4872753789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4620882803, 47.1970495358 ], [ -122.4616630283, 47.2001928833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9715754997, 46.6806806366 ], [ -122.9696916332, 46.6933543645 ], [ -122.9726938016, 46.7033062755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0586800059, 46.4199262615 ], [ -117.0574168065, 46.4199273309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6896573662, 47.926800027 ], [ -118.6899360795, 47.9292182705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4972510691, 47.3702850298 ], [ -119.4904926467, 47.3759248116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4005142886, 47.0558581985 ], [ -122.4284944729, 47.078773705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7394916541, 47.7565110441 ], [ -120.730179083, 47.7636832556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9995278053, 46.2401318028 ], [ -119.9992119183, 46.2864963221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3229788958, 46.3718043346 ], [ -120.3295269338, 46.375119312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547456263, 46.346612471 ], [ -124.0545804856, 46.3501186151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.7091478999, 47.7594544328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.4971895169 ], [ -119.529422804, 48.5261884807 ], [ -119.5433994788, 48.5588067811 ], [ -119.5428821789, 48.5652457761 ], [ -119.5336093333, 48.5756042234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1150336799, 47.4621474593 ], [ -123.1115804388, 47.4591212378 ], [ -123.1135516316, 47.4532319373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4817162701, 47.9308967011 ], [ -124.5299932781, 47.9150697025 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.0973144524 ], [ -122.4349079042, 47.0993004058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0489497271, 46.7350588091 ], [ -117.0399457046, 46.7324070437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.1446137165 ], [ -122.9084925335, 46.1444678361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0398979045, 46.4201869144 ], [ -117.0391231637, 46.4202563296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891839532, 48.1557176379 ], [ -122.2864988953, 48.1556958232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3759552613, 48.1048555471 ], [ -123.3718777273, 48.1048682436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5827190303, 48.4888446329 ], [ -121.5545003505, 48.4913049652 ], [ -121.4881327998, 48.508950098 ], [ -121.4721422642, 48.5088437362 ], [ -121.4623455844, 48.5215887624 ], [ -121.4499029188, 48.52736977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3601556874, 47.9337662856 ], [ -119.3421710669, 47.9339530573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.6954679099 ], [ -121.5460838145, 46.6830305932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046532988, 46.9702958878 ], [ -123.8110700669, 46.9732623777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0538459389, 47.8359849929 ], [ -120.0523540333, 47.8358056633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.9953117488 ], [ -119.4617807765, 49.0000868106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1240043387, 47.8375143859 ], [ -122.110117861, 47.8606661748 ], [ -122.1098271088, 47.8752954587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6719854785, 47.5475493235 ], [ -122.6673528658, 47.5490597613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3606111002, 46.0686802253 ], [ -118.3620580135, 46.0686467543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.5164951013 ], [ -120.4801991599, 46.5222228139 ], [ -120.4740346798, 46.5317789409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3257332902, 48.4357585766 ], [ -122.3228133919, 48.4357262199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526964173, 47.1210261719 ], [ -122.5479047169, 47.1238498878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617020964, 45.6446264754 ], [ -122.662431148, 45.6521906297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4341705298, 47.1628256566 ], [ -122.4339661209, 47.2054048624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1507870886, 48.1520523663 ], [ -122.1406082627, 48.151913289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.8204635395 ], [ -122.9030126575, 47.8171105151 ], [ -122.9099882327, 47.8113401111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0450833502, 47.3945353699 ], [ -122.0402216819, 47.4051375238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5649359725, 45.6591474533 ], [ -122.5527645121, 45.6654147454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.0711563886 ], [ -122.8179559351, 48.0780690922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982863362, 47.5159647484 ], [ -122.1981171515, 47.5215347846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.6526577026 ], [ -117.4040031937, 47.6521238544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0836074304, 46.2194354617 ], [ -119.0802022582, 46.218655692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.3836725936, 48.891377649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4299729836, 48.1175659952 ], [ -123.4189331528, 48.1130399131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245348679, 45.6980196603 ], [ -120.8239311827, 45.699442413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.0068490189 ], [ -123.370724874, 47.0107162595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070364986, 47.4594077387 ], [ -122.2071762297, 47.460991061 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981325832, 48.8071844986 ], [ -122.2025348229, 48.816156561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143033169, 47.9820481244 ], [ -122.2137802603, 47.9942207425 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.5900304239, 46.9331912019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1457324057, 46.2175957254 ], [ -119.139733927, 46.2168054788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.6533510839 ], [ -121.9052657624, 45.6630172635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7946033875, 46.6644384378 ], [ -123.7934879339, 46.6650978736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9302808397, 47.0618284552 ], [ -123.9291952045, 47.0698220314 ], [ -123.9053497947, 47.0862378881 ], [ -123.9065683519, 47.1025224633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.1600802384 ], [ -123.3772473125, 46.1712612786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0171493711, 47.533899271 ], [ -122.0078975272, 47.536442657 ], [ -121.9862702466, 47.5309639916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6860494601, 47.1944007257 ], [ -119.6058982049, 47.2443593024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347269484, 47.5378318312 ], [ -122.334116065, 47.5428151022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1407808762, 45.6112782291 ], [ -121.1458871745, 45.6207464818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5082283693, 48.4171152484 ], [ -119.4957046659, 48.4279752811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1924069122, 47.866359942 ], [ -120.2017909519, 47.8734177394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929172872, 47.4079531918 ], [ -120.2924574784, 47.4062158074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124253164, 48.3052893759 ], [ -122.3220553649, 48.3133080082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1913304565, 47.7557202808 ], [ -122.1719789948, 47.757621596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888093798, 47.6646633668 ], [ -122.6923069088, 47.6636431264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9289732825, 46.9527927439 ], [ -122.9342408253, 46.9527666325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.6413721887 ], [ -121.9750135429, 45.6406654273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7147238013, 46.8904667022 ], [ -123.7196952232, 46.9185306009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8318672716, 45.8230595037 ], [ -120.8246818019, 45.8230059935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.4940653907 ], [ -121.7947532586, 47.4893941273 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3303173221, 48.6585990657 ], [ -119.300956592, 48.6532912771 ], [ -119.2320083598, 48.6707268101 ], [ -119.2170761455, 48.6694219752 ], [ -119.1977655229, 48.6613912396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4256225729, 47.223122782 ], [ -122.4262909226, 47.225964252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8502977234, 47.1752256328 ], [ -120.835010601, 47.1813621929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202363813, 48.949281296 ], [ -122.309466058, 48.9557928338 ], [ -122.3092045302, 48.9638603752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0627483977, 47.5457057767 ], [ -122.0619693815, 47.5476213035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6380760967, 47.8121912953 ], [ -119.636809987, 47.8116079214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650029443, 48.993579316 ], [ -122.2649877502, 48.9991015764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0453893577, 47.3903330933 ], [ -122.0450833502, 47.3945353699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9862005621, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129746455, 48.6527134381 ], [ -122.2128675498, 48.6558774574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.5650234096 ], [ -122.626945866, 47.5650153276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1979386219, 47.5094150608 ], [ -122.1982863362, 47.5159647484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8864441288, 47.5692233555 ], [ -121.8714099605, 47.5666180383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3012698346, 47.3733093484 ], [ -122.2963791173, 47.3865201952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.2402668908 ], [ -122.3761260037, 47.2404869197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3368309639, 45.5742854262 ], [ -122.3209227556, 45.5721542335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0733925966, 48.5848754338 ], [ -118.0753761557, 48.5902114462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826777243, 47.5721438687 ], [ -117.6826802298, 47.5728704065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4233116711, 47.3170469005 ], [ -122.3933590552, 47.3223798088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.6521906297 ], [ -122.6641643838, 45.6564855831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2859448482, 47.6619893558 ], [ -122.2731213214, 47.6686054126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9084925335, 46.1444678361 ], [ -122.9074799263, 46.1442853545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8860713061, 45.6924749788 ], [ -121.8853526517, 45.6928459455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.6807839356 ], [ -120.4770208515, 46.690052266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5173391489, 47.1402583462 ], [ -122.5087171766, 47.1447737983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844136914, 47.5118003255 ], [ -122.2959916607, 47.5348589719 ], [ -122.3052567416, 47.5434675701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3114493708, 47.3915360181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.6743020858 ], [ -117.1949668666, 46.6792475821 ], [ -117.2041283286, 46.690852856 ], [ -117.2043379911, 46.7058457651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9601733292, 47.2820553805 ], [ -122.9476214148, 47.2843120228 ], [ -122.9072628203, 47.3196228278 ], [ -122.8804463364, 47.3319204562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8996061797, 46.3980707203 ], [ -122.8901249197, 46.4071066469 ], [ -122.8903778041, 46.415684535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9079763288, 46.6939358446 ], [ -120.9004508404, 46.6954723221 ], [ -120.8993401827, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.1970266396 ], [ -122.2014569021, 47.1941769535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9191199125, 48.7058888906 ], [ -120.9018788234, 48.6993047307 ], [ -120.8869329514, 48.6878706293 ], [ -120.8730632183, 48.6662149503 ], [ -120.860204576, 48.6580196228 ], [ -120.8570944966, 48.6471093566 ], [ -120.8396554817, 48.6236676701 ], [ -120.8052610988, 48.5968427615 ], [ -120.7910556031, 48.5753448227 ], [ -120.7719880724, 48.5619204268 ], [ -120.7559189364, 48.5360943197 ], [ -120.735353297, 48.5237714938 ], [ -120.7300186258, 48.5053914965 ], [ -120.7047351948, 48.5014054647 ], [ -120.6742675651, 48.5197397944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.7502820303 ], [ -122.329647234, 47.751023302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1686914859, 48.4567062705 ], [ -120.1641201079, 48.4482031158 ], [ -120.162657037, 48.4277004159 ], [ -120.1427507914, 48.4096480739 ], [ -120.1394581142, 48.3955959557 ], [ -120.1224530293, 48.3673427778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5903662442, 47.4195793911 ], [ -121.5776035522, 47.4100021272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152583563, 47.0751224812 ], [ -119.2297404096, 47.0873925614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6550097756, 48.2961690914 ], [ -122.6459065292, 48.3044536381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.3479609208 ], [ -122.6144392443, 48.3571507648 ], [ -122.6376502047, 48.35872899 ], [ -122.6481358695, 48.3629663488 ], [ -122.6529393278, 48.3694852783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.2363292108 ], [ -122.0527912833, 48.2449618787 ], [ -122.0422700836, 48.2472730431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5109061448, 46.6442084502 ], [ -120.523724998, 46.6377396167 ], [ -120.5176792513, 46.6312271302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2460880266, 47.4822140792 ], [ -122.2262812506, 47.4777333495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6063379125, 48.8732863748 ], [ -118.6042284774, 48.8798283082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1155512302, 47.4448279782 ], [ -123.1250572733, 47.4302399209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8889879118, 46.4359167363 ], [ -122.8874838161, 46.4465601034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3302489185, 47.653713239 ], [ -117.3059533997, 47.6666196591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5100857559, 46.9261498028 ], [ -120.4979769108, 46.9262182292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1935312742, 47.3693743374 ], [ -122.1892028116, 47.3678526781 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5798147835, 47.2816012149 ], [ -119.5666738127, 47.2998586553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1705524126, 46.261830974 ], [ -119.1232845443, 46.2486626016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.2675770829 ], [ -122.9002465055, 46.2807315191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356442883, 47.5965279925 ], [ -122.3366115131, 47.6017705053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4984055596, 47.7996307337 ], [ -122.4980484153, 47.7985063825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328642069, 47.5666355148 ], [ -122.6329469401, 47.5673326833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2138635159, 47.9989436144 ], [ -122.2139005694, 48.0088660673 ], [ -122.2066792685, 48.0166928257 ], [ -122.194138329, 48.0143287806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2658705764, 47.8207446489 ], [ -122.2603550037, 47.8200633469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5178051863, 46.8292156508 ], [ -117.5056679509, 46.8329591528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126146998, 48.512615782 ], [ -122.6158073359, 48.5126368227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6811544626, 47.5662461986 ], [ -122.6872359291, 47.5754584422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.5049651039 ], [ -122.2441256362, 48.5062952131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501999692, 46.3407700726 ], [ -117.0544483353, 46.341189423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5568485792, 46.6355163281 ], [ -118.5524895136, 46.6414946812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0341737891, 46.1565283618 ], [ -119.0404861073, 46.1612119681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2087469564, 46.519219156 ], [ -120.187902884, 46.5060599518 ], [ -120.1512170077, 46.5057690001 ], [ -120.1348556679, 46.5011777327 ], [ -120.0122059948, 46.5197458542 ], [ -119.9692099003, 46.519651668 ], [ -119.9107885567, 46.5364205054 ], [ -119.8800763033, 46.5339933138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8767342334, 47.9058643793 ], [ -122.8695985586, 47.8935341078 ], [ -122.8767758264, 47.8864421761 ], [ -122.8788699014, 47.8660279857 ], [ -122.8891886293, 47.8487536576 ], [ -122.8869762632, 47.8341940965 ], [ -122.8782146319, 47.8269872076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6827030778, 47.7012362102 ], [ -122.6601620541, 47.7045647028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9552434055, 46.1471068295 ], [ -122.9517110134, 46.1469021572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856549623, 48.8698410399 ], [ -122.4853470894, 48.891721005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922988122, 47.3324960837 ], [ -118.6922310931, 47.3333156666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4712654383, 46.5394142128 ], [ -120.4716805803, 46.5315434526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4568888894, 47.7154157955 ], [ -117.4586693868, 47.7154118844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0917467448, 46.2503035218 ], [ -119.0719934512, 46.2494836918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.2268141567 ], [ -117.0426450193, 47.2398211593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2504477979, 46.5248889015 ], [ -120.2087469564, 46.519219156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2613682363, 47.6314977852 ], [ -119.2620674833, 47.6387927373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0494766974, 46.168670079 ], [ -119.0547323353, 46.1734065603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5841213566, 48.8552680454 ], [ -122.5884452443, 48.8674825234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0032812985, 47.947389362 ], [ -119.0052660577, 47.9449095756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4503868347, 48.6949331433 ], [ -119.4426701243, 48.701328551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753566144, 48.5985793743 ], [ -118.0751698208, 48.6068991662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2257453992, 46.7363553939 ], [ -117.2088606428, 46.7337475063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3359326659, 48.3471746589 ], [ -122.3353139183, 48.3777532366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.7916254829 ], [ -118.735554338, 46.7937508078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1223453784, 47.6671817737 ], [ -122.1151578787, 47.6670962794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4176648406, 46.2468890125 ], [ -120.4107130626, 46.2554072697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8756714308, 47.8241423181 ], [ -122.8784338391, 47.8213945565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4105237126, 47.7523163592 ], [ -117.4066398664, 47.7632226212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650050712, 48.9927318071 ], [ -122.2650029443, 48.993579316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2693756681, 47.4848401945 ], [ -122.271537638, 47.4774623884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8631442072, 47.4386387656 ], [ -122.8510893599, 47.4467178579 ], [ -122.8432290715, 47.4472414198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3337342412, 46.9675559139 ], [ -119.3209799294, 46.9653642782 ], [ -119.2905893437, 46.9819785317 ], [ -119.2546464371, 46.9816911587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8823688809, 47.6904307157 ], [ -117.8721214923, 47.7133784629 ], [ -117.8705301943, 47.7320770346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2920566884, 47.4105282137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4801819768, 47.1632148502 ], [ -122.4736786558, 47.1615792122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5836844979, 47.8135870398 ], [ -122.575679242, 47.8083982974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1709978885, 48.2679601252 ], [ -122.2108149261, 48.3083495968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.5933681002 ], [ -117.564917202, 47.5916927028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847688223, 48.0681379541 ], [ -122.1846880578, 48.0816069517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3712410754, 46.1000850053 ], [ -118.3752602576, 46.1297165624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9976415411, 47.6844844298 ], [ -118.9853528685, 47.684966131 ], [ -118.9278071982, 47.7098400514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1795081855, 47.5879075274 ], [ -122.1799148927, 47.5984958939 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4071070263, 45.6049828823 ], [ -122.4068708389, 45.6018672646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4904926467, 47.3759248116 ], [ -119.4885964173, 47.3774858912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859651634, 48.8333491544 ], [ -122.4859682883, 48.8551455389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.0661116568 ], [ -124.1277743569, 48.0610891429 ], [ -124.0856497531, 48.0682445214 ], [ -124.0376981686, 48.0703874967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.8132799743 ], [ -121.5578566858, 47.8076375665 ], [ -121.540417972, 47.8101587782 ], [ -121.5174716436, 47.8040718423 ], [ -121.5124008767, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6612770989, 45.7464677187 ], [ -122.6644148519, 45.7566399081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1355017102, 47.9728688256 ], [ -122.1147445638, 47.9546186275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2980615002, 47.4097420223 ], [ -120.3006072071, 47.4096540761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473526853, 47.3779583767 ], [ -122.2473765563, 47.3813544414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442388387, 46.5318795567 ], [ -122.6340930823, 46.5322486745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.2226311076, 46.7258475583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4001255166, 45.5869987019 ], [ -122.4026413273, 45.5856862701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937875847, 47.2001491986 ], [ -122.2938700472, 47.204398406 ], [ -122.2900662647, 47.2038050564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068844997, 47.1589588837 ], [ -122.3938232704, 47.1581372397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3709598621, 47.979159491 ], [ -122.3858313632, 47.9827480539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938144583, 47.1988803768 ], [ -122.2937875847, 47.2001491986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.6490423139 ], [ -122.6555581763, 47.650535837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738336898, 45.6318598942 ], [ -122.6726646061, 45.6318665894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9122848657, 46.0569707003 ], [ -118.9099471422, 46.0583086547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4742083499, 46.700892472 ], [ -120.4658299611, 46.7110974278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3776962209, 47.7986124147 ], [ -122.3736956575, 47.7951965131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961576193, 48.435565171 ], [ -122.2918401179, 48.4355506598 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885119703, 47.6116238629 ], [ -122.188529648, 47.6167655089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6533156313, 47.5673798823 ], [ -122.6532972455, 47.5655345715 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9165979703, 46.1447449432 ], [ -122.9162646971, 46.1456053501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0285168926, 46.3059630059 ], [ -120.0130934852, 46.3059829046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205534208, 48.891030585 ], [ -122.3207228659, 48.9128299651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0389832338, 46.2269143007 ], [ -119.0271462337, 46.2187179874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5282531262, 46.6540390188 ], [ -120.5271133231, 46.6559435532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1182659294, 47.2502870454 ], [ -122.1121601288, 47.2429315526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7937991559, 47.4331327858 ], [ -117.7834183624, 47.4410207892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939939147, 47.3262355559 ], [ -122.2926147175, 47.3445454758 ], [ -122.2958194243, 47.3530329299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6208507752, 47.3727205294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104239582, 47.7407128065 ], [ -117.4070872362, 47.7441952253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3995222327, 48.7939812329 ], [ -119.4010786247, 48.8149632644 ], [ -119.4098917758, 48.8417212767 ], [ -119.4075491533, 48.8590815563 ], [ -119.4237602533, 48.8850520385 ], [ -119.4267945588, 48.8988015987 ], [ -119.420443464, 48.9195242197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6214626929, 46.3469762238 ], [ -123.6093516169, 46.3560125261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030769375, 46.2842542837 ], [ -122.9017000705, 46.2852760142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446706564, 47.9041485453 ], [ -122.24100502, 47.9048928592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3192746176, 47.5777213746 ], [ -122.3189900834, 47.5793697605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3326182621, 48.3411594036 ], [ -122.3223136019, 48.340974526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2175661581, 47.8496908765 ], [ -122.2180791238, 47.8520936404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0626914872, 47.6565133547 ], [ -122.0246598026, 47.644263262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2111007099, 47.8781842656 ], [ -122.2064495037, 47.8781807663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6038968536, 47.6429304571 ], [ -117.5930897565, 47.6429188126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6883954382, 45.8215294532 ], [ -122.6994969166, 45.8454016677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5142285605, 45.8854969434 ], [ -122.5141163677, 45.8882670084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4127871024, 47.4225424219 ], [ -121.4125086133, 47.4188575024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0670005531, 48.0311344173 ], [ -122.0515149974, 48.0347413646 ], [ -122.0154120928, 48.0674017673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.0478652505 ], [ -122.8677373906, 46.0662316544 ], [ -122.8667316652, 46.0815539497 ], [ -122.8766472391, 46.1027391181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.6610600414 ], [ -122.2923848001, 47.661192848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7288442607, 46.3273755528 ], [ -122.7096040658, 46.3413062589 ], [ -122.705966832, 46.3506258111 ], [ -122.6957643354, 46.3590260443 ], [ -122.6794982425, 46.3616185155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1260566825, 47.8338193781 ], [ -122.1240043387, 47.8375143859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0449313771, 48.7513776852 ], [ -118.0341098319, 48.763627811 ], [ -118.0029204082, 48.7817155245 ], [ -117.9984594154, 48.7930237893 ], [ -118.0035439323, 48.8008410224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.7060084758, 48.282630412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004841678, 46.8873929159 ], [ -122.2956838746, 46.9101470708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159443381, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.4755009726, 47.7154054601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9487451622, 47.3816100186 ], [ -122.9147576786, 47.3880434547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5973616913, 47.8288659688 ], [ -117.6086838618, 47.8395393993 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938851325, 47.1496369098 ], [ -119.2942188172, 47.1497279489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1696161125, 47.8778286457 ], [ -122.1659527236, 47.8777990754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0802022582, 46.218655692 ], [ -119.0767280097, 46.2265908318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.632862566, 47.5657555269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0037700013, 46.3053205372 ], [ -117.9916818783, 46.3128548734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0447131335, 46.331198202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0311381455, 46.5464572368 ], [ -124.0345305238, 46.549222742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2905265819, 47.6724838661 ], [ -117.2740595055, 47.6747650499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2068183241, 47.898121112 ], [ -122.2070072355, 47.9049606299 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2819653483, 47.864172748 ], [ -122.2804789478, 47.865772013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1493385256, 45.627246477 ], [ -121.1535252294, 45.6362913178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8878973615, 46.2290248549 ], [ -122.8855586956, 46.2431363274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2916134708, 47.299067816 ], [ -121.2855990411, 47.2943430614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7300920583, 45.9194293595 ], [ -122.7339030885, 45.9187733832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0795201794, 46.2322979284 ], [ -119.0800536366, 46.2333845599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393673303, 47.0263156043 ], [ -119.865717202, 47.0813852641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5851724439, 47.0928828595 ], [ -117.5970369922, 47.0955432506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.8650299972 ], [ -118.214404576, 48.874449448 ], [ -118.2191997319, 48.8911689414 ], [ -118.2184898942, 48.8962055128 ], [ -118.2049135992, 48.9088799037 ], [ -118.2224810046, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.2231937044, 48.9714536855 ], [ -118.2244399208, 48.9981157805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0565323603, 47.1958256105 ], [ -121.0467690066, 47.1906721316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159983682, 47.4737702544 ], [ -122.2162633519, 47.4784706076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.9560020349 ], [ -119.0023772267, 47.9485330892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433824839, 46.311738539 ], [ -124.0446066182, 46.3179898662 ], [ -124.0547726708, 46.3234251581 ], [ -124.0549477321, 46.3302467729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2341478641, 46.3874544653 ], [ -120.2006801889, 46.3575732877 ], [ -120.182959056, 46.3492095996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4110973876, 47.6862388811 ], [ -117.4111019043, 47.687150654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5826104882, 47.642912863 ], [ -117.5772145701, 47.6429329048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6439469399, 47.5027845218 ], [ -122.6342473786, 47.5049271741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1475130648, 47.3390747692 ], [ -122.1437673624, 47.3450660019 ], [ -122.1282072982, 47.3535748936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6508855836, 47.5374447335 ], [ -122.6378486297, 47.5421872915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4958895454, 48.7835005491 ], [ -122.4978200864, 48.7835877334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.1825112217, 46.7290233594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646334439, 47.5135895893 ], [ -117.5670476974, 47.526881555 ], [ -117.5936292327, 47.5547380914 ], [ -117.5941205276, 47.5625995288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1595614502, 47.2522250859 ], [ -123.1457654709, 47.2521210376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3035133121, 47.1100072069 ], [ -119.2942457468, 47.1191324392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6158073359, 48.5126368227 ], [ -122.6361324861, 48.5127555405 ], [ -122.6579787417, 48.5069926006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6689386318, 48.0733486098 ], [ -123.598965558, 48.0638062914 ], [ -123.5830787762, 48.0658416901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2871149715, 47.8209339215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7462246084, 48.1373562819 ], [ -123.7455869752, 48.1372852387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4626535561, 48.1066210145 ], [ -123.4625406534, 48.1078996274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6685724818, 47.8943422934 ], [ -117.6861862014, 47.8907180121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4410919266, 48.7031509182 ], [ -119.4398134853, 48.7045718994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.2883683977 ], [ -122.1779414139, 47.2881307235 ], [ -122.1548282244, 47.2749677214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9500747094, 47.8613131638 ], [ -119.930668758, 47.8631043834 ], [ -119.9204424478, 47.8725821754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3241499511, 46.9733140337 ], [ -117.3499111171, 46.9874191495 ], [ -117.354064457, 47.0058824451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.3964616362, 48.6672895858 ], [ -117.3713854649, 48.6388347877 ], [ -117.3629222732, 48.6033481158 ], [ -117.3526555573, 48.5904367859 ], [ -117.3546444992, 48.5669664902 ], [ -117.3455588826, 48.5553675301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510483527, 47.7829431864 ], [ -122.3487077695, 47.7814262958 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.3333178275 ], [ -118.69367346, 47.3333652583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0476765238, 47.7333586658 ], [ -117.0419553671, 47.7358000914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654432539, 46.8668033464 ], [ -122.2654507751, 46.8691413663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0536764297, 47.3579952591 ], [ -122.0435504851, 47.3579738218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7096706618, 47.4632751617 ], [ -121.696592014, 47.4467696564 ], [ -121.6749565537, 47.443251501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.7323152241 ], [ -122.6370754284, 47.7334671319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1250572733, 47.4302399209 ], [ -123.1403335938, 47.4070557775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7624088379, 47.1468189921 ], [ -119.7380298017, 47.1620255285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0239885328, 47.836037193 ], [ -120.0148836023, 47.8388580147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3642787688, 47.8215067044 ], [ -122.3617083091, 47.8214854076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.6441332225 ], [ -122.3678919314, 48.6545170814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9809250496, 47.2078375727 ], [ -120.9825252207, 47.2092344825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738387769, 45.6325598997 ], [ -122.6770752412, 45.6327721391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8110700669, 46.9732623777 ], [ -123.8132785951, 46.9750588263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9356420479, 47.5224107728 ], [ -121.9034935566, 47.5065417758 ], [ -121.8899669956, 47.507262303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1693615258, 46.2688128518 ], [ -118.1599270282, 46.2701832514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.3612124716 ], [ -120.1178922765, 48.3599953038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1794448564, 47.6657680173 ], [ -117.1433040389, 47.6655064295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.5270485575 ], [ -122.6680239887, 47.5318789785 ], [ -122.6620910392, 47.5392820916 ], [ -122.6508855836, 47.5374447335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8910176347, 46.421545267 ], [ -122.8889879118, 46.4359167363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2986045804, 47.2906745073 ], [ -122.2844861848, 47.2982208758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0654021951, 46.5056331844 ], [ -118.109757182, 46.5129212108 ], [ -118.1404188433, 46.5276658723 ], [ -118.1547520035, 46.5394792517 ], [ -118.1780336772, 46.5472938895 ], [ -118.1787324832, 46.5582109589 ], [ -118.2175509794, 46.5840153341 ], [ -118.2223022809, 46.5981111151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7226222255, 45.9280008842 ], [ -122.7255915614, 45.9205289409 ], [ -122.7300920583, 45.9194293595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3331696319, 46.3769677074 ], [ -120.3597576147, 46.3905484679 ], [ -120.3933744977, 46.4150549766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.9060034469, 47.0215459655 ], [ -122.8983905827, 47.0254310319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6251575619, 46.6007463777 ], [ -123.6187441805, 46.5926082182 ], [ -123.6185028529, 46.5642568928 ], [ -123.6111780751, 46.555555809 ], [ -123.6035760875, 46.5548361522 ], [ -123.5879273803, 46.5630859685 ], [ -123.5746576675, 46.5626246259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6752481496, 47.5885745711 ], [ -120.67150803, 47.5902637122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8891124761, 46.5836691379 ], [ -122.8857507292, 46.5838092047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7787592741, 48.9171693044 ], [ -117.7772882632, 48.9177594411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9615435138, 47.60154051 ], [ -121.9532472828, 47.5883720957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1147445638, 47.9546186275 ], [ -122.1063789003, 47.9520311616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7293771219, 46.6866295208 ], [ -123.7300519299, 46.6888584117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5176792513, 46.6312271302 ], [ -120.5135770418, 46.6284896582 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1825112217, 46.7290233594 ], [ -117.1800952459, 46.7289180943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3051164258, 47.5266969435 ], [ -120.2930920819, 47.5434095413 ], [ -120.262078237, 47.5688721141 ], [ -120.2491764405, 47.5869624313 ], [ -120.2392421914, 47.6211257043 ], [ -120.2414203985, 47.6309835125 ], [ -120.2282667897, 47.6502596506 ], [ -120.2245455295, 47.6632648417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.5712733617 ], [ -121.8880335642, 47.567584502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3792847178, 48.2409791825 ], [ -122.3706721348, 48.2410706967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0858231048, 46.1966150682 ], [ -119.0933468628, 46.1991336316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1525821693, 47.8602012466 ], [ -120.114481517, 47.8477254195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9716062284, 46.5097445742 ], [ -117.977840654, 46.5125790079 ], [ -118.0295588988, 46.5029503931 ], [ -118.050008143, 46.5072926137 ], [ -118.0654021951, 46.5056331844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6399785669, 47.7561660923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5947129537, 47.504905792 ], [ -122.5927942323, 47.5049278803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0528218155, 47.1410552733 ], [ -122.036341396, 47.1564220776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2043379911, 46.7058457651 ], [ -117.2035165481, 46.708001321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.9428804513 ], [ -117.4815523866, 47.9470052096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1413008619, 47.4050125018 ], [ -123.1477743844, 47.3845206777 ], [ -123.159376622, 47.3704053086 ], [ -123.1611162657, 47.3406418157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5551539066, 48.3113332029 ], [ -121.5543923163, 48.3214625286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8191660399, 48.3201502053 ], [ -117.8266708398, 48.3271469455 ], [ -117.8339867358, 48.3531223429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3298290597, 47.7041346347 ], [ -122.3299521063, 47.7048820072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1548282244, 47.2749677214 ], [ -122.1526290082, 47.2744486003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8383635311, 47.4109223756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854821185, 47.9460570961 ], [ -124.3854576502, 47.9480859363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1611162657, 47.3406418157 ], [ -123.1613235363, 47.333867098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8605402927, 47.4233280775 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0279928055, 47.3596803479 ], [ -122.0209265407, 47.3613941171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3752602576, 46.1297165624 ], [ -118.3726222715, 46.147436197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525923868, 45.6672693746 ], [ -122.5525552477, 45.6778313417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1371263893, 46.2216194455 ], [ -119.134005824, 46.2288412929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3482490253, 48.4942122629 ], [ -122.3773305642, 48.5155613349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5095189303, 45.8498089062 ], [ -121.5108648914, 45.8655058663 ], [ -121.5212328319, 45.8847480557 ], [ -121.4996741979, 45.915317054 ], [ -121.489450713, 45.9608115296 ], [ -121.4935352823, 45.9684352892 ], [ -121.5252103086, 45.9957998151 ], [ -121.5337335651, 45.9984030688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7944730895, 48.0983151568 ], [ -119.7901966083, 48.1001446551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.4457098369 ], [ -122.5823712081, 48.4544018047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7996236578, 48.0504853323 ], [ -122.8155297756, 48.0684125491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6641643838, 45.6564855831 ], [ -122.6669203097, 45.6632919305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.3341920495, 47.5902797808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454920241, 47.7526354194 ], [ -122.345920634, 47.7708341637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6738118915, 48.6504316995 ], [ -118.6706352632, 48.6541388326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2287970334, 46.322331888 ], [ -120.1173782267, 46.2487258708 ], [ -120.0419262876, 46.2219914931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843966097, 46.5334326776 ], [ -118.5651606624, 46.537428166 ], [ -118.534825247, 46.5721567274 ], [ -118.5611540342, 46.6273261384 ], [ -118.5568485792, 46.6355163281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2464336415, 46.0556053087 ], [ -122.2456091349, 46.0556807198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2628122677, 48.9927495948 ], [ -122.2650050712, 48.9927318071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.4839534054, 46.7954711602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.4967354264 ], [ -122.2527825057, 48.5028862443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0562083367, 48.7288096268 ], [ -121.0248123581, 48.7241331 ], [ -120.9683186319, 48.7052249613 ], [ -120.9191199125, 48.7058888906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7880909112, 46.967896691 ], [ -123.801005869, 46.9715394508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126265866, 48.4934511275 ], [ -122.6128336455, 48.4963987197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6377513794, 48.0630093485 ], [ -117.6367704982, 48.0627193371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9545771246, 48.0754505177 ], [ -123.9167844502, 48.067797845 ], [ -123.8588524092, 48.0494599267 ], [ -123.8267789051, 48.0522912919 ], [ -123.8076778624, 48.0488636487 ], [ -123.7799058231, 48.0601192625 ], [ -123.7697626403, 48.0758388116 ], [ -123.7358376193, 48.0813231124 ], [ -123.7306682808, 48.0861363728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.6483088559 ], [ -122.5794120249, 45.6676715094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3759701159, 47.2469906191 ], [ -122.3730388085, 47.247348751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.0861911278 ], [ -119.8628433861, 47.0896867872 ], [ -119.8540034289, 47.093700135 ], [ -119.8535479607, 47.1032529839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0803644861, 46.7452804885 ], [ -124.0824521881, 46.7544029188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0609392727, 46.1762466146 ], [ -119.0745599425, 46.1865269366 ], [ -119.077331005, 46.1940733709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.4305793587 ], [ -122.8763595467, 47.4318329878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.4968769556, 47.7970409839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1688952325, 47.7523661354 ], [ -122.1611915713, 47.7452096371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5666738127, 47.2998586553 ], [ -119.561131671, 47.3075520766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1445158196, 48.2276178924 ], [ -117.1147080098, 48.2225207152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929937518, 47.1566288415 ], [ -122.2940695704, 47.1604934513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2714942577, 47.3774662501 ], [ -122.24684628, 47.3779642912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617016336, 45.7795054863 ], [ -122.6565486135, 45.7796107255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3949918933, 47.6575846328 ], [ -117.3965543236, 47.6618427629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2016705042, 47.7214958149 ], [ -120.1970669834, 47.7355209682 ], [ -120.1884165074, 47.7450718323 ], [ -120.1489577681, 47.7627227749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2838095032, 47.7600084566 ], [ -122.2805998666, 47.756565837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4004187802, 46.4742779497 ], [ -120.3873706387, 46.4670041855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7547734432, 46.6823312222 ], [ -123.7457821436, 46.6828253187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646472962, 47.5079585085 ], [ -117.5646334439, 47.5135895893 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.1034506094 ], [ -119.5588936409, 47.1038824628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3147914885, 47.7977880413 ], [ -122.3109574982, 47.8036768463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0162894195, 46.1394401375 ], [ -119.0136095347, 46.1478903111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7975638125, 46.2245562959 ], [ -119.7793761782, 46.2212051746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485845591, 47.8886416262 ], [ -122.144284589, 47.8911732556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2576809614, 47.4624296733 ], [ -122.2538113908, 47.4617511143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511977801, 48.3765935554 ], [ -122.6469511117, 48.3911357861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899748205, 47.6377977945 ], [ -117.4834194345, 47.6349163355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694634271, 48.2806289911 ], [ -122.6686935469, 48.2839223474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2883400594, 47.3993847963 ], [ -120.2863393433, 47.3982856502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.7338069071 ], [ -122.2965384457, 47.7337970814 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.1429892693 ], [ -123.0963235193, 47.1342723946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.9813954636, 47.1994152348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0728624554, 48.6070846621 ], [ -118.0754032266, 48.6062200924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455562905, 46.4072575118 ], [ -117.0455667913, 46.4144864199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.4199328277 ], [ -117.0418858195, 46.4199930726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7811517034, 48.1041817295 ], [ -119.7756848413, 48.1086426578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9203722024, 48.5548430412 ], [ -117.9251619366, 48.557993926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8974973541, 46.4793963978 ], [ -122.881749481, 46.4752593869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3632090748, 47.2405896685 ], [ -122.3444902745, 47.2410622326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1502609571, 46.1420400459 ], [ -118.1326510755, 46.1574552913 ], [ -118.1306968579, 46.1654154745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.2057419837 ], [ -122.909567729, 46.2331832879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.8868591474 ], [ -124.1042307641, 46.8878717782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.9195242197 ], [ -119.4341632669, 48.9323868359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3857593028, 47.9408546394 ], [ -124.3855106235, 47.9441729563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9380954914, 46.1457035998 ], [ -118.9357957557, 46.1384811775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5615375286, 47.710001753 ], [ -122.5707855947, 47.7139681507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3232041563, 47.5929897168 ], [ -122.3156584943, 47.5948454186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764136146, 46.7968582865 ], [ -119.1766968441, 46.8046382853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3643429172, 46.8885261173 ], [ -117.3642482346, 46.8895898765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2731333424, 47.5407820544 ], [ -124.287584452, 47.5365770819 ], [ -124.3198478847, 47.5165241792 ], [ -124.3334309825, 47.5191415285 ], [ -124.3376247694, 47.5271647394 ], [ -124.3334713323, 47.5382230035 ], [ -124.3564280609, 47.5540059408 ], [ -124.3744668125, 47.6129385181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.4652569769 ], [ -122.2191991764, 47.4676990124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6873276483, 45.815867042 ], [ -122.6854710172, 45.8159186028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282072982, 47.3535748936 ], [ -122.1105727106, 47.3639441595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.0565323603, 47.1958256105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5792543891, 45.780262944 ], [ -122.5632686852, 45.7805094295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3446807868, 47.6717289639 ], [ -117.3419659665, 47.6723961843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.8505614694, 46.6606108889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295211986, 48.3202909794 ], [ -122.6286423009, 48.325690041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5798641373, 47.8122645365 ], [ -121.570503455, 47.8132799743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4600900511, 47.1585657847 ], [ -122.4440605013, 47.158268456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931688795, 47.8504172566 ], [ -122.2875761547, 47.8581507051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1895522829, 47.9817536396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526476236, 47.8049830492 ], [ -122.1434306209, 47.804831104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9067208674, 46.2922496265 ], [ -122.9144562174, 46.3202165297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1949845235, 47.5021417776 ], [ -122.1871847394, 47.5018573254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1299980522, 48.2057570202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8714099605, 47.5666180383 ], [ -121.8655443332, 47.5625960148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6823651856, 46.6537194229 ], [ -123.6623988407, 46.6469519661 ], [ -123.6542600354, 46.633500722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002077406, 47.1262326925 ], [ -123.102377983, 47.1126716861 ], [ -123.09520306, 47.1066616235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4851566888, 48.9933456178 ], [ -122.48508877, 49.0005739703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4746332727, 47.3939164723 ], [ -121.4469739493, 47.3982243324 ], [ -121.4312142261, 47.4244614737 ], [ -121.4223417195, 47.4282688783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266798027, 45.6184887446 ], [ -122.5989397766, 45.6129740168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.8116126602 ], [ -122.1921188204, 47.8129694111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001156286, 47.9185854039 ], [ -122.3001742723, 47.9219962025 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.6304436393, 47.5650259077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111371057, 47.6944973222 ], [ -117.4111387601, 47.6953642106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6392561156, 47.8677305236 ], [ -122.6090544172, 47.8521256366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495866356, 47.9814746809 ], [ -117.3496454526, 48.0068914762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.7437352957, 48.0253259826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1255239767, 47.4635158088 ], [ -122.1376219385, 47.4652954001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4174728874, 48.7462831433 ], [ -117.4146881423, 48.7566267665 ], [ -117.402437726, 48.7676671259 ], [ -117.4076382091, 48.7764590477 ], [ -117.4220851353, 48.7827080731 ], [ -117.4232350107, 48.7883712057 ], [ -117.3946339612, 48.8268190888 ], [ -117.3880478769, 48.8570115349 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.6963748835 ], [ -120.8245348679, 45.6980196603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7238512322, 47.772533091 ], [ -118.7225935085, 47.7708524695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.8293869076, 47.1408764113 ], [ -117.8448910097, 47.1542913283 ], [ -117.8710413696, 47.1578138772 ], [ -117.8713875973, 47.1878396227 ], [ -117.8903636196, 47.2092221227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7936594895, 48.0437626987 ], [ -122.7996236578, 48.0504853323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.4915532327 ], [ -122.9103335991, 46.482928058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4960377839, 46.8670870363 ], [ -119.4753373648, 46.862537997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347023936, 47.5375284994 ], [ -122.3347269484, 47.5378318312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0560803608, 46.3250305409 ], [ -117.0639679546, 46.3288210403 ], [ -117.0533201894, 46.3352565084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9698911237, 46.4019382554 ], [ -122.9615212742, 46.401988221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455667913, 46.4144864199 ], [ -117.0451921636, 46.416527455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393652388, 47.5748709959 ], [ -122.3363467181, 47.5916540334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7062185932, 46.8779876268 ], [ -123.7095800286, 46.8824221446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.4651180339, 46.2822112261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1823923289, 46.7153301884 ], [ -117.184576053, 46.7209092456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3613918472, 46.5494638956 ], [ -120.335129764, 46.5487710681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.8810185511 ], [ -117.3643429172, 46.8885261173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7695997378, 46.9546351666 ], [ -123.7703914682, 46.9553073045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024622981, 47.0953255419 ], [ -122.1877595188, 47.0819384727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1986940231, 47.2401706315 ], [ -123.1912428882, 47.2429358128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0976103078, 45.8260671911 ], [ -121.0775669185, 45.8369135892 ], [ -121.0642894236, 45.8376125847 ], [ -121.0608960245, 45.8431779335 ], [ -121.0440024936, 45.8433714611 ], [ -121.042019508, 45.8485283308 ], [ -121.0374313104, 45.8410607376 ], [ -121.0154166753, 45.8413818742 ], [ -121.0043878428, 45.8462946752 ], [ -121.0038482918, 45.8572379269 ], [ -120.9972196495, 45.8575744394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2339586384, 48.510507948 ], [ -122.2323979204, 48.5104945464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174730359, 47.3653428749 ], [ -122.6177931336, 47.3660514733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4964887302, 47.7981317254 ], [ -122.4975542478, 47.7988312911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8236282381, 45.6963748835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304207056, 46.6430874404 ], [ -120.5304211479, 46.6486735819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370754284, 47.7334671319 ], [ -122.6377776889, 47.7367740872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873059636, 46.0008733795 ], [ -118.3895048351, 46.0116896783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.1863524437, 46.8303419645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5710608079, 46.9700238316 ], [ -118.5888210566, 46.9701558628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8131962319, 47.6126343481 ], [ -119.755706339, 47.6121641933 ], [ -119.7378232275, 47.6051578842 ], [ -119.7207218172, 47.5911027894 ], [ -119.6946295812, 47.5841828284 ], [ -119.6697674526, 47.5997916763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2430570827, 47.378057579 ], [ -122.2373624055, 47.3779147052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3617083091, 47.8214854076 ], [ -122.3518259847, 47.821404826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1932937046, 47.6371487563 ], [ -122.1881596197, 47.6322979443 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3155342499, 47.1016304023 ], [ -119.312911608, 47.1034589548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1601671048, 47.6539518845 ], [ -118.1576684527, 47.6540467209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.9706138586 ], [ -123.8023146967, 46.9715050749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714795546, 47.648195998 ], [ -120.0714484595, 47.6491744077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3470868548, 46.0613934646 ], [ -118.3484813064, 46.0630851666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3291013409, 47.7873237723 ], [ -117.303824325, 47.7875196843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.1976527666, 47.5284479262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4322202216, 47.2386425935 ], [ -122.4330740998, 47.2403048183 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984506931, 47.2150788727 ], [ -123.0827870167, 47.2167787857 ], [ -123.0541037369, 47.2368676818 ], [ -123.0463421603, 47.2472806543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0542260413, 47.6939743273 ], [ -117.0483767272, 47.6956888561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9169607763, 46.7378528943 ], [ -119.9181387188, 46.7453195258 ], [ -119.9303833583, 46.7566116646 ], [ -119.9250609686, 46.7992595246 ], [ -119.9194676679, 46.8134191374 ], [ -119.9295645603, 46.8257316077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422256352, 46.9696837609 ], [ -119.0406007171, 46.9696767228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9594136168, 46.8965445916 ], [ -122.9504462358, 46.8962553703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5901063759, 48.4885682085 ], [ -121.5827190303, 48.4888446329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0740512207, 47.3581005334 ], [ -122.056859545, 47.3579998249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1552091714, 45.6491568269 ], [ -121.1043883879, 45.6485914606 ], [ -121.0817415229, 45.6584905199 ], [ -121.0373692153, 45.6641740956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.3040619068 ], [ -122.5141387154, 47.305285326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947521893, 47.3943368889 ], [ -122.2966747787, 47.399436909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3314940653, 48.4135964059 ], [ -122.3351426952, 48.421566968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0312749766, 46.6723519543 ], [ -120.9751255601, 46.6711716406 ], [ -120.9539742197, 46.6836791847 ], [ -120.9423362381, 46.6834592118 ], [ -120.9236598936, 46.6901898346 ], [ -120.919967452, 46.6953639912 ], [ -120.9079763288, 46.6939358446 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8793107352, 46.9778455486 ], [ -123.8823509757, 46.9792200862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4755009726, 47.7154054601 ], [ -117.4775864514, 47.7155036924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9615212742, 46.401988221 ], [ -122.9490131702, 46.4020849219 ], [ -122.9279330238, 46.4116100688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6701869958, 45.7753317642 ], [ -122.6742471673, 45.7884633898 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5695221755, 47.2976027952 ], [ -122.5728475744, 47.3013604296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6656137967, 46.8138014312 ], [ -117.6550649229, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207228659, 48.9128299651 ], [ -122.3206641784, 48.920195997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9183274849, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.0530641068 ], [ -122.2947627706, 47.0592610847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0517810734, 46.3795878122 ], [ -117.0448176781, 46.3941409901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1825622133, 47.6861532736 ], [ -122.1796695496, 47.6992447918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216151872, 47.6765956856 ], [ -122.1216193183, 47.6754410608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006964497, 46.8856559346 ], [ -122.3004841678, 46.8873929159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5192085128, 46.0499502566 ], [ -118.480204124, 46.0490486428 ], [ -118.4380859373, 46.0577292113 ], [ -118.4150633113, 46.0706784483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410552917, 48.4313110136 ], [ -122.3410260439, 48.4420756317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2536978763, 46.7208346039 ], [ -117.2226311076, 46.7258475583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3636245159, 46.8909558494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1790908365, 48.0404147216 ], [ -122.1778352269, 48.046828316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5739759223, 47.6429386574 ], [ -117.5662058166, 47.642947503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.9142967877, 47.0151102563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1915989356, 48.0125732298 ], [ -122.190360403, 48.0112588295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4949520588, 45.7249743594 ], [ -121.4899695301, 45.724018802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3750456098, 46.5493985238 ], [ -120.3613918472, 46.5494638956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6224996657, 46.0271360717 ], [ -120.5755323972, 46.0394288913 ], [ -120.5347510985, 46.1239501497 ], [ -120.5155304936, 46.1430933666 ], [ -120.5037936831, 46.1723589628 ], [ -120.4878548002, 46.1971162847 ], [ -120.4797089864, 46.2036499179 ], [ -120.4298698764, 46.2228395437 ], [ -120.419279593, 46.2335193656 ], [ -120.4176648406, 46.2468890125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3460982766, 46.053273733 ], [ -118.3463687355, 46.0605179899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2917105696, 46.5347459334 ], [ -120.2504477979, 46.5248889015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6692405052, 46.0403350228 ], [ -118.6587450787, 46.0394084907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3384306266, 47.7875972066 ], [ -117.3291013409, 47.7873237723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6960888319, 47.5248350158 ], [ -122.6971089618, 47.524879573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.2842547986 ], [ -122.3028757982, 47.3000530138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1811585184, 47.3649772586 ], [ -122.1761180844, 47.3631667878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8090468875, 46.9772106863 ], [ -123.8132040823, 46.9766495807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7307102829, 46.6823557798 ], [ -123.7094384198, 46.6776841454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2447763261, 47.3180985045 ], [ -122.2446858124, 47.3297219858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3037605642, 47.5106094253 ], [ -122.3124883705, 47.5167348211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0400651005, 47.2403316548 ], [ -117.0398725383, 47.2402750621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4627470202, 47.2159591708 ], [ -122.4615526157, 47.2287362725 ], [ -122.4466273692, 47.2301579669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3248627173, 47.6754104751 ], [ -117.2827858737, 47.6810526384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4189331528, 48.1130399131 ], [ -123.4171863107, 48.1123263385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245604481, 47.4752697078 ], [ -122.642332524, 47.4978831795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3035547655, 47.410929097 ], [ -120.3041069002, 47.4122978378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0453814357, 48.1774974633 ], [ -117.0441181005, 48.1780553435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3236068716, 47.7340600888 ], [ -122.3127959962, 47.7339766531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872965039, 48.1444384712 ], [ -122.1900214152, 48.1598254833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.6674773757 ], [ -117.3594319704, 47.6686111382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5170315735, 46.5330350165 ], [ -122.4853465728, 46.5342767318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1954842634, 48.8206495581 ], [ -122.1716283618, 48.8323550601 ], [ -122.155341196, 48.853030999 ], [ -122.1523151666, 48.8665218931 ], [ -122.1570234366, 48.8806206725 ], [ -122.1433236191, 48.9047123737 ], [ -122.1380018087, 48.9060853167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1545590892, 47.0396761869 ], [ -117.1608612896, 47.0509546305 ], [ -117.146111612, 47.067878035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8765100174, 46.5439285548 ], [ -122.8764947699, 46.5550803084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9295645603, 46.8257316077 ], [ -119.9387815067, 46.8353151904 ], [ -119.9378634013, 46.8432344905 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0431258874, 48.3481890608 ], [ -120.0362435031, 48.3607879462 ], [ -119.9809763065, 48.371736888 ], [ -119.9321337254, 48.3695684578 ], [ -119.9141758591, 48.3742424396 ], [ -119.8984187896, 48.3889279841 ], [ -119.8882430796, 48.3877996604 ], [ -119.8648010839, 48.3969338528 ], [ -119.8235449654, 48.3808931536 ], [ -119.784579131, 48.3798347197 ], [ -119.7497426686, 48.3660865683 ], [ -119.7287666335, 48.3671066996 ], [ -119.7065630171, 48.3627406411 ], [ -119.6993334105, 48.3467648995 ], [ -119.6680924655, 48.3230367393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4284944729, 47.078773705 ], [ -122.4350543494, 47.0839448876 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2689243165, 47.0679844678 ], [ -123.2525189659, 47.0789963959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1832082778, 47.2443206311 ], [ -121.1768999971, 47.2389448117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0378003229, 46.5491873736 ], [ -124.0373317269, 46.5672415916 ], [ -124.0265521556, 46.58429985 ], [ -124.0397283027, 46.5978816985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0440853494, 47.0525732949 ], [ -124.0505531099, 47.0566292363 ], [ -124.1082174747, 47.0560237504 ], [ -124.1531482322, 47.0433503074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5510696792, 47.5051569339 ], [ -122.5298400174, 47.5049019302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7212000555, 48.2626191576 ], [ -119.7049060391, 48.2782037899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472598635, 45.7589462816 ], [ -122.5473330202, 45.7703035237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3335812302, 48.341165856 ], [ -122.3326182621, 48.3411594036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2141719319, 47.6561755599 ], [ -120.1924709331, 47.6838275242 ], [ -120.1902327501, 47.6940236402 ], [ -120.1937187948, 47.6998534485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209191677, 48.9438094983 ], [ -122.3202363813, 48.949281296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799369192, 47.8125762494 ], [ -122.1754150379, 47.811547043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9591582091, 46.3481677178 ], [ -123.9555447472, 46.3504543 ], [ -123.949867913, 46.3732697997 ], [ -123.9531883892, 46.3784215418 ], [ -123.9495211568, 46.3843983473 ], [ -123.951959767, 46.4025025126 ], [ -123.938858253, 46.4032384098 ], [ -123.9346445705, 46.4158252959 ], [ -123.9242989372, 46.4190929551 ], [ -123.9160104721, 46.4297961412 ], [ -123.9058517568, 46.4293200912 ], [ -123.9003658782, 46.4347974243 ], [ -123.8906810599, 46.4350146931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9279330238, 46.4116100688 ], [ -122.9121178886, 46.4105521332 ], [ -122.8916600156, 46.4181629111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1801941156, 46.3452788522 ], [ -120.1791144823, 46.3455191654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9915686193, 47.2044466268 ], [ -121.9910780054, 47.2049216282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1333443494, 46.8263220149 ], [ -119.1331872975, 46.8409896084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282861482, 46.5773297724 ], [ -119.7248439418, 46.5683166901 ], [ -119.6902811291, 46.5463805823 ], [ -119.6790929472, 46.5263482722 ], [ -119.6634202728, 46.5132991887 ], [ -119.6166058605, 46.5023813913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.2826226664 ], [ -122.3178488457, 47.2898411383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2752765933, 47.1325238534 ], [ -119.2740001981, 47.1335512955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3214916682, 47.561289773 ], [ -122.320109391, 47.5692199392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1587898641, 46.2094963127 ], [ -119.1588364929, 46.2122195073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2804789478, 47.865772013 ], [ -122.2789804626, 47.867386825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2029385026, 46.1652739565 ], [ -119.1975722229, 46.1692293994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111387601, 47.6953642106 ], [ -117.4111538627, 47.7133751719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4727205134, 46.9377338042 ], [ -122.4716597285, 46.9377123473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6754402986, 48.8651910486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1379808146, 48.9172113904 ], [ -122.1432040179, 48.9173881457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3961715735, 47.919272726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9799410614, 46.666273563 ], [ -122.9784909888, 46.6723810975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2522187666, 47.3034827803 ], [ -122.2536584722, 47.3012935761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.3579998249 ], [ -122.0536764297, 47.3579952591 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3533511027, 47.7851161679 ], [ -122.3510483527, 47.7829431864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0689280259, 47.7241616056 ], [ -117.0476765238, 47.7333586658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9062715578, 46.9810823154 ], [ -123.9083860539, 46.9811017411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5440284191, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.2938519207, 47.2509469514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0395446219, 47.033662887 ], [ -122.0436590305, 47.0516887209 ], [ -122.0410310566, 47.0734128335 ], [ -122.0474726563, 47.0804529811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4122698552, 46.7012162608 ], [ -118.3441820755, 46.7361724356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9493878602, 47.6583110212 ], [ -117.9379417422, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5624136586, 45.6062101725 ], [ -122.5274842124, 45.5979967225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0548732503, 46.3323172772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940652218, 47.0777178732 ], [ -122.2939240773, 47.0800385113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8137272987, 47.9229521483 ], [ -122.7947100987, 47.9175473278 ], [ -122.7581000772, 47.8945415035 ], [ -122.7396338722, 47.8911395035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446210177, 47.7050638875 ], [ -122.3447339385, 47.7065541178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649931364, 46.8746110638 ], [ -117.3650011171, 46.8751003196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5521517487, 45.68208727 ], [ -122.5318979045, 45.6826849971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323106527, 46.3245338278 ], [ -122.7288442607, 46.3273755528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0340311094, 48.9278686212 ], [ -122.0227559288, 48.9270850303 ], [ -122.0075390683, 48.9193687906 ], [ -121.9849997675, 48.9008367068 ], [ -121.9450533075, 48.8896410913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7780253279, 48.1083589075 ], [ -122.7728740575, 48.109600754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3455787056, 47.7806814889 ], [ -122.3446909131, 47.7817536234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2490284682, 47.4830589416 ], [ -122.2460880266, 47.4822140792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8868033166, 47.5690968006 ], [ -121.887427285, 47.5718451267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6579787417, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8853301763, 47.9139270916 ], [ -122.8767342334, 47.9058643793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3420450241, 47.2135776972 ], [ -122.3138098088, 47.2044681618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3320582967, 47.6264826812 ], [ -119.2978771665, 47.6166084807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.5873771825 ], [ -117.4117450085, 47.6019773285 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3038736838, 46.4140405564 ], [ -120.2842524512, 46.4056644379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0470850116, 47.1062792018 ], [ -122.0554197251, 47.112433828 ], [ -122.0490317008, 47.1302879626 ], [ -122.0557206222, 47.1388187332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9908494983, 47.8657174136 ], [ -121.9791204594, 47.8613218296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3064146166, 48.2617164172 ], [ -124.2647934958, 48.2531691393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8412727199, 48.8719526263 ], [ -117.827799169, 48.8882487868 ], [ -117.8136926167, 48.8971177199 ], [ -117.8009917503, 48.899088371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1836148532, 48.0518643974 ], [ -122.1822932343, 48.0518738744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.5650153276 ], [ -122.6269686691, 47.5636496207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114600933, 45.7166372424 ], [ -120.4769148344, 45.7027025383 ], [ -120.4083086691, 45.705944172 ], [ -120.3209109655, 45.7192547167 ], [ -120.2633497092, 45.7339077039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5853439854, 48.3602159749 ], [ -119.5835757391, 48.3616001759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2084243459, 47.9195131157 ], [ -122.2074382827, 47.9188560677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9775744375, 48.130752286 ], [ -118.9762561497, 48.135096529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.6483371933 ], [ -119.1237574553, 47.6846698514 ], [ -118.9976415411, 47.6844844298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169944864, 47.1654459949 ], [ -120.8108589679, 47.1638387052 ], [ -120.8043961298, 47.1513524322 ], [ -120.7835732851, 47.1325177974 ], [ -120.7268634764, 47.1248477284 ], [ -120.7165569761, 47.1159003737 ], [ -120.7145912511, 47.1089655258 ], [ -120.691960834, 47.0992611593 ], [ -120.6235085123, 47.0432551254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1170200605, 48.2084489517 ], [ -122.1043084158, 48.222137855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6399303545, 47.813732472 ], [ -119.6380760967, 47.8121912953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4842297169, 47.3934848684 ], [ -119.4973048928, 47.4245366123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1069288247, 48.0063280675 ], [ -122.1080928359, 48.0132540479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.4720497684 ], [ -122.2159983682, 47.4737702544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3419659665, 47.6723961843 ], [ -117.3283026635, 47.6754413596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7132594935, 47.5239714664 ], [ -122.7066290132, 47.5247891631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1615462137, 48.7118489675 ], [ -121.1354894847, 48.7101414512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9535543166, 46.5073208118 ], [ -121.9542721665, 46.5167411946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9790026711, 46.3316725974 ], [ -119.9790994297, 46.3654277374 ], [ -119.970594385, 46.3753130226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714484595, 47.6491744077 ], [ -120.0634672167, 47.6491812786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9346988288, 47.1921997068 ], [ -121.9113034403, 47.1660060551 ], [ -121.9032240437, 47.1642334315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3627410114, 46.0415078207 ], [ -118.3464591984, 46.0510569216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0072302557, 47.1840617967 ], [ -120.9658761326, 47.1936165169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.6777404653 ], [ -123.7547734432, 46.6823312222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2090874074, 46.5114897943 ], [ -122.1827981053, 46.5094011436 ], [ -122.1563756705, 46.5189965757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127959962, 47.7339766531 ], [ -122.3100733649, 47.7339389204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.1422545472 ], [ -119.1719528856, 46.1538172927 ], [ -119.1495477506, 46.1541704221 ], [ -119.1242140583, 46.1493404787 ], [ -119.0668149366, 46.1268888879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2313987649, 47.3961663604 ], [ -122.2214808618, 47.4035987998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405321497, 48.0270703271 ], [ -122.7350638939, 48.0308244206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1515895973, 48.9460909964 ], [ -122.1536154484, 48.9498823783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059518963, 45.815636231 ], [ -122.7026610905, 45.8155477016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.7875196843 ], [ -117.2582087731, 47.7876105753 ], [ -117.2290446727, 47.8020950345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.4370383266 ], [ -122.60172507, 48.4418166919 ], [ -122.602890707, 48.4457098369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5414842419, 48.011987346 ], [ -122.5455047346, 48.0151911959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1304728709, 47.2420790028 ], [ -117.132009721, 47.2741237154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4998793264, 48.7103012557 ], [ -122.5020729469, 48.7159651259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1676525064, 46.7262385037 ], [ -117.1648061028, 46.7232723565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.3249495062, 47.760975014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179559351, 48.0780690922 ], [ -122.8150974014, 48.097207949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0197980383, 47.1768730848 ], [ -122.016253916, 47.1784207654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4266731536, 45.5798853327 ], [ -122.4170054578, 45.5751977401 ], [ -122.3962982687, 45.5785567586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4017832625, 47.9345882869 ], [ -124.3857593028, 47.9408546394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1925948411, 47.4136830468 ], [ -123.2179596822, 47.4327965248 ], [ -123.2105622712, 47.4554072848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5867415871, 47.0023957095 ], [ -120.5555025637, 46.9769598385 ], [ -120.5309634911, 46.9718013391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.7754696717 ], [ -119.1764946499, 46.7820725916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443830084, 48.2398913159 ], [ -122.3303084037, 48.2396939589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6292421446, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9764083197, 47.306520851 ], [ -117.9640727762, 47.3120619457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3330101537, 46.3081349737 ], [ -120.321048285, 46.3210895826 ], [ -120.3205033055, 46.3313990906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5767646402, 47.4862221857 ], [ -117.5759657586, 47.4868903381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1646271104, 47.7572105358 ], [ -122.1653460578, 47.754516793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0581786213, 47.8560176572 ], [ -120.0540259825, 47.8553267629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5294843284, 47.134748182 ], [ -122.5173391489, 47.1402583462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7774669653, 47.8678385583 ], [ -121.7488390649, 47.8671786834 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1680910014, 46.1910275512 ], [ -123.1527181306, 46.1932619624 ], [ -123.1210814025, 46.1900650322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2805998666, 47.756565837 ], [ -122.2764080485, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161178049, 47.7897600047 ], [ -122.3147914885, 47.7977880413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9454549934, 47.2361778754 ], [ -123.9311452495, 47.2437964738 ], [ -123.9182891747, 47.2672889111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.3028065567 ], [ -122.2443021409, 47.3027122504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.3206709228, 47.4319777068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7044893922, 48.8921934089 ], [ -122.7263837289, 48.8921522797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2615653431, 47.8313484071 ], [ -122.263270535, 47.832397759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.2729982561, 48.1220493345 ], [ -117.3034353999, 48.1517951643 ], [ -117.3014134068, 48.1726073855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4200144031, 48.1146846853 ], [ -123.4272112907, 48.1176420477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.8551455389 ], [ -122.4859559588, 48.8624202184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249495062, 47.760975014 ], [ -122.3218213184, 47.7696559418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981579128, 47.312895011 ], [ -122.2939939147, 47.3262355559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7130750207, 47.7604898372 ], [ -118.710341624, 47.7597380108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3725290396, 48.86403205 ], [ -117.3690791376, 48.8628154536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1105727106, 47.3639441595 ], [ -122.0987142773, 47.3694924181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.7424904094 ], [ -117.1724700156, 46.747419563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2307337316, 47.8178356076 ], [ -122.2240130735, 47.8097214635 ], [ -122.2089308735, 47.8094374485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.1671440586 ], [ -118.2328452333, 47.2083784844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6996522214, 47.5252936288 ], [ -122.7009258111, 47.5254077892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527645121, 45.6654147454 ], [ -122.5525923868, 45.6672693746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4210503145, 45.9241386589 ], [ -122.3807106015, 45.9242785728 ], [ -122.3796927801, 45.9278618295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.5255219108, 46.9585895789 ], [ -121.5323324952, 46.9469316686 ], [ -121.5310753106, 46.9309435343 ], [ -121.5357945169, 46.9156045355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9839763366, 47.4320430934 ], [ -121.9672362186, 47.4364490931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3656317125, 47.112475028 ], [ -118.3656748512, 47.1169194581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444902745, 47.2410622326 ], [ -122.335050748, 47.2440622941 ], [ -122.3298337748, 47.2573665594 ], [ -122.3081914375, 47.2842547986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5524895136, 46.6414946812 ], [ -118.5525255652, 46.6422285199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2657579644, 45.7111535352 ], [ -121.2472721676, 45.7217111035 ], [ -121.244181878, 45.7277440027 ], [ -121.2298688243, 45.729292887 ], [ -121.2314235606, 45.7372612846 ], [ -121.2216216322, 45.7415590831 ], [ -121.222903344, 45.7481715948 ], [ -121.2084891518, 45.7508996878 ], [ -121.2109028554, 45.7604785601 ], [ -121.2053953573, 45.7679900328 ], [ -121.2131840999, 45.7724150705 ], [ -121.207883874, 45.779291027 ], [ -121.2055702737, 45.7925570852 ], [ -121.1946499217, 45.795047038 ], [ -121.1698278704, 45.8122766544 ], [ -121.1531193879, 45.814953813 ], [ -121.1511457837, 45.8183340264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4029149867, 46.9715198957 ], [ -120.3533610061, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.2565740747, 46.9499582027 ], [ -120.2382852234, 46.9439637651 ], [ -120.1517837822, 46.9437951339 ], [ -120.1285297362, 46.9384099074 ], [ -120.0923317195, 46.9449475663 ], [ -120.0434710898, 46.9363097921 ], [ -119.9856684909, 46.9399239995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2878185998, 47.9245144886 ], [ -122.2845197408, 47.9244871101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3352626539, 47.4160570962 ], [ -122.335244606, 47.4239544628 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487379362, 46.3397717715 ], [ -117.0487788952, 46.3406500803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0136095347, 46.1478903111 ], [ -119.0241882947, 46.1498712277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.1034589548 ], [ -119.3094973132, 47.1058411746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398468351, 47.6445327832 ], [ -117.2398564282, 47.6462120527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6604109342, 45.7097319074 ], [ -121.6267665064, 45.7104802065 ], [ -121.60448404, 45.7208746315 ], [ -121.5608783461, 45.7230552598 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0826339712, 48.3485688069 ], [ -120.0782317267, 48.3464626059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3772473125, 46.1712612786 ], [ -123.3771418088, 46.1802763744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217992709, 46.5244556466 ], [ -117.7919594302, 46.5168198788 ], [ -117.7655768761, 46.4909720703 ], [ -117.738467898, 46.4823433881 ], [ -117.7038766685, 46.4643254572 ], [ -117.6880711236, 46.4627464745 ], [ -117.6625486269, 46.4746878646 ], [ -117.6287453364, 46.4780216163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9797708505, 46.6600221281 ], [ -122.978020353, 46.6605706614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126173187, 48.5117929838 ], [ -122.6126146998, 48.512615782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348569541, 47.1194809791 ], [ -122.4344162199, 47.1475294086 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.9256460771 ], [ -122.3028100586, 47.9298175191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9102593964, 47.6591206418 ], [ -121.90705395, 47.6776154772 ], [ -121.9203962911, 47.682901991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1816312316, 48.0344874481 ], [ -122.1798921353, 48.0395761426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.8363142697 ], [ -120.7921120527, 45.8483754133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5538906727, 46.3719036566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5830787762, 48.0658416901 ], [ -123.5764716685, 48.0656101736 ], [ -123.5586292146, 48.0819562696 ], [ -123.5590674702, 48.088831529 ], [ -123.542425415, 48.0963861688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2521475758, 47.7981298006 ], [ -124.2505086155, 47.804211862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3080765164, 47.2755685609 ], [ -122.3098328416, 47.2779256038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9658681376, 47.1991869215 ], [ -121.9637319287, 47.1991468956 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6596669668, 48.2863597414 ], [ -122.6578697003, 48.2871805041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5953819331, 48.34623453 ], [ -119.5910782183, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6031230684, 45.9389260974 ], [ -119.6018306923, 46.1025658531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343590195, 47.548548451 ], [ -122.3393798517, 47.5620616142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.0304443672 ], [ -122.0670005531, 48.0311344173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979507857, 46.9800944856 ], [ -122.2963449954, 47.0166678167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8467102726, 46.8590457137 ], [ -122.8283708435, 46.8574846811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7690696693, 48.1396769458 ], [ -123.7462246084, 48.1373562819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3858313632, 47.9827480539 ], [ -122.3921711474, 47.9866051994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0474726563, 47.0804529811 ], [ -122.0480328101, 47.0854558399 ], [ -122.0576029409, 47.0916817763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.3580988636 ], [ -122.1070219689, 47.3580601805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3499243544, 46.069095536 ], [ -118.3512395456, 46.0690998662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3245445805, 47.4367115543 ], [ -120.3225528424, 47.434276469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4552598905, 48.240034233 ], [ -122.4474690781, 48.2419384688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8167074126, 46.9748418645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1322464977, 48.9173156398 ], [ -122.1029841609, 48.9169970403 ], [ -122.0799094982, 48.9241796486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4469167382, 45.910167278 ], [ -122.4468006629, 45.9137020329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1130354822, 48.6245416722 ], [ -118.1227222823, 48.6274371967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9600764508, 46.9404487329 ], [ -119.9569337464, 46.9310727047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4671998581, 47.0097954879 ], [ -117.4906995248, 47.0151488088 ], [ -117.4989078005, 47.0330331256 ], [ -117.5122620252, 47.0407236956 ], [ -117.5240910538, 47.0622032228 ], [ -117.545125112, 47.08432072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.6557377147 ], [ -122.0706839733, 47.6560836936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3334887527, 46.9374674228 ], [ -117.3351658289, 46.9428080119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565486135, 45.7796107255 ], [ -122.605320177, 45.7801298015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0098989742, 48.071628269 ], [ -121.9900538253, 48.0834098562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4841720635, 46.9380070182 ], [ -122.4727205134, 46.9377338042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.4859005831 ], [ -121.5901063759, 48.4885682085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2162633519, 47.4784706076 ], [ -122.2170772731, 47.4799087614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4036573523, 47.9700998663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2525189659, 47.0789963959 ], [ -123.2330370728, 47.0832760605 ], [ -123.2217285778, 47.0961529866 ], [ -123.169892022, 47.0993233299 ], [ -123.1370118344, 47.1061275572 ], [ -123.1327675392, 47.1108867882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2753035387, 46.5534563356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1550212915, 47.0173446802 ], [ -124.1585629313, 47.0421430903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6633194815, 45.6889511168 ], [ -122.6587268784, 45.6977308437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4421245304, 48.1073235415 ], [ -123.4409541321, 48.1081108568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.9784278916 ], [ -118.5439795491, 46.9969936414 ], [ -118.4763407681, 47.0248252936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3888808965, 46.0238641947 ], [ -118.387709362, 46.0274510129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454890434, 47.7524905174 ], [ -122.3454920241, 47.7526354194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0149147028, 48.26670449 ], [ -122.0102677154, 48.2683045733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.7277580783 ], [ -121.4875027306, 45.727786525 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938519207, 47.2509469514 ], [ -122.2947362877, 47.2575680773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3307967988, 47.6088249044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9031362266, 46.3853907412 ], [ -122.8996061797, 46.3980707203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3098328416, 47.2779256038 ], [ -122.3113887255, 47.2800166221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8960512885, 46.9809985306 ], [ -123.8970765547, 46.9810040205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244634331, 45.6433255811 ], [ -122.4176943396, 45.6411075661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6513860232, 48.5041934528 ], [ -121.6421804262, 48.4953349997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2883273553, 48.8540652293 ], [ -122.2938609707, 48.8575655792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1485141514, 47.3218092821 ], [ -123.1336820514, 47.3186667549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9858303482, 47.7426828709 ], [ -121.9856625426, 47.7451686523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6232200849, 47.4699050473 ], [ -117.6134262665, 47.471353912 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155515131, 48.2809311397 ], [ -117.7179594226, 48.2854700064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2556345682, 48.8390461836 ], [ -122.2395042525, 48.8318235121 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075451443, 47.7371619655 ], [ -117.5075109583, 47.7416381565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9896415159, 47.2138839771 ], [ -121.9897117864, 47.2283165519 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814936102, 47.4639104191 ], [ -122.2737587614, 47.465095805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4221853179, 48.5654425158 ], [ -122.4228327812, 48.5993312853 ], [ -122.4314758594, 48.6044132215 ], [ -122.4393550103, 48.6177939656 ], [ -122.4424111234, 48.6153877975 ], [ -122.4480779306, 48.6237425278 ], [ -122.4627144951, 48.6265007902 ], [ -122.4898137335, 48.6488973023 ], [ -122.4921519068, 48.6617064112 ], [ -122.4852398362, 48.6680694691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6314890754, 47.5049287108 ], [ -122.624429651, 47.504849437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7497223484, 45.9177650679 ], [ -122.7534494161, 45.9236451726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942188172, 47.1497279489 ], [ -119.3118431702, 47.1567249837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.2007870052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924416665, 47.7355851423 ], [ -122.2802973866, 47.7520027511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.9794305969 ], [ -122.185861118, 47.9794731965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7207360254, 48.0268110537 ], [ -122.697769073, 48.018281475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8619828359, 46.8516552572 ], [ -122.8586957254, 46.8532935721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0971571723, 47.1818128402 ], [ -123.0973376697, 47.1826544128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4202576394, 46.4360420895 ], [ -117.4021567544, 46.4441973722 ], [ -117.3351453534, 46.4329973878 ], [ -117.3236818665, 46.4364355288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791170661, 47.1993968717 ], [ -121.9658681376, 47.1991869215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.6430952782 ], [ -117.6686114771, 47.6429513017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6287660452, 47.5891210126 ], [ -120.6139689585, 47.5807454549 ], [ -120.6128019629, 47.5735910457 ], [ -120.605716968, 47.5674428282 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3105284378, 46.0417807035 ], [ -122.305684987, 46.0490596047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3662844632, 46.1972420441 ], [ -123.3633339712, 46.1950290192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0342099984, 47.1595496539 ], [ -122.0197980383, 47.1768730848 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1205538564, 48.5260765992 ], [ -122.1053402812, 48.5269357635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7266598296, 48.9068699571 ], [ -122.7265048358, 48.9175984132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4711841566, 46.2575715157 ], [ -119.4254807685, 46.2734329699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497942054, 48.0321149063 ], [ -117.343635146, 48.0474039493 ], [ -117.3442020338, 48.061754727 ], [ -117.3241634322, 48.07997589 ], [ -117.3249905541, 48.0919186256 ], [ -117.3006048247, 48.0985048663 ], [ -117.2841686904, 48.0967467483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0044486257, 48.0205093633 ], [ -122.9958042256, 48.0240557605 ], [ -122.9785167145, 48.046585562 ], [ -122.9614934821, 48.0502939774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3627497487, 48.1085599202 ], [ -123.3601967875, 48.1093444067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023983763, 46.9678877123 ], [ -123.8023974793, 46.9687249499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.8181848035 ], [ -122.3049767143, 48.8323888064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0482198121, 46.7995487771 ], [ -119.0141231869, 46.7946592408 ], [ -118.8990911424, 46.7940102212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.2007870052 ], [ -123.0997120272, 47.2056969535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0735179834, 48.3417951846 ], [ -120.0782317267, 48.3464626059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5935764168, 47.5639483159 ], [ -117.5935996573, 47.5661401873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1838778814, 47.174736546 ], [ -122.1691805082, 47.1698966439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6926355567, 47.6632523312 ], [ -122.6929889274, 47.661397052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.8601052658 ], [ -117.6601956757, 47.887269221 ], [ -117.6600246954, 47.8932611587 ], [ -117.6685724818, 47.8943422934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693763413, 45.6325719706 ], [ -122.6704395067, 45.6325772078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.2349767545 ], [ -122.4919517544, 47.2348877891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5548980955, 47.3064820526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4631661079, 48.9646150404 ], [ -122.4519714718, 48.9646510378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1466151724, 46.2179686599 ], [ -119.1457324057, 46.2175957254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9040186992, 47.1886262402 ], [ -120.9097237692, 47.1901067626 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430545767, 47.9779093221 ], [ -122.1355017102, 47.9728688256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6822629215, 47.5797908647 ], [ -117.675621899, 47.5794106007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2630218055, 47.6371835441 ], [ -119.2633718554, 47.6383063062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7760452677, 48.928358074 ], [ -117.7722499943, 48.9449959503 ], [ -117.7903100301, 48.9444725584 ], [ -117.7934587589, 48.9555653693 ], [ -117.8035781755, 48.9610755132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.3753130226 ], [ -119.9667501531, 46.379458651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6802674022, 48.0089902272 ], [ -119.6854728087, 48.0097116078 ], [ -119.6910758978, 48.0187094102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6405403984, 46.3349412244 ], [ -123.6384906851, 46.3352078778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4310307746, 48.5268378739 ], [ -121.4239720128, 48.5491341646 ], [ -121.4107258263, 48.5644580515 ], [ -121.4024787094, 48.5831365172 ], [ -121.3759759036, 48.5918905668 ], [ -121.3623196615, 48.6062560597 ], [ -121.3610583314, 48.6145142947 ], [ -121.3232006326, 48.6329219791 ], [ -121.3028444423, 48.6504520462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2950977171, 47.0475551508 ], [ -122.294801654, 47.0530641068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.0439992941 ], [ -123.2864367852, 47.0541062901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8196628775, 48.04931957 ], [ -122.8179486123, 48.0711563886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8249346802, 46.9706520307 ], [ -123.8258142714, 46.9714747617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5632686852, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2057386717, 47.9819494434 ], [ -122.212960739, 47.9820295137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6987076385, 48.1034031892 ], [ -119.6853721482, 48.1040204491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1043084158, 48.222137855 ], [ -122.0696796026, 48.23396758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1636458554, 47.8796014922 ], [ -122.1608618478, 47.8814089364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5232713274, 47.6536299928 ], [ -122.5320368544, 47.6720530531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5213936247, 48.4084338469 ], [ -119.5232962062, 48.4094700138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339661209, 47.2054048624 ], [ -122.4339668077, 47.2064012989 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5851623994, 47.0923339805 ], [ -121.567425209, 47.0403791961 ], [ -121.5551957128, 47.0303667214 ], [ -121.5340919383, 47.0225756397 ], [ -121.5276445988, 47.0128757583 ], [ -121.5359529209, 46.980696515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.5681320318 ], [ -117.1454454815, 46.5721918556 ], [ -117.1570846795, 46.5836610466 ], [ -117.172901762, 46.5919223495 ], [ -117.1607245203, 46.616443833 ], [ -117.1875760408, 46.6478028536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.5319334082 ], [ -122.3347023936, 47.5375284994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.6174517277 ], [ -118.6526722344, 48.6000038884 ], [ -118.6443296317, 48.5973721967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9422723546, 47.9168139511 ], [ -118.9115553996, 47.9213656063 ], [ -118.8633547045, 47.9011540071 ], [ -118.8537392978, 47.8838687759 ], [ -118.7238512322, 47.772533091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1327675392, 47.1108867882 ], [ -123.1050673886, 47.1296410636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5283321717, 46.937764175 ], [ -122.4923909755, 46.9379773099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7671904335, 46.6744470342 ], [ -123.7615325079, 46.6777404653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4871230724, 46.2579063443 ], [ -119.4873304151, 46.2607553775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5530762786, 48.8225160709 ], [ -122.573687598, 48.8448314506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5234705645, 46.6619857363 ], [ -120.5197381527, 46.6681259529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3320582967, 47.6264826812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511293212, 47.5655459942 ], [ -122.6475719156, 47.5652581761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3294181035, 46.960126358 ], [ -123.3110133365, 46.9385525926 ], [ -123.2898816838, 46.9008637133 ], [ -123.2480621901, 46.8458842903 ], [ -123.2399893883, 46.8414422249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1587937139, 48.2389534668 ], [ -122.1669055996, 48.2550164627 ], [ -122.1666333463, 48.2648550145 ], [ -122.1709978885, 48.2679601252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0544043707, 46.3526539161 ], [ -124.0536804079, 46.3675828583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.7408549752, 45.9111701973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5023027759, 48.4022781572 ], [ -119.5084842224, 48.4031367389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4828848568, 45.7225399831 ], [ -121.4677352564, 45.7152835978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6621267697, 47.5713620353 ], [ -122.6565626099, 47.5703304581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7437635985, 46.7153016927 ], [ -123.7406630722, 46.7253864815 ], [ -123.7479211083, 46.7335674173 ], [ -123.7439044996, 46.7393430715 ], [ -123.7547337825, 46.760574447 ], [ -123.7406552867, 46.7781576345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.7209092456 ], [ -117.1830985465, 46.7284162635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5578353614, 46.6431253994 ], [ -118.5579970591, 46.6445599995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395528608, 48.1829538969 ], [ -117.0395862835, 48.1810552137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.6021829664 ], [ -121.668828194, 46.6101927227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674967694, 46.9781722496 ], [ -121.1273817826, 46.9810074692 ], [ -121.1143805148, 46.9870756134 ], [ -121.0946681442, 46.989267303 ], [ -121.0913821846, 46.9856181514 ], [ -121.0946111848, 46.9703427133 ], [ -121.0472905443, 46.9283246192 ], [ -121.0467429429, 46.9201906131 ], [ -121.0000086641, 46.8921406888 ], [ -120.9874184029, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6575921778, 48.2930446922 ], [ -122.6550097756, 48.2961690914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3626574045, 47.8153679549 ], [ -119.3622628388, 47.8600857655 ], [ -119.3707232114, 47.8738309699 ], [ -119.3726440441, 47.9045679707 ], [ -119.3923586085, 47.9188641837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174443607, 48.891747907 ], [ -122.6385290374, 48.8917094095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6834705983, 47.5695963871 ], [ -122.6731435739, 47.568179933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8356431118, 47.2340276704 ], [ -119.8320237301, 47.2340352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3255247068, 46.0817350589 ], [ -118.3043819814, 46.0811339747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2976491615, 46.57004764 ], [ -123.2963177918, 46.576533839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8895230263, 46.980961881 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5589351838, 47.5953615292 ], [ -117.4957532497, 47.6240627613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217148556, 46.5248555558 ], [ -117.8138228982, 46.5221815136 ], [ -117.7891868451, 46.5254691689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1974936697, 46.8114235517 ], [ -119.1737083937, 46.8115310782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2127462556, 47.4576868663 ], [ -123.2163741784, 47.4625535041 ], [ -123.2105495803, 47.4764348581 ], [ -123.2103050963, 47.4923049652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3052567416, 47.5434675701 ], [ -122.3166355729, 47.5517627468 ], [ -122.3214916682, 47.561289773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9354180565, 46.9596763245 ], [ -122.9303556413, 46.9761338415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7437352957, 48.0253259826 ], [ -122.7405321497, 48.0270703271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8857715571, 46.9892213843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966981396, 47.1766290629 ], [ -122.2848476708, 47.1815733492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730012011, 47.2221634757 ], [ -117.073000361, 47.2230431561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8792825759, 47.6694839326 ], [ -117.8779176066, 47.6694929404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501760455, 46.4755815152 ], [ -117.0698189183, 46.4861909917 ], [ -117.0774650496, 46.4977862967 ], [ -117.0874842611, 46.5393952983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8141567727, 46.974248551 ], [ -123.8110700669, 46.9732623777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8272576766, 47.106307188 ], [ -119.7624088379, 47.1468189921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.8926430173, 47.1852194677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1799080975, 46.7296299262 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3097289325, 46.3650774694 ], [ -120.2518435554, 46.3315396164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4978200864, 48.7835877334 ], [ -122.5056560072, 48.7850058356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.181854755, 46.7297051348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3634161418, 47.7906222233 ], [ -122.3582161004, 47.7917297211 ], [ -122.3533511027, 47.7851161679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8889929685, 47.1441925406 ], [ -123.879496601, 47.1617156776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4019360634, 47.239469308 ], [ -122.3969871323, 47.2375843118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3567064191, 47.7812867521 ], [ -117.3531916555, 47.7872080515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7114277659, 47.3745220756 ], [ -122.6947937623, 47.381239063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3760304765, 48.891834109 ], [ -122.3745657943, 48.904788295 ], [ -122.3585353638, 48.9093392192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2772565713, 46.772497546 ], [ -117.3083636026, 46.7884099837 ], [ -117.3280662082, 46.8301233694 ], [ -117.3384016743, 46.8380692715 ], [ -117.339143604, 46.8504355115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3787722403, 47.8124279259 ], [ -122.3721262643, 47.8177762685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0878490265, 46.7317943321 ], [ -117.0573687, 46.739057813 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3370509632, 48.503991479 ], [ -122.3426003903, 48.5134790031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6706352632, 48.6541388326 ], [ -118.6655296037, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.6640345732, 48.6790336908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1536154484, 48.9498823783 ], [ -122.163014477, 48.9673328212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6008744257, 45.6874395737 ], [ -122.6403863597, 45.7125037539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768951726, 46.9105822359 ], [ -117.0769824862, 46.9108621348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0155804532, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.0728624554, 48.6070846621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1895052521, 46.2676902573 ], [ -119.1705524126, 46.261830974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112982729, 47.739633774 ], [ -117.4104239582, 47.7407128065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.7699869803 ], [ -122.2838095032, 47.7600084566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4426701243, 48.701328551 ], [ -119.4421071548, 48.7019949179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6965194533, 48.0612450071 ], [ -122.7017450146, 48.0668212303 ], [ -122.7018643165, 48.078607276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753761557, 48.5902114462 ], [ -118.0753566144, 48.5985793743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1287547466, 46.6004969457 ], [ -123.1262630128, 46.6018315229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064752256, 47.7910831404 ], [ -122.2236011158, 47.8003896824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9166346542, 46.6972957966 ], [ -119.9169607763, 46.7378528943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8104269171, 46.3376105866 ], [ -123.8156493827, 46.3543833279 ], [ -123.8118111203, 46.365574241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5963933831, 47.1027062195 ], [ -122.5793216715, 47.1078928315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6205066365, 48.0600760065 ], [ -117.630503668, 48.080995459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8173067572, 46.9516445414 ], [ -123.8119261196, 46.9521234492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4231498311, 47.236217271 ], [ -122.4176442321, 47.2382129228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8122602395, 45.8229926828 ], [ -120.8081064714, 45.8245819424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.5474855069, 45.7852017578 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260465116, 48.1503593139 ], [ -117.7257805786, 48.1562291862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7518491007, 46.203691501 ], [ -119.7486010675, 46.2060790676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2688269551, 48.0803462317 ], [ -124.2633119054, 48.0859667646 ], [ -124.2672293, 48.093890668 ], [ -124.2620344907, 48.1020870424 ], [ -124.2509273881, 48.1119690255 ], [ -124.2237423366, 48.1213082047 ], [ -124.2125310381, 48.1338196202 ], [ -124.2202931828, 48.1428270627 ], [ -124.2160466622, 48.1476159031 ], [ -124.2206359525, 48.1539900319 ], [ -124.2077081318, 48.1578243181 ], [ -124.2046323962, 48.1671867394 ], [ -124.2103459096, 48.1692167689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148836023, 47.8388580147 ], [ -120.0148285272, 47.8398314423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3091430991, 47.7743773963 ], [ -122.3064040791, 47.7725385808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4558097511, 46.5163581409 ], [ -120.4495337758, 46.5039654868 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7541782353, 47.0644445369 ], [ -122.7253740372, 47.0679296901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6328542511, 46.9587926513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104336223, 48.6904887705 ], [ -117.4135449594, 48.7213796222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9735363079, 47.8450645396 ], [ -119.9500747094, 47.8613131638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.5269357635 ], [ -122.0611804157, 48.5291856242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3771647615, 48.8041341038 ], [ -122.3506314591, 48.8036905292 ], [ -122.3437891671, 48.8073210548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1224530293, 48.3673427778 ], [ -120.1210178754, 48.3612124716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.0864775034 ], [ -118.2564997683, 46.0930373464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4880037429, 46.6075314018 ], [ -120.4798850922, 46.5977376972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147576786, 47.3880434547 ], [ -122.8923661472, 47.4040437156 ], [ -122.8777100282, 47.4088016187 ], [ -122.8605402927, 47.4233280775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4690438843, 47.3852988959 ], [ -119.426913667, 47.3955134929 ], [ -119.3873405431, 47.4145207367 ], [ -119.3006349454, 47.4249031098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1212539974, 47.0877998117 ], [ -119.0508055026, 47.0857677636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8883863985, 46.9801777553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.1410473188, 47.6647648556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1608618478, 47.8814089364 ], [ -122.1485845591, 47.8886416262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537824167, 46.7366928914 ], [ -122.9538231518, 46.7487811507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1331872975, 46.8409896084 ], [ -119.1331481081, 46.886685746 ], [ -119.1384722057, 46.892262265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288340771, 47.6158812787 ], [ -122.6288682299, 47.6213371579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709737986, 48.4626357523 ], [ -122.5588999199, 48.4598549429 ], [ -122.5406484136, 48.4629524261 ], [ -122.4987396272, 48.4522633023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143482637, 48.2063281505 ], [ -122.2183218859, 48.2166037115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.3814692054 ], [ -119.4690438843, 47.3852988959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.4748414789 ], [ -122.3277374047, 47.4792708197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.3049498032, 47.6441648565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5543923163, 48.3214625286 ], [ -121.5500581076, 48.3318886554 ], [ -121.5514534858, 48.3437440639 ], [ -121.540112692, 48.346215164 ], [ -121.5399069254, 48.366375817 ], [ -121.5420248636, 48.372287589 ], [ -121.5544254592, 48.3801274364 ], [ -121.5500133803, 48.3934668631 ], [ -121.5568722682, 48.4135875649 ], [ -121.566872919, 48.4288842168 ], [ -121.5917001012, 48.4513276442 ], [ -121.5855182759, 48.4609275735 ], [ -121.5934495363, 48.4859005831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7345700167, 47.1169266042 ], [ -117.7429251101, 47.1174596066 ], [ -117.7549057664, 47.1257164324 ], [ -117.8175092803, 47.1110932633 ], [ -117.8229123252, 47.1144427701 ], [ -117.8293478123, 47.1355148253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0677532163, 46.2468045298 ], [ -119.046642025, 46.2322064702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1248280167, 47.5008402591 ], [ -122.1219053901, 47.5005304078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133014011, 47.3166524228 ], [ -122.3119901397, 47.333987546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343743094, 47.5297826683 ], [ -122.334499835, 47.5319334082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9795868328, 47.9655777499 ], [ -118.9796978543, 47.9684303804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854576502, 47.9480859363 ], [ -124.3854471652, 47.9489554101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859559588, 48.8624202184 ], [ -122.4856871492, 48.8695370939 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3455588826, 48.5553675301 ], [ -117.3064321854, 48.5419409683 ], [ -117.3028045022, 48.5360504548 ], [ -117.3046502589, 48.5270311029 ], [ -117.2785248998, 48.5118456191 ], [ -117.2690246326, 48.4992561871 ], [ -117.269265238, 48.4873224193 ], [ -117.2758540173, 48.4791546803 ], [ -117.320541457, 48.4685163989 ], [ -117.3259425988, 48.4587617195 ], [ -117.3237809205, 48.4393180608 ], [ -117.3166271068, 48.4252140684 ], [ -117.3190973569, 48.4189460662 ], [ -117.3131204854, 48.4113756271 ], [ -117.3146309013, 48.3944502706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4980484153, 47.7985063825 ], [ -122.497295586, 47.7975770117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4354637214, 46.5745924593 ], [ -120.3933243152, 46.5563517375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.3953989959 ], [ -122.3309115081, 48.4060252156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6448015914, 47.5019616092 ], [ -122.6439469399, 47.5027845218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3721262643, 47.8177762685 ], [ -122.3673070896, 47.8179585281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.8777990754 ], [ -122.1636458554, 47.8796014922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4272112907, 48.1176420477 ], [ -123.4309020008, 48.1191579416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5038218235, 48.1027548736 ], [ -123.4685453921, 48.1061906064 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.2399283143 ], [ -119.4710716591, 47.2737539701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2904509822, 45.6962586457 ], [ -121.2796331186, 45.6906882361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.9366422092 ], [ -122.3579343412, 46.9802243895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4955876896, 47.7975252491 ], [ -122.4964887302, 47.7981317254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9342408253, 46.9527666325 ], [ -122.9357154749, 46.9527589941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4625406534, 48.1078996274 ], [ -123.4595741397, 48.1100676892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3238832466, 47.6326989707 ], [ -122.3226285715, 47.6386200098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3367493104, 48.4846390125 ], [ -122.3385001064, 48.4862281599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.0998571166 ], [ -117.2193213409, 48.1133107789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2731213214, 47.6686054126 ], [ -122.2710615487, 47.6700439942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3610664207, 47.2534566306 ], [ -117.3705856786, 47.2680751418 ], [ -117.3612540092, 47.2908793053 ], [ -117.390138784, 47.3103620664 ], [ -117.3885977334, 47.3194727622 ], [ -117.3806624631, 47.3300797576 ], [ -117.3806731936, 47.3606575442 ], [ -117.3913392846, 47.3891157864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.4544018047 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9943545429, 46.5674942159 ], [ -119.0040609275, 46.5740844587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6659555363, 45.631898547 ], [ -122.6693763413, 45.6325719706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4657592482, 48.106460575 ], [ -123.4611381511, 48.1069352467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4999178784, 48.7176529255 ], [ -122.486331208, 48.7148245953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133672387, 48.3723792401 ], [ -122.2296735711, 48.3852564968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829723721, 48.1524164911 ], [ -122.1722962078, 48.1522897092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1670085036, 46.1917196627 ], [ -119.1591587709, 46.198638478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1570442192, 47.2803282022 ], [ -123.1457654709, 47.2521210376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1738772879, 47.1121270494 ], [ -124.1696146509, 47.1148944779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.5754644577, 47.0918016783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2484756693, 47.9000726144 ], [ -122.2446706564, 47.9041485453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329070414, 47.5726953913 ], [ -122.6329554592, 47.5769885266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356088428, 48.4755713741 ], [ -122.3355650196, 48.4778597679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6855035616, 48.6448826019 ], [ -118.667711126, 48.6174517277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9056916194, 46.2824568896 ], [ -122.9035782953, 46.2838610024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4586693868, 47.7154118844 ], [ -117.4605875174, 47.7154071362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2704255183, 46.9127594447 ], [ -117.2498341606, 46.9246457969 ], [ -117.2343310278, 46.9253099478 ], [ -117.2205297119, 46.9331066712 ], [ -117.1593520644, 46.9417057905 ], [ -117.1360809196, 46.9326332476 ], [ -117.1104760713, 46.9284629569 ], [ -117.1027698079, 46.9174522008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7009258111, 47.5254077892 ], [ -122.7045017857, 47.525661698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1508809942, 47.779603159 ], [ -122.1387763237, 47.7848706123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6910758978, 48.0187094102 ], [ -119.6976870253, 48.0311183966 ], [ -119.6937254895, 48.039290469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472711494, 47.6539867202 ], [ -122.3472698982, 47.6642399557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8753021958, 47.036689104 ], [ -122.8593818839, 47.0403533748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2527825057, 48.5028862443 ], [ -122.247228536, 48.5049651039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6250128565, 47.5624369619 ], [ -122.629614867, 47.5650234096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3358813394, 47.8214508721 ], [ -122.3250529195, 47.8213297085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8360736283, 46.4372194695 ], [ -122.8140314886, 46.4381206875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0422413047, 46.4742309777 ], [ -117.0475174649, 46.4744614231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0515162551, 47.3916599978 ], [ -122.0448319243, 47.3997061319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6587268784, 45.6977308437 ], [ -122.6529868883, 45.7094550401 ], [ -122.6545494275, 45.7173002417 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3476245074, 48.0559531272 ], [ -124.3376838924, 48.0547329997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205390391, 46.3386430967 ], [ -120.3201947507, 46.3605182529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742071117, 45.781370643 ], [ -122.6672617257, 45.779820175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.7599890779 ], [ -117.1644381544, 46.7697549283 ], [ -117.1514171761, 46.7802864678 ], [ -117.147368489, 46.7904698955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0273681586, 46.4021888563 ], [ -122.9987012021, 46.4136116155 ], [ -122.9750403018, 46.4047023004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5468403017, 46.9927649775 ], [ -122.545777661, 46.9961770865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6943596205, 47.1892246234 ], [ -119.6860494601, 47.1944007257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7709004569, 45.8615514769 ], [ -120.7561380643, 45.871859525 ], [ -120.7488870427, 45.8832756597 ], [ -120.7124593609, 45.8992628538 ], [ -120.7115773862, 45.9077401324 ], [ -120.7006339016, 45.9221097398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5853439854, 48.3602159749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150855528, 47.8211917901 ], [ -122.2945690698, 47.8468435945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6115664545, 47.5340329479 ], [ -122.6096358266, 47.5340033861 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.7848706123 ], [ -122.1351159494, 47.7942908882 ], [ -122.1160881425, 47.7949538411 ], [ -122.1114164195, 47.8021101024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649675878, 46.8759309573 ], [ -117.3649034503, 46.8772762302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5274842124, 45.5979967225 ], [ -122.5158228483, 45.5949143216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.0719970341, 47.4423650536 ], [ -122.0796037239, 47.4579919468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.5707549865 ], [ -122.6621267697, 47.5713620353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201947507, 46.3605182529 ], [ -120.3229788958, 46.3718043346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0721004876, 47.859499395 ], [ -120.0581786213, 47.8560176572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3248167693, 47.4409909149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3283026635, 47.6754413596 ], [ -117.3248627173, 47.6754104751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.5539369573 ], [ -122.6552199252, 47.5591158808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396318808, 47.6716727121 ], [ -117.2395845311, 47.6725795615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.9022648982 ], [ -124.1110123877, 46.9040127541 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.063917083, 46.4199191264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3667991767, 47.790544377 ], [ -122.3634161418, 47.7906222233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4468006629, 45.9137020329 ], [ -122.4272617564, 45.9171272208 ], [ -122.4211179737, 45.9198035212 ], [ -122.4210503145, 45.9241386589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2777833248, 47.1316521718 ], [ -119.2752765933, 47.1325238534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.3360585763 ], [ -120.5660395573, 47.3455525678 ], [ -120.5715152011, 47.3505855892 ], [ -120.563363344, 47.3591576642 ], [ -120.5767497151, 47.3638196119 ], [ -120.5942345354, 47.3816799159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9162959671, 47.6372969855 ], [ -121.9163495454, 47.639117271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4873304151, 46.2607553775 ], [ -119.4876083086, 46.2698315286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5679132072, 47.5937450378 ], [ -117.5675988781, 47.5933681002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8039379118, 45.8264664938 ], [ -120.801473643, 45.8363142697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9949382898, 46.1422801927 ], [ -122.9876098497, 46.1378429021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443533309, 48.4699161341 ], [ -122.3407517853, 48.4711363705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3385001064, 48.4862281599 ], [ -122.3482490253, 48.4942122629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8201543029, 47.4545979618 ], [ -122.8042667838, 47.4677635998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8800763033, 46.5339933138 ], [ -119.8278954802, 46.5493399359 ], [ -119.791445814, 46.569212579 ], [ -119.7282935394, 46.5780534778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4597485486, 48.7724340267 ], [ -122.4491781665, 48.7760427514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159507876, 47.2584346491 ], [ -122.5159443381, 47.2599591042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886549992, 47.644785095 ], [ -122.2319230755, 47.6360628163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2638528237, 47.7582985129 ], [ -122.2518648885, 47.7585697854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2366664186, 47.1398909033 ], [ -122.2373000311, 47.1324526387 ], [ -122.2292381501, 47.1179506292 ], [ -122.2143535286, 47.1036076158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.6820267252 ], [ -123.7896436506, 46.6852246296 ], [ -123.8114502592, 46.6993848447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4321127257, 47.2333231589 ], [ -122.4318739382, 47.234680353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.7713428245 ], [ -122.4597485486, 48.7724340267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991152602, 47.3325467605 ], [ -118.6953209574, 47.3333178275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9796119878, 48.0909954069 ], [ -121.9615776667, 48.0935920542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6795231234, 47.662857905 ], [ -122.6888093798, 47.6646633668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8344961907, 47.4399094921 ], [ -122.8302534091, 47.4465115389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1566237324, 47.4685018085 ], [ -122.1886206387, 47.478462399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3014134068, 48.1726073855 ], [ -117.3015320727, 48.1814415097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2512032791, 47.0452823163 ], [ -123.2311640554, 47.0504387055 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.0978930871, 47.6573058522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965384457, 47.7337970814 ], [ -122.2924586232, 47.7337786904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975233079, 46.7384199394 ], [ -119.189779697, 46.7381439938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1791144823, 46.3455191654 ], [ -120.1776037055, 46.3458600603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7523454393, 48.9971567896 ], [ -122.7520472898, 48.9978652764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5090316719, 46.6767027963 ], [ -120.4872923805, 46.6801245233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.6618427629 ], [ -117.3871932194, 47.6619140206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7461434353, 45.8153622443 ], [ -122.7448931286, 45.8153696587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.6264046411 ], [ -122.6664314526, 45.6289361692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1105630412, 46.2485229568 ], [ -119.0939413826, 46.2498784583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2231765605, 47.9226576514 ], [ -122.2125640998, 47.9215909937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.4885408949 ], [ -124.1139224833, 47.4962623066 ], [ -124.1614780369, 47.506903678 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2059547126, 46.9847954432 ], [ -119.1179298675, 46.9846708775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3985480747, 45.5841573262 ], [ -122.3855189782, 45.5821082164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2688269551, 48.0803462317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8763595467, 47.4318329878 ], [ -122.8631442072, 47.4386387656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2049625221, 48.8611827903 ], [ -118.205892243, 48.8650299972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3855106235, 47.9441729563 ], [ -124.3854821185, 47.9460570961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3912683196, 47.0040697768 ], [ -123.3875067629, 47.0051795465 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.0095725516 ], [ -122.8897294603, 47.9923528191 ], [ -122.8856837159, 47.9870204643 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455904637, 47.1960629254 ], [ -122.238361396, 47.1927344595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3309115081, 48.4060252156 ], [ -122.3314940653, 48.4135964059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9910780054, 47.2049216282 ], [ -121.9896415159, 47.2138839771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4351159777, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0320320146, 45.6195630227 ], [ -122.0246218752, 45.6254040131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1390119706, 47.3580153681 ], [ -122.1340104468, 47.3579773429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.5794106007 ], [ -117.6687451729, 47.5798764344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5608783461, 45.7230552598 ], [ -121.5511752614, 45.7278450651 ], [ -121.524779511, 45.7292158488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289013941, 47.6322348249 ], [ -122.6293597294, 47.645556277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3620580135, 46.0686467543 ], [ -118.3697805104, 46.0698478744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7830173029, 47.1120217119 ], [ -120.7666038672, 47.1063778563 ], [ -120.7599445753, 47.0960137622 ], [ -120.7451378467, 47.0902835956 ], [ -120.7388834285, 47.0833211577 ], [ -120.6585157988, 47.0514934706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1722962078, 48.1522897092 ], [ -122.1616167206, 48.1521235496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8857327674, 46.9809356695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9825252207, 47.2092344825 ], [ -120.9931524128, 47.222746832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8840388543, 46.6627688809 ], [ -118.8714816681, 46.6542060226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3978963103, 48.1061923633 ], [ -123.3759552613, 48.1048555471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135771849, 48.7285818258 ], [ -117.4135602609, 48.7325006416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070289838, 47.914243946 ], [ -122.2062759693, 47.9180096463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6064434153, 48.1635594746 ], [ -122.609133392, 48.1712861629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9095592146, 47.3467924075 ], [ -123.9114875209, 47.3617916606 ], [ -123.9025771354, 47.3722950666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282727742, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2802973866, 47.7520027511 ], [ -122.2764080485, 47.7535766576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2953114868, 47.0439310162 ], [ -122.2950977171, 47.0475551508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0994911249, 46.8588806371 ], [ -124.0614923955, 46.8642889165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.5709737986, 48.4626357523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4876083086, 46.2698315286 ], [ -119.4903066566, 46.2723445732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1227222823, 48.6274371967 ], [ -118.1196487386, 48.6350042505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078191986, 47.09966335 ], [ -122.2024622981, 47.0953255419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4036102525, 45.6993830974 ], [ -121.3949453382, 45.6982231146 ], [ -121.3829577285, 45.705115008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6937254895, 48.039290469 ], [ -119.6904472484, 48.0614812616 ], [ -119.7191866099, 48.0659006898 ], [ -119.7247200058, 48.0764391164 ], [ -119.7432426466, 48.0767810116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6107084925, 45.647880158 ], [ -122.5974622536, 45.6497283577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9375719089, 46.7539095544 ], [ -122.9232462415, 46.7732075734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6690587997, 47.7496337056 ], [ -122.6513721365, 47.7650327884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.3088525506 ], [ -124.0433848336, 46.3088545203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4499029188, 48.52736977 ], [ -121.4310307746, 48.5268378739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7149150326, 47.8093423824 ], [ -120.7169624148, 47.8114972148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1599270282, 46.2701832514 ], [ -118.1547729075, 46.2701299684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2019957815, 47.9271375522 ], [ -122.1958275845, 47.933021241 ], [ -122.1992457496, 47.9616091692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6494078234, 47.8021122484 ], [ -122.6433193726, 47.8181068479 ], [ -122.6300911575, 47.828750694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3695963283, 46.2371507033 ], [ -118.3397268843, 46.2877259981 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3579343412, 46.9802243895 ], [ -122.3592526243, 46.9990763609 ], [ -122.3689169614, 47.0093696581 ], [ -122.3694769065, 47.0202996688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430161763, 48.0536913707 ], [ -122.140842334, 48.0536557708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.1998163094, 46.3311315335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2000543534, 47.5787190739 ], [ -122.1810983468, 47.5797602872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8511888124, 46.6508402423 ], [ -118.8083617087, 46.6349016892 ], [ -118.7623864594, 46.6345593673 ], [ -118.7266393872, 46.6292584921 ], [ -118.7090644842, 46.6200739782 ], [ -118.6519632501, 46.6233243007 ], [ -118.6414940671, 46.631430572 ], [ -118.6195197634, 46.6393677099 ], [ -118.6117553593, 46.6490485607 ], [ -118.5884939945, 46.6478136609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9365504311, 48.5667945753 ], [ -117.9526076358, 48.5773917833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3154029102, 47.6847104504 ], [ -122.3151264897, 47.6852564017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8272592504, 47.454059906 ], [ -122.8269220429, 47.4513256561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.5718451267 ], [ -121.9131923547, 47.5965925443 ], [ -121.9096907598, 47.6249890342 ], [ -121.9162959671, 47.6372969855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9709937008, 47.2786751606 ], [ -122.9601733292, 47.2820553805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413735185, 48.0566594172 ], [ -117.704874261, 48.0670618915 ], [ -117.6731595914, 48.062248924 ], [ -117.6377513794, 48.0630093485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2747094226, 47.4287124851 ], [ -122.2690111833, 47.4377897666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3388800342, 47.7781146434 ], [ -122.3462274907, 47.7777955542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3161032894, 46.3779887108 ], [ -120.318493365, 46.3762548928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6990664231, 45.6412649874 ], [ -122.7041423514, 45.6445770609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0051151642, 46.203549009 ], [ -118.9642066552, 46.1752198269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.1009448607 ], [ -119.3155342499, 47.1016304023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5155441649, 47.6357793786 ], [ -122.5198277142, 47.6444797699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.5366364133 ], [ -117.2147701782, 47.5416733174 ], [ -117.2144352224, 47.561959096 ], [ -117.2229100098, 47.5730667428 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.9948947943 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2035861347, 47.4751805773 ], [ -122.2002742877, 47.4803239853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3623803381, 46.2440184404 ], [ -119.3531195123, 46.244832268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9259280616, 46.1463384374 ], [ -122.923520705, 46.1460689953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.3193801568, 46.2995221994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5961697621, 48.4872753789 ], [ -121.5901063759, 48.4885682085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3731501041, 45.946680716 ], [ -119.3513796962, 45.9446481587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2607429983, 47.2688990575 ], [ -122.2583295166, 47.2805652971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7784777487, 48.0301901157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903978445, 48.0112262144 ], [ -122.1860840265, 48.0219150499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4861031431, 48.7826912501 ], [ -122.4860962019, 48.7836284125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4903066566, 46.2723445732 ], [ -119.4942417879, 46.2795434721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158979379, 47.271095951 ], [ -122.5157647305, 47.2798223974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.1936544175, 46.7645544522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.4369512503, 48.9352749432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693837427, 45.6318469625 ], [ -122.6659555363, 45.631898547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987245907, 48.0961085325 ], [ -123.2912512618, 48.0954124931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8542222764, 46.9751663099 ], [ -123.8318384982, 46.9750779012 ], [ -123.8278685905, 46.9716853763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3797163114, 47.6619387511 ], [ -117.3720613135, 47.6630728307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.6446017537, 46.6167403971 ], [ -123.6251575619, 46.6007463777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1830985465, 46.7284162635 ], [ -117.1825112217, 46.7290233594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.2913280407 ], [ -122.6575921778, 48.2930446922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3049039776, 46.2928299037 ], [ -119.306688915, 46.2788022155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3894049745, 47.9191328124 ], [ -119.388810295, 47.917927027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1720418434, 47.3177075499 ], [ -123.1814871799, 47.2998745064 ], [ -123.1749055913, 47.289039031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7840000547, 47.472842312 ], [ -118.7842634529, 47.6121559913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8450829264, 46.2935798136 ], [ -122.8351070251, 46.2928789335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3573827719, 46.9297368504 ], [ -122.35740693, 46.9366422092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.8293481757, 45.7148576644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4002907153, 47.3993957355 ], [ -121.3901248718, 47.3932302588 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5195878632, 48.4074511711 ], [ -119.5216611447, 48.408142504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4532860957, 46.8561637408 ], [ -119.3464529029, 46.8107648966 ], [ -119.2569845795, 46.810235263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2842524512, 46.4056644379 ], [ -120.2682351433, 46.4011783488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0910571193, 46.7988293856 ], [ -124.1062823585, 46.8495197001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2373624055, 47.3779147052 ], [ -122.2306881417, 47.3778354946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6293597294, 47.645556277 ], [ -122.6335380628, 47.6490423139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8906810599, 46.4350146931 ], [ -123.8576433404, 46.4293681134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8350369221, 45.6826649603 ], [ -120.8176061098, 45.6914545332 ], [ -120.8153769492, 45.6979289463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9638147974, 47.8578165968 ], [ -121.9270653363, 47.8558599343 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405471815, 45.9025011825 ], [ -122.7497223484, 45.9177650679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8637575163, 47.0867688468 ], [ -118.7208744803, 47.0861552891 ], [ -118.6756358928, 47.096990195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4989356807, 46.6492770518 ], [ -120.5109061448, 46.6442084502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0947304936, 47.139868914 ], [ -122.0915871421, 47.1407602078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2687488564, 47.4721785489 ], [ -122.2710239707, 47.4775799592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5338227757, 46.2908205864 ], [ -118.4933906402, 46.2879872582 ], [ -118.4287615677, 46.2992203509 ], [ -118.3562019376, 46.2999263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1748375091, 47.7679692019 ], [ -120.16517224, 47.7707983028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5074826876, 47.7443815862 ], [ -117.5203800137, 47.7582970266 ], [ -117.5472646731, 47.7659238189 ], [ -117.5450441479, 47.7703887266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3247753913, 47.4057300867 ], [ -122.3251389542, 47.4075113691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1840627382, 47.7606381882 ], [ -122.1858412261, 47.7634469513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2946343778, 47.3643588625 ], [ -122.2900428301, 47.3837562417 ], [ -122.2920536467, 47.4006698004 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7270084609, 45.8156734191 ], [ -122.7059518963, 45.815636231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7360584616, 46.6468473933 ], [ -119.7073340223, 46.6539357057 ], [ -119.6862564867, 46.6685040964 ], [ -119.6817502839, 46.6750016961 ], [ -119.682116182, 46.701919444 ], [ -119.6415240103, 46.7308902277 ], [ -119.6270510219, 46.735547573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5772145701, 47.6429329048 ], [ -117.5739759223, 47.6429386574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2744143572, 47.4850652066 ], [ -122.2816435896, 47.4911976441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8964164726, 47.6985807685 ], [ -122.8979905603, 47.6935842347 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6757381114, 47.0813300502 ], [ -122.6588479006, 47.0844194177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.5286763644, 48.4060519843 ], [ -119.5284987148, 48.409540793 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2963177918, 46.576533839 ], [ -123.2943647479, 46.5783948474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9316246804, 47.0277555011 ], [ -122.9281707668, 47.0261889833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7913837991, 46.6144419053 ], [ -117.7931037677, 46.617894857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468945815, 46.4199295935 ], [ -117.045583721, 46.4199358176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1924425951, 47.69589869 ], [ -117.1520827446, 47.701179935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3828654748, 47.8126422945 ], [ -122.3819741537, 47.8121145139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5153285839, 47.3019754864 ], [ -122.514518613, 47.3040619068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3538626087, 47.8381496765 ], [ -117.3555823489, 47.8588071968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3719971108, 46.837063334 ], [ -120.3539257338, 46.8125656869 ], [ -120.3617492551, 46.8021851778 ], [ -120.3587542368, 46.7928184397 ], [ -120.3728367715, 46.7819036429 ], [ -120.380605613, 46.7593890779 ], [ -120.3901167664, 46.7494451154 ], [ -120.3864596626, 46.7305671826 ], [ -120.4052961815, 46.7241356625 ], [ -120.4136797599, 46.7142727147 ], [ -120.433016451, 46.7109789933 ], [ -120.4433236404, 46.6963442824 ], [ -120.4759788061, 46.681083667 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2062759693, 47.9180096463 ], [ -122.2074382827, 47.9188560677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674102459, 47.2309146691 ], [ -121.1487724368, 47.2203984665 ], [ -121.1352981522, 47.2179205415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4353841771, 48.9477318207 ], [ -119.4362799721, 48.9485573498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3509475564, 46.221897885 ], [ -119.3418776019, 46.2095624858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2150358593, 47.6419810064 ], [ -120.2141719319, 47.6561755599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.4679946321 ], [ -120.3355466203, 47.469450059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.6990664231, 45.6412649874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.0878490265, 46.7317943321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342994903, 47.3048223444 ], [ -122.4275808374, 47.3168023421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424962708, 48.1830235936 ], [ -117.0424418871, 48.1840101705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3311899204, 48.9637972205 ], [ -122.3092045302, 48.9638603752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2193213409, 48.1133107789 ], [ -117.143191344, 48.145029846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4553319322, 46.8189351153 ], [ -120.4606744462, 46.8275834233 ], [ -120.4543648479, 46.8377527814 ], [ -120.4626117535, 46.8442414628 ], [ -120.4613240439, 46.8503228942 ], [ -120.4652792529, 46.8539700858 ], [ -120.4821044215, 46.8553247767 ], [ -120.4794449453, 46.8672769035 ], [ -120.4952645744, 46.8767882515 ], [ -120.4795790401, 46.8754558646 ], [ -120.4748174542, 46.8828844989 ], [ -120.4922204016, 46.8840899703 ], [ -120.5035033529, 46.8966105451 ], [ -120.4928844335, 46.9020156297 ], [ -120.504769142, 46.910050121 ], [ -120.5100857559, 46.9261498028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3547293908, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.3143915695, 46.0302126494 ], [ -122.3105284378, 46.0417807035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470734178, 47.3105055416 ], [ -122.2447763261, 47.3180985045 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3177802121, 47.3354233521 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1680072039, 47.7574084421 ], [ -122.1598186601, 47.7602527368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.2741237154 ], [ -117.1591731962, 47.2805495454 ], [ -117.1640556864, 47.2925563208 ], [ -117.1644445088, 47.3113387619 ], [ -117.1924139288, 47.3317954981 ], [ -117.1780365249, 47.3581047791 ], [ -117.1809160774, 47.3646637735 ], [ -117.174270773, 47.3797829152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3361482633, 48.4175077145 ], [ -122.3336059484, 48.4174954237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1071132149, 46.2075458387 ], [ -119.1020141523, 46.2227420627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930833684, 47.1256521371 ], [ -122.2930223395, 47.1364690107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6524298189, 47.7572284351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9196173248, 46.147218448 ], [ -122.9103992419, 46.147036878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2099835359, 48.0853786216 ], [ -123.1998425884, 48.0838545215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9099471422, 46.0583086547 ], [ -118.9075966187, 46.0562013963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3597169341, 47.2569450563 ], [ -122.3574461631, 47.26443574 ], [ -122.3794534635, 47.2749697278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3223743924, 48.543587961 ], [ -120.3152493003, 48.5356655747 ], [ -120.2746920614, 48.5208934314 ], [ -120.2595111993, 48.5117976986 ], [ -120.2514198263, 48.501356904 ], [ -120.2272728853, 48.4882565885 ], [ -120.1928315035, 48.4779351239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2831461268, 48.0697565692 ], [ -124.2809185137, 48.0699570958 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966747787, 47.399436909 ], [ -122.2967521172, 47.4190994152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.6660998622 ], [ -122.3217057205, 47.670374577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0448176781, 46.3941409901 ], [ -117.044476644, 46.4040732772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112120534, 47.6843406722 ], [ -117.4111934872, 47.6661553637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5945415128, 48.3551234308 ], [ -119.5916519331, 48.3502168576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4957046659, 48.4279752811 ], [ -119.4793203116, 48.4427106768 ], [ -119.47455389, 48.4565074029 ], [ -119.504726913, 48.4971895169 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0644490268, 46.6269757944 ], [ -123.0540392956, 46.6280909268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111435799, 47.6590755437 ], [ -117.411162631, 47.6609810366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3484813064, 46.0630851666 ], [ -118.3491644277, 46.0639266399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.3128548734 ], [ -117.9908694542, 46.3149359546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.1460797472 ], [ -119.2938851325, 47.1496369098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4474690781, 48.2419384688 ], [ -122.3792847178, 48.2409791825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2651299683, 47.4614024105 ], [ -122.2629302431, 47.4619229895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6207841642, 46.9343746994 ], [ -122.6075822125, 46.9413631902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3236818665, 46.4364355288 ], [ -117.3010762949, 46.426715932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4607123542, 46.9566297084 ], [ -119.3970757589, 46.9577736802 ], [ -119.3641548064, 46.9706876163 ], [ -119.3337342412, 46.9675559139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0696796026, 48.23396758 ], [ -122.061555391, 48.2363292108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6765472999, 48.0110069203 ], [ -119.6774926459, 48.0103631519 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8482332243, 46.8586162126 ], [ -122.8467102726, 46.8590457137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6550649229, 46.809179515 ], [ -117.6413017681, 46.8104615568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -118.9752267156, 46.6637302723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2520093383, 47.8571419291 ], [ -122.2369577595, 47.8790697395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9301268685, 48.5264239752 ], [ -121.8440165577, 48.5411010945 ], [ -121.8251820674, 48.538972313 ], [ -121.7933270019, 48.5435073143 ], [ -121.7727025488, 48.5378235193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2884988914, 48.963997296 ], [ -122.2762249884, 48.9650220251 ], [ -122.2715285544, 48.9748696672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0508055026, 47.0857677636 ], [ -119.0351635573, 47.0854260018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8021513026, 47.4912692217 ], [ -121.7916752446, 47.4832690795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9701538655, 47.8449608786 ], [ -121.9707726081, 47.8570932647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.7882975717 ], [ -117.8494574336, 46.7998322141 ], [ -117.8101743201, 46.8136488638 ], [ -117.7811267138, 46.8048818024 ], [ -117.7571242819, 46.8027239184 ], [ -117.716713311, 46.8103507878 ], [ -117.6914546669, 46.808715409 ], [ -117.6656137967, 46.8138014312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.5158418422, 47.2671438187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4497167189, 47.6443092509 ], [ -117.4516120669, 47.6469017259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0175921586, 46.4482685616 ], [ -119.0104657492, 46.4807072897 ], [ -119.0151184142, 46.4974458958 ], [ -119.0114262534, 46.514580199 ], [ -119.0147753835, 46.5330492641 ], [ -118.9959923537, 46.5612283389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2563379619, 46.2519667264 ], [ -119.2461272383, 46.2409894234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.9636327884 ], [ -122.3311899204, 48.9637972205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4798570338, 45.5857517212 ], [ -122.466151024, 45.5838225286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1591587709, 46.198638478 ], [ -119.1588244536, 46.2022230907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6673528658, 47.5490597613 ], [ -122.65895148, 47.5539369573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6377776889, 47.7367740872 ], [ -122.6391820613, 47.7464774496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114853073, 46.6260626792 ], [ -120.5069976359, 46.6257073162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6260861992, 47.428820891 ], [ -121.6131737911, 47.4285755837 ], [ -121.5903662442, 47.4195793911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5271133231, 46.6559435532 ], [ -120.5258992491, 46.6579574794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1766968441, 46.8046382853 ], [ -119.1767648181, 46.809746805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6040808647, 47.5533601555 ], [ -120.5989270885, 47.5553611869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5592550475, 46.9339839558 ], [ -122.5556609589, 46.9361969309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8650512546, 46.5465667665 ], [ -122.8011596478, 46.5439467679 ], [ -122.747421571, 46.532339046 ], [ -122.7197711644, 46.5320488595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3805172543, 46.0318115343 ], [ -118.3627410114, 46.0415078207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9134448464, 47.0253389513 ], [ -122.9094874642, 47.0217506114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3414018352, 48.4590968726 ], [ -122.3424452974, 48.4769135735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3426003903, 48.5134790031 ], [ -122.3515399574, 48.5305200558 ], [ -122.3502009691, 48.5531647768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7772882632, 48.9177594411 ], [ -117.7760452677, 48.928358074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5204986539, 45.7575928617 ], [ -121.52754616, 45.7606234938 ], [ -121.5279890656, 45.7661176923 ], [ -121.5121334624, 45.776374164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5339872909, 48.0097622963 ], [ -122.5414842419, 48.011987346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7367980221, 46.6805525735 ], [ -123.7303182124, 46.6823391023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7334805954, 47.7623342902 ], [ -118.7212439358, 47.7631466252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079523143, 47.3909890982 ], [ -122.3004124588, 47.3957738513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6872359291, 47.5754584422 ], [ -122.6901316239, 47.5798542029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.0536511041 ], [ -122.1193130939, 48.0535474274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0732200773, 47.347496595 ], [ -123.0293255922, 47.3508042021 ], [ -122.9868725272, 47.3733995692 ], [ -122.9487451622, 47.3816100186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3064040791, 47.7725385808 ], [ -122.302597486, 47.7699869803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0533201894, 46.3352565084 ], [ -117.0523623815, 46.336389697 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7784777487, 48.0301901157 ], [ -122.7579724158, 48.0317552349 ], [ -122.745826823, 48.0252187014 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0719934512, 46.2494836918 ], [ -119.0677532163, 46.2468045298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2359717776, 48.0661116568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3875067629, 47.0051795465 ], [ -123.382100299, 47.0068490189 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2626695043, 47.1398689271 ], [ -119.2701126525, 47.1419665364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1771557033, 46.1884708528 ], [ -123.1680910014, 46.1910275512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2311640554, 47.0504387055 ], [ -123.175467152, 47.0586866535 ], [ -123.1546990371, 47.0552496291 ], [ -123.1112802946, 47.0325956026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1020141523, 46.2227420627 ], [ -119.101122588, 46.2240920293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2369577595, 47.8790697395 ], [ -122.2268964445, 47.8867919049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8271538347, 45.8696991389 ], [ -119.7799581015, 45.8660328507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0824521881, 46.7544029188 ], [ -124.0813424614, 46.7757934066 ], [ -124.0868475896, 46.7892994633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.9782340718 ], [ -122.1430545767, 47.9779093221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0536804079, 46.3675828583 ], [ -124.053438936, 46.3706285622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9420074404, 46.8959196782 ], [ -122.9086394896, 46.8991466854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.8540700226, 47.0883824388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1767648181, 46.809746805 ], [ -119.1767815159, 46.8114994409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4227108674, 46.6969057794 ], [ -118.4122698552, 46.7012162608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1863875328, 47.6405133468 ], [ -122.1869038184, 47.6636304786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9389895243, 46.9474951907 ], [ -122.9354180565, 46.9596763245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4871781519, 46.6713847636 ], [ -120.49646088, 46.6596353982 ], [ -120.4989356807, 46.6492770518 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6914263595, 45.6358581387 ], [ -122.6938570638, 45.637225155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.9765640486 ], [ -123.6272286689, 46.9765532394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111019043, 47.687150654 ], [ -117.4111371057, 47.6944973222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7831803897, 46.6698379874 ], [ -123.7671904335, 46.6744470342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4351007945, 47.7154472911 ], [ -117.4364218141, 47.7154395468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.1987611119 ], [ -122.1296885992, 48.2003311116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.1230525484 ], [ -122.5946667739, 48.1516803947 ], [ -122.6064434153, 48.1635594746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6532972455, 47.5655345715 ], [ -122.6511293212, 47.5655459942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.6101927227 ], [ -121.6663638136, 46.6141909864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5888375562, 45.9758111476 ], [ -121.6125293313, 45.9625721062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7397102898, 46.7012896138 ], [ -123.7437635985, 46.7153016927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304093084, 47.6079523826 ], [ -122.3286460195, 47.6218398679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0051653665, 47.2658148473 ], [ -123.0029655026, 47.2660406347 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588364929, 46.2122195073 ], [ -119.1509779825, 46.2148765642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.9792119734 ], [ -122.7482397955, 48.9864873577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8859488488, 46.5202816438 ], [ -123.8934297223, 46.5484187108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857699354, 46.9900928031 ], [ -123.8857527631, 46.9927676585 ], [ -123.8939276953, 46.9931418107 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1898949617, 47.9790684157 ], [ -122.188666249, 47.9794305969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.5508465619 ], [ -122.4221853179, 48.5654425158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.2652637647, 49.0023331331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578488817, 48.2895410127 ], [ -122.657837721, 48.2913280407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1703775752, 47.7449382474 ], [ -118.1736598311, 47.7883685846 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1625335373, 47.628203114 ], [ -118.159705125, 47.6427340926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9070616699, 46.6806375323 ], [ -119.9166346542, 46.6972957966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063789003, 47.9520311616 ], [ -122.094618564, 47.9514925058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6959320726, 48.9034555044 ], [ -121.6713565113, 48.8871755279 ], [ -121.6683746385, 48.8735964021 ], [ -121.6739808813, 48.8758038472 ], [ -121.6594897464, 48.8688630894 ], [ -121.6580262283, 48.8640419461 ], [ -121.6547619135, 48.8663081545 ], [ -121.6589172471, 48.8590433627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.9468811492 ], [ -118.6917968125, 47.9537164275 ], [ -118.7001439176, 47.9612741069 ], [ -118.7007666934, 47.9715755988 ], [ -118.6932366444, 47.9858042203 ], [ -118.6928786502, 47.9958498529 ], [ -118.6865576547, 48.0003976807 ], [ -118.6881097384, 48.0051631789 ], [ -118.6811911375, 48.013475131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7300552535, 48.6419111855 ], [ -118.7010950406, 48.6529300754 ], [ -118.6850050975, 48.6506492932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155190209, 48.2762460851 ], [ -117.7155515131, 48.2809311397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5813429939, 47.3109726485 ], [ -122.5934601063, 47.3246446179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6425828517, 46.9708731434 ], [ -118.6598639151, 46.9705949371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350299238, 47.2432097813 ], [ -122.4199297039, 47.2443571022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7849363108, 46.3717532207 ], [ -123.7567194267, 46.3556632852 ], [ -123.7347135662, 46.3543537474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3536592638, 47.6310538708 ], [ -119.3595018472, 47.6413739111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6730634499, 47.4637949376 ], [ -117.6232200849, 47.4699050473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2827858737, 47.6810526384 ], [ -117.2799050476, 47.6816356586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3041069002, 47.4122978378 ], [ -120.3055238703, 47.415408638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3405498465, 46.0739014753 ], [ -118.3255247068, 46.0817350589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6082425787, 48.4287878768 ], [ -122.6067917986, 48.4370383266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4857687926, 48.8914094656 ], [ -122.464240563, 48.891667265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8144960068, 46.9745245963 ], [ -123.8141567727, 46.974248551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924369341, 47.3216137304 ], [ -122.3903629125, 47.3216340622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9090833449, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2978771665, 47.6166084807 ], [ -119.2928419495, 47.6157241973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6661977768, 48.2841306381 ], [ -122.6596669668, 48.2863597414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5785447315, 46.6857085787 ], [ -121.5789679391, 46.6896872972 ], [ -121.562292404, 46.6954679099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3134257955, 47.2979565948 ], [ -122.3133300405, 47.303094966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742471673, 45.7884633898 ], [ -122.6813333636, 45.8063615363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3592834167, 46.069578111 ], [ -118.3538671999, 46.0696978456 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.5553173378, 47.8095387896 ], [ -122.5310414126, 47.8095136583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.5091003278 ], [ -122.3329165329, 47.5234893652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1404542596, 47.7309772963 ], [ -122.1317677799, 47.7144009727 ], [ -122.1321920922, 47.6952826792 ], [ -122.1282535153, 47.6874070809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9814105695, 46.7572813912 ], [ -121.9474994672, 46.7550419284 ], [ -121.9273783017, 46.7493552016 ], [ -121.9220375425, 46.7426875865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.7937508078 ], [ -118.5684177308, 46.7947224844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5009591571, 46.6232675075 ], [ -120.4880037429, 46.6075314018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9401799875, 47.1960778907 ], [ -120.9437717492, 47.1965328965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042307641, 46.8878717782 ], [ -124.104302567, 46.8959740416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6384906851, 46.3352078778 ], [ -123.6214626929, 46.3469762238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1277899267, 46.2435755653 ], [ -119.1266194124, 46.246327603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9741828621, 46.3270182624 ], [ -117.9793951542, 46.3369573434 ], [ -117.9785387727, 46.3464638557 ], [ -117.9524909367, 46.3563728876 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8655443332, 47.5625960148 ], [ -121.8347869038, 47.5539873994 ], [ -121.8406843431, 47.5514635735 ], [ -121.8313657266, 47.5369638292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9856625426, 47.7451686523 ], [ -121.9845733907, 47.7513804106 ], [ -121.9557053136, 47.7697208879 ], [ -121.9740171693, 47.7885071981 ], [ -121.9823417916, 47.8127801291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7542359838, 46.978403612 ], [ -123.7445979677, 46.9735726358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0130934852, 46.3059829046 ], [ -119.9861758662, 46.3060765495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1251815178, 48.2002933787 ], [ -122.1236120707, 48.2002782394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4371558585, 48.7076989882 ], [ -119.4360006417, 48.7109840533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158228483, 45.5949143216 ], [ -122.5156287011, 45.5948612042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5964124559, 48.8920606997 ], [ -122.5983885994, 48.8916617976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0078653292, 47.872487544 ], [ -121.9908494983, 47.8657174136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3648165287, 46.8790297995 ], [ -117.364773078, 46.8799063068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.2348611365 ], [ -122.5100030807, 47.2490381759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.3946951929, 47.7570939377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4598946117, 45.7123396511 ], [ -121.4253522035, 45.6996005372 ], [ -121.4036102525, 45.6993830974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9598608634, 46.7119804203 ], [ -122.9564753528, 46.7112869506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.0490596047 ], [ -122.2748305032, 46.0636006917 ], [ -122.2464336415, 46.0556053087 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0654931199, 47.8179312301 ], [ -122.0562501932, 47.8299985078 ], [ -122.0295956843, 47.8298762266 ], [ -121.9992299624, 47.8523397018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1364781908, 47.6384421787 ], [ -122.1351290082, 47.640071799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5469856665, 45.8168217556 ], [ -122.5220688196, 45.8532467256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2328875048, 47.9233521925 ], [ -122.2231765605, 47.9226576514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1299980522, 48.2057570202 ], [ -122.143389182, 48.2246779017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2096024616, 48.821069883 ], [ -122.2025293491, 48.8159609661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9379417422, 47.660685361 ], [ -117.9167021499, 47.6653110039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4919517544, 47.2348877891 ], [ -122.493797523, 47.2348611365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7648711374, 47.0612918893 ], [ -122.7645455776, 47.0564842559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.0115068577 ], [ -122.6881983355, 47.0090276156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3499363576, 47.2430303348 ], [ -122.3365632968, 47.2450397981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119629623, 47.3522809023 ], [ -122.3092462539, 47.3580817971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1579964315, 46.1391116684 ], [ -118.1502609571, 46.1420400459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205033055, 46.3313990906 ], [ -120.3205390391, 46.3386430967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5808735402, 47.3353309836 ], [ -120.568278873, 47.3360585763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.3725592844 ], [ -122.2006150998, 47.3722720586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7334112553, 47.6434838531 ], [ -117.690253067, 47.6430952782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3250529195, 47.8213297085 ], [ -122.3228862469, 47.8212957342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2574451577, 47.2018821101 ], [ -122.254047685, 47.2009435128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.6141909864 ], [ -121.6577255991, 46.6239161848 ], [ -121.6160035758, 46.6478940682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9727960208, 46.3237819677 ], [ -117.9741828621, 46.3270182624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5243096729, 47.5048277184 ], [ -122.5104823423, 47.5048487373 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224579886, 47.646211059 ], [ -122.322462732, 47.6496170314 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2569845795, 46.810235263 ], [ -119.2181964942, 46.8141634951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4460453581, 46.3716676172 ], [ -119.4406556774, 46.3808764649 ], [ -119.4228141497, 46.3832991036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4275808374, 47.3168023421 ], [ -122.4233116711, 47.3170469005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8577283824, 46.6939486439 ], [ -123.8431696828, 46.6984120458 ], [ -123.8153513788, 46.6707407117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0991109684, 47.18070609 ], [ -123.0971571723, 47.1818128402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8597476834, 45.8244297002 ], [ -120.8318672716, 45.8230595037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5799543409, 48.3644758133 ], [ -119.5450859846, 48.396250068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2857890361, 46.5613718886 ], [ -122.2752434827, 46.5583246063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932262899, 47.1183648911 ], [ -122.2930833684, 47.1256521371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7921120527, 45.8483754133 ], [ -120.7709004569, 45.8615514769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6811911375, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.6745338956, 48.0329393311 ], [ -118.668829663, 48.0503155854 ], [ -118.6738246026, 48.0692605239 ], [ -118.69074626, 48.0828527406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8936094988, 46.5891345777 ], [ -122.904494363, 46.6021302692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1135516316, 47.4532319373 ], [ -123.1155512302, 47.4448279782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176442321, 47.2382129228 ], [ -122.4083499421, 47.2391797955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259718026, 47.398107085 ], [ -122.6257721122, 47.4000022997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2243682744, 47.4778018949 ], [ -122.220911129, 47.4788254663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5514961681, 47.9936326927 ], [ -117.5663025103, 47.9938759436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.6999410067, 45.923000308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.9425126462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6181368996, 47.2500373035 ], [ -119.5985546782, 47.2518971615 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045144925, 47.6452852227 ], [ -122.3045734555, 47.6490440633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4447329829, 47.6326990173 ], [ -117.4483713102, 47.6410080356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002782834, 47.2119732363 ], [ -123.1001117785, 47.2128066209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8844965185, 46.2561969531 ], [ -122.8921920489, 46.2675770829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3411431465, 48.4469767522 ], [ -122.3414018352, 48.4590968726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9504462358, 46.8962553703 ], [ -122.9420074404, 46.8959196782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007887846, 46.1084782427 ], [ -122.8925432587, 46.1068065797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838252738, 47.9522510714 ], [ -122.8817445196, 47.9446523903 ], [ -122.8536693945, 47.9407898169 ], [ -122.8137272987, 47.9229521483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.565213602, 46.5434407828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4968769556, 47.7970409839 ], [ -122.4959840812, 47.795839855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8132595013, 48.1004014814 ], [ -122.7885589611, 48.1029421282 ], [ -122.7831995028, 48.1070075798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397125029, 47.6897536118 ], [ -117.2184787446, 47.6944938171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4114871909, 47.7396505482 ], [ -117.411427803, 47.7408474959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395845311, 47.6725795615 ], [ -117.2395516805, 47.6729939622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6947937623, 47.381239063 ], [ -122.680812527, 47.3887654485 ], [ -122.6613065763, 47.3889764709 ], [ -122.6518676217, 47.3854416573 ], [ -122.6528510166, 47.3773323215 ], [ -122.6418945651, 47.3795057214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8008176143, 45.7117126858 ], [ -120.8080597843, 45.7199565014 ], [ -120.8144502763, 45.72130035 ], [ -120.8224992697, 45.743168923 ], [ -120.8229476469, 45.7771798533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6090544172, 47.8521256366 ], [ -122.6020428046, 47.8547635857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1699835707, 47.7530524149 ], [ -122.1688952325, 47.7523661354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4450607281, 47.0665796514 ], [ -122.4346867332, 47.0834174301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0404861073, 46.1612119681 ], [ -119.0494766974, 46.168670079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293907946, 47.1928634023 ], [ -122.22939549, 47.1916397461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7868512068, 46.9671019999 ], [ -123.7880909112, 46.967896691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114938746, 46.8624815133 ], [ -122.3309551779, 46.8686509313 ], [ -122.3461519832, 46.8646712563 ], [ -122.3485996117, 46.8698964015 ], [ -122.3412473353, 46.8783735591 ], [ -122.3590200387, 46.8898382458 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2184787446, 47.6944938171 ], [ -117.1924425951, 47.69589869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2088000662, 47.9150721941 ], [ -122.2075664829, 47.9152876806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1327070433, 48.1526864406 ], [ -122.1167643996, 48.1516314237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.8214634366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8880451706, 47.0349627247 ], [ -122.8753021958, 47.036689104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4923909755, 46.9379773099 ], [ -122.4841720635, 46.9380070182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2203529267, 47.5824516264 ], [ -122.2000543534, 47.5787190739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4694374549, 46.5065542918 ], [ -120.4796170905, 46.5164951013 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754010062, 47.4873552206 ], [ -117.5647334404, 47.498272492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4676807101, 46.7023866982 ], [ -117.4672879853, 46.7034528115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1998163094, 46.3311315335 ], [ -120.1801941156, 46.3452788522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.6614633424 ], [ -122.2859448482, 47.6619893558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2756369244, 47.8708807894 ], [ -122.2748522475, 47.8718113531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299573082, 48.0326119562 ], [ -122.7207360254, 48.0268110537 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3065286882, 47.4166683919 ], [ -120.3170457721, 47.4294662441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6206863347, 46.6605003365 ], [ -120.6142357749, 46.6544908714 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3642482346, 46.8895898765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.2142916788 ], [ -122.4627470202, 47.2159591708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0448319243, 47.3997061319 ], [ -122.0393244339, 47.4079731902 ], [ -122.0050649195, 47.4194364888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4343801512, 47.1489709589 ], [ -122.434250602, 47.1554309896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2947757571, 47.4153242228 ], [ -120.2941276522, 47.4130153494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969253171, 47.4452667572 ], [ -122.1982503924, 47.4471972302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5706924506, 47.8037291147 ], [ -122.563306341, 47.80561327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2449869401, 48.1566054926 ], [ -122.2383520005, 48.1519754742 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5528157131, 45.6121505059 ], [ -122.5563050504, 45.6167350271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6248931708, 45.9283298654 ], [ -119.603047109, 45.9369049065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.8423792383, 47.8397664657 ], [ -117.8553269485, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9719468032, 47.5356190389 ], [ -121.9423990512, 47.5302140606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.3633416819 ], [ -119.5799543409, 48.3644758133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1900214152, 48.1598254833 ], [ -122.1930283776, 48.176135222 ], [ -122.1994394218, 48.1842323462 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.8848116859 ], [ -118.3329102877, 46.9112865847 ], [ -118.3434404794, 46.915750159 ], [ -118.3453584296, 47.002118431 ], [ -118.3523615276, 47.0106200548 ], [ -118.3478251995, 47.0405415449 ], [ -118.3651684181, 47.0601072344 ], [ -118.3656317125, 47.112475028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206620248, 47.6769065098 ], [ -122.32934455, 47.6957536487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9384153356, 47.1948996063 ], [ -120.9401799875, 47.1960778907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0926019856, 47.8681495864 ], [ -119.0928254707, 47.8804577602 ], [ -119.0773477173, 47.8901190715 ], [ -119.0641730438, 47.9058725038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543101229, 46.7193545946 ], [ -122.9555240563, 46.7165039902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922430833, 47.4941319797 ], [ -122.1953416359, 47.4994564392 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1511457837, 45.8183340264 ], [ -121.1463960115, 45.8217818712 ], [ -121.1203944047, 45.8182961934 ], [ -121.1152881651, 45.8250288655 ], [ -121.1000196081, 45.8249268805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1340104468, 47.3579773429 ], [ -122.1281070641, 47.3580335124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375517758, 45.9498941429 ], [ -119.3324665654, 45.9393404761 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8225853934, 48.534895129 ], [ -117.8178886082, 48.5253988774 ], [ -117.804791347, 48.5147408998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0898201478, 47.8397078467 ], [ -120.0538459389, 47.8359849929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.6124988865 ], [ -118.7206203577, 47.6136015226 ], [ -118.7216865022, 47.7565875063 ], [ -118.7101114713, 47.7579202996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7645455776, 47.0564842559 ], [ -122.7646365596, 47.0522855716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9450533075, 48.8896410913 ], [ -121.9420276289, 48.8891584197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2167143776, 47.9113439649 ], [ -122.2129385008, 47.91279953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2247355074, 47.5862739437 ], [ -117.2216074513, 47.5969812615 ], [ -117.2235791152, 47.6164555058 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0154120928, 48.0674017673 ], [ -122.0098989742, 48.071628269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1509779825, 46.2148765642 ], [ -119.1411095244, 46.2154260444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7189725743, 47.1993671783 ], [ -120.7080243736, 47.2036487713 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0987142773, 47.3694924181 ], [ -122.0815564766, 47.3772542241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5906026172, 45.6527948204 ], [ -122.5816054123, 45.655987363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2975114504, 46.3001018541 ], [ -119.3049039776, 46.2928299037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.1047382405 ], [ -122.9512089429, 46.1157614264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2796331186, 45.6906882361 ], [ -121.2138792304, 45.6734611598 ], [ -121.1928665076, 45.6576560325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.398065622, 47.3956087457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9770150376, 47.8170244607 ], [ -119.9747908435, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7043255452, 46.7738226067 ], [ -117.6939737271, 46.7889237158 ], [ -117.6778315328, 46.7936524449 ], [ -117.6550649229, 46.809179515 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2579004931, 47.2918141977 ], [ -122.254118291, 47.2998428644 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.7703035237 ], [ -122.547565689, 45.7807169469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.0143287806 ], [ -122.1915989356, 48.0125732298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8548278199, 47.23342187 ], [ -119.8533663973, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.6538234455 ], [ -117.3302489185, 47.653713239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7656400398, 46.9512725149 ], [ -123.7695997378, 46.9546351666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4512101301, 46.5770853276 ], [ -120.4354637214, 46.5745924593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -119.0058747596, 46.7008068298 ], [ -119.0098352163, 46.7101063353 ], [ -119.022009186, 46.7204224263 ], [ -119.0487109157, 46.7291966819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.9577400504 ], [ -122.619337819, 45.9439148266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4117450085, 47.6019773285 ], [ -117.4390078118, 47.6240624799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6164943357, 48.7884410173 ], [ -118.616803513, 48.7959551869 ], [ -118.6034157792, 48.8049107122 ], [ -118.5916182675, 48.8270264864 ], [ -118.5921296026, 48.8354347926 ], [ -118.6039372517, 48.8559091636 ], [ -118.6063379125, 48.8732863748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8642395904, 47.5111841759 ], [ -121.8530540341, 47.5118709577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.251298774, 48.0998571166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5832793235, 47.4818861833 ], [ -117.581932979, 47.4825221847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7004740827, 46.8819430195 ], [ -122.6888591294, 46.8883629314 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356102101, 45.5801631372 ], [ -122.4266731536, 45.5798853327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.3241654589, 47.7296158195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4698317487, 47.5426197192 ], [ -119.4532411733, 47.5665696629 ], [ -119.4362688029, 47.5726405798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471693341, 48.9195294698 ], [ -122.3234409469, 48.9201959718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0997120272, 47.2056969535 ], [ -123.1011620507, 47.2072125648 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219074037, 45.8568488308 ], [ -122.5200551004, 45.865996916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4131299621, 48.4502154271 ], [ -122.3810673208, 48.4573156123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.5417260081 ], [ -122.6349019011, 47.5414235496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9527396272, 46.720041065 ], [ -122.9522499816, 46.7274803396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3647146566, 46.8810185511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3123636673, 47.3477991611 ], [ -122.3119629623, 47.3522809023 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.1848015959 ], [ -120.8977278871, 47.1804239536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9526076358, 48.5773917833 ], [ -117.9894375686, 48.5890571016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329469401, 47.5673326833 ], [ -122.6329141514, 47.5710682046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.9961770865 ], [ -122.5440284191, 47.00195264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3452527917, 47.741452447 ], [ -122.3454890434, 47.7524905174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4986984819, 47.3690721351 ], [ -119.4972510691, 47.3702850298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6572408493, 47.5983589324 ], [ -120.6540439356, 47.5990844387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156287011, 45.5948612042 ], [ -122.4943892728, 45.5890557217 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1415565005, 47.4513001292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.7323956011 ], [ -117.1741648142, 46.7379128734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157587458, 47.281707768 ], [ -122.5157406775, 47.2908042195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455886366, 47.4412210855 ], [ -122.2438389364, 47.4568632492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5232962062, 48.4094700138 ], [ -119.5256803341, 48.4105086385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.8115322114 ], [ -122.4859938914, 48.8150001938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9658761326, 47.1936165169 ], [ -120.9280333907, 47.1893145679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5087171766, 47.1447737983 ], [ -122.4989188555, 47.1501796155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2635417231, 47.9221791593 ], [ -122.2510997896, 47.9232511801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.9040186992, 47.1886262402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871847394, 47.5018573254 ], [ -122.1826210947, 47.4988151232 ], [ -122.1740778642, 47.5058207686 ], [ -122.1598568622, 47.5046576599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299951107, 48.9621767777 ], [ -122.7284141787, 48.9757559926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4189635614, 47.8314948096 ], [ -117.4231431671, 47.8843518204 ], [ -117.4538503546, 47.9182613584 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7195199906, 45.6499177453 ], [ -122.7308174939, 45.655963797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.0903093008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9667501531, 46.379458651 ], [ -119.9507168728, 46.3970662882 ], [ -119.9479351658, 46.4141956254 ], [ -119.9373599037, 46.4337298932 ], [ -119.938319542, 46.4575952693 ], [ -119.9310180931, 46.4741304562 ], [ -119.9017083155, 46.497304085 ], [ -119.8843350959, 46.5050823884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9247009245, 46.1221385232 ], [ -122.9183274849, 46.1179762286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.6599920959 ], [ -117.4133229534, 47.6590747649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1523661986, 47.7330804139 ], [ -122.1404542596, 47.7309772963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044776202, 47.5482634566 ], [ -117.7044515804, 47.551027418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7888286163, 48.0414353719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8979905603, 47.6935842347 ], [ -122.9000668498, 47.6772665999 ], [ -122.9323014096, 47.6518739395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0036329276, 47.3094647022 ], [ -122.0116242643, 47.3330404711 ], [ -122.0182971717, 47.3410067723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598186601, 47.7602527368 ], [ -122.1570006357, 47.765024263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6816043754, 48.269260962 ], [ -121.6743723204, 48.2692255901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.5271301706, 47.0069958392 ], [ -122.460282873, 47.0590365811 ], [ -122.4450607281, 47.0665796514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5259931748, 48.7945741767 ], [ -122.5446847676, 48.8138630642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3070123443, 46.567981686 ], [ -123.2999170842, 46.5700274981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3197480792, 47.6816333663 ], [ -122.318091806, 47.6824319974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9051023405, 46.1847118489 ], [ -122.9070746013, 46.1900492586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1727879342, 46.7397697342 ], [ -117.1710414458, 46.7424904094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8823509757, 46.9792200862 ], [ -123.8857480999, 46.9806448411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0065316221, 47.0552123027 ], [ -122.9998190814, 47.0505006375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3235459955, 47.4769045316 ], [ -120.3207059196, 47.4808771816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7872865838, 47.4951204522 ], [ -121.788376675, 47.4940653907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.8251972811 ], [ -122.2431153196, 47.8256765678 ], [ -122.2331720885, 47.8210669673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.8829802143, 46.7127174081 ], [ -120.8736869896, 46.7122569007 ], [ -120.8457986157, 46.7214615642 ], [ -120.8187846966, 46.7194429167 ], [ -120.8111956085, 46.7266981663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5746576675, 46.5626246259 ], [ -123.5402947407, 46.5576923778 ], [ -123.5203150937, 46.5452203474 ], [ -123.494926021, 46.5410094666 ], [ -123.4164514949, 46.5508891636 ], [ -123.3938977324, 46.5443022941 ], [ -123.3746653206, 46.5519403275 ], [ -123.3387554018, 46.5498400922 ], [ -123.3181533134, 46.5537699057 ], [ -123.3070123443, 46.567981686 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7445979677, 46.9735726358 ], [ -123.7381959686, 46.9710907007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0641730438, 47.9058725038 ], [ -119.0563552656, 47.9153765852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6507363437, 47.7695891636 ], [ -122.6515427568, 47.7916136315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7477462633, 46.6933741544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616138919, 48.7607636257 ], [ -122.4622283159, 48.7681610573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8037680338, 46.4381163639 ], [ -122.7267485599, 46.4373575595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.2472806543 ], [ -123.045670011, 47.2478374662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.6090058957 ], [ -122.5709358838, 45.6080222232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538347685, 46.9524134967 ], [ -122.5468403017, 46.9927649775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525513618, 46.6447887503 ], [ -118.5495094772, 46.6453560334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2193270337, 47.30338806 ], [ -122.1869343886, 47.298301147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6581170517, 45.6185588654 ], [ -122.6334221513, 45.6184980719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8422504198, 46.4113220356 ], [ -123.8349983211, 46.3948956565 ], [ -123.8281981659, 46.3913609219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1468751595, 48.3068128255 ], [ -118.1631186706, 48.3520288123 ], [ -118.1715522275, 48.4091006331 ], [ -118.1708437963, 48.4288296254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534053473, 47.2223294365 ], [ -119.8533828874, 47.231885111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7619942648, 48.0632663696 ], [ -117.7552102892, 48.1167618601 ], [ -117.7327781122, 48.1383013951 ], [ -117.7260465116, 48.1503593139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7227122233, 48.1685422116 ], [ -117.7262847571, 48.1762204765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.5902637122 ], [ -120.6676433679, 47.5927812587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2546464371, 46.9816911587 ], [ -119.2059547126, 46.9847954432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857415687, 47.7548599981 ], [ -122.1840627382, 47.7606381882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.7801298015 ], [ -122.599982644, 45.7801453767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0957237818, 47.1572988202 ], [ -123.095106414, 47.1429892693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2755457279, 47.8209143725 ], [ -122.2658705764, 47.8207446489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.7740832951 ], [ -118.2886572256, 46.7879317008 ], [ -118.3097453971, 46.8098489829 ], [ -118.3099862619, 46.8161196557 ], [ -118.3217641545, 46.822539058 ], [ -118.3321392421, 46.8389818766 ], [ -118.3362638132, 46.8534807148 ], [ -118.334575397, 46.8848116859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876095018, 46.1576443082 ], [ -122.9833545966, 46.1555474575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9179703845, 46.9819334325 ], [ -123.92417003, 46.9825144102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.3333652583 ], [ -118.6922310931, 47.3333156666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2554591689, 47.1454962289 ], [ -117.2677060281, 47.1615080182 ], [ -117.2891774357, 47.1679524761 ], [ -117.2958452372, 47.1833254981 ], [ -117.3295786243, 47.1869824575 ], [ -117.3546879112, 47.2034961093 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8324499347, 47.1042259268 ], [ -119.8307822154, 47.1036973105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8114502592, 46.6993848447 ], [ -123.8253745361, 46.709170275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.2240920293 ], [ -119.0997711539, 46.223724902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8847738398, 47.9855759007 ], [ -122.8820241615, 47.968795396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7468893165, 47.2346362782 ], [ -119.7251709256, 47.2489121615 ], [ -119.6181368996, 47.2500373035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6613049438, 45.647498224 ], [ -122.6496497972, 45.6504231837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068708389, 45.6018672646 ], [ -122.4055026586, 45.5961003788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.7289642557 ], [ -122.9536737749, 46.7289461561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151301203, 47.6720446521 ], [ -122.1133617704, 47.671528366 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3015320727, 48.1814415097 ], [ -117.3012126424, 48.191267265 ], [ -117.2897176202, 48.2065229267 ], [ -117.2914802502, 48.2273126077 ], [ -117.2830862535, 48.2366828375 ], [ -117.2845754339, 48.2812765736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3271587307, 47.7136272159 ], [ -122.3242862882, 47.7185219104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7384627186, 48.5359258924 ], [ -121.7223369447, 48.5319460862 ], [ -121.7075219149, 48.5191466035 ], [ -121.6760393017, 48.5151612873 ], [ -121.6513860232, 48.5041934528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6585157988, 47.0514934706 ], [ -120.6291812643, 47.0396007246 ], [ -120.5867415871, 47.0023957095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380018087, 48.9060853167 ], [ -122.1375909505, 48.9171432802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.3982856502 ], [ -120.2564967356, 47.3853137258 ], [ -120.1922237193, 47.3773145311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8505614694, 46.6606108889 ], [ -118.8367462093, 46.6949715887 ], [ -118.8348854358, 46.7191386362 ], [ -118.8208435355, 46.7340210389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9517110134, 46.1469021572 ], [ -122.9259280616, 46.1463384374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8566143534, 46.4366406332 ], [ -123.8714474882, 46.4476360198 ], [ -123.8740416373, 46.4591167752 ], [ -123.8878297764, 46.4791584777 ], [ -123.8859488488, 46.5202816438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4389284985, 48.705561124 ], [ -119.4373980431, 48.7072992033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7667323197, 48.110171865 ], [ -122.7608305412, 48.1125877254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6459065292, 48.3044536381 ], [ -122.6434331584, 48.3065806606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8464511089, 47.4246031872 ], [ -122.8407076803, 47.4325617338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260927168, 47.3890549862 ], [ -122.6259718026, 47.398107085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.0525359155, 46.466597142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0967671874, 47.0341238279 ], [ -123.0754529552, 47.0405018922 ], [ -123.0577148184, 47.0409268562 ], [ -123.0223763118, 47.0580771821 ], [ -123.0124274602, 47.0563166427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9923916449, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2705939775, 46.2873405261 ], [ -122.2586933356, 46.2829628948 ], [ -122.2184077423, 46.290256532 ], [ -122.1949063653, 46.2823305403 ], [ -122.2019102926, 46.2789405654 ], [ -122.2166918782, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.2185321118, 46.2775970571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546693813, 47.479786644 ], [ -118.2546196045, 47.4837941362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8311550343, 47.1038712566 ], [ -119.8272576766, 47.106307188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8970765547, 46.9810040205 ], [ -123.902252551, 46.9810452868 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940156325, 48.5236742491 ], [ -122.149310257, 48.5311401242 ], [ -122.1205538564, 48.5260765992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2158884218, 47.8443983695 ], [ -122.2175661581, 47.8496908765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5712528402, 48.1146712556 ], [ -123.5666907268, 48.114021332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.5375786595 ], [ -122.2251116552, 48.5503306146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.8504355115 ], [ -117.3497979206, 46.8597063959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9524909367, 46.3563728876 ], [ -117.9392616292, 46.382620523 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3062213119, 47.416281941 ], [ -120.3065286882, 47.4166683919 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2777737236, 47.879481564 ], [ -122.2799690003, 47.8826891954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426668622, 48.1780973091 ], [ -117.0424962708, 48.1830235936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5138862172, 45.7429041091 ], [ -121.5204986539, 45.7575928617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4478142216, 47.6480936772 ], [ -117.4195602915, 47.6526347407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3195807175, 47.4716032095 ], [ -120.3025873431, 47.4686065666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.8448314506 ], [ -122.5812917606, 48.852425293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.0317308992 ], [ -119.2267789418, 46.0180871043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1384722057, 46.892262265 ], [ -119.1444896159, 46.8984851562 ], [ -119.1363999204, 46.9111066773 ], [ -119.1279706055, 46.9485582437 ], [ -119.1186109827, 46.9595266729 ], [ -119.1179382964, 46.9701782337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0023772267, 47.9485330892 ], [ -119.0032812985, 47.947389362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0973376697, 47.1826544128 ], [ -123.0984327789, 47.1898992789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.1010693917, 47.9456237913 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207560536, 47.5899474422 ], [ -122.3205050716, 47.5975079138 ], [ -122.3265267058, 47.6034433933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6168907485, 47.0952000036 ], [ -122.5963933831, 47.1027062195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1099317298, 48.0262394664 ], [ -122.1102365439, 48.0279042262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523268647, 47.8961954425 ], [ -117.3511036365, 47.903873351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.4104336223, 48.6904887705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059141852, 48.2122640442 ], [ -122.7254611419, 48.2111110539 ], [ -122.7399066254, 48.2292007745 ], [ -122.7148061182, 48.2403092978 ], [ -122.7098709231, 48.2523750469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5794120249, 45.6676715094 ], [ -122.587012075, 45.6793317854 ], [ -122.6008744257, 45.6874395737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.4788254663 ], [ -122.2194720778, 47.4795067364 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6718045785, 45.623437204 ], [ -122.6654874391, 45.6200688002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.9066976691 ], [ -122.4854389282, 48.9351240348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447271345, 46.3081264556 ], [ -124.0447225968, 46.3088719536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499665548, 45.5969306355 ], [ -122.5509906905, 45.6012653728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0939413826, 46.2498784583 ], [ -119.0917467448, 46.2503035218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5220688196, 45.8532467256 ], [ -122.5219074037, 45.8568488308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3502034489, 47.9137043437 ], [ -117.3506178988, 47.9432704768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0050649195, 47.4194364888 ], [ -121.9839763366, 47.4320430934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8072496646, 45.8123784315 ], [ -120.8039379118, 45.8264664938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931738148, 47.9220879011 ], [ -122.2914374281, 47.9220287545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.9460567842 ], [ -122.4852153791, 48.9642388691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647296934, 47.4988542076 ], [ -117.5647059706, 47.5011897492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0476299632, 46.6285743251 ], [ -123.0183397646, 46.6437586626 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7225935085, 47.7708524695 ], [ -118.72180243, 47.8307542065 ], [ -118.7158171633, 47.8418244835 ], [ -118.7177993581, 47.8557884326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4220672954, 48.4427374565 ], [ -122.390445812, 48.4422989059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.9818766144 ], [ -122.2043471222, 47.9819297636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074561545, 47.7875219182 ], [ -117.4059782511, 47.8001660961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.8660328507 ], [ -119.7003175758, 45.8904645213 ], [ -119.6631819174, 45.9131840003 ], [ -119.6248931708, 45.9283298654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0561354019, 46.2902587967 ], [ -124.0480975411, 46.3020519269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2233288919, 47.9095861548 ], [ -122.2167143776, 47.9113439649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.4691766915 ], [ -123.9291735447, 47.4763535553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6987408734, 47.5866961105 ], [ -122.6986407419, 47.5960190089 ], [ -122.7047490044, 47.6007985246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8819927368, 48.5472128187 ], [ -117.8800458807, 48.5473265211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2236317238, 47.6278867921 ], [ -117.2398468351, 47.6445327832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6993155614, 48.2593609442 ], [ -122.6730425589, 48.2671633791 ], [ -122.6694634271, 48.2806289911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4223417195, 47.4282688783 ], [ -121.4110411782, 47.4243576922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.0374844302 ], [ -120.6092218493, 47.0480585921 ], [ -120.6294282804, 47.0744775232 ], [ -120.6552820758, 47.0921616821 ], [ -120.6686598398, 47.12002506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710228472, 47.4819453096 ], [ -122.2744143572, 47.4850652066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2742164355, 47.8479952638 ], [ -122.2768149357, 47.8726630238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4072691049, 47.2393529405 ], [ -122.4019360634, 47.239469308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485727781, 47.1677245225 ], [ -122.1441855248, 47.1674591072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5691788837, 47.5946199775 ], [ -117.5679132072, 47.5937450378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288644625, 47.741140359 ], [ -122.3297726533, 47.7436959378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6075822125, 46.9413631902 ], [ -122.6065410768, 46.9419413133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7728740575, 48.109600754 ], [ -122.7706871351, 48.109957957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3268526166, 46.297790684 ], [ -119.3204993439, 46.2934725609 ], [ -119.3085183423, 46.2931233698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6024268764, 48.353805119 ], [ -119.5950487686, 48.3559969968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127555504, 47.4701556709 ], [ -122.3009682136, 47.4657531835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1698418075, 47.5801249842 ], [ -122.1380752869, 47.5786572039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148285272, 47.8398314423 ], [ -120.0127832253, 47.8398059908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.7163662119, 47.8813080117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2497713089, 47.7583930838 ], [ -122.2436783372, 47.757435704 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939186583, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413820969, 48.0569482281 ], [ -117.7562347833, 48.0595083721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.3833072606 ], [ -122.22977526, 47.3833226703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473765563, 47.3813544414 ], [ -122.2474225905, 47.3852649438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.2478374662 ], [ -123.0350161303, 47.253938049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.5047904492 ], [ -122.5947129537, 47.504905792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5211794514, 48.4039684769 ], [ -119.5082283693, 48.4171152484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4341632669, 48.9323868359 ], [ -119.4351159777, 48.9331846153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832074613, 47.3815237106 ], [ -119.4832088344, 47.3835435175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.8850832339 ], [ -124.1116144402, 46.8868092337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0977227603, 47.4988510864 ], [ -122.0870325094, 47.5100083536 ], [ -122.0698540138, 47.5181410628 ], [ -122.0619448123, 47.5311845564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2485902926, 46.2609157729 ], [ -119.2279364121, 46.2727922262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1798921353, 48.0395761426 ], [ -122.1790908365, 48.0404147216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0422700836, 48.2472730431 ], [ -122.026469474, 48.2565227693 ], [ -122.0229079186, 48.2627125108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284987148, 48.409540793 ], [ -119.5284865191, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046484797, 46.9587267173 ], [ -123.8025700515, 46.9620278945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.9984489029 ], [ -117.2767589116, 46.0044012908 ], [ -117.2809410701, 45.9989894093 ], [ -117.2798172641, 46.0054474608 ], [ -117.2576613456, 46.0272223173 ], [ -117.2517268724, 46.0417290027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8107624661, 47.2341040289 ], [ -119.7681464636, 47.2343020206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -119.998439324, 46.2111215603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9919981435, 46.5668134388 ], [ -118.9943545429, 46.5674942159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.3898783885, 47.3927710931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3295269338, 46.375119312 ], [ -120.3331696319, 46.3769677074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7647638069, 47.0392228487 ], [ -122.7386443358, 47.0349276176 ], [ -122.7287961018, 47.0250540857 ], [ -122.7271458299, 47.0178712921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2865268063, 47.3906729649 ], [ -122.2793135196, 47.389970334 ], [ -122.2714942577, 47.3774662501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4226493275, 46.383209281 ], [ -119.3989176751, 46.3702741916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9033027171, 47.1830360818 ], [ -120.9008694447, 47.1862212903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8153513788, 46.6707407117 ], [ -123.8122989005, 46.6665841945 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.1390929944 ], [ -122.0684124432, 47.1438395525 ], [ -122.059029398, 47.1421956268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9075966187, 46.0562013963 ], [ -118.8913479904, 46.0543459185 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509605497, 47.690504212 ], [ -122.5615375286, 47.710001753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159243491, 47.8953256029 ], [ -122.2102027734, 47.9096841492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.5767646402, 47.4862221857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5336093333, 48.5756042234 ], [ -119.5247105217, 48.5852161614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3370276268, 46.2969163285 ], [ -119.3268526166, 46.297790684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4716597285, 46.9377123473 ], [ -122.4423826497, 46.937291079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.6730634499, 47.4637949376 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3156584943, 47.5948454186 ], [ -122.3087595806, 47.5900994807 ], [ -122.2940286061, 47.590082601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9833545966, 46.1555474575 ], [ -122.9811418748, 46.1544576439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4363817139, 47.23258819 ], [ -122.4304655405, 47.2333702661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2006150998, 47.3722720586 ], [ -122.1935312742, 47.3693743374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6930399694, 48.5196228035 ], [ -117.6874542357, 48.5197336235 ], [ -117.669804598, 48.503722179 ], [ -117.6364219092, 48.5278741835 ], [ -117.593606156, 48.5397640332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397947306, 47.6583760906 ], [ -117.2397118795, 47.6707021684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9900538253, 48.0834098562 ], [ -121.9904268316, 48.0866632894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1458871745, 45.6207464818 ], [ -121.1493385256, 45.627246477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.3762548928 ], [ -120.3199265565, 46.3750583048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3141855934, 46.416664953 ], [ -120.3142184025, 46.4146304102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0029655026, 47.2660406347 ], [ -122.9709937008, 47.2786751606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5310414126, 47.8095136583 ], [ -122.5178867416, 47.8084398669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4905907506, 47.3968832449 ], [ -121.4746332727, 47.3939164723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.5778363862 ], [ -122.1795081855, 47.5879075274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0036157589, 46.14714661 ], [ -122.9949382898, 46.1422801927 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6590763437, 48.2086905534 ], [ -122.6671028849, 48.208880163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0540392956, 46.6280909268 ], [ -123.0476299632, 46.6285743251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.2009435128 ], [ -122.2455904637, 47.1960629254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9569337464, 46.9310727047 ], [ -119.8960760978, 46.9263943244 ], [ -119.8716336143, 46.9032686178 ], [ -119.8543075131, 46.8986913821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0827548583, 46.252250739 ], [ -119.084694014, 46.2595150494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.1553108605 ], [ -122.2929937518, 47.1566288415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0202611393, 47.8413912452 ], [ -120.0194056477, 47.8409567731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4056484865, 47.7456876175 ], [ -117.402291177, 47.749169702 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.0607928531, 46.4309790988 ], [ -117.0397725467, 46.4312642493 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3351658289, 46.9428080119 ], [ -117.3342443282, 46.9502697374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8800458807, 48.5473265211 ], [ -117.8743970818, 48.5473938298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.9007887846, 46.1084782427 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4344162199, 47.1475294086 ], [ -122.4343801512, 47.1489709589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5675237104, 45.6073013401 ], [ -122.5624136586, 45.6062101725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7488390649, 47.8671786834 ], [ -121.7350857122, 47.8671728801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0562728458, 47.1405796821 ], [ -122.0528218155, 47.1410552733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0009880199, 46.2136750464 ], [ -119.9996278638, 46.2207119718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2638042622, 47.8258077379 ], [ -124.2849702887, 47.8484497473 ], [ -124.3217492312, 47.8548954983 ], [ -124.3313184873, 47.8601934071 ], [ -124.3378207285, 47.8710935066 ], [ -124.3564028382, 47.8868367862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.0446019994 ], [ -124.1654679307, 47.0715130267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7271458299, 47.0178712921 ], [ -122.7247120976, 47.0145460302 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3055238703, 47.415408638 ], [ -120.3062213119, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5967641772, 47.4763429271 ], [ -117.5899202161, 47.4791586755 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.1315509218 ], [ -123.6671258406, 48.1191174479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2878136748, 46.2595687001 ], [ -119.2860031075, 46.2585535412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3947912458, 46.2315766109 ], [ -123.3894612533, 46.2116841789 ], [ -123.3840920127, 46.2062528444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922736805, 47.4901260728 ], [ -122.1922430833, 47.4941319797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3953437269, 47.0507021736 ], [ -122.3977887884, 47.0531477811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5945415128, 48.3551234308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141163677, 45.8882670084 ], [ -122.5115938422, 45.8889120074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.7546910576 ], [ -121.5492834565, 46.7628032231 ], [ -121.5483113382, 46.7701921391 ], [ -121.554831628, 46.7875507315 ], [ -121.5563143316, 46.8134073659 ], [ -121.5345232327, 46.8339911582 ], [ -121.5189752718, 46.8309746734 ], [ -121.5306436293, 46.8388115136 ], [ -121.5305321021, 46.8422134405 ], [ -121.514777234, 46.8543886165 ], [ -121.5282509494, 46.8561937641 ], [ -121.5302148924, 46.8635071098 ], [ -121.5399470088, 46.8668971706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5896360866, 47.0059926881 ], [ -120.5859736555, 47.0066138323 ], [ -120.5943172222, 47.0140340001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1266194124, 46.246327603 ], [ -119.1264880523, 46.2492677583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156424716, 47.3005954736 ], [ -122.5153285839, 47.3019754864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1012651236, 48.6145465613 ], [ -118.1130354822, 48.6245416722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643165436, 47.8830950253 ], [ -122.2583128195, 47.8895409718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921631348, 48.1882508645 ], [ -122.1437081841, 48.18863098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6524298189, 47.7572284351 ], [ -122.6551873979, 47.7579966203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8303255251, 45.9865466391 ], [ -122.8439980452, 46.0036486101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249389869, 47.5271305474 ], [ -122.3269269693, 47.5291188556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9095978806, 46.3282371415 ], [ -122.9058084856, 46.3540274103 ], [ -122.9078330534, 46.3671239838 ], [ -122.9031362266, 46.3853907412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1024989284, 47.9747837779 ], [ -122.1027482966, 47.978079114 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3489538413, 47.8018716143 ], [ -117.3472122709, 47.8244633117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2564882876, 47.6744377468 ], [ -117.2332386303, 47.6740978586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3312487114, 47.4630152497 ], [ -122.3322816003, 47.4672044794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1352981522, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8926430173, 47.1852194677 ], [ -120.8544979241, 47.1749253538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8158546232, 46.9740606365 ], [ -123.8144960068, 46.9745245963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6086838618, 47.8395393993 ], [ -117.6248994904, 47.8447512634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050754567, 45.8579274145 ], [ -122.7086008695, 45.8700022682 ], [ -122.7304474004, 45.8859692149 ], [ -122.7405471815, 45.9025011825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2323979204, 48.5104945464 ], [ -122.2283833788, 48.5104834855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538906727, 46.3719036566 ], [ -122.5340666871, 46.3650761505 ], [ -122.5220157903, 46.3531056437 ], [ -122.5208405998, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.4600261231, 46.3341989605 ], [ -122.4436211994, 46.3327194151 ], [ -122.4239755806, 46.3243794359 ], [ -122.4116026874, 46.3288268712 ], [ -122.4065880617, 46.3248804093 ], [ -122.4105058581, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.3741708168, 46.3113203362 ], [ -122.3510605635, 46.3071011772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2245455295, 47.6632648417 ], [ -120.2234272269, 47.6648157581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471628144, 48.4689593505 ], [ -122.3443533309, 48.4699161341 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4651180339, 46.2822112261 ], [ -123.4572843275, 46.2706003653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114439556, 47.4631544785 ], [ -122.1255239767, 47.4635158088 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7901966083, 48.1001446551 ], [ -119.7868478019, 48.101573517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.1003946329, 46.424564911 ], [ -117.1253712638, 46.4309663929 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4644208312, 46.2537605149 ], [ -119.3970004337, 46.2614856786 ], [ -119.3679545991, 46.2490442826 ], [ -119.3600450664, 46.2396584936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6172366357, 48.3298494085 ], [ -119.6125603258, 48.3338920433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5108612391, 48.7867012138 ], [ -122.5259931748, 48.7945741767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8283708435, 46.8574846811 ], [ -122.7812799701, 46.8608150774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398690039, 47.6488703847 ], [ -117.2398365744, 47.6534457073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3617197932, 48.8661339983 ], [ -117.3624241485, 48.8688400718 ], [ -117.3572304808, 48.8661780923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2764080485, 47.7535766576 ], [ -122.2638528237, 47.7582985129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7973817559, 47.8650366901 ], [ -121.7774669653, 47.8678385583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7803536315, 48.0276618969 ], [ -122.7809989146, 48.0297888001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5324173506, 47.3958007915 ], [ -121.5160199943, 47.3953842075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.1032121332 ], [ -119.322729826, 47.1025870681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5905461616, 47.6429198089 ], [ -117.5826104882, 47.642912863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6437803284, 47.5650600843 ], [ -122.6356948558, 47.5650400988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2995949834, 47.4678600276 ], [ -120.2975047463, 47.4351022237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9365744608, 47.6873896384 ], [ -121.9716304243, 47.6944719968 ], [ -121.9810154345, 47.7012895486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869343886, 47.298301147 ], [ -122.1774995641, 47.3024217933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2103050963, 47.4923049652 ], [ -123.2231492867, 47.4962089759 ], [ -123.2418846075, 47.4953345304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8351070251, 46.2928789335 ], [ -122.8112469946, 46.2969576394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0397574174, 46.474224958 ], [ -117.0422413047, 46.4742309777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5645756943, 48.3674740397 ], [ -119.5324591897, 48.3860626961 ], [ -119.5211794514, 48.4039684769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223421817, 47.6560094062 ], [ -122.321753728, 47.6660998622 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622122897, 48.7536867617 ], [ -122.4616138919, 48.7607636257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2538113908, 47.4617511143 ], [ -122.2498888662, 47.4623828171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4107130626, 46.2554072697 ], [ -120.3982811706, 46.2753155879 ], [ -120.3693689354, 46.2786231674 ], [ -120.3580676477, 46.2967738517 ], [ -120.3330101537, 46.3081349737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.2513545129 ], [ -119.0827548583, 46.252250739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276587856, 47.2283207799 ], [ -122.4280346059, 47.2286568082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7194158446, 46.5756303426 ], [ -122.7173359337, 46.5756310576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0451921636, 46.416527455 ], [ -117.0442671142, 46.4171675734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5169772116, 46.6260720818 ], [ -120.5114853073, 46.6260626792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8245858874, 45.6986339731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4156991339, 48.7941935233 ], [ -122.395950267, 48.8041008656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3961715735, 47.919272726 ], [ -119.4353927693, 47.9216556451 ], [ -119.5135000122, 47.950443261 ], [ -119.5329788462, 47.9510554207 ], [ -119.5422997674, 47.9443701814 ], [ -119.564793237, 47.9428888341 ], [ -119.6371724962, 47.9520756207 ], [ -119.6479252829, 47.9603062437 ], [ -119.6534084763, 47.9721497191 ], [ -119.6485168005, 47.9848915126 ], [ -119.6506748055, 47.9912018634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4055514032, 47.6207224415 ], [ -119.3805932317, 47.6235798402 ], [ -119.3647672058, 47.6193901694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8122989005, 46.6665841945 ], [ -123.809145399, 46.6649346237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.2060951858 ], [ -119.1071132149, 46.2075458387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3362411853, 47.4550266445 ], [ -120.3360094985, 47.4608143832 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730113456, 47.2256809047 ], [ -117.0730185905, 47.2267941681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289242991, 47.7341017926 ], [ -122.3236068716, 47.7340600888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0941270076, 47.7457487872 ], [ -121.0893942423, 47.7454347093 ], [ -121.0764752001, 47.7551681673 ], [ -121.0775873896, 47.7686150769 ], [ -121.0729087438, 47.773323135 ], [ -121.060451893, 47.7803801069 ], [ -121.0353893482, 47.7843056375 ], [ -121.0149919147, 47.7731379178 ], [ -120.9890649278, 47.7669597776 ], [ -120.9403149112, 47.7817991783 ], [ -120.926773205, 47.7835826432 ], [ -120.911885984, 47.7797192708 ], [ -120.8736181816, 47.7912719586 ], [ -120.8260870372, 47.777964567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8553269485, 47.8483119805 ], [ -117.8483182897, 47.8533575039 ], [ -117.838164281, 47.8740349974 ], [ -117.8385186675, 47.8839866036 ], [ -117.8160774557, 47.904185807 ], [ -117.7729376468, 47.9319295106 ], [ -117.7601643293, 47.9514802553 ], [ -117.7306706015, 47.9778797622 ], [ -117.730227038, 47.9908989454 ], [ -117.7260701767, 47.9948236433 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6235085123, 47.0432551254 ], [ -120.6108296856, 47.0345615907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3360094985, 47.4608143832 ], [ -120.3370917545, 47.4657444174 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9357154749, 46.9527589941 ], [ -122.9380064027, 46.9527490926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286460195, 47.6218398679 ], [ -122.3255888568, 47.6309781209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4001468865, 46.2808655483 ], [ -119.3888239449, 46.2866351388 ], [ -119.3850550864, 46.2969567513 ], [ -119.3798468993, 46.3001340733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1147080098, 48.2225207152 ], [ -117.0718319169, 48.2146041919 ], [ -117.0491706107, 48.1875683679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6640345732, 48.6790336908 ], [ -118.6592835463, 48.69353696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2343676861, 48.3157860192 ], [ -122.2346365429, 48.3169213007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2010536613, 46.7337602693 ], [ -117.1937212048, 46.7334218163 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112846076, 47.6862395483 ], [ -117.4112120534, 47.6843406722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339867358, 48.3531223429 ], [ -117.854425242, 48.4239853112 ], [ -117.9008434138, 48.4812158123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0547323353, 46.1734065603 ], [ -119.0609392727, 46.1762466146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.8299990291 ], [ -117.1906863712, 47.8382800486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8839143851, 46.9770579066 ], [ -123.8824654132, 46.9762996857 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3363467181, 47.5916540334 ], [ -122.3366396811, 47.6036659781 ], [ -122.3448873174, 47.6170758429 ], [ -122.3435956074, 47.6246542116 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0102677154, 48.2683045733 ], [ -121.9969976219, 48.2744489921 ], [ -121.9882608553, 48.2735411001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1018056421, 47.1837746945 ], [ -123.0966058497, 47.1747523811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2601698309, 48.2506931926 ], [ -124.2595417057, 48.249031188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.4259053325 ], [ -117.2640416943, 46.4083472778 ], [ -117.2471726354, 46.4035618315 ], [ -117.2263614526, 46.4056970206 ], [ -117.2143023696, 46.4117358872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153052769, 48.1518278439 ], [ -122.1937378718, 48.1522064888 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796927801, 45.9278618295 ], [ -122.3796394499, 45.9403750242 ], [ -122.3704124175, 45.9461267079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2271386392, 48.1520086536 ], [ -122.2153052769, 48.1518278439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2379325105, 48.3993275149 ], [ -122.2406467581, 48.4027244437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3874436362, 47.0046753037 ], [ -123.3831477693, 46.998968611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133077561, 47.3151824274 ], [ -122.3133014011, 47.3166524228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0229079186, 48.2627125108 ], [ -122.0149147028, 48.26670449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393798517, 47.5620616142 ], [ -122.339393127, 47.5668492127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2028039844, 47.8632306636 ], [ -120.1924069122, 47.866359942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6154441079, 47.5048209466 ], [ -122.6100956059, 47.5047904492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8030737493, 46.9773424769 ], [ -123.7745905953, 46.9816357852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.8022660378 ], [ -122.9278853234, 47.7838704693 ], [ -122.9185752836, 47.7735579364 ], [ -122.8995415369, 47.7691442355 ], [ -122.8927871706, 47.7538639977 ], [ -122.8777886746, 47.743200821 ], [ -122.8964164726, 47.6985807685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989034271, 47.8005733284 ], [ -122.4984055596, 47.7996307337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8764947699, 46.5550803084 ], [ -122.8769701281, 46.5656688487 ], [ -122.886654867, 46.5818960485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.0718480284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426450193, 47.2398211593 ], [ -117.0400651005, 47.2403316548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.5692199392 ], [ -122.3192746176, 47.5777213746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7255609263, 47.1697949724 ], [ -119.6943596205, 47.1892246234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6669203097, 45.6632919305 ], [ -122.6645970993, 45.6715670557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6468785968, 48.7737685937 ], [ -118.6164943357, 48.7884410173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1332932554, 47.7045387135 ], [ -117.0986362805, 47.712113508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2801945178, 48.4926127654 ], [ -122.2745076704, 48.4947462696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007224617, 46.1436344597 ], [ -122.8991903157, 46.1440948709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9437717492, 47.1965328965 ], [ -120.9462399136, 47.1968530327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4406634454, 48.3884548136 ], [ -119.4751978366, 48.3959072026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9072875101, 48.5485390558 ], [ -117.9122497826, 48.5496184382 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.2331168365 ], [ -119.8640137768, 47.2332276959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6018306923, 46.1025658531 ], [ -119.6010199635, 46.1841411231 ], [ -119.6325132774, 46.1868027068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152365358, 46.2321748638 ], [ -119.1978814184, 46.2296948397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7065027719, 48.2686887461 ], [ -121.6816043754, 48.269260962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3312866855, 46.3333696967 ], [ -119.3168183585, 46.3257612363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.4040732772 ], [ -117.0455119005, 46.4058071413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730024916, 47.2240691944 ], [ -117.0730113456, 47.2256809047 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5900304239, 46.9331912019 ], [ -122.563890205, 46.9320426175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5509551438, 47.3216616972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8916600156, 46.4181629111 ], [ -122.8895694243, 46.4396122337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1403017666, 47.3713844944 ], [ -120.1145793468, 47.3620058597 ], [ -120.091885291, 47.3467454248 ], [ -120.0759154793, 47.3283402333 ], [ -120.0718463794, 47.3150765031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266865938, 48.1904292048 ], [ -122.6268548608, 48.1963630554 ], [ -122.6340939948, 48.1993242257 ], [ -122.634532628, 48.2055146884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.7170064104 ], [ -117.4113416177, 47.7366272099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873052723, 46.0007282614 ], [ -118.3873059636, 46.0008733795 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021438178, 46.1517167071 ], [ -119.2021936567, 46.1479617048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561483502, 45.5765439754 ], [ -122.3371199918, 45.5743187936 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.1318940785, 46.233167577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.7904698955 ], [ -117.1171469709, 46.81324534 ], [ -117.1147380578, 46.8287560939 ], [ -117.1250730248, 46.8420876815 ], [ -117.1254311457, 46.8526895018 ], [ -117.1311720543, 46.8600078141 ], [ -117.1257662315, 46.8805636369 ], [ -117.1162608729, 46.8915969469 ], [ -117.0768183035, 46.9087074668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7380382951, 48.6477058434 ], [ -118.7340738301, 48.6404765011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3371199918, 45.5743187936 ], [ -122.3368309639, 45.5742854262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622283159, 48.7681610573 ], [ -122.468301725, 48.7760746279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643571316, 48.430063418 ], [ -122.2633531437, 48.4386943331 ], [ -122.2563532279, 48.4450517182 ], [ -122.2437846159, 48.4455328201 ], [ -122.2376759016, 48.4518050892 ], [ -122.2340372998, 48.459902027 ], [ -122.2364699855, 48.4678814769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3600916592, 46.8977782002 ], [ -117.3480763006, 46.9039214532 ], [ -117.3512048046, 46.911617455 ], [ -117.3488390721, 46.920878082 ], [ -117.3334887527, 46.9374674228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1948130997, 47.7039806698 ], [ -120.2022962075, 47.715799214 ], [ -120.2016705042, 47.7214958149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9791440454, 46.3170643063 ], [ -119.9790026711, 46.3316725974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9813954636, 47.1994152348 ], [ -121.9791170661, 47.1993968717 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2977336595, 47.4242381539 ], [ -120.2969810046, 47.4206856987 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2332386303, 47.6740978586 ], [ -117.2196536686, 47.6737301547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0194056477, 47.8409567731 ], [ -120.0148285272, 47.8398314423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1886206387, 47.478462399 ], [ -122.1965538402, 47.4840107581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.2805652971 ], [ -122.2579004931, 47.2918141977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5942584951, 45.6125607215 ], [ -122.5755446732, 45.6090058957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.1597721166 ], [ -122.6377635069, 48.1650503371 ], [ -122.6372168781, 48.1706516249 ], [ -122.6311760448, 48.1709418294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3923505431, 47.9892462948 ], [ -124.390330186, 48.0234983063 ], [ -124.3861356451, 48.0343724022 ], [ -124.3771964333, 48.0428294994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9414768713, 46.633570246 ], [ -122.9550744316, 46.6440853642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2262812506, 47.4777333495 ], [ -122.2243682744, 47.4778018949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398365744, 47.6534457073 ], [ -117.2398112843, 47.6571200997 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8612713575, 47.0847839089 ], [ -119.862512719, 47.0861911278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9672362186, 47.4364490931 ], [ -121.9463085291, 47.4610684243 ], [ -121.8925478736, 47.4771180887 ], [ -121.884585692, 47.504313222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9899301488, 48.0831794362 ], [ -121.9880421437, 48.0837433176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9623607954, 46.955497291 ], [ -119.9739327012, 47.0005510232 ], [ -119.9555037804, 47.0083586637 ], [ -119.9485401068, 47.0155594946 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249301321, 47.4940508534 ], [ -122.325629622, 47.5091003278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6017358428, 48.2552691488 ], [ -121.6020400669, 48.2595802573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.300279957, 47.9256460771 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.2111215603 ], [ -119.9393101914, 46.196885705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4672397114, 45.719390102 ], [ -121.486682184, 45.7277580783 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9996278638, 46.2207119718 ], [ -119.9995278053, 46.2401318028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646817112, 47.503963135 ], [ -117.5646472962, 47.5079585085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2701126525, 47.1419665364 ], [ -119.285225107, 47.1460797472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0661637707, 47.9143207671 ], [ -122.0436242083, 47.9056634606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5056560072, 48.7850058356 ], [ -122.5108612391, 48.7867012138 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.6365454184 ], [ -120.5304207056, 46.6430874404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1814065807, 48.04479845 ], [ -122.1839911758, 48.0494099826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.2214727186 ], [ -123.959008749, 47.2322639062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6056799649, 46.4748288907 ], [ -117.6041932764, 46.4748995993 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6938570638, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4819452858, 46.2520832532 ], [ -119.4644208312, 46.2537605149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2317004486, 47.8819477141 ], [ -122.2196680439, 47.8802932531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0372995865, 47.9328968903 ], [ -119.0177040011, 47.9367931061 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7681464636, 47.2343020206 ], [ -119.7468893165, 47.2346362782 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.9818595874 ], [ -122.2471159221, 48.9855358738 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1417952785, 48.074895211 ], [ -123.1231539266, 48.0732680847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255548441, 48.5141869713 ], [ -122.2261409872, 48.5282544504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444983864, 47.6942136653 ], [ -122.3445897421, 47.7021703261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8208435355, 46.7340210389 ], [ -118.7557863554, 46.7871441721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0986125857, 47.6645874444 ], [ -122.0911114715, 47.6582107586 ], [ -122.078551081, 47.6557377147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9074799263, 46.1442853545 ], [ -122.9007224617, 46.1436344597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3255888568, 47.6309781209 ], [ -122.3224725894, 47.655393277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5495094772, 46.6453560334 ], [ -118.4999251675, 46.6516187698 ], [ -118.4903184729, 46.6611044962 ], [ -118.4227108674, 46.6969057794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0106509547, 47.9393125368 ], [ -118.9560547959, 47.9246186729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8277972731, 47.3865787228 ], [ -122.8288444363, 47.396432791 ], [ -122.8375622701, 47.402573245 ], [ -122.8415602841, 47.410924864 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6823571827, 47.7086751463 ], [ -122.6690587997, 47.7496337056 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8903778041, 46.415684535 ], [ -122.8910176347, 46.421545267 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663139585, 47.8342508992 ], [ -122.2724340167, 47.8395507144 ], [ -122.2742164355, 47.8479952638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9055307646, 48.5363629877 ], [ -117.9058230966, 48.5454377559 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6869120748, 47.6932883974 ], [ -122.6823571827, 47.7086751463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1636333379, 47.4006707974 ], [ -123.1789488644, 47.4041675409 ], [ -123.1925948411, 47.4136830468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3521889436, 48.8735003742 ], [ -117.3286715777, 48.892802401 ], [ -117.3238638229, 48.9174144214 ], [ -117.3133128707, 48.9245515322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.4111862674 ], [ -122.623334611, 47.4284900867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.6957536487 ], [ -122.3295202166, 47.7043262966 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9172628783, 46.1916920438 ], [ -119.8764960512, 46.187636732 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.6108296856, 47.0345615907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146803025, 46.3895637812 ], [ -120.3149961011, 46.3824800478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7922032406, 47.476414011 ], [ -122.7663244649, 47.4942350849 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7347455537, 48.2990724352 ], [ -118.7493162362, 48.337391075 ], [ -118.7408226152, 48.3606961167 ], [ -118.7499280968, 48.3721707244 ], [ -118.7467825618, 48.3916586524 ], [ -118.7320955432, 48.399702401 ], [ -118.737561094, 48.4139729393 ], [ -118.7275775146, 48.4265108249 ], [ -118.7403276827, 48.4401809605 ], [ -118.7536657363, 48.4657381976 ], [ -118.7469823226, 48.4725287776 ], [ -118.7358955757, 48.4734852504 ], [ -118.7280051955, 48.4797806169 ], [ -118.7365952788, 48.4817782442 ], [ -118.7412126364, 48.4967914056 ], [ -118.7340631192, 48.5303352221 ], [ -118.7496554917, 48.5477265072 ], [ -118.7437512212, 48.5542247409 ], [ -118.7430996768, 48.5612042754 ], [ -118.7481235162, 48.5686839207 ], [ -118.7432636175, 48.5766708895 ], [ -118.7392164438, 48.6029509222 ], [ -118.7301109365, 48.6209221799 ], [ -118.7302329781, 48.6349158109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1638845081, 47.7585835533 ], [ -122.1646271104, 47.7572105358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526290082, 47.2744486003 ], [ -122.1407606558, 47.2634183904 ], [ -122.1282708819, 47.2605031318 ], [ -122.1182659294, 47.2502870454 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6687451729, 47.5798764344 ], [ -117.6629212073, 47.5817195825 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.5105092144 ], [ -122.2352752464, 48.510504468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.2742763685, 46.855512758 ], [ -122.2666996294, 46.8629061998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7022061254, 47.8572690469 ], [ -121.6924466276, 47.8522943399 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6813768359, 48.8537575857 ], [ -121.6884690105, 48.8489003507 ], [ -121.6870544478, 48.8446393966 ], [ -121.6927461801, 48.8468788469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.6648157581 ], [ -120.2080808869, 47.675976654 ], [ -120.2072556027, 47.690389145 ], [ -120.2161904322, 47.7091769834 ], [ -120.2275722374, 47.7218054046 ], [ -120.2262456476, 47.7319503729 ], [ -120.2137503235, 47.7509668337 ], [ -120.1983417337, 47.7602672279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1411095244, 46.2154260444 ], [ -119.1371263893, 46.2216194455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5198277142, 47.6444797699 ], [ -122.5232713274, 47.6536299928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6127739583, 48.5004551192 ], [ -122.612637467, 48.5100800768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4347516102, 47.1123943169 ], [ -122.4348569541, 47.1194809791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7584799402, 47.3744092288 ], [ -122.7478911271, 47.3780569673 ], [ -122.7162522863, 47.3743552356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3464829935, 47.2161092989 ], [ -122.3420450241, 47.2135776972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8085220192, 47.3154321744 ], [ -118.7556512324, 47.3133928496 ], [ -118.6991152602, 47.3325467605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496648896, 48.0177222579 ], [ -117.3497942054, 48.0321149063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8665119074, 46.3036401573 ], [ -122.8562709135, 46.2938613758 ], [ -122.8450829264, 46.2935798136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9699877988, 46.7110483932 ], [ -122.9675307628, 46.7105506649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3798468993, 46.3001340733 ], [ -119.3680598924, 46.3027624934 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6305634117, 47.0911974641 ], [ -122.6168907485, 47.0952000036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1050710923, 46.5588432113 ], [ -117.1186833573, 46.5672526465 ], [ -117.133768563, 46.5681320318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0997711539, 46.223724902 ], [ -119.0836074304, 46.2194354617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.7115319431, 47.7789042748 ], [ -120.7149150326, 47.8093423824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0367508916, 47.9006838682 ], [ -122.0166827624, 47.8768683004 ], [ -122.0078653292, 47.872487544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": 170 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.8120676338 ], [ -119.6287415959, 47.8154486037 ], [ -119.3841243851, 47.8153402952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619448123, 47.5311845564 ], [ -122.0632060501, 47.5412525635 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7162522863, 47.3743552356 ], [ -122.7114277659, 47.3745220756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9531139031, 46.7191026108 ], [ -122.9527396272, 46.720041065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2754741187, 46.7999623833 ], [ -122.2907543651, 46.8008242314 ], [ -122.2999838929, 46.812840824 ], [ -122.3010136823, 46.8299402753 ], [ -122.3179158372, 46.8309769948 ], [ -122.3198113886, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3895298763, 47.9579786515 ], [ -124.4034665195, 47.9674631851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220411659, 47.6652612865 ], [ -122.3206620248, 47.6769065098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826564308, 47.5676722178 ], [ -117.6826777243, 47.5721438687 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3637055225, 46.8798827877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2916171614, 47.4596862569 ], [ -122.2896393743, 47.4638618378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055405288, 45.5917612872 ], [ -122.4055508584, 45.5906041586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446909131, 47.7817536234 ], [ -122.3181975005, 47.8175907621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8130784885, 47.8092766362 ], [ -119.8071947642, 47.81403994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567735413, 47.1311262985 ], [ -119.2576559361, 47.13692103 ], [ -119.2626695043, 47.1398689271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353283591, 47.7777753423 ], [ -122.3245572303, 47.7776430656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4369512503, 48.9352749432 ], [ -119.4353841771, 48.9477318207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1407187037, 46.2701649585 ], [ -118.1377253327, 46.2707786892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.4825221847 ], [ -117.580789949, 47.4831439672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586957254, 46.8532935721 ], [ -122.8586860494, 46.8548429235 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3570622964, 47.2404187331 ], [ -122.356727114, 47.2430577065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4665031792, 47.1763219389 ], [ -122.4630590407, 47.1874722949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5876777121, 48.1210599346 ], [ -122.588157825, 48.1230525484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288917189, 47.6068663319 ], [ -122.6288029427, 47.6101244229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2079538886, 46.7335435597 ], [ -122.1961396485, 46.7486771117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289448539, 47.4433692551 ], [ -122.3239010868, 47.4397926017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.3415217482 ], [ -119.3312866855, 46.3333696967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383520005, 48.1519754742 ], [ -122.2271386392, 48.1520086536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7766696657, 48.0135236739 ], [ -122.7803536315, 48.0276618969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2518648885, 47.7585697854 ], [ -122.2497713089, 47.7583930838 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3531195123, 46.244832268 ], [ -119.3263441939, 46.2473869538 ], [ -119.2942399537, 46.2575534355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2065091301, 47.3725609481 ], [ -122.2022136155, 47.3725592844 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2076567487, 47.8095958449 ], [ -122.2074687841, 47.8201159821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4110411782, 47.4243576922 ], [ -121.4105333679, 47.412298435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535287712, 47.1322250265 ], [ -119.8534565369, 47.1904786655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6011440864, 46.7379133851 ], [ -119.2452761336, 46.7382468305 ], [ -119.2171199962, 46.7443848693 ], [ -119.1975233079, 46.7384199394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5888210566, 46.9701558628 ], [ -118.6425828517, 46.9708731434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6145007274, 47.7154775691 ], [ -122.6156582337, 47.7161387981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.6536361132 ], [ -118.1601671048, 47.6539518845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3189900834, 47.5793697605 ], [ -122.3207560536, 47.5899474422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3594319704, 47.6686111382 ], [ -117.3578020835, 47.6693777985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.8226983388 ], [ -118.6450781398, 46.8426071143 ], [ -118.6291145158, 46.8726381998 ], [ -118.6142343677, 46.889912435 ], [ -118.610684004, 46.9065381072 ], [ -118.5819937965, 46.9413896332 ], [ -118.571639149, 46.9627633161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1953416359, 47.4994564392 ], [ -122.1979386219, 47.5094150608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899095304, 47.721909145 ], [ -117.4957696028, 47.7261247472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4070872362, 47.7441952253 ], [ -117.4056484865, 47.7456876175 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2267789418, 46.0180871043 ], [ -119.2574764079, 46.0002405136 ], [ -119.3328114294, 45.9767889078 ], [ -119.3425714208, 45.9645105136 ], [ -119.3375517758, 45.9498941429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7082095882, 46.4297795526 ], [ -122.703586609, 46.4274712477 ], [ -122.7097401995, 46.4213142088 ], [ -122.7094939136, 46.4057567359 ], [ -122.689147502, 46.3885347527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.5708280871 ], [ -117.5687388318, 47.5884737405 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6525696935, 48.0041955683 ], [ -119.676555192, 48.0264537662 ], [ -119.6600734659, 48.0750839441 ], [ -119.6601971396, 48.0871726218 ], [ -119.6677344082, 48.0980217898 ], [ -119.67945547, 48.1025546083 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.6731312949 ], [ -122.1151301203, 47.6720446521 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5209883629, 45.728362545 ], [ -121.4949520588, 45.7249743594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9617770984, 46.9451030468 ], [ -119.9600764508, 46.9404487329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9781878444, 46.3023441821 ], [ -119.9783785412, 46.3052986594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395409867, 47.6757907672 ], [ -117.2396887191, 47.6862002896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3998093609, 47.2472450781 ], [ -122.3759701159, 47.2469906191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3812522854, 47.6538559571 ], [ -117.3696991532, 47.6539119327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4770208515, 46.690052266 ], [ -120.4742083499, 46.700892472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5818052442, 46.629370911 ], [ -120.5724635589, 46.6251660017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0435504851, 47.3579738218 ], [ -122.0376047767, 47.3579773831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1754150379, 47.811547043 ], [ -122.1526476236, 47.8049830492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1603852076, 46.8270351021 ], [ -123.139226139, 46.8258098296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7947532586, 47.4893941273 ], [ -121.7957761395, 47.4887865294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5446847676, 48.8138630642 ], [ -122.5530762786, 48.8225160709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0380002259, 47.9325544575 ], [ -119.0372995865, 47.9328968903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5784341072, 46.6855847693 ], [ -121.5805077567, 46.6890208076 ], [ -121.5774144898, 46.6931081642 ], [ -121.5824741364, 46.7004388608 ], [ -121.5754153801, 46.7106518512 ], [ -121.5775304787, 46.7192388112 ], [ -121.5687127572, 46.732258391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6923069088, 47.6636431264 ], [ -122.6926355567, 47.6632523312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4133229534, 47.6590747649 ], [ -117.4134370239, 47.6535198038 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.4347156331 ], [ -120.3248875214, 47.4382457109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023974793, 46.9687249499 ], [ -123.8029450786, 46.9697219828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2103710587, 46.9691134856 ], [ -121.1674967694, 46.9781722496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3418776019, 46.2095624858 ], [ -119.3224569911, 46.1995501523 ], [ -119.2767500174, 46.1970146173 ], [ -119.2565858958, 46.1882981658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.4409909149 ], [ -120.3362411853, 47.4550266445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7477078919, 46.8989696084 ], [ -119.6446041548, 46.89906961 ], [ -119.6184725877, 46.8939308682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9762561497, 48.135096529 ], [ -118.9780832374, 48.1620197263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3601967875, 48.1093444067 ], [ -123.355714051, 48.1030129375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3450935078, 47.7322891749 ], [ -122.3451133369, 47.7341530585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5639273641, 46.9693979048 ], [ -118.5710608079, 46.9700238316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.0489497271, 46.7350588091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3134257955, 47.2979565948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3625630309, 47.6667062903 ], [ -117.361293531, 47.6674773757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7649510613, 47.0430902917 ], [ -122.7647638069, 47.0392228487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200293789, 46.4169522648 ], [ -120.3038736838, 46.4140405564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3113887255, 47.2800166221 ], [ -122.3135126494, 47.2840032145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6929086258, 47.0122908625 ], [ -122.691647237, 47.0115068577 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4751894509, 48.7143961658 ], [ -122.4744175105, 48.7139080205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2997979412, 47.4682860937 ], [ -120.3005913938, 47.4765744345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2374372336, 48.2352708759 ], [ -122.2456895186, 48.2439992336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2231220368, 46.277953835 ], [ -118.2202318761, 46.2679666309 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9991848792, 47.2312647073 ], [ -119.9790240031, 47.2432862158 ], [ -119.9536791305, 47.233042477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.6050020592 ], [ -122.4838497619, 46.6021253382 ], [ -122.4732795737, 46.6069408848 ], [ -122.4673707706, 46.6036301167 ], [ -122.4500625677, 46.6041140274 ], [ -122.4409160896, 46.6008817765 ], [ -122.4151954073, 46.5784671948 ], [ -122.4059420339, 46.576299297 ], [ -122.3424654966, 46.5855862749 ], [ -122.3033441932, 46.5641172674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3578020835, 47.6693777985 ], [ -117.3500629955, 47.6709209625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0800536366, 46.2333845599 ], [ -119.0824824346, 46.2383223812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376831738, 47.9777063656 ], [ -122.1376928426, 47.9781939272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050597877, 47.6433614356 ], [ -122.7045690526, 47.6571681504 ], [ -122.6927958127, 47.661573015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.7162401177 ], [ -122.9531139031, 46.7191026108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4975542478, 47.7988312911 ], [ -122.4984055596, 47.7996307337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0105057584, 47.9398197883 ], [ -119.0005313016, 47.9426815467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3664685234, 47.6539039945 ], [ -117.3473440936, 47.6538234455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6707470211, 47.5494494474 ], [ -122.6709875264, 47.5540420396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5417481504, 46.93783701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0801746668, 47.6417804378 ], [ -120.0767740067, 47.6417886706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1937187948, 47.6998534485 ], [ -120.1948130997, 47.7039806698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.3038957285, 46.7578975125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1354894847, 48.7101414512 ], [ -121.1220771925, 48.7109441126 ], [ -121.1150297344, 48.7073618219 ], [ -121.1093361213, 48.6954098047 ], [ -121.0998434043, 48.6894739435 ], [ -121.0945409463, 48.6918135397 ], [ -121.0962773257, 48.7095518988 ], [ -121.0828527337, 48.7097458743 ], [ -121.0780622172, 48.7166359531 ], [ -121.0562083367, 48.7288096268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9761197664, 46.7176133986 ], [ -122.9752113547, 46.7336230278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3637186054, 47.1582777108 ], [ -122.3478885514, 47.157627397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839911758, 48.0494099826 ], [ -122.1844675978, 48.0584615787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4066398664, 47.7632226212 ], [ -117.4044843472, 47.7691968077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0611804157, 48.5291856242 ], [ -121.9951021272, 48.5298846785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3151264897, 47.6852564017 ], [ -122.3059209037, 47.6920504533 ], [ -122.3055000322, 47.6975803085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.3492095996 ], [ -120.1698660388, 46.3410315909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1777008261, 47.2523092089 ], [ -123.1595614502, 47.2522250859 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.6248548642 ], [ -122.5155441649, 47.6357793786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1611915713, 47.7452096371 ], [ -122.1523661986, 47.7330804139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.7870908551 ], [ -117.3384306266, 47.7875972066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1027482966, 47.978079114 ], [ -122.1055377983, 47.9978871915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.1580428725 ], [ -122.0342099984, 47.1595496539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6680924655, 48.3230367393 ], [ -119.6615285314, 48.3191457527 ], [ -119.629552896, 48.3205927715 ], [ -119.6172366357, 48.3298494085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.9501761308, 46.9833007241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4622475833, 48.9998737464 ], [ -119.4638532324, 49.0000867262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241669698, 46.4325560871 ], [ -119.0175921586, 46.4482685616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1479862888, 47.6503824795 ], [ -120.1271739213, 47.6633503955 ], [ -120.1265553381, 47.657244559 ], [ -120.1204618275, 47.6534221606 ], [ -120.0801746668, 47.6417804378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.5100800768 ], [ -122.6126173187, 48.5117929838 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0631995935, 46.2983588775 ], [ -124.0561354019, 46.2902587967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943463684, 46.6386317502 ], [ -120.5818052442, 46.629370911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802638858, 47.8059839555 ], [ -122.3802579386, 47.804112396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1563756705, 46.5189965757 ], [ -122.1144886609, 46.5370987947 ], [ -122.0753610512, 46.5476298644 ], [ -122.0066412409, 46.5359150399 ], [ -121.9865919137, 46.5386883542 ], [ -121.9572975987, 46.5353534207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260671635, 48.3402015788 ], [ -122.6126424216, 48.3479609208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.7571184025 ], [ -121.5176267241, 45.7510393509 ], [ -121.5237581372, 45.7438284052 ], [ -121.5209883629, 45.728362545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0445267647, 47.980223996 ], [ -119.0128652831, 47.9734162413 ], [ -119.0033625218, 47.9639235084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885742414, 47.9807304066 ], [ -122.188128621, 47.9807982931 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6057120793, 46.9414897752 ], [ -122.593279583, 46.934769492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940286061, 47.590082601 ], [ -122.2539138096, 47.5892523535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0194447706, 47.3543865463 ], [ -122.0202766541, 47.3583922895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567131133, 47.1164713022 ], [ -119.2567735413, 47.1311262985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0548732503, 46.3323172772 ], [ -124.054617725, 46.3453645423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478874183, 46.4418799904 ], [ -122.8408960953, 46.4378300484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3600450664, 46.2396584936 ], [ -119.3509475564, 46.221897885 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754291602, 47.8437264887 ], [ -121.6542540009, 47.8363873413 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6636624539, 48.1604813241 ], [ -119.6696000423, 48.1820762782 ], [ -119.713417765, 48.2196444485 ], [ -119.7243645351, 48.2458410328 ], [ -119.7212000555, 48.2626191576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0298502289, 46.1536456355 ], [ -119.0341737891, 46.1565283618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281070641, 47.3580335124 ], [ -122.1254159669, 47.3580621765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9810154345, 47.7012895486 ], [ -121.9842126941, 47.7093339084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4638096383, 48.7709035452 ], [ -122.4626339661, 48.7713428245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7516443954, 48.9896016788 ], [ -122.7520415456, 48.9961053398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667315548, 47.4648600499 ], [ -122.2643040212, 47.455548918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3487077695, 47.7814262958 ], [ -122.338699596, 47.7777824155 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9199492819, 46.1384787271 ], [ -122.9165979703, 46.1447449432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2900662647, 47.2038050564 ], [ -122.2839041915, 47.2030418132 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.5604385799, 47.2858209621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074639212, 47.8123509195 ], [ -117.4189635614, 47.8314948096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.5147408998 ], [ -117.7309310756, 48.5140766628 ], [ -117.7123099829, 48.5025346103 ], [ -117.6930399694, 48.5196228035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1360883381, 48.2791408008 ], [ -118.1492755058, 48.3030819249 ], [ -118.1468751595, 48.3068128255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.1234239447 ], [ -122.9228006992, 46.1347958394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954733672, 48.3369797762 ], [ -122.2917893864, 48.3357459775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500629955, 47.6709209625 ], [ -117.3468192298, 47.6709658181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9303556413, 46.9761338415 ], [ -122.920784729, 46.9880445401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224725894, 47.655393277 ], [ -122.3220411659, 47.6652612865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6419803649, 47.815343803 ], [ -119.6399303545, 47.813732472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2911115679, 47.1240365899 ], [ -119.289772823, 47.1254917575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7090034211, 47.0697237816 ], [ -122.6757381114, 47.0813300502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.5207872011 ], [ -120.4282769273, 47.5058028204 ], [ -120.4193833846, 47.4918919015 ], [ -120.4098706126, 47.4855387729 ], [ -120.3692193944, 47.4758683659 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4026413273, 45.5856862701 ], [ -122.3997578511, 45.5841944043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0868227043, 46.7395693677 ], [ -119.1283965501, 46.7547549812 ], [ -119.1339570633, 46.7636604311 ], [ -119.1343073841, 46.7823988651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0209265407, 47.3613941171 ], [ -122.0237569069, 47.3733367643 ], [ -122.0334896745, 47.3838222996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.2158884218, 47.8443983695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2314445716, 47.7181510912 ], [ -121.1535414241, 47.7117866081 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446858124, 47.3297219858 ], [ -122.2446131424, 47.3498974886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8743970818, 48.5473938298 ], [ -117.8572715742, 48.5473213018 ], [ -117.8460715424, 48.5415018691 ], [ -117.826594003, 48.539435667 ], [ -117.8225853934, 48.534895129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6025149847, 48.8920541634 ], [ -122.6040527531, 48.8920780487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.5434407828 ], [ -122.5476099457, 46.5481464139 ], [ -122.5335953997, 46.5573604122 ], [ -122.5226130373, 46.5528220874 ], [ -122.4976698793, 46.5583568324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.0771858995 ], [ -118.3569757559, 46.0850910738 ], [ -118.3672015566, 46.0864838173 ], [ -118.3712410754, 46.1000850053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -120.0009880199, 46.2136750464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.1247339542 ], [ -117.2426019261, 47.1282451493 ], [ -117.2426281993, 47.1322797485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5476135901, 45.7518906262 ], [ -122.5472598635, 45.7589462816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1437081841, 48.18863098 ], [ -122.1370320197, 48.1971826047 ], [ -122.1294755917, 48.1987611119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2145371798, 47.794421606 ], [ -122.2120593513, 47.7984747561 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0356242216, 47.8496165293 ], [ -120.0277101274, 47.8474213611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8824654132, 46.9762996857 ], [ -123.8542222764, 46.9751663099 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3761260037, 47.2404869197 ], [ -122.3632090748, 47.2405896685 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469511117, 48.3911357861 ], [ -122.6446295806, 48.4078455473 ], [ -122.6491078895, 48.4120594291 ], [ -122.6442962662, 48.4167133772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1729427957, 48.0794522238 ], [ -123.1566785185, 48.0769008073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5472933615, 46.8097314034 ], [ -118.5469762937, 46.8696432609 ], [ -118.5691269289, 46.8875794467 ], [ -118.5671299854, 46.9387620133 ], [ -118.560421084, 46.9671994532 ], [ -118.5639273641, 46.9693979048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0029911997, 47.22593134 ], [ -121.0142157637, 47.2278486397 ], [ -121.0266377118, 47.2381146494 ], [ -121.0376452727, 47.2410571348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.2209096911 ], [ -122.4340520373, 47.2230930942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7391181737, 48.6476256888 ], [ -118.7380382951, 48.6477058434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6342473786, 47.5049271741 ], [ -122.6314890754, 47.5049287108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8957472001, 48.038517837 ], [ -119.9013270478, 48.0482824988 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0541413502, 48.0609123727 ], [ -123.0317850249, 48.0444695397 ], [ -123.0308034821, 48.0385584263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1722002227, 47.1818280167 ], [ -117.1403329492, 47.1963834582 ], [ -117.1115675348, 47.1932573716 ], [ -117.097512456, 47.1960429801 ], [ -117.0740899923, 47.2211975001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217331431, 48.4069900346 ], [ -119.5217501674, 48.4051129342 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9981202664, 47.8393603968 ], [ -119.9735363079, 47.8450645396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.2030418132 ], [ -122.2673512221, 47.2007333641 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8983905827, 47.0254310319 ], [ -122.8880451706, 47.0349627247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1213708923, 48.2002565193 ], [ -122.1170200605, 48.2084489517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3243406744, 47.397956274 ], [ -122.3247753913, 47.4057300867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.2331134363 ], [ -119.869200631, 47.2331168365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588244536, 46.2022230907 ], [ -119.1588003107, 46.2077511977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975047463, 47.4351022237 ], [ -120.2975325983, 47.4333562129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1014661015, 47.9532966926 ], [ -122.1024989284, 47.9747837779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8766375645, 47.6695099085 ], [ -117.8632239331, 47.6690209762 ], [ -117.8204632094, 47.6577245072 ], [ -117.7893280679, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375995228, 47.1039064442 ], [ -119.325419947, 47.1032121332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.9320426175 ], [ -122.5592550475, 46.9339839558 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754644577, 47.0918016783 ], [ -117.5851724439, 47.0928828595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9142967877, 47.0151102563 ], [ -123.9223395487, 47.0316557254 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2364699855, 48.4678814769 ], [ -122.2465744052, 48.4914276823 ], [ -122.2470226925, 48.5030308196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4373980431, 48.7072992033 ], [ -119.4371558585, 48.7076989882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2666996294, 46.8629061998 ], [ -122.2667035384, 46.8634865679 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3730388085, 47.247348751 ], [ -122.3597169341, 47.2569450563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4611381511, 48.1069352467 ], [ -123.4439905727, 48.1073916924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1761180844, 47.3631667878 ], [ -122.1654405965, 47.3580279441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.3088719536 ], [ -124.0487521206, 46.3101897606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119901397, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3933590552, 47.3223798088 ], [ -122.3924369341, 47.3216137304 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3207059196, 47.4808771816 ], [ -120.3133639391, 47.4952529972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.5070572661, 46.9588101485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854064267, 47.9516809103 ], [ -124.3854508575, 47.9541150576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526401143, 45.7079886815 ], [ -122.552276004, 45.7299131095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7340738301, 48.6404765011 ], [ -118.7302441008, 48.641839496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4722108146, 47.2351167316 ], [ -122.482796616, 47.2349767545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9726938016, 46.7033062755 ], [ -122.9761197664, 46.7176133986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6260927168, 47.3890549862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6268938205, 46.9614926076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0634672167, 47.6491812786 ], [ -120.0621815719, 47.6491753159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.6738932335 ], [ -122.118861794, 47.6731312949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2740595055, 47.6747650499 ], [ -117.2564882876, 47.6744377468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2120593513, 47.7984747561 ], [ -122.2108693497, 47.8004619779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0769824862, 46.9108621348 ], [ -117.0799320523, 46.9114350689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6997242328, 47.5273550716 ], [ -122.6974328926, 47.5290055297 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.3075520766 ], [ -119.5605106245, 47.308418187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6974328926, 47.5290055297 ], [ -122.6759314616, 47.5414115006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6684791314, 48.0046240362 ], [ -119.6765472999, 48.0110069203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.3616303229 ], [ -122.3012698346, 47.3733093484 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0867809993, 47.0992170671 ], [ -123.0824021199, 47.0918214053 ], [ -123.0718667587, 47.0910580253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6756358928, 47.096990195 ], [ -118.6564062372, 47.0966738492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3059533997, 47.6666196591 ], [ -117.2905265819, 47.6724838661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9462399136, 47.1968530327 ], [ -120.9809250496, 47.2078375727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.6943145242 ], [ -122.3295502762, 47.7047809866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.8125064907 ], [ -117.5783351988, 47.8151367824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7706871351, 48.109957957 ], [ -122.7693087634, 48.1100024605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.1073463507 ], [ -121.5851623994, 47.0923339805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9094874642, 47.0217506114 ], [ -122.9056444809, 47.0217112789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5835757391, 48.3616001759 ], [ -119.5813873763, 48.3633416819 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1413008619, 47.4050125018 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7808845315, 48.0899344903 ], [ -119.7809433235, 48.1019970336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2751954315, 46.5570314235 ], [ -122.2752434827, 46.5583246063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8123515795, 46.9758626922 ], [ -123.8089625952, 46.9762253006 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6624695676, 47.5269884954 ], [ -122.6824612226, 47.5278472097 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6306952505, 47.5117651765 ], [ -120.6179840298, 47.5420496525 ], [ -120.6040808647, 47.5533601555 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3997578511, 45.5841944043 ], [ -122.3985480747, 45.5841573262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586860494, 46.8548429235 ], [ -122.8482332243, 46.8586162126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.3150765031 ], [ -120.0677060263, 47.3008399269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860125357, 48.8005515797 ], [ -122.4860492264, 48.8043084991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6498450788, 47.5081639767 ], [ -122.6624695676, 47.5269884954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6399785669, 47.7561660923 ], [ -122.6261548579, 47.7579682585 ], [ -122.6124487235, 47.7661835383 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4302739529, 48.7826189223 ], [ -122.4251466525, 48.7865571974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9783785412, 46.3052986594 ], [ -119.9785905771, 46.3125656122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.8318583594 ], [ -119.9823239969, 47.8274002482 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4345227013, 47.2433241411 ], [ -122.4352497488, 47.247047007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.0858231048, 46.1966150682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2279364121, 46.2727922262 ], [ -119.2095736808, 46.2738751293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3135246441, 47.2896891115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349820374, 48.3411737625 ], [ -122.3335812302, 48.341165856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2072319883, 47.8094477645 ], [ -122.2010578056, 47.8100663059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4042122878, 46.6342410524 ], [ -121.3526072751, 46.656816854 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9527847195, 46.5056599317 ], [ -121.9535543166, 46.5073208118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6166058605, 46.5023813913 ], [ -119.4960911537, 46.4454935227 ], [ -119.4508754515, 46.408809451 ], [ -119.4365304918, 46.3912099912 ], [ -119.4226493275, 46.383209281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3438028842, 47.6246441895 ], [ -122.3449275043, 47.6170721864 ], [ -122.3364121007, 47.6028461051 ], [ -122.3366560906, 47.5916921726 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6391820613, 47.7464774496 ], [ -122.6456845104, 47.7518428642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311588032, 47.5832738305 ], [ -122.6298307615, 47.5875749972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063755906, 48.0032207303 ], [ -122.1069288247, 48.0063280675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8714816681, 46.6542060226 ], [ -118.8614321809, 46.652330978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.8459444194 ], [ -120.3719971108, 46.837063334 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4399901193, 47.1039813699 ], [ -119.3554512716, 47.1039652908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398112843, 47.6571200997 ], [ -117.2397947306, 47.6583760906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9223395487, 47.0316557254 ], [ -123.92729038, 47.0572059596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.0184137758, 47.5633683425 ], [ -123.0326396214, 47.5528390438 ], [ -123.0434763305, 47.5508843024 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770752412, 45.6327721391 ], [ -122.6833369779, 45.6328269221 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2128688346, 47.8047418564 ], [ -117.2151570287, 47.8163391381 ], [ -117.2093060077, 47.8264252345 ], [ -117.202021796, 47.8299990291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8820241615, 47.968795396 ], [ -122.8828899247, 47.9544833493 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7173359337, 46.5756310576 ], [ -122.7046470526, 46.5756017902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3146309013, 48.3944502706 ], [ -117.3047886437, 48.3742846879 ], [ -117.3044608349, 48.3394634583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1285221878, 48.1877057823 ], [ -122.1294755917, 48.1987611119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1992457496, 47.9616091692 ], [ -122.1976360012, 47.9682783923 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9750135429, 45.6406654273 ], [ -121.9427830991, 45.6519065923 ], [ -121.9293820456, 45.6481653356 ], [ -121.9186778089, 45.6533510839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6889327532, 47.3381121478 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3774493287, 46.1875902746 ], [ -123.3857452066, 46.1923877924 ], [ -123.3830261382, 46.2040132418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.6721730664 ], [ -122.5018408354, 45.6721275722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1800952459, 46.7289180943 ], [ -117.1781385805, 46.7289018557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3548548851, 47.3236743586 ], [ -122.3473241981, 47.3305148272 ], [ -122.332027696, 47.3318236437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7438998103, 45.6694309117 ], [ -122.757700882, 45.6667941909 ], [ -122.7613328587, 45.6812652178 ], [ -122.7620622456, 45.6936966786 ], [ -122.7542852587, 45.7237947042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9793695341, 48.1656172167 ], [ -118.9854808281, 48.1713371337 ], [ -118.9892362024, 48.1913503797 ], [ -119.0154620195, 48.2099485026 ], [ -119.0346314742, 48.2143557736 ], [ -119.0414640789, 48.2225825553 ], [ -119.0821942308, 48.2357612309 ], [ -119.1250519203, 48.2387808307 ], [ -119.1361957578, 48.2445156021 ], [ -119.1441751598, 48.2720805565 ], [ -119.1341101995, 48.3012910934 ], [ -119.1526832951, 48.3146161547 ], [ -119.1529967173, 48.3254735625 ], [ -119.1585253129, 48.3325449322 ], [ -119.1751984327, 48.3392715776 ], [ -119.198188019, 48.3557743229 ], [ -119.235022948, 48.3647323247 ], [ -119.3957608493, 48.3747968182 ], [ -119.4406634454, 48.3884548136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1928315035, 48.4779351239 ], [ -120.1900642724, 48.4775740271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3472122709, 47.8244633117 ], [ -117.3538626087, 47.8381496765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1171685745, 47.1658351362 ], [ -122.1144319865, 47.165563315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6629212073, 47.5817195825 ], [ -117.6112069286, 47.5946127869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5307884494, 47.2588581959 ], [ -122.5427971587, 47.2623098139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9384879591, 47.6412968212 ], [ -122.9461661794, 47.6306520624 ], [ -122.9594204625, 47.6280408601 ], [ -122.9572422363, 47.6249005791 ], [ -122.9810519598, 47.6160578938 ], [ -122.9862005621, 47.609617512 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2849614715, 47.889952125 ], [ -122.2913576024, 47.8992527084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940460846, 47.7553536407 ], [ -122.1913304565, 47.7557202808 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1615500081, 47.3579926973 ], [ -122.1407097927, 47.3580025547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842126941, 47.7093339084 ], [ -121.9862032678, 47.7229006915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6200459422, 46.3718240773 ], [ -122.6135193095, 46.3732221214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7026610905, 45.8155477016 ], [ -122.6904808118, 45.8157027044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0124274602, 47.0563166427 ], [ -123.0095625837, 47.0558186162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3324665654, 45.9393404761 ], [ -119.3287580518, 45.9316181166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.5732225177 ], [ -118.9566975233, 46.5929642283 ], [ -118.9274458263, 46.6018334943 ], [ -118.856430317, 46.646165675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5460838145, 46.6830305932 ], [ -121.5156698827, 46.6719110445 ], [ -121.4883598873, 46.6693033481 ], [ -121.4496767451, 46.6361915585 ], [ -121.4443639435, 46.6247082632 ], [ -121.4042122878, 46.6342410524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1938148872, 47.2533046274 ], [ -121.1832082778, 47.2443206311 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1112802946, 47.0325956026 ], [ -123.0967671874, 47.0341238279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218771342, 46.2762832574 ], [ -122.9073058758, 46.275376903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9992119183, 46.2864963221 ], [ -119.9990847026, 46.3019803085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2214808618, 47.4035987998 ], [ -122.2202025787, 47.4072374973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9904268316, 48.0866632894 ], [ -121.9801847421, 48.0911670151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1457654709, 47.2521210376 ], [ -123.1320219502, 47.2363423355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3038957285, 46.7578975125 ], [ -118.226642999, 46.7417055801 ], [ -118.2054032125, 46.7447486856 ], [ -118.1732608373, 46.756869523 ], [ -118.1532014075, 46.7691930635 ], [ -118.1296213053, 46.7680723413 ], [ -118.0927817262, 46.7803397001 ], [ -118.0482580436, 46.7753326706 ], [ -118.0239734671, 46.7645457326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3616814048, 47.0290559539 ], [ -117.3802689604, 47.0508567122 ], [ -117.3831396249, 47.0764132167 ], [ -117.378854292, 47.0964231841 ], [ -117.3800291539, 47.1741955658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2227369424, 47.6269803184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3777122398, 46.153926303 ], [ -123.3770778203, 46.155161435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8853526517, 45.6928459455 ], [ -121.8772638059, 45.6967885603 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455743548, 46.418180045 ], [ -117.045583721, 46.4199358176 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860962019, 48.7836284125 ], [ -122.4860786255, 48.7843780074 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.3702712669 ], [ -120.3149587825, 46.3677298266 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021936567, 46.1479617048 ], [ -119.2023511627, 46.1347113914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891848021, 48.4355524149 ], [ -122.2671353579, 48.4299276122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2546724797, 47.2425035856 ], [ -122.2559001868, 47.2460061029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5759657586, 47.4868903381 ], [ -117.5754010062, 47.4873552206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0786692359, 46.6270297677 ], [ -123.0644490268, 46.6269757944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9961129273, 46.1618451049 ], [ -122.9876095018, 46.1576443082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8977278871, 47.1804239536 ], [ -120.8726143169, 47.1638584395 ], [ -120.8239451755, 47.1552275616 ], [ -120.7990004612, 47.1178706255 ], [ -120.7830173029, 47.1120217119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6247422202, 48.5816115228 ], [ -120.6012081348, 48.5966187591 ], [ -120.5895452075, 48.5986625905 ], [ -120.5331599851, 48.5993765517 ], [ -120.511770525, 48.5910610484 ], [ -120.4841673108, 48.5868442115 ], [ -120.4550821729, 48.5962101881 ], [ -120.4360496304, 48.597849873 ], [ -120.3929476235, 48.5798058288 ], [ -120.3665628256, 48.5612770736 ], [ -120.3389607734, 48.5486028042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157406775, 47.2908042195 ], [ -122.5156731861, 47.2981065252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.2938084119, 46.3141920165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2845754339, 48.2812765736 ], [ -117.2839019256, 48.3051822196 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0677994513, 46.9127572907 ], [ -117.0547386882, 46.9253808035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.2246779017 ], [ -122.1587937139, 48.2389534668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6041932764, 46.4748995993 ], [ -117.5915790813, 46.4740027276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.179623886, 46.7323956011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2181964942, 46.8141634951 ], [ -119.2078614274, 46.8115731743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3916711004, 47.6542957701 ], [ -117.3949918933, 47.6575846328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343129277, 46.818765882 ], [ -119.1333443494, 46.8263220149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2095736808, 46.2738751293 ], [ -119.1895052521, 46.2676902573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8143955605, 46.9760348973 ], [ -123.8155189414, 46.9754642319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.2663296776, 47.4869149652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8025700515, 46.9620278945 ], [ -123.8023983763, 46.9678877123 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.538034814, 47.9138188412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.5629051119 ], [ -122.2857890361, 46.5613718886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4155325399, 47.4269333661 ], [ -121.4158570632, 47.425849765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5479047169, 47.1238498878 ], [ -122.5362836535, 47.1307921694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6367704982, 48.0627193371 ], [ -117.6217227567, 48.0596769549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2002742877, 47.4803239853 ], [ -122.1922736805, 47.4901260728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3137091087, 47.7773380757 ], [ -122.3091430991, 47.7743773963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3357219408, 48.4717196536 ], [ -122.3356088428, 48.4755713741 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0215352259, 46.3175795065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5063250059, 45.6848578255 ], [ -122.5059632705, 45.6819748617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1377253327, 46.2707786892 ], [ -118.1238524112, 46.2737500843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5056679509, 46.8329591528 ], [ -117.4900970503, 46.8410354631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.1554309896 ], [ -122.4342002903, 47.1593449432 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9507202106, 48.050275 ], [ -122.9489928608, 48.0502722096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0126506285, 46.2084245812 ], [ -119.0078943102, 46.2117237268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6727169645, 48.1593548477 ], [ -122.672541743, 48.1597721166 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.6021302692 ], [ -122.9111972398, 46.6100100981 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.8026940324 ], [ -123.0066964764, 46.8028020636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854225052, 47.9505814332 ], [ -124.3854064267, 47.9516809103 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2943489103, 47.4098769599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.8116079214 ], [ -119.63597552, 47.8120676338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3168183585, 46.3257612363 ], [ -119.302112785, 46.3183716498 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5021999805, 48.71608606 ], [ -122.502234449, 48.7176604348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0261661571, 46.1622220249 ], [ -123.0182415473, 46.1554301629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3522945196, 47.9747750631 ], [ -122.3555721402, 47.978279434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957696028, 47.7261247472 ], [ -117.5075451443, 47.7371619655 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828043572, 47.4234223225 ], [ -122.2747094226, 47.4287124851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6672617257, 45.779820175 ], [ -122.6617016336, 45.7795054863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.2035861347, 47.4751805773 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2420963329, 46.1031326564 ], [ -118.2049176459, 46.123542948 ], [ -118.1579964315, 46.1391116684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9550744316, 46.6440853642 ], [ -122.9670970658, 46.649895724 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8960512885, 46.9809985306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.7483083341 ], [ -120.7718342941, 46.7474467101 ], [ -120.7239880846, 46.7348744488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2437055114, 48.507550046 ], [ -122.2414121493, 48.5104075699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2456895186, 48.2439992336 ], [ -122.2649177077, 48.2647143139 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3610242433, 47.7115372115 ], [ -121.3542348939, 47.711904269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564578154, 46.074867789 ], [ -118.3564482172, 46.0758820358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7842634529, 47.6121559913 ], [ -118.763698451, 47.6124988865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8439980452, 46.0036486101 ], [ -122.852240996, 46.0234388073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6851289986, 47.5272359279 ], [ -122.6952180995, 47.5247783015 ], [ -122.6997242328, 47.5273550716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3148725381, 47.8211912078 ], [ -122.3121013887, 47.8211831696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3602316649, 47.1201988782 ], [ -118.3033025513, 47.1598935483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9716314101, 46.2117605619 ], [ -118.9100284707, 46.215109501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8221883958, 47.0469869506 ], [ -122.8133324553, 47.0524920951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0182415473, 46.1554301629 ], [ -123.0036157589, 46.14714661 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1983417337, 47.7602672279 ], [ -120.1748375091, 47.7679692019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1653460578, 47.754516793 ], [ -122.1699835707, 47.7530524149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1786722275, 48.0518497151 ], [ -122.1770255475, 48.0518456949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0047956327, 46.1661237024 ], [ -123.0003727518, 46.1639381329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.7176604348 ], [ -122.4999178784, 48.7176529255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5070572661, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.4959893931, 46.9237521292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.3232041563, 47.5929897168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.6824319974 ], [ -122.3154029102, 47.6847104504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.1878232468 ], [ -122.2014846937, 48.1878947696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6861862014, 47.8907180121 ], [ -117.6975572419, 47.8844035353 ], [ -117.7022161214, 47.8768022172 ], [ -117.7066202358, 47.879310378 ], [ -117.7063360951, 47.8688643657 ], [ -117.7119483787, 47.8632977854 ], [ -117.7145821243, 47.8520405468 ], [ -117.74506215, 47.8401106032 ], [ -117.760735503, 47.8384094476 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0523540333, 47.8358056633 ], [ -120.0272288264, 47.8361946595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525698301, 45.6820848992 ], [ -122.5525729281, 45.6855805745 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.5818960485 ], [ -122.8936094988, 46.5891345777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0208342666, 47.0780579889 ], [ -123.0127415099, 47.0564079291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.263463248, 49.0000254737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7562347833, 48.0595083721 ], [ -117.7619942648, 48.0632663696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0754032266, 48.6062200924 ], [ -118.1012651236, 48.6145465613 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.9797708505, 46.6600221281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2073503784, 48.1930549968 ], [ -122.2143482637, 48.2063281505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4413167587, 48.7028924991 ], [ -119.440005912, 48.7023795423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.0005739703 ], [ -122.484170717, 49.0022047393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.7299131095 ], [ -122.5476135901, 45.7518906262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1878139945, 47.6319385932 ], [ -122.1863875328, 47.6405133468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.9880445401 ], [ -122.9090833449, 47.005153403 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5816054123, 45.655987363 ], [ -122.5649359725, 45.6591474533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9079204529, 46.9326825401 ], [ -122.9078901312, 46.9418030245 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2103459096, 48.1692167689 ], [ -124.2149004639, 48.1767680441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872101016, 47.5612869027 ], [ -122.1839184276, 47.5658400246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3036135383, 47.6515712549 ], [ -122.3008871177, 47.6593020345 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3405862296, 47.4683902338 ], [ -120.3385227247, 47.4670473491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044515804, 47.551027418 ], [ -117.7040622718, 47.5520049051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.7708341637 ], [ -122.3462274907, 47.7777955542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5728475744, 47.3013604296 ], [ -122.5813429939, 47.3109726485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7456908937, 46.2158646763 ], [ -119.7350013936, 46.2109623873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9127332439, 48.045239571 ], [ -119.9336567593, 48.052435164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2737587614, 47.465095805 ], [ -122.2651299683, 47.4614024105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1251815178, 48.2002933787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8887436919, 48.2715237891 ], [ -121.8794090981, 48.2691129164 ], [ -121.8393410726, 48.2773006503 ], [ -121.7712088124, 48.2788001675 ], [ -121.7475431859, 48.2765709941 ], [ -121.7257388719, 48.26881907 ], [ -121.7065027719, 48.2686887461 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5065371663, 45.7819263952 ], [ -121.4854380467, 45.7986174954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.8212139394 ], [ -122.3148725381, 47.8211912078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6868873255, 47.1525952933 ], [ -118.6848539763, 47.1673793172 ], [ -118.6915299321, 47.1733521134 ], [ -118.6870124756, 47.1851546319 ], [ -118.6859186821, 47.2602317232 ], [ -118.6913794976, 47.2616081181 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9743825684, 46.7068491655 ], [ -122.9732816215, 46.70702645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4775864514, 47.7155036924 ], [ -117.4828080327, 47.7179633653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7265829537, 46.6211619976 ], [ -119.7275110118, 46.6340824621 ], [ -119.7360584616, 46.6468473933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923848001, 47.661192848 ], [ -122.2869879295, 47.6614633424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2399893883, 46.8414422249 ], [ -123.2289306877, 46.8407885562 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969627885, 47.4415056535 ], [ -122.1969253171, 47.4452667572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9228006992, 46.1347958394 ], [ -122.9199492819, 46.1384787271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5129709245, 47.6238643156 ], [ -122.51414874, 47.6248548642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.7081930584 ], [ -117.2536978763, 46.7208346039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9043342814, 48.5465658408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5036732886, 47.8027461252 ], [ -122.4989034271, 47.8005733284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564762608, 46.0687349432 ], [ -118.3606111002, 46.0686802253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.8553269485, 47.8483119805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2036492399, 47.8781466533 ], [ -122.1696161125, 47.8778286457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1720418434, 47.3177075499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.1059122858 ], [ -122.1872965039, 48.1444384712 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6208329268, 47.3728531728 ], [ -122.6188217045, 47.371309362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2682387314, 47.1364387388 ], [ -119.262380566, 47.1396746477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103992419, 46.147036878 ], [ -122.9085060615, 46.1467022322 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4259416139, 47.9626411024 ], [ -124.4403885401, 47.9637407852 ], [ -124.4509429615, 47.9548776677 ], [ -124.4606869786, 47.9524141752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2924574784, 47.4062158074 ], [ -120.2883400594, 47.3993847963 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4432829491, 45.5785312538 ], [ -122.4356102101, 45.5801631372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3226285715, 47.6386200098 ], [ -122.3224579886, 47.646211059 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4942417879, 46.2795434721 ], [ -119.4935889943, 46.301316915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6774926459, 48.0103631519 ], [ -119.6802674022, 48.0089902272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7228989931, 47.4670798095 ], [ -121.7096706618, 47.4632751617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2226311076, 46.7258475583 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.7413459926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.4199358176 ], [ -117.0442946621, 46.4199328277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2012702922, 47.4487938305 ], [ -122.2070364986, 47.4594077387 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1846880578, 48.0816069517 ], [ -122.1847277876, 48.0959977763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0632060501, 47.5412525635 ], [ -122.0627483977, 47.5457057767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5256803341, 48.4105086385 ], [ -119.5284865191, 48.4108456019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.8890619205, 47.1756198843 ], [ -123.9182389975, 47.1855844879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176943396, 45.6411075661 ], [ -122.3987238562, 45.6383313319 ], [ -122.3986727941, 45.6242774567 ], [ -122.403423195, 45.6233802439 ], [ -122.4043216331, 45.615225457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1000196081, 45.8249268805 ], [ -121.0976103078, 45.8260671911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1061717246, 48.2554318205 ], [ -120.0842561584, 48.2705971119 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156731861, 47.2981065252 ], [ -122.5156562553, 47.2992775357 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4421071548, 48.7019949179 ], [ -119.4410919266, 48.7031509182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7154506529, 48.2699984918 ], [ -117.7155190209, 48.2762460851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3959492409, 46.4169433277 ], [ -120.4287975969, 46.4412917927 ], [ -120.4311662019, 46.4575378002 ], [ -120.4694374549, 46.5065542918 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6551873979, 47.7579966203 ], [ -122.6566045869, 47.7584154673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0813867451, 46.6270365528 ], [ -123.0786692359, 46.6270297677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8309651195, 47.8579919705 ], [ -121.8165310712, 47.861761082 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.0844287634 ], [ -119.7808845315, 48.0899344903 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3502009691, 48.5531647768 ], [ -122.3476324959, 48.5639822624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1736598311, 47.7883685846 ], [ -118.1739846457, 47.8032868437 ], [ -118.1835057815, 47.8219514158 ], [ -118.2018883606, 47.8250490347 ], [ -118.2117772806, 47.8341073865 ], [ -118.2155107555, 47.8597323298 ], [ -118.26205996, 47.8659297604 ], [ -118.2670575361, 47.8760419568 ], [ -118.2644176885, 47.886536003 ], [ -118.2735123185, 47.8953985288 ], [ -118.2764458192, 47.9099818571 ], [ -118.3022156948, 47.9032411497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9707179801, 47.8103117805 ], [ -119.9747908435, 47.8173888452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3052799217, 47.1087851264 ], [ -119.3035133121, 47.1100072069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783351988, 47.8151367824 ], [ -117.5973616913, 47.8288659688 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8814721275, 47.0869161419 ], [ -118.8637575163, 47.0867688468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6069922762, 48.3197133157 ], [ -119.6017185779, 48.3403277867 ], [ -119.5953819331, 48.34623453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.1071331596 ], [ -123.40157192, 48.1066836471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9017000705, 46.2852760142 ], [ -122.900982517, 46.2858307257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3584633908, 47.2145021441 ], [ -117.3533823933, 47.2237692463 ], [ -117.3626242176, 47.2400995255 ], [ -117.3610664207, 47.2534566306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3327432015, 47.408543256 ], [ -122.3352626539, 47.4160570962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2292841665, 47.1772685985 ], [ -122.2295427682, 47.1570738062 ], [ -122.2329885436, 47.1517472612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975325983, 47.4333562129 ], [ -120.2977336595, 47.4242381539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9555240563, 46.7165039902 ], [ -122.9559416042, 46.7155463073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.6592960376, 47.4422385912 ], [ -121.6260861992, 47.428820891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.07298877, 48.0304443672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576841858, 47.6460001316 ], [ -118.1576753991, 47.6531948538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113132819, 47.7151012213 ], [ -117.4127242746, 47.7151457037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.0022066171 ], [ -122.48508877, 49.0005739703 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3022156948, 47.9032411497 ], [ -118.3095884413, 47.9083492944 ], [ -118.3318773139, 47.9059107248 ], [ -118.3362657699, 47.9100541107 ], [ -118.3214853554, 47.9295013757 ], [ -118.3161620627, 47.9460652358 ], [ -118.295303866, 47.9811201405 ], [ -118.2863301117, 47.9929868084 ], [ -118.2668970833, 48.0067931754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.9175984132 ], [ -122.7261530122, 48.9551626572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2682351433, 46.4011783488 ], [ -120.2470329935, 46.3943389424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.3943389424 ], [ -120.2341478641, 46.3874544653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891754017, 48.1552836007 ], [ -122.2891839532, 48.1557176379 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5010531946, 47.5121479033 ], [ -122.4973049137, 47.5119962431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.7098400514 ], [ -118.925005797, 47.7108243237 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6471818385, 47.6429287965 ], [ -117.6441483202, 47.6429238878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2824397667, 47.8189715088 ], [ -122.2622221319, 47.8312276667 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.4736376931, 48.7183214397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9761773375, 46.0002961924 ], [ -118.9326857937, 46.0274987811 ], [ -118.9404675059, 46.0421843021 ], [ -118.9362682108, 46.051675932 ], [ -118.9281091224, 46.0567461789 ], [ -118.9122848657, 46.0569707003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9266228383, 46.1230578452 ], [ -122.9247009245, 46.1221385232 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829331211, 47.9885511027 ], [ -122.1739059983, 47.999571344 ], [ -122.1814065807, 48.04479845 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239010868, 47.4397926017 ], [ -122.3228061274, 47.4391963694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2622221319, 47.8312276667 ], [ -122.2598462586, 47.83972786 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7864369592, 48.651103998 ], [ -118.7770276759, 48.649473503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6597780517, 47.3328929749 ], [ -118.6064394101, 47.3438463019 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.1680072039, 47.7574084421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4721515928, 46.9484503801 ], [ -119.4749052078, 46.9528591823 ], [ -119.4607123542, 46.9566297084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3437891671, 48.8073210548 ], [ -122.3325641688, 48.8145942815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3977887884, 47.0531477811 ], [ -122.4005142886, 47.0558581985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7306682808, 48.0861363728 ], [ -123.7093296363, 48.0846676243 ], [ -123.7009703045, 48.0785930438 ], [ -123.6786220988, 48.073901581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3241654589, 47.7296158195 ], [ -122.3288644625, 47.741140359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2941276522, 47.4130153494 ], [ -120.2929566067, 47.408097835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3542348939, 47.711904269 ], [ -121.3352211475, 47.7132173725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5899202161, 47.4791586755 ], [ -117.5832793235, 47.4818861833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220553649, 48.3133080082 ], [ -122.3344939127, 48.3373547839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302441008, 48.641839496 ], [ -118.7300552535, 48.6419111855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1183933229, 47.358083689 ], [ -122.1091619452, 47.3580988636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1760994752, 47.580180733 ], [ -122.1698418075, 47.5801249842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237320393, 47.533996747 ], [ -122.6115664545, 47.5340329479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.6656995892 ], [ -122.0986125857, 47.6645874444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8320237301, 47.2340352 ], [ -119.8107624661, 47.2341040289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5793216715, 47.1078928315 ], [ -122.5623879036, 47.1153885874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2180791238, 47.8520936404 ], [ -122.2163760183, 47.8727847101 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9195012753, 46.6405634658 ], [ -123.921074264, 46.6714807055 ], [ -123.9175764369, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.8848656803, 46.6854928239 ], [ -123.8753762267, 46.68435008 ], [ -123.8577283824, 46.6939486439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501498005, 46.2873666617 ], [ -117.0395127862, 46.3149805998 ], [ -117.0421390618, 46.3267145152 ], [ -117.0484351291, 46.3174465631 ], [ -117.0560803608, 46.3250305409 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5989270885, 47.5553611869 ], [ -120.5927019605, 47.5589757239 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6270510219, 46.735547573 ], [ -119.6011440864, 46.7379133851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2517852789, 47.1061646856 ], [ -119.2566876381, 47.112363657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0767280097, 46.2265908318 ], [ -119.0795201794, 46.2322979284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3301905624, 47.6128797259 ], [ -122.329134167, 47.615596198 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2277030428, 47.6241332137 ], [ -120.2219122891, 47.6270557243 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.7760746279 ], [ -122.4832840697, 48.7824744802 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147539076, 46.1502452965 ], [ -122.9157314952, 46.1667895778 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.0518594289 ], [ -122.1836148532, 48.0518643974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3118431702, 47.1567249837 ], [ -119.3235519617, 47.1618045752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4203948955, 46.9081166471 ], [ -121.4074499246, 46.9139103029 ], [ -121.3738765638, 46.9171172093 ], [ -121.3590945902, 46.9323858894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9052657624, 45.6630172635 ], [ -121.9096745256, 45.6749940647 ], [ -121.9015325687, 45.6823424191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.7983597125 ], [ -123.0025596088, 46.8100089469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6225935687, 47.4383788471 ], [ -122.6237970067, 47.4635938226 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1086623321, 48.0731296075 ], [ -123.0929136587, 48.0727563835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1956583824, 47.5351014559 ], [ -122.1926629037, 47.5532945477 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3355650196, 48.4778597679 ], [ -122.322498894, 48.4777584669 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3009682136, 47.4657531835 ], [ -122.2814936102, 47.4639104191 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6686114771, 47.6429513017 ], [ -117.6471818385, 47.6429287965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2565858958, 46.1882981658 ], [ -119.2336452151, 46.1773089437 ], [ -119.2075559409, 46.1709700044 ], [ -119.2024028139, 46.1646696372 ], [ -119.2021438178, 46.1517167071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6592835463, 48.69353696 ], [ -118.6540124627, 48.7299295462 ], [ -118.6607397326, 48.7395905415 ], [ -118.6474199782, 48.7574573152 ], [ -118.6471151083, 48.7653809106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4877195547, 46.7310206754 ], [ -117.4828769965, 46.7374678823 ], [ -117.4606604412, 46.7478475633 ], [ -117.4529845524, 46.7578502771 ], [ -117.3966878381, 46.7692818303 ], [ -117.3754489745, 46.7524284104 ], [ -117.364269794, 46.7482639317 ], [ -117.3576285651, 46.7370046508 ], [ -117.3411179936, 46.7369182867 ], [ -117.3330136617, 46.7429594848 ], [ -117.3176622842, 46.7318138607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6671028849, 48.208880163 ], [ -122.6861432864, 48.2123143699 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1822932343, 48.0518738744 ], [ -122.1786722275, 48.0518497151 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588003107, 46.2077511977 ], [ -119.1587898641, 46.2094963127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0824824346, 46.2383223812 ], [ -119.083420541, 46.2402395389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3044461333, 47.9446172164 ], [ -122.3040566842, 47.947165397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478646508, 46.4428982556 ], [ -122.8478874183, 46.4418799904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.2123094716 ], [ -122.7059141852, 48.2122640442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4379008219, 47.7154498354 ], [ -117.4568888894, 47.7154157955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442962662, 48.4167133772 ], [ -122.620384397, 48.4202646652 ], [ -122.6082425787, 48.4287878768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.6729939622 ], [ -117.2395409867, 47.6757907672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2952486802, 47.4309838514 ], [ -122.2954198113, 47.4345568351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7878727232, 47.0597313969 ], [ -122.7541782353, 47.0644445369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963449954, 47.0166678167 ], [ -122.2955397516, 47.040162607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869038184, 47.6636304786 ], [ -122.1862142566, 47.6722701693 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4413239323, 48.96428992 ], [ -122.407449955, 48.9640230526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5981693413, 48.116751797 ], [ -123.5712528402, 48.1146712556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6298307615, 47.5875749972 ], [ -122.6295353398, 47.5924775695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4040031937, 47.6521238544 ], [ -117.3993131644, 47.6520356027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2487949553, 47.4322754113 ], [ -122.2455886366, 47.4412210855 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.7159651259 ], [ -122.5021999805, 48.71608606 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4807360568, 46.6775327893 ], [ -120.4821709855, 46.6784018527 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3962982687, 45.5785567586 ], [ -122.3924335271, 45.5795236375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4851566888, 48.9933456178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9685280902, 46.3037202391 ], [ -119.9283205921, 46.2720687974 ], [ -119.9106353482, 46.2675619431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8209479482, 45.9765215085 ], [ -122.8303255251, 45.9865466391 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8030737493, 46.9773424769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0892586477, 46.5431821646 ], [ -117.0929578437, 46.5461114405 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9030142887, 48.4912950401 ], [ -117.9000321633, 48.514822412 ], [ -117.9050816787, 48.5343812278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0350161303, 47.253938049 ], [ -123.0051653665, 47.2658148473 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067256114, 48.3642645921 ], [ -122.2133672387, 48.3723792401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4629980998, 45.7135052501 ], [ -121.4598946117, 45.7123396511 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2943489103, 47.4098769599 ], [ -120.2980615002, 47.4097420223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598568622, 47.5046576599 ], [ -122.1565310736, 47.5057272643 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2912512618, 48.0954124931 ], [ -123.2099835359, 48.0853786216 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0848828452, 46.3284729616 ], [ -120.0687629907, 46.3226150928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8705301943, 47.7320770346 ], [ -117.8747890388, 47.7387575067 ], [ -117.8833228393, 47.7409083111 ], [ -117.8904928702, 47.7562433053 ], [ -117.8937348179, 47.7731562335 ], [ -117.8885889763, 47.7791596603 ], [ -117.8899260404, 47.7887506445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.0732144226 ], [ -119.8060994957, 48.0932061459 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.7170064104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.5674428282 ], [ -120.6020684242, 47.564209197 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966058497, 47.1747523811 ], [ -123.0957237818, 47.1572988202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0202766541, 47.3583922895 ], [ -122.0209265407, 47.3613941171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1179298675, 46.9846708775 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.6427340926 ], [ -118.1576841858, 47.6460001316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.41331834, 47.6599920959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1854211418, 48.4778068438 ], [ -120.1781092963, 48.4725882896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351942988, 47.7341436296 ], [ -122.3343328973, 47.7341445146 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2514945992, 46.6301019034 ], [ -123.1801433805, 46.6342000658 ], [ -123.1684652608, 46.6306801314 ], [ -123.1744197292, 46.6133083665 ], [ -123.1581776639, 46.5974973747 ], [ -123.1287547466, 46.6004969457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2183218859, 48.2166037115 ], [ -122.2374372336, 48.2352708759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0715404689, 46.1959222812 ], [ -117.069636538, 46.2278518737 ], [ -117.0596360072, 46.2294936931 ], [ -117.0595040673, 46.2749822247 ], [ -117.0501498005, 46.2873666617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6380141443, 48.3112290202 ], [ -122.6295211986, 48.3202909794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3605429103, 47.3207278571 ], [ -122.356089198, 47.3225056037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4834194345, 47.6349163355 ], [ -117.4797001096, 47.6332845094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3099371955, 47.3075733984 ], [ -121.3016866652, 47.3019511926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281613908, 47.6226631987 ], [ -120.2281213808, 47.6241276789 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.0768951726, 46.9105822359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108409752, 48.6851321517 ], [ -117.4053808879, 48.6851320533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1936544175, 46.7645544522 ], [ -122.1942019738, 46.765336616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2914374281, 47.9220287545 ], [ -122.2878185998, 47.9245144886 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764946499, 46.7820725916 ], [ -119.1764136146, 46.7968582865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5264716482, 45.9932175677 ], [ -122.5417332574, 45.9878702719 ], [ -122.5419737599, 45.9758418071 ], [ -122.5529555129, 45.9643382543 ], [ -122.5628644515, 45.9583082261 ], [ -122.575637757, 45.9577400504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2296735711, 48.3852564968 ], [ -122.2379325105, 48.3993275149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5942345354, 47.3816799159 ], [ -120.6127201842, 47.3953748749 ], [ -120.6432823873, 47.3933824989 ], [ -120.6561236285, 47.4026118042 ], [ -120.6594863695, 47.4174344817 ], [ -120.6560779809, 47.4316964265 ], [ -120.6625922847, 47.4410037523 ], [ -120.6536874982, 47.450987204 ], [ -120.6605838276, 47.4614951171 ], [ -120.6556188415, 47.4745007676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7640925019, 47.3690425701 ], [ -122.7584799402, 47.3744092288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.2982624881, 47.2176069027 ], [ -122.2940086764, 47.2249092263 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.0512475527 ], [ -122.6907759825, 48.0567497671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3341920495, 47.5902797808 ], [ -122.3356442883, 47.5965279925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.1177226749 ], [ -119.8535293221, 47.1191977539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8913479904, 46.0543459185 ], [ -118.8674748422, 46.0534348511 ], [ -118.8396224202, 46.0652521005 ], [ -118.7880122841, 46.072450643 ], [ -118.7111374641, 46.0531567281 ], [ -118.6849142545, 46.0415021587 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2920536467, 47.4006698004 ], [ -122.2893783047, 47.416887971 ], [ -122.2828043572, 47.4234223225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3538671999, 46.0696978456 ], [ -118.3405498465, 46.0739014753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1926629037, 47.5532945477 ], [ -122.1872101016, 47.5612869027 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9992299624, 47.8523397018 ], [ -121.9893266233, 47.8585504619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8539819045, 46.9760751104 ], [ -123.8793107352, 46.9778455486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8804463364, 47.3319204562 ], [ -122.8514198777, 47.3498457097 ], [ -122.8364747547, 47.374286003 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1407097927, 47.3580025547 ], [ -122.1390119706, 47.3580153681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118923903, 46.626211773 ], [ -120.5261373787, 46.6365454184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2995385636, 47.7120544754 ], [ -122.2923996871, 47.7318031538 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282935394, 46.5780534778 ], [ -119.7274029528, 46.6018834593 ], [ -119.7367554772, 46.6080827525 ], [ -119.7270556249, 46.6125948511 ], [ -119.7265829537, 46.6211619976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.3133077561, 47.3151824274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.6649346237 ], [ -123.7946033875, 46.6644384378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472570211, 47.6739649907 ], [ -122.3444365005, 47.6869595926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7239880846, 46.7348744488 ], [ -120.7002079559, 46.7282037986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9281707668, 47.0261889833 ], [ -122.9134448464, 47.0253389513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2227951042, 45.7429753339 ], [ -120.1980379335, 45.7506530042 ], [ -120.1858099878, 45.7626742717 ], [ -120.1496144498, 45.7796028041 ], [ -120.0728889721, 45.7937322728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7693087634, 48.1100024605 ], [ -122.7667323197, 48.110171865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.4088507662 ], [ -120.2895900621, 47.4060388964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.3110237562, 46.8548826409 ], [ -122.3028894715, 46.8561801881 ], [ -122.3114938746, 46.8624815133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1545187673, 47.5061214996 ], [ -122.1514985886, 47.5062570131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.3281449889, 47.6228434601 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.4871309015 ], [ -122.25450026, 47.4846758275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1178922765, 48.3599953038 ], [ -120.0826339712, 48.3485688069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8903636196, 47.2092221227 ], [ -117.8935451035, 47.2124822553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2187031003, 47.4362642827 ], [ -122.2153057722, 47.4499572937 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3281449889, 47.6228434601 ], [ -122.324181676, 47.6321012475 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7212439358, 47.7631466252 ], [ -118.7130750207, 47.7604898372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1406082627, 48.151913289 ], [ -122.1327070433, 48.1526864406 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943172222, 47.0140340001 ], [ -120.5925213891, 47.0219833385 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.5573335962 ], [ -120.4712654383, 46.5394142128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134510032, 47.6126348451 ], [ -119.8134804078, 47.6996424338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3786436215, 48.5169464302 ], [ -122.410855576, 48.5508465619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9167021499, 47.6653110039 ], [ -117.8792825759, 47.6694839326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.6167655089 ], [ -122.1878139945, 47.6319385932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3436176395, 47.6252248523 ], [ -122.3470322877, 47.6426862378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3423037081, 47.7341359849 ], [ -122.3351942988, 47.7341436296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5989397766, 45.6129740168 ], [ -122.5942584951, 45.6125607215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.6419803649, 47.815343803 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9998190814, 47.0505006375 ], [ -122.9910016143, 47.0450336894 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803526133, 46.3061126605 ], [ -122.8665119074, 46.3036401573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6020684242, 47.564209197 ], [ -120.5983470734, 47.5620792828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4004674284, 47.5364053504 ], [ -117.398395829, 47.5437706657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4885964173, 47.3774858912 ], [ -119.482679815, 47.3814692054 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4423826497, 46.937291079 ], [ -122.35740693, 46.9366422092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.9108595721 ], [ -117.0677994513, 46.9127572907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.9048928592 ], [ -122.2280903322, 47.9083247357 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3523152371, 47.7871149729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142960975, 46.2001388421 ], [ -122.916599885, 46.2057419837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4025141886, 47.775377664 ], [ -117.4024404199, 47.7757947974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6569907612, 45.7325461642 ], [ -122.6612770989, 45.7464677187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6853721482, 48.1040204491 ], [ -119.6682838379, 48.1388517209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4733228614, 46.5849707648 ], [ -120.4709892732, 46.5848762904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9664209143, 46.1480268532 ], [ -122.9552434055, 46.1471068295 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3176622842, 46.7318138607 ], [ -117.2900757121, 46.7253930498 ], [ -117.267322546, 46.7081930584 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4439905727, 48.1073916924 ], [ -123.4421245304, 48.1073235415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0602108175, 48.0644077043 ], [ -123.0541413502, 48.0609123727 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1131838766, 46.9081888251 ], [ -124.1124683872, 46.9087203442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339726068, 47.2074131032 ], [ -122.4340414925, 47.2209096911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9501761308, 46.9833007241 ], [ -123.9584649473, 46.9824304524 ], [ -123.9638816639, 46.9871110108 ], [ -123.9991960461, 46.9934266102 ], [ -124.0040880972, 47.00857363 ], [ -124.0381349997, 47.0457147607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7015013824, 47.7577620281 ], [ -118.7003253167, 47.7576668992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.7408474959 ], [ -117.411487897, 47.7439536479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.3502034489, 47.9137043437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.4156833158 ], [ -122.2187031003, 47.4362642827 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2647934958, 48.2531691393 ], [ -124.260389031, 48.2542321886 ], [ -124.2601698309, 48.2506931926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8843350959, 46.5050823884 ], [ -119.8766764568, 46.5100011675 ], [ -119.8734670054, 46.5215778241 ], [ -119.8802809007, 46.5340131046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8246818019, 45.8230059935 ], [ -120.8226283862, 45.8229903949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3292431802, 47.3317433744 ], [ -122.3219018806, 47.3326977386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0289352268, 46.5118174067 ], [ -124.0306794602, 46.5320120219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7745905953, 46.9816357852 ], [ -123.7542359838, 46.978403612 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.0536557708 ], [ -122.139335004, 48.0536511041 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.6462120527 ], [ -117.2398690039, 47.6488703847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984249952, 47.1999364331 ], [ -122.2938144583, 47.1988803768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932337855, 47.9103754832 ], [ -122.2914374281, 47.9220287545 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.4452102491, 45.9475940632 ], [ -119.410562102, 45.9583557066 ], [ -119.4001606196, 45.9493259325 ], [ -119.3731501041, 45.946680716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8146581289, 46.9746674338 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1881596197, 47.6322979443 ], [ -122.1541290261, 47.6295235952 ], [ -122.1364781908, 47.6384421787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7756848413, 48.1086426578 ], [ -119.765463651, 48.1095610147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2319230755, 47.6360628163 ], [ -122.2133341775, 47.6416718327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8322700503, 47.0459335687 ], [ -122.8221883958, 47.0469869506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2841686904, 48.0967467483 ], [ -117.2785898294, 48.0970199696 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736786558, 47.1615792122 ], [ -122.4600900511, 47.1585657847 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.2980321898 ], [ -117.9728133998, 47.3032197247 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6676433679, 47.5927812587 ], [ -120.6615401387, 47.5961287953 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3571398555, 48.6273196202 ], [ -122.363905077, 48.6441332225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6900708232, 47.6742545713 ], [ -122.6891411882, 47.6839322136 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3491644277, 46.0639266399 ], [ -118.3499243544, 46.069095536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4722493593, 46.5674944544 ], [ -120.4705735995, 46.5573335962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.9790612199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2651804981, 46.6565738532 ], [ -118.2875256298, 46.6685119832 ], [ -118.3072819323, 46.6686867919 ], [ -118.3344458773, 46.6776884871 ], [ -118.3783577002, 46.6777368746 ], [ -118.389137803, 46.6893958146 ], [ -118.391198589, 46.6972092027 ], [ -118.4122698552, 46.7012162608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9213159644, 47.1927732879 ], [ -120.9384153356, 47.1948996063 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9450001967, 48.1636797033 ], [ -123.9244093839, 48.1547303657 ], [ -123.9317581136, 48.1536438133 ], [ -123.9295399819, 48.1451803052 ], [ -123.9164706989, 48.1365715012 ], [ -123.8875301745, 48.1363486659 ], [ -123.8597889454, 48.14722078 ], [ -123.8001282546, 48.1395893198 ], [ -123.7690696693, 48.1396769458 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.2498304367 ], [ -117.2293777746, 48.2389717477 ], [ -117.2149572114, 48.2326927422 ], [ -117.1445158196, 48.2276178924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9378384893, 47.6579307436 ], [ -117.9379417422, 47.660685361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1781092963, 48.4725882896 ], [ -120.1686914859, 48.4567062705 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.1698966439 ], [ -122.1637086417, 47.1693190408 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8894036808, 46.6634446901 ], [ -118.8840388543, 46.6627688809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6851132626, 47.8485151937 ], [ -121.6754291602, 47.8437264887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7472041173, 46.7900290895 ], [ -118.740366325, 46.7916254829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0799094982, 48.9241796486 ], [ -122.0772800593, 48.924155999 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7002079559, 46.7282037986 ], [ -120.6947545489, 46.7266771426 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1320120548, 47.4522702959 ], [ -117.1273008596, 47.4454628501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5450859846, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.4031367389 ], [ -119.5123492002, 48.4036826294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4364218141, 47.7154395468 ], [ -117.4379008219, 47.7154498354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1820573236, 47.7095901821 ], [ -122.1889808432, 47.7236094662 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.7108243237 ], [ -118.7941217724, 47.7561814138 ], [ -118.7334805954, 47.7623342902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8026031248, 46.3760022496 ], [ -123.7936542735, 46.3767488327 ], [ -123.7849363108, 46.3717532207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535414241, 47.7117866081 ], [ -121.1229137378, 47.7173047025 ], [ -121.1378413571, 47.7241816479 ], [ -121.1210115785, 47.7462420572 ], [ -121.0941270076, 47.7457487872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6813333636, 45.8063615363 ], [ -122.6883954382, 45.8215294532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5687388318, 47.5884737405 ], [ -117.5589351838, 47.5953615292 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535252294, 45.6362913178 ], [ -121.1561709747, 45.6490463651 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.3779642912 ], [ -122.2430570827, 47.378057579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8089625952, 46.9762253006 ], [ -123.8076362509, 46.9772463001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182891747, 47.2672889111 ], [ -123.9082461392, 47.2954525638 ], [ -123.9065191783, 47.3328554188 ], [ -123.9095592146, 47.3467924075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6184725877, 46.8939308682 ], [ -119.6021851057, 46.8903722209 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030469817, 46.1632969984 ], [ -122.9042918419, 46.1726255536 ], [ -122.8992668381, 46.1802918975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1400802554, 47.8145116129 ], [ -122.1281371157, 47.8306336416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8868341203, 47.9877015289 ], [ -122.8848678307, 47.9879382073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.7801453767 ], [ -122.5792543891, 45.780262944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9732816215, 46.70702645 ], [ -122.9747719324, 46.7112626752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3389607734, 48.5486028042 ], [ -120.3223743924, 48.543587961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1702535399, 46.7278386224 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4685453921, 48.1061906064 ], [ -123.4657592482, 48.106460575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9946857537, 47.1974841035 ], [ -121.9923916449, 47.199177298 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478831901, 46.7533571733 ], [ -122.9375719089, 46.7539095544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237970067, 47.4635938226 ], [ -122.6245604481, 47.4752697078 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3297726533, 47.7436959378 ], [ -122.3291037047, 47.7469054111 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7810617654, 48.1076558595 ], [ -122.7780253279, 48.1083589075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6124487235, 47.7661835383 ], [ -122.607158394, 47.7724672092 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3706721348, 48.2410706967 ], [ -122.3443830084, 48.2398913159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4158570632, 47.425849765 ], [ -121.4127871024, 47.4225424219 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874609685, 46.4153003586 ], [ -117.069154655, 46.4199117494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5724635589, 46.6251660017 ], [ -120.5436645551, 46.6226773126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096344556, 48.4932908483 ], [ -122.6126265866, 48.4934511275 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3044608349, 48.3394634583 ], [ -117.2844096141, 48.3059359445 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3441820755, 46.7361724356 ], [ -118.3231691836, 46.7431650717 ], [ -118.3104348324, 46.7563777105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474311421, 47.3867136062 ], [ -122.2493486901, 47.3976177556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342002903, 47.1593449432 ], [ -122.4341705298, 47.1628256566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798684236, 46.8216532259 ], [ -123.0761547764, 46.8206396917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5579970591, 46.6445599995 ], [ -118.5495267257, 46.655378434 ], [ -118.5443798132, 46.6742594979 ], [ -118.5291894222, 46.6893914363 ], [ -118.527862787, 46.697937023 ], [ -118.5289309614, 46.709283549 ], [ -118.5479758394, 46.7134582569 ], [ -118.547381969, 46.7802658991 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4872923805, 46.6801245233 ], [ -120.482692837, 46.6807839356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1130005817, 48.1517401354 ], [ -122.1187528092, 48.1643133094 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1565942739, 47.6540477597 ], [ -118.1420864524, 47.6544054526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9392616292, 46.382620523 ], [ -117.9322110467, 46.3985709129 ], [ -117.9413605818, 46.4060696422 ], [ -117.9479137743, 46.4225642672 ], [ -117.9469665414, 46.4295031017 ], [ -117.9587274494, 46.4507231244 ], [ -117.962632911, 46.4685024932 ], [ -117.9609825539, 46.4873044859 ], [ -117.9734724736, 46.4998726264 ], [ -117.9712249078, 46.5098672609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1099088867, 46.9701523567 ], [ -119.0422256352, 46.9696837609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2352979381, 46.2341237242 ], [ -119.2152365358, 46.2321748638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3094973132, 47.1058411746 ], [ -119.3052799217, 47.1087851264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5396953537, 48.0975545684 ], [ -123.5353377768, 48.098941472 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074296103, 47.7589886736 ], [ -122.1940460846, 47.7553536407 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.6031230684, 45.9389260974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814765504, 48.1399591811 ], [ -122.2820740303, 48.1477548637 ], [ -122.2891754017, 48.1552836007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284865191, 48.4108456019 ], [ -119.5284561857, 48.4123674853 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432290715, 47.4472414198 ], [ -122.8272592504, 47.454059906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470226925, 48.5030308196 ], [ -122.247228536, 48.5049651039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2088606428, 46.7337475063 ], [ -117.2059069062, 46.7337520183 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0402216819, 47.4051375238 ], [ -122.0384117208, 47.4089744879 ], [ -122.0506265625, 47.4234707779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.3619718598, 48.4277546105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0584176535, 47.257382574 ], [ -121.0623455971, 47.2605734637 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583128195, 47.8895409718 ], [ -122.2572398494, 47.8906887228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.1093210645, 47.8989017492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.2611443687 ], [ -119.2878136748, 46.2595687001 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7653032241, 47.0638310719 ], [ -122.7651140331, 47.0629504411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020091618, 46.6572102746 ], [ -121.5939929334, 46.6677239868 ], [ -121.5771726696, 46.6750081624 ], [ -121.5748775018, 46.6824470233 ], [ -121.5785447315, 46.6857085787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1012238708, 46.2052016642 ], [ -119.1061582106, 46.2060951858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676487456, 47.5684242426 ], [ -122.663594378, 47.5707549865 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6496497972, 45.6504231837 ], [ -122.6493044391, 45.6503500709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0929578437, 46.5461114405 ], [ -117.1050710923, 46.5588432113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1426715191, 48.7772362922 ], [ -118.1497710826, 48.7873239168 ], [ -118.1606954688, 48.7925791711 ], [ -118.1610621477, 48.8013491924 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2564997683, 46.0930373464 ], [ -118.2526403206, 46.0995793775 ], [ -118.2420963329, 46.1031326564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2828183812, 47.6193764429 ], [ -119.2613682363, 47.6314977852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6589172471, 48.8590433627 ], [ -121.6630290925, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.6754402986, 48.8651910486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3658073843, 47.7605601689 ], [ -117.3673481617, 47.7688728977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9522499816, 46.7274803396 ], [ -122.952269366, 46.7289642557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3476324959, 48.5639822624 ], [ -122.3437035716, 48.5958995493 ], [ -122.3462428337, 48.6070259278 ], [ -122.3545679756, 48.6174704326 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5983470734, 47.5620792828 ], [ -120.5889958565, 47.5568399451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2498888662, 47.4623828171 ], [ -122.2408435002, 47.4652569769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8169944864, 47.1654459949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9049232747, 47.5724947503 ], [ -121.8981135123, 47.5712733617 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0933996402, 48.1811071167 ], [ -120.096475565, 48.1968467764 ], [ -120.1071532972, 48.1976887965 ], [ -120.1282560949, 48.2086361697 ], [ -120.1174787599, 48.2312124652 ], [ -120.1161853491, 48.2490366875 ], [ -120.1061717246, 48.2554318205 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1236120707, 48.2002782394 ], [ -122.1213708923, 48.2002565193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0779731302, 47.442965311 ], [ -117.0397889595, 47.4349031524 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5337335651, 45.9984030688 ], [ -121.5549969267, 45.9998011977 ], [ -121.5636114982, 45.9901163052 ], [ -121.5837003451, 45.9826021001 ], [ -121.5888375562, 45.9758111476 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3298805519, 47.1732555069 ], [ -119.337592942, 47.1824916579 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3376838924, 48.0547329997 ], [ -124.3149717617, 48.0584677954 ], [ -124.3028014989, 48.0673395518 ], [ -124.2831461268, 48.0697565692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0767740067, 47.6417886706 ], [ -120.0747632734, 47.641906708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0376981686, 48.0703874967 ], [ -123.9545771246, 48.0754505177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2823985099, 47.1941934807 ], [ -122.281111013, 47.1984410996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9070746013, 46.1900492586 ], [ -122.9142960975, 46.2001388421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525729281, 45.6855805745 ], [ -122.55279656, 45.6913817983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8060994957, 48.0932061459 ], [ -119.7944730895, 48.0983151568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5100030807, 47.2490381759 ], [ -122.5111157203, 47.2502531629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4811308047, 46.4673204627 ], [ -117.4724796642, 46.4594841871 ], [ -117.4670539222, 46.4470649257 ], [ -117.4444691861, 46.4466269014 ], [ -117.4311649833, 46.4362139804 ], [ -117.4202576394, 46.4360420895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6601620541, 47.7045647028 ], [ -122.6546046376, 47.70607599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9559416042, 46.7155463073 ], [ -122.9571866974, 46.7126430488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1815164346, 46.226705456 ], [ -119.1466151724, 46.2179686599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.1460689953 ], [ -122.9222411132, 46.1464872396 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3204263512, 47.4439375555 ], [ -122.3268233106, 47.4554520402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.3580817971 ], [ -122.3074304764, 47.3616303229 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.3580601805 ], [ -122.0859358901, 47.3580748666 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.7334112553, 47.6434838531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4483713102, 47.6410080356 ], [ -117.4497167189, 47.6443092509 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6156582337, 47.7161387981 ], [ -122.6353165012, 47.7250143013 ], [ -122.6370291084, 47.7323152241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004396604, 47.7105219184 ], [ -122.2995385636, 47.7120544754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7475393038, 46.2094125334 ], [ -119.7476202885, 46.2140157031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348020717, 45.6649138902 ], [ -122.429621236, 45.6621546541 ], [ -122.4288846042, 45.6543939777 ], [ -122.4244049035, 45.6505489649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.4777584669 ], [ -122.321610488, 48.4780418815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.9932136954 ], [ -122.5264716482, 45.9932175677 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1992324539, 47.1773708328 ], [ -117.1722002227, 47.1818280167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219385669, 47.258344291 ], [ -122.5307884494, 47.2588581959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5469623321, 47.3271872736 ], [ -119.4986984819, 47.3690721351 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7261530122, 48.9551626572 ], [ -122.7299951107, 48.9621767777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2006505617, 47.1259714675 ], [ -117.2204392685, 47.120872 ], [ -117.2311497101, 47.1220696502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6682838379, 48.1388517209 ], [ -119.6636624539, 48.1604813241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2918401179, 48.4355506598 ], [ -122.2891848021, 48.4355524149 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3518193824, 47.7919039464 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.0693320216, 46.4212282179 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3564028382, 47.8868367862 ], [ -124.3561155367, 47.8937677247 ], [ -124.3644243308, 47.8948319873 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1614780369, 47.506903678 ], [ -124.2004830222, 47.5303993959 ], [ -124.2229369627, 47.5343029792 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059582917, 45.6758268864 ], [ -122.505932908, 45.6721730664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3877903612, 46.8866484089 ], [ -117.3817100757, 46.8906071029 ], [ -117.3649144653, 46.8905633877 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6542540009, 47.8363873413 ], [ -121.6418257139, 47.8341761604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.2331832879 ], [ -122.8996825001, 46.2497847546 ], [ -122.9131016887, 46.2630638015 ], [ -122.9250895302, 46.2644933419 ], [ -122.9237811251, 46.2715083431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.2509192818 ], [ -119.4752230368, 46.2516861086 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.1817811528, 46.731695621 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2809503607, 48.235572681 ], [ -122.2423008133, 48.2388120168 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5608436626, 47.6428844249 ], [ -117.509427539, 47.6430053975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.1984410996 ], [ -122.2782598167, 47.2029152075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4572843275, 46.2706003653 ], [ -123.4109919609, 46.2617089223 ], [ -123.4005832438, 46.2531192037 ], [ -123.3947912458, 46.2315766109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.3677298266 ], [ -120.3097289325, 46.3650774694 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.6321012475 ], [ -122.3238832466, 47.6326989707 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3641647883, 46.8740109029 ], [ -117.3649931364, 46.8746110638 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075109583, 47.7416381565 ], [ -117.5074826876, 47.7443815862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7455869752, 48.1372852387 ], [ -123.7345388535, 48.1360534594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647334404, 47.498272492 ], [ -117.5647296934, 47.4988542076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6748917772, 47.5440202547 ], [ -122.6707470211, 47.5494494474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.1780553435 ], [ -117.0426668622, 48.1780973091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2395042525, 48.8318235121 ], [ -122.2195423891, 48.8277065549 ], [ -122.2096024616, 48.821069883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9044761844, 45.8247380049 ], [ -120.8744708695, 45.824429695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9237811251, 46.2715083431 ], [ -122.9218771342, 46.2762832574 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.4780418815 ], [ -122.2801945178, 48.4926127654 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549477321, 46.3302467729 ], [ -124.0549134209, 46.3311573646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5109341748, 47.6229691778 ], [ -122.5129709245, 47.6238643156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350085187, 47.5157381772 ], [ -122.7222646763, 47.5233205646 ], [ -122.7132594935, 47.5239714664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2244399208, 48.9981157805 ], [ -118.2239337521, 49.0001142503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.1342723946 ], [ -123.1002077406, 47.1262326925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6644148519, 45.7566399081 ], [ -122.6701869958, 45.7753317642 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.1712861629 ], [ -122.6262008512, 48.183153552 ], [ -122.6266865938, 48.1904292048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3304093084, 47.6079523826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8229476469, 45.7771798533 ], [ -120.8225764326, 45.7876068164 ], [ -120.8169355081, 45.795557156 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510605635, 46.3071011772 ], [ -122.3527972938, 46.2965836771 ], [ -122.3455373962, 46.2931384349 ], [ -122.337001989, 46.3047142862 ], [ -122.3278036317, 46.3078440811 ], [ -122.3208730727, 46.3036524423 ], [ -122.313153103, 46.3066262779 ], [ -122.3100082852, 46.3001431608 ], [ -122.3022619974, 46.2970256355 ], [ -122.2938372103, 46.3000796883 ], [ -122.295182346, 46.3062068691 ], [ -122.2807292786, 46.3116469727 ], [ -122.2731898668, 46.303082327 ], [ -122.2662981155, 46.301502894 ], [ -122.2789228699, 46.3034457986 ], [ -122.2705939775, 46.2873405261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.7811795472 ], [ -117.4074561545, 47.7875219182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6947330224, 47.501473805 ], [ -117.6842799668, 47.508587719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7483034155, 48.9956575306 ], [ -122.7547026936, 49.0004770596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8858510006, 47.9902643238 ], [ -119.8838607234, 47.9987453856 ], [ -119.8957472001, 48.038517837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6671258406, 48.1191174479 ], [ -123.6561026165, 48.1181029102 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.8574461597, 46.2510844587 ], [ -123.8514330153, 46.2602496978 ], [ -123.8402134294, 46.2625073673 ], [ -123.8325797811, 46.2695656832 ], [ -123.8166527548, 46.2712834502 ], [ -123.8074451874, 46.2860891421 ], [ -123.8110220943, 46.292755949 ], [ -123.8005818248, 46.3043543061 ], [ -123.7980280188, 46.329180811 ], [ -123.8010026466, 46.3344527096 ], [ -123.8104269171, 46.3376105866 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9408254869, 45.6665296294 ], [ -120.9297714065, 45.6654121621 ], [ -120.9256409171, 45.6605136294 ], [ -120.8955780583, 45.6660810678 ], [ -120.8292860584, 45.6940654066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828899445, 47.1858920985 ], [ -122.2823985099, 47.1941934807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.6486735819 ], [ -120.5282531262, 46.6540390188 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.6716912752, 45.622917794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6217227567, 48.0596769549 ], [ -117.6204333436, 48.0599351891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6175832531, 46.9743856487 ], [ -123.608437708, 46.9733591072 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9043342814, 48.5465658408 ], [ -117.8819927368, 48.5472128187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9951021272, 48.5298846785 ], [ -121.9651128936, 48.5240655431 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9506147609, 46.1164898023 ], [ -122.9437335833, 46.1159145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6881983355, 47.0090276156 ], [ -122.6694499846, 47.0015817743 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1944912719, 46.7123163464 ], [ -117.1823923289, 46.7153301884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.8911732556 ], [ -122.1282727742, 47.8811551589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1994394218, 48.1842323462 ], [ -122.2073503784, 48.1930549968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3082024553, 48.987334862 ], [ -117.300957911, 48.9914893657 ], [ -117.2997854183, 48.9998091485 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4658299611, 46.7110974278 ], [ -120.4499387893, 46.725476403 ], [ -120.4529597593, 46.7328663314 ], [ -120.4474798796, 46.7417500389 ], [ -120.4584088633, 46.7479232715 ], [ -120.4557031883, 46.7526547977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9025771354, 47.3722950666 ], [ -123.8886284736, 47.4026822769 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0695554806, 47.5516320142 ], [ -122.0518753525, 47.5453888035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0728889721, 45.7937322728 ], [ -119.99534977, 45.8239202871 ], [ -119.9346212323, 45.8356923036 ], [ -119.9093114186, 45.8357642984 ], [ -119.8779729096, 45.8417460874 ], [ -119.848685047, 45.8673243697 ], [ -119.8271538347, 45.8696991389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1306968579, 46.1654154745 ], [ -118.1391201391, 46.1784782697 ], [ -118.1360940572, 46.1845933366 ], [ -118.1377890482, 46.2310216136 ], [ -118.1530953054, 46.2591521015 ], [ -118.1532476863, 46.2701348718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.4422989059 ], [ -122.378756131, 48.4364435691 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2125630243, 47.2479722468 ], [ -124.222223573, 47.2566679804 ], [ -124.2418234024, 47.2957168744 ], [ -124.2808034862, 47.3214481125 ], [ -124.2880206391, 47.3359121435 ], [ -124.2850104072, 47.3470290113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6901316239, 47.5798542029 ], [ -122.6987408734, 47.5866961105 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2945690698, 47.8468435945 ], [ -122.2931688795, 47.8504172566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9856684909, 46.9399239995 ], [ -119.9617666156, 46.9450388749 ], [ -119.9623607954, 46.955497291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354436719, 48.4902753934 ], [ -122.3370509632, 48.503991479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4935889943, 46.301316915 ], [ -119.4933154474, 46.3115165199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024279178, 47.3725593313 ], [ -122.2024048555, 47.3748567353 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939107442, 47.2065716074 ], [ -122.2939186583, 47.209493222 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9874606417, 47.6279947984 ], [ -121.9593727364, 47.6196353188 ], [ -121.9574628206, 47.6132115201 ], [ -121.9615435138, 47.60154051 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4653744706, 45.7143933277 ], [ -121.4629980998, 45.7135052501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3997755612, 47.5144285359 ], [ -117.3939373287, 47.5212232747 ], [ -117.3968245294, 47.5274308586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113416177, 47.7366272099 ], [ -117.4112982729, 47.739633774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.8277972731, 47.3865787228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4744048469, 48.9644201365 ], [ -122.4631661079, 48.9646150404 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4606869786, 47.9524141752 ], [ -124.4631155918, 47.9407965872 ], [ -124.4817162701, 47.9308967011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9599282089, 47.199071826 ], [ -121.9346988288, 47.1921997068 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7686405015, 48.0112283115 ], [ -122.7766696657, 48.0135236739 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1961396485, 46.7486771117 ], [ -122.1934957289, 46.7573170831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5733355827, 47.8027671644 ], [ -122.5706924506, 47.8037291147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1378345116, 47.804839361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.6610541746 ], [ -122.1304517336, 47.6661307578 ], [ -122.1223453784, 47.6671817737 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4690215411, 45.664782696 ], [ -122.4348020717, 45.6649138902 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1749055913, 47.289039031 ], [ -123.1570442192, 47.2803282022 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7194853839, 46.9182048549 ], [ -123.7133142809, 46.9289642039 ], [ -123.6707784483, 46.9375606362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4026394998, 47.7808179884 ], [ -117.402846948, 47.7809972131 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.4752593869 ], [ -122.8657551158, 46.4709082251 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2776857935, 48.8435345933 ], [ -122.2556345682, 48.8390461836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4736324891, 46.5393860319 ], [ -120.4705376957, 46.5410320836 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6556188415, 47.4745007676 ], [ -120.6528625036, 47.482823007 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8146581289, 46.9746674338 ], [ -123.8135123607, 46.9752656303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4290787927, 47.2340191897 ], [ -122.4348320946, 47.2331712422 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7328423678, 48.9841695596 ], [ -122.7483034155, 48.9956575306 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5983885994, 48.8916617976 ], [ -122.6025149847, 48.8920541634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.8137027141 ], [ -119.9770150376, 47.8170244607 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6385290374, 48.8917094095 ], [ -122.7044893922, 48.8921934089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7753068821, 46.3188415766 ], [ -122.7622997913, 46.31964321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533663973, 47.2334497115 ], [ -119.8356431118, 47.2340276704 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8925432587, 46.1068065797 ], [ -122.8785910075, 46.1067733831 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1565310736, 47.5057272643 ], [ -122.1545187673, 47.5061214996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8907960803, 46.3012804426 ], [ -122.8803526133, 46.3061126605 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447131335, 46.331198202 ], [ -124.0053179052, 46.3309294575 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.8767504028, 47.9921025165 ], [ -122.8590822264, 47.9899083019 ], [ -122.8376261196, 48.0017582789 ], [ -122.8300886216, 48.0107987872 ], [ -122.8301978646, 48.0210112267 ], [ -122.8196628775, 48.04931957 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228133919, 48.4357262199 ], [ -122.3174867795, 48.4356661942 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.8150001938 ], [ -122.4859651634, 48.8333491544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4957096235, 48.6976302874 ], [ -122.4889163396, 48.702409161 ], [ -122.4998793264, 48.7103012557 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.3874436362, 47.0046753037 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5135770418, 46.6284896582 ], [ -120.5009591571, 46.6232675075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1570006357, 47.765024263 ], [ -122.1508809942, 47.779603159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074687841, 47.8201159821 ], [ -122.2074577992, 47.821711911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344227391, 47.4416515583 ], [ -122.3339487259, 47.4475073103 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3199265565, 46.3750583048 ], [ -120.3201578547, 46.3713384075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344939127, 48.3373547839 ], [ -122.3359326659, 48.3471746589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4976698793, 46.5583568324 ], [ -122.4954759572, 46.5519074288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4131299621, 48.4502154271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8480154625, 46.9435702245 ], [ -123.8173067572, 46.9516445414 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860492264, 48.8043084991 ], [ -122.4860458418, 48.8077759805 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963791173, 47.3865201952 ], [ -122.2947521893, 47.3943368889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294448552, 46.6856170888 ], [ -123.7293771219, 46.6866295208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3445897421, 47.7021703261 ], [ -122.3446210177, 47.7050638875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862142566, 47.6722701693 ], [ -122.1852889074, 47.6742929009 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6493044391, 45.6503500709 ], [ -122.6469881652, 45.6495101668 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8226283862, 45.8229903949 ], [ -120.8122602395, 45.8229926828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.2927627536, 46.7640966507 ], [ -118.286718814, 46.7740832951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2972004015, 46.9531905355 ], [ -122.2979507857, 46.9800944856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293212399, 47.1843499681 ], [ -122.2293015421, 47.1806601772 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7406552867, 46.7781576345 ], [ -123.738474948, 46.7947691985 ], [ -123.7460823296, 46.7987604942 ], [ -123.7468410221, 46.8042726776 ], [ -123.7198612579, 46.8296809218 ], [ -123.7193448689, 46.8429886225 ], [ -123.7093258609, 46.8603697186 ], [ -123.7108617816, 46.8670798808 ], [ -123.7062185932, 46.8779876268 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111538627, 47.7133751719 ], [ -117.4111252748, 47.7150977748 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.3833226703 ], [ -122.2214820038, 47.3825173806 ], [ -122.2065091301, 47.3725609481 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2871149715, 47.8209339215 ], [ -122.2755457279, 47.8209143725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0978930871, 47.6573058522 ], [ -117.9493878602, 47.6583110212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.3249389869, 47.5271305474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3006072071, 47.4096540761 ], [ -120.3029610908, 47.4095632747 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8976072607, 46.1404539675 ], [ -122.8998676031, 46.1496842122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4508888194, 48.973570904 ], [ -119.459484559, 48.9953117488 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5054795183, 47.7584305503 ], [ -118.4817145594, 47.7503088944 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.6888584117 ], [ -123.7313710506, 46.6903743354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7124496038, 47.6114063118 ], [ -122.7097773434, 47.6324886961 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1489577681, 47.7627227749 ], [ -120.1222565242, 47.7683337153 ], [ -120.0939451422, 47.7618733285 ], [ -120.0771113094, 47.7623555736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2406467581, 48.4027244437 ], [ -122.2643571316, 48.430063418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533828874, 47.231885111 ], [ -119.8533663973, 47.2334497115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.6681259529 ], [ -120.5170629867, 46.6712561513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8455160853, 47.415535475 ], [ -122.8464511089, 47.4246031872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872561406, 48.1523209798 ], [ -122.1857562885, 48.1523511436 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6312757821, 47.5427369679 ], [ -122.6269725806, 47.5417504284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5877830321, 47.5561469233 ], [ -120.5501706085, 47.5350150951 ], [ -120.5136715771, 47.5356194902 ], [ -120.4890479152, 47.5280979623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7041423514, 45.6445770609 ], [ -122.7195199906, 45.6499177453 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7514620424, 48.9886011741 ], [ -122.7516443954, 48.9896016788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981196901, 47.5020226852 ], [ -122.3037605642, 47.5106094253 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2939892909, 46.0823692123 ], [ -118.2736672441, 46.0850299125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1428018792, 48.7736597705 ], [ -118.1426715191, 48.7772362922 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3100733649, 47.7339389204 ], [ -122.297844387, 47.7338069071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649877502, 48.9991015764 ], [ -122.2649591411, 49.0000309604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2517268724, 46.0417290027 ], [ -117.2515257215, 46.0417663171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6686935469, 48.2839223474 ], [ -122.6661977768, 48.2841306381 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4748023779, 46.5896995193 ], [ -120.4720339463, 46.5745548829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.3982856502 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1062823585, 46.8495197001 ], [ -124.1079704304, 46.8588588821 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6794982425, 46.3616185155 ], [ -122.6734966352, 46.3612844656 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4283589995, 48.4448569455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014569021, 47.1941769535 ], [ -122.1990213709, 47.1844363574 ], [ -122.1869699983, 47.1769776673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9489928608, 48.0502722096 ], [ -122.9240212026, 48.050093762 ], [ -122.8785401303, 48.0405591613 ], [ -122.8671620679, 48.0307219954 ], [ -122.8622427496, 48.0164767191 ], [ -122.863957586, 48.0095725516 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9085060615, 46.1467022322 ], [ -122.9093031811, 46.1446137165 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7651585878, 47.4732140567 ], [ -121.7482609923, 47.473255323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.7206992742 ], [ -122.2022010791, 48.7460185067 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1277858514, 47.2236494996 ], [ -123.1265910273, 47.2001121701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.6422285199 ], [ -118.5525513618, 46.6447887503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393101914, 46.196885705 ], [ -119.9172628783, 46.1916920438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991242989, 47.3709132653 ], [ -118.6920130217, 47.3791633099 ], [ -118.6836868334, 47.4153657335 ], [ -118.7129232612, 47.426961387 ], [ -118.7741833699, 47.47212032 ], [ -118.7840000547, 47.472842312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.6495101668 ], [ -122.6340284894, 45.6462602442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3487894025, 48.2702583288 ], [ -124.3463796883, 48.2675248649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3803488731, 47.8097254242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4879877343, 48.6747508138 ], [ -122.4957096235, 48.6976302874 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854471652, 47.9489554101 ], [ -124.3854225052, 47.9505814332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982503924, 47.4471972302 ], [ -122.2012702922, 47.4487938305 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259425977, 46.9314301096 ], [ -122.6207841642, 46.9343746994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7414617067, 48.0549272619 ], [ -117.7413820969, 48.0569482281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1912428882, 47.2429358128 ], [ -123.1777008261, 47.2523092089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855189782, 45.5821082164 ], [ -122.3857916688, 45.5806082164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219125052, 48.9201922455 ], [ -122.3217483631, 48.934759017 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.8781807663 ], [ -122.2036492399, 47.8781466533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1116525558, 48.0918800123 ], [ -122.1130005817, 48.1517401354 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2896666816, 45.6971356795 ], [ -121.2657579644, 45.7111535352 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8874838161, 46.4465601034 ], [ -122.8839891536, 46.4708944372 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0254965582, 46.1765544591 ], [ -123.0155186397, 46.1714070706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8718350067, 46.2347671028 ], [ -123.8750691469, 46.2411694514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4254807685, 46.2734329699 ], [ -119.4001468865, 46.2808655483 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.3394444319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.4239544628 ], [ -122.3354523656, 47.4339530916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9571866974, 46.7126430488 ], [ -122.9576609885, 46.7115370036 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.2430577065 ], [ -122.3499363576, 47.2430303348 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5884452443, 48.8674825234 ], [ -122.5886565352, 48.8850365558 ], [ -122.5918452042, 48.8890326206 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8118111203, 46.365574241 ], [ -123.8026031248, 46.3760022496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9125576769, 46.0999090238 ], [ -118.9077542093, 46.0783797271 ], [ -118.9099471422, 46.0583086547 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0799320523, 46.9114350689 ], [ -117.0785645783, 46.9168637491 ], [ -117.0882427081, 46.9224279211 ], [ -117.0888409787, 46.92764545 ], [ -117.1008535829, 46.9394396989 ], [ -117.0895173373, 46.9526956733 ], [ -117.0915584637, 46.9622979365 ], [ -117.1061815936, 46.9621618746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9602028302, 47.0399823411 ], [ -122.9478299761, 47.0358210791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2620674833, 47.6387927373 ], [ -119.2528967959, 47.6483371933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888591294, 46.8883629314 ], [ -122.6775668388, 46.8986798288 ], [ -122.6531750965, 46.9072166327 ], [ -122.6259425977, 46.9314301096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6824612226, 47.5278472097 ], [ -122.6851289986, 47.5272359279 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4195602915, 47.6526347407 ], [ -117.415831441, 47.6526577026 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462274907, 47.7777955542 ], [ -122.3455787056, 47.7806814889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7046470526, 46.5756017902 ], [ -122.6933366335, 46.5767605568 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9280333907, 47.1893145679 ], [ -120.9071870107, 47.1848015959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6913794976, 47.2616081181 ], [ -118.6909098997, 47.2757797492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1061815936, 46.9621618746 ], [ -117.1201266623, 46.9711349318 ], [ -117.1201099165, 46.978540374 ], [ -117.1261890475, 46.982384562 ], [ -117.1247530484, 46.9889983791 ], [ -117.1331982378, 46.9962242171 ], [ -117.1333198621, 47.0068232969 ], [ -117.1420392981, 47.0070763388 ], [ -117.1430372318, 47.0139495218 ], [ -117.1490857648, 47.0180587777 ], [ -117.1458226963, 47.0248832352 ], [ -117.1531459312, 47.0298429488 ], [ -117.1545590892, 47.0396761869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7557863554, 46.7871441721 ], [ -118.7402153352, 46.7962897708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.1019028785, 47.463429943 ], [ -123.1150336799, 47.4621474593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9876439189, 47.202569875 ], [ -121.9842574706, 47.200949296 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9485401068, 47.0155594946 ], [ -119.9393673303, 47.0263156043 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4262909226, 47.225964252 ], [ -122.4276587856, 47.2283207799 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3637055225, 46.8798827877 ], [ -117.3460816248, 46.8885837829 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583869574, 47.8454224344 ], [ -122.2520093383, 47.8571419291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.3246446179 ], [ -122.6046693406, 47.337400484 ], [ -122.612537009, 47.3544077565 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1928794609, 47.4781166157 ], [ -118.2501056872, 47.4783678971 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9940435568, 47.2237272029 ], [ -121.0006237988, 47.2257561758 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7098709231, 48.2523750469 ], [ -122.6993155614, 48.2593609442 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6742675651, 48.5197397944 ], [ -120.6562834707, 48.5242436672 ], [ -120.6424628179, 48.5146645083 ], [ -120.6457283822, 48.5241251482 ], [ -120.6309912378, 48.5489299064 ], [ -120.6353352442, 48.5625862633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4900236905, 47.6081531287 ], [ -119.4635639051, 47.6196933691 ], [ -119.4055514032, 47.6207224415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142238248, 46.952800067 ], [ -122.9289732825, 46.9527927439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269269693, 47.5291188556 ], [ -122.3324821085, 47.534523388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3473316285, 47.6527710843 ], [ -122.3472711494, 47.6539867202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2078614274, 46.8115731743 ], [ -119.1974936697, 46.8114235517 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7101114713, 47.7579202996 ], [ -118.7091478999, 47.7594544328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5623879036, 47.1153885874 ], [ -122.5526964173, 47.1210261719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3519395171, 48.9160269917 ], [ -122.3471693341, 48.9195294698 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3468192298, 47.6709658181 ], [ -117.3446807868, 47.6717289639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.3462357173, 48.4217075774 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2943647479, 46.5783948474 ], [ -123.2852999716, 46.5856826341 ], [ -123.275877446, 46.6016351381 ], [ -123.2741181864, 46.6204039176 ], [ -123.2799704551, 46.6290987029 ], [ -123.2514945992, 46.6301019034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.3476245074, 48.0559531272 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6905925202, 47.5040657699 ], [ -117.6929707776, 47.5042331597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.9502697374 ], [ -117.3317752495, 46.9591639644 ], [ -117.3228188395, 46.9678793785 ], [ -117.3241499511, 46.9733140337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246598026, 47.644263262 ], [ -122.0103610919, 47.6398424818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.3225056037 ], [ -122.3548548851, 47.3236743586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6782492386, 47.3327708536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.1310325774 ], [ -119.2777833248, 47.1316521718 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9801847421, 48.0911670151 ], [ -121.9796119878, 48.0909954069 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0467690066, 47.1906721316 ], [ -121.0383554468, 47.1821664468 ], [ -121.0072302557, 47.1840617967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6640303518, 46.1872361321 ], [ -119.7026562788, 46.1875112252 ], [ -119.7058767846, 46.1902186961 ], [ -119.7065869381, 46.2050788695 ], [ -119.716955895, 46.1992803057 ], [ -119.7276384693, 46.2085860486 ], [ -119.7426319216, 46.20699312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2603550037, 47.8200633469 ], [ -122.254854845, 47.8251972811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4452973982, 48.7767299988 ], [ -122.4302739529, 48.7826189223 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.8344961907, 47.4399094921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4828080327, 47.7179633653 ], [ -117.4899095304, 47.721909145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9959923537, 46.5612283389 ], [ -118.985089341, 46.5732225177 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5910782183, 48.349487973 ], [ -119.5645756943, 48.3674740397 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235791152, 47.6164555058 ], [ -117.2235907413, 47.620646532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329381771, 47.3035228844 ], [ -122.2274240044, 47.30291529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302329781, 48.6349158109 ], [ -118.7340738301, 48.6404765011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.0915688757 ], [ -119.1344405077, 47.0889844077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0518753525, 47.5453888035 ], [ -122.0411447066, 47.5428659307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1654405965, 47.3580279441 ], [ -122.1615500081, 47.3579926973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.6792543224, 48.5015614918 ], [ -122.6781254572, 48.5066895682 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2282190803, 47.6193373774 ], [ -120.2277030428, 47.6241332137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3770778203, 46.155161435 ], [ -123.376808335, 46.1600802384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3421710669, 47.9339530573 ], [ -119.2692290678, 47.9499931301 ], [ -119.1829190953, 47.9759837264 ], [ -119.1165798222, 47.9732123098 ], [ -119.0445267647, 47.980223996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.7141304128 ], [ -121.7366031924, 45.6987633896 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8293481757, 45.7148576644 ], [ -121.7924840113, 45.7161680262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940695704, 47.1604934513 ], [ -122.2959770656, 47.1610814791 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3734287129, 47.0252556279 ], [ -122.3953437269, 47.0507021736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9203962911, 47.682901991 ], [ -121.9365744608, 47.6873896384 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.1025546083 ], [ -119.6853721482, 48.1040204491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2595417057, 48.249031188 ], [ -124.2551176147, 48.2434973886 ], [ -124.25782102, 48.2357494947 ], [ -124.2487012457, 48.2130439318 ], [ -124.249669383, 48.206221953 ], [ -124.2337464478, 48.1994776202 ], [ -124.2164172902, 48.1837230479 ], [ -124.2149004639, 48.1767680441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7432426466, 48.0767810116 ], [ -119.780711497, 48.0844287634 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0815564766, 47.3772542241 ], [ -122.0515162551, 47.3916599978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6506748055, 47.9912018634 ], [ -119.6565631198, 47.9990210152 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3642482346, 46.8895898765 ], [ -117.3600916592, 46.8977782002 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2864988953, 48.1556958232 ], [ -122.2449869401, 48.1566054926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4719132383, 46.252522673 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6287453364, 46.4780216163 ], [ -117.6056799649, 46.4748288907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7878973606, 47.7642158415 ], [ -120.7730335346, 47.7672787698 ], [ -120.7466541795, 47.7635382143 ], [ -120.7393994237, 47.7563801327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3562019376, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.8407885562 ], [ -123.2217410927, 46.8391963722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1055377983, 47.9978871915 ], [ -122.1063755906, 48.0032207303 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0376047767, 47.3579773831 ], [ -122.0279928055, 47.3596803479 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.8211831696 ], [ -122.2978040809, 47.8210601157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276134438, 47.1581515823 ], [ -122.4068844997, 47.1589588837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.4648670181, 47.2345482875 ], [ -122.4722108146, 47.2351167316 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8998676031, 46.1496842122 ], [ -122.9012940427, 46.1535561469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178750419, 47.4671156335 ], [ -122.2178776034, 47.4696365374 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.0567497671 ], [ -122.6965194533, 48.0612450071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3663582961, 47.8214821079 ], [ -122.3642787688, 47.8215067044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6441483202, 47.6429238878 ], [ -117.6038968536, 47.6429304571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349383438, 48.9890983509 ], [ -122.7349579061, 48.9905390378 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649034503, 46.8772762302 ], [ -117.3648165287, 46.8790297995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376542721, 47.9813261844 ], [ -122.1217698707, 47.9948572706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179298675, 46.9846708775 ], [ -119.1185803577, 46.992286446 ], [ -119.1257014177, 46.9990395411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4709892732, 46.5848762904 ], [ -120.4674043677, 46.5847787764 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6717054661, 48.9414820309 ], [ -122.7201925534, 48.9725563663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8828899247, 47.9544833493 ], [ -122.886536485, 47.9460455733 ], [ -122.8853301763, 47.9139270916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1817811528, 46.731695621 ], [ -117.1809848194, 46.7306947672 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.1416754861, 45.5914800209 ], [ -122.0320320146, 45.6195630227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1981225594, 47.2096549901 ], [ -124.2121521075, 47.2310327987 ], [ -124.2144799519, 47.2389866166 ], [ -124.2090169893, 47.2434071564 ], [ -124.2125630243, 47.2479722468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2970255151, 47.5111002228 ], [ -120.2972233483, 47.5139558554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0480975411, 46.3020519269 ], [ -124.0437707451, 46.3032611115 ], [ -124.0447271345, 46.3081264556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6272286689, 46.9765532394 ], [ -123.6175832531, 46.9743856487 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.6593020345 ], [ -122.2999619988, 47.6603776807 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5146878293, 48.1016682747 ], [ -123.5038218235, 48.1027548736 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6463329022, 47.5650689234 ], [ -122.6437803284, 47.5650600843 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6353352442, 48.5625862633 ], [ -120.6247422202, 48.5816115228 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3452527917, 47.741452447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.9138188412 ], [ -124.5816396399, 47.9176697804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028100586, 47.9298175191 ], [ -122.306318668, 47.9330305052 ], [ -122.3051065733, 47.9435748501 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.1017760996 ], [ -119.2517852789, 47.1061646856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.1036076158 ], [ -122.2078191986, 47.09966335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6403863597, 45.7125037539 ], [ -122.6538586045, 45.7228492671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4791481927, 47.3691228237 ], [ -119.4832074613, 47.3815237106 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223136019, 48.340974526 ], [ -122.3127725976, 48.3407796335 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9670970658, 46.649895724 ], [ -122.9768718108, 46.656330602 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4317237119, 48.1182747731 ], [ -123.4299729836, 48.1175659952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362688029, 47.5726405798 ], [ -119.4024814133, 47.5956212233 ], [ -119.3831872355, 47.5969465281 ], [ -119.3320582967, 47.6264826812 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546196045, 47.4837941362 ], [ -118.2546862005, 47.4856106964 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.4358920299 ], [ -122.3257332902, 48.4357585766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310615854, 47.3798227122 ], [ -122.2310669107, 47.3816510809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150421028, 47.158578655 ], [ -122.2984075597, 47.1601271572 ], [ -122.2965893904, 47.1697800021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2781342919, 47.5038105301 ], [ -122.2798420437, 47.5057734725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979467991, 47.2619638744 ], [ -122.3080765164, 47.2755685609 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.5057734725 ], [ -122.2844136914, 47.5118003255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1745117574, 47.5764197452 ], [ -122.1765263234, 47.5839351811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4251466525, 48.7865571974 ], [ -122.4156991339, 48.7941935233 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3678919314, 48.6545170814 ], [ -122.3737540854, 48.6673698213 ], [ -122.3929591717, 48.6767773163 ], [ -122.3959171546, 48.6866733018 ], [ -122.4073092626, 48.6901697434 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7308174939, 45.655963797 ], [ -122.7438998103, 45.6694309117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2153325712, 47.2145095436 ], [ -118.1150962411, 47.2443549894 ], [ -118.0820522942, 47.2578651152 ], [ -118.0234915918, 47.2986486916 ], [ -117.9764083197, 47.306520851 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5111157203, 47.2502531629 ], [ -122.5150756745, 47.2568775022 ], [ -122.5219385669, 47.258344291 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860786255, 48.7843780074 ], [ -122.4860047444, 48.7952060269 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9640727762, 47.3120619457 ], [ -117.9134293815, 47.3361142767 ], [ -117.8797406624, 47.3697640598 ], [ -117.8450444219, 47.3928212867 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.8400447632 ], [ -122.2886644352, 48.8433410199 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5914996503, 47.0056760416 ], [ -120.5896360866, 47.0059926881 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4125086133, 47.4188575024 ], [ -121.4114287309, 47.405602473 ], [ -121.3981391089, 47.395175907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8839891536, 46.4708944372 ], [ -122.8803797924, 46.4829246021 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8112469946, 46.2969576394 ], [ -122.7988517363, 46.3024562624 ], [ -122.7946174518, 46.3111351239 ], [ -122.7753068821, 46.3188415766 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0334896745, 47.3838222996 ], [ -122.0453893577, 47.3903330933 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0182971717, 47.3410067723 ], [ -122.0194447706, 47.3543865463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.2055146884 ], [ -122.6590763437, 48.2086905534 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2923508391, 47.8173374386 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1585629313, 47.0421430903 ], [ -124.1580458631, 47.0446019994 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3006349454, 47.4249031098 ], [ -119.2762951487, 47.4275043915 ], [ -119.2594662735, 47.4250049904 ], [ -119.21615798, 47.432584836 ], [ -119.1587375545, 47.4191382519 ], [ -119.1328213855, 47.4183288429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854389282, 48.9351240348 ], [ -122.485447935, 48.9391322618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2559001868, 47.2460061029 ], [ -122.2593033654, 47.2570246683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5247105217, 48.5852161614 ], [ -119.5087900733, 48.6126127152 ], [ -119.4740104061, 48.6441487529 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970611649, 47.4220162124 ], [ -122.1969627885, 47.4415056535 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2699380817, 47.6708379539 ], [ -122.2639807772, 47.6750826193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096358266, 47.5340033861 ], [ -122.601757504, 47.5339879331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7253740372, 47.0679296901 ], [ -122.7090034211, 47.0697237816 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6163705941, 45.6478697622 ], [ -122.6107084925, 45.647880158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2442490763, 47.3856159218 ], [ -122.2313987649, 47.3961663604 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0078943102, 46.2117237268 ], [ -118.9716314101, 46.2117605619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5123492002, 48.4036826294 ], [ -119.5195878632, 48.4074511711 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.11013683, 46.7534531953 ], [ -122.0309120554, 46.7587001203 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2781150352, 46.2587418451 ], [ -119.2485902926, 46.2609157729 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0326707223, 47.0850835188 ], [ -123.0208342666, 47.0780579889 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150062176, 46.3807401139 ], [ -120.3150102837, 46.3792337657 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4900970503, 46.8410354631 ], [ -117.485569689, 46.8462038031 ], [ -117.4728550026, 46.8484992365 ], [ -117.4491740407, 46.8620068645 ], [ -117.4229038284, 46.8656513628 ], [ -117.3996057791, 46.8749458131 ], [ -117.3877903612, 46.8866484089 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0930271133, 47.8390930772 ], [ -120.0898201478, 47.8397078467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0304642178, 46.1645370289 ], [ -123.0261661571, 46.1622220249 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1167643996, 48.1516314237 ], [ -122.1130429581, 48.1514951182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1429848329, 47.5057588479 ], [ -122.1414184657, 47.5061993756 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904086007, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2348413671, 47.588418258 ], [ -122.2203529267, 47.5824516264 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8053708556, 45.8265045706 ], [ -120.8039379118, 45.8264664938 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4839759446, 47.158948731 ], [ -122.4725322952, 47.1701115828 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6529393278, 48.3694852783 ], [ -122.6511977801, 48.3765935554 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354523656, 47.4339530916 ], [ -122.3344227391, 47.4416515583 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4832840697, 48.7824744802 ], [ -122.4958895454, 48.7835005491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1742498954, 47.3867659672 ], [ -117.1737248443, 47.4229162513 ], [ -117.1504802596, 47.4304049796 ], [ -117.1426102031, 47.4378155483 ], [ -117.1421354348, 47.4475636134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343328973, 47.7341445146 ], [ -122.3289242991, 47.7341017926 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5560127138, 46.4751416428 ], [ -117.4811308047, 46.4673204627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4821709855, 46.6784018527 ], [ -120.482692837, 46.6807839356 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7080243736, 47.2036487713 ], [ -120.698400881, 47.209642341 ], [ -120.7006997329, 47.215577636 ], [ -120.6947810491, 47.2369919331 ], [ -120.6976443009, 47.2433710848 ], [ -120.6923436564, 47.2506189178 ], [ -120.7011122103, 47.2986247569 ], [ -120.6957500975, 47.3044682452 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.5315881261 ], [ -122.0171493711, 47.533899271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6291767301, 47.6025424022 ], [ -122.6288917189, 47.6068663319 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3235990471, 48.0975676978 ], [ -123.2987245907, 48.0961085325 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7267485599, 46.4373575595 ], [ -122.7177660143, 46.4300338266 ], [ -122.7082095882, 46.4297795526 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923508391, 47.8173374386 ], [ -122.2923358096, 47.816111394 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676311053, 47.6547183962 ], [ -122.6759360238, 47.659448765 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.1686131052, 48.5922259084 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0544483353, 46.341189423 ], [ -117.0559678999, 46.3418155618 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2746840212, 48.2730370256 ], [ -122.3124253164, 48.3052893759 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4943892728, 45.5890557217 ], [ -122.4798570338, 45.5857517212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1084072105, 47.9196070975 ], [ -122.1077045908, 47.9288634652 ], [ -122.100879718, 47.9337909869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2461272383, 46.2409894234 ], [ -119.2352979381, 46.2341237242 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768183035, 46.9087074668 ], [ -117.0767523409, 46.9097212815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4959893931, 46.9237521292 ], [ -120.430333448, 46.8881638576 ], [ -120.4212005019, 46.8724889781 ], [ -120.3996856862, 46.8614101436 ], [ -120.3929861408, 46.8503722268 ], [ -120.3829623596, 46.8459444194 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2174597214, 47.2971248747 ], [ -122.1920375216, 47.2883683977 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9287037815, 47.0601524957 ], [ -123.9302808397, 47.0618284552 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8991903157, 46.1440948709 ], [ -122.8982557871, 46.1444215752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3644243308, 47.8948319873 ], [ -124.3806106649, 47.8957632885 ], [ -124.3925708525, 47.9077321088 ], [ -124.4096776218, 47.9282853343 ], [ -124.4017832625, 47.9345882869 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3960419117, 47.002634929 ], [ -123.3912683196, 47.0040697768 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0006237988, 47.2257561758 ], [ -121.0029911997, 47.22593134 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.4342994903, 47.3048223444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6904593755, 46.9737613337 ], [ -123.6476283043, 46.9765640486 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3463796883, 48.2675248649 ], [ -124.3064146166, 48.2617164172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4366735302, 48.9489071813 ], [ -119.4441638638, 48.9563167486 ], [ -119.4508888194, 48.973570904 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7415652617, 45.9061801375 ], [ -122.7425010819, 45.9056627104 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6076139263, 47.472278094 ], [ -117.5967641772, 47.4763429271 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9810776369, 45.663863346 ], [ -120.9541625183, 45.6629024253 ], [ -120.9408254869, 45.6665296294 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.9743066653 ], [ -118.6636857174, 46.9998165576 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6058982049, 47.2443593024 ], [ -119.6003280753, 47.2499775307 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0351635573, 47.0854260018 ], [ -118.8814721275, 47.0869161419 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3736956575, 47.7951965131 ], [ -122.3700729113, 47.7924504549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3364704335, 48.4212504751 ], [ -122.3361482633, 48.4175077145 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2109843601, 47.8772104619 ], [ -122.2069786865, 47.8783103437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.8083982974 ], [ -122.5706924506, 47.8037291147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2956838746, 46.9101470708 ], [ -122.2816151022, 46.9256466238 ], [ -122.2836719967, 46.935493017 ], [ -122.2806671696, 46.9400534634 ], [ -122.2972004015, 46.9531905355 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9031806451, 48.0520592106 ], [ -119.899717106, 48.0550657238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3339487259, 47.4475073103 ], [ -122.3289448539, 47.4433692551 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7812799701, 46.8608150774 ], [ -122.7122024199, 46.8760779053 ], [ -122.7004740827, 46.8819430195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9323014096, 47.6518739395 ], [ -122.9384879591, 47.6412968212 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4557031883, 46.7526547977 ], [ -120.4528979621, 46.7612045639 ], [ -120.4557694597, 46.7658039465 ], [ -120.4481605409, 46.7713262375 ], [ -120.4538028284, 46.7790776556 ], [ -120.4504875687, 46.7884785604 ], [ -120.4624214807, 46.800526586 ], [ -120.4458862509, 46.8007720122 ], [ -120.4401392158, 46.8070933277 ], [ -120.4553319322, 46.8189351153 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3921711474, 47.9866051994 ], [ -122.4022467347, 47.9970221327 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704405811, 45.6318535726 ], [ -122.6693837427, 45.6318469625 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5362836535, 47.1307921694 ], [ -122.5294843284, 47.134748182 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4330740998, 47.2403048183 ], [ -122.4345227013, 47.2433241411 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4720339463, 46.5745548829 ], [ -120.4722493593, 46.5674944544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0023636712, 47.8395520304 ], [ -119.9981202664, 47.8393603968 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.1066616235 ], [ -123.0867809993, 47.0992170671 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178365864, 47.4708583363 ], [ -122.217721755, 47.4720497684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472698982, 47.6642399557 ], [ -122.3472570211, 47.6739649907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.3778354946 ], [ -122.2310615854, 47.3798227122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3800291539, 47.1741955658 ], [ -117.3584633908, 47.2145021441 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3964147136, 47.0053152401 ], [ -117.4162303684, 47.0005004291 ], [ -117.4435778528, 47.0027701026 ], [ -117.4671998581, 47.0097954879 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2510997896, 47.9232511801 ], [ -122.2328875048, 47.9233521925 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9035782953, 46.2838610024 ], [ -122.9030769375, 46.2842542837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.9790612199 ], [ -122.1909967909, 47.9804242172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182389975, 47.1855844879 ], [ -123.9532395545, 47.1976220274 ], [ -123.969523937, 47.2214727186 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.1620197263 ], [ -118.9793695341, 48.1656172167 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432117884, 46.4565616045 ], [ -122.84688053, 46.4446581265 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0053179052, 46.3309294575 ], [ -123.9777350926, 46.3323489831 ], [ -123.9591582091, 46.3481677178 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9752267156, 46.6637302723 ], [ -118.8894036808, 46.6634446901 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559008398, 46.3750297198 ], [ -117.0517810734, 46.3795878122 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5537509538, 48.0996615302 ], [ -123.5398960568, 48.0974797421 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3040566842, 47.947165397 ], [ -122.3011185084, 47.9488440128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289258671, 47.6987018227 ], [ -122.6226857238, 47.702539463 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0122863976, 46.8024280456 ], [ -123.007921493, 46.8026940324 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.6498450788, 47.5081639767 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500487942, 47.7980256738 ], [ -117.3489538413, 47.8018716143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6971089618, 47.524879573 ], [ -122.6996522214, 47.5252936288 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.7381439938 ], [ -119.1773608192, 46.7412901614 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649177077, 48.2647143139 ], [ -122.2746840212, 48.2730370256 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1892028116, 47.3678526781 ], [ -122.1811585184, 47.3649772586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0430468348, 47.1585051205 ], [ -122.036347956, 47.1580428725 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3555721402, 47.978279434 ], [ -122.3561926794, 47.9788192594 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2848476708, 47.1815733492 ], [ -122.2828899445, 47.1858920985 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862318775, 47.6058898709 ], [ -122.1885119703, 47.6116238629 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293785955, 47.1902878983 ], [ -122.2293212399, 47.1843499681 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269725806, 47.5417504284 ], [ -122.6274333676, 47.5344924995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.2998428644 ], [ -122.2470734178, 47.3105055416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078901312, 46.9418030245 ], [ -122.9078782799, 46.9473039393 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4677352564, 45.7152835978 ], [ -121.4664701671, 45.7148037075 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8035781755, 48.9610755132 ], [ -117.8260454275, 48.9825544193 ], [ -117.8316760948, 49.0005187362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1708437963, 48.4288296254 ], [ -118.1721144093, 48.4502822246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4360006417, 48.7109840533 ], [ -119.4060187455, 48.7641667069 ], [ -119.3995222327, 48.7939812329 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3903629125, 47.3216340622 ], [ -122.3708239951, 47.3286992032 ], [ -122.3654780308, 47.3194849976 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3840920127, 46.2062528444 ], [ -123.3821019742, 46.204770148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.8521537918 ], [ -122.5873849699, 47.8401132773 ], [ -122.5836844979, 47.8135870398 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8141165471, 47.7731482573 ], [ -120.7878973606, 47.7642158415 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.9640230526 ], [ -122.352240221, 48.9636327884 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857562885, 48.1523511436 ], [ -122.1829723721, 48.1524164911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0747632734, 47.641906708 ], [ -120.0714795546, 47.648195998 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.9367931061 ], [ -119.0105057584, 47.9398197883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3829577285, 45.705115008 ], [ -121.3759162286, 45.7092484545 ], [ -121.3443236712, 45.7108946405 ], [ -121.3062630807, 45.7050166524 ], [ -121.2904509822, 45.6962586457 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5318979045, 45.6826849971 ], [ -122.5077498431, 45.6840205721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874842611, 46.5393952983 ], [ -117.0892586477, 46.5431821646 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929510336, 47.905080688 ], [ -122.2933970337, 47.9108132967 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2839019256, 48.3051822196 ], [ -117.2577905977, 48.2662465526 ], [ -117.2411593235, 48.2498304367 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7426319216, 46.20699312 ], [ -119.7486010675, 46.2060790676 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.2595150494 ], [ -119.0867515262, 46.2655755624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2102027734, 47.9096841492 ], [ -122.2019957815, 47.9271375522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9811418748, 46.1544576439 ], [ -122.974844153, 46.1513553719 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4759788061, 46.681083667 ], [ -120.4871781519, 46.6713847636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710615487, 47.6700439942 ], [ -122.2699380817, 47.6708379539 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0474672026, 47.8548480152 ], [ -120.0356242216, 47.8496165293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897117864, 47.2283165519 ], [ -121.9897674878, 47.2427944952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2104399855, 48.5159581466 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5663025103, 47.9938759436 ], [ -117.6038139756, 48.0324402361 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.0543832543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9423990512, 47.5302140606 ], [ -121.9356420479, 47.5224107728 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6903245553, 47.5619414589 ], [ -117.6837381984, 47.566162133 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6774101021, 47.5636481361 ], [ -122.6811544626, 47.5662461986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349746441, 47.5375233364 ], [ -122.3350027439, 47.5378934087 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3841243851, 47.8153402952 ], [ -119.3626574045, 47.8153679549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3142184025, 46.4146304102 ], [ -120.3146069423, 46.4038122596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7157590122, 46.3489750762 ], [ -123.7059505973, 46.3368666444 ], [ -123.694991834, 46.3327351476 ], [ -123.6898715896, 46.3183120371 ], [ -123.6592989856, 46.3330689844 ], [ -123.6405403984, 46.3349412244 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079784055, 48.4355954608 ], [ -122.2961576193, 48.435565171 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0574168065, 46.4199273309 ], [ -117.0468945815, 46.4199295935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947362877, 47.2575680773 ], [ -122.2979467991, 47.2619638744 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9882608553, 48.2735411001 ], [ -121.9610038225, 48.2684611163 ], [ -121.9318997964, 48.2706730135 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.3978963103, 48.1061923633 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5160199943, 47.3953842075 ], [ -121.4905907506, 47.3968832449 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0439333142, 48.1840295652 ], [ -117.0441181005, 48.1780553435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576684527, 47.6540467209 ], [ -118.1565942739, 47.6540477597 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8992668381, 46.1802918975 ], [ -122.8950160535, 46.1910097955 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937941925, 47.0829397886 ], [ -122.2935392549, 47.0986145276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6413017681, 46.8104615568 ], [ -117.593064935, 46.8132659409 ], [ -117.5586417087, 46.8037170574 ], [ -117.5379557025, 46.8086463059 ], [ -117.52930964, 46.8231348395 ], [ -117.5178051863, 46.8292156508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3245445805, 47.4367115543 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3424452974, 48.4769135735 ], [ -122.3416041033, 48.4806846506 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645970993, 45.6715670557 ], [ -122.6645242594, 45.6843405722 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1295906216, 47.8811242831 ], [ -120.1084617824, 47.8738712824 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112745852, 47.6530477533 ], [ -117.4111435799, 47.6590755437 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2436783372, 47.757435704 ], [ -122.2135261083, 47.7504974579 ], [ -122.2093581645, 47.7588250331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1441855248, 47.1674591072 ], [ -122.1171685745, 47.1658351362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7040622718, 47.5520049051 ], [ -117.6903245553, 47.5619414589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.7921007504 ], [ -118.7472041173, 46.7900290895 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0875131805, 46.9125608238 ], [ -117.083074089, 46.9114449779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4036573523, 47.9700998663 ], [ -124.4027159358, 47.9795700328 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.3547293908, 46.000879137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0993240354, 47.1390009974 ], [ -122.0947304936, 47.139868914 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7476202885, 46.2140157031 ], [ -119.7431160592, 46.21487318 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9888740579, 47.2031602024 ], [ -121.9876439189, 47.202569875 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9277931611, 46.6221965746 ], [ -122.9414768713, 46.633570246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.1824916579 ], [ -119.3489993938, 47.189958653 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0454478886, 48.1840423049 ], [ -117.0439333142, 48.1840295652 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3692193944, 47.4758683659 ], [ -120.3461737894, 47.4701826048 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4083499421, 47.2391797955 ], [ -122.4000472078, 47.2402668908 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004124588, 47.3957738513 ], [ -122.2985045151, 47.39547624 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134933014, 47.7033989052 ], [ -119.8130784885, 47.8092766362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1093210645, 47.8989017492 ], [ -122.1084072105, 47.9196070975 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8766472391, 46.1027391181 ], [ -122.8834047537, 46.113522401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3857916688, 45.5806082164 ], [ -122.3855374224, 45.5797321231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6861432864, 48.2123143699 ], [ -122.6931398543, 48.2123094716 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3650011171, 46.8751003196 ], [ -117.3649675878, 46.8759309573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.5432499372, 47.9032589462 ], [ -124.5843571045, 47.8989411015 ], [ -124.5896096738, 47.8935749777 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.4952529972 ], [ -120.3051164258, 47.5266969435 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5298400174, 47.5049019302 ], [ -122.5243096729, 47.5048277184 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.8531276258 ], [ -117.645634686, 47.8601052658 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7263837289, 48.8921522797 ], [ -122.7266598296, 48.9068699571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9722788914, 47.3073278653 ], [ -117.9726679277, 47.3094719647 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6743723204, 48.2692255901 ], [ -121.6500900855, 48.2728153124 ], [ -121.6360735698, 48.2637676424 ], [ -121.6087560562, 48.2553398746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.1309639391 ], [ -122.0993240354, 47.1390009974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.7015013824, 47.7577620281 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0890281054, 47.5593389769 ], [ -122.0695554806, 47.5516320142 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7967192306, 45.7024032011 ], [ -120.7833426983, 45.7091771574 ], [ -120.7319438816, 45.7170108114 ], [ -120.7221536232, 45.7293069774 ], [ -120.6517779943, 45.7521047655 ], [ -120.6135360378, 45.7563909158 ], [ -120.5610451158, 45.7497909585 ], [ -120.5332228068, 45.7346091661 ], [ -120.5114600933, 45.7166372424 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2494308353, 47.4122081687 ], [ -122.2487949553, 47.4322754113 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8966827506, 47.2327403563 ], [ -119.8747183109, 47.2330604599 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.9203722024, 48.5548430412 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3846465219, 47.4488701305 ], [ -117.3998174003, 47.4705479987 ], [ -117.3997755612, 47.5144285359 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1378345116, 47.804839361 ], [ -122.1137494257, 47.8050106332 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6378671733, 46.2418590791 ], [ -119.6231476737, 46.2473883891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9708431325, 46.1276076543 ], [ -122.9627838072, 46.122637066 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3591982992, 47.7502754755 ], [ -117.3658073843, 47.7605601689 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.5668492127 ], [ -122.3393652388, 47.5748709959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6041613497, 46.9661133917 ], [ -123.6009036248, 46.9747491231 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.1810552137 ], [ -117.039658043, 48.1780212144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4027159358, 47.9795700328 ], [ -124.3923505431, 47.9892462948 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.1661035805, 47.0934677871 ], [ -117.1829751603, 47.1048097168 ], [ -117.2006505617, 47.1259714675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0693320216, 46.4212282179 ], [ -117.0739785142, 46.426337746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.329127007, 47.5903078499 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.2024103912 ], [ -122.2984249952, 47.1999364331 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.4929517328 ], [ -124.0332571479, 46.5053645236 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2948243841, 47.4982893333 ], [ -122.2981196901, 47.5020226852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957532497, 47.6240627613 ], [ -117.4685078514, 47.6390299187 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9032240437, 47.1642334315 ], [ -121.8720051785, 47.1614029692 ], [ -121.8491037107, 47.15273018 ], [ -121.8248002007, 47.1594263485 ], [ -121.7896956437, 47.1776620458 ], [ -121.7241753305, 47.1569952423 ], [ -121.6890804036, 47.1533532154 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158418422, 47.2671438187 ], [ -122.5158979379, 47.271095951 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410260439, 48.4420756317 ], [ -122.3411431465, 48.4469767522 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958516184, 47.4404648377 ], [ -122.2961885635, 47.4452613117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7888286163, 48.0414353719 ], [ -122.7936594895, 48.0437626987 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0820864503, 46.2486605032 ], [ -119.082542582, 46.2513545129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.9220918299 ], [ -122.2635417231, 47.9221791593 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.4832690795 ], [ -121.7812157741, 47.4740748071 ], [ -121.7651585878, 47.4732140567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1773608192, 46.7412901614 ], [ -119.1764209525, 46.7675625649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.9892213843 ], [ -123.8857699354, 46.9900928031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.3560125261 ], [ -123.5796596528, 46.3569722482 ], [ -123.5716587538, 46.3606344951 ], [ -123.5279784869, 46.3476726817 ], [ -123.4985989794, 46.3468225811 ], [ -123.4940632677, 46.3246853921 ], [ -123.4668950282, 46.295217675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8524014486, 46.6510749802 ], [ -118.8511888124, 46.6508402423 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.9433157516 ], [ -119.0106509547, 47.9393125368 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6065410768, 46.9419413133 ], [ -122.6057120793, 46.9414897752 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5927942323, 47.5049278803 ], [ -122.5510696792, 47.5051569339 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897674878, 47.2427944952 ], [ -121.9855912992, 47.2608703461 ], [ -121.993396961, 47.2701490347 ], [ -121.9893553049, 47.2856086782 ], [ -121.9987441084, 47.2949136689 ], [ -122.002777857, 47.3067016972 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4719132383, 46.252522673 ], [ -119.4711841566, 46.2575715157 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5933186815, 46.9783764391 ], [ -123.481658804, 46.9993368592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.1970611649, 47.4220162124 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0447225968, 46.3088719536 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2476233983, 48.0127941378 ], [ -118.2370390967, 48.0181683325 ], [ -118.2214889113, 48.0495658171 ], [ -118.2229361425, 48.0536372397 ], [ -118.1970382045, 48.0730473236 ], [ -118.2047001305, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.2040162741, 48.1089461065 ], [ -118.200662958, 48.1160236535 ], [ -118.192017662, 48.1178376661 ], [ -118.202303033, 48.1171744248 ], [ -118.2090938982, 48.1247874877 ], [ -118.2017532025, 48.1348019428 ], [ -118.1667978159, 48.1559458942 ], [ -118.1710111219, 48.1632157542 ], [ -118.1677592146, 48.1778167061 ], [ -118.1719498116, 48.1908780528 ], [ -118.1700073083, 48.1986778218 ], [ -118.1799617419, 48.2055463123 ], [ -118.1754317167, 48.2178911392 ], [ -118.1569623818, 48.2283942399 ], [ -118.1354121563, 48.2515691219 ], [ -118.1314821032, 48.2619991359 ], [ -118.1360883381, 48.2791408008 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7381959686, 46.9710907007 ], [ -123.6904593755, 46.9737613337 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2274240044, 47.30291529 ], [ -122.2193270337, 47.30338806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9378634013, 46.8432344905 ], [ -119.9417957659, 46.8489960363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2815700733, 48.1364858296 ], [ -122.2814765504, 48.1399591811 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0272288264, 47.8361946595 ], [ -120.0250689519, 47.8360845439 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.2109843601, 47.8772104619 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169355081, 45.795557156 ], [ -120.8072496646, 45.8123784315 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1400802554, 47.8145116129 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1568931216, 48.1895403281 ], [ -124.1366332936, 48.1896932833 ], [ -124.1191842401, 48.1973336885 ], [ -124.1119721489, 48.1930568586 ], [ -124.099026134, 48.1963808527 ], [ -124.0654490759, 48.1842032056 ], [ -124.067003423, 48.179499668 ], [ -124.0625034827, 48.1822719075 ], [ -124.0609965475, 48.1744746566 ], [ -124.0071237943, 48.1712466081 ], [ -123.9983013856, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.1599293665 ], [ -123.9544082731, 48.1651293696 ], [ -123.9450001967, 48.1636797033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.1784207654 ], [ -121.9946857537, 47.1974841035 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2441256362, 48.5062952131 ], [ -122.2437055114, 48.507550046 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.9970221327 ], [ -122.4150175631, 48.0010609611 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5104823423, 47.5048487373 ], [ -122.5035093915, 47.505998994 ], [ -122.5010531946, 47.5121479033 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736865914, 48.7254915984 ], [ -122.4674230818, 48.7381587883 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8696023471, 46.2515208776 ], [ -119.8182520318, 46.2379730535 ], [ -119.7975638125, 46.2245562959 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754402986, 48.8651910486 ], [ -121.6783150365, 48.8665390524 ], [ -121.6799490243, 48.8623665546 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0782317267, 48.3464626059 ], [ -120.0545756911, 48.3445792629 ], [ -120.0431258874, 48.3481890608 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5034799431, 45.9983583464 ], [ -122.5258480464, 45.9932136954 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7477462633, 46.6933741544 ], [ -123.7523543573, 46.686064117 ], [ -123.7680296972, 46.6803622831 ], [ -123.7755784334, 46.6820267252 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2505086155, 47.804211862 ], [ -124.2505172054, 47.8109376742 ], [ -124.2580730119, 47.8098225751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9230833697, 46.2536596942 ], [ -123.9486490068, 46.2763382177 ], [ -123.9684991984, 46.3063276073 ], [ -124.0020006548, 46.3205770833 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.8959740416 ], [ -124.108797736, 46.9022648982 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.5775403152, 46.5133343443 ], [ -122.5624407348, 46.517004806 ], [ -122.550440133, 46.5344542826 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8408960953, 46.4378300484 ], [ -122.8360736283, 46.4372194695 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6538586045, 45.7228492671 ], [ -122.6539986238, 45.7231498065 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1701797505, 47.1175620554 ], [ -124.1774711517, 47.126216089 ], [ -124.1826998409, 47.1546474521 ], [ -124.1877734935, 47.1568704766 ], [ -124.192508816, 47.1667261776 ], [ -124.1884261401, 47.1715589354 ], [ -124.1943335755, 47.1777040428 ], [ -124.1872853992, 47.1802398968 ], [ -124.1970883653, 47.1823629315 ], [ -124.1977866952, 47.2037633126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1774995641, 47.3024217933 ], [ -122.1583977367, 47.3298300754 ], [ -122.1475130648, 47.3390747692 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.4906407097 ], [ -124.0338926368, 46.4915291514 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2799690003, 47.8826891954 ], [ -122.2849614715, 47.889952125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8203461375, 47.4070484463 ], [ -122.8153357809, 47.4049429252 ], [ -122.8113444229, 47.3926501334 ], [ -122.8159977791, 47.3779028227 ], [ -122.8058112478, 47.3601334979 ], [ -122.7907640195, 47.3624582676 ], [ -122.7783007191, 47.374504504 ], [ -122.7727867254, 47.3724749266 ], [ -122.771733287, 47.3675849633 ], [ -122.7640925019, 47.3690425701 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3832242727, 47.8097517091 ], [ -122.3831772587, 47.8031153818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921188204, 47.8129694111 ], [ -122.1799369192, 47.8125762494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8143955605, 46.9760348973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9532472828, 47.5883720957 ], [ -121.9327980228, 47.5785984862 ], [ -121.9049232747, 47.5724947503 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.2931738148, 47.9220879011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4024404199, 47.7757947974 ], [ -117.4020716363, 47.7805975201 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8846884522, 46.2587169246 ], [ -119.8696023471, 46.2515208776 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112427568, 47.6526173898 ], [ -117.4112745852, 47.6530477533 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6304436393, 47.5650259077 ], [ -122.629614867, 47.5650234096 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3245572303, 47.7776430656 ], [ -122.3137091087, 47.7773380757 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2736672441, 46.0850299125 ], [ -118.2672424979, 46.0864775034 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6565631198, 47.9990210152 ], [ -119.6525696935, 48.0041955683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.0963861688 ], [ -123.5396953537, 48.0975545684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6947545489, 46.7266771426 ], [ -120.6682357978, 46.7114791155 ], [ -120.6535718414, 46.6949663919 ], [ -120.6511837992, 46.682767821 ], [ -120.6206863347, 46.6605003365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3595018472, 47.6413739111 ], [ -119.3541224664, 47.6543643378 ], [ -119.3628837429, 47.6709101104 ], [ -119.3626574045, 47.8153679549 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3654780308, 47.3194849976 ], [ -122.3605429103, 47.3207278571 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694499846, 47.0015817743 ], [ -122.6553305469, 46.9933014974 ], [ -122.6470692004, 46.9763124318 ], [ -122.6325310381, 46.9646197548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1342855473, 46.7970731587 ], [ -119.1343129277, 46.818765882 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.2168054788 ], [ -119.1380609673, 46.216909794 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6546046376, 47.70607599 ], [ -122.6455230644, 47.699437756 ], [ -122.6289258671, 47.6987018227 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7197711644, 46.5320488595 ], [ -122.6442388387, 46.5318795567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014846937, 48.1878947696 ], [ -122.1921631348, 48.1882508645 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.7236094662 ], [ -122.1871980092, 47.7384984553 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7402748344, 45.9071079053 ], [ -122.7415652617, 45.9061801375 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3423037081, 47.7341359849 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2445299041, 47.3611482288 ], [ -122.2439880813, 47.3740667238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2633967769, 47.4587012142 ], [ -122.2670557408, 47.4665917564 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616630283, 47.2001928833 ], [ -122.462495706, 47.2142916788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3277374047, 47.4792708197 ], [ -122.3272024219, 47.4854072542 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8784338391, 47.8213945565 ], [ -122.8867284289, 47.8204635395 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4672879853, 46.7034528115 ], [ -117.4648072806, 46.7209769351 ], [ -117.4712118709, 46.7125945025 ], [ -117.4792740728, 46.7112771519 ], [ -117.4877195547, 46.7310206754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3700729113, 47.7924504549 ], [ -122.3667991767, 47.790544377 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7338240699, 47.9543732544 ], [ -122.7387409377, 47.9595773681 ], [ -122.7406674139, 47.9788642723 ], [ -122.7484287352, 47.9946458229 ], [ -122.7585868562, 48.0067586832 ], [ -122.7686405015, 48.0112283115 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6021851057, 46.8903722209 ], [ -119.5806705958, 46.8856606496 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803797924, 46.4829246021 ], [ -122.87656073, 46.494718014 ], [ -122.8765100174, 46.5439285548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1591468798, 47.1688389452 ], [ -122.1485727781, 47.1677245225 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.8889120074 ], [ -122.5018126834, 45.8933986585 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0040609275, 46.5740844587 ], [ -119.0017412812, 46.5851433384 ], [ -119.0063294763, 46.5974626974 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.4475535195 ], [ -123.8797547045, 47.4557845081 ], [ -123.8856775734, 47.4568668079 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7891868451, 46.5254691689 ], [ -117.7762087351, 46.5365465696 ], [ -117.774915493, 46.5482610417 ], [ -117.7695236781, 46.5563503655 ], [ -117.7807630648, 46.5681984198 ], [ -117.7751352134, 46.580586403 ], [ -117.7852894412, 46.5874957373 ], [ -117.781376055, 46.592409526 ], [ -117.7913837991, 46.6144419053 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2525911983, 47.4840343924 ], [ -122.2490284682, 47.4830589416 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9008434138, 48.4812158123 ], [ -117.9030142887, 48.4912950401 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.2663139585, 47.8342508992 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9063657838, 46.1800997708 ], [ -122.9051023405, 46.1847118489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4630590407, 47.1874722949 ], [ -122.4620882803, 47.1970495358 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3544482975, 46.1872368309 ], [ -123.3284135658, 46.1638323685 ], [ -123.2823984896, 46.1526498853 ], [ -123.2628134616, 46.1553986607 ], [ -123.2326272804, 46.1727272565 ], [ -123.1771557033, 46.1884708528 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1187528092, 48.1643133094 ], [ -122.1285623751, 48.1783060226 ], [ -122.1285221878, 48.1877057823 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7363030997, 46.6466193959 ], [ -119.8006316104, 46.633273275 ], [ -119.8505806667, 46.6339001593 ], [ -119.8948432937, 46.6642061796 ], [ -119.9070616699, 46.6806375323 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.1849328401 ], [ -119.1670085036, 46.1917196627 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0381349997, 47.0457147607 ], [ -124.0440853494, 47.0525732949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7091478999, 47.7594544328 ], [ -118.707944478, 47.7591802313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6160035758, 46.6478940682 ], [ -121.6109588785, 46.6497792928 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7350857122, 47.8671728801 ], [ -121.7199344676, 47.8658767679 ], [ -121.7022061254, 47.8572690469 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.3893726474 ], [ -119.4842297169, 47.3934848684 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1937378718, 48.1522064888 ], [ -122.1872561406, 48.1523209798 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7038991686, 46.6750455817 ], [ -123.6950836877, 46.6690700815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6555581763, 47.650535837 ], [ -122.6676311053, 47.6547183962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2598462586, 47.83972786 ], [ -122.2583869574, 47.8454224344 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2554591689, 47.1454962289 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340930823, 46.5322486745 ], [ -122.613916913, 46.5330861252 ], [ -122.6035425582, 46.5285458674 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1420864524, 47.6544054526 ], [ -118.1408999543, 47.6547957468 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022010791, 48.7460185067 ], [ -122.2007828338, 48.7782923251 ], [ -122.1904825956, 48.7896980395 ], [ -122.1904549774, 48.7962085212 ], [ -122.1981325832, 48.8071844986 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7831995028, 48.1070075798 ], [ -122.7810617654, 48.1076558595 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4309020008, 48.1191579416 ], [ -123.4317237119, 48.1182747731 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534105031, 47.2194487082 ], [ -119.8534053473, 47.2223294365 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1566785185, 48.0769008073 ], [ -123.1417952785, 48.074895211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114493708, 47.3915360181 ], [ -122.3079523143, 47.3909890982 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7482609923, 47.473255323 ], [ -121.7228989931, 47.4670798095 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7402153352, 46.7962897708 ], [ -118.7081501436, 46.8144289467 ], [ -118.6742632423, 46.8226983388 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3058304988, 46.9520915888 ], [ -121.2558073968, 46.9665971639 ], [ -121.2103710587, 46.9691134856 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6128336455, 48.4963987197 ], [ -122.6127739583, 48.5004551192 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6475719156, 47.5652581761 ], [ -122.6463329022, 47.5650689234 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0411447066, 47.5428659307 ], [ -122.0241863249, 47.5315881261 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028757982, 47.3000530138 ], [ -122.2981579128, 47.312895011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.9310935459 ], [ -119.8822982751, 47.9420181745 ], [ -119.8757419687, 47.9580513417 ], [ -119.8879581207, 47.9724408061 ], [ -119.8895324357, 47.9825320573 ], [ -119.8858510006, 47.9902643238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0796037239, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.1114439556, 47.4631544785 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7924840113, 45.7161680262 ], [ -121.786225659, 45.7141304128 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.2788022155 ], [ -119.3023056898, 46.2676765369 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5903183471, 46.0567683361 ], [ -118.5192085128, 46.0499502566 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1344405077, 47.0889844077 ], [ -119.1212539974, 47.0877998117 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.6007985246 ], [ -122.7112388207, 47.6052288214 ], [ -122.7124496038, 47.6114063118 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0934185999, 46.2851671356 ], [ -119.0925020979, 46.3401794742 ], [ -119.0860022305, 46.3582053906 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2702955652, 47.4970013804 ], [ -122.25791496, 47.4871309015 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495747173, 47.9706537304 ], [ -117.3495866356, 47.9814746809 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1900642724, 48.4775740271 ], [ -120.1854211418, 48.4778068438 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8886284736, 47.4026822769 ], [ -123.8763097221, 47.4213934899 ], [ -123.877036547, 47.4475535195 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3128299563, 47.4225323717 ], [ -120.3062213119, 47.416281941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5776035522, 47.4100021272 ], [ -121.5501634492, 47.3981832043 ], [ -121.5324173506, 47.3958007915 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2331720885, 47.8210669673 ], [ -122.2307337316, 47.8178356076 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3771418088, 46.1802763744 ], [ -123.3774493287, 46.1875902746 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942457468, 47.1191324392 ], [ -119.2911115679, 47.1240365899 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5309634911, 46.9718013391 ], [ -120.5263000656, 46.9709601801 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.7967192306, 45.7024032011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.8835917466, 47.5090369919 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3307967988, 47.6088249044 ], [ -122.3301905624, 47.6128797259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.5657555269 ], [ -122.6328642069, 47.5666355148 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5918452042, 48.8890326206 ], [ -122.6067680743, 48.8981282277 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9608696722, 46.8965879431 ], [ -122.9594136168, 46.8965445916 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1050673886, 47.1296410636 ], [ -123.0991749755, 47.1301780444 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8575716456, 46.0374677293 ], [ -122.8610659653, 46.0478652505 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7345388535, 48.1360534594 ], [ -123.716298311, 48.1315509218 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.4802520054 ], [ -124.0276869285, 47.471479931 ], [ -124.0967538612, 47.4885408949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3585353638, 48.9093392192 ], [ -122.3580820498, 48.915412848 ], [ -122.3519395171, 48.9160269917 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839184276, 47.5658400246 ], [ -122.1766955576, 47.5724700872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.0234388073 ], [ -122.8575716456, 46.0374677293 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3193801568, 46.2995221994 ], [ -118.29383435, 46.2991695402 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.5961003788 ], [ -122.4055405288, 45.5917612872 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7284141787, 48.9757559926 ], [ -122.7335974346, 48.9792119734 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5430046419, 46.2654844556 ], [ -119.523755174, 46.2613892962 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.9126704949 ], [ -122.7346098799, 47.9375467064 ], [ -122.7338240699, 47.9543732544 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.1117747241 ], [ -118.3686788882, 47.1150041492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.1216324995 ], [ -122.9261218499, 46.1229717137 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3243406744, 47.397956274 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6781103544, 45.9394909444 ], [ -122.6958656415, 45.9431672649 ], [ -122.7043424684, 45.9356642435 ], [ -122.7200617061, 45.9337898632 ], [ -122.7226222255, 45.9280008842 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2882313209, 47.6170498652 ], [ -119.2828183812, 47.6193764429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1090869647, 46.8588515883 ], [ -124.1108347849, 46.868530839 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6782492386, 47.3327708536 ], [ -118.6676786101, 47.3291647101 ], [ -118.6597780517, 47.3328929749 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6268938205, 46.9614926076 ], [ -122.6170471339, 46.9569922317 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9220375425, 46.7426875865 ], [ -121.9184730058, 46.7411984508 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4933154474, 46.3115165199 ], [ -119.4925583765, 46.329979207 ], [ -119.4539087276, 46.3558692568 ], [ -119.4460453581, 46.3716676172 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8258142714, 46.9714747617 ], [ -123.8309808672, 46.9760099288 ], [ -123.8521750453, 46.9760733389 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6579299947, 47.9994661851 ], [ -119.6684791314, 48.0046240362 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3787722403, 47.8124279259 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058230966, 48.5454377559 ], [ -117.9058418724, 48.5465546852 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6561026165, 48.1181029102 ], [ -123.5981693413, 48.116751797 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328542511, 46.9587926513 ], [ -122.6076963808, 46.9425842125 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1616167206, 48.1521235496 ], [ -122.1507870886, 48.1520523663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555823489, 47.8588071968 ], [ -117.3555936398, 47.8589452723 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2799050476, 47.6816356586 ], [ -117.2448313626, 47.6887168246 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2398779598, 47.5908053835 ], [ -122.2348413671, 47.588418258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093039324, 47.6428078098 ], [ -122.1932937046, 47.6371487563 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6697674526, 47.5997916763 ], [ -119.6612151194, 47.6070005476 ], [ -119.6066831591, 47.5993624318 ], [ -119.519316737, 47.5996716644 ], [ -119.506659076, 47.6061494046 ], [ -119.4900236905, 47.6081531287 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4538503546, 47.9182613584 ], [ -117.4773490149, 47.9428804513 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129385008, 47.91279953 ], [ -122.2088000662, 47.9150721941 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462357173, 48.4217075774 ], [ -122.3364704335, 48.4212504751 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5121334624, 45.776374164 ], [ -121.5065371663, 45.7819263952 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3993841644, 47.6751810229 ], [ -124.4100299932, 47.6905385507 ], [ -124.4131584898, 47.7153241709 ], [ -124.3232512525, 47.7503923932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5219723944, 46.626090815 ], [ -120.5169772116, 46.6260720818 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3133128707, 48.9245515322 ], [ -117.307119418, 48.9291991442 ], [ -117.3165313082, 48.9327488117 ], [ -117.3199075356, 48.941222607 ], [ -117.3159801283, 48.9518030247 ], [ -117.3175917456, 48.9601239582 ], [ -117.3114187744, 48.9688574605 ], [ -117.3132407923, 48.9844676109 ], [ -117.3082024553, 48.987334862 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8307822154, 47.1036973105 ], [ -119.829366692, 47.1025741429 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.7948982738, 48.9007751191 ], [ -117.7898246409, 48.9128912695 ], [ -117.7787592741, 48.9171693044 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3873073485, 47.2789522223 ], [ -122.4046720676, 47.2838514749 ], [ -122.4168936072, 47.2966428978 ], [ -122.4326700109, 47.2980606258 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8024187553, 46.9692826304 ], [ -123.8023268261, 46.9706138586 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1724700156, 46.747419563 ], [ -117.1689737584, 46.7599890779 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791204594, 47.8613218296 ], [ -121.9772544823, 47.8608534091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224229641, 47.6404419429 ], [ -122.3161312286, 47.6429143031 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6170471339, 46.9569922317 ], [ -122.6116398299, 46.9565353077 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288029427, 47.6101244229 ], [ -122.6288340771, 47.6158812787 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6462988146, 47.596485754 ], [ -120.6287660452, 47.5891210126 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1788357705, 46.7295852663 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108536601, 47.7513199125 ], [ -117.4105237126, 47.7523163592 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318739382, 47.234680353 ], [ -122.4322202216, 47.2386425935 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8848678307, 47.9879382073 ], [ -122.883245172, 47.9882925028 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6709875264, 47.5540420396 ], [ -122.6774101021, 47.5636481361 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103335991, 46.482928058 ], [ -122.8974973541, 46.4793963978 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4674043677, 46.5847787764 ], [ -120.4512101301, 46.5770853276 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8278685905, 46.9716853763 ], [ -123.8269852287, 46.9708707418 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3913392846, 47.3891157864 ], [ -117.3895677666, 47.4250017467 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127725976, 48.3407796335 ], [ -122.3057217067, 48.3394359548 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5077498431, 45.6840205721 ], [ -122.5063250059, 45.6848578255 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4798850922, 46.5977376972 ], [ -120.4748023779, 46.5896995193 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2955397516, 47.040162607 ], [ -122.2953114868, 47.0439310162 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4751978366, 48.3959072026 ], [ -119.5023027759, 48.4022781572 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4127242746, 47.7151457037 ], [ -117.4351007945, 47.7154472911 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108693497, 47.8004619779 ], [ -122.2077141546, 47.8063531965 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2223022809, 46.5981111151 ], [ -118.2257643504, 46.6045957035 ], [ -118.2223138409, 46.6097615191 ], [ -118.2404866495, 46.6279194815 ], [ -118.2450914062, 46.6416022081 ], [ -118.2651804981, 46.6565738532 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134270225, 47.6531107382 ], [ -117.4134608952, 47.6527226616 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7793761782, 46.2212051746 ], [ -119.7556065922, 46.2209514813 ], [ -119.7456908937, 46.2158646763 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1320219502, 47.2363423355 ], [ -123.1277858514, 47.2236494996 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3518193824, 47.7919039464 ], [ -117.3500487942, 47.7980256738 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2920566884, 47.4105282137 ], [ -120.2941276522, 47.4130153494 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8090468875, 46.9772106863 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3329165329, 47.5234893652 ], [ -122.3343743094, 47.5297826683 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931085242, 47.392427434 ], [ -122.2865268063, 47.3906729649 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.6497283577 ], [ -122.5906026172, 45.6527948204 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.4352395576 ], [ -117.7149843296, 47.4501888753 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8260870372, 47.777964567 ], [ -120.8141165471, 47.7731482573 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9796978543, 47.9684303804 ], [ -118.9621464726, 47.9788971521 ], [ -118.95552571, 47.9967673661 ], [ -118.9422778312, 48.0154868034 ], [ -118.9435832543, 48.025575113 ], [ -118.9867693325, 48.0530626329 ], [ -118.9736668822, 48.0641934995 ], [ -118.9821481019, 48.0758148849 ], [ -118.9820321546, 48.0927666601 ], [ -118.9898155429, 48.1044621788 ], [ -118.9790932527, 48.1197891062 ], [ -118.9775744375, 48.130752286 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547617311, 46.345935959 ], [ -124.0547456263, 46.346612471 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2671353579, 48.4299276122 ], [ -122.264774667, 48.429909313 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5970369922, 47.0955432506 ], [ -117.6318611212, 47.1066720807 ], [ -117.6461224106, 47.1166306215 ], [ -117.6838431177, 47.1180750089 ], [ -117.707883861, 47.1113392664 ], [ -117.7190609148, 47.1167193872 ], [ -117.7345700167, 47.1169266042 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1421354348, 47.4475636134 ], [ -117.141577431, 47.4500082492 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3460816248, 46.8885837829 ], [ -117.3041492589, 46.8990209551 ], [ -117.2746295508, 46.9141916061 ], [ -117.2704255183, 46.9127594447 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903760819, 47.9768936616 ], [ -122.1829774552, 47.9869383211 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8834047537, 46.113522401 ], [ -122.8982367501, 46.1289443409 ], [ -122.8976072607, 46.1404539675 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6929707776, 47.5042331597 ], [ -117.6934989729, 47.5042678567 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8081064714, 45.8245819424 ], [ -120.8053708556, 45.8265045706 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9119035401, 46.1765920328 ], [ -122.9063657838, 46.1800997708 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497979206, 46.8597063959 ], [ -117.3570081447, 46.8650918135 ], [ -117.3554031402, 46.8717225878 ], [ -117.3641647883, 46.8740109029 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.068840619, 46.9108595721 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.1916397461 ], [ -122.2293785955, 47.1902878983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0239734671, 46.7645457326 ], [ -117.9831420651, 46.7629392432 ], [ -117.9366891767, 46.7853119491 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0970384228, 46.8218084668 ], [ -123.0905398888, 46.8217373497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0545804856, 46.3501186151 ], [ -124.0544043707, 46.3526539161 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9747719324, 46.7112626752 ], [ -122.9699877988, 46.7110483932 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376219385, 47.4652954001 ], [ -122.1566237324, 47.4685018085 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4815523866, 47.9470052096 ], [ -117.5235622768, 47.9784884907 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418858195, 46.4199930726 ], [ -117.0398979045, 46.4201869144 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286086093, 47.4699818296 ], [ -122.3127555504, 47.4701556709 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8029450786, 46.9697219828 ], [ -123.8046532988, 46.9702958878 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.2781150352, 46.2587418451 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3690791376, 48.8628154536 ], [ -117.364148903, 48.8597893208 ], [ -117.3617197932, 48.8661339983 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3836725936, 48.891377649 ], [ -122.3760304765, 48.891834109 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6786220988, 48.073901581 ], [ -123.6689386318, 48.0733486098 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1922476604, 47.98179891 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5384276031, 46.6224575094 ], [ -120.5219723944, 46.626090815 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.9514925058 ], [ -122.0707436627, 47.9406113033 ], [ -122.0751751165, 47.9197652005 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8133324553, 47.0524920951 ], [ -122.7878727232, 47.0597313969 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9420276289, 48.8891584197 ], [ -121.9241996724, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.9058079495 ], [ -121.8682821094, 48.9018532858 ], [ -121.7845347292, 48.9125297162 ], [ -121.7740122508, 48.9093794354 ], [ -121.7601734233, 48.9113382708 ], [ -121.7351648161, 48.9028517067 ], [ -121.7046225873, 48.9084869163 ], [ -121.6936997501, 48.906634052 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3590200387, 46.8898382458 ], [ -122.3589746896, 46.8933149788 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.6496170314 ], [ -122.3223421817, 47.6560094062 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1858412261, 47.7634469513 ], [ -122.1876596894, 47.7659065312 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3520946491, 47.9747243569 ], [ -122.3522945196, 47.9747750631 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938609707, 48.8575655792 ], [ -122.3097395207, 48.8660049753 ], [ -122.3097414265, 48.8834697321 ], [ -122.3205696751, 48.8842446664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.8121145139 ], [ -122.3832242727, 47.8097517091 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6842799668, 47.508587719 ], [ -117.587167089, 47.5708280871 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8364747547, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1035997262, 47.668444842 ], [ -122.0997715333, 47.6656995892 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7313710506, 46.6903743354 ], [ -123.7361025624, 46.6937072147 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2783410998, 47.5080120111 ], [ -122.2788666186, 47.5036332815 ], [ -122.2702955652, 47.4970013804 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3295502762, 47.7047809866 ], [ -122.3271587307, 47.7136272159 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7354912874, 46.5526532482 ], [ -121.6910471042, 46.5761502729 ], [ -121.6861660179, 46.5905859513 ], [ -121.6750836999, 46.6021829664 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.2324653952 ], [ -122.4321127257, 47.2333231589 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8747183109, 47.2330604599 ], [ -119.8700407404, 47.2331134363 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7957761395, 47.4887865294 ], [ -121.7967231004, 47.488245636 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6434331584, 48.3065806606 ], [ -122.6380141443, 48.3112290202 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3324821085, 47.534523388 ], [ -122.3350200428, 47.5391616011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9300694121, 46.1160931581 ], [ -122.926866154, 46.1216324995 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1079704304, 46.8588588821 ], [ -124.0994911249, 46.8588806371 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4518693234, 45.9101122837 ], [ -122.4469167382, 45.910167278 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6540439356, 47.5990844387 ], [ -120.6462988146, 47.596485754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4495337758, 46.5039654868 ], [ -120.4137225019, 46.4856279656 ], [ -120.4004187802, 46.4742779497 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519709732, 45.9059295423 ], [ -122.4490361292, 45.9074852932 ], [ -122.4518693234, 45.9101122837 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704395067, 45.6325772078 ], [ -122.6726772266, 45.6325544336 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9538231518, 46.7487811507 ], [ -122.9478831901, 46.7533571733 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1788357705, 46.7295852663 ], [ -117.1799080975, 46.7296299262 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.2991695402 ], [ -118.276819223, 46.297266298 ], [ -118.2231220368, 46.277953835 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2690111833, 47.4377897666 ], [ -122.2633467095, 47.4598544879 ], [ -122.2687488564, 47.4721785489 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1875760408, 46.6478028536 ], [ -117.1915478685, 46.6599654613 ], [ -117.1988941769, 46.666906221 ], [ -117.195441231, 46.6743020858 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.724042039, 47.9126704949 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150102837, 46.3792337657 ], [ -120.3161032894, 46.3779887108 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5916519331, 48.3502168576 ], [ -119.5910782183, 48.349487973 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0626629459, 48.1752916443 ], [ -117.052759201, 48.1759897639 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617032151, 45.6433830491 ], [ -122.6617020964, 45.6446264754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8540700226, 47.0883824388 ], [ -119.8347016505, 47.1010560076 ], [ -119.8239536487, 47.1032398754 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0576029409, 47.0916817763 ], [ -122.0458704138, 47.0990889736 ], [ -122.0454972488, 47.103424531 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5455047346, 48.0151911959 ], [ -122.5604137621, 48.0262292109 ], [ -122.5668558184, 48.0450684226 ], [ -122.5682398591, 48.0885136006 ], [ -122.5876777121, 48.1210599346 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2974847948, 47.9152081943 ], [ -122.3001156286, 47.9185854039 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3170457721, 47.4294662441 ], [ -120.3176595662, 47.4302249495 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5138464975, 48.416820343 ], [ -119.51157568, 48.4168080215 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246218752, 45.6254040131 ], [ -122.0163741662, 45.6319524828 ], [ -122.0088409823, 45.6309029624 ], [ -121.9860480217, 45.6413721887 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7201925534, 48.9725563663 ], [ -122.7328423678, 48.9841695596 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578563225, 48.2883491403 ], [ -122.6578488817, 48.2895410127 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5263000656, 46.9709601801 ], [ -120.497732858, 46.9704790806 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0419262876, 46.2219914931 ], [ -120.0027133993, 46.2121666208 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2202025787, 47.4072374973 ], [ -122.2207233046, 47.4156833158 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0823565056, 46.2482752943 ], [ -119.0820864503, 46.2486605032 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3556390004, 45.9892331664 ], [ -122.3647789259, 45.992938942 ], [ -122.3649925149, 45.9971019257 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.5499987592 ], [ -120.3750456098, 46.5493985238 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6325132774, 46.1868027068 ], [ -119.6640303518, 46.1872361321 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1069520778, 47.4029037206 ], [ -119.0663191716, 47.4059245392 ], [ -119.0422944621, 47.3856092016 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9561002594, 46.5266704559 ], [ -121.9572975987, 46.5353534207 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4150633113, 46.0706784483 ], [ -118.3764731907, 46.0716522784 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2025293491, 48.8159609661 ], [ -122.1954842634, 48.8206495581 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472358647, 45.8117200378 ], [ -122.5469856665, 45.8168217556 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8269852287, 46.9708707418 ], [ -123.8261026875, 46.9700612141 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478299761, 47.0358210791 ], [ -122.9316246804, 47.0277555011 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.9939874349 ], [ -122.7353942026, 49.0020702071 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938084119, 46.3141920165 ], [ -119.2862401307, 46.308479073 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3051065733, 47.9435748501 ], [ -122.3044461333, 47.9446172164 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6890804036, 47.1533532154 ], [ -121.6592910203, 47.1591358128 ], [ -121.619821252, 47.133142341 ], [ -121.6124069417, 47.1210645571 ], [ -121.5963308595, 47.1073463507 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235907413, 47.620646532 ], [ -117.2236317238, 47.6278867921 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.8868092337 ], [ -124.1042063039, 46.8868591474 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8770396143, 46.5473587206 ], [ -122.8752641023, 46.5473525241 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206641784, 48.920195997 ], [ -122.3219125052, 48.9201922455 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3589746896, 46.8933149788 ], [ -122.3573827719, 46.9297368504 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3515312423, 47.9748188959 ], [ -122.3520946491, 47.9747243569 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0003727518, 46.1639381329 ], [ -122.9961129273, 46.1618451049 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114164195, 47.8021101024 ], [ -122.1053446624, 47.8104011539 ], [ -122.0654931199, 47.8179312301 ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.6316024762 ], [ -122.6659555363, 45.631898547 ] ] } } ] } diff --git a/examples/data/origdata/lines_c_wsdot_aadt.geojson b/examples/data/origdata/lines_c_wsdot_aadt.geojson deleted file mode 100644 index b425e2c..0000000 --- a/examples/data/origdata/lines_c_wsdot_aadt.geojson +++ /dev/null @@ -1,4886 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "lines_c_wsdot_aadt2", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "OBJECTID": 1, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1922237193, 47.3773145311 ], [ -120.1403017666, 47.3713844944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2, "RouteIdentifier": "014", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209227556, 45.5721542335 ], [ -122.29949512, 45.571607305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223069573, 47.683835222 ], [ -122.3260483397, 47.6867923802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2673512221, 47.2007333641 ], [ -122.2604202074, 47.2012176284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 5, "RouteIdentifier": "017", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832090078, 47.3836367426 ], [ -119.4832316128, 47.3884806862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 6, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940086764, 47.2249092263 ], [ -122.293850203, 47.2500481115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 7, "RouteIdentifier": "171", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.289772823, 47.1254917575 ], [ -119.2815617176, 47.1297537126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 8, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555936398, 47.8589452723 ], [ -117.3577112718, 47.8814244662 ], [ -117.3523268647, 47.8961954425 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 9, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8752641023, 46.5473525241 ], [ -122.8650512546, 46.5465667665 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 10, "RouteIdentifier": "119", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2105622712, 47.4554072848 ], [ -123.2127462556, 47.4576868663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 11, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0687629907, 46.3226150928 ], [ -120.0440296636, 46.3075497622 ], [ -120.0285168926, 46.3059630059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 12, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2219122891, 47.6270557243 ], [ -120.2084267507, 47.6265613257 ], [ -120.1950551418, 47.6327544789 ], [ -120.1809857702, 47.6313450664 ], [ -120.1479862888, 47.6503824795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 13, "RouteIdentifier": "528", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1193130939, 48.0535474274 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 14, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3005913938, 47.4765744345 ], [ -120.2973152366, 47.5006578675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 15, "RouteIdentifier": "150", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1084617824, 47.8738712824 ], [ -120.1019008002, 47.8648083629 ], [ -120.0721004876, 47.859499395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 16, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0894657528, 46.2734887506 ], [ -119.0934185999, 46.2851671356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 17, "RouteIdentifier": "410", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2217568694, 47.194537858 ], [ -122.212761856, 47.1970266396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 18, "RouteIdentifier": "405", "AADT": 174000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799148927, 47.5984958939 ], [ -122.1862318775, 47.6058898709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 19, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217501674, 48.4051129342 ], [ -119.5213520361, 48.4038791845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 20, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1265910273, 47.2001121701 ], [ -123.1018056421, 47.1837746945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 21, "RouteIdentifier": "970", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.835010601, 47.1813621929 ], [ -120.8081625673, 47.19291613 ], [ -120.7730682265, 47.1959969886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 22, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3325641688, 48.8145942815 ], [ -122.327035238, 48.8181848035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 23, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045734555, 47.6490440633 ], [ -122.3036135383, 47.6515712549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 24, "RouteIdentifier": "260", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5884939945, 46.6478136609 ], [ -118.5565118981, 46.6435530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 25, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9202563007, 47.8731183295 ], [ -119.9168716778, 47.8830195848 ], [ -119.9175688105, 47.9042347352 ], [ -119.888689271, 47.925649692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 26, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3181975005, 47.8175907621 ], [ -122.3150855528, 47.8211917901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 27, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339339028, 47.4005463581 ], [ -117.7937991559, 47.4331327858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 28, "RouteIdentifier": "290", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3920677701, 47.6528570613 ], [ -117.3930264257, 47.6536012073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 29, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616900184, 48.0042963392 ], [ -122.4676875773, 48.0079051908 ], [ -122.531073695, 48.0085360069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 30, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2789804626, 47.867386825 ], [ -122.2756369244, 47.8708807894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 31, "RouteIdentifier": "504SPOLD504", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5609895827, 46.3647132472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 32, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3260483397, 47.6867923802 ], [ -122.32907164, 47.6943145242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 33, "RouteIdentifier": "017", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4710716591, 47.2737539701 ], [ -119.4826447809, 47.3232113182 ], [ -119.4756411869, 47.3509675109 ], [ -119.4791481927, 47.3691228237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 34, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6882400113, 47.6692766526 ], [ -122.6900708232, 47.6742545713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 35, "RouteIdentifier": "011", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3773305642, 48.5155613349 ], [ -122.3786436215, 48.5169464302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 36, "RouteIdentifier": "002", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4817145594, 47.7503088944 ], [ -118.4711275269, 47.7344847908 ], [ -118.3936449799, 47.6932837218 ], [ -118.3442644432, 47.6573447006 ], [ -118.3165261274, 47.6448669186 ], [ -118.2186138675, 47.6426665493 ], [ -118.1788708956, 47.6503359058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 37, "RouteIdentifier": "164", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0162359001, 47.2074211012 ], [ -121.9888740579, 47.2031602024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 38, "RouteIdentifier": "110", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5299932781, 47.9150697025 ], [ -124.5344288985, 47.9127912202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 39, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8042667838, 47.4677635998 ], [ -122.7922032406, 47.476414011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 40, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4611233972, 47.2285063751 ], [ -122.46060986, 47.2297520929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 41, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1111876927, 48.0718480284 ], [ -122.1116525558, 48.0918800123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 42, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6286423009, 48.325690041 ], [ -122.6303344465, 48.3337416853 ], [ -122.6260671635, 48.3402015788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 43, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2311497101, 47.1220696502 ], [ -117.235609286, 47.1247339542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 44, "RouteIdentifier": "706", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0309120554, 46.7587001203 ], [ -121.9814105695, 46.7572813912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 45, "RouteIdentifier": "031", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135449594, 48.7213796222 ], [ -117.4135771849, 48.7285818258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 46, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4059782511, 47.8001660961 ], [ -117.4074639212, 47.8123509195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 47, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3365632968, 47.2450397981 ], [ -122.3353775602, 47.2512222204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 48, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.436113822, 47.2534933593 ], [ -122.4363679452, 47.2544445506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 49, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0933468628, 46.1991336316 ], [ -119.1012238708, 46.2052016642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 50, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1911483543, 47.5183415887 ], [ -117.1974475198, 47.5227002331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 51, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7397102898, 46.7012896138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 52, "RouteIdentifier": "099", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959583754, 47.4506600917 ], [ -122.2916171614, 47.4596862569 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 53, "RouteIdentifier": "027", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397118795, 47.6707021684 ], [ -117.2396318808, 47.6716727121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 54, "RouteIdentifier": "097", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933744977, 46.4150549766 ], [ -120.3959492409, 46.4169433277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 55, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6734966352, 46.3612844656 ], [ -122.650489049, 46.3557399918 ], [ -122.6382937487, 46.3654953749 ], [ -122.6200459422, 46.3718240773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 56, "RouteIdentifier": "525", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2765740876, 47.8734029921 ], [ -122.2777737236, 47.879481564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 57, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2143023696, 46.4117358872 ], [ -117.2060959145, 46.4151094256 ], [ -117.1848415097, 46.4126701464 ], [ -117.1634328434, 46.4240635088 ], [ -117.1438680931, 46.4278013383 ], [ -117.0874609685, 46.4153003586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 58, "RouteIdentifier": "014", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6334221513, 45.6184980719 ], [ -122.6266798027, 45.6184887446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 59, "RouteIdentifier": "506", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0436033456, 46.3778943675 ], [ -123.0368091721, 46.3974067466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 60, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0250689519, 47.8360845439 ], [ -120.0239885328, 47.836037193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 61, "RouteIdentifier": "502", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499497496, 45.7806466337 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 62, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.82404435, 47.4527245935 ], [ -122.8201543029, 47.4545979618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 63, "RouteIdentifier": "017", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832088344, 47.3835435175 ], [ -119.4832090078, 47.3836367426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 64, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2346365429, 48.3169213007 ], [ -122.2366632871, 48.3204677227 ], [ -122.2321815344, 48.32047636 ], [ -122.2326302599, 48.3235497417 ], [ -122.2091366451, 48.3331360287 ], [ -122.20310466, 48.3476787003 ], [ -122.2067256114, 48.3642645921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 65, "RouteIdentifier": "525", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.531073695, 48.0085360069 ], [ -122.5339872909, 48.0097622963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 66, "RouteIdentifier": "272", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0547386882, 46.9253808035 ], [ -117.0395144382, 46.9302931184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 67, "RouteIdentifier": "004", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7347135662, 46.3543537474 ], [ -123.7157590122, 46.3489750762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 68, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6686598398, 47.12002506 ], [ -120.6837937197, 47.1293370288 ], [ -120.7051341774, 47.1629714624 ], [ -120.7023177917, 47.1754533511 ], [ -120.7067796881, 47.1840974012 ], [ -120.7080243736, 47.2036487713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 69, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958194243, 47.3530329299 ], [ -122.2946343778, 47.3643588625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 70, "RouteIdentifier": "016", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6177931336, 47.3660514733 ], [ -122.6156699298, 47.3867506969 ], [ -122.624274168, 47.4020537577 ], [ -122.624470827, 47.4111862674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 71, "RouteIdentifier": "291", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5325801467, 47.7818048655 ], [ -117.5272372278, 47.7876435363 ], [ -117.5354467442, 47.7978975469 ], [ -117.5536352201, 47.8043838824 ], [ -117.5553559852, 47.8104238423 ], [ -117.5692400943, 47.8125064907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 72, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0395375143, 48.1839762284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 73, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0905398888, 46.8217373497 ], [ -123.0798684236, 46.8216532259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 74, "RouteIdentifier": "009", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2715285544, 48.9748696672 ], [ -122.2650050712, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 75, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3370917545, 47.4657444174 ], [ -120.3384219874, 47.4671390718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 76, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1844675978, 48.0584615787 ], [ -122.1847688223, 48.0681379541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 77, "RouteIdentifier": "090", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1030345042, 47.677801453 ], [ -117.0542260413, 47.6939743273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 78, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634152739, 47.0903093008 ], [ -122.6305634117, 47.0911974641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 79, "RouteIdentifier": "174", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -118.9998507933, 47.9597933478 ], [ -119.0016246215, 47.9560020349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 80, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4171863107, 48.1123263385 ], [ -123.404306887, 48.1071331596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 81, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7066290132, 47.5247891631 ], [ -122.6974328926, 47.5290055297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 82, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930223395, 47.1364690107 ], [ -122.2929693831, 47.1402423696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 83, "RouteIdentifier": "002", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.185861118, 47.9794731965 ], [ -122.1697766801, 47.9782340718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 84, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2010578056, 47.8100663059 ], [ -122.1943284707, 47.8116126602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 85, "RouteIdentifier": "432", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0258249511, 46.1766934283 ], [ -123.0304642178, 46.1645370289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 86, "RouteIdentifier": "109", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1655918294, 47.0723702608 ], [ -124.1738772879, 47.1121270494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 87, "RouteIdentifier": "174SPCRWNPT", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0033625218, 47.9639235084 ], [ -119.0018417526, 47.9714245764 ], [ -118.98586136, 47.9716814731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 88, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2255548441, 48.5141869713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 89, "RouteIdentifier": "006", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1262630128, 46.6018315229 ], [ -123.0966056992, 46.6268683975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 90, "RouteIdentifier": "108", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2662889573, 47.055615833 ], [ -123.2652259391, 47.0556339624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 91, "RouteIdentifier": "105", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0614923955, 46.8642889165 ], [ -124.0521133187, 46.8710825521 ], [ -124.0439366003, 46.8923982723 ], [ -124.0040591243, 46.8921353893 ], [ -123.9890755509, 46.9098779782 ], [ -123.9365577148, 46.9230494022 ], [ -123.9197831063, 46.931113491 ], [ -123.8673289312, 46.9433556183 ], [ -123.8480154625, 46.9435702245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 92, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969102286, 47.5026900234 ], [ -122.1949845235, 47.5021417776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 93, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7534494161, 45.9236451726 ], [ -122.7604926179, 45.9331454264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 94, "RouteIdentifier": "012", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.550440133, 46.5344542826 ], [ -122.5170315735, 46.5330350165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 95, "RouteIdentifier": "542", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2776857935, 48.8435345933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 96, "RouteIdentifier": "163", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159492661, 47.2571623867 ], [ -122.5159507876, 47.2584346491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 97, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7078176969, 48.1979655963 ], [ -117.7153794817, 48.2082318736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 98, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3290774024, 47.5942483647 ], [ -122.3297505745, 47.5932743791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 99, "RouteIdentifier": "503", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018126834, 45.8933986585 ], [ -122.4525420007, 45.8955411657 ], [ -122.4519709732, 45.9059295423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 100, "RouteIdentifier": "108", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2866459043, 47.0557293212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 101, "RouteIdentifier": "508", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8857507292, 46.5838092047 ], [ -122.8838617499, 46.5838405084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 102, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.547381969, 46.7802658991 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 103, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0929136587, 48.0727563835 ], [ -123.0602108175, 48.0644077043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 104, "RouteIdentifier": "500", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055508584, 45.5906041586 ], [ -122.4001255166, 45.5869987019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 105, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.8236282381, 45.6963748835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 106, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6889327532, 47.3381121478 ], [ -118.6995142736, 47.3563618481 ], [ -118.6991242989, 47.3709132653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 107, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.6683085988, 48.2948724981 ], [ -119.626284036, 48.3081932192 ], [ -119.6069922762, 48.3197133157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 108, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.959008749, 47.2322639062 ], [ -123.9454549934, 47.2361778754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 109, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578697003, 48.2871805041 ], [ -122.6578563225, 48.2883491403 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 110, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5178867416, 47.8084398669 ], [ -122.5036732886, 47.8027461252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 111, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6622739757, 45.6359541769 ], [ -122.6617032151, 45.6433830491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 112, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9144562174, 46.3202165297 ], [ -122.9095978806, 46.3282371415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 113, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7834183624, 47.4410207892 ], [ -117.6947330224, 47.501473805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 114, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349389318, 47.2327862223 ], [ -122.4231498311, 47.236217271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 115, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351426952, 48.421566968 ], [ -122.3410552917, 48.4313110136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 116, "RouteIdentifier": "090", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8899669956, 47.507262303 ], [ -121.8642395904, 47.5111841759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 117, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9560547959, 47.9246186729 ], [ -118.9422723546, 47.9168139511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 118, "RouteIdentifier": "281", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8535287712, 47.1322250265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 119, "RouteIdentifier": "903", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0376452727, 47.2410571348 ], [ -121.0465852827, 47.2442852642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 120, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3851698428, 47.4416448647 ], [ -117.3846465219, 47.4488701305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 121, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0391231637, 46.4202563296 ], [ -117.0389677607, 46.4202679171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 122, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3025873431, 47.4686065666 ], [ -120.2997979412, 47.4682860937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 123, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7663244649, 47.4942350849 ], [ -122.7350085187, 47.5157381772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 124, "RouteIdentifier": "503", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4004321611, 45.9963687794 ], [ -122.4160233566, 45.9925843034 ], [ -122.4240462352, 45.9831575594 ], [ -122.4609396952, 45.9952678398 ], [ -122.5034799431, 45.9983583464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 125, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0501760455, 46.4755815152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 126, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4028330225, 47.1110883316 ], [ -118.3796443329, 47.1117747241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 127, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1100108885, 47.4425936333 ], [ -117.0951016391, 47.4382498075 ], [ -117.0779731302, 47.442965311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 128, "RouteIdentifier": "240", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3023056898, 46.2676765369 ], [ -119.2905873773, 46.2611443687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 129, "RouteIdentifier": "524SP3RDAVE", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3815863213, 47.8032716419 ], [ -122.3832557827, 47.8034144615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 130, "RouteIdentifier": "900", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1514985886, 47.5062570131 ], [ -122.1429848329, 47.5057588479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 131, "RouteIdentifier": "101", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095625837, 47.0558186162 ], [ -123.0065316221, 47.0552123027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 132, "RouteIdentifier": "018", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844861848, 47.2982208758 ], [ -122.2721730722, 47.3039622013 ], [ -122.2563579686, 47.3028065567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 133, "RouteIdentifier": "395", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.630503668, 48.080995459 ], [ -117.6585103049, 48.1402801323 ], [ -117.6860630929, 48.148122845 ], [ -117.7037053316, 48.1707366815 ], [ -117.7005163888, 48.1889954329 ], [ -117.7078176969, 48.1979655963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 134, "RouteIdentifier": "099", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3435956074, 47.6246542116 ], [ -122.3436176395, 47.6252248523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 135, "RouteIdentifier": "278", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1273008596, 47.4454628501 ], [ -117.1100108885, 47.4425936333 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 136, "RouteIdentifier": "302SPPURDY", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6257721122, 47.4000022997 ], [ -122.6242524897, 47.402892309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 137, "RouteIdentifier": "112", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5666907268, 48.114021332 ], [ -123.561617171, 48.1030684118 ], [ -123.5537509538, 48.0996615302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 138, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6849142545, 46.0415021587 ], [ -118.6692405052, 46.0403350228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 139, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2137802603, 47.9942207425 ], [ -122.2138635159, 47.9989436144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 140, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7457821436, 46.6828253187 ], [ -123.7367980221, 46.6805525735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 141, "RouteIdentifier": "155", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0563552656, 47.9153765852 ], [ -119.0380002259, 47.9325544575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 142, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.083420541, 46.2402395389 ], [ -119.0854605595, 46.245260658 ], [ -119.0823565056, 46.2482752943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 143, "RouteIdentifier": "542", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1375909505, 48.9171432802 ], [ -122.1322464977, 48.9173156398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 144, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8455160853, 47.415535475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 145, "RouteIdentifier": "112", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3939306113, 48.2869815122 ], [ -124.3487894025, 48.2702583288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 146, "RouteIdentifier": "007", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340520373, 47.2230930942 ], [ -122.4250777648, 47.2230824389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 147, "RouteIdentifier": "524", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1137494257, 47.8050106332 ], [ -122.1118699043, 47.8049010687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 148, "RouteIdentifier": "109COHQUIAM", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8883863985, 46.9801777553 ], [ -123.8874051323, 46.9794818062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 149, "RouteIdentifier": "524SP3RDAVE", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802579386, 47.804112396 ], [ -122.3815863213, 47.8032716419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 150, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0277101274, 47.8474213611 ], [ -120.0202611393, 47.8413912452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 151, "RouteIdentifier": "546", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4744048469, 48.9644201365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 152, "RouteIdentifier": "705", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356457951, 47.2494493698 ], [ -122.436113822, 47.2534933593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 153, "RouteIdentifier": "539", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856871492, 48.8695370939 ], [ -122.4856549623, 48.8698410399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 154, "RouteIdentifier": "504", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7622997913, 46.31964321 ], [ -122.7323106527, 46.3245338278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 155, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8640137768, 47.2332276959 ], [ -119.8587943416, 47.2333342522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 156, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7770276759, 48.649473503 ], [ -118.7391181737, 48.6476256888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 157, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9823417916, 47.8127801291 ], [ -121.970995859, 47.8259643642 ], [ -121.9694473416, 47.8430757428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 158, "RouteIdentifier": "405", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1766955576, 47.5724700872 ], [ -122.174140027, 47.5778363862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 159, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2268964445, 47.8867919049 ], [ -122.2159243491, 47.8953256029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 160, "RouteIdentifier": "162", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.059029398, 47.1421956268 ], [ -122.0564566441, 47.1405104825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 161, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92729038, 47.0572059596 ], [ -123.9287037815, 47.0601524957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 162, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2280903322, 47.9083247357 ], [ -122.2233288919, 47.9095861548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 163, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4105333679, 47.412298435 ], [ -121.4002907153, 47.3993957355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 164, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9656135911, 47.858227985 ], [ -121.9638147974, 47.8578165968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 165, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340284894, 45.6462602442 ], [ -122.6163705941, 45.6478697622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 166, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7339030885, 45.9187733832 ], [ -122.7404887482, 45.9171006476 ], [ -122.741223238, 45.913180857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 167, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3513796962, 45.9446481587 ], [ -119.3350044738, 45.9455289592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 168, "RouteIdentifier": "109", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.902252551, 46.9810452868 ], [ -123.9062715578, 46.9810823154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 169, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0215352259, 46.3175795065 ], [ -124.0286534428, 46.311088406 ], [ -124.0415185162, 46.3088525506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 170, "RouteIdentifier": "108", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2754372301, 47.0555807313 ], [ -123.2662889573, 47.055615833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 171, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2439880813, 47.3740667238 ], [ -122.2442490763, 47.3856159218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 172, "RouteIdentifier": "538", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3174867795, 48.4356661942 ], [ -122.3133909339, 48.4356182605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 173, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922476604, 47.98179891 ], [ -122.199993321, 47.9818766144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 174, "RouteIdentifier": "395", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4070751366, 47.1033095374 ], [ -118.3877812751, 47.1104919463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 175, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.440005912, 48.7023795423 ], [ -119.4186609734, 48.6884346356 ], [ -119.3587578096, 48.6725327308 ], [ -119.3466152635, 48.6636563193 ], [ -119.3303173221, 48.6585990657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 176, "RouteIdentifier": "127", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7931037677, 46.617894857 ], [ -117.8115600109, 46.6379634079 ], [ -117.8063279649, 46.6553619757 ], [ -117.7983218662, 46.6661079567 ], [ -117.8154114815, 46.6748014633 ], [ -117.8035001513, 46.6863405276 ], [ -117.7939941091, 46.689334233 ], [ -117.7839885351, 46.7092148338 ], [ -117.7533189568, 46.7361703665 ], [ -117.7312634359, 46.7380609644 ], [ -117.7294282626, 46.7486084104 ], [ -117.7158828796, 46.7583207914 ], [ -117.7043255452, 46.7738226067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 177, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8466345144, 47.0432987731 ], [ -122.8322700503, 47.0459335687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 178, "RouteIdentifier": "410", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2337989939, 47.1915311175 ], [ -122.2217568694, 47.194537858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 179, "RouteIdentifier": "510", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7651140331, 47.0629504411 ], [ -122.7648711374, 47.0612918893 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 180, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8253745361, 46.709170275 ], [ -123.8311196925, 46.7198868797 ], [ -123.846375426, 46.71976203 ], [ -123.8573903297, 46.7294966365 ], [ -123.875915207, 46.7307655351 ], [ -123.8845152186, 46.7436092547 ], [ -123.8841812425, 46.749824761 ], [ -123.8906555633, 46.7520952605 ], [ -123.9166124942, 46.7438549649 ], [ -123.9263452217, 46.7256804588 ], [ -123.9472489197, 46.7258811772 ], [ -123.9742906306, 46.7404871457 ], [ -123.9900095006, 46.7320277366 ], [ -124.0203997477, 46.7246504747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 181, "RouteIdentifier": "002", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2973152366, 47.5006578675 ], [ -120.2970255151, 47.5111002228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 182, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8906915475, 46.5450662647 ], [ -117.8745068603, 46.5453492398 ], [ -117.8562732625, 46.5369650839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 183, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6957500975, 47.3044682452 ], [ -120.6919262643, 47.3189008424 ], [ -120.6706596611, 47.3260826644 ], [ -120.6285638874, 47.3350952018 ], [ -120.6108972417, 47.3314579592 ], [ -120.5922999578, 47.3366776893 ], [ -120.5808735402, 47.3353309836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 184, "RouteIdentifier": "165", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0454972488, 47.103424531 ], [ -122.0470850116, 47.1062792018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 185, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2862401307, 46.308479073 ], [ -119.2975114504, 46.3001018541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 186, "RouteIdentifier": "240", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3989176751, 46.3702741916 ], [ -119.346211276, 46.3415217482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 187, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1080928359, 48.0132540479 ], [ -122.1099317298, 48.0262394664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 188, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9099882327, 47.8113401111 ], [ -122.918842027, 47.8022660378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 189, "RouteIdentifier": "028", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2969810046, 47.4206856987 ], [ -120.2947757571, 47.4153242228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 190, "RouteIdentifier": "122", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4954759572, 46.5519074288 ], [ -122.4859844964, 46.5456788983 ], [ -122.4858227533, 46.5364298713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 191, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8111956085, 46.7266981663 ], [ -120.7921152532, 46.7356473477 ], [ -120.7884944778, 46.7483083341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 192, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9894375686, 48.5890571016 ], [ -118.0155804532, 48.600051746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 193, "RouteIdentifier": "017", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832316128, 47.3884806862 ], [ -119.483234393, 47.3893726474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 194, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929693831, 47.1402423696 ], [ -122.2929747612, 47.1553108605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 195, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4077199663, 45.6106168272 ], [ -122.4071070263, 45.6049828823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 196, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3831477693, 46.998968611 ], [ -123.3765852382, 46.990906447 ], [ -123.3417045343, 46.9717882087 ], [ -123.3294181035, 46.960126358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 197, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269502017, 47.4085571911 ], [ -122.3327432015, 47.408543256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 198, "RouteIdentifier": "395", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1318940785, 46.233167577 ], [ -119.1277899267, 46.2435755653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 199, "RouteIdentifier": "020", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.593606156, 48.5397640332 ], [ -117.5783005683, 48.5448469139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 200, "RouteIdentifier": "170", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1099088867, 46.9701523567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 201, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6654874391, 45.6200688002 ], [ -122.6581170517, 45.6185588654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 202, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6032429154, 47.7771222102 ], [ -122.5869526009, 47.7962217258 ], [ -122.5733355827, 47.8027671644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 203, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3029610908, 47.4095632747 ], [ -120.3035547655, 47.410929097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 204, "RouteIdentifier": "501", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6904808118, 45.8157027044 ], [ -122.6873276483, 45.815867042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 205, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612537009, 47.3544077565 ], [ -122.6174730359, 47.3653428749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 206, "RouteIdentifier": "012", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.564276224, 46.4747937676 ], [ -117.5560127138, 46.4751416428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 207, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4716805803, 46.5315434526 ], [ -120.4693962361, 46.5221425225 ], [ -120.4558097511, 46.5163581409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 208, "RouteIdentifier": "023", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9728133998, 47.3032197247 ], [ -117.9722788914, 47.3073278653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 209, "RouteIdentifier": "505", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8657551158, 46.4709082251 ], [ -122.8491311695, 46.4661882079 ], [ -122.8425140234, 46.4589718006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 210, "RouteIdentifier": "005", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067680743, 48.8981282277 ], [ -122.6369094129, 48.9223479428 ], [ -122.6562396315, 48.9328552001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 211, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1118699043, 47.8049010687 ], [ -122.1116803023, 47.8021510795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 212, "RouteIdentifier": "527", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2163760183, 47.8727847101 ], [ -122.2148947405, 47.8742828444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 213, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3464591984, 46.0510569216 ], [ -118.3460982766, 46.053273733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 214, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.483749404, 47.110904091 ], [ -118.4028330225, 47.1110883316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 215, "RouteIdentifier": "131", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9542721665, 46.5167411946 ], [ -121.9544576073, 46.5216015582 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 216, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2077141546, 47.8063531965 ], [ -122.2076567487, 47.8095958449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 217, "RouteIdentifier": "090", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3844324012, 47.6538454237 ], [ -117.3812522854, 47.6538559571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 218, "RouteIdentifier": "543", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7360398713, 48.9865050839 ], [ -122.7349383438, 48.9890983509 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 219, "RouteIdentifier": "104", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7396338722, 47.8911395035 ], [ -122.7323375199, 47.8898968676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 220, "RouteIdentifier": "281SPBURKE", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535293221, 47.1191977539 ], [ -119.8449429934, 47.1094620687 ], [ -119.8324499347, 47.1042259268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 221, "RouteIdentifier": "129", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487788952, 46.3406500803 ], [ -117.0501999692, 46.3407700726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 222, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6934989729, 47.5042678567 ], [ -117.7071635421, 47.5067188922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 223, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2745076704, 48.4947462696 ], [ -122.269198387, 48.4967354264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 224, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3764731907, 46.0716522784 ], [ -118.3592834167, 46.069578111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 225, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876098497, 46.1378429021 ], [ -122.9772037818, 46.1314750359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 226, "RouteIdentifier": "002", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9699337226, 47.859195632 ], [ -121.9656135911, 47.858227985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 227, "RouteIdentifier": "165", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0557206222, 47.1388187332 ], [ -122.0562728458, 47.1405796821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 228, "RouteIdentifier": "903", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0465852827, 47.2442852642 ], [ -121.0567745234, 47.2489122397 ], [ -121.0584176535, 47.257382574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 229, "RouteIdentifier": "105", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0203997477, 46.7246504747 ], [ -124.0529293689, 46.7278782014 ], [ -124.0776344175, 46.7398991912 ], [ -124.0803644861, 46.7452804885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 230, "RouteIdentifier": "022", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8764960512, 46.187636732 ], [ -119.8533745816, 46.1859133588 ], [ -119.7720886189, 46.1957457749 ], [ -119.7518491007, 46.203691501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 231, "RouteIdentifier": "501", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6833369779, 45.6328269221 ], [ -122.6914263595, 45.6358581387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 232, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5930897565, 47.6429188126 ], [ -117.5905461616, 47.6429198089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 233, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9627838072, 46.122637066 ], [ -122.9506147609, 46.1164898023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 234, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2069786865, 47.8783103437 ], [ -122.2066756596, 47.8885941556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 235, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.523755174, 46.2613892962 ], [ -119.4819452858, 46.2520832532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 236, "RouteIdentifier": "009", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1010693917, 47.9456237913 ], [ -122.1014661015, 47.9532966926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 237, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.143191344, 48.145029846 ], [ -117.1016300232, 48.1547517197 ], [ -117.0626629459, 48.1752916443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 238, "RouteIdentifier": "705", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4352497488, 47.247047007 ], [ -122.4356457951, 47.2494493698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 239, "RouteIdentifier": "542", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4491781665, 48.7760427514 ], [ -122.4452973982, 48.7767299988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 240, "RouteIdentifier": "202", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282535153, 47.6874070809 ], [ -122.1216151872, 47.6765956856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 241, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5320368544, 47.6720530531 ], [ -122.5393560124, 47.6795086708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 242, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.632703036, 47.5086822913 ], [ -120.6306952505, 47.5117651765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 243, "RouteIdentifier": "121", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078625453, 46.9528052372 ], [ -122.9142238248, 46.952800067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 244, "RouteIdentifier": "270", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1702535399, 46.7278386224 ], [ -117.1676525064, 46.7262385037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 245, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9694473416, 47.8430757428 ], [ -121.9701538655, 47.8449608786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 246, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8281981659, 46.3913609219 ], [ -123.8208903441, 46.382916336 ], [ -123.8026031248, 46.3760022496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 247, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0867515262, 46.2655755624 ], [ -119.0894657528, 46.2734887506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 248, "RouteIdentifier": "525", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2933970337, 47.9108132967 ], [ -122.2974847948, 47.9152081943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 249, "RouteIdentifier": "028", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422944621, 47.3856092016 ], [ -118.8779127198, 47.3299221964 ], [ -118.8574529391, 47.3194821919 ], [ -118.8085220192, 47.3154321744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 250, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3873706387, 46.4670041855 ], [ -120.3487396874, 46.4448370306 ], [ -120.3388625978, 46.4245692837 ], [ -120.3200293789, 46.4169522648 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 251, "RouteIdentifier": "005", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6562396315, 48.9328552001 ], [ -122.6717054661, 48.9414820309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 252, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2855990411, 47.2943430614 ], [ -121.2804778056, 47.2793125532 ], [ -121.2700379923, 47.2712377268 ], [ -121.2354555076, 47.2675076438 ], [ -121.1938148872, 47.2533046274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 253, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3938232704, 47.1581372397 ], [ -122.3637186054, 47.1582777108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 254, "RouteIdentifier": "548", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7482397955, 48.9864873577 ], [ -122.7514620424, 48.9886011741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 255, "RouteIdentifier": "534", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3057217067, 48.3394359548 ], [ -122.2954733672, 48.3369797762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 256, "RouteIdentifier": "112", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2149004639, 48.1767680441 ], [ -124.2030181472, 48.1804550312 ], [ -124.1958320085, 48.1776212387 ], [ -124.1651364154, 48.1913499188 ], [ -124.1568931216, 48.1895403281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 257, "RouteIdentifier": "165", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9161184136, 46.92713066 ], [ -121.963812764, 46.9377729595 ], [ -121.9797784534, 46.9518926584 ], [ -121.9921794341, 46.953076988 ], [ -122.0038358385, 46.9609913498 ], [ -122.0181933196, 46.9787080824 ], [ -122.0159365761, 46.9942734533 ], [ -122.0378595927, 47.0138315263 ], [ -122.0395446219, 47.033662887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 258, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2471159221, 48.9855358738 ], [ -122.2478579965, 48.9927289918 ], [ -122.2628122677, 48.9927495948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 259, "RouteIdentifier": "206", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1906863712, 47.8382800486 ], [ -117.1758197528, 47.8346000768 ], [ -117.1685156881, 47.8473257512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 260, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329141514, 47.5710682046 ], [ -122.6329070414, 47.5726953913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 261, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1768999971, 47.2389448117 ], [ -121.1674102459, 47.2309146691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 262, "RouteIdentifier": "405", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904031135, 47.7736472661 ], [ -122.1954185124, 47.784730909 ], [ -122.2064752256, 47.7910831404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 263, "RouteIdentifier": "023", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2501056872, 47.4783678971 ], [ -118.2546693813, 47.479786644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 264, "RouteIdentifier": "507", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9232462415, 46.7732075734 ], [ -122.9104250154, 46.7795778822 ], [ -122.8948463321, 46.7986803418 ], [ -122.8750274612, 46.7955222634 ], [ -122.8635507845, 46.8063295169 ], [ -122.8615475437, 46.8501099194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 265, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049767143, 48.8323888064 ], [ -122.296485317, 48.8400447632 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 266, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2196680439, 47.8802932531 ], [ -122.2157321624, 47.8782642533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 267, "RouteIdentifier": "172", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8071947642, 47.81403994 ], [ -119.6850869381, 47.8156626695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 268, "RouteIdentifier": "513", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2999619988, 47.6603776807 ], [ -122.298324518, 47.6610600414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 269, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219018806, 47.3326977386 ], [ -122.3177802121, 47.3354233521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 270, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6583512026, 47.8711608541 ], [ -122.6392561156, 47.8677305236 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 271, "RouteIdentifier": "205", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5563050504, 45.6167350271 ], [ -122.5630189407, 45.6418660754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 272, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7608305412, 48.1125877254 ], [ -122.7602906483, 48.11202882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 273, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205696751, 48.8842446664 ], [ -122.3205534208, 48.891030585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 274, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1788708956, 47.6503359058 ], [ -118.16241258, 47.6536361132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 275, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2913576024, 47.8992527084 ], [ -122.2929510336, 47.905080688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 276, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2359630516, 47.0980998127 ], [ -119.1774124503, 47.0928575254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 277, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5604385799, 47.2858209621 ], [ -122.5695221755, 47.2976027952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 278, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1449657103, 47.7821349681 ], [ -122.1440770168, 47.7838492646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 279, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.167626886, 48.0517882972 ], [ -122.1592829547, 48.0537110655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 280, "RouteIdentifier": "405", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1876596894, 47.7659065312 ], [ -122.1904031135, 47.7736472661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 281, "RouteIdentifier": "012", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9572975987, 46.5353534207 ], [ -121.90788364, 46.5340788266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 282, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9031806451, 48.0520592106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 283, "RouteIdentifier": "167", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446131424, 47.3498974886 ], [ -122.2445299041, 47.3611482288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 284, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25450026, 47.4846758275 ], [ -122.2525911983, 47.4840343924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 285, "RouteIdentifier": "162", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0915871421, 47.1407602078 ], [ -122.077350334, 47.1390929944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 286, "RouteIdentifier": "125", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3895048351, 46.0116896783 ], [ -118.3888808965, 46.0238641947 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 287, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9785905771, 46.3125656122 ], [ -119.9791440454, 46.3170643063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 288, "RouteIdentifier": "002", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7003253167, 47.7576668992 ], [ -118.6135280944, 47.7578991582 ], [ -118.547873384, 47.7633985376 ], [ -118.5164209056, 47.7586626614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 289, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3176595662, 47.4302249495 ], [ -120.319453417, 47.432412369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 290, "RouteIdentifier": "101COPRTANG", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.41797883, 48.1138577083 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 291, "RouteIdentifier": "090", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.123054938, 47.5747409161 ], [ -122.1068419882, 47.5689365485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 292, "RouteIdentifier": "395SPNSC", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3673481617, 47.7688728977 ], [ -117.3741229659, 47.7764638875 ], [ -117.3826725606, 47.7789719928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 293, "RouteIdentifier": "097AR", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.324696923, 47.4721425859 ], [ -120.3235459955, 47.4769045316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 294, "RouteIdentifier": "150", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1511179931, 47.883422456 ], [ -120.1295906216, 47.8811242831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 295, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3352211475, 47.7132173725 ], [ -121.290688, 47.7127258764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 296, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8855586956, 46.2431363274 ], [ -122.8844965185, 46.2561969531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 297, "RouteIdentifier": "021", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6668848781, 47.0903196406 ], [ -118.6669042924, 47.0988351268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 298, "RouteIdentifier": "530", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9318997964, 48.2706730135 ], [ -121.9062086717, 48.2750002287 ], [ -121.8887436919, 48.2715237891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 299, "RouteIdentifier": "027", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0740899923, 47.2211975001 ], [ -117.0730012011, 47.2221634757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 300, "RouteIdentifier": "018", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2443021409, 47.3027122504 ], [ -122.2329381771, 47.3035228844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 301, "RouteIdentifier": "411", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9076435518, 46.2769325247 ], [ -122.9056916194, 46.2824568896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 302, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1823283839, 45.6490400174 ], [ -121.1552091714, 45.6491568269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 303, "RouteIdentifier": "173", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.656743466, 47.9987590553 ], [ -119.6579299947, 47.9994661851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 304, "RouteIdentifier": "014", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2185549591, 45.5661709399 ], [ -122.2012990567, 45.5698716059 ], [ -122.1952852836, 45.5744734955 ], [ -122.1926793172, 45.5847363585 ], [ -122.1788052048, 45.588814009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 305, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2043471222, 47.9819297636 ], [ -122.2057386717, 47.9819494434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 306, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5684177308, 46.7947224844 ], [ -118.54734221, 46.794839539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 307, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.344449168, 47.6905617273 ], [ -122.3444983864, 47.6942136653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 308, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9157314952, 46.1667895778 ], [ -122.9119035401, 46.1765920328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 309, "RouteIdentifier": "014", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0373692153, 45.6641740956 ], [ -120.9810776369, 45.663863346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 310, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5915790813, 46.4740027276 ], [ -117.564276224, 46.4747937676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 311, "RouteIdentifier": "028", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0677060263, 47.3008399269 ], [ -120.0660840825, 47.2782486825 ], [ -120.0772210514, 47.2539372425 ], [ -120.0729382811, 47.2433041563 ], [ -120.0578994726, 47.236158248 ], [ -120.0352275188, 47.2371715429 ], [ -119.9991848792, 47.2312647073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 312, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2229369627, 47.5343029792 ], [ -124.2731333424, 47.5407820544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 313, "RouteIdentifier": "397", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241882947, 46.1498712277 ], [ -119.0298502289, 46.1536456355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 314, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434428667, 48.9313503294 ], [ -122.1515895973, 48.9460909964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 315, "RouteIdentifier": "018", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135246441, 47.2896891115 ], [ -122.3006527009, 47.2899013547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 316, "RouteIdentifier": "501", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7448931286, 45.8153696587 ], [ -122.7319332222, 45.815377897 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 317, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135712365, 47.2861343941 ], [ -122.3135246441, 47.2896891115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 318, "RouteIdentifier": "142", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9972196495, 45.8575744394 ], [ -120.9526232876, 45.8609528341 ], [ -120.9521625359, 45.8499382636 ], [ -120.9420523635, 45.8461706302 ], [ -120.9368329014, 45.8325800913 ], [ -120.90654952, 45.8319001408 ], [ -120.9044761844, 45.8247380049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 319, "RouteIdentifier": "129", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2515257215, 46.0417663171 ], [ -117.2441804807, 46.0447999212 ], [ -117.2380954947, 46.0571340349 ], [ -117.2390964135, 46.0506182014 ], [ -117.2352747181, 46.0504150878 ], [ -117.2398123566, 46.0452544415 ], [ -117.2301501473, 46.0513421257 ], [ -117.2303844377, 46.054464388 ], [ -117.2342914445, 46.0534318514 ], [ -117.2289228871, 46.0662303226 ], [ -117.2172844158, 46.0720892771 ], [ -117.2090263073, 46.0707833675 ], [ -117.2102099243, 46.0742553436 ], [ -117.1872269675, 46.0799763775 ], [ -117.1775707316, 46.0877797821 ], [ -117.1594657515, 46.0904525526 ], [ -117.14576963, 46.0998598289 ], [ -117.1354669642, 46.1156767211 ], [ -117.130739594, 46.1379000516 ], [ -117.1217205642, 46.148960802 ], [ -117.0817036198, 46.1745074608 ], [ -117.0792404746, 46.1865400964 ], [ -117.0715404689, 46.1959222812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 320, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9050816787, 48.5343812278 ], [ -117.9055307646, 48.5363629877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 321, "RouteIdentifier": "411", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9261218499, 46.1229717137 ], [ -122.925898762, 46.1234239447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 322, "RouteIdentifier": "507", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9564753528, 46.7112869506 ], [ -122.9543423418, 46.7162401177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 323, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9861758662, 46.3060765495 ], [ -119.9685280902, 46.3037202391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 324, "RouteIdentifier": "500", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4838115389, 45.6696013323 ], [ -122.4690215411, 45.664782696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 325, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6564062372, 47.0966738492 ], [ -118.6234748412, 47.0969147261 ], [ -118.5703483961, 47.1108950532 ], [ -118.5001739334, 47.110755101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 326, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4390078118, 47.6240624799 ], [ -117.4447329829, 47.6326990173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 327, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4890479152, 47.5280979623 ], [ -120.45450523, 47.5207872011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 328, "RouteIdentifier": "903", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9097237692, 47.1901067626 ], [ -120.9213159644, 47.1927732879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 329, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5555409989, 45.780635909 ], [ -122.5499497496, 45.7806466337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 330, "RouteIdentifier": "025", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2668970833, 48.0067931754 ], [ -118.2476233983, 48.0127941378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 331, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0772800593, 48.924155999 ], [ -122.0656513713, 48.9198042616 ], [ -122.0549081457, 48.9213240413 ], [ -122.0474169625, 48.9277221033 ], [ -122.0340311094, 48.9278686212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 332, "RouteIdentifier": "021", "AADT": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5082944355, 48.9920259516 ], [ -118.5037558939, 48.9999434555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 333, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8155297756, 48.0684125491 ], [ -122.8179486123, 48.0711563886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 334, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8167074126, 46.9748418645 ], [ -123.8249346802, 46.9706520307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 335, "RouteIdentifier": "026", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1737083937, 46.8115310782 ], [ -119.1548022107, 46.8115761702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 336, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3407517853, 48.4711363705 ], [ -122.3357219408, 48.4717196536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 337, "RouteIdentifier": "506", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8895694243, 46.4396122337 ], [ -122.8882041537, 46.4395283256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 338, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281371157, 47.8306336416 ], [ -122.1260566825, 47.8338193781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 339, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0573687, 46.739057813 ], [ -117.054159283, 46.73844535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 340, "RouteIdentifier": "971", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2012261125, 47.8744218608 ], [ -120.1658245577, 47.8601832667 ], [ -120.1525821693, 47.8602012466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 341, "RouteIdentifier": "182", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1232845443, 46.2486626016 ], [ -119.1105630412, 46.2485229568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 342, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4899695301, 45.724018802 ], [ -121.4828848568, 45.7225399831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 343, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1698660388, 46.3410315909 ], [ -120.0848828452, 46.3284729616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 344, "RouteIdentifier": "021", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6909098997, 47.2757797492 ], [ -118.6904101142, 47.3214220899 ], [ -118.6860954235, 47.326048138 ], [ -118.692493076, 47.3283444103 ], [ -118.6922988122, 47.3324960837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 345, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9536791305, 47.233042477 ], [ -119.8966827506, 47.2327403563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 346, "RouteIdentifier": "012", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1532476863, 46.2701348718 ], [ -118.1407187037, 46.2701649585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 347, "RouteIdentifier": "116", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350638939, 48.0308244206 ], [ -122.7299573082, 48.0326119562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 348, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5164209056, 47.7586626614 ], [ -118.5054795183, 47.7584305503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 349, "RouteIdentifier": "021", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69074626, 48.0828527406 ], [ -118.6922772053, 48.0944969963 ], [ -118.7002081377, 48.1040161548 ], [ -118.6925905066, 48.1252812428 ], [ -118.6930351509, 48.1439533664 ], [ -118.7042337673, 48.1595006242 ], [ -118.7142740466, 48.2007014546 ], [ -118.7047677202, 48.2260732932 ], [ -118.6947159096, 48.2401285718 ], [ -118.6915026711, 48.2554038828 ], [ -118.6928620869, 48.2644862877 ], [ -118.7038407746, 48.2693058531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 350, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8880335642, 47.567584502 ], [ -121.8864441288, 47.5692233555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 351, "RouteIdentifier": "503", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3704124175, 45.9461267079 ], [ -122.3622749788, 45.9559140373 ], [ -122.375570848, 45.9643347144 ], [ -122.3700050613, 45.9690659156 ], [ -122.3692999752, 45.9768294479 ], [ -122.3556390004, 45.9892331664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 352, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2967521172, 47.4190994152 ], [ -122.2952486802, 47.4309838514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 353, "RouteIdentifier": "516", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947389534, 47.3936027263 ], [ -122.2931085242, 47.392427434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 354, "RouteIdentifier": "090", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380752869, 47.5786572039 ], [ -122.123054938, 47.5747409161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 355, "RouteIdentifier": "090", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1810983468, 47.5797602872 ], [ -122.1760994752, 47.580180733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 356, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.608437708, 46.9733591072 ], [ -123.5933186815, 46.9783764391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 357, "RouteIdentifier": "023", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9829989628, 47.3264978242 ], [ -117.9837168125, 47.3338037132 ], [ -118.0012065196, 47.3339439117 ], [ -118.0053352606, 47.3422313462 ], [ -118.0190380245, 47.3455605705 ], [ -118.0413344485, 47.3583260637 ], [ -118.0859824317, 47.347843428 ], [ -118.1009161358, 47.3524254021 ], [ -118.1185016502, 47.3749703003 ], [ -118.1665050068, 47.402760537 ], [ -118.1827089763, 47.4201325168 ], [ -118.1889749684, 47.4362694977 ], [ -118.1843817029, 47.4682192357 ], [ -118.1928794609, 47.4781166157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 358, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9111972398, 46.6100100981 ], [ -122.9277931611, 46.6221965746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 359, "RouteIdentifier": "002", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8344085442, 47.6126434109 ], [ -119.8131962319, 47.6126343481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 360, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.497732858, 46.9704790806 ], [ -120.4029149867, 46.9715198957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 361, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0540259825, 47.8553267629 ], [ -120.0474672026, 47.8548480152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 362, "RouteIdentifier": "167", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2604202074, 47.2012176284 ], [ -122.2488000931, 47.2053582695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 363, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1860840265, 48.0219150499 ], [ -122.1816312316, 48.0344874481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 364, "RouteIdentifier": "271", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3546879112, 47.2034961093 ], [ -117.361690039, 47.2108541009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 365, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7219238918, 47.7633244454 ], [ -118.7225935085, 47.7708524695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 366, "RouteIdentifier": "005", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6994969166, 45.8454016677 ], [ -122.7050754567, 45.8579274145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 367, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0434763305, 47.5508843024 ], [ -123.0407865476, 47.5395798157 ], [ -123.0503575134, 47.5292062176 ], [ -123.059297623, 47.5024290745 ], [ -123.0741604248, 47.4897900635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 368, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2157321624, 47.8782642533 ], [ -122.2111007099, 47.8781842656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 369, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1852889074, 47.6742929009 ], [ -122.1825622133, 47.6861532736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 370, "RouteIdentifier": "103", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0332571479, 46.5053645236 ], [ -124.0289352268, 46.5118174067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 371, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3085183423, 46.2931233698 ], [ -119.3047423528, 46.2930973531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 372, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7604926179, 45.9331454264 ], [ -122.8049500418, 45.9609747813 ], [ -122.8209479482, 45.9765215085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 373, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3718777273, 48.1048682436 ], [ -123.3627497487, 48.1085599202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 374, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1770255475, 48.0518456949 ], [ -122.167626886, 48.0517882972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 375, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929566067, 47.408097835 ], [ -120.2929172872, 47.4079531918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 376, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2875761547, 47.8581507051 ], [ -122.2819653483, 47.864172748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 377, "RouteIdentifier": "512", "AADT": 90000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3478885514, 47.157627397 ], [ -122.3150421028, 47.158578655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 378, "RouteIdentifier": "411", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9162646971, 46.1456053501 ], [ -122.9147539076, 46.1502452965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 379, "RouteIdentifier": "501", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7319332222, 45.815377897 ], [ -122.7270084609, 45.8156734191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 380, "RouteIdentifier": "410", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.539784148, 46.8668025285 ], [ -121.530549912, 46.869005372 ], [ -121.5227950438, 46.8649612608 ], [ -121.5289737696, 46.8698663514 ], [ -121.537161806, 46.86858299 ], [ -121.5294841863, 46.8711959296 ], [ -121.51710234, 46.8670852256 ], [ -121.5147529922, 46.8700968832 ], [ -121.5176596887, 46.8761957247 ], [ -121.5056293677, 46.8858544739 ], [ -121.480660576, 46.8939282214 ], [ -121.443504086, 46.8983759382 ], [ -121.4203948955, 46.9081166471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 381, "RouteIdentifier": "971", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1751735539, 47.7677948795 ], [ -120.1859282772, 47.7676205033 ], [ -120.1840587587, 47.7828993523 ], [ -120.1996439306, 47.8048599228 ], [ -120.2093058833, 47.8268858662 ], [ -120.2023545245, 47.8407813167 ], [ -120.2104188578, 47.8533002068 ], [ -120.2028039844, 47.8632306636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 382, "RouteIdentifier": "104", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.338699596, 47.7777824155 ], [ -122.3353283591, 47.7777753423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 383, "RouteIdentifier": "105SPWESTPT", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1110123877, 46.9040127541 ], [ -124.1131838766, 46.9081888251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 384, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6142357749, 46.6544908714 ], [ -120.5943463684, 46.6386317502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 385, "RouteIdentifier": "028", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6064394101, 47.3438463019 ], [ -118.5961167767, 47.3476217659 ], [ -118.5548000261, 47.3482337313 ], [ -118.5135806024, 47.3580620657 ], [ -118.4970061344, 47.3574102392 ], [ -118.4533036906, 47.3686689059 ], [ -118.3408593623, 47.4302279947 ], [ -118.2960394269, 47.4682522462 ], [ -118.2560871516, 47.4838568514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 386, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.332027696, 47.3318236437 ], [ -122.3292431802, 47.3317433744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 387, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8997031408, 46.2867891323 ], [ -122.8965761025, 46.2893166225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 388, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6716912752, 45.622917794 ], [ -122.6679722011, 45.6264046411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 389, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8782146319, 47.8269872076 ], [ -122.8756714308, 47.8241423181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 390, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1257014177, 46.9990395411 ], [ -119.1601933723, 47.0283986473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 391, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3355466203, 47.469450059 ], [ -120.3195807175, 47.4716032095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 392, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829774552, 47.9869383211 ], [ -122.1829331211, 47.9885511027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 393, "RouteIdentifier": "405", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1796695496, 47.6992447918 ], [ -122.1820573236, 47.7095901821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 394, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3251389542, 47.4075113691 ], [ -122.3269502017, 47.4085571911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 395, "RouteIdentifier": "282", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5110835333, 47.2895128669 ], [ -119.4703245021, 47.2726086288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 396, "RouteIdentifier": "090", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3993131644, 47.6520356027 ], [ -117.3844324012, 47.6538454237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 397, "RouteIdentifier": "532", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3303084037, 48.2396939589 ], [ -122.2809503607, 48.235572681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 398, "RouteIdentifier": "302", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8383635311, 47.4109223756 ], [ -122.8295443158, 47.4127748773 ], [ -122.8203461375, 47.4070484463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 399, "RouteIdentifier": "823", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5258992491, 46.6579574794 ], [ -120.5234705645, 46.6619857363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 400, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862032678, 47.7229006915 ], [ -121.9858303482, 47.7426828709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 401, "RouteIdentifier": "097", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7868478019, 48.101573517 ], [ -119.7811517034, 48.1041817295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 402, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2071762297, 47.460991061 ], [ -122.2078807653, 47.466571782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 403, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0491706107, 48.1875683679 ], [ -117.0481554077, 48.1858130018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 404, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9270653363, 47.8558599343 ], [ -121.861666793, 47.8510041835 ], [ -121.8309651195, 47.8579919705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 405, "RouteIdentifier": "024", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3933243152, 46.5563517375 ], [ -120.385569175, 46.5499987592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 406, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5687127572, 46.732258391 ], [ -121.560456892, 46.7384901278 ], [ -121.556831556, 46.7546910576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 407, "RouteIdentifier": "007", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2753035387, 46.5534563356 ], [ -122.2751954315, 46.5570314235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 408, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7257805786, 48.1562291862 ], [ -117.7227122233, 48.1685422116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 409, "RouteIdentifier": "109", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9083860539, 46.9811017411 ], [ -123.9179703845, 46.9819334325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 410, "RouteIdentifier": "004", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9222411132, 46.1464872396 ], [ -122.9218919138, 46.1466343189 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 411, "RouteIdentifier": "164", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842574706, 47.200949296 ], [ -121.9813954636, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 412, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961885635, 47.4452613117 ], [ -122.2959583754, 47.4506600917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 413, "RouteIdentifier": "529", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.190960133, 47.9817746745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 414, "RouteIdentifier": "525", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2768149357, 47.8726630238 ], [ -122.2765740876, 47.8734029921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 415, "RouteIdentifier": "022", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7486010675, 46.2060790676 ], [ -119.7475393038, 46.2094125334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 416, "RouteIdentifier": "260", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5565118981, 46.6435530173 ], [ -118.5525513618, 46.6447887503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 417, "RouteIdentifier": "527", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2066756596, 47.8885941556 ], [ -122.2022600424, 47.894649631 ], [ -122.2067906493, 47.8972009127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 418, "RouteIdentifier": "536", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3336059484, 48.4174954237 ], [ -122.3330250741, 48.4174912688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 419, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2840598213, 46.5529035395 ], [ -122.2762378173, 46.5520130021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 420, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6274333676, 47.5344924995 ], [ -122.6237320393, 47.533996747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 421, "RouteIdentifier": "031", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135602609, 48.7325006416 ], [ -117.4174728874, 48.7462831433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 422, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132785951, 46.9750588263 ], [ -123.8135123607, 46.9752656303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 423, "RouteIdentifier": "231", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9384162966, 47.3734102727 ], [ -117.9150398251, 47.3982504993 ], [ -117.9034889508, 47.4225618796 ], [ -117.9043202925, 47.4371792471 ], [ -117.9110794237, 47.4456090228 ], [ -117.9222234569, 47.4504912849 ], [ -117.9478029623, 47.4527573229 ], [ -117.9564098516, 47.4576787359 ], [ -117.9495399132, 47.4703719079 ], [ -117.9510454936, 47.5055460418 ], [ -117.919069388, 47.5252624271 ], [ -117.9206461927, 47.5432700986 ], [ -117.9259768603, 47.5533776645 ], [ -117.9203852472, 47.5627460837 ], [ -117.9406277688, 47.5777330683 ], [ -117.9378384893, 47.6579307436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 424, "RouteIdentifier": "106", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1336820514, 47.3186667549 ], [ -123.1117610605, 47.3369062558 ], [ -123.1048433653, 47.3569623887 ], [ -123.074686488, 47.3527052163 ], [ -123.0732200773, 47.347496595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 425, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6125603258, 48.3338920433 ], [ -119.6077631646, 48.3498164453 ], [ -119.6024268764, 48.353805119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 426, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7809433235, 48.1019970336 ], [ -119.7811517034, 48.1041817295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 427, "RouteIdentifier": "240", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1978814184, 46.2296948397 ], [ -119.1815164346, 46.226705456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 428, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6300911575, 47.828750694 ], [ -122.6097297047, 47.8515622785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 429, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2426005336, 47.0979189769 ], [ -119.2452308425, 47.1004128397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 430, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0436242083, 47.9056634606 ], [ -122.0367508916, 47.9006838682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 431, "RouteIdentifier": "007", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2752434827, 46.5583246063 ], [ -122.2684521921, 46.5680335119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 432, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3831772587, 47.8031153818 ], [ -122.3776962209, 47.7986124147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 433, "RouteIdentifier": "507COPEARL", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9543101229, 46.7193545946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 434, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3696991532, 47.6539119327 ], [ -117.3664685234, 47.6539039945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 435, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3554512716, 47.1039652908 ], [ -119.3375995228, 47.1039064442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 436, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1108326729, 48.0500968067 ], [ -122.110917332, 48.053411821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 437, "RouteIdentifier": "397", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0668149366, 46.1268888879 ], [ -119.0454576014, 46.1224768114 ], [ -119.0330840552, 46.1382539413 ], [ -119.0162894195, 46.1394401375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 438, "RouteIdentifier": "501COVANCVR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770770356, 45.6326630802 ], [ -122.6738336898, 45.6318598942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 439, "RouteIdentifier": "097", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6528625036, 47.482823007 ], [ -120.6499715907, 47.4876669203 ], [ -120.6333359953, 47.4949227596 ], [ -120.632703036, 47.5086822913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 440, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218919138, 46.1466343189 ], [ -122.9196173248, 46.147218448 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 441, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0308034821, 48.0385584263 ], [ -123.0044486257, 48.0205093633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 442, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2748522475, 47.8718113531 ], [ -122.2643165436, 47.8830950253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 443, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294537729, 46.6833756482 ], [ -123.7294448552, 46.6856170888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 444, "RouteIdentifier": "274", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.071549412, 47.2268141567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 445, "RouteIdentifier": "002", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5662058166, 47.642947503 ], [ -117.5608436626, 47.6428844249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 446, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939240773, 47.0800385113 ], [ -122.2937941925, 47.0829397886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 447, "RouteIdentifier": "020", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7727025488, 48.5378235193 ], [ -121.7384627186, 48.5359258924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 448, "RouteIdentifier": "900", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1219053901, 47.5005304078 ], [ -122.1121053337, 47.4972949224 ], [ -122.0977227603, 47.4988510864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 449, "RouteIdentifier": "124", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9100284707, 46.215109501 ], [ -118.8769717239, 46.2152642916 ], [ -118.8462077967, 46.2312973119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 450, "RouteIdentifier": "395", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1250035992, 48.6915473174 ], [ -118.1273843782, 48.6998160022 ], [ -118.1247088043, 48.7064325745 ], [ -118.1342768103, 48.7155462694 ], [ -118.1294134431, 48.7293164293 ], [ -118.1345781821, 48.7396855259 ], [ -118.1345342849, 48.7548742848 ], [ -118.1428018792, 48.7736597705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 451, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8593818839, 47.0403533748 ], [ -122.8466345144, 47.0432987731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 452, "RouteIdentifier": "164", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255213817, 47.3019724752 ], [ -122.2174597214, 47.2971248747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 453, "RouteIdentifier": "522", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9893266233, 47.8585504619 ], [ -121.9830239836, 47.8630432638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 454, "RouteIdentifier": "016", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5427971587, 47.2623098139 ], [ -122.558955585, 47.2752600707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 455, "RouteIdentifier": "002", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6418257139, 47.8341761604 ], [ -121.6207818793, 47.8353149584 ], [ -121.6173127355, 47.831729195 ], [ -121.6193646638, 47.8263548695 ], [ -121.611657277, 47.8196693372 ], [ -121.5798641373, 47.8122645365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 456, "RouteIdentifier": "164", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1121601288, 47.2429315526 ], [ -122.1007898491, 47.2257041538 ], [ -122.0797946249, 47.2106178422 ], [ -122.0162359001, 47.2074211012 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 457, "RouteIdentifier": "971", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.114481517, 47.8477254195 ], [ -120.0906203728, 47.8396989688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 458, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2194720778, 47.4795067364 ], [ -122.2164680874, 47.4797552701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 459, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970568676, 47.4134071531 ], [ -122.197055607, 47.4196716079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 460, "RouteIdentifier": "405", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976527666, 47.5284479262 ], [ -122.1956583824, 47.5351014559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 461, "RouteIdentifier": "009", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1104629668, 48.0341000118 ], [ -122.1108326729, 48.0500968067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 462, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869699983, 47.1769776673 ], [ -122.1838778814, 47.174736546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 463, "RouteIdentifier": "004", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1210814025, 46.1900650322 ], [ -123.0254965582, 46.1765544591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 464, "RouteIdentifier": "507", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9675307628, 46.7105506649 ], [ -122.9598608634, 46.7119804203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 465, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2452308425, 47.1004128397 ], [ -119.246720142, 47.1017760996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 466, "RouteIdentifier": "020", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1977655229, 48.6613912396 ], [ -119.1755997273, 48.6644654674 ], [ -119.1707426962, 48.6669353976 ], [ -119.1709386262, 48.671956166 ], [ -119.1204415479, 48.6865746062 ], [ -119.1188143741, 48.7011238243 ], [ -119.0889645499, 48.714240826 ], [ -119.0173992596, 48.7251477101 ], [ -118.9956785762, 48.7322627102 ], [ -118.9864492298, 48.7210608245 ], [ -118.9733997716, 48.7226160113 ], [ -118.9658249069, 48.727845524 ], [ -118.9595941027, 48.7262226534 ], [ -118.9531841576, 48.7185782551 ], [ -118.9576035534, 48.7002983598 ], [ -118.9345969622, 48.6878700965 ], [ -118.8688363405, 48.6711250883 ], [ -118.8512041774, 48.6595871231 ], [ -118.8252356977, 48.6617094795 ], [ -118.7864369592, 48.651103998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 467, "RouteIdentifier": "097AR", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.16517224, 47.7707983028 ], [ -120.1432870731, 47.7795609484 ], [ -120.1351383039, 47.7887442363 ], [ -120.1287074183, 47.8197182574 ], [ -120.1038792438, 47.8410163455 ], [ -120.0930271133, 47.8390930772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 468, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0127832253, 47.8398059908 ], [ -120.0023636712, 47.8395520304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 469, "RouteIdentifier": "160", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.645991095, 47.5009103404 ], [ -122.6448015914, 47.5019616092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 470, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6076963808, 46.9425842125 ], [ -122.6065410768, 46.9419413133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 471, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559678999, 46.3418155618 ], [ -117.0639903277, 46.3515891074 ], [ -117.063194802, 46.3682043768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 472, "RouteIdentifier": "308", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6849124897, 47.7012407269 ], [ -122.6827030778, 47.7012362102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 473, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523152371, 47.7871149729 ], [ -117.3512461081, 47.7870908551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 474, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8450444219, 47.3928212867 ], [ -117.8339339028, 47.4005463581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 475, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4044843472, 47.7691968077 ], [ -117.4025141886, 47.775377664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 476, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7262847571, 48.1762204765 ], [ -117.733773391, 48.1904773749 ], [ -117.7430272449, 48.1962049437 ], [ -117.7153794817, 48.2082318736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 477, "RouteIdentifier": "515", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078807653, 47.466571782 ], [ -122.2079397277, 47.469068922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 478, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8899260404, 47.7887506445 ], [ -117.8929652387, 47.8103146594 ], [ -117.8688908212, 47.8392864583 ], [ -117.8530743045, 47.8375252203 ], [ -117.8559886683, 47.847262528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 479, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3447339385, 47.7065541178 ], [ -122.3450935078, 47.7322891749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 480, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3969871323, 47.2375843118 ], [ -122.3891779095, 47.2344452702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 481, "RouteIdentifier": "530", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6087560562, 48.2553398746 ], [ -121.6017358428, 48.2552691488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 482, "RouteIdentifier": "002", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.052759201, 48.1759897639 ], [ -117.0453814357, 48.1774974633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 483, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0367919974, 46.8025443825 ], [ -123.0122863976, 46.8024280456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 484, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8269220429, 47.4513256561 ], [ -122.82404435, 47.4527245935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 485, "RouteIdentifier": "410", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5357945169, 46.9156045355 ], [ -121.5448085614, 46.8957961512 ], [ -121.5392794958, 46.879268564 ], [ -121.539784148, 46.8668025285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 486, "RouteIdentifier": "022", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146069423, 46.4038122596 ], [ -120.3146053499, 46.3930477992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 487, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1182479552, 46.824068652 ], [ -123.0970384228, 46.8218084668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 488, "RouteIdentifier": "002CODIVISN", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111934872, 47.6661553637 ], [ -117.4111842305, 47.6640841682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 489, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7163662119, 47.8813080117 ], [ -122.6836020665, 47.8694778736 ], [ -122.6583512026, 47.8711608541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 490, "RouteIdentifier": "290", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3871932194, 47.6619140206 ], [ -117.3797163114, 47.6619387511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 491, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9072875101, 48.5485390558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 492, "RouteIdentifier": "503", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5474855069, 45.7852017578 ], [ -122.5472358647, 45.8117200378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 493, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.207060034, 47.9072893217 ], [ -122.2070289838, 47.914243946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 494, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1144319865, 47.165563315 ], [ -122.0430468348, 47.1585051205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 495, "RouteIdentifier": "017", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1947276042, 47.0577047606 ], [ -119.2152583563, 47.0751224812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 496, "RouteIdentifier": "002COBROWNE", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134370239, 47.6535198038 ], [ -117.4134270225, 47.6531107382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 497, "RouteIdentifier": "009", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2128675498, 48.6558774574 ], [ -122.2086782434, 48.6715402953 ], [ -122.1928310355, 48.6906540805 ], [ -122.2024134231, 48.7062719744 ], [ -122.2034031763, 48.7206992742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 498, "RouteIdentifier": "012", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9762326912, 46.3216955439 ], [ -117.9727960208, 46.3237819677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 499, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4674230818, 48.7381587883 ], [ -122.4637974094, 48.749722479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 500, "RouteIdentifier": "014", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924335271, 45.5795236375 ], [ -122.3693035949, 45.5791952308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 501, "RouteIdentifier": "026", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9366891767, 46.7853119491 ], [ -117.9163777996, 46.7845299182 ], [ -117.9028685233, 46.7882975717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 502, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212960739, 47.9820295137 ], [ -122.2143033169, 47.9820481244 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 503, "RouteIdentifier": "020SPANACRT", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5815429294, 48.4637620468 ], [ -122.6018087989, 48.4912904705 ], [ -122.6096344556, 48.4932908483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 504, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146053499, 46.3930477992 ], [ -120.3146803025, 46.3895637812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 505, "RouteIdentifier": "272", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.083074089, 46.9114449779 ], [ -117.0799320523, 46.9114350689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 506, "RouteIdentifier": "516", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310669107, 47.3816510809 ], [ -122.231080053, 47.3833072606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 507, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108149261, 48.3083495968 ], [ -122.2259636127, 48.3101151653 ], [ -122.2343676861, 48.3157860192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 508, "RouteIdentifier": "009", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1440770168, 47.7838492646 ], [ -122.1434566593, 47.7903443739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 509, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2935392549, 47.0986145276 ], [ -122.2932262899, 47.1183648911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 510, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5556609589, 46.9361969309 ], [ -122.5540510049, 46.9380208301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 511, "RouteIdentifier": "006", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6950836877, 46.6690700815 ], [ -123.6839292354, 46.6556063635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 512, "RouteIdentifier": "165", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036341396, 47.1564220776 ], [ -122.036347956, 47.1580428725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 513, "RouteIdentifier": "022", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2518435554, 46.3315396164 ], [ -120.2461650816, 46.3276930204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 514, "RouteIdentifier": "167", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178776034, 47.4696365374 ], [ -122.2178365864, 47.4708583363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 515, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6074412346, 47.5945732999 ], [ -117.5691788837, 47.5946199775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 516, "RouteIdentifier": "021", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6471151083, 48.7653809106 ], [ -118.6468785968, 48.7737685937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 517, "RouteIdentifier": "121", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078782799, 46.9473039393 ], [ -122.9078625453, 46.9528052372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 518, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7095800286, 46.8824221446 ], [ -123.7147238013, 46.8904667022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 519, "RouteIdentifier": "546", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519714718, 48.9646510378 ], [ -122.4413239323, 48.96428992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 520, "RouteIdentifier": "161", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667035384, 46.8634865679 ], [ -122.2667172316, 46.8655192861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 521, "RouteIdentifier": "970", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9008694447, 47.1862212903 ], [ -120.8999613431, 47.1877127316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 522, "RouteIdentifier": "021", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6598639151, 46.9705949371 ], [ -118.6639343919, 46.9743066653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4454836739, 46.996549214 ], [ -123.4264986925, 46.9955304106 ], [ -123.4082967559, 46.9999448152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 524, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133300405, 47.303094966 ], [ -122.313315611, 47.3116796634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 525, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5001739334, 47.110755101 ], [ -118.483749404, 47.110904091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 526, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736376931, 48.7183214397 ], [ -122.4736865914, 48.7254915984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 527, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537625763, 46.7353817521 ], [ -122.9537824167, 46.7366928914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 528, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1531482322, 47.0433503074 ], [ -124.1580458631, 47.0446019994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3782208966, 47.7726334374 ], [ -117.3567064191, 47.7812867521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 530, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871980092, 47.7384984553 ], [ -122.1857415687, 47.7548599981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 531, "RouteIdentifier": "027", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2312668834, 47.1532457302 ], [ -117.2052304992, 47.1675404896 ], [ -117.1992324539, 47.1773708328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 532, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3693035949, 45.5791952308 ], [ -122.3561483502, 45.5765439754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 533, "RouteIdentifier": "026", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1548022107, 46.8115761702 ], [ -119.1335402589, 46.81166858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 534, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7384906148, 47.7360195936 ], [ -120.7368808365, 47.7219030152 ], [ -120.7458505381, 47.6979837814 ], [ -120.737315796, 47.6895337324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 535, "RouteIdentifier": "012", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.139226139, 46.8258098296 ], [ -123.1182479552, 46.824068652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 536, "RouteIdentifier": "195", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.231668147, 46.7413459926 ], [ -117.2421417151, 46.7585806572 ], [ -117.2617325097, 46.7597945743 ], [ -117.2772565713, 46.772497546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 537, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281213808, 47.6241276789 ], [ -120.228042091, 47.6277888618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0025596088, 46.8100089469 ], [ -122.9724799034, 46.8603980407 ], [ -122.9600984345, 46.8984631507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 539, "RouteIdentifier": "101COABERDN", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8874051323, 46.9794818062 ], [ -123.8839143851, 46.9770579066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 540, "RouteIdentifier": "181", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2438389364, 47.4568632492 ], [ -122.245609145, 47.4638125801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 541, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0020006548, 46.3205770833 ], [ -124.0058226032, 46.3220376768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 542, "RouteIdentifier": "027", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2229100098, 47.5730667428 ], [ -117.2247355074, 47.5862739437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 543, "RouteIdentifier": "161", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938700472, 47.204398406 ], [ -122.2938536061, 47.2051808084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 544, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2256349011, 47.3030417103 ], [ -122.2255213817, 47.3019724752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 545, "RouteIdentifier": "090", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2096237746, 47.6717228675 ], [ -117.1794448564, 47.6657680173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 546, "RouteIdentifier": "031", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3880478769, 48.8570115349 ], [ -117.3766074887, 48.8656644561 ], [ -117.3725290396, 48.86403205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 547, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5538347685, 46.9524134967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 548, "RouteIdentifier": "539", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485447935, 48.9391322618 ], [ -122.4853467091, 48.9460567842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 549, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3545679756, 48.6174704326 ], [ -122.3571398555, 48.6273196202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 550, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.312132657, 47.3394444319 ], [ -122.3123636673, 47.3477991611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 551, "RouteIdentifier": "310", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565626099, 47.5703304581 ], [ -122.6533156313, 47.5673798823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 552, "RouteIdentifier": "101", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9910016143, 47.0450336894 ], [ -122.9602028302, 47.0399823411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 553, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6378486297, 47.5421872915 ], [ -122.6362542655, 47.5417260081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 554, "RouteIdentifier": "290", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2448313626, 47.6887168246 ], [ -117.2397125029, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 555, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1785138343, 46.6444383578 ], [ -121.1697638253, 46.6471084885 ], [ -121.1517819412, 46.644685082 ], [ -121.1319390984, 46.6545385663 ], [ -121.1263725089, 46.6648692441 ], [ -121.1203640782, 46.6650711504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 556, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5707855947, 47.7139681507 ], [ -122.5923337529, 47.7058043179 ], [ -122.6145007274, 47.7154775691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 557, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853470894, 48.891721005 ], [ -122.485340099, 48.9066976691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 558, "RouteIdentifier": "204", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376928426, 47.9781939272 ], [ -122.1376542721, 47.9813261844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 559, "RouteIdentifier": "904", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6134262665, 47.471353912 ], [ -117.6076139263, 47.472278094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 560, "RouteIdentifier": "508", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3033441932, 46.5641172674 ], [ -122.2966216811, 46.5642108312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 561, "RouteIdentifier": "902", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7071635421, 47.5067188922 ], [ -117.7148151118, 47.5148547914 ], [ -117.7149288118, 47.5306603385 ], [ -117.7044776202, 47.5482634566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 562, "RouteIdentifier": "512", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4440605013, 47.158268456 ], [ -122.4276134438, 47.1581515823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 563, "RouteIdentifier": "101", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9065683519, 47.1025224633 ], [ -123.8958319744, 47.1107626992 ], [ -123.897945931, 47.1182162564 ], [ -123.894178865, 47.1267618093 ], [ -123.8976538836, 47.1348926086 ], [ -123.8889929685, 47.1441925406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 564, "RouteIdentifier": "538", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133909339, 48.4356182605 ], [ -122.3079784055, 48.4355954608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 565, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4073092626, 48.6901697434 ], [ -122.4496748915, 48.6936253155 ], [ -122.4745576952, 48.7036461741 ], [ -122.4754001915, 48.7114461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 566, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6545494275, 45.7173002417 ], [ -122.6569907612, 45.7325461642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 567, "RouteIdentifier": "395", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6160740909, 48.0543832543 ], [ -117.6205066365, 48.0600760065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 568, "RouteIdentifier": "125", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3512395456, 46.0690998662 ], [ -118.3564774846, 46.0688842599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 569, "RouteIdentifier": "395", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7179594226, 48.2854700064 ], [ -117.8191660399, 48.3201502053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 570, "RouteIdentifier": "522", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924586232, 47.7337786904 ], [ -122.2924416665, 47.7355851423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 571, "RouteIdentifier": "009", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2261409872, 48.5282544504 ], [ -122.226018055, 48.5375786595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 572, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111842305, 47.6640841682 ], [ -117.4110973876, 47.6862388811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 573, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293015421, 47.1806601772 ], [ -122.2292841665, 47.1772685985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 574, "RouteIdentifier": "509", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3322816003, 47.4672044794 ], [ -122.3299629869, 47.4748414789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 575, "RouteIdentifier": "204", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1126921303, 48.0002111444 ], [ -122.1063179106, 48.002878399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 576, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1432040179, 48.9173881457 ], [ -122.1434428667, 48.9313503294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 577, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1778352269, 48.046828316 ], [ -122.1770255475, 48.0518456949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 578, "RouteIdentifier": "902", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6112069286, 47.5946127869 ], [ -117.6074412346, 47.5945732999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 579, "RouteIdentifier": "504", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8965761025, 46.2893166225 ], [ -122.8907960803, 46.3012804426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 580, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.623334611, 47.4284900867 ], [ -122.6225935687, 47.4383788471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 581, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0761547764, 46.8206396917 ], [ -123.0705784959, 46.818061401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 582, "RouteIdentifier": "142", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8744708695, 45.824429695 ], [ -120.8597476834, 45.8244297002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 583, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5235622768, 47.9784884907 ], [ -117.5514961681, 47.9936326927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 584, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3901248718, 47.3932302588 ], [ -121.3796397397, 47.3867119172 ], [ -121.3634004667, 47.3422967233 ], [ -121.3518474114, 47.3394404515 ], [ -121.3434489443, 47.3304987742 ], [ -121.328788046, 47.3253104992 ], [ -121.3099371955, 47.3075733984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 585, "RouteIdentifier": "121", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9086394896, 46.8991466854 ], [ -122.9057776023, 46.9081293834 ], [ -122.9079204529, 46.9326825401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 586, "RouteIdentifier": "004", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3821019742, 46.204770148 ], [ -123.3662844632, 46.1972420441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 587, "RouteIdentifier": "240", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2636763312, 46.2591722166 ], [ -119.2563379619, 46.2519667264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 588, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.395950267, 48.8041008656 ], [ -122.3771647615, 48.8041341038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 589, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9106353482, 46.2675619431 ], [ -119.8846884522, 46.2587169246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 590, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8123515795, 46.9758626922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 591, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854508575, 47.9541150576 ], [ -124.3895298763, 47.9579786515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 592, "RouteIdentifier": "504", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6135193095, 46.3732221214 ], [ -122.599339156, 46.3782404871 ], [ -122.5923185497, 46.3641421043 ], [ -122.5756309118, 46.3701554294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 593, "RouteIdentifier": "025", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0767913963, 48.6302280828 ], [ -118.0809250713, 48.6335690008 ], [ -118.0804223265, 48.6458515708 ], [ -118.0855460386, 48.6566126356 ], [ -118.0761182705, 48.6620174812 ], [ -118.0528192146, 48.6655590546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 594, "RouteIdentifier": "231", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7319104687, 48.0271486285 ], [ -117.7414326397, 48.0453413833 ], [ -117.7414617067, 48.0549272619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 595, "RouteIdentifier": "520", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151578787, 47.6670962794 ], [ -122.1070992757, 47.6699542428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 596, "RouteIdentifier": "282", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5548980955, 47.3064820526 ], [ -119.5404648362, 47.3016571328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 597, "RouteIdentifier": "291", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5439564153, 47.7770043475 ], [ -117.5325801467, 47.7818048655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 598, "RouteIdentifier": "169", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0033924307, 47.3087018731 ], [ -122.0036329276, 47.3094647022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 599, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0771113094, 47.7623555736 ], [ -120.0346940871, 47.7744610553 ], [ -119.9928066299, 47.7795776217 ], [ -119.9707179801, 47.8103117805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 600, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7247120976, 47.0145460302 ], [ -122.7155207845, 47.0124624929 ], [ -122.7042482107, 47.0166113384 ], [ -122.6929086258, 47.0122908625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 601, "RouteIdentifier": "205", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5630189407, 45.6418660754 ], [ -122.56552133, 45.6483088559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 602, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.466151024, 45.5838225286 ], [ -122.4432829491, 45.5785312538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 603, "RouteIdentifier": "522", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3213046678, 47.6798999296 ], [ -122.3216245794, 47.6809784815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 604, "RouteIdentifier": "500", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4043216331, 45.615225457 ], [ -122.4080084386, 45.6115840369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 605, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984327789, 47.1898992789 ], [ -123.0982494153, 47.1952116239 ], [ -123.0921869405, 47.1998399079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 606, "RouteIdentifier": "548", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7520415456, 48.9961053398 ], [ -122.7523454393, 48.9971567896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 607, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2978040809, 47.8210601157 ], [ -122.2924065553, 47.8209731507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 608, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2328452333, 47.2083784844 ], [ -118.2153325712, 47.2145095436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 609, "RouteIdentifier": "020", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4439027276, 48.4460211348 ], [ -122.4313388534, 48.4462873107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 610, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1114113863, 46.2830723014 ], [ -118.0900087478, 46.2892459717 ], [ -118.0360986622, 46.2883262956 ], [ -118.0037700013, 46.3053205372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 611, "RouteIdentifier": "006", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966056992, 46.6268683975 ], [ -123.0813867451, 46.6270365528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 612, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4466273692, 47.2301579669 ], [ -122.4349389318, 47.2327862223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 613, "RouteIdentifier": "012", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1863524437, 46.8303419645 ], [ -123.1603852076, 46.8270351021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 614, "RouteIdentifier": "031", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3572304808, 48.8661780923 ], [ -117.3521889436, 48.8735003742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 615, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4349079042, 47.0993004058 ], [ -122.4347516102, 47.1123943169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 616, "RouteIdentifier": "508", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838617499, 46.5838405084 ], [ -122.8398740601, 46.5760326545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 617, "RouteIdentifier": "906", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.398065622, 47.3956087457 ], [ -121.3973426889, 47.3964612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 618, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3694769065, 47.0202996688 ], [ -122.3734287129, 47.0252556279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 619, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.370724874, 47.0107162595 ], [ -123.3522406493, 47.0176847454 ], [ -123.3329685473, 47.0373540007 ], [ -123.315836318, 47.0439992941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 620, "RouteIdentifier": "108", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2652259391, 47.0556339624 ], [ -123.2689243165, 47.0679844678 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 621, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396887191, 47.6862002896 ], [ -117.2397125029, 47.6897536118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 622, "RouteIdentifier": "539", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860047444, 48.7952060269 ], [ -122.4860125357, 48.8005515797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 623, "RouteIdentifier": "020", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2104399855, 48.5159581466 ], [ -122.1940156325, 48.5236742491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 624, "RouteIdentifier": "163", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157647305, 47.2798223974 ], [ -122.5157587458, 47.281707768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 625, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006527009, 47.2899013547 ], [ -122.2986045804, 47.2906745073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 626, "RouteIdentifier": "304", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269686691, 47.5636496207 ], [ -122.6253076514, 47.5621957885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 627, "RouteIdentifier": "395", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1610621477, 48.8013491924 ], [ -118.172585386, 48.8281521503 ], [ -118.1995279913, 48.8413471764 ], [ -118.2049625221, 48.8611827903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 628, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975722229, 46.1692293994 ], [ -119.17625049, 46.1849328401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 629, "RouteIdentifier": "124", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8462077967, 46.2312973119 ], [ -118.7205257744, 46.2975520842 ], [ -118.5843394707, 46.2961931387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 630, "RouteIdentifier": "231", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9743483399, 47.316068813 ], [ -117.9452303834, 47.3491519572 ], [ -117.9386854224, 47.3624234377 ], [ -117.9384162966, 47.3734102727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 631, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8360991743, 45.6760241273 ], [ -120.8350369221, 45.6826649603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 632, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.387709362, 46.0274510129 ], [ -118.3805172543, 46.0318115343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 633, "RouteIdentifier": "206", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1685156881, 47.8473257512 ], [ -117.1588691801, 47.8695608359 ], [ -117.1312550979, 47.8859764839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 634, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1238524112, 46.2737500843 ], [ -118.1114113863, 46.2830723014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 635, "RouteIdentifier": "302", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6418945651, 47.3795057214 ], [ -122.6261095677, 47.3846980617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 636, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8990911424, 46.7940102212 ], [ -118.75567632, 46.7921007504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 637, "RouteIdentifier": "181", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474225905, 47.3852649438 ], [ -122.2474311421, 47.3867136062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 638, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063917083, 46.4199191264 ], [ -117.0586800059, 46.4199262615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 639, "RouteIdentifier": "101", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5353377768, 48.098941472 ], [ -123.5146878293, 48.1016682747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 640, "RouteIdentifier": "310", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6731435739, 47.568179933 ], [ -122.6676487456, 47.5684242426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 641, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6933366335, 46.5767605568 ], [ -122.6709557367, 46.5825511103 ], [ -122.6483864791, 46.6019238366 ], [ -122.6345508551, 46.6084601212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 642, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6345508551, 46.6084601212 ], [ -122.6262508407, 46.6119235505 ], [ -122.5929781534, 46.6127772252 ], [ -122.540197422, 46.6050020592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 643, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.509427539, 47.6430053975 ], [ -117.5071454103, 47.6430669681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 644, "RouteIdentifier": "020", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783005683, 48.5448469139 ], [ -117.5647490904, 48.5514119056 ], [ -117.5555575339, 48.5619672181 ], [ -117.5534548978, 48.5736906307 ], [ -117.5588224911, 48.5802438479 ], [ -117.5597059922, 48.5938921832 ], [ -117.5501711452, 48.6052632129 ], [ -117.5430075734, 48.630926416 ], [ -117.5192715494, 48.6413464304 ], [ -117.5134714498, 48.6474798721 ], [ -117.4974757778, 48.6538530694 ], [ -117.4889613951, 48.6516692447 ], [ -117.4778840213, 48.657428848 ], [ -117.4698108774, 48.6734268292 ], [ -117.4561399366, 48.6724766869 ], [ -117.4533799294, 48.684483503 ], [ -117.4343065363, 48.6796702092 ], [ -117.4316067501, 48.6833095812 ], [ -117.4293099535, 48.6813858247 ], [ -117.4275049687, 48.6892106346 ], [ -117.4108409752, 48.6851321517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 645, "RouteIdentifier": "501COVANCVR", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726646061, 45.6318665894 ], [ -122.6704405811, 45.6318535726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 646, "RouteIdentifier": "395SPNSC", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3826725606, 47.7789719928 ], [ -117.402735532, 47.7811795472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 647, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1721144093, 48.4502822246 ], [ -118.1782434256, 48.4548284749 ], [ -118.1804322233, 48.4635712207 ], [ -118.1695615682, 48.4738348488 ], [ -118.1731326389, 48.4834075634 ], [ -118.1369993742, 48.5254134037 ], [ -118.1205170275, 48.5599252228 ], [ -118.1099304251, 48.5699168788 ], [ -118.090171582, 48.5709116932 ], [ -118.0736411623, 48.581071736 ], [ -118.0733925966, 48.5848754338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 648, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288682299, 47.6213371579 ], [ -122.6289013941, 47.6322348249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 649, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2202318761, 46.2679666309 ], [ -118.1693615258, 46.2688128518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 650, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2023511627, 46.1347113914 ], [ -119.203612629, 46.1162661213 ], [ -119.2234040886, 46.0911748268 ], [ -119.224889202, 46.0317308992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 651, "RouteIdentifier": "002", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2972233483, 47.5139558554 ], [ -120.2808637485, 47.5339796242 ], [ -120.2543857869, 47.5488977505 ], [ -120.2543935669, 47.5573199872 ], [ -120.2309336771, 47.5917195302 ], [ -120.2261852446, 47.6053632481 ], [ -120.2282190803, 47.6193373774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 652, "RouteIdentifier": "395", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1196487386, 48.6350042505 ], [ -118.1129200454, 48.6442737397 ], [ -118.1136451712, 48.6614121482 ], [ -118.1250035992, 48.6915473174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 653, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059632705, 45.6819748617 ], [ -122.5059582917, 45.6758268864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 654, "RouteIdentifier": "501", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6726772266, 45.6325544336 ], [ -122.6738387769, 45.6325598997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 655, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9784909888, 46.6723810975 ], [ -122.9715754997, 46.6806806366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 656, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3946951929, 47.7570939377 ], [ -117.3849909341, 47.7667352841 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 657, "RouteIdentifier": "155", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5216611447, 48.408142504 ], [ -119.5217331431, 48.4069900346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 658, "RouteIdentifier": "903SPCLEELM", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.903467784, 47.1885720529 ], [ -120.8971476949, 47.186874414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 659, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3043819814, 46.0811339747 ], [ -118.2939892909, 46.0823692123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 660, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5509551438, 47.3216616972 ], [ -119.5469623321, 47.3271872736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 661, "RouteIdentifier": "513", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3042127815, 47.6440954441 ], [ -122.3045144925, 47.6452852227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 662, "RouteIdentifier": "599", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2816435896, 47.4911976441 ], [ -122.2842343808, 47.4966458915 ], [ -122.2948243841, 47.4982893333 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 663, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2539138096, 47.5892523535 ], [ -122.2398779598, 47.5908053835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 664, "RouteIdentifier": "101", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7726340053, 46.9572131386 ], [ -123.7868512068, 46.9671019999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 665, "RouteIdentifier": "027", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.174270773, 47.3797829152 ], [ -117.1742498954, 47.3867659672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 666, "RouteIdentifier": "104COKNGSTN", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4959840812, 47.795839855 ], [ -122.4955876896, 47.7975252491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 667, "RouteIdentifier": "090", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2196536686, 47.6737301547 ], [ -117.2096237746, 47.6717228675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 668, "RouteIdentifier": "014", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4653744706, 45.7143933277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 669, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5359529209, 46.980696515 ], [ -121.5360884519, 46.9798263482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 670, "RouteIdentifier": "405", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2629302431, 47.4619229895 ], [ -122.2576809614, 47.4624296733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 671, "RouteIdentifier": "509", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3272024219, 47.4854072542 ], [ -122.3249301321, 47.4940508534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 672, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4725322952, 47.1701115828 ], [ -122.4665031792, 47.1763219389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 673, "RouteIdentifier": "162", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1877595188, 47.0819384727 ], [ -122.1770751295, 47.0821558053 ], [ -122.1579355704, 47.0914690106 ], [ -122.1444230859, 47.1117933341 ], [ -122.133641732, 47.1203784468 ], [ -122.1343129645, 47.127974281 ], [ -122.127858372, 47.1309639391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 674, "RouteIdentifier": "536", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3619718598, 48.4277546105 ], [ -122.348619877, 48.42175299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 675, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1011620507, 47.2072125648 ], [ -123.1009905679, 47.208217873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 676, "RouteIdentifier": "023", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8935451035, 47.2124822553 ], [ -117.9133733487, 47.2329689301 ], [ -117.9189588547, 47.2455284974 ], [ -117.9303066387, 47.2535026311 ], [ -117.928860965, 47.2636168684 ], [ -117.954735148, 47.274931197 ], [ -117.9739343058, 47.2980321898 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 677, "RouteIdentifier": "174", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0052660577, 47.9449095756 ], [ -119.007361139, 47.9433157516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 678, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8150974014, 48.097207949 ], [ -122.8132595013, 48.1004014814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 679, "RouteIdentifier": "002", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9772544823, 47.8608534091 ], [ -121.9699337226, 47.859195632 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 680, "RouteIdentifier": "526", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.275846758, 47.922028224 ], [ -122.270222134, 47.9220918299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 681, "RouteIdentifier": "020", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3810673208, 48.4573156123 ], [ -122.3566645336, 48.4657611597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 682, "RouteIdentifier": "548", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6040527531, 48.8920780487 ], [ -122.6174443607, 48.891747907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 683, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3135126494, 47.2840032145 ], [ -122.3135712365, 47.2861343941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 684, "RouteIdentifier": "105", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8119261196, 46.9521234492 ], [ -123.8046484797, 46.9587267173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 685, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4082967559, 46.9999448152 ], [ -123.3960419117, 47.002634929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 686, "RouteIdentifier": "195SPGNESSE", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0475174649, 46.4744614231 ], [ -117.0397518102, 46.4800616688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 687, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647059706, 47.5011897492 ], [ -117.5646817112, 47.503963135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 688, "RouteIdentifier": "395", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0860022305, 46.3582053906 ], [ -119.0437777328, 46.4172753716 ], [ -119.0282684938, 46.4252472577 ], [ -119.0246904637, 46.4313046328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 689, "RouteIdentifier": "024", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764209525, 46.7675625649 ], [ -119.1764829488, 46.7754696717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 690, "RouteIdentifier": "002", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0621815719, 47.6491753159 ], [ -120.0464865713, 47.6446019575 ], [ -120.027698695, 47.6241158901 ], [ -120.0044221119, 47.6210429111 ], [ -119.9971912665, 47.6127377431 ], [ -119.8344085442, 47.6126434109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 691, "RouteIdentifier": "021", "AADT": 290 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6636857174, 46.9998165576 ], [ -118.6629076467, 47.0795552087 ], [ -118.6668848781, 47.0903196406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 692, "RouteIdentifier": "530", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020400669, 48.2595802573 ], [ -121.5970165475, 48.2728794129 ], [ -121.5736815995, 48.2846737532 ], [ -121.5561827695, 48.3013178631 ], [ -121.5551539066, 48.3113332029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 693, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624429651, 47.504849437 ], [ -122.6154441079, 47.5048209466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 694, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124883705, 47.5167348211 ], [ -122.32119741, 47.52336099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 695, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2493486901, 47.3976177556 ], [ -122.2494308353, 47.4122081687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 696, "RouteIdentifier": "970", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8502977234, 47.1752256328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 697, "RouteIdentifier": "526", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2125640998, 47.9215909937 ], [ -122.2084243459, 47.9195131157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 698, "RouteIdentifier": "410", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8262913588, 46.7574551866 ], [ -120.8127305308, 46.7506838345 ], [ -120.7884944778, 46.7483083341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 699, "RouteIdentifier": "002", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1909967909, 47.9804242172 ], [ -122.1885742414, 47.9807304066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 700, "RouteIdentifier": "027", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.073000361, 47.2230431561 ], [ -117.0730024916, 47.2240691944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 701, "RouteIdentifier": "500", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855374224, 45.5797321231 ], [ -122.3776958201, 45.5806227602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 702, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6356948558, 47.5650400988 ], [ -122.6329293436, 47.5650333624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 703, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153057722, 47.4499572937 ], [ -122.2178750419, 47.4671156335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 704, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9336567593, 48.052435164 ], [ -119.9457986845, 48.0554741634 ], [ -119.9596133683, 48.0757671252 ], [ -120.0069122484, 48.074198118 ], [ -120.0232808716, 48.0973889327 ], [ -120.0101725262, 48.1079613687 ], [ -120.0111466448, 48.1252859785 ], [ -120.004345499, 48.130411721 ], [ -120.0082609418, 48.1366210454 ], [ -120.0423875397, 48.14314282 ], [ -120.0664995986, 48.1555692556 ], [ -120.0933996402, 48.1811071167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 705, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4839534054, 46.7954711602 ], [ -118.3944003164, 46.7948578097 ], [ -118.3777369137, 46.7780423397 ], [ -118.3635301736, 46.7762257383 ], [ -118.3189412156, 46.7588639349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 706, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9251619366, 48.557993926 ], [ -117.9365504311, 48.5667945753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 707, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2089308735, 47.8094374485 ], [ -122.2072319883, 47.8094477645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 708, "RouteIdentifier": "004COKELSO", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9083233112, 46.1444373825 ], [ -122.9075601174, 46.1465486719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 709, "RouteIdentifier": "003", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6891411882, 47.6839322136 ], [ -122.6869120748, 47.6932883974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 710, "RouteIdentifier": "260", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3104348324, 46.7563777105 ], [ -118.3084452289, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 711, "RouteIdentifier": "041", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395375143, 48.1839762284 ], [ -117.0395528608, 48.1829538969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 712, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3686788882, 47.1150041492 ], [ -118.3602316649, 47.1201988782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 713, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.90788364, 46.5340788266 ], [ -121.778499806, 46.5338365408 ], [ -121.7578493233, 46.5388804234 ], [ -121.7354912874, 46.5526532482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 714, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339668077, 47.2064012989 ], [ -122.4339726068, 47.2074131032 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 715, "RouteIdentifier": "017", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0487109157, 46.7291966819 ], [ -119.0868227043, 46.7395693677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 716, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.899717106, 48.0550657238 ], [ -119.857595908, 48.0732144226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 717, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2844096141, 48.3059359445 ], [ -117.2839019256, 48.3051822196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 718, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1741648142, 46.7379128734 ], [ -117.1727879342, 46.7397697342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 719, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9747908435, 47.8173888452 ], [ -119.9580569245, 47.85237627 ], [ -119.9329792614, 47.8584852058 ], [ -119.9202563007, 47.8731183295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 720, "RouteIdentifier": "025", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1410473188, 47.6647648556 ], [ -118.1411272552, 47.7032509231 ], [ -118.1502785502, 47.7110758636 ], [ -118.1524287124, 47.7227234463 ], [ -118.1703775752, 47.7449382474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 721, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2566876381, 47.112363657 ], [ -119.2567131133, 47.1164713022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 722, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3235519617, 47.1618045752 ], [ -119.3298805519, 47.1732555069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 723, "RouteIdentifier": "532", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2423008133, 48.2388120168 ], [ -122.2407774423, 48.2388106439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 724, "RouteIdentifier": "116", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7018643165, 48.078607276 ], [ -122.7016186118, 48.0859624396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 725, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3413276695, 47.8214509801 ], [ -122.3358813394, 47.8214508721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 726, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3033025513, 47.1598935483 ], [ -118.292877678, 47.1671440586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 727, "RouteIdentifier": "283", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7380298017, 47.1620255285 ], [ -119.7255609263, 47.1697949724 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 728, "RouteIdentifier": "103", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053438936, 46.3706285622 ], [ -124.053203924, 46.3755642012 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 729, "RouteIdentifier": "503", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.4004321611, 45.9963687794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 730, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2488000931, 47.2053582695 ], [ -122.2470351952, 47.2239142549 ], [ -122.2546724797, 47.2425035856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 731, "RouteIdentifier": "116", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.697769073, 48.018281475 ], [ -122.6896630119, 48.0306013366 ], [ -122.691035371, 48.0512475527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 732, "RouteIdentifier": "513", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2639807772, 47.6750826193 ], [ -122.2635673336, 47.6757343946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 733, "RouteIdentifier": "730SPWALULA", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9142227785, 46.0565756326 ], [ -118.9075966187, 46.0562013963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 734, "RouteIdentifier": "101COPRTANG", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.41797883, 48.1138577083 ], [ -123.4200144031, 48.1146846853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 735, "RouteIdentifier": "020", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6443296317, 48.5973721967 ], [ -118.6314431515, 48.5960235156 ], [ -118.5679108258, 48.6153465501 ], [ -118.565952585, 48.6122317883 ], [ -118.5445438821, 48.6115078332 ], [ -118.5275917915, 48.597047814 ], [ -118.5137119104, 48.595243222 ], [ -118.509752482, 48.5970623776 ], [ -118.5155459269, 48.599558024 ], [ -118.512743502, 48.6032967468 ], [ -118.4782741505, 48.6072204311 ], [ -118.4585509256, 48.6047398165 ], [ -118.4660973772, 48.6082207338 ], [ -118.4661888943, 48.6121179319 ], [ -118.4444583552, 48.6113077339 ], [ -118.4417651532, 48.6299366699 ], [ -118.4328701141, 48.6218299941 ], [ -118.4198597385, 48.6246827606 ], [ -118.4036719089, 48.6210805405 ], [ -118.3464920198, 48.5973425143 ], [ -118.3089665113, 48.5891488571 ], [ -118.2932680389, 48.5791723325 ], [ -118.2487912527, 48.5793701172 ], [ -118.1898318211, 48.589329096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 736, "RouteIdentifier": "538", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410746428, 48.435897211 ], [ -122.339797739, 48.4358920299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 737, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2864367852, 47.0541062901 ], [ -123.2757674785, 47.0538122933 ], [ -123.2617004672, 47.0447459023 ], [ -123.2512032791, 47.0452823163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 738, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843394707, 46.2961931387 ], [ -118.5642291766, 46.2961229496 ], [ -118.5526503645, 46.2885666946 ], [ -118.5338227757, 46.2908205864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 739, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1520827446, 47.701179935 ], [ -117.1332932554, 47.7045387135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 740, "RouteIdentifier": "270", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1648061028, 46.7232723565 ], [ -117.144376428, 46.7217073773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 741, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496454526, 48.0068914762 ], [ -117.3496648896, 48.0177222579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 742, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5018408354, 45.6721275722 ], [ -122.4885992861, 45.6718340343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 743, "RouteIdentifier": "125", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3726222715, 46.147436197 ], [ -118.3843361092, 46.1731924444 ], [ -118.381582691, 46.1978440693 ], [ -118.3932511954, 46.2165714643 ], [ -118.3695963283, 46.2371507033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 744, "RouteIdentifier": "161", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654507751, 46.8691413663 ], [ -122.2741213173, 46.8768699817 ], [ -122.2978283667, 46.8740061708 ], [ -122.3026544634, 46.8782016749 ], [ -122.3006964497, 46.8856559346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 745, "RouteIdentifier": "542", "AADT": 630 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6936997501, 48.906634052 ], [ -121.6959320726, 48.9034555044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 746, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7303182124, 46.6823391023 ], [ -123.7294537729, 46.6833756482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 747, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2251116552, 48.5503306146 ], [ -122.224161463, 48.586540623 ], [ -122.2328415573, 48.6030299836 ], [ -122.2181484826, 48.6264669174 ], [ -122.2129746455, 48.6527134381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 748, "RouteIdentifier": "527", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070072355, 47.9049606299 ], [ -122.207060034, 47.9072893217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 749, "RouteIdentifier": "167", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2593033654, 47.2570246683 ], [ -122.2607429983, 47.2688990575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 750, "RouteIdentifier": "281", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534565369, 47.1904786655 ], [ -119.8534105031, 47.2194487082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 751, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8856837159, 47.9870204643 ], [ -122.8847738398, 47.9855759007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 752, "RouteIdentifier": "003", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7097773434, 47.6324886961 ], [ -122.7050597877, 47.6433614356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 753, "RouteIdentifier": "004", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0109218044, 46.1691434983 ], [ -123.0047956327, 46.1661237024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 754, "RouteIdentifier": "500", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525552477, 45.6778313417 ], [ -122.5521517487, 45.68208727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 755, "RouteIdentifier": "506", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0368091721, 46.3974067466 ], [ -123.0273681586, 46.4021888563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 756, "RouteIdentifier": "097", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6108296856, 47.0345615907 ], [ -120.608500123, 47.0374844302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 757, "RouteIdentifier": "510", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7646365596, 47.0522855716 ], [ -122.7649510613, 47.0430902917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 758, "RouteIdentifier": "028", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576753991, 47.6531948538 ], [ -118.1576684527, 47.6540467209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 759, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2985045151, 47.39547624 ], [ -122.2947389534, 47.3936027263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 760, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1009905679, 47.208217873 ], [ -123.1002782834, 47.2119732363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 761, "RouteIdentifier": "014", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.29949512, 45.571607305 ], [ -122.2590728745, 45.5598753251 ], [ -122.2313535428, 45.5611000545 ], [ -122.2185549591, 45.5661709399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 762, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9073058758, 46.275376903 ], [ -122.9076435518, 46.2769325247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 763, "RouteIdentifier": "285", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.319453417, 47.432412369 ], [ -120.3213843881, 47.4347156331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 764, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2633497092, 45.7339077039 ], [ -120.2227951042, 45.7429753339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 765, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4150175631, 48.0010609611 ], [ -122.4394163697, 48.0042427956 ], [ -122.4541097954, 47.9996108269 ], [ -122.4616900184, 48.0042963392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 766, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2059069062, 46.7337520183 ], [ -117.2010536613, 46.7337602693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 767, "RouteIdentifier": "007", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350543494, 47.0839448876 ], [ -122.434931526, 47.0973144524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 768, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564774846, 46.0688842599 ], [ -118.3564578154, 46.074867789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 769, "RouteIdentifier": "507", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9536737749, 46.7289461561 ], [ -122.9537625763, 46.7353817521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 770, "RouteIdentifier": "090", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8530540341, 47.5118709577 ], [ -121.8359319626, 47.5137466225 ], [ -121.8134961044, 47.4952951892 ], [ -121.8021513026, 47.4912692217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 771, "RouteIdentifier": "007", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1942019738, 46.765336616 ], [ -122.2539355099, 46.7853850827 ], [ -122.2754741187, 46.7999623833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 772, "RouteIdentifier": "823", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118922418, 46.6260641185 ], [ -120.5118923903, 46.626211773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 773, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9012940427, 46.1535561469 ], [ -122.9030469817, 46.1632969984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 774, "RouteIdentifier": "270", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1937212048, 46.7334218163 ], [ -117.1864957616, 46.7314771721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 775, "RouteIdentifier": "097", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4740104061, 48.6441487529 ], [ -119.4680874186, 48.6526355103 ], [ -119.4720016489, 48.658440658 ], [ -119.4702383791, 48.6728249756 ], [ -119.4503868347, 48.6949331433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 776, "RouteIdentifier": "509", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4326700109, 47.2980606258 ], [ -122.434434259, 47.2999575945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 777, "RouteIdentifier": "012COABERDN", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8132040823, 46.9766495807 ], [ -123.8143955605, 46.9760348973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 778, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3291037047, 47.7469054111 ], [ -122.329330637, 47.7502820303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 779, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.475498549, 46.5361010556 ], [ -122.4588398216, 46.5422963318 ], [ -122.4431205175, 46.5426184535 ], [ -122.3866181203, 46.5326301989 ], [ -122.3663394868, 46.5419551196 ], [ -122.3433527114, 46.5461871073 ], [ -122.3277084896, 46.5447206472 ], [ -122.304327892, 46.5536935513 ], [ -122.2840598213, 46.5529035395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 780, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8165310712, 47.861761082 ], [ -121.7973817559, 47.8650366901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 781, "RouteIdentifier": "005", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6664314526, 45.6289361692 ], [ -122.6622739757, 45.6359541769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 782, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4722955548, 47.7620355267 ], [ -121.447920831, 47.7462461048 ], [ -121.3976461043, 47.7270429682 ], [ -121.373545979, 47.7118393097 ], [ -121.3610242433, 47.7115372115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 783, "RouteIdentifier": "155", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2633718554, 47.6383063062 ], [ -119.2733755435, 47.6743245668 ], [ -119.2615943148, 47.7149291881 ], [ -119.2230942334, 47.7501735046 ], [ -119.1843733363, 47.7994133674 ], [ -119.1377770394, 47.8249299577 ], [ -119.0926019856, 47.8681495864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 784, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663296776, 47.4869149652 ], [ -122.2648660903, 47.4917032502 ], [ -122.2781342919, 47.5038105301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 785, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860458418, 48.8077759805 ], [ -122.4860064346, 48.8115322114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 786, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.290688, 47.7127258764 ], [ -121.2794901631, 47.7171874221 ], [ -121.2684273833, 47.7146504801 ], [ -121.2314445716, 47.7181510912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 787, "RouteIdentifier": "129", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455119005, 46.4058071413 ], [ -117.0455562905, 46.4072575118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 788, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.5472933615, 46.8097314034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 789, "RouteIdentifier": "395", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411487897, 47.7439536479 ], [ -117.411395589, 47.7475767488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 790, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8856775734, 47.4568668079 ], [ -123.9115962269, 47.4593804445 ], [ -123.923859645, 47.4691766915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 791, "RouteIdentifier": "500", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4885992861, 45.6718340343 ], [ -122.4838115389, 45.6696013323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 792, "RouteIdentifier": "021", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6042284774, 48.8798283082 ], [ -118.6029610598, 48.8836806589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 793, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1686131052, 48.5922259084 ], [ -118.1487240923, 48.5881794827 ], [ -118.1385473345, 48.6058850636 ], [ -118.1381575659, 48.6167843871 ], [ -118.1227222823, 48.6274371967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 794, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.063194802, 46.3682043768 ], [ -117.0559008398, 46.3750297198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 795, "RouteIdentifier": "509", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3268233106, 47.4554520402 ], [ -122.3312487114, 47.4630152497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 796, "RouteIdentifier": "172", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134804078, 47.6996424338 ], [ -119.8134933014, 47.7033989052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 797, "RouteIdentifier": "005", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984000405, 47.810449784 ], [ -122.2824397667, 47.8189715088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 798, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6349019011, 47.5414235496 ], [ -122.6312757821, 47.5427369679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 799, "RouteIdentifier": "007", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4280346059, 47.2286568082 ], [ -122.4318700022, 47.2324653952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 800, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217057205, 47.670374577 ], [ -122.320427645, 47.677153652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 801, "RouteIdentifier": "022", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201578547, 46.3713384075 ], [ -120.3200450577, 46.3702712669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 802, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.355714051, 48.1030129375 ], [ -123.3473359023, 48.1065914367 ], [ -123.3235990471, 48.0975676978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 803, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6839292354, 46.6556063635 ], [ -123.6823651856, 46.6537194229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 804, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353139183, 48.3777532366 ], [ -122.3304605047, 48.3953989959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 805, "RouteIdentifier": "028", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2503978849, 47.4892081022 ], [ -118.2012989355, 47.5308199337 ], [ -118.1653892826, 47.5731302322 ], [ -118.1625335373, 47.628203114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 806, "RouteIdentifier": "529SPEVERET", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1895522829, 47.9817536396 ], [ -122.1880265207, 47.9816960822 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 807, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9908694542, 46.3149359546 ], [ -117.9762326912, 46.3216955439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 808, "RouteIdentifier": "017", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0063294763, 46.5974626974 ], [ -119.0062862284, 46.6650492947 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 809, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0706839733, 47.6560836936 ], [ -122.0626914872, 47.6565133547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 810, "RouteIdentifier": "131", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9544576073, 46.5216015582 ], [ -121.9561002594, 46.5266704559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 811, "RouteIdentifier": "006", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2999170842, 46.5700274981 ], [ -123.2987829945, 46.5700375755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 812, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0481554077, 48.1858130018 ], [ -117.0468216405, 48.1843343896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 813, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295353398, 47.5924775695 ], [ -122.6291767301, 47.6025424022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 814, "RouteIdentifier": "014", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709358838, 45.6080222232 ], [ -122.5675237104, 45.6073013401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 815, "RouteIdentifier": "310", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6844389648, 47.5695855201 ], [ -122.6834705983, 47.5695963871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 816, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3109574982, 47.8036768463 ], [ -122.2984000405, 47.810449784 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 817, "RouteIdentifier": "005", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7547026936, 49.0004770596 ], [ -122.7560316167, 49.0021057869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 818, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6231476737, 46.2473883891 ], [ -119.5619880902, 46.2669256695 ], [ -119.5430046419, 46.2654844556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 819, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9642066552, 46.1752198269 ], [ -118.9444220241, 46.1607549293 ], [ -118.9380954914, 46.1457035998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 820, "RouteIdentifier": "101COABERDN", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8874051323, 46.9794818062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 821, "RouteIdentifier": "004", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.974844153, 46.1513553719 ], [ -122.9664209143, 46.1480268532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 822, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5806705958, 46.8856606496 ], [ -119.4960377839, 46.8670870363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 823, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2283833788, 48.5104834855 ], [ -122.2257076367, 48.5104740686 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 824, "RouteIdentifier": "096", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2344986468, 47.8819300694 ], [ -122.2317004486, 47.8819477141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 825, "RouteIdentifier": "006", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987829945, 46.5700375755 ], [ -123.2976491615, 46.57004764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 826, "RouteIdentifier": "528", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1592829547, 48.0537110655 ], [ -122.1430161763, 48.0536913707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 827, "RouteIdentifier": "021", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6029610598, 48.8836806589 ], [ -118.5960578667, 48.8929230529 ], [ -118.5702542261, 48.9081474453 ], [ -118.5656033639, 48.9182463274 ], [ -118.5670170403, 48.9268359292 ], [ -118.5544641317, 48.9452340889 ], [ -118.5477800803, 48.9528978326 ], [ -118.5357075896, 48.9566891396 ], [ -118.5353160505, 48.9627204264 ], [ -118.5278088476, 48.96466224 ], [ -118.5270148193, 48.9792705723 ], [ -118.5082944355, 48.9920259516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 828, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8939276953, 46.9931418107 ], [ -123.89576752, 46.9948947943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 829, "RouteIdentifier": "012", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0271462337, 46.2187179874 ], [ -119.0051151642, 46.203549009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 830, "RouteIdentifier": "410", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9637319287, 47.1991468956 ], [ -121.9599282089, 47.199071826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 831, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6588479006, 47.0844194177 ], [ -122.648398392, 47.0870048504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 832, "RouteIdentifier": "202", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8313657266, 47.5369638292 ], [ -121.8182402683, 47.5195028025 ], [ -121.7847660346, 47.4978692597 ], [ -121.7872865838, 47.4951204522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 833, "RouteIdentifier": "161", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667172316, 46.8655192861 ], [ -122.2654432539, 46.8668033464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 834, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1403335938, 47.4070557775 ], [ -123.1406582023, 47.4063958443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 835, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1696146509, 47.1148944779 ], [ -124.1701797505, 47.1175620554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 836, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9850301584, 47.9620801186 ], [ -118.9795868328, 47.9655777499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 837, "RouteIdentifier": "153", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0842561584, 48.2705971119 ], [ -120.0543811291, 48.3022164989 ], [ -120.0523324287, 48.3111175595 ], [ -120.0541593021, 48.3183004848 ], [ -120.0735179834, 48.3417951846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 838, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1068419882, 47.5689365485 ], [ -122.0890281054, 47.5593389769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 839, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.002777857, 47.3067016972 ], [ -122.0033924307, 47.3087018731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 840, "RouteIdentifier": "282", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5404648362, 47.3016571328 ], [ -119.5110835333, 47.2895128669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 841, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6888669105, 47.8504476194 ], [ -121.6851132626, 47.8485151937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 842, "RouteIdentifier": "150", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9970626639, 47.8392820634 ], [ -119.988693195, 47.8318583594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 843, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7196952232, 46.9185306009 ], [ -123.7199263398, 46.929127072 ], [ -123.7255969446, 46.9340666372 ], [ -123.7341821694, 46.9344876708 ], [ -123.7656400398, 46.9512725149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 844, "RouteIdentifier": "410", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238361396, 47.1927344595 ], [ -122.2337989939, 47.1915311175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 845, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2684521921, 46.5680335119 ], [ -122.2518294677, 46.5763541165 ], [ -122.2421710444, 46.589172878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 846, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4011678238, 47.5746894483 ], [ -117.403113814, 47.5873771825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 847, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3744668125, 47.6129385181 ], [ -124.3875850933, 47.6583279196 ], [ -124.3993841644, 47.6751810229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 848, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3968245294, 47.5274308586 ], [ -117.4004674284, 47.5364053504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 849, "RouteIdentifier": "524", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228862469, 47.8212957342 ], [ -122.3176863857, 47.8212139394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 850, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9002465055, 46.2807315191 ], [ -122.9067208674, 46.2922496265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 851, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.4111842305, 47.6640841682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 852, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1203640782, 46.6650711504 ], [ -121.0946876862, 46.6671149014 ], [ -121.0695247091, 46.6770302874 ], [ -121.0312749766, 46.6723519543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 853, "RouteIdentifier": "028SPWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2895900621, 47.4060388964 ], [ -120.287327632, 47.3995120011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 854, "RouteIdentifier": "129SP6THST", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045570409, 46.416277624 ], [ -117.0455743548, 46.418180045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 855, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2191991764, 47.4676990124 ], [ -122.204514745, 47.471240198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 856, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759360238, 47.659448765 ], [ -122.6795231234, 47.662857905 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 857, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2815617176, 47.1297537126 ], [ -119.279016421, 47.1310325774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 858, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5812917606, 48.852425293 ], [ -122.5841213566, 48.8552680454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 859, "RouteIdentifier": "508", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8398740601, 46.5760326545 ], [ -122.7836319133, 46.5772503018 ], [ -122.7404835765, 46.5712006701 ], [ -122.7194158446, 46.5756303426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 860, "RouteIdentifier": "505", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8140314886, 46.4381206875 ], [ -122.8037680338, 46.4381163639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 861, "RouteIdentifier": "097", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4740346798, 46.5317789409 ], [ -120.4736324891, 46.5393860319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 862, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.9088899283, 46.24591744 ], [ -123.9230833697, 46.2536596942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 863, "RouteIdentifier": "902", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6837381984, 47.566162133 ], [ -117.6826564308, 47.5676722178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 864, "RouteIdentifier": "101AR", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0055307618, 46.3309327743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 865, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6587450787, 46.0394084907 ], [ -118.6183764468, 46.0524276018 ], [ -118.5903183471, 46.0567683361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 866, "RouteIdentifier": "171", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2740001981, 47.1335512955 ], [ -119.2682387314, 47.1364387388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 867, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3680598924, 46.3027624934 ], [ -119.3592158745, 46.3038389416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 868, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284561857, 48.4123674853 ], [ -119.5138464975, 48.416820343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 869, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8766375645, 47.6695099085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 870, "RouteIdentifier": "524SP3RDAVE", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3803488731, 47.8097254242 ], [ -122.3802638858, 47.8059839555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 871, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202094806, 47.6795440304 ], [ -122.3197480792, 47.6816333663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 872, "RouteIdentifier": "011", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852398362, 48.6680694691 ], [ -122.4879877343, 48.6747508138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 873, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149961011, 46.3824800478 ], [ -120.3150062176, 46.3807401139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 874, "RouteIdentifier": "099", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334116065, 47.5428151022 ], [ -122.3343590195, 47.548548451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 875, "RouteIdentifier": "028", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8587943416, 47.2333342522 ], [ -119.8548278199, 47.23342187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 876, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.954468967, 46.8616530173 ], [ -120.9489550287, 46.8453769887 ], [ -120.9198054238, 46.8088624381 ], [ -120.8730896808, 46.7911106338 ], [ -120.852016458, 46.7729537418 ], [ -120.8280101158, 46.7646641629 ], [ -120.8296238449, 46.7598306382 ], [ -120.8262913588, 46.7574551866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 877, "RouteIdentifier": "105", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0894814698, 46.794082912 ], [ -124.0910571193, 46.7988293856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 878, "RouteIdentifier": "205", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509906905, 45.6012653728 ], [ -122.5528157131, 45.6121505059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 879, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1254159669, 47.3580621765 ], [ -122.1199550793, 47.3581151088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 880, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3138098088, 47.2044681618 ], [ -122.3082844841, 47.2024103912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 881, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3232512525, 47.7503923932 ], [ -124.3181176136, 47.7587161676 ], [ -124.2855580029, 47.7726923141 ], [ -124.2759947825, 47.7820982488 ], [ -124.2530151923, 47.7822663141 ], [ -124.2495130066, 47.7881392179 ], [ -124.2521475758, 47.7981298006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 882, "RouteIdentifier": "103", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.054617725, 46.3453645423 ], [ -124.0547617311, 46.345935959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 883, "RouteIdentifier": "129", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442671142, 46.4171675734 ], [ -117.0418061778, 46.4188762721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 884, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0433824839, 46.311738539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 885, "RouteIdentifier": "290", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0986362805, 47.712113508 ], [ -117.0689280259, 47.7241616056 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 886, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1231539266, 48.0732680847 ], [ -123.1086623321, 48.0731296075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 887, "RouteIdentifier": "202", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.121605019, 47.6744466654 ], [ -122.12152933, 47.6738932335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 888, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7177993581, 47.8557884326 ], [ -118.7244772311, 47.8657256228 ], [ -118.7262988872, 47.8616518102 ], [ -118.7266656923, 47.866288751 ], [ -118.7193816343, 47.8729650037 ], [ -118.708130171, 47.8753570306 ], [ -118.7187904488, 47.879567979 ], [ -118.714596597, 47.893776273 ], [ -118.6952783466, 47.904651593 ], [ -118.6974620996, 47.9153870731 ], [ -118.689698978, 47.9188318309 ], [ -118.6896573662, 47.926800027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 889, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938536061, 47.2051808084 ], [ -122.2939107442, 47.2065716074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 890, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9357957557, 46.1384811775 ], [ -118.9299651984, 46.1234412496 ], [ -118.9125576769, 46.0999090238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 891, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6615401387, 47.5961287953 ], [ -120.6572408493, 47.5983589324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 892, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923996871, 47.7318031538 ], [ -122.2924586232, 47.7337786904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 893, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0751751165, 47.9197652005 ], [ -122.0661637707, 47.9143207671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 894, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9752113547, 46.7336230278 ], [ -123.0096321933, 46.7929903915 ], [ -123.0095031858, 46.7983597125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 895, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2352752464, 48.510504468 ], [ -122.2339586384, 48.510507948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 896, "RouteIdentifier": "500", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4080084386, 45.6115840369 ], [ -122.4077199663, 45.6106168272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 897, "RouteIdentifier": "007", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2421710444, 46.589172878 ], [ -122.2342561239, 46.5991023786 ], [ -122.2289134311, 46.6195560146 ], [ -122.2123686575, 46.6293876951 ], [ -122.200381036, 46.6527892071 ], [ -122.1960275134, 46.6788309729 ], [ -122.1994759487, 46.7042746461 ], [ -122.2193180607, 46.7251006266 ], [ -122.2079538886, 46.7335435597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 898, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6924466276, 47.8522943399 ], [ -121.6888669105, 47.8504476194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 899, "RouteIdentifier": "506", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9750403018, 46.4047023004 ], [ -122.9698911237, 46.4019382554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 900, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8934297223, 46.5484187108 ], [ -123.9161773153, 46.5735129812 ], [ -123.9193768639, 46.5990484863 ], [ -123.9142185013, 46.6143994929 ], [ -123.9231640027, 46.6264718255 ], [ -123.9195012753, 46.6405634658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 901, "RouteIdentifier": "117", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4595741397, 48.1100676892 ], [ -123.4449923396, 48.1224985775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 902, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353775602, 47.2512222204 ], [ -122.3355225852, 47.2647220072 ], [ -122.322068257, 47.2826226664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 903, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4398134853, 48.7045718994 ], [ -119.4389284985, 48.705561124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 904, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2426281993, 47.1322797485 ], [ -117.2430200919, 47.1351050773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 905, "RouteIdentifier": "105", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0868475896, 46.7892994633 ], [ -124.0894814698, 46.794082912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 906, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.322729826, 47.1025870681 ], [ -119.3061625069, 47.1007526268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 907, "RouteIdentifier": "204", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1217698707, 47.9948572706 ], [ -122.1126921303, 48.0002111444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 908, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1414184657, 47.5061993756 ], [ -122.1248280167, 47.5008402591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 909, "RouteIdentifier": "520", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1351290082, 47.640071799 ], [ -122.1377401447, 47.6538823653 ], [ -122.134945908, 47.6610541746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 910, "RouteIdentifier": "012", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9712249078, 46.5098672609 ], [ -117.9486341254, 46.5101973652 ], [ -117.9333783642, 46.5226592223 ], [ -117.8906915475, 46.5450662647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 911, "RouteIdentifier": "090", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9862702466, 47.5309639916 ], [ -121.9719468032, 47.5356190389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 912, "RouteIdentifier": "110SPMORA", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5816396399, 47.9176697804 ], [ -124.5903548008, 47.917783212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 913, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3526072751, 46.656816854 ], [ -121.341432663, 46.6594134737 ], [ -121.3385969386, 46.6559459214 ], [ -121.3092733459, 46.6569028996 ], [ -121.2807737226, 46.6507323213 ], [ -121.2720903746, 46.6447841556 ], [ -121.1785138343, 46.6444383578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 914, "RouteIdentifier": "097", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6999410067, 45.923000308 ], [ -120.6965690225, 45.9324842549 ], [ -120.6583470417, 45.9562641417 ], [ -120.6537674636, 45.9641209952 ], [ -120.6538196253, 45.9965615172 ], [ -120.6409423299, 46.0067409664 ], [ -120.6402471596, 46.0159231899 ], [ -120.6224996657, 46.0271360717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 915, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402291177, 47.749169702 ], [ -117.396336916, 47.755353533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 916, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954198113, 47.4345568351 ], [ -122.2958516184, 47.4404648377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 917, "RouteIdentifier": "225", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4761902468, 46.2572390375 ], [ -119.4871230724, 46.2579063443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 918, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5889958565, 47.5568399451 ], [ -120.5877830321, 47.5561469233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 919, "RouteIdentifier": "112", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5577067344, 48.3588356337 ], [ -124.4481794241, 48.3163709433 ], [ -124.441553728, 48.3087450645 ], [ -124.4170379921, 48.3016446894 ], [ -124.3939306113, 48.2869815122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 920, "RouteIdentifier": "161", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947627706, 47.0592610847 ], [ -122.2940652218, 47.0777178732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 921, "RouteIdentifier": "971", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2017909519, 47.8734177394 ], [ -120.2012261125, 47.8744218608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 922, "RouteIdentifier": "107", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6492690844, 46.9444965174 ], [ -123.6192593546, 46.9465973928 ], [ -123.6032357017, 46.9588877342 ], [ -123.6041613497, 46.9661133917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 923, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3206709228, 47.4319777068 ], [ -120.3128299563, 47.4225323717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 924, "RouteIdentifier": "014", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7366031924, 45.6987633896 ], [ -121.7054052114, 45.6992145937 ], [ -121.6759438831, 45.7099755879 ], [ -121.6604109342, 45.7097319074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 925, "RouteIdentifier": "409", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3830261382, 46.2040132418 ], [ -123.3821019742, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 926, "RouteIdentifier": "099", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3470322877, 47.6426862378 ], [ -122.3473316285, 47.6527710843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 927, "RouteIdentifier": "150", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1554043069, 47.8843452114 ], [ -120.1511179931, 47.883422456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 928, "RouteIdentifier": "097", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362799721, 48.9485573498 ], [ -119.4366735302, 48.9489071813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 929, "RouteIdentifier": "161", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2959770656, 47.1610814791 ], [ -122.297846414, 47.1614508102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 930, "RouteIdentifier": "395", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7153794817, 48.2082318736 ], [ -117.7154506529, 48.2699984918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 931, "RouteIdentifier": "291", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5450441479, 47.7703887266 ], [ -117.5439564153, 47.7770043475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 932, "RouteIdentifier": "224", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3592158745, 46.3038389416 ], [ -119.3472771984, 46.3003841931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 933, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847277876, 48.0959977763 ], [ -122.1847725776, 48.1059122858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 934, "RouteIdentifier": "090", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5468406356, 47.1039007809 ], [ -119.4559455385, 47.1039759554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 935, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2027047002, 46.7090131164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 936, "RouteIdentifier": "503", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.55279656, 45.6913817983 ], [ -122.5527655447, 45.7037149254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 937, "RouteIdentifier": "504", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.900982517, 46.2858307257 ], [ -122.8997031408, 46.2867891323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 938, "RouteIdentifier": "100SPCANBY", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0565418921, 46.2902358871 ], [ -124.0560465833, 46.2891258681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 939, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853465728, 46.5342767318 ], [ -122.475498549, 46.5361010556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 940, "RouteIdentifier": "006", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7094384198, 46.6776841454 ], [ -123.7038991686, 46.6750455817 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 941, "RouteIdentifier": "260", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8614321809, 46.652330978 ], [ -118.8524014486, 46.6510749802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 942, "RouteIdentifier": "003", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6927958127, 47.661573015 ], [ -122.6880316431, 47.664446406 ], [ -122.6882400113, 47.6692766526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 943, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6669042924, 47.0988351268 ], [ -118.6653004485, 47.1161677624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 944, "RouteIdentifier": "003", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6759314616, 47.5414115006 ], [ -122.6748917772, 47.5440202547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 945, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3016866652, 47.3019511926 ], [ -121.2916134708, 47.299067816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 946, "RouteIdentifier": "505", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.84688053, 46.4446581265 ], [ -122.8478646508, 46.4428982556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 947, "RouteIdentifier": "270", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1781385805, 46.7289018557 ], [ -117.1769047974, 46.729513769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 948, "RouteIdentifier": "243", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9550394088, 46.881056224 ], [ -119.9465333306, 46.9123858241 ], [ -119.9569337464, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 949, "RouteIdentifier": "012", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6035425582, 46.5285458674 ], [ -122.5955693857, 46.5253458249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 950, "RouteIdentifier": "405", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2236011158, 47.8003896824 ], [ -122.2315021263, 47.8140192332 ], [ -122.2564077395, 47.8281388084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 951, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3494761141, 47.8214634366 ], [ -122.3413276695, 47.8214509801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 952, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9163495454, 47.639117271 ], [ -121.9102593964, 47.6591206418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 953, "RouteIdentifier": "103", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0525359155, 46.466597142 ], [ -124.0524708108, 46.4681772505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 954, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9707726081, 47.8570932647 ], [ -121.970344695, 47.8592876727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 955, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3565494361, 47.7225769388 ], [ -117.3549235161, 47.7296515994 ], [ -117.3606738137, 47.7392386451 ], [ -117.3591982992, 47.7502754755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 956, "RouteIdentifier": "028", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1328213855, 47.4183288429 ], [ -119.1069520778, 47.4029037206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 957, "RouteIdentifier": "224", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3472771984, 46.3003841931 ], [ -119.3370276268, 46.2969163285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 958, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9614934821, 48.0502939774 ], [ -122.9507202106, 48.050275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 959, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3633339712, 46.1950290192 ], [ -123.3544482975, 46.1872368309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 960, "RouteIdentifier": "028", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2560871516, 47.4838568514 ], [ -118.2546862005, 47.4856106964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 961, "RouteIdentifier": "410", "AADT": 700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3590945902, 46.9323858894 ], [ -121.3058304988, 46.9520915888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 962, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9651128936, 48.5240655431 ], [ -121.9301268685, 48.5264239752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 963, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9768718108, 46.656330602 ], [ -122.9799410614, 46.666273563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 964, "RouteIdentifier": "103", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0345305238, 46.549222742 ], [ -124.0378003229, 46.5491873736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 965, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2928419495, 47.6157241973 ], [ -119.2882313209, 47.6170498652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 966, "RouteIdentifier": "206", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2290446727, 47.8020950345 ], [ -117.2128688346, 47.8047418564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 967, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216193183, 47.6754410608 ], [ -122.121605019, 47.6744466654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 968, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5071454103, 47.6430669681 ], [ -117.4899748205, 47.6377977945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 969, "RouteIdentifier": "004", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0155186397, 46.1714070706 ], [ -123.0109218044, 46.1691434983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 970, "RouteIdentifier": "544", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3234409469, 48.9201959718 ], [ -122.3219125052, 48.9201922455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 971, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0741604248, 47.4897900635 ], [ -123.0798887479, 47.4834193437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 972, "RouteIdentifier": "503", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5200551004, 45.865996916 ], [ -122.5142285605, 45.8854969434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 973, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989188555, 47.1501796155 ], [ -122.4839759446, 47.158948731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 974, "RouteIdentifier": "026", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4532860957, 46.8561637408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 975, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8302534091, 47.4465115389 ], [ -122.8269220429, 47.4513256561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 976, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0483767272, 47.6956888561 ], [ -117.0417025967, 47.6966317895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 977, "RouteIdentifier": "395", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411395589, 47.7475767488 ], [ -117.4108536601, 47.7513199125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 978, "RouteIdentifier": "291", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6248994904, 47.8447512634 ], [ -117.641565621, 47.8531276258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 979, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4637974094, 48.749722479 ], [ -122.4622122897, 48.7536867617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 980, "RouteIdentifier": "515", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024048555, 47.3748567353 ], [ -122.2022086866, 47.3993044634 ], [ -122.1971702632, 47.4033636901 ], [ -122.1970568676, 47.4134071531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 981, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1928665076, 45.6576560325 ], [ -121.1823283839, 45.6490400174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 982, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3673070896, 47.8179585281 ], [ -122.3663582961, 47.8214821079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 983, "RouteIdentifier": "903", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9931524128, 47.222746832 ], [ -120.9940435568, 47.2237272029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 984, "RouteIdentifier": "011", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.486331208, 48.7148245953 ], [ -122.4751894509, 48.7143961658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 985, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1774124503, 47.0928575254 ], [ -119.16309152, 47.0915688757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 986, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3416041033, 48.4806846506 ], [ -122.3354436719, 48.4902753934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 987, "RouteIdentifier": "097COMARYHL", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8245858874, 45.6986339731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 988, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0751698208, 48.6068991662 ], [ -118.0783937232, 48.6149269177 ], [ -118.0719817894, 48.6214498763 ], [ -118.0767913963, 48.6302280828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 989, "RouteIdentifier": "103", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0338926368, 46.4915291514 ], [ -124.0337063992, 46.4929517328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 990, "RouteIdentifier": "150", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9823239969, 47.8274002482 ], [ -119.9786186226, 47.8263733091 ], [ -119.9835503921, 47.8126666885 ], [ -119.9808716374, 47.8137027141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 991, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7408549752, 45.9111701973 ], [ -122.7402748344, 45.9071079053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 992, "RouteIdentifier": "241", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9990847026, 46.3019803085 ], [ -119.9781878444, 46.3023441821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 993, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1335402589, 46.81166858 ], [ -119.0482198121, 46.7995487771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 994, "RouteIdentifier": "028", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5985546782, 47.2518971615 ], [ -119.5802254795, 47.2715449725 ], [ -119.5798147835, 47.2816012149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 995, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.2287970334, 46.322331888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 996, "RouteIdentifier": "503", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245766997, 45.9425126462 ], [ -122.6292421446, 45.941283986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 997, "RouteIdentifier": "202", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0103610919, 47.6398424818 ], [ -121.9982651856, 47.6313971171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 998, "RouteIdentifier": "900", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619693815, 47.5476213035 ], [ -122.0609313135, 47.5488637513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 999, "RouteIdentifier": "518", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3320839174, 47.4704214925 ], [ -122.3286086093, 47.4699818296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1000, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9291735447, 47.4763535553 ], [ -123.9337629187, 47.4801114863 ], [ -123.9589950413, 47.4802520054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1001, "RouteIdentifier": "129", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0523623815, 46.336389697 ], [ -117.0487379362, 46.3397717715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1002, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.89576752, 46.9948947943 ], [ -123.899165273, 46.997061728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1003, "RouteIdentifier": "012", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8562732625, 46.5369650839 ], [ -117.8217992709, 46.5244556466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1004, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9600984345, 46.8984631507 ], [ -122.9467593344, 46.9213451432 ], [ -122.9389895243, 46.9474951907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1005, "RouteIdentifier": "970", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7730682265, 47.1959969886 ], [ -120.7607234225, 47.1917861928 ], [ -120.7332273936, 47.2005102162 ], [ -120.7189725743, 47.1993671783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1006, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2580730119, 47.8098225751 ], [ -124.2638042622, 47.8258077379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1007, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7934879339, 46.6650978736 ], [ -123.7831803897, 46.6698379874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1008, "RouteIdentifier": "027", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1974475198, 47.5227002331 ], [ -117.2106226505, 47.5366364133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1009, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8261026875, 46.9700612141 ], [ -123.8158546232, 46.9740606365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1010, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311760448, 48.1709418294 ], [ -122.609133392, 48.1712861629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1011, "RouteIdentifier": "500", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244049035, 45.6505489649 ], [ -122.4244634331, 45.6433255811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1012, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1027698079, 46.9174522008 ], [ -117.0865946222, 46.9166932633 ], [ -117.0875131805, 46.9125608238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1013, "RouteIdentifier": "307", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.607158394, 47.7724672092 ], [ -122.6032429154, 47.7771222102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1014, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.524779511, 45.7292158488 ], [ -121.5209883629, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1015, "RouteIdentifier": "524", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3818597904, 47.8122546849 ], [ -122.3807347134, 47.8118396427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1016, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7350013936, 46.2109623873 ], [ -119.7134341801, 46.2195650238 ], [ -119.6746905035, 46.2230812429 ], [ -119.6647884113, 46.2316909296 ], [ -119.6378671733, 46.2418590791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1017, "RouteIdentifier": "129", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418061778, 46.4188762721 ], [ -117.0398979045, 46.4201869144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1018, "RouteIdentifier": "107", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6009036248, 46.9747491231 ], [ -123.6009001718, 46.9756350054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1019, "RouteIdentifier": "003", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1001117785, 47.2128066209 ], [ -123.0984506931, 47.2150788727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1020, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.398395829, 47.5437706657 ], [ -117.3939754864, 47.5534212221 ], [ -117.4011678238, 47.5746894483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1021, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329885436, 47.1517472612 ], [ -122.2366664186, 47.1398909033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1022, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349579061, 48.9905390378 ], [ -122.7349574112, 48.9939874349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1023, "RouteIdentifier": "101", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1998425884, 48.0838545215 ], [ -123.1729427957, 48.0794522238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1024, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8950160535, 46.1910097955 ], [ -122.8878973615, 46.2290248549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1025, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8543075131, 46.8986913821 ], [ -119.7477078919, 46.8989696084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1026, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6515427568, 47.7916136315 ], [ -122.6494078234, 47.8021122484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1027, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2845197408, 47.9244871101 ], [ -122.275846758, 47.922028224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1028, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067906493, 47.8972009127 ], [ -122.2068183241, 47.898121112 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1029, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1254705822, 47.6666303079 ], [ -117.1119679946, 47.6701905633 ], [ -117.1030345042, 47.677801453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1030, "RouteIdentifier": "017", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343073841, 46.7823988651 ], [ -119.1342855473, 46.7970731587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1031, "RouteIdentifier": "512", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965893904, 47.1697800021 ], [ -122.2966981396, 47.1766290629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1032, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444365005, 47.6869595926 ], [ -122.344449168, 47.6905617273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1033, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3463687355, 46.0605179899 ], [ -118.3470868548, 46.0613934646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1034, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133341775, 47.6416718327 ], [ -122.2093039324, 47.6428078098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1035, "RouteIdentifier": "124", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1547729075, 46.2701299684 ], [ -118.1532476863, 46.2701348718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1036, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0246904637, 46.4313046328 ], [ -119.0241669698, 46.4325560871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1037, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645242594, 45.6843405722 ], [ -122.6633194815, 45.6889511168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1038, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093581645, 47.7588250331 ], [ -122.2074296103, 47.7589886736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1039, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0718667587, 47.0910580253 ], [ -123.0326707223, 47.0850835188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1040, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.046642025, 46.2322064702 ], [ -119.0389832338, 46.2269143007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1041, "RouteIdentifier": "090", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1433040389, 47.6655064295 ], [ -117.1254705822, 47.6666303079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1042, "RouteIdentifier": "432", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9772037818, 46.1314750359 ], [ -122.9708431325, 46.1276076543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1043, "RouteIdentifier": "432", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9437335833, 46.1159145 ], [ -122.9300694121, 46.1160931581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1044, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527655447, 45.7037149254 ], [ -122.5526401143, 45.7079886815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1045, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3461737894, 47.4701826048 ], [ -120.3405862296, 47.4683902338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1046, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468216405, 48.1843343896 ], [ -117.0454478886, 48.1840423049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1047, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6653004485, 47.1161677624 ], [ -118.6650951427, 47.1307627649 ], [ -118.6865288265, 47.1310840591 ], [ -118.6868873255, 47.1525952933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1048, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0705784959, 46.818061401 ], [ -123.0445647319, 46.8032170817 ], [ -123.0367919974, 46.8025443825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1049, "RouteIdentifier": "303", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329554592, 47.5769885266 ], [ -122.6311588032, 47.5832738305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1050, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3891779095, 47.2344452702 ], [ -122.3464829935, 47.2161092989 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1051, "RouteIdentifier": "503", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6602039757, 45.9401079071 ], [ -122.6781103544, 45.9394909444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1052, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2572398494, 47.8906887228 ], [ -122.2484756693, 47.9000726144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1053, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3895677666, 47.4250017467 ], [ -117.3851698428, 47.4416448647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1054, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.51157568, 48.4168080215 ], [ -119.5086232761, 48.4167726734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1055, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5588936409, 47.1038824628 ], [ -119.5468406356, 47.1039007809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1056, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3028444423, 48.6504520462 ], [ -121.2687683916, 48.6735745065 ], [ -121.2428911629, 48.6747734043 ], [ -121.2417871323, 48.6848232358 ], [ -121.2133872234, 48.6996238392 ], [ -121.1788562676, 48.7047805918 ], [ -121.1615462137, 48.7118489675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1057, "RouteIdentifier": "027", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1415565005, 47.4513001292 ], [ -117.150006285, 47.4715006436 ], [ -117.1473710049, 47.490110618 ], [ -117.1534210243, 47.4954564889 ], [ -117.1543496781, 47.5050294883 ], [ -117.1729346647, 47.5083302931 ], [ -117.1911483543, 47.5183415887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1058, "RouteIdentifier": "005", "AADT": 156000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3218213184, 47.7696559418 ], [ -122.3161178049, 47.7897600047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1059, "RouteIdentifier": "023", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9726679277, 47.3094719647 ], [ -117.9743483399, 47.316068813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1060, "RouteIdentifier": "004", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8422504198, 46.4113220356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1061, "RouteIdentifier": "103", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0306794602, 46.5320120219 ], [ -124.0311381455, 46.5464572368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1062, "RouteIdentifier": "536", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4283589995, 48.4448569455 ], [ -122.4220672954, 48.4427374565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1063, "RouteIdentifier": "005", "AADT": 168000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1919909484, 47.9726739009 ], [ -122.1903760819, 47.9768936616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1064, "RouteIdentifier": "405", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2564077395, 47.8281388084 ], [ -122.2615653431, 47.8313484071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1065, "RouteIdentifier": "012", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0389677607, 46.4202679171 ], [ -117.0359439377, 46.4204504282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1066, "RouteIdentifier": "509", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4199297039, 47.2443571022 ], [ -122.3998093609, 47.2472450781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1067, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3061625069, 47.1007526268 ], [ -119.2760112984, 47.102681285 ], [ -119.2359630516, 47.0980998127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1068, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6513721365, 47.7650327884 ], [ -122.6507363437, 47.7695891636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1069, "RouteIdentifier": "509", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3794534635, 47.2749697278 ], [ -122.3873073485, 47.2789522223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1070, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3386717842, 47.467239294 ], [ -120.337752153, 47.4679946321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1071, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3506178988, 47.9432704768 ], [ -117.3495747173, 47.9706537304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1072, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8239536487, 47.1032398754 ], [ -119.7595545426, 47.1034506094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1073, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4973048928, 47.4245366123 ], [ -119.5139073632, 47.4582590092 ], [ -119.5147481213, 47.4841570152 ], [ -119.4959565531, 47.5262188898 ], [ -119.4877526805, 47.534625173 ], [ -119.4698317487, 47.5426197192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1074, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5941205276, 47.5625995288 ], [ -117.5935764168, 47.5639483159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1075, "RouteIdentifier": "108", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2866459043, 47.0557293212 ], [ -123.2754372301, 47.0555807313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1076, "RouteIdentifier": "395", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.571639149, 46.9627633161 ], [ -118.564368032, 46.9784278916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1077, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5436645551, 46.6226773126 ], [ -120.5384276031, 46.6224575094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1078, "RouteIdentifier": "016AR", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5607434503, 47.285298956 ], [ -122.5598601931, 47.2754181914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1079, "RouteIdentifier": "141", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4875027306, 45.727786525 ], [ -121.5060798331, 45.7309675268 ], [ -121.5123870647, 45.7354852032 ], [ -121.5138862172, 45.7429041091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1080, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8982557871, 46.1444215752 ], [ -122.897437776, 46.1447077289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1081, "RouteIdentifier": "105SPWESTPT", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1108347849, 46.868530839 ], [ -124.111600125, 46.8850832339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1082, "RouteIdentifier": "109", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1977866952, 47.2037633126 ], [ -124.1981225594, 47.2096549901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1083, "RouteIdentifier": "009", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092045302, 48.9638603752 ], [ -122.2884988914, 48.963997296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1084, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223014031, 47.4387746189 ], [ -122.3204263512, 47.4439375555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1085, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4685078514, 47.6390299187 ], [ -117.4478142216, 47.6480936772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1086, "RouteIdentifier": "009", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434566593, 47.7903443739 ], [ -122.1434306209, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1087, "RouteIdentifier": "163", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141387154, 47.305285326 ], [ -122.5141532261, 47.305786013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1088, "RouteIdentifier": "520", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3049498032, 47.6441648565 ], [ -122.2886549992, 47.644785095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1089, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0528192146, 48.6655590546 ], [ -118.0248355209, 48.673690401 ], [ -118.0156324089, 48.6799759393 ], [ -118.01183753, 48.6910675803 ], [ -118.0246739855, 48.714996295 ], [ -118.0424279281, 48.7258692143 ], [ -118.0490326374, 48.7359093653 ], [ -118.0449313771, 48.7513776852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1090, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4409541321, 48.1081108568 ], [ -123.4325841603, 48.1173198234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1091, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3217483631, 48.934759017 ], [ -122.3209191677, 48.9438094983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1092, "RouteIdentifier": "410", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1637086417, 47.1693190408 ], [ -122.1591468798, 47.1688389452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1093, "RouteIdentifier": "506", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0437695719, 46.3726813295 ], [ -123.0436033456, 46.3778943675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1094, "RouteIdentifier": "007", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1934957289, 46.7573170831 ], [ -122.1920445113, 46.7631482149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1095, "RouteIdentifier": "509", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228061274, 47.4391963694 ], [ -122.3222272004, 47.4388851786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1096, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4325841603, 48.1173198234 ], [ -123.4317237119, 48.1182747731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1097, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7703914682, 46.9553073045 ], [ -123.7726340053, 46.9572131386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1098, "RouteIdentifier": "101", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.801005869, 46.9715394508 ], [ -123.8046532988, 46.9702958878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1099, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4559455385, 47.1039759554 ], [ -119.4399901193, 47.1039813699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1100, "RouteIdentifier": "027", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2027047002, 46.7090131164 ], [ -117.1944912719, 46.7123163464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1101, "RouteIdentifier": "505", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8425140234, 46.4589718006 ], [ -122.8432117884, 46.4565616045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1102, "RouteIdentifier": "522", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3055000322, 47.6975803085 ], [ -122.3004396604, 47.7105219184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1103, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2414121493, 48.5104075699 ], [ -122.238568264, 48.5105092144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1104, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9417957659, 46.8489960363 ], [ -119.9564385558, 46.870475719 ], [ -119.9550394088, 46.881056224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1105, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1199550793, 47.3581151088 ], [ -122.1183933229, 47.358083689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1106, "RouteIdentifier": "534", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2917893864, 48.3357459775 ], [ -122.2346365429, 48.3169213007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1107, "RouteIdentifier": "902", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826802298, 47.5728704065 ], [ -117.6822629215, 47.5797908647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1108, "RouteIdentifier": "508", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966216811, 46.5642108312 ], [ -122.2876908004, 46.5629051119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1109, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260701767, 47.9948236433 ], [ -117.7319104687, 48.0271486285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1110, "RouteIdentifier": "547", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.163014477, 48.9673328212 ], [ -122.1791586732, 48.976749001 ], [ -122.2244279928, 48.9635543174 ], [ -122.2383116691, 48.9818595874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1111, "RouteIdentifier": "109", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1654679307, 47.0715130267 ], [ -124.1655918294, 47.0723702608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1112, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4763407681, 47.0248252936 ], [ -118.4422043734, 47.0465468351 ], [ -118.4141103189, 47.0591967856 ], [ -118.4096531682, 47.0680228106 ], [ -118.4070751366, 47.1033095374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1113, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.737315796, 47.6895337324 ], [ -120.7340804093, 47.6761871917 ], [ -120.736360708, 47.6653111621 ], [ -120.7293898748, 47.659802408 ], [ -120.7200561919, 47.6404036194 ], [ -120.7278030171, 47.6305660868 ], [ -120.7121110083, 47.5936110768 ], [ -120.701765463, 47.584174099 ], [ -120.6752481496, 47.5885745711 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1114, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9015325687, 45.6823424191 ], [ -121.8860713061, 45.6924749788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1115, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3849909341, 47.7667352841 ], [ -117.3782208966, 47.7726334374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1116, "RouteIdentifier": "004COKELSO", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9075601174, 46.1465486719 ], [ -122.9085060615, 46.1467022322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1117, "RouteIdentifier": "290", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3720613135, 47.6630728307 ], [ -117.3625630309, 47.6667062903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1118, "RouteIdentifier": "103", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0524708108, 46.4681772505 ], [ -124.050056982, 46.4906407097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1119, "RouteIdentifier": "304", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6552199252, 47.5591158808 ], [ -122.6532972455, 47.5655345715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1120, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7393994237, 47.7563801327 ], [ -120.7384906148, 47.7360195936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1121, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6020428046, 47.8547635857 ], [ -122.5840564696, 47.8521537918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1122, "RouteIdentifier": "002", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.483337808, 47.77070918 ], [ -121.4722955548, 47.7620355267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1123, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2297404096, 47.0873925614 ], [ -119.2426005336, 47.0979189769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1124, "RouteIdentifier": "704", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.448296137, 47.0970846899 ], [ -122.434931526, 47.0973144524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1125, "RouteIdentifier": "163", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156562553, 47.2992775357 ], [ -122.5156424716, 47.3005954736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1126, "RouteIdentifier": "505", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.689147502, 46.3885347527 ], [ -122.6768545821, 46.3788408723 ], [ -122.6734966352, 46.3612844656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1127, "RouteIdentifier": "122", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4858227533, 46.5364298713 ], [ -122.4853465728, 46.5342767318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1128, "RouteIdentifier": "107", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6707784483, 46.9375606362 ], [ -123.6492690844, 46.9444965174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1129, "RouteIdentifier": "017", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1601933723, 47.0283986473 ], [ -119.1947276042, 47.0577047606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1130, "RouteIdentifier": "115", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1627542467, 47.0173831144 ], [ -124.1550212915, 47.0173446802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1131, "RouteIdentifier": "027", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730185905, 47.2267941681 ], [ -117.1115839277, 47.2323900431 ], [ -117.1304728709, 47.2420790028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1132, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6109588785, 46.6497792928 ], [ -121.6020091618, 46.6572102746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1133, "RouteIdentifier": "025", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0035439323, 48.8008410224 ], [ -118.0000524199, 48.8073878339 ], [ -117.9839914901, 48.8137933308 ], [ -117.9732159238, 48.8153725474 ], [ -117.9487392461, 48.8094853403 ], [ -117.9292546465, 48.8147409952 ], [ -117.911425089, 48.8271070325 ], [ -117.8959484464, 48.8508702474 ], [ -117.881274636, 48.8536526446 ], [ -117.8721976377, 48.8648540321 ], [ -117.8535989042, 48.873679994 ], [ -117.8412727199, 48.8719526263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1134, "RouteIdentifier": "125", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564482172, 46.0758820358 ], [ -118.356443458, 46.0771858995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1135, "RouteIdentifier": "529SPEVERET", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1880265207, 47.9816960822 ], [ -122.1866738723, 47.9816878379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1136, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8521750453, 46.9760733389 ], [ -123.8539819045, 46.9760751104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1137, "RouteIdentifier": "141", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4854380467, 45.7986174954 ], [ -121.4907851352, 45.8072105905 ], [ -121.4897114476, 45.8238193301 ], [ -121.5095189303, 45.8498089062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1138, "RouteIdentifier": "002CONEWPRT", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424418871, 48.1840101705 ], [ -117.0439333142, 48.1840295652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1139, "RouteIdentifier": "281", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535479607, 47.1032529839 ], [ -119.853533075, 47.1177226749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1140, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0859358901, 47.3580748666 ], [ -122.0740512207, 47.3581005334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1141, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1976360012, 47.9682783923 ], [ -122.1919909484, 47.9726739009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1142, "RouteIdentifier": "305", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5393560124, 47.6795086708 ], [ -122.5509605497, 47.690504212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1143, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.765463651, 48.1095610147 ], [ -119.7180337732, 48.1023785656 ], [ -119.6987076385, 48.1034031892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1144, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1098271088, 47.8752954587 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1145, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3566645336, 48.4657611597 ], [ -122.3471628144, 48.4689593505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1146, "RouteIdentifier": "020", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4987396272, 48.4522633023 ], [ -122.4439027276, 48.4460211348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1147, "RouteIdentifier": "507", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8615475437, 46.8501099194 ], [ -122.8619828359, 46.8516552572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1148, "RouteIdentifier": "009SPSUMAS", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263463248, 49.0000254737 ], [ -122.2636151475, 49.0023365971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1149, "RouteIdentifier": "026", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3189412156, 46.7588639349 ], [ -118.3084452289, 46.758407436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1150, "RouteIdentifier": "524SPCEDRWY", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923358096, 47.816111394 ], [ -122.2923089488, 47.8137046002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1151, "RouteIdentifier": "028", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546862005, 47.4856106964 ], [ -118.2503978849, 47.4892081022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1152, "RouteIdentifier": "823", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5170629867, 46.6712561513 ], [ -120.5090316719, 46.6767027963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1153, "RouteIdentifier": "904", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7906979157, 47.4363324322 ], [ -117.788774298, 47.4352395576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1154, "RouteIdentifier": "702", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5417481504, 46.93783701 ], [ -122.5283321717, 46.937764175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1155, "RouteIdentifier": "202", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1133617704, 47.671528366 ], [ -122.1035997262, 47.668444842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1156, "RouteIdentifier": "100", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0487521206, 46.3101897606 ], [ -124.0611205915, 46.3133462133 ], [ -124.0646455872, 46.3095588922 ], [ -124.0606528839, 46.3056504572 ], [ -124.0631995935, 46.2983588775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1157, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561926794, 47.9788192594 ], [ -122.3709598621, 47.979159491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1158, "RouteIdentifier": "097COMARYHL", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245858874, 45.6986339731 ], [ -120.8245348679, 45.6980196603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1159, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2899334719, 45.6959989375 ], [ -121.2896666816, 45.6971356795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1160, "RouteIdentifier": "021", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7038407746, 48.2693058531 ], [ -118.7118079936, 48.2717401758 ], [ -118.7347455537, 48.2990724352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1161, "RouteIdentifier": "024", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.335129764, 46.5487710681 ], [ -120.2917105696, 46.5347459334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1162, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9982651856, 47.6313971171 ], [ -121.9874606417, 47.6279947984 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1163, "RouteIdentifier": "433", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9512089429, 46.1157614264 ], [ -122.9506147609, 46.1164898023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1164, "RouteIdentifier": "524", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3807347134, 47.8118396427 ], [ -122.3796065351, 47.8114284518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1165, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6421804262, 48.4953349997 ], [ -121.6266579644, 48.4887808077 ], [ -121.5961697621, 48.4872753789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1166, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4620882803, 47.1970495358 ], [ -122.4616630283, 47.2001928833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1167, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9715754997, 46.6806806366 ], [ -122.9696916332, 46.6933543645 ], [ -122.9726938016, 46.7033062755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1168, "RouteIdentifier": "012", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0586800059, 46.4199262615 ], [ -117.0574168065, 46.4199273309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1169, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6896573662, 47.926800027 ], [ -118.6899360795, 47.9292182705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1170, "RouteIdentifier": "028", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4972510691, 47.3702850298 ], [ -119.4904926467, 47.3759248116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1171, "RouteIdentifier": "007", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4005142886, 47.0558581985 ], [ -122.4284944729, 47.078773705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1172, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7394916541, 47.7565110441 ], [ -120.730179083, 47.7636832556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1173, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9995278053, 46.2401318028 ], [ -119.9992119183, 46.2864963221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1174, "RouteIdentifier": "097", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3229788958, 46.3718043346 ], [ -120.3295269338, 46.375119312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1175, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547456263, 46.346612471 ], [ -124.0545804856, 46.3501186151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1176, "RouteIdentifier": "002", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.710341624, 47.7597380108 ], [ -118.7091478999, 47.7594544328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1177, "RouteIdentifier": "097", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.504726913, 48.4971895169 ], [ -119.529422804, 48.5261884807 ], [ -119.5433994788, 48.5588067811 ], [ -119.5428821789, 48.5652457761 ], [ -119.5336093333, 48.5756042234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1178, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1150336799, 47.4621474593 ], [ -123.1115804388, 47.4591212378 ], [ -123.1135516316, 47.4532319373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1179, "RouteIdentifier": "110", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4817162701, 47.9308967011 ], [ -124.5299932781, 47.9150697025 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1180, "RouteIdentifier": "007", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434931526, 47.0973144524 ], [ -122.4349079042, 47.0993004058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1181, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0489497271, 46.7350588091 ], [ -117.0399457046, 46.7324070437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1182, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9093031811, 46.1446137165 ], [ -122.9084925335, 46.1444678361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1183, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0398979045, 46.4201869144 ], [ -117.0391231637, 46.4202563296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1184, "RouteIdentifier": "531", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891839532, 48.1557176379 ], [ -122.2864988953, 48.1556958232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1185, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3759552613, 48.1048555471 ], [ -123.3718777273, 48.1048682436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1186, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5827190303, 48.4888446329 ], [ -121.5545003505, 48.4913049652 ], [ -121.4881327998, 48.508950098 ], [ -121.4721422642, 48.5088437362 ], [ -121.4623455844, 48.5215887624 ], [ -121.4499029188, 48.52736977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1187, "RouteIdentifier": "174", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3601556874, 47.9337662856 ], [ -119.3421710669, 47.9339530573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1188, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.562292404, 46.6954679099 ], [ -121.5460838145, 46.6830305932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1189, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046532988, 46.9702958878 ], [ -123.8110700669, 46.9732623777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1190, "RouteIdentifier": "097AR", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0538459389, 47.8359849929 ], [ -120.0523540333, 47.8358056633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1191, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.459484559, 48.9953117488 ], [ -119.4617807765, 49.0000868106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1192, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1240043387, 47.8375143859 ], [ -122.110117861, 47.8606661748 ], [ -122.1098271088, 47.8752954587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1193, "RouteIdentifier": "304", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6719854785, 47.5475493235 ], [ -122.6673528658, 47.5490597613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1194, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3606111002, 46.0686802253 ], [ -118.3620580135, 46.0686467543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1195, "RouteIdentifier": "097", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4796170905, 46.5164951013 ], [ -120.4801991599, 46.5222228139 ], [ -120.4740346798, 46.5317789409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1196, "RouteIdentifier": "538", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3257332902, 48.4357585766 ], [ -122.3228133919, 48.4357262199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1197, "RouteIdentifier": "005", "AADT": 129000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526964173, 47.1210261719 ], [ -122.5479047169, 47.1238498878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1198, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617020964, 45.6446264754 ], [ -122.662431148, 45.6521906297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1199, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4341705298, 47.1628256566 ], [ -122.4339661209, 47.2054048624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1200, "RouteIdentifier": "531", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1507870886, 48.1520523663 ], [ -122.1406082627, 48.151913289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1201, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8867284289, 47.8204635395 ], [ -122.9030126575, 47.8171105151 ], [ -122.9099882327, 47.8113401111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1202, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0450833502, 47.3945353699 ], [ -122.0402216819, 47.4051375238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1203, "RouteIdentifier": "500", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5649359725, 45.6591474533 ], [ -122.5527645121, 45.6654147454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1204, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179486123, 48.0711563886 ], [ -122.8179559351, 48.0780690922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1205, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982863362, 47.5159647484 ], [ -122.1981171515, 47.5215347846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1206, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.415831441, 47.6526577026 ], [ -117.4040031937, 47.6521238544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1207, "RouteIdentifier": "397", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0836074304, 46.2194354617 ], [ -119.0802022582, 46.218655692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1208, "RouteIdentifier": "544", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.464240563, 48.891667265 ], [ -122.3836725936, 48.891377649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1209, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4299729836, 48.1175659952 ], [ -123.4189331528, 48.1130399131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1210, "RouteIdentifier": "097", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8245348679, 45.6980196603 ], [ -120.8239311827, 45.699442413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1211, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.382100299, 47.0068490189 ], [ -123.370724874, 47.0107162595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1212, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070364986, 47.4594077387 ], [ -122.2071762297, 47.460991061 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1213, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981325832, 48.8071844986 ], [ -122.2025348229, 48.816156561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1214, "RouteIdentifier": "529", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143033169, 47.9820481244 ], [ -122.2137802603, 47.9942207425 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1215, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.593279583, 46.934769492 ], [ -122.5900304239, 46.9331912019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1216, "RouteIdentifier": "240", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1457324057, 46.2175957254 ], [ -119.139733927, 46.2168054788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1217, "RouteIdentifier": "014", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9186778089, 45.6533510839 ], [ -121.9052657624, 45.6630172635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1218, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7946033875, 46.6644384378 ], [ -123.7934879339, 46.6650978736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1219, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9302808397, 47.0618284552 ], [ -123.9291952045, 47.0698220314 ], [ -123.9053497947, 47.0862378881 ], [ -123.9065683519, 47.1025224633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1220, "RouteIdentifier": "409", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.376808335, 46.1600802384 ], [ -123.3772473125, 46.1712612786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1221, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0171493711, 47.533899271 ], [ -122.0078975272, 47.536442657 ], [ -121.9862702466, 47.5309639916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1222, "RouteIdentifier": "283", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6860494601, 47.1944007257 ], [ -119.6058982049, 47.2443593024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1223, "RouteIdentifier": "099", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347269484, 47.5378318312 ], [ -122.334116065, 47.5428151022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1224, "RouteIdentifier": "197", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1407808762, 45.6112782291 ], [ -121.1458871745, 45.6207464818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1225, "RouteIdentifier": "097", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5082283693, 48.4171152484 ], [ -119.4957046659, 48.4279752811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1226, "RouteIdentifier": "971", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1924069122, 47.866359942 ], [ -120.2017909519, 47.8734177394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1227, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2929172872, 47.4079531918 ], [ -120.2924574784, 47.4062158074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1228, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3124253164, 48.3052893759 ], [ -122.3220553649, 48.3133080082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1229, "RouteIdentifier": "522", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1913304565, 47.7557202808 ], [ -122.1719789948, 47.757621596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1230, "RouteIdentifier": "303", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888093798, 47.6646633668 ], [ -122.6923069088, 47.6636431264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1231, "RouteIdentifier": "121", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9289732825, 46.9527927439 ], [ -122.9342408253, 46.9527666325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1232, "RouteIdentifier": "014", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9860480217, 45.6413721887 ], [ -121.9750135429, 45.6406654273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1233, "RouteIdentifier": "101", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7147238013, 46.8904667022 ], [ -123.7196952232, 46.9185306009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1234, "RouteIdentifier": "142", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8318672716, 45.8230595037 ], [ -120.8246818019, 45.8230059935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1235, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.788376675, 47.4940653907 ], [ -121.7947532586, 47.4893941273 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1236, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3303173221, 48.6585990657 ], [ -119.300956592, 48.6532912771 ], [ -119.2320083598, 48.6707268101 ], [ -119.2170761455, 48.6694219752 ], [ -119.1977655229, 48.6613912396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1237, "RouteIdentifier": "007", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4256225729, 47.223122782 ], [ -122.4262909226, 47.225964252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1238, "RouteIdentifier": "970", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8502977234, 47.1752256328 ], [ -120.835010601, 47.1813621929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1239, "RouteIdentifier": "009", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3202363813, 48.949281296 ], [ -122.309466058, 48.9557928338 ], [ -122.3092045302, 48.9638603752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1240, "RouteIdentifier": "900", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0627483977, 47.5457057767 ], [ -122.0619693815, 47.5476213035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1241, "RouteIdentifier": "172", "AADT": 530 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6380760967, 47.8121912953 ], [ -119.636809987, 47.8116079214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1242, "RouteIdentifier": "009", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650029443, 48.993579316 ], [ -122.2649877502, 48.9991015764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1243, "RouteIdentifier": "169", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0453893577, 47.3903330933 ], [ -122.0450833502, 47.3945353699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1244, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9862005621, 47.609617512 ], [ -122.990036615, 47.602916964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1245, "RouteIdentifier": "009", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129746455, 48.6527134381 ], [ -122.2128675498, 48.6558774574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1246, "RouteIdentifier": "304", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.629614867, 47.5650234096 ], [ -122.626945866, 47.5650153276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1247, "RouteIdentifier": "405", "AADT": 141000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1979386219, 47.5094150608 ], [ -122.1982863362, 47.5159647484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1248, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8864441288, 47.5692233555 ], [ -121.8714099605, 47.5666180383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1249, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3012698346, 47.3733093484 ], [ -122.2963791173, 47.3865201952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1250, "RouteIdentifier": "005", "AADT": 204000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4000472078, 47.2402668908 ], [ -122.3761260037, 47.2404869197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1251, "RouteIdentifier": "014", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3368309639, 45.5742854262 ], [ -122.3209227556, 45.5721542335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1252, "RouteIdentifier": "025", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0733925966, 48.5848754338 ], [ -118.0753761557, 48.5902114462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1253, "RouteIdentifier": "902", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826777243, 47.5721438687 ], [ -117.6826802298, 47.5728704065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1254, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4233116711, 47.3170469005 ], [ -122.3933590552, 47.3223798088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1255, "RouteIdentifier": "005", "AADT": 99000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.662431148, 45.6521906297 ], [ -122.6641643838, 45.6564855831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1256, "RouteIdentifier": "513", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2859448482, 47.6619893558 ], [ -122.2731213214, 47.6686054126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1257, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9084925335, 46.1444678361 ], [ -122.9074799263, 46.1442853545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1258, "RouteIdentifier": "014", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8860713061, 45.6924749788 ], [ -121.8853526517, 45.6928459455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1259, "RouteIdentifier": "821", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.482692837, 46.6807839356 ], [ -120.4770208515, 46.690052266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1260, "RouteIdentifier": "005", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5173391489, 47.1402583462 ], [ -122.5087171766, 47.1447737983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1261, "RouteIdentifier": "005", "AADT": 203000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2844136914, 47.5118003255 ], [ -122.2959916607, 47.5348589719 ], [ -122.3052567416, 47.5434675701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1262, "RouteIdentifier": "516", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3114493708, 47.3915360181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1263, "RouteIdentifier": "195", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.195441231, 46.6743020858 ], [ -117.1949668666, 46.6792475821 ], [ -117.2041283286, 46.690852856 ], [ -117.2043379911, 46.7058457651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1264, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9601733292, 47.2820553805 ], [ -122.9476214148, 47.2843120228 ], [ -122.9072628203, 47.3196228278 ], [ -122.8804463364, 47.3319204562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1265, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8996061797, 46.3980707203 ], [ -122.8901249197, 46.4071066469 ], [ -122.8903778041, 46.415684535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1266, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9079763288, 46.6939358446 ], [ -120.9004508404, 46.6954723221 ], [ -120.8993401827, 46.7031683031 ], [ -120.8907814895, 46.7059868252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1267, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212761856, 47.1970266396 ], [ -122.2014569021, 47.1941769535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1268, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9191199125, 48.7058888906 ], [ -120.9018788234, 48.6993047307 ], [ -120.8869329514, 48.6878706293 ], [ -120.8730632183, 48.6662149503 ], [ -120.860204576, 48.6580196228 ], [ -120.8570944966, 48.6471093566 ], [ -120.8396554817, 48.6236676701 ], [ -120.8052610988, 48.5968427615 ], [ -120.7910556031, 48.5753448227 ], [ -120.7719880724, 48.5619204268 ], [ -120.7559189364, 48.5360943197 ], [ -120.735353297, 48.5237714938 ], [ -120.7300186258, 48.5053914965 ], [ -120.7047351948, 48.5014054647 ], [ -120.6742675651, 48.5197397944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1269, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329330637, 47.7502820303 ], [ -122.329647234, 47.751023302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1270, "RouteIdentifier": "020", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1686914859, 48.4567062705 ], [ -120.1641201079, 48.4482031158 ], [ -120.162657037, 48.4277004159 ], [ -120.1427507914, 48.4096480739 ], [ -120.1394581142, 48.3955959557 ], [ -120.1224530293, 48.3673427778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1271, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5903662442, 47.4195793911 ], [ -121.5776035522, 47.4100021272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1272, "RouteIdentifier": "017", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152583563, 47.0751224812 ], [ -119.2297404096, 47.0873925614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1273, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6550097756, 48.2961690914 ], [ -122.6459065292, 48.3044536381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1274, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126424216, 48.3479609208 ], [ -122.6144392443, 48.3571507648 ], [ -122.6376502047, 48.35872899 ], [ -122.6481358695, 48.3629663488 ], [ -122.6529393278, 48.3694852783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1275, "RouteIdentifier": "530", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.061555391, 48.2363292108 ], [ -122.0527912833, 48.2449618787 ], [ -122.0422700836, 48.2472730431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1276, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5109061448, 46.6442084502 ], [ -120.523724998, 46.6377396167 ], [ -120.5176792513, 46.6312271302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1277, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2460880266, 47.4822140792 ], [ -122.2262812506, 47.4777333495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1278, "RouteIdentifier": "021", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6063379125, 48.8732863748 ], [ -118.6042284774, 48.8798283082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1279, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1155512302, 47.4448279782 ], [ -123.1250572733, 47.4302399209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1280, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8889879118, 46.4359167363 ], [ -122.8874838161, 46.4465601034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1281, "RouteIdentifier": "090", "AADT": 101000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3302489185, 47.653713239 ], [ -117.3059533997, 47.6666196591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1282, "RouteIdentifier": "821", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5100857559, 46.9261498028 ], [ -120.4979769108, 46.9262182292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1283, "RouteIdentifier": "516", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1935312742, 47.3693743374 ], [ -122.1892028116, 47.3678526781 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1284, "RouteIdentifier": "028", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5798147835, 47.2816012149 ], [ -119.5666738127, 47.2998586553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1285, "RouteIdentifier": "182", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1705524126, 46.261830974 ], [ -119.1232845443, 46.2486626016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1286, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8921920489, 46.2675770829 ], [ -122.9002465055, 46.2807315191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1287, "RouteIdentifier": "519", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356442883, 47.5965279925 ], [ -122.3366115131, 47.6017705053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1288, "RouteIdentifier": "104", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4984055596, 47.7996307337 ], [ -122.4980484153, 47.7985063825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1289, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328642069, 47.5666355148 ], [ -122.6329469401, 47.5673326833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1290, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2138635159, 47.9989436144 ], [ -122.2139005694, 48.0088660673 ], [ -122.2066792685, 48.0166928257 ], [ -122.194138329, 48.0143287806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1291, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2658705764, 47.8207446489 ], [ -122.2603550037, 47.8200633469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1292, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5178051863, 46.8292156508 ], [ -117.5056679509, 46.8329591528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1293, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126146998, 48.512615782 ], [ -122.6158073359, 48.5126368227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1294, "RouteIdentifier": "003", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6811544626, 47.5662461986 ], [ -122.6872359291, 47.5754584422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1295, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.247228536, 48.5049651039 ], [ -122.2441256362, 48.5062952131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1296, "RouteIdentifier": "129", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501999692, 46.3407700726 ], [ -117.0544483353, 46.341189423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1297, "RouteIdentifier": "263", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5568485792, 46.6355163281 ], [ -118.5524895136, 46.6414946812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1298, "RouteIdentifier": "397", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0341737891, 46.1565283618 ], [ -119.0404861073, 46.1612119681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1299, "RouteIdentifier": "024", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2087469564, 46.519219156 ], [ -120.187902884, 46.5060599518 ], [ -120.1512170077, 46.5057690001 ], [ -120.1348556679, 46.5011777327 ], [ -120.0122059948, 46.5197458542 ], [ -119.9692099003, 46.519651668 ], [ -119.9107885567, 46.5364205054 ], [ -119.8800763033, 46.5339933138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1300, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8767342334, 47.9058643793 ], [ -122.8695985586, 47.8935341078 ], [ -122.8767758264, 47.8864421761 ], [ -122.8788699014, 47.8660279857 ], [ -122.8891886293, 47.8487536576 ], [ -122.8869762632, 47.8341940965 ], [ -122.8782146319, 47.8269872076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1301, "RouteIdentifier": "308", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6827030778, 47.7012362102 ], [ -122.6601620541, 47.7045647028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1302, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9552434055, 46.1471068295 ], [ -122.9517110134, 46.1469021572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1303, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4856549623, 48.8698410399 ], [ -122.4853470894, 48.891721005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1304, "RouteIdentifier": "021", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922988122, 47.3324960837 ], [ -118.6922310931, 47.3333156666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1305, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4712654383, 46.5394142128 ], [ -120.4716805803, 46.5315434526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1306, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4568888894, 47.7154157955 ], [ -117.4586693868, 47.7154118844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1307, "RouteIdentifier": "182", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0917467448, 46.2503035218 ], [ -119.0719934512, 46.2494836918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1308, "RouteIdentifier": "274", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.071549412, 47.2268141567 ], [ -117.0426450193, 47.2398211593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1309, "RouteIdentifier": "024", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2504477979, 46.5248889015 ], [ -120.2087469564, 46.519219156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1310, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2613682363, 47.6314977852 ], [ -119.2620674833, 47.6387927373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1311, "RouteIdentifier": "397", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0494766974, 46.168670079 ], [ -119.0547323353, 46.1734065603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1312, "RouteIdentifier": "005", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5841213566, 48.8552680454 ], [ -122.5884452443, 48.8674825234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1313, "RouteIdentifier": "174", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0032812985, 47.947389362 ], [ -119.0052660577, 47.9449095756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1314, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4503868347, 48.6949331433 ], [ -119.4426701243, 48.701328551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1315, "RouteIdentifier": "025", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753566144, 48.5985793743 ], [ -118.0751698208, 48.6068991662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1316, "RouteIdentifier": "270", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2257453992, 46.7363553939 ], [ -117.2088606428, 46.7337475063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1317, "RouteIdentifier": "005", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3359326659, 48.3471746589 ], [ -122.3353139183, 48.3777532366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1318, "RouteIdentifier": "026", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.740366325, 46.7916254829 ], [ -118.735554338, 46.7937508078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1319, "RouteIdentifier": "520", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1223453784, 47.6671817737 ], [ -122.1151578787, 47.6670962794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1320, "RouteIdentifier": "097", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4176648406, 46.2468890125 ], [ -120.4107130626, 46.2554072697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1321, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8756714308, 47.8241423181 ], [ -122.8784338391, 47.8213945565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1322, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4105237126, 47.7523163592 ], [ -117.4066398664, 47.7632226212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1323, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2650050712, 48.9927318071 ], [ -122.2650029443, 48.993579316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1324, "RouteIdentifier": "005HD15602", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2693756681, 47.4848401945 ], [ -122.271537638, 47.4774623884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1325, "RouteIdentifier": "300", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8631442072, 47.4386387656 ], [ -122.8510893599, 47.4467178579 ], [ -122.8432290715, 47.4472414198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1326, "RouteIdentifier": "262", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3337342412, 46.9675559139 ], [ -119.3209799294, 46.9653642782 ], [ -119.2905893437, 46.9819785317 ], [ -119.2546464371, 46.9816911587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1327, "RouteIdentifier": "231", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8779176066, 47.6694929404 ], [ -117.8823688809, 47.6904307157 ], [ -117.8721214923, 47.7133784629 ], [ -117.8705301943, 47.7320770346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1328, "RouteIdentifier": "028COWENTCH", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2920566884, 47.4105282137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1329, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4801819768, 47.1632148502 ], [ -122.4736786558, 47.1615792122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1330, "RouteIdentifier": "104", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5836844979, 47.8135870398 ], [ -122.575679242, 47.8083982974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1331, "RouteIdentifier": "009", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1709978885, 48.2679601252 ], [ -122.2108149261, 48.3083495968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1332, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5675988781, 47.5933681002 ], [ -117.564917202, 47.5916927028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1333, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847688223, 48.0681379541 ], [ -122.1846880578, 48.0816069517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1334, "RouteIdentifier": "125", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3712410754, 46.1000850053 ], [ -118.3752602576, 46.1297165624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1335, "RouteIdentifier": "002", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9976415411, 47.6844844298 ], [ -118.9853528685, 47.684966131 ], [ -118.9278071982, 47.7098400514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1336, "RouteIdentifier": "405", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1795081855, 47.5879075274 ], [ -122.1799148927, 47.5984958939 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1337, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4071070263, 45.6049828823 ], [ -122.4068708389, 45.6018672646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1338, "RouteIdentifier": "028", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4904926467, 47.3759248116 ], [ -119.4885964173, 47.3774858912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1339, "RouteIdentifier": "539", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859651634, 48.8333491544 ], [ -122.4859682883, 48.8551455389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1340, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2359717776, 48.0661116568 ], [ -124.1277743569, 48.0610891429 ], [ -124.0856497531, 48.0682445214 ], [ -124.0376981686, 48.0703874967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1341, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.570503455, 47.8132799743 ], [ -121.5578566858, 47.8076375665 ], [ -121.540417972, 47.8101587782 ], [ -121.5174716436, 47.8040718423 ], [ -121.5124008767, 47.792831906 ], [ -121.488037135, 47.7743909398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1342, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6612770989, 45.7464677187 ], [ -122.6644148519, 45.7566399081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1343, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1355017102, 47.9728688256 ], [ -122.1147445638, 47.9546186275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1344, "RouteIdentifier": "285", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2980615002, 47.4097420223 ], [ -120.3006072071, 47.4096540761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1345, "RouteIdentifier": "181", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473526853, 47.3779583767 ], [ -122.2473765563, 47.3813544414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1346, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442388387, 46.5318795567 ], [ -122.6340930823, 46.5322486745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1347, "RouteIdentifier": "195", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2035165481, 46.708001321 ], [ -117.2154971235, 46.710741141 ], [ -117.2226311076, 46.7258475583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1348, "RouteIdentifier": "500", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4001255166, 45.5869987019 ], [ -122.4026413273, 45.5856862701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1349, "RouteIdentifier": "167", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937875847, 47.2001491986 ], [ -122.2938700472, 47.204398406 ], [ -122.2900662647, 47.2038050564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1350, "RouteIdentifier": "512", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068844997, 47.1589588837 ], [ -122.3938232704, 47.1581372397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1351, "RouteIdentifier": "525", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3709598621, 47.979159491 ], [ -122.3858313632, 47.9827480539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1352, "RouteIdentifier": "167", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938144583, 47.1988803768 ], [ -122.2937875847, 47.2001491986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1353, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6335380628, 47.6490423139 ], [ -122.6555581763, 47.650535837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1354, "RouteIdentifier": "501COVANCVR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738336898, 45.6318598942 ], [ -122.6726646061, 45.6318665894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1355, "RouteIdentifier": "730", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9122848657, 46.0569707003 ], [ -118.9099471422, 46.0583086547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1356, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4742083499, 46.700892472 ], [ -120.4658299611, 46.7110974278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1357, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3776962209, 47.7986124147 ], [ -122.3736956575, 47.7951965131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1358, "RouteIdentifier": "538", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2961576193, 48.435565171 ], [ -122.2918401179, 48.4355506598 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1359, "RouteIdentifier": "405", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885119703, 47.6116238629 ], [ -122.188529648, 47.6167655089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1360, "RouteIdentifier": "310", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6533156313, 47.5673798823 ], [ -122.6532972455, 47.5655345715 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1361, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9165979703, 46.1447449432 ], [ -122.9162646971, 46.1456053501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1362, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0285168926, 46.3059630059 ], [ -120.0130934852, 46.3059829046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1363, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3205534208, 48.891030585 ], [ -122.3207228659, 48.9128299651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1364, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0389832338, 46.2269143007 ], [ -119.0271462337, 46.2187179874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1365, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5282531262, 46.6540390188 ], [ -120.5271133231, 46.6559435532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1366, "RouteIdentifier": "164", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1182659294, 47.2502870454 ], [ -122.1121601288, 47.2429315526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1367, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7937991559, 47.4331327858 ], [ -117.7834183624, 47.4410207892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1368, "RouteIdentifier": "005", "AADT": 189000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939939147, 47.3262355559 ], [ -122.2926147175, 47.3445454758 ], [ -122.2958194243, 47.3530329299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1369, "RouteIdentifier": "302", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6208507752, 47.3727205294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1370, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104239582, 47.7407128065 ], [ -117.4070872362, 47.7441952253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1371, "RouteIdentifier": "097", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3995222327, 48.7939812329 ], [ -119.4010786247, 48.8149632644 ], [ -119.4098917758, 48.8417212767 ], [ -119.4075491533, 48.8590815563 ], [ -119.4237602533, 48.8850520385 ], [ -119.4267945588, 48.8988015987 ], [ -119.420443464, 48.9195242197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1372, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6214626929, 46.3469762238 ], [ -123.6093516169, 46.3560125261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1373, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030769375, 46.2842542837 ], [ -122.9017000705, 46.2852760142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1374, "RouteIdentifier": "099", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446706564, 47.9041485453 ], [ -122.24100502, 47.9048928592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1375, "RouteIdentifier": "005", "AADT": 243000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3192746176, 47.5777213746 ], [ -122.3189900834, 47.5793697605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1376, "RouteIdentifier": "534", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3326182621, 48.3411594036 ], [ -122.3223136019, 48.340974526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1377, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2175661581, 47.8496908765 ], [ -122.2180791238, 47.8520936404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1378, "RouteIdentifier": "202", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0626914872, 47.6565133547 ], [ -122.0246598026, 47.644263262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1379, "RouteIdentifier": "096", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2111007099, 47.8781842656 ], [ -122.2064495037, 47.8781807663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1380, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6038968536, 47.6429304571 ], [ -117.5930897565, 47.6429188126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1381, "RouteIdentifier": "005", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6883954382, 45.8215294532 ], [ -122.6994969166, 45.8454016677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1382, "RouteIdentifier": "503", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5142285605, 45.8854969434 ], [ -122.5141163677, 45.8882670084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1383, "RouteIdentifier": "906", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4127871024, 47.4225424219 ], [ -121.4125086133, 47.4188575024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1384, "RouteIdentifier": "092", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0670005531, 48.0311344173 ], [ -122.0515149974, 48.0347413646 ], [ -122.0154120928, 48.0674017673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1385, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8610659653, 46.0478652505 ], [ -122.8677373906, 46.0662316544 ], [ -122.8667316652, 46.0815539497 ], [ -122.8766472391, 46.1027391181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1386, "RouteIdentifier": "513", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.298324518, 47.6610600414 ], [ -122.2923848001, 47.661192848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1387, "RouteIdentifier": "504", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7288442607, 46.3273755528 ], [ -122.7096040658, 46.3413062589 ], [ -122.705966832, 46.3506258111 ], [ -122.6957643354, 46.3590260443 ], [ -122.6794982425, 46.3616185155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1388, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1260566825, 47.8338193781 ], [ -122.1240043387, 47.8375143859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1389, "RouteIdentifier": "025", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0449313771, 48.7513776852 ], [ -118.0341098319, 48.763627811 ], [ -118.0029204082, 48.7817155245 ], [ -117.9984594154, 48.7930237893 ], [ -118.0035439323, 48.8008410224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1390, "RouteIdentifier": "213", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7049060391, 48.2782037899 ], [ -119.7060084758, 48.282630412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1391, "RouteIdentifier": "161", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004841678, 46.8873929159 ], [ -122.2956838746, 46.9101470708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1392, "RouteIdentifier": "163", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159443381, 47.2599591042 ], [ -122.5158542466, 47.265516627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1393, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4605875174, 47.7154071362 ], [ -117.4755009726, 47.7154054601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1394, "RouteIdentifier": "106", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9487451622, 47.3816100186 ], [ -122.9147576786, 47.3880434547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1395, "RouteIdentifier": "291", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5973616913, 47.8288659688 ], [ -117.6086838618, 47.8395393993 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1396, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938851325, 47.1496369098 ], [ -119.2942188172, 47.1497279489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1397, "RouteIdentifier": "096", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1696161125, 47.8778286457 ], [ -122.1659527236, 47.8777990754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1398, "RouteIdentifier": "397", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0802022582, 46.218655692 ], [ -119.0767280097, 46.2265908318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1399, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.632862566, 47.5657555269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1400, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0037700013, 46.3053205372 ], [ -117.9916818783, 46.3128548734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1401, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0447131335, 46.331198202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1402, "RouteIdentifier": "103", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0311381455, 46.5464572368 ], [ -124.0345305238, 46.549222742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1403, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2905265819, 47.6724838661 ], [ -117.2740595055, 47.6747650499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1404, "RouteIdentifier": "527", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2068183241, 47.898121112 ], [ -122.2070072355, 47.9049606299 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1405, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2819653483, 47.864172748 ], [ -122.2804789478, 47.865772013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1406, "RouteIdentifier": "197", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1493385256, 45.627246477 ], [ -121.1535252294, 45.6362913178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1407, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8878973615, 46.2290248549 ], [ -122.8855586956, 46.2431363274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1408, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2916134708, 47.299067816 ], [ -121.2855990411, 47.2943430614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1409, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7300920583, 45.9194293595 ], [ -122.7339030885, 45.9187733832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1410, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0795201794, 46.2322979284 ], [ -119.0800536366, 46.2333845599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1411, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393673303, 47.0263156043 ], [ -119.865717202, 47.0813852641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1412, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5851724439, 47.0928828595 ], [ -117.5970369922, 47.0955432506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1413, "RouteIdentifier": "395", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.205892243, 48.8650299972 ], [ -118.214404576, 48.874449448 ], [ -118.2191997319, 48.8911689414 ], [ -118.2184898942, 48.8962055128 ], [ -118.2049135992, 48.9088799037 ], [ -118.2224810046, 48.9373411065 ], [ -118.2141004482, 48.9565497623 ], [ -118.2231937044, 48.9714536855 ], [ -118.2244399208, 48.9981157805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1414, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0565323603, 47.1958256105 ], [ -121.0467690066, 47.1906721316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1415, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159983682, 47.4737702544 ], [ -122.2162633519, 47.4784706076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1416, "RouteIdentifier": "174", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0016246215, 47.9560020349 ], [ -119.0023772267, 47.9485330892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1417, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433824839, 46.311738539 ], [ -124.0446066182, 46.3179898662 ], [ -124.0547726708, 46.3234251581 ], [ -124.0549477321, 46.3302467729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1418, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2341478641, 46.3874544653 ], [ -120.2006801889, 46.3575732877 ], [ -120.182959056, 46.3492095996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1419, "RouteIdentifier": "002", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4110973876, 47.6862388811 ], [ -117.4111019043, 47.687150654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1420, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5826104882, 47.642912863 ], [ -117.5772145701, 47.6429329048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1421, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6439469399, 47.5027845218 ], [ -122.6342473786, 47.5049271741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1422, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1475130648, 47.3390747692 ], [ -122.1437673624, 47.3450660019 ], [ -122.1282072982, 47.3535748936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1423, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6508855836, 47.5374447335 ], [ -122.6378486297, 47.5421872915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1424, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4958895454, 48.7835005491 ], [ -122.4978200864, 48.7835877334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1425, "RouteIdentifier": "270", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.181854755, 46.7297051348 ], [ -117.1825112217, 46.7290233594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1426, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646334439, 47.5135895893 ], [ -117.5670476974, 47.526881555 ], [ -117.5936292327, 47.5547380914 ], [ -117.5941205276, 47.5625995288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1427, "RouteIdentifier": "102", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1595614502, 47.2522250859 ], [ -123.1457654709, 47.2521210376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1428, "RouteIdentifier": "171", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3035133121, 47.1100072069 ], [ -119.2942457468, 47.1191324392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1429, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6158073359, 48.5126368227 ], [ -122.6361324861, 48.5127555405 ], [ -122.6579787417, 48.5069926006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1430, "RouteIdentifier": "101", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6689386318, 48.0733486098 ], [ -123.598965558, 48.0638062914 ], [ -123.5830787762, 48.0658416901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1431, "RouteIdentifier": "524", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2871149715, 47.8209339215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1432, "RouteIdentifier": "112", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7462246084, 48.1373562819 ], [ -123.7455869752, 48.1372852387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1433, "RouteIdentifier": "117", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4626535561, 48.1066210145 ], [ -123.4625406534, 48.1078996274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1434, "RouteIdentifier": "291", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6685724818, 47.8943422934 ], [ -117.6861862014, 47.8907180121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1435, "RouteIdentifier": "097", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4410919266, 48.7031509182 ], [ -119.4398134853, 48.7045718994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1436, "RouteIdentifier": "164", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920375216, 47.2883683977 ], [ -122.1779414139, 47.2881307235 ], [ -122.1548282244, 47.2749677214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1437, "RouteIdentifier": "097AR", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9500747094, 47.8613131638 ], [ -119.930668758, 47.8631043834 ], [ -119.9204424478, 47.8725821754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1438, "RouteIdentifier": "195", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3241499511, 46.9733140337 ], [ -117.3499111171, 46.9874191495 ], [ -117.354064457, 47.0058824451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1439, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.3964616362, 48.6672895858 ], [ -117.3713854649, 48.6388347877 ], [ -117.3629222732, 48.6033481158 ], [ -117.3526555573, 48.5904367859 ], [ -117.3546444992, 48.5669664902 ], [ -117.3455588826, 48.5553675301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1440, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510483527, 47.7829431864 ], [ -122.3487077695, 47.7814262958 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1441, "RouteIdentifier": "028", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6953209574, 47.3333178275 ], [ -118.69367346, 47.3333652583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1442, "RouteIdentifier": "290", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0476765238, 47.7333586658 ], [ -117.0419553671, 47.7358000914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1443, "RouteIdentifier": "161", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2654432539, 46.8668033464 ], [ -122.2654507751, 46.8691413663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1444, "RouteIdentifier": "516", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0536764297, 47.3579952591 ], [ -122.0435504851, 47.3579738218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1445, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7096706618, 47.4632751617 ], [ -121.696592014, 47.4467696564 ], [ -121.6749565537, 47.443251501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1446, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370291084, 47.7323152241 ], [ -122.6370754284, 47.7334671319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1447, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1250572733, 47.4302399209 ], [ -123.1403335938, 47.4070557775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1448, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7624088379, 47.1468189921 ], [ -119.7380298017, 47.1620255285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1449, "RouteIdentifier": "097AR", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0239885328, 47.836037193 ], [ -120.0148836023, 47.8388580147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1450, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3642787688, 47.8215067044 ], [ -122.3617083091, 47.8214854076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1451, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.363905077, 48.6441332225 ], [ -122.3678919314, 48.6545170814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1452, "RouteIdentifier": "903", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9809250496, 47.2078375727 ], [ -120.9825252207, 47.2092344825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1453, "RouteIdentifier": "501", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6738387769, 45.6325598997 ], [ -122.6770752412, 45.6327721391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1454, "RouteIdentifier": "101", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8110700669, 46.9732623777 ], [ -123.8132785951, 46.9750588263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1455, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9356420479, 47.5224107728 ], [ -121.9034935566, 47.5065417758 ], [ -121.8899669956, 47.507262303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1456, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1693615258, 46.2688128518 ], [ -118.1599270282, 46.2701832514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1457, "RouteIdentifier": "020", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1210178754, 48.3612124716 ], [ -120.1178922765, 48.3599953038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1458, "RouteIdentifier": "090", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1794448564, 47.6657680173 ], [ -117.1433040389, 47.6655064295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1459, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6850723397, 47.5270485575 ], [ -122.6680239887, 47.5318789785 ], [ -122.6620910392, 47.5392820916 ], [ -122.6508855836, 47.5374447335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1460, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8910176347, 46.421545267 ], [ -122.8889879118, 46.4359167363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1461, "RouteIdentifier": "018", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2986045804, 47.2906745073 ], [ -122.2844861848, 47.2982208758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1462, "RouteIdentifier": "261", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0654021951, 46.5056331844 ], [ -118.109757182, 46.5129212108 ], [ -118.1404188433, 46.5276658723 ], [ -118.1547520035, 46.5394792517 ], [ -118.1780336772, 46.5472938895 ], [ -118.1787324832, 46.5582109589 ], [ -118.2175509794, 46.5840153341 ], [ -118.2223022809, 46.5981111151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1463, "RouteIdentifier": "503", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7226222255, 45.9280008842 ], [ -122.7255915614, 45.9205289409 ], [ -122.7300920583, 45.9194293595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1464, "RouteIdentifier": "097", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3331696319, 46.3769677074 ], [ -120.3597576147, 46.3905484679 ], [ -120.3933744977, 46.4150549766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1465, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.907079956, 47.0085282131 ], [ -122.9060034469, 47.0215459655 ], [ -122.8983905827, 47.0254310319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1466, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6251575619, 46.6007463777 ], [ -123.6187441805, 46.5926082182 ], [ -123.6185028529, 46.5642568928 ], [ -123.6111780751, 46.555555809 ], [ -123.6035760875, 46.5548361522 ], [ -123.5879273803, 46.5630859685 ], [ -123.5746576675, 46.5626246259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1467, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6752481496, 47.5885745711 ], [ -120.67150803, 47.5902637122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1468, "RouteIdentifier": "508", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8891124761, 46.5836691379 ], [ -122.8857507292, 46.5838092047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1469, "RouteIdentifier": "025", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7787592741, 48.9171693044 ], [ -117.7772882632, 48.9177594411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1470, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9615435138, 47.60154051 ], [ -121.9532472828, 47.5883720957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1471, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1147445638, 47.9546186275 ], [ -122.1063789003, 47.9520311616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1472, "RouteIdentifier": "101", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7293771219, 46.6866295208 ], [ -123.7300519299, 46.6888584117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1473, "RouteIdentifier": "082", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5176792513, 46.6312271302 ], [ -120.5135770418, 46.6284896582 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1474, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.884585692, 47.504313222 ], [ -121.883903298, 47.5075662681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1475, "RouteIdentifier": "270", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1825112217, 46.7290233594 ], [ -117.1800952459, 46.7289180943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1476, "RouteIdentifier": "097AR", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3051164258, 47.5266969435 ], [ -120.2930920819, 47.5434095413 ], [ -120.262078237, 47.5688721141 ], [ -120.2491764405, 47.5869624313 ], [ -120.2392421914, 47.6211257043 ], [ -120.2414203985, 47.6309835125 ], [ -120.2282667897, 47.6502596506 ], [ -120.2245455295, 47.6632648417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1477, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8981135123, 47.5712733617 ], [ -121.8880335642, 47.567584502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1478, "RouteIdentifier": "532", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3792847178, 48.2409791825 ], [ -122.3706721348, 48.2410706967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1479, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0858231048, 46.1966150682 ], [ -119.0933468628, 46.1991336316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1480, "RouteIdentifier": "971", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1525821693, 47.8602012466 ], [ -120.114481517, 47.8477254195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1481, "RouteIdentifier": "261", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9716062284, 46.5097445742 ], [ -117.977840654, 46.5125790079 ], [ -118.0295588988, 46.5029503931 ], [ -118.050008143, 46.5072926137 ], [ -118.0654021951, 46.5056331844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1482, "RouteIdentifier": "307", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6399785669, 47.7561660923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1483, "RouteIdentifier": "160", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5947129537, 47.504905792 ], [ -122.5927942323, 47.5049278803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1484, "RouteIdentifier": "165", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0528218155, 47.1410552733 ], [ -122.036341396, 47.1564220776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1485, "RouteIdentifier": "195", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2043379911, 46.7058457651 ], [ -117.2035165481, 46.708001321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1486, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4773490149, 47.9428804513 ], [ -117.4815523866, 47.9470052096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1487, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1413008619, 47.4050125018 ], [ -123.1477743844, 47.3845206777 ], [ -123.159376622, 47.3704053086 ], [ -123.1611162657, 47.3406418157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1488, "RouteIdentifier": "530", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5551539066, 48.3113332029 ], [ -121.5543923163, 48.3214625286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1489, "RouteIdentifier": "395", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8191660399, 48.3201502053 ], [ -117.8266708398, 48.3271469455 ], [ -117.8339867358, 48.3531223429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1490, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3298290597, 47.7041346347 ], [ -122.3299521063, 47.7048820072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1491, "RouteIdentifier": "164", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1548282244, 47.2749677214 ], [ -122.1526290082, 47.2744486003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1492, "RouteIdentifier": "302", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8415602841, 47.410924864 ], [ -122.8383635311, 47.4109223756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1493, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854821185, 47.9460570961 ], [ -124.3854576502, 47.9480859363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1494, "RouteIdentifier": "101", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1611162657, 47.3406418157 ], [ -123.1613235363, 47.333867098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1495, "RouteIdentifier": "106", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8605402927, 47.4233280775 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1496, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0279928055, 47.3596803479 ], [ -122.0209265407, 47.3613941171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1497, "RouteIdentifier": "125", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3752602576, 46.1297165624 ], [ -118.3726222715, 46.147436197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1498, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525923868, 45.6672693746 ], [ -122.5525552477, 45.6778313417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1499, "RouteIdentifier": "395", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1371263893, 46.2216194455 ], [ -119.134005824, 46.2288412929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1500, "RouteIdentifier": "011", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3482490253, 48.4942122629 ], [ -122.3773305642, 48.5155613349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1501, "RouteIdentifier": "141", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5095189303, 45.8498089062 ], [ -121.5108648914, 45.8655058663 ], [ -121.5212328319, 45.8847480557 ], [ -121.4996741979, 45.915317054 ], [ -121.489450713, 45.9608115296 ], [ -121.4935352823, 45.9684352892 ], [ -121.5252103086, 45.9957998151 ], [ -121.5337335651, 45.9984030688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1502, "RouteIdentifier": "097", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7944730895, 48.0983151568 ], [ -119.7901966083, 48.1001446551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1503, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.602890707, 48.4457098369 ], [ -122.5823712081, 48.4544018047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1504, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7996236578, 48.0504853323 ], [ -122.8155297756, 48.0684125491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1505, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6641643838, 45.6564855831 ], [ -122.6669203097, 45.6632919305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1506, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329127007, 47.5903078499 ], [ -122.3341920495, 47.5902797808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1507, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454920241, 47.7526354194 ], [ -122.345920634, 47.7708341637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1508, "RouteIdentifier": "021", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6738118915, 48.6504316995 ], [ -118.6706352632, 48.6541388326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1509, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2287970334, 46.322331888 ], [ -120.1173782267, 46.2487258708 ], [ -120.0419262876, 46.2219914931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1510, "RouteIdentifier": "263", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5843966097, 46.5334326776 ], [ -118.5651606624, 46.537428166 ], [ -118.534825247, 46.5721567274 ], [ -118.5611540342, 46.6273261384 ], [ -118.5568485792, 46.6355163281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1511, "RouteIdentifier": "503SPCOUGAR", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2464336415, 46.0556053087 ], [ -122.2456091349, 46.0556807198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1512, "RouteIdentifier": "547", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2628122677, 48.9927495948 ], [ -122.2650050712, 48.9927318071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1513, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.54734221, 46.794839539 ], [ -118.4839534054, 46.7954711602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1514, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.269198387, 48.4967354264 ], [ -122.2527825057, 48.5028862443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1515, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0562083367, 48.7288096268 ], [ -121.0248123581, 48.7241331 ], [ -120.9683186319, 48.7052249613 ], [ -120.9191199125, 48.7058888906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1516, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7880909112, 46.967896691 ], [ -123.801005869, 46.9715394508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1517, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126265866, 48.4934511275 ], [ -122.6128336455, 48.4963987197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1518, "RouteIdentifier": "292", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6377513794, 48.0630093485 ], [ -117.6367704982, 48.0627193371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1519, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9545771246, 48.0754505177 ], [ -123.9167844502, 48.067797845 ], [ -123.8588524092, 48.0494599267 ], [ -123.8267789051, 48.0522912919 ], [ -123.8076778624, 48.0488636487 ], [ -123.7799058231, 48.0601192625 ], [ -123.7697626403, 48.0758388116 ], [ -123.7358376193, 48.0813231124 ], [ -123.7306682808, 48.0861363728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1520, "RouteIdentifier": "205", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.56552133, 45.6483088559 ], [ -122.5794120249, 45.6676715094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1521, "RouteIdentifier": "509", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3759701159, 47.2469906191 ], [ -122.3730388085, 47.247348751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1522, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.862512719, 47.0861911278 ], [ -119.8628433861, 47.0896867872 ], [ -119.8540034289, 47.093700135 ], [ -119.8535479607, 47.1032529839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1523, "RouteIdentifier": "105", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0803644861, 46.7452804885 ], [ -124.0824521881, 46.7544029188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1524, "RouteIdentifier": "397", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0609392727, 46.1762466146 ], [ -119.0745599425, 46.1865269366 ], [ -119.077331005, 46.1940733709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1525, "RouteIdentifier": "300", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881649692, 47.4305793587 ], [ -122.8763595467, 47.4318329878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1526, "RouteIdentifier": "104", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.497295586, 47.7975770117 ], [ -122.4968769556, 47.7970409839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1527, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1688952325, 47.7523661354 ], [ -122.1611915713, 47.7452096371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1528, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5666738127, 47.2998586553 ], [ -119.561131671, 47.3075520766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1529, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1445158196, 48.2276178924 ], [ -117.1147080098, 48.2225207152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1530, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929937518, 47.1566288415 ], [ -122.2940695704, 47.1604934513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1531, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2714942577, 47.3774662501 ], [ -122.24684628, 47.3779642912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1532, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617016336, 45.7795054863 ], [ -122.6565486135, 45.7796107255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1533, "RouteIdentifier": "290", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3949918933, 47.6575846328 ], [ -117.3965543236, 47.6618427629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1534, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2016705042, 47.7214958149 ], [ -120.1970669834, 47.7355209682 ], [ -120.1884165074, 47.7450718323 ], [ -120.1489577681, 47.7627227749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1535, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2838095032, 47.7600084566 ], [ -122.2805998666, 47.756565837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1536, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4004187802, 46.4742779497 ], [ -120.3873706387, 46.4670041855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1537, "RouteIdentifier": "101", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7547734432, 46.6823312222 ], [ -123.7457821436, 46.6828253187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1538, "RouteIdentifier": "904", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646472962, 47.5079585085 ], [ -117.5646334439, 47.5135895893 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1539, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7595545426, 47.1034506094 ], [ -119.5588936409, 47.1038824628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1540, "RouteIdentifier": "005", "AADT": 160000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3147914885, 47.7977880413 ], [ -122.3109574982, 47.8036768463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1541, "RouteIdentifier": "397", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0162894195, 46.1394401375 ], [ -119.0136095347, 46.1478903111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1542, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7975638125, 46.2245562959 ], [ -119.7793761782, 46.2212051746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1543, "RouteIdentifier": "096", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485845591, 47.8886416262 ], [ -122.144284589, 47.8911732556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1544, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2576809614, 47.4624296733 ], [ -122.2538113908, 47.4617511143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1545, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511977801, 48.3765935554 ], [ -122.6469511117, 48.3911357861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1546, "RouteIdentifier": "002", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899748205, 47.6377977945 ], [ -117.4834194345, 47.6349163355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1547, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694634271, 48.2806289911 ], [ -122.6686935469, 48.2839223474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1548, "RouteIdentifier": "028", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2883400594, 47.3993847963 ], [ -120.2863393433, 47.3982856502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1549, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.297844387, 47.7338069071 ], [ -122.2965384457, 47.7337970814 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1550, "RouteIdentifier": "101", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.095106414, 47.1429892693 ], [ -123.0963235193, 47.1342723946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1551, "RouteIdentifier": "410", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.984252857, 47.1994620806 ], [ -121.9813954636, 47.1994152348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1552, "RouteIdentifier": "395", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0728624554, 48.6070846621 ], [ -118.0754032266, 48.6062200924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1553, "RouteIdentifier": "129", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455562905, 46.4072575118 ], [ -117.0455667913, 46.4144864199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1554, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0442946621, 46.4199328277 ], [ -117.0418858195, 46.4199930726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1555, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7811517034, 48.1041817295 ], [ -119.7756848413, 48.1086426578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1556, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9203722024, 48.5548430412 ], [ -117.9251619366, 48.557993926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1557, "RouteIdentifier": "505", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8974973541, 46.4793963978 ], [ -122.881749481, 46.4752593869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1558, "RouteIdentifier": "005", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3632090748, 47.2405896685 ], [ -122.3444902745, 47.2410622326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1559, "RouteIdentifier": "012", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1502609571, 46.1420400459 ], [ -118.1326510755, 46.1574552913 ], [ -118.1306968579, 46.1654154745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1560, "RouteIdentifier": "411", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.916599885, 46.2057419837 ], [ -122.909567729, 46.2331832879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1561, "RouteIdentifier": "105SPWESTPT", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042063039, 46.8868591474 ], [ -124.1042307641, 46.8878717782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1562, "RouteIdentifier": "097", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.420443464, 48.9195242197 ], [ -119.4341632669, 48.9323868359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1563, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3857593028, 47.9408546394 ], [ -124.3855106235, 47.9441729563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1564, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9380954914, 46.1457035998 ], [ -118.9357957557, 46.1384811775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1565, "RouteIdentifier": "305", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5615375286, 47.710001753 ], [ -122.5707855947, 47.7139681507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1566, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3232041563, 47.5929897168 ], [ -122.3156584943, 47.5948454186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1567, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764136146, 46.7968582865 ], [ -119.1766968441, 46.8046382853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1568, "RouteIdentifier": "195", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3643429172, 46.8885261173 ], [ -117.3642482346, 46.8895898765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1569, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2731333424, 47.5407820544 ], [ -124.287584452, 47.5365770819 ], [ -124.3198478847, 47.5165241792 ], [ -124.3334309825, 47.5191415285 ], [ -124.3376247694, 47.5271647394 ], [ -124.3334713323, 47.5382230035 ], [ -124.3564280609, 47.5540059408 ], [ -124.3744668125, 47.6129385181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1570, "RouteIdentifier": "405", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2408435002, 47.4652569769 ], [ -122.2191991764, 47.4676990124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1571, "RouteIdentifier": "501", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6873276483, 45.815867042 ], [ -122.6854710172, 45.8159186028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1572, "RouteIdentifier": "018", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282072982, 47.3535748936 ], [ -122.1105727106, 47.3639441595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1573, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.124063025, 47.2160253363 ], [ -121.0565323603, 47.1958256105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1574, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5792543891, 45.780262944 ], [ -122.5632686852, 45.7805094295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1575, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3446807868, 47.6717289639 ], [ -117.3419659665, 47.6723961843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1576, "RouteIdentifier": "395", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.856430317, 46.646165675 ], [ -118.8505614694, 46.6606108889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1577, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6295211986, 48.3202909794 ], [ -122.6286423009, 48.325690041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1578, "RouteIdentifier": "002", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5798641373, 47.8122645365 ], [ -121.570503455, 47.8132799743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1579, "RouteIdentifier": "512", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4600900511, 47.1585657847 ], [ -122.4440605013, 47.158268456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1580, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931688795, 47.8504172566 ], [ -122.2875761547, 47.8581507051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1581, "RouteIdentifier": "529SPEVERET", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1895522829, 47.9817536396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1582, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526476236, 47.8049830492 ], [ -122.1434306209, 47.804831104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1583, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9067208674, 46.2922496265 ], [ -122.9144562174, 46.3202165297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1584, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1949845235, 47.5021417776 ], [ -122.1871847394, 47.5018573254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1585, "RouteIdentifier": "009", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1299980522, 48.2057570202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1586, "RouteIdentifier": "202", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8714099605, 47.5666180383 ], [ -121.8655443332, 47.5625960148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1587, "RouteIdentifier": "006", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6823651856, 46.6537194229 ], [ -123.6623988407, 46.6469519661 ], [ -123.6542600354, 46.633500722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1588, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002077406, 47.1262326925 ], [ -123.102377983, 47.1126716861 ], [ -123.09520306, 47.1066616235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1589, "RouteIdentifier": "539", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4851566888, 48.9933456178 ], [ -122.48508877, 49.0005739703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1590, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4746332727, 47.3939164723 ], [ -121.4469739493, 47.3982243324 ], [ -121.4312142261, 47.4244614737 ], [ -121.4223417195, 47.4282688783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1591, "RouteIdentifier": "014", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266798027, 45.6184887446 ], [ -122.5989397766, 45.6129740168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1592, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1943284707, 47.8116126602 ], [ -122.1921188204, 47.8129694111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1593, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001156286, 47.9185854039 ], [ -122.3001742723, 47.9219962025 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1594, "RouteIdentifier": "304", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329293436, 47.5650333624 ], [ -122.6304436393, 47.5650259077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1595, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111371057, 47.6944973222 ], [ -117.4111387601, 47.6953642106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1596, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6392561156, 47.8677305236 ], [ -122.6090544172, 47.8521256366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1597, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495866356, 47.9814746809 ], [ -117.3496454526, 48.0068914762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1598, "RouteIdentifier": "116", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.745826823, 48.0252187014 ], [ -122.7437352957, 48.0253259826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1599, "RouteIdentifier": "169", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1255239767, 47.4635158088 ], [ -122.1376219385, 47.4652954001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1600, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4174728874, 48.7462831433 ], [ -117.4146881423, 48.7566267665 ], [ -117.402437726, 48.7676671259 ], [ -117.4076382091, 48.7764590477 ], [ -117.4220851353, 48.7827080731 ], [ -117.4232350107, 48.7883712057 ], [ -117.3946339612, 48.8268190888 ], [ -117.3880478769, 48.8570115349 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1601, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8236282381, 45.6963748835 ], [ -120.8245348679, 45.6980196603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1602, "RouteIdentifier": "174", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7238512322, 47.772533091 ], [ -118.7225935085, 47.7708524695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1603, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8293478123, 47.1355148253 ], [ -117.8293869076, 47.1408764113 ], [ -117.8448910097, 47.1542913283 ], [ -117.8710413696, 47.1578138772 ], [ -117.8713875973, 47.1878396227 ], [ -117.8903636196, 47.2092221227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1604, "RouteIdentifier": "019", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7936594895, 48.0437626987 ], [ -122.7996236578, 48.0504853323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1605, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.938151187, 46.4911316118 ], [ -122.9303377584, 46.4915532327 ], [ -122.9103335991, 46.482928058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1606, "RouteIdentifier": "026", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4960377839, 46.8670870363 ], [ -119.4753373648, 46.862537997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1607, "RouteIdentifier": "099", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3347023936, 47.5375284994 ], [ -122.3347269484, 47.5378318312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1608, "RouteIdentifier": "129", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0560803608, 46.3250305409 ], [ -117.0639679546, 46.3288210403 ], [ -117.0533201894, 46.3352565084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1609, "RouteIdentifier": "506", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9698911237, 46.4019382554 ], [ -122.9615212742, 46.401988221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1610, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455667913, 46.4144864199 ], [ -117.0451921636, 46.416527455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1611, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393652388, 47.5748709959 ], [ -122.3363467181, 47.5916540334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1612, "RouteIdentifier": "101", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7062185932, 46.8779876268 ], [ -123.7095800286, 46.8824221446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1613, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4668950282, 46.295217675 ], [ -123.4651180339, 46.2822112261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1614, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1823923289, 46.7153301884 ], [ -117.184576053, 46.7209092456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1615, "RouteIdentifier": "024", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3613918472, 46.5494638956 ], [ -120.335129764, 46.5487710681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1616, "RouteIdentifier": "195", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3647146566, 46.8810185511 ], [ -117.3643429172, 46.8885261173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1617, "RouteIdentifier": "101", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7695997378, 46.9546351666 ], [ -123.7703914682, 46.9553073045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1618, "RouteIdentifier": "162", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024622981, 47.0953255419 ], [ -122.1877595188, 47.0819384727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1619, "RouteIdentifier": "102", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1986940231, 47.2401706315 ], [ -123.1912428882, 47.2429358128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1620, "RouteIdentifier": "142", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0976103078, 45.8260671911 ], [ -121.0775669185, 45.8369135892 ], [ -121.0642894236, 45.8376125847 ], [ -121.0608960245, 45.8431779335 ], [ -121.0440024936, 45.8433714611 ], [ -121.042019508, 45.8485283308 ], [ -121.0374313104, 45.8410607376 ], [ -121.0154166753, 45.8413818742 ], [ -121.0043878428, 45.8462946752 ], [ -121.0038482918, 45.8572379269 ], [ -120.9972196495, 45.8575744394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1621, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2339586384, 48.510507948 ], [ -122.2323979204, 48.5104945464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1622, "RouteIdentifier": "016", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174730359, 47.3653428749 ], [ -122.6177931336, 47.3660514733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1623, "RouteIdentifier": "104COKNGSTN", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4964887302, 47.7981317254 ], [ -122.4975542478, 47.7988312911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1624, "RouteIdentifier": "014", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8236282381, 45.6963748835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1625, "RouteIdentifier": "823", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304207056, 46.6430874404 ], [ -120.5304211479, 46.6486735819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1626, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6370754284, 47.7334671319 ], [ -122.6377776889, 47.7367740872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1627, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873059636, 46.0008733795 ], [ -118.3895048351, 46.0116896783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1628, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2217410927, 46.8391963722 ], [ -123.1863524437, 46.8303419645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1629, "RouteIdentifier": "021", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5710608079, 46.9700238316 ], [ -118.5888210566, 46.9701558628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1630, "RouteIdentifier": "002", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8131962319, 47.6126343481 ], [ -119.755706339, 47.6121641933 ], [ -119.7378232275, 47.6051578842 ], [ -119.7207218172, 47.5911027894 ], [ -119.6946295812, 47.5841828284 ], [ -119.6697674526, 47.5997916763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1631, "RouteIdentifier": "516", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2430570827, 47.378057579 ], [ -122.2373624055, 47.3779147052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1632, "RouteIdentifier": "524", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3617083091, 47.8214854076 ], [ -122.3518259847, 47.821404826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1633, "RouteIdentifier": "520", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1932937046, 47.6371487563 ], [ -122.1881596197, 47.6322979443 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1634, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3155342499, 47.1016304023 ], [ -119.312911608, 47.1034589548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1635, "RouteIdentifier": "002", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1601671048, 47.6539518845 ], [ -118.1576684527, 47.6540467209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1636, "RouteIdentifier": "105SPBOONE", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023268261, 46.9706138586 ], [ -123.8023146967, 46.9715050749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1637, "RouteIdentifier": "002", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714795546, 47.648195998 ], [ -120.0714484595, 47.6491744077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1638, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3470868548, 46.0613934646 ], [ -118.3484813064, 46.0630851666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1639, "RouteIdentifier": "206", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3291013409, 47.7873237723 ], [ -117.303824325, 47.7875196843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1640, "RouteIdentifier": "405", "AADT": 146000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1981171515, 47.5215347846 ], [ -122.1976527666, 47.5284479262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1641, "RouteIdentifier": "705", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4322202216, 47.2386425935 ], [ -122.4330740998, 47.2403048183 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1642, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0984506931, 47.2150788727 ], [ -123.0827870167, 47.2167787857 ], [ -123.0541037369, 47.2368676818 ], [ -123.0463421603, 47.2472806543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1643, "RouteIdentifier": "090", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0542260413, 47.6939743273 ], [ -117.0483767272, 47.6956888561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1644, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9169607763, 46.7378528943 ], [ -119.9181387188, 46.7453195258 ], [ -119.9303833583, 46.7566116646 ], [ -119.9250609686, 46.7992595246 ], [ -119.9194676679, 46.8134191374 ], [ -119.9295645603, 46.8257316077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1645, "RouteIdentifier": "170", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0422256352, 46.9696837609 ], [ -119.0406007171, 46.9696767228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1646, "RouteIdentifier": "121", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9594136168, 46.8965445916 ], [ -122.9504462358, 46.8962553703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1647, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5901063759, 48.4885682085 ], [ -121.5827190303, 48.4888446329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1648, "RouteIdentifier": "516", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0740512207, 47.3581005334 ], [ -122.056859545, 47.3579998249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1649, "RouteIdentifier": "014", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1552091714, 45.6491568269 ], [ -121.1043883879, 45.6485914606 ], [ -121.0817415229, 45.6584905199 ], [ -121.0373692153, 45.6641740956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1650, "RouteIdentifier": "163", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.514518613, 47.3040619068 ], [ -122.5141387154, 47.305285326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1651, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947521893, 47.3943368889 ], [ -122.2966747787, 47.399436909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1652, "RouteIdentifier": "005", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3314940653, 48.4135964059 ], [ -122.3351426952, 48.421566968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1653, "RouteIdentifier": "012", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0312749766, 46.6723519543 ], [ -120.9751255601, 46.6711716406 ], [ -120.9539742197, 46.6836791847 ], [ -120.9423362381, 46.6834592118 ], [ -120.9236598936, 46.6901898346 ], [ -120.919967452, 46.6953639912 ], [ -120.9079763288, 46.6939358446 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1654, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8793107352, 46.9778455486 ], [ -123.8823509757, 46.9792200862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1655, "RouteIdentifier": "291", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4755009726, 47.7154054601 ], [ -117.4775864514, 47.7155036924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1656, "RouteIdentifier": "506", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9615212742, 46.401988221 ], [ -122.9490131702, 46.4020849219 ], [ -122.9279330238, 46.4116100688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1657, "RouteIdentifier": "005", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6701869958, 45.7753317642 ], [ -122.6742471673, 45.7884633898 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1658, "RouteIdentifier": "016", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5695221755, 47.2976027952 ], [ -122.5728475744, 47.3013604296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1659, "RouteIdentifier": "026", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6656137967, 46.8138014312 ], [ -117.6550649229, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1660, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207228659, 48.9128299651 ], [ -122.3206641784, 48.920195997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1661, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9183274849, 46.1179762286 ], [ -122.903098241, 46.1097389647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1662, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294801654, 47.0530641068 ], [ -122.2947627706, 47.0592610847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1663, "RouteIdentifier": "129", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0517810734, 46.3795878122 ], [ -117.0448176781, 46.3941409901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1664, "RouteIdentifier": "405", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1825622133, 47.6861532736 ], [ -122.1796695496, 47.6992447918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1665, "RouteIdentifier": "202", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1216151872, 47.6765956856 ], [ -122.1216193183, 47.6754410608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1666, "RouteIdentifier": "161", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3006964497, 46.8856559346 ], [ -122.3004841678, 46.8873929159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1667, "RouteIdentifier": "012", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5192085128, 46.0499502566 ], [ -118.480204124, 46.0490486428 ], [ -118.4380859373, 46.0577292113 ], [ -118.4150633113, 46.0706784483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1668, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410552917, 48.4313110136 ], [ -122.3410260439, 48.4420756317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1669, "RouteIdentifier": "194", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2536978763, 46.7208346039 ], [ -117.2226311076, 46.7258475583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1670, "RouteIdentifier": "026", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3636245159, 46.8909558494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1671, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1790908365, 48.0404147216 ], [ -122.1778352269, 48.046828316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1672, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5739759223, 47.6429386574 ], [ -117.5662058166, 47.642947503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1673, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.899165273, 46.997061728 ], [ -123.9142967877, 47.0151102563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1674, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1915989356, 48.0125732298 ], [ -122.190360403, 48.0112588295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1675, "RouteIdentifier": "014", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4949520588, 45.7249743594 ], [ -121.4899695301, 45.724018802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1676, "RouteIdentifier": "024", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3750456098, 46.5493985238 ], [ -120.3613918472, 46.5494638956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1677, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6224996657, 46.0271360717 ], [ -120.5755323972, 46.0394288913 ], [ -120.5347510985, 46.1239501497 ], [ -120.5155304936, 46.1430933666 ], [ -120.5037936831, 46.1723589628 ], [ -120.4878548002, 46.1971162847 ], [ -120.4797089864, 46.2036499179 ], [ -120.4298698764, 46.2228395437 ], [ -120.419279593, 46.2335193656 ], [ -120.4176648406, 46.2468890125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1678, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3460982766, 46.053273733 ], [ -118.3463687355, 46.0605179899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1679, "RouteIdentifier": "024", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2917105696, 46.5347459334 ], [ -120.2504477979, 46.5248889015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1680, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6692405052, 46.0403350228 ], [ -118.6587450787, 46.0394084907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1681, "RouteIdentifier": "206", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3384306266, 47.7875972066 ], [ -117.3291013409, 47.7873237723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1682, "RouteIdentifier": "016SPGORST", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6960888319, 47.5248350158 ], [ -122.6971089618, 47.524879573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1683, "RouteIdentifier": "005", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3081914375, 47.2842547986 ], [ -122.3028757982, 47.3000530138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1684, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1811585184, 47.3649772586 ], [ -122.1761180844, 47.3631667878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1685, "RouteIdentifier": "012COABERDN", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8090468875, 46.9772106863 ], [ -123.8132040823, 46.9766495807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1686, "RouteIdentifier": "006", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7307102829, 46.6823557798 ], [ -123.7094384198, 46.6776841454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1687, "RouteIdentifier": "167", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2447763261, 47.3180985045 ], [ -122.2446858124, 47.3297219858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1688, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3037605642, 47.5106094253 ], [ -122.3124883705, 47.5167348211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1689, "RouteIdentifier": "274", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0400651005, 47.2403316548 ], [ -117.0398725383, 47.2402750621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1690, "RouteIdentifier": "005", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4627470202, 47.2159591708 ], [ -122.4615526157, 47.2287362725 ], [ -122.4466273692, 47.2301579669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1691, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3248627173, 47.6754104751 ], [ -117.2827858737, 47.6810526384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1692, "RouteIdentifier": "101", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4189331528, 48.1130399131 ], [ -123.4171863107, 48.1123263385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1693, "RouteIdentifier": "016", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6245604481, 47.4752697078 ], [ -122.642332524, 47.4978831795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1694, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3035547655, 47.410929097 ], [ -120.3041069002, 47.4122978378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1695, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0453814357, 48.1774974633 ], [ -117.0441181005, 48.1780553435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1696, "RouteIdentifier": "523", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3236068716, 47.7340600888 ], [ -122.3127959962, 47.7339766531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1697, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872965039, 48.1444384712 ], [ -122.1900214152, 48.1598254833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1698, "RouteIdentifier": "290", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.361293531, 47.6674773757 ], [ -117.3594319704, 47.6686111382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1699, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5170315735, 46.5330350165 ], [ -122.4853465728, 46.5342767318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1700, "RouteIdentifier": "542", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1954842634, 48.8206495581 ], [ -122.1716283618, 48.8323550601 ], [ -122.155341196, 48.853030999 ], [ -122.1523151666, 48.8665218931 ], [ -122.1570234366, 48.8806206725 ], [ -122.1433236191, 48.9047123737 ], [ -122.1380018087, 48.9060853167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1701, "RouteIdentifier": "027", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1545590892, 47.0396761869 ], [ -117.1608612896, 47.0509546305 ], [ -117.146111612, 47.067878035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1702, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8765100174, 46.5439285548 ], [ -122.8764947699, 46.5550803084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1703, "RouteIdentifier": "243", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9295645603, 46.8257316077 ], [ -119.9387815067, 46.8353151904 ], [ -119.9378634013, 46.8432344905 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1704, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0431258874, 48.3481890608 ], [ -120.0362435031, 48.3607879462 ], [ -119.9809763065, 48.371736888 ], [ -119.9321337254, 48.3695684578 ], [ -119.9141758591, 48.3742424396 ], [ -119.8984187896, 48.3889279841 ], [ -119.8882430796, 48.3877996604 ], [ -119.8648010839, 48.3969338528 ], [ -119.8235449654, 48.3808931536 ], [ -119.784579131, 48.3798347197 ], [ -119.7497426686, 48.3660865683 ], [ -119.7287666335, 48.3671066996 ], [ -119.7065630171, 48.3627406411 ], [ -119.6993334105, 48.3467648995 ], [ -119.6680924655, 48.3230367393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1705, "RouteIdentifier": "007", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4284944729, 47.078773705 ], [ -122.4350543494, 47.0839448876 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1706, "RouteIdentifier": "108", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2689243165, 47.0679844678 ], [ -123.2525189659, 47.0789963959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1707, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1832082778, 47.2443206311 ], [ -121.1768999971, 47.2389448117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1708, "RouteIdentifier": "103", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0378003229, 46.5491873736 ], [ -124.0373317269, 46.5672415916 ], [ -124.0265521556, 46.58429985 ], [ -124.0397283027, 46.5978816985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1709, "RouteIdentifier": "109", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0440853494, 47.0525732949 ], [ -124.0505531099, 47.0566292363 ], [ -124.1082174747, 47.0560237504 ], [ -124.1531482322, 47.0433503074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1710, "RouteIdentifier": "160", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5510696792, 47.5051569339 ], [ -122.5298400174, 47.5049019302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1711, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7212000555, 48.2626191576 ], [ -119.7049060391, 48.2782037899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1712, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472598635, 45.7589462816 ], [ -122.5473330202, 45.7703035237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1713, "RouteIdentifier": "534", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3335812302, 48.341165856 ], [ -122.3326182621, 48.3411594036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1714, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2141719319, 47.6561755599 ], [ -120.1924709331, 47.6838275242 ], [ -120.1902327501, 47.6940236402 ], [ -120.1937187948, 47.6998534485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1715, "RouteIdentifier": "009", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3209191677, 48.9438094983 ], [ -122.3202363813, 48.949281296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1716, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1799369192, 47.8125762494 ], [ -122.1754150379, 47.811547043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1717, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9591582091, 46.3481677178 ], [ -123.9555447472, 46.3504543 ], [ -123.949867913, 46.3732697997 ], [ -123.9531883892, 46.3784215418 ], [ -123.9495211568, 46.3843983473 ], [ -123.951959767, 46.4025025126 ], [ -123.938858253, 46.4032384098 ], [ -123.9346445705, 46.4158252959 ], [ -123.9242989372, 46.4190929551 ], [ -123.9160104721, 46.4297961412 ], [ -123.9058517568, 46.4293200912 ], [ -123.9003658782, 46.4347974243 ], [ -123.8906810599, 46.4350146931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1718, "RouteIdentifier": "506", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9279330238, 46.4116100688 ], [ -122.9121178886, 46.4105521332 ], [ -122.8916600156, 46.4181629111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1719, "RouteIdentifier": "223", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1801941156, 46.3452788522 ], [ -120.1791144823, 46.3455191654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1720, "RouteIdentifier": "169", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9915686193, 47.2044466268 ], [ -121.9910780054, 47.2049216282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1721, "RouteIdentifier": "017", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1333443494, 46.8263220149 ], [ -119.1331872975, 46.8409896084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1722, "RouteIdentifier": "240", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282861482, 46.5773297724 ], [ -119.7248439418, 46.5683166901 ], [ -119.6902811291, 46.5463805823 ], [ -119.6790929472, 46.5263482722 ], [ -119.6634202728, 46.5132991887 ], [ -119.6166058605, 46.5023813913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1723, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322068257, 47.2826226664 ], [ -122.3178488457, 47.2898411383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1724, "RouteIdentifier": "171", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2752765933, 47.1325238534 ], [ -119.2740001981, 47.1335512955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1725, "RouteIdentifier": "005", "AADT": 241000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3214916682, 47.561289773 ], [ -122.320109391, 47.5692199392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1726, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1587898641, 46.2094963127 ], [ -119.1588364929, 46.2122195073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1727, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2804789478, 47.865772013 ], [ -122.2789804626, 47.867386825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1728, "RouteIdentifier": "395", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2029385026, 46.1652739565 ], [ -119.1975722229, 46.1692293994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1729, "RouteIdentifier": "002", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111387601, 47.6953642106 ], [ -117.4111538627, 47.7133751719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1730, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4727205134, 46.9377338042 ], [ -122.4716597285, 46.9377123473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1731, "RouteIdentifier": "542COMTBAKR", "AADT": 330 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6754402986, 48.8651910486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1732, "RouteIdentifier": "547", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1379808146, 48.9172113904 ], [ -122.1432040179, 48.9173881457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1733, "RouteIdentifier": "017", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3923586085, 47.9188641837 ], [ -119.3961715735, 47.919272726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1734, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9799410614, 46.666273563 ], [ -122.9784909888, 46.6723810975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1735, "RouteIdentifier": "167HD01440", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2522187666, 47.3034827803 ], [ -122.2536584722, 47.3012935761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1736, "RouteIdentifier": "516", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.056859545, 47.3579998249 ], [ -122.0536764297, 47.3579952591 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1737, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3533511027, 47.7851161679 ], [ -122.3510483527, 47.7829431864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1738, "RouteIdentifier": "290", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0689280259, 47.7241616056 ], [ -117.0476765238, 47.7333586658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1739, "RouteIdentifier": "109", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9062715578, 46.9810823154 ], [ -123.9083860539, 46.9811017411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1740, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5440284191, 47.00195264 ], [ -122.5400380281, 47.004608762 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1741, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.293850203, 47.2500481115 ], [ -122.2938519207, 47.2509469514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1742, "RouteIdentifier": "165", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0395446219, 47.033662887 ], [ -122.0436590305, 47.0516887209 ], [ -122.0410310566, 47.0734128335 ], [ -122.0474726563, 47.0804529811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1743, "RouteIdentifier": "260", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4122698552, 46.7012162608 ], [ -118.3441820755, 46.7361724356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1744, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9493878602, 47.6583110212 ], [ -117.9379417422, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1745, "RouteIdentifier": "014", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5624136586, 45.6062101725 ], [ -122.5274842124, 45.5979967225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1746, "RouteIdentifier": "103", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549134209, 46.3311573646 ], [ -124.0548732503, 46.3323172772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1747, "RouteIdentifier": "161", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940652218, 47.0777178732 ], [ -122.2939240773, 47.0800385113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1748, "RouteIdentifier": "104", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8137272987, 47.9229521483 ], [ -122.7947100987, 47.9175473278 ], [ -122.7581000772, 47.8945415035 ], [ -122.7396338722, 47.8911395035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1749, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446210177, 47.7050638875 ], [ -122.3447339385, 47.7065541178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1750, "RouteIdentifier": "195", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649931364, 46.8746110638 ], [ -117.3650011171, 46.8751003196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1751, "RouteIdentifier": "500", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5521517487, 45.68208727 ], [ -122.5318979045, 45.6826849971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1752, "RouteIdentifier": "504", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323106527, 46.3245338278 ], [ -122.7288442607, 46.3273755528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1753, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0340311094, 48.9278686212 ], [ -122.0227559288, 48.9270850303 ], [ -122.0075390683, 48.9193687906 ], [ -121.9849997675, 48.9008367068 ], [ -121.9450533075, 48.8896410913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1754, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7780253279, 48.1083589075 ], [ -122.7728740575, 48.109600754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1755, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3455787056, 47.7806814889 ], [ -122.3446909131, 47.7817536234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1756, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2490284682, 47.4830589416 ], [ -122.2460880266, 47.4822140792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1757, "RouteIdentifier": "203", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8868033166, 47.5690968006 ], [ -121.887427285, 47.5718451267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1758, "RouteIdentifier": "020SPANACRT", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6579787417, 48.5069926006 ], [ -122.675812415, 48.499639973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1759, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8853301763, 47.9139270916 ], [ -122.8767342334, 47.9058643793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1760, "RouteIdentifier": "167", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3420450241, 47.2135776972 ], [ -122.3138098088, 47.2044681618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1761, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3320582967, 47.6264826812 ], [ -119.2978771665, 47.6166084807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1762, "RouteIdentifier": "195", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.403113814, 47.5873771825 ], [ -117.4117450085, 47.6019773285 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1763, "RouteIdentifier": "082", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3038736838, 46.4140405564 ], [ -120.2842524512, 46.4056644379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1764, "RouteIdentifier": "165", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0470850116, 47.1062792018 ], [ -122.0554197251, 47.112433828 ], [ -122.0490317008, 47.1302879626 ], [ -122.0557206222, 47.1388187332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1765, "RouteIdentifier": "002", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9908494983, 47.8657174136 ], [ -121.9791204594, 47.8613218296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1766, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3064146166, 48.2617164172 ], [ -124.2647934958, 48.2531691393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1767, "RouteIdentifier": "025", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8412727199, 48.8719526263 ], [ -117.827799169, 48.8882487868 ], [ -117.8136926167, 48.8971177199 ], [ -117.8009917503, 48.899088371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1768, "RouteIdentifier": "528", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1836148532, 48.0518643974 ], [ -122.1822932343, 48.0518738744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1769, "RouteIdentifier": "304", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.626945866, 47.5650153276 ], [ -122.6269686691, 47.5636496207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1770, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114600933, 45.7166372424 ], [ -120.4769148344, 45.7027025383 ], [ -120.4083086691, 45.705944172 ], [ -120.3209109655, 45.7192547167 ], [ -120.2633497092, 45.7339077039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1771, "RouteIdentifier": "215", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5853439854, 48.3602159749 ], [ -119.5835757391, 48.3616001759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1772, "RouteIdentifier": "526", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2084243459, 47.9195131157 ], [ -122.2074382827, 47.9188560677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1773, "RouteIdentifier": "155", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9775744375, 48.130752286 ], [ -118.9762561497, 48.135096529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1774, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2528967959, 47.6483371933 ], [ -119.1237574553, 47.6846698514 ], [ -118.9976415411, 47.6844844298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1775, "RouteIdentifier": "010", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169944864, 47.1654459949 ], [ -120.8108589679, 47.1638387052 ], [ -120.8043961298, 47.1513524322 ], [ -120.7835732851, 47.1325177974 ], [ -120.7268634764, 47.1248477284 ], [ -120.7165569761, 47.1159003737 ], [ -120.7145912511, 47.1089655258 ], [ -120.691960834, 47.0992611593 ], [ -120.6235085123, 47.0432551254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1776, "RouteIdentifier": "530", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1170200605, 48.2084489517 ], [ -122.1043084158, 48.222137855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1777, "RouteIdentifier": "172", "AADT": 450 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6399303545, 47.813732472 ], [ -119.6380760967, 47.8121912953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1778, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4842297169, 47.3934848684 ], [ -119.4973048928, 47.4245366123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1779, "RouteIdentifier": "009", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1069288247, 48.0063280675 ], [ -122.1080928359, 48.0132540479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1780, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.217721755, 47.4720497684 ], [ -122.2159983682, 47.4737702544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1781, "RouteIdentifier": "290", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3419659665, 47.6723961843 ], [ -117.3283026635, 47.6754413596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1782, "RouteIdentifier": "003", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7132594935, 47.5239714664 ], [ -122.7066290132, 47.5247891631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1783, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1615462137, 48.7118489675 ], [ -121.1354894847, 48.7101414512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1784, "RouteIdentifier": "131", "AADT": 310 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9535543166, 46.5073208118 ], [ -121.9542721665, 46.5167411946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1785, "RouteIdentifier": "241", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9790026711, 46.3316725974 ], [ -119.9790994297, 46.3654277374 ], [ -119.970594385, 46.3753130226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1786, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0714484595, 47.6491744077 ], [ -120.0634672167, 47.6491812786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1787, "RouteIdentifier": "410", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9346988288, 47.1921997068 ], [ -121.9113034403, 47.1660060551 ], [ -121.9032240437, 47.1642334315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1788, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3627410114, 46.0415078207 ], [ -118.3464591984, 46.0510569216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1789, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0072302557, 47.1840617967 ], [ -120.9658761326, 47.1936165169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1790, "RouteIdentifier": "101", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7615325079, 46.6777404653 ], [ -123.7547734432, 46.6823312222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1791, "RouteIdentifier": "012", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2090874074, 46.5114897943 ], [ -122.1827981053, 46.5094011436 ], [ -122.1563756705, 46.5189965757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1792, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127959962, 47.7339766531 ], [ -122.3100733649, 47.7339389204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1793, "RouteIdentifier": "397", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2022670769, 46.1422545472 ], [ -119.1719528856, 46.1538172927 ], [ -119.1495477506, 46.1541704221 ], [ -119.1242140583, 46.1493404787 ], [ -119.0668149366, 46.1268888879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1794, "RouteIdentifier": "167", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2313987649, 47.3961663604 ], [ -122.2214808618, 47.4035987998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1795, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405321497, 48.0270703271 ], [ -122.7350638939, 48.0308244206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1796, "RouteIdentifier": "547", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1515895973, 48.9460909964 ], [ -122.1536154484, 48.9498823783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1797, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059518963, 45.815636231 ], [ -122.7026610905, 45.8155477016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1798, "RouteIdentifier": "206", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.303824325, 47.7875196843 ], [ -117.2582087731, 47.7876105753 ], [ -117.2290446727, 47.8020950345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1799, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6067917986, 48.4370383266 ], [ -122.60172507, 48.4418166919 ], [ -122.602890707, 48.4457098369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1800, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5414842419, 48.011987346 ], [ -122.5455047346, 48.0151911959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1801, "RouteIdentifier": "027", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1304728709, 47.2420790028 ], [ -117.132009721, 47.2741237154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1802, "RouteIdentifier": "011", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4998793264, 48.7103012557 ], [ -122.5020729469, 48.7159651259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1803, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1676525064, 46.7262385037 ], [ -117.1648061028, 46.7232723565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1804, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329647234, 47.751023302 ], [ -122.3249495062, 47.760975014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1805, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8179559351, 48.0780690922 ], [ -122.8150974014, 48.097207949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1806, "RouteIdentifier": "410", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0197980383, 47.1768730848 ], [ -122.016253916, 47.1784207654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1807, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4266731536, 45.5798853327 ], [ -122.4170054578, 45.5751977401 ], [ -122.3962982687, 45.5785567586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1808, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4017832625, 47.9345882869 ], [ -124.3857593028, 47.9408546394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1809, "RouteIdentifier": "119", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1925948411, 47.4136830468 ], [ -123.2179596822, 47.4327965248 ], [ -123.2105622712, 47.4554072848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1810, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5867415871, 47.0023957095 ], [ -120.5555025637, 46.9769598385 ], [ -120.5309634911, 46.9718013391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1811, "RouteIdentifier": "024", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764829488, 46.7754696717 ], [ -119.1764946499, 46.7820725916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1812, "RouteIdentifier": "532", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443830084, 48.2398913159 ], [ -122.3303084037, 48.2396939589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1813, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6292421446, 45.941283986 ], [ -122.6602039757, 45.9401079071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1814, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9764083197, 47.306520851 ], [ -117.9640727762, 47.3120619457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1815, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3330101537, 46.3081349737 ], [ -120.321048285, 46.3210895826 ], [ -120.3205033055, 46.3313990906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1816, "RouteIdentifier": "904", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5767646402, 47.4862221857 ], [ -117.5759657586, 47.4868903381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1817, "RouteIdentifier": "202", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1646271104, 47.7572105358 ], [ -122.1653460578, 47.754516793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1818, "RouteIdentifier": "150", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0581786213, 47.8560176572 ], [ -120.0540259825, 47.8553267629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1819, "RouteIdentifier": "005", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5294843284, 47.134748182 ], [ -122.5173391489, 47.1402583462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1820, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7774669653, 47.8678385583 ], [ -121.7488390649, 47.8671786834 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1821, "RouteIdentifier": "004", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1680910014, 46.1910275512 ], [ -123.1527181306, 46.1932619624 ], [ -123.1210814025, 46.1900650322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1822, "RouteIdentifier": "104", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2805998666, 47.756565837 ], [ -122.2764080485, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1823, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161178049, 47.7897600047 ], [ -122.3147914885, 47.7977880413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1824, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9454549934, 47.2361778754 ], [ -123.9311452495, 47.2437964738 ], [ -123.9182891747, 47.2672889111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1825, "RouteIdentifier": "018", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2563579686, 47.3028065567 ], [ -122.2443021409, 47.3027122504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1826, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3225528424, 47.434276469 ], [ -120.3206709228, 47.4319777068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1827, "RouteIdentifier": "548", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7044893922, 48.8921934089 ], [ -122.7263837289, 48.8921522797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1828, "RouteIdentifier": "405", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2615653431, 47.8313484071 ], [ -122.263270535, 47.832397759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1829, "RouteIdentifier": "211", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.2729982561, 48.1220493345 ], [ -117.3034353999, 48.1517951643 ], [ -117.3014134068, 48.1726073855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1830, "RouteIdentifier": "101COPRTANG", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4200144031, 48.1146846853 ], [ -123.4272112907, 48.1176420477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1831, "RouteIdentifier": "539", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859682883, 48.8551455389 ], [ -122.4859559588, 48.8624202184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1832, "RouteIdentifier": "005", "AADT": 181000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249495062, 47.760975014 ], [ -122.3218213184, 47.7696559418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1833, "RouteIdentifier": "005", "AADT": 159000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981579128, 47.312895011 ], [ -122.2939939147, 47.3262355559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1834, "RouteIdentifier": "002", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7130750207, 47.7604898372 ], [ -118.710341624, 47.7597380108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1835, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3725290396, 48.86403205 ], [ -117.3690791376, 48.8628154536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1836, "RouteIdentifier": "018", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1105727106, 47.3639441595 ], [ -122.0987142773, 47.3694924181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1837, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1710414458, 46.7424904094 ], [ -117.1724700156, 46.747419563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1838, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2307337316, 47.8178356076 ], [ -122.2240130735, 47.8097214635 ], [ -122.2089308735, 47.8094374485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1839, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.292877678, 47.1671440586 ], [ -118.2328452333, 47.2083784844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1840, "RouteIdentifier": "016SPGORST", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6996522214, 47.5252936288 ], [ -122.7009258111, 47.5254077892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1841, "RouteIdentifier": "500", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5527645121, 45.6654147454 ], [ -122.5525923868, 45.6672693746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1842, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4210503145, 45.9241386589 ], [ -122.3807106015, 45.9242785728 ], [ -122.3796927801, 45.9278618295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1843, "RouteIdentifier": "410", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5360884519, 46.9798263482 ], [ -121.5255219108, 46.9585895789 ], [ -121.5323324952, 46.9469316686 ], [ -121.5310753106, 46.9309435343 ], [ -121.5357945169, 46.9156045355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1844, "RouteIdentifier": "018", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9839763366, 47.4320430934 ], [ -121.9672362186, 47.4364490931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1845, "RouteIdentifier": "261", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3656317125, 47.112475028 ], [ -118.3656748512, 47.1169194581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1846, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444902745, 47.2410622326 ], [ -122.335050748, 47.2440622941 ], [ -122.3298337748, 47.2573665594 ], [ -122.3081914375, 47.2842547986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1847, "RouteIdentifier": "263", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5524895136, 46.6414946812 ], [ -118.5525255652, 46.6422285199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1848, "RouteIdentifier": "142", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2657579644, 45.7111535352 ], [ -121.2472721676, 45.7217111035 ], [ -121.244181878, 45.7277440027 ], [ -121.2298688243, 45.729292887 ], [ -121.2314235606, 45.7372612846 ], [ -121.2216216322, 45.7415590831 ], [ -121.222903344, 45.7481715948 ], [ -121.2084891518, 45.7508996878 ], [ -121.2109028554, 45.7604785601 ], [ -121.2053953573, 45.7679900328 ], [ -121.2131840999, 45.7724150705 ], [ -121.207883874, 45.779291027 ], [ -121.2055702737, 45.7925570852 ], [ -121.1946499217, 45.795047038 ], [ -121.1698278704, 45.8122766544 ], [ -121.1531193879, 45.814953813 ], [ -121.1511457837, 45.8183340264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1849, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4029149867, 46.9715198957 ], [ -120.3533610061, 46.9715486821 ], [ -120.319713102, 46.958602891 ], [ -120.2565740747, 46.9499582027 ], [ -120.2382852234, 46.9439637651 ], [ -120.1517837822, 46.9437951339 ], [ -120.1285297362, 46.9384099074 ], [ -120.0923317195, 46.9449475663 ], [ -120.0434710898, 46.9363097921 ], [ -119.9856684909, 46.9399239995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1850, "RouteIdentifier": "526", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2878185998, 47.9245144886 ], [ -122.2845197408, 47.9244871101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1851, "RouteIdentifier": "509", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3352626539, 47.4160570962 ], [ -122.335244606, 47.4239544628 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1852, "RouteIdentifier": "129", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0487379362, 46.3397717715 ], [ -117.0487788952, 46.3406500803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1853, "RouteIdentifier": "397", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0136095347, 46.1478903111 ], [ -119.0241882947, 46.1498712277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1854, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.312911608, 47.1034589548 ], [ -119.3094973132, 47.1058411746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1855, "RouteIdentifier": "027", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398468351, 47.6445327832 ], [ -117.2398564282, 47.6462120527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1856, "RouteIdentifier": "014", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6604109342, 45.7097319074 ], [ -121.6267665064, 45.7104802065 ], [ -121.60448404, 45.7208746315 ], [ -121.5608783461, 45.7230552598 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1857, "RouteIdentifier": "020", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0826339712, 48.3485688069 ], [ -120.0782317267, 48.3464626059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1858, "RouteIdentifier": "409", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3772473125, 46.1712612786 ], [ -123.3771418088, 46.1802763744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1859, "RouteIdentifier": "012", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217992709, 46.5244556466 ], [ -117.7919594302, 46.5168198788 ], [ -117.7655768761, 46.4909720703 ], [ -117.738467898, 46.4823433881 ], [ -117.7038766685, 46.4643254572 ], [ -117.6880711236, 46.4627464745 ], [ -117.6625486269, 46.4746878646 ], [ -117.6287453364, 46.4780216163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1860, "RouteIdentifier": "006", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9797708505, 46.6600221281 ], [ -122.978020353, 46.6605706614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1861, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6126173187, 48.5117929838 ], [ -122.6126146998, 48.512615782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1862, "RouteIdentifier": "007", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348569541, 47.1194809791 ], [ -122.4344162199, 47.1475294086 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1863, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.300279957, 47.9256460771 ], [ -122.3028100586, 47.9298175191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1864, "RouteIdentifier": "203", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9102593964, 47.6591206418 ], [ -121.90705395, 47.6776154772 ], [ -121.9203962911, 47.682901991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1865, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1816312316, 48.0344874481 ], [ -122.1798921353, 48.0395761426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1866, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.801473643, 45.8363142697 ], [ -120.7921120527, 45.8483754133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1867, "RouteIdentifier": "504", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5756309118, 46.3701554294 ], [ -122.5538906727, 46.3719036566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1868, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5830787762, 48.0658416901 ], [ -123.5764716685, 48.0656101736 ], [ -123.5586292146, 48.0819562696 ], [ -123.5590674702, 48.088831529 ], [ -123.542425415, 48.0963861688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1869, "RouteIdentifier": "101", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2521475758, 47.7981298006 ], [ -124.2505086155, 47.804211862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1870, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3080765164, 47.2755685609 ], [ -122.3098328416, 47.2779256038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1871, "RouteIdentifier": "410", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9658681376, 47.1991869215 ], [ -121.9637319287, 47.1991468956 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1872, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6596669668, 48.2863597414 ], [ -122.6578697003, 48.2871805041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1873, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5953819331, 48.34623453 ], [ -119.5910782183, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1874, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6031230684, 45.9389260974 ], [ -119.6018306923, 46.1025658531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1875, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343590195, 47.548548451 ], [ -122.3393798517, 47.5620616142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1876, "RouteIdentifier": "092", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.07298877, 48.0304443672 ], [ -122.0670005531, 48.0311344173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1877, "RouteIdentifier": "161", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979507857, 46.9800944856 ], [ -122.2963449954, 47.0166678167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1878, "RouteIdentifier": "507", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8467102726, 46.8590457137 ], [ -122.8283708435, 46.8574846811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1879, "RouteIdentifier": "112", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7690696693, 48.1396769458 ], [ -123.7462246084, 48.1373562819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1880, "RouteIdentifier": "525", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3858313632, 47.9827480539 ], [ -122.3921711474, 47.9866051994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1881, "RouteIdentifier": "165", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0474726563, 47.0804529811 ], [ -122.0480328101, 47.0854558399 ], [ -122.0576029409, 47.0916817763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1882, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1091619452, 47.3580988636 ], [ -122.1070219689, 47.3580601805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1883, "RouteIdentifier": "125", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3499243544, 46.069095536 ], [ -118.3512395456, 46.0690998662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1884, "RouteIdentifier": "285COWENTCH", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3245445805, 47.4367115543 ], [ -120.3225528424, 47.434276469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1885, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4552598905, 48.240034233 ], [ -122.4474690781, 48.2419384688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1886, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8167074126, 46.9748418645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1887, "RouteIdentifier": "542", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1322464977, 48.9173156398 ], [ -122.1029841609, 48.9169970403 ], [ -122.0799094982, 48.9241796486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1888, "RouteIdentifier": "503", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4469167382, 45.910167278 ], [ -122.4468006629, 45.9137020329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1889, "RouteIdentifier": "395", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1130354822, 48.6245416722 ], [ -118.1227222823, 48.6274371967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1890, "RouteIdentifier": "026", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9600764508, 46.9404487329 ], [ -119.9569337464, 46.9310727047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1891, "RouteIdentifier": "023", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4671998581, 47.0097954879 ], [ -117.4906995248, 47.0151488088 ], [ -117.4989078005, 47.0330331256 ], [ -117.5122620252, 47.0407236956 ], [ -117.5240910538, 47.0622032228 ], [ -117.545125112, 47.08432072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1892, "RouteIdentifier": "202", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.078551081, 47.6557377147 ], [ -122.0706839733, 47.6560836936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1893, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3334887527, 46.9374674228 ], [ -117.3351658289, 46.9428080119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1894, "RouteIdentifier": "502", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6565486135, 45.7796107255 ], [ -122.605320177, 45.7801298015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1895, "RouteIdentifier": "092", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0098989742, 48.071628269 ], [ -121.9900538253, 48.0834098562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1896, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4841720635, 46.9380070182 ], [ -122.4727205134, 46.9377338042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1897, "RouteIdentifier": "530", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5934495363, 48.4859005831 ], [ -121.5901063759, 48.4885682085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1898, "RouteIdentifier": "167", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2162633519, 47.4784706076 ], [ -122.2170772731, 47.4799087614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1899, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4036573523, 47.9700998663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1900, "RouteIdentifier": "108", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2525189659, 47.0789963959 ], [ -123.2330370728, 47.0832760605 ], [ -123.2217285778, 47.0961529866 ], [ -123.169892022, 47.0993233299 ], [ -123.1370118344, 47.1061275572 ], [ -123.1327675392, 47.1108867882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1901, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2762378173, 46.5520130021 ], [ -122.2753035387, 46.5534563356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1902, "RouteIdentifier": "115", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1550212915, 47.0173446802 ], [ -124.1585629313, 47.0421430903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1903, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6633194815, 45.6889511168 ], [ -122.6587268784, 45.6977308437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1904, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4421245304, 48.1073235415 ], [ -123.4409541321, 48.1081108568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1905, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.564368032, 46.9784278916 ], [ -118.5439795491, 46.9969936414 ], [ -118.4763407681, 47.0248252936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1906, "RouteIdentifier": "125", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3888808965, 46.0238641947 ], [ -118.387709362, 46.0274510129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1907, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3454890434, 47.7524905174 ], [ -122.3454920241, 47.7526354194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1908, "RouteIdentifier": "530", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0149147028, 48.26670449 ], [ -122.0102677154, 48.2683045733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1909, "RouteIdentifier": "141", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.486682184, 45.7277580783 ], [ -121.4875027306, 45.727786525 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1910, "RouteIdentifier": "161", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938519207, 47.2509469514 ], [ -122.2947362877, 47.2575680773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1911, "RouteIdentifier": "005", "AADT": 117000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3307967988, 47.6088249044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1912, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9031362266, 46.3853907412 ], [ -122.8996061797, 46.3980707203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1913, "RouteIdentifier": "161", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3098328416, 47.2779256038 ], [ -122.3113887255, 47.2800166221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1914, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8960512885, 46.9809985306 ], [ -123.8970765547, 46.9810040205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1915, "RouteIdentifier": "500", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4244634331, 45.6433255811 ], [ -122.4176943396, 45.6411075661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1916, "RouteIdentifier": "020", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6513860232, 48.5041934528 ], [ -121.6421804262, 48.4953349997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1917, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886644352, 48.8433410199 ], [ -122.2883273553, 48.8540652293 ], [ -122.2938609707, 48.8575655792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1918, "RouteIdentifier": "106", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1485141514, 47.3218092821 ], [ -123.1336820514, 47.3186667549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1919, "RouteIdentifier": "203", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9858303482, 47.7426828709 ], [ -121.9856625426, 47.7451686523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1920, "RouteIdentifier": "904", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6232200849, 47.4699050473 ], [ -117.6134262665, 47.471353912 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1921, "RouteIdentifier": "395", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155515131, 48.2809311397 ], [ -117.7179594226, 48.2854700064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1922, "RouteIdentifier": "542", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2556345682, 48.8390461836 ], [ -122.2395042525, 48.8318235121 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1923, "RouteIdentifier": "291", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075451443, 47.7371619655 ], [ -117.5075109583, 47.7416381565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1924, "RouteIdentifier": "169", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9896415159, 47.2138839771 ], [ -121.9897117864, 47.2283165519 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1925, "RouteIdentifier": "518", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814936102, 47.4639104191 ], [ -122.2737587614, 47.465095805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1926, "RouteIdentifier": "011", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4221853179, 48.5654425158 ], [ -122.4228327812, 48.5993312853 ], [ -122.4314758594, 48.6044132215 ], [ -122.4393550103, 48.6177939656 ], [ -122.4424111234, 48.6153877975 ], [ -122.4480779306, 48.6237425278 ], [ -122.4627144951, 48.6265007902 ], [ -122.4898137335, 48.6488973023 ], [ -122.4921519068, 48.6617064112 ], [ -122.4852398362, 48.6680694691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1927, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6314890754, 47.5049287108 ], [ -122.624429651, 47.504849437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1928, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7497223484, 45.9177650679 ], [ -122.7534494161, 45.9236451726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1929, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942188172, 47.1497279489 ], [ -119.3118431702, 47.1567249837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1930, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0921869405, 47.1998399079 ], [ -123.091672535, 47.2007870052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1931, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924416665, 47.7355851423 ], [ -122.2802973866, 47.7520027511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1932, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188666249, 47.9794305969 ], [ -122.185861118, 47.9794731965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1933, "RouteIdentifier": "116", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7207360254, 48.0268110537 ], [ -122.697769073, 48.018281475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1934, "RouteIdentifier": "507", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8619828359, 46.8516552572 ], [ -122.8586957254, 46.8532935721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1935, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0971571723, 47.1818128402 ], [ -123.0973376697, 47.1826544128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1936, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4202576394, 46.4360420895 ], [ -117.4021567544, 46.4441973722 ], [ -117.3351453534, 46.4329973878 ], [ -117.3236818665, 46.4364355288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1937, "RouteIdentifier": "410", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791170661, 47.1993968717 ], [ -121.9658681376, 47.1991869215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1938, "RouteIdentifier": "002", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.690253067, 47.6430952782 ], [ -117.6686114771, 47.6429513017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1939, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6287660452, 47.5891210126 ], [ -120.6139689585, 47.5807454549 ], [ -120.6128019629, 47.5735910457 ], [ -120.605716968, 47.5674428282 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1940, "RouteIdentifier": "503SPCOUGAR", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3105284378, 46.0417807035 ], [ -122.305684987, 46.0490596047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1941, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3662844632, 46.1972420441 ], [ -123.3633339712, 46.1950290192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1942, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0342099984, 47.1595496539 ], [ -122.0197980383, 47.1768730848 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1943, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1205538564, 48.5260765992 ], [ -122.1053402812, 48.5269357635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1944, "RouteIdentifier": "548", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7266598296, 48.9068699571 ], [ -122.7265048358, 48.9175984132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1945, "RouteIdentifier": "224", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4711841566, 46.2575715157 ], [ -119.4254807685, 46.2734329699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1946, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497942054, 48.0321149063 ], [ -117.343635146, 48.0474039493 ], [ -117.3442020338, 48.061754727 ], [ -117.3241634322, 48.07997589 ], [ -117.3249905541, 48.0919186256 ], [ -117.3006048247, 48.0985048663 ], [ -117.2841686904, 48.0967467483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1947, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0044486257, 48.0205093633 ], [ -122.9958042256, 48.0240557605 ], [ -122.9785167145, 48.046585562 ], [ -122.9614934821, 48.0502939774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1948, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3627497487, 48.1085599202 ], [ -123.3601967875, 48.1093444067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1949, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023983763, 46.9678877123 ], [ -123.8023974793, 46.9687249499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1950, "RouteIdentifier": "542", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.327035238, 48.8181848035 ], [ -122.3049767143, 48.8323888064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1951, "RouteIdentifier": "026", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0482198121, 46.7995487771 ], [ -119.0141231869, 46.7946592408 ], [ -118.8990911424, 46.7940102212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1952, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.091672535, 47.2007870052 ], [ -123.0997120272, 47.2056969535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1953, "RouteIdentifier": "153", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0735179834, 48.3417951846 ], [ -120.0782317267, 48.3464626059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1954, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5935764168, 47.5639483159 ], [ -117.5935996573, 47.5661401873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1955, "RouteIdentifier": "410", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1838778814, 47.174736546 ], [ -122.1691805082, 47.1698966439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1956, "RouteIdentifier": "303", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6926355567, 47.6632523312 ], [ -122.6929889274, 47.661397052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1957, "RouteIdentifier": "291", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.645634686, 47.8601052658 ], [ -117.6601956757, 47.887269221 ], [ -117.6600246954, 47.8932611587 ], [ -117.6685724818, 47.8943422934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1958, "RouteIdentifier": "501", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693763413, 45.6325719706 ], [ -122.6704395067, 45.6325772078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1959, "RouteIdentifier": "016", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.482796616, 47.2349767545 ], [ -122.4919517544, 47.2348877891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1960, "RouteIdentifier": "282", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5548980955, 47.3064820526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1961, "RouteIdentifier": "546", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4631661079, 48.9646150404 ], [ -122.4519714718, 48.9646510378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1962, "RouteIdentifier": "240", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1466151724, 46.2179686599 ], [ -119.1457324057, 46.2175957254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1963, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9040186992, 47.1886262402 ], [ -120.9097237692, 47.1901067626 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1964, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430545767, 47.9779093221 ], [ -122.1355017102, 47.9728688256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1965, "RouteIdentifier": "902", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6822629215, 47.5797908647 ], [ -117.675621899, 47.5794106007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1966, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2630218055, 47.6371835441 ], [ -119.2633718554, 47.6383063062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1967, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7760452677, 48.928358074 ], [ -117.7722499943, 48.9449959503 ], [ -117.7903100301, 48.9444725584 ], [ -117.7934587589, 48.9555653693 ], [ -117.8035781755, 48.9610755132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1968, "RouteIdentifier": "241", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.970594385, 46.3753130226 ], [ -119.9667501531, 46.379458651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1969, "RouteIdentifier": "173", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6802674022, 48.0089902272 ], [ -119.6854728087, 48.0097116078 ], [ -119.6910758978, 48.0187094102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1970, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6405403984, 46.3349412244 ], [ -123.6384906851, 46.3352078778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1971, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4310307746, 48.5268378739 ], [ -121.4239720128, 48.5491341646 ], [ -121.4107258263, 48.5644580515 ], [ -121.4024787094, 48.5831365172 ], [ -121.3759759036, 48.5918905668 ], [ -121.3623196615, 48.6062560597 ], [ -121.3610583314, 48.6145142947 ], [ -121.3232006326, 48.6329219791 ], [ -121.3028444423, 48.6504520462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1972, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2950977171, 47.0475551508 ], [ -122.294801654, 47.0530641068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1973, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.315836318, 47.0439992941 ], [ -123.2864367852, 47.0541062901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1974, "RouteIdentifier": "020", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8196628775, 48.04931957 ], [ -122.8179486123, 48.0711563886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1975, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8249346802, 46.9706520307 ], [ -123.8258142714, 46.9714747617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1976, "RouteIdentifier": "502", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5632686852, 45.7805094295 ], [ -122.558361614, 45.780526879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1977, "RouteIdentifier": "529", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2057386717, 47.9819494434 ], [ -122.212960739, 47.9820295137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1978, "RouteIdentifier": "097", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6987076385, 48.1034031892 ], [ -119.6853721482, 48.1040204491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1979, "RouteIdentifier": "530", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1043084158, 48.222137855 ], [ -122.0696796026, 48.23396758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1980, "RouteIdentifier": "096", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1636458554, 47.8796014922 ], [ -122.1608618478, 47.8814089364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1981, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5232713274, 47.6536299928 ], [ -122.5320368544, 47.6720530531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1982, "RouteIdentifier": "155SPOMAK", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5213936247, 48.4084338469 ], [ -119.5232962062, 48.4094700138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1983, "RouteIdentifier": "007", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339661209, 47.2054048624 ], [ -122.4339668077, 47.2064012989 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1984, "RouteIdentifier": "410", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5851623994, 47.0923339805 ], [ -121.567425209, 47.0403791961 ], [ -121.5551957128, 47.0303667214 ], [ -121.5340919383, 47.0225756397 ], [ -121.5276445988, 47.0128757583 ], [ -121.5359529209, 46.980696515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1985, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.133768563, 46.5681320318 ], [ -117.1454454815, 46.5721918556 ], [ -117.1570846795, 46.5836610466 ], [ -117.172901762, 46.5919223495 ], [ -117.1607245203, 46.616443833 ], [ -117.1875760408, 46.6478028536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1986, "RouteIdentifier": "509", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.334499835, 47.5319334082 ], [ -122.3347023936, 47.5375284994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1987, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.667711126, 48.6174517277 ], [ -118.6526722344, 48.6000038884 ], [ -118.6443296317, 48.5973721967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1988, "RouteIdentifier": "174", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9422723546, 47.9168139511 ], [ -118.9115553996, 47.9213656063 ], [ -118.8633547045, 47.9011540071 ], [ -118.8537392978, 47.8838687759 ], [ -118.7238512322, 47.772533091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1989, "RouteIdentifier": "108", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1327675392, 47.1108867882 ], [ -123.1050673886, 47.1296410636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1990, "RouteIdentifier": "702", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5283321717, 46.937764175 ], [ -122.4923909755, 46.9379773099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1991, "RouteIdentifier": "101", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7671904335, 46.6744470342 ], [ -123.7615325079, 46.6777404653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1992, "RouteIdentifier": "225", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4871230724, 46.2579063443 ], [ -119.4873304151, 46.2607553775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1993, "RouteIdentifier": "005", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5530762786, 48.8225160709 ], [ -122.573687598, 48.8448314506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1994, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5234705645, 46.6619857363 ], [ -120.5197381527, 46.6681259529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1995, "RouteIdentifier": "002", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3320582967, 47.6264826812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1996, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6511293212, 47.5655459942 ], [ -122.6475719156, 47.5652581761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1997, "RouteIdentifier": "012", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3294181035, 46.960126358 ], [ -123.3110133365, 46.9385525926 ], [ -123.2898816838, 46.9008637133 ], [ -123.2480621901, 46.8458842903 ], [ -123.2399893883, 46.8414422249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1998, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1587937139, 48.2389534668 ], [ -122.1669055996, 48.2550164627 ], [ -122.1666333463, 48.2648550145 ], [ -122.1709978885, 48.2679601252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 1999, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0544043707, 46.3526539161 ], [ -124.0536804079, 46.3675828583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2000, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.741223238, 45.913180857 ], [ -122.7408549752, 45.9111701973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2001, "RouteIdentifier": "155", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5023027759, 48.4022781572 ], [ -119.5084842224, 48.4031367389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2002, "RouteIdentifier": "014", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4828848568, 45.7225399831 ], [ -121.4677352564, 45.7152835978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2003, "RouteIdentifier": "310", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6621267697, 47.5713620353 ], [ -122.6565626099, 47.5703304581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2004, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7437635985, 46.7153016927 ], [ -123.7406630722, 46.7253864815 ], [ -123.7479211083, 46.7335674173 ], [ -123.7439044996, 46.7393430715 ], [ -123.7547337825, 46.760574447 ], [ -123.7406552867, 46.7781576345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2005, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.184576053, 46.7209092456 ], [ -117.1830985465, 46.7284162635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2006, "RouteIdentifier": "021", "AADT": 190 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5578353614, 46.6431253994 ], [ -118.5579970591, 46.6445599995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2007, "RouteIdentifier": "041", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395528608, 48.1829538969 ], [ -117.0395862835, 48.1810552137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2008, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6750836999, 46.6021829664 ], [ -121.668828194, 46.6101927227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2009, "RouteIdentifier": "410", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674967694, 46.9781722496 ], [ -121.1273817826, 46.9810074692 ], [ -121.1143805148, 46.9870756134 ], [ -121.0946681442, 46.989267303 ], [ -121.0913821846, 46.9856181514 ], [ -121.0946111848, 46.9703427133 ], [ -121.0472905443, 46.9283246192 ], [ -121.0467429429, 46.9201906131 ], [ -121.0000086641, 46.8921406888 ], [ -120.9874184029, 46.888619317 ], [ -120.969981025, 46.8708547341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2010, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6575921778, 48.2930446922 ], [ -122.6550097756, 48.2961690914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2011, "RouteIdentifier": "017", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3626574045, 47.8153679549 ], [ -119.3622628388, 47.8600857655 ], [ -119.3707232114, 47.8738309699 ], [ -119.3726440441, 47.9045679707 ], [ -119.3923586085, 47.9188641837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2012, "RouteIdentifier": "548", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6174443607, 48.891747907 ], [ -122.6385290374, 48.8917094095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2013, "RouteIdentifier": "310", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6834705983, 47.5695963871 ], [ -122.6731435739, 47.568179933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2014, "RouteIdentifier": "028", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8356431118, 47.2340276704 ], [ -119.8320237301, 47.2340352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2015, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3255247068, 46.0817350589 ], [ -118.3043819814, 46.0811339747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2016, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2976491615, 46.57004764 ], [ -123.2963177918, 46.576533839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2017, "RouteIdentifier": "109", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8895230263, 46.980961881 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2018, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5589351838, 47.5953615292 ], [ -117.4957532497, 47.6240627613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2019, "RouteIdentifier": "127", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8217148556, 46.5248555558 ], [ -117.8138228982, 46.5221815136 ], [ -117.7891868451, 46.5254691689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2020, "RouteIdentifier": "026", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1974936697, 46.8114235517 ], [ -119.1737083937, 46.8115310782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2021, "RouteIdentifier": "119", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2127462556, 47.4576868663 ], [ -123.2163741784, 47.4625535041 ], [ -123.2105495803, 47.4764348581 ], [ -123.2103050963, 47.4923049652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2022, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3052567416, 47.5434675701 ], [ -122.3166355729, 47.5517627468 ], [ -122.3214916682, 47.561289773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2023, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9354180565, 46.9596763245 ], [ -122.9303556413, 46.9761338415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2024, "RouteIdentifier": "116", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7437352957, 48.0253259826 ], [ -122.7405321497, 48.0270703271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2025, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857327674, 46.9809356695 ], [ -123.8857715571, 46.9892213843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2026, "RouteIdentifier": "512", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966981396, 47.1766290629 ], [ -122.2848476708, 47.1815733492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2027, "RouteIdentifier": "027", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730012011, 47.2221634757 ], [ -117.073000361, 47.2230431561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2028, "RouteIdentifier": "002", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8792825759, 47.6694839326 ], [ -117.8779176066, 47.6694929404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2029, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501760455, 46.4755815152 ], [ -117.0698189183, 46.4861909917 ], [ -117.0774650496, 46.4977862967 ], [ -117.0874842611, 46.5393952983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2030, "RouteIdentifier": "101COABERDN", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8141567727, 46.974248551 ], [ -123.8110700669, 46.9732623777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2031, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8272576766, 47.106307188 ], [ -119.7624088379, 47.1468189921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2032, "RouteIdentifier": "970", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.8926430173, 47.1852194677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2033, "RouteIdentifier": "270COPULLMN", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1799080975, 46.7296299262 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2034, "RouteIdentifier": "022", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3097289325, 46.3650774694 ], [ -120.2518435554, 46.3315396164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2035, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4978200864, 48.7835877334 ], [ -122.5056560072, 48.7850058356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2036, "RouteIdentifier": "270", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.181854755, 46.7297051348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2037, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3634161418, 47.7906222233 ], [ -122.3582161004, 47.7917297211 ], [ -122.3533511027, 47.7851161679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2038, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8889929685, 47.1441925406 ], [ -123.879496601, 47.1617156776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2039, "RouteIdentifier": "167", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4019360634, 47.239469308 ], [ -122.3969871323, 47.2375843118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2040, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3567064191, 47.7812867521 ], [ -117.3531916555, 47.7872080515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2041, "RouteIdentifier": "302", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7114277659, 47.3745220756 ], [ -122.6947937623, 47.381239063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2042, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3760304765, 48.891834109 ], [ -122.3745657943, 48.904788295 ], [ -122.3585353638, 48.9093392192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2043, "RouteIdentifier": "195", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2772565713, 46.772497546 ], [ -117.3083636026, 46.7884099837 ], [ -117.3280662082, 46.8301233694 ], [ -117.3384016743, 46.8380692715 ], [ -117.339143604, 46.8504355115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2044, "RouteIdentifier": "524", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3787722403, 47.8124279259 ], [ -122.3721262643, 47.8177762685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2045, "RouteIdentifier": "270", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0878490265, 46.7317943321 ], [ -117.0573687, 46.739057813 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2046, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3370509632, 48.503991479 ], [ -122.3426003903, 48.5134790031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2047, "RouteIdentifier": "021", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6706352632, 48.6541388326 ], [ -118.6655296037, 48.661406786 ], [ -118.66790945, 48.668750525 ], [ -118.6640345732, 48.6790336908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2048, "RouteIdentifier": "547", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1536154484, 48.9498823783 ], [ -122.163014477, 48.9673328212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2049, "RouteIdentifier": "205", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6008744257, 45.6874395737 ], [ -122.6403863597, 45.7125037539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2050, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768951726, 46.9105822359 ], [ -117.0769824862, 46.9108621348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2051, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0155804532, 48.600051746 ], [ -118.040528479, 48.611445845 ], [ -118.0728624554, 48.6070846621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2052, "RouteIdentifier": "182", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1895052521, 46.2676902573 ], [ -119.1705524126, 46.261830974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2053, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112982729, 47.739633774 ], [ -117.4104239582, 47.7407128065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2054, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.302597486, 47.7699869803 ], [ -122.2838095032, 47.7600084566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2055, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4426701243, 48.701328551 ], [ -119.4421071548, 48.7019949179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2056, "RouteIdentifier": "116", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6965194533, 48.0612450071 ], [ -122.7017450146, 48.0668212303 ], [ -122.7018643165, 48.078607276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2057, "RouteIdentifier": "025", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0753761557, 48.5902114462 ], [ -118.0753566144, 48.5985793743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2058, "RouteIdentifier": "006", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1287547466, 46.6004969457 ], [ -123.1262630128, 46.6018315229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2059, "RouteIdentifier": "405", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064752256, 47.7910831404 ], [ -122.2236011158, 47.8003896824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2060, "RouteIdentifier": "243", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9166346542, 46.6972957966 ], [ -119.9169607763, 46.7378528943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2061, "RouteIdentifier": "401", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8104269171, 46.3376105866 ], [ -123.8156493827, 46.3543833279 ], [ -123.8118111203, 46.365574241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2062, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5963933831, 47.1027062195 ], [ -122.5793216715, 47.1078928315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2063, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6205066365, 48.0600760065 ], [ -117.630503668, 48.080995459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2064, "RouteIdentifier": "105", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8173067572, 46.9516445414 ], [ -123.8119261196, 46.9521234492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2065, "RouteIdentifier": "005", "AADT": 224000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4231498311, 47.236217271 ], [ -122.4176442321, 47.2382129228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2066, "RouteIdentifier": "142", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8122602395, 45.8229926828 ], [ -120.8081064714, 45.8245819424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2067, "RouteIdentifier": "503", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.547565689, 45.7807169469 ], [ -122.5474855069, 45.7852017578 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2068, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7260465116, 48.1503593139 ], [ -117.7257805786, 48.1562291862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2069, "RouteIdentifier": "022", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7518491007, 46.203691501 ], [ -119.7486010675, 46.2060790676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2070, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2688269551, 48.0803462317 ], [ -124.2633119054, 48.0859667646 ], [ -124.2672293, 48.093890668 ], [ -124.2620344907, 48.1020870424 ], [ -124.2509273881, 48.1119690255 ], [ -124.2237423366, 48.1213082047 ], [ -124.2125310381, 48.1338196202 ], [ -124.2202931828, 48.1428270627 ], [ -124.2160466622, 48.1476159031 ], [ -124.2206359525, 48.1539900319 ], [ -124.2077081318, 48.1578243181 ], [ -124.2046323962, 48.1671867394 ], [ -124.2103459096, 48.1692167689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2071, "RouteIdentifier": "097AR", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148836023, 47.8388580147 ], [ -120.0148285272, 47.8398314423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2072, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3091430991, 47.7743773963 ], [ -122.3064040791, 47.7725385808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2073, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4558097511, 46.5163581409 ], [ -120.4495337758, 46.5039654868 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2074, "RouteIdentifier": "005", "AADT": 100000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7541782353, 47.0644445369 ], [ -122.7253740372, 47.0679296901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2075, "RouteIdentifier": "510", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6328542511, 46.9587926513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2076, "RouteIdentifier": "031", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4104336223, 48.6904887705 ], [ -117.4135449594, 48.7213796222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2077, "RouteIdentifier": "097AR", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9735363079, 47.8450645396 ], [ -119.9500747094, 47.8613131638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2078, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1053402812, 48.5269357635 ], [ -122.0611804157, 48.5291856242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2079, "RouteIdentifier": "542", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3771647615, 48.8041341038 ], [ -122.3506314591, 48.8036905292 ], [ -122.3437891671, 48.8073210548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2080, "RouteIdentifier": "020", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1224530293, 48.3673427778 ], [ -120.1210178754, 48.3612124716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2081, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2672424979, 46.0864775034 ], [ -118.2564997683, 46.0930373464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2082, "RouteIdentifier": "082", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4880037429, 46.6075314018 ], [ -120.4798850922, 46.5977376972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2083, "RouteIdentifier": "106", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147576786, 47.3880434547 ], [ -122.8923661472, 47.4040437156 ], [ -122.8777100282, 47.4088016187 ], [ -122.8605402927, 47.4233280775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2084, "RouteIdentifier": "028", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4690438843, 47.3852988959 ], [ -119.426913667, 47.3955134929 ], [ -119.3873405431, 47.4145207367 ], [ -119.3006349454, 47.4249031098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2085, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1212539974, 47.0877998117 ], [ -119.0508055026, 47.0857677636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2086, "RouteIdentifier": "109COHQUIAM", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8883863985, 46.9801777553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2087, "RouteIdentifier": "025", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.1410473188, 47.6647648556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2088, "RouteIdentifier": "096", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1608618478, 47.8814089364 ], [ -122.1485845591, 47.8886416262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2089, "RouteIdentifier": "507", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9537824167, 46.7366928914 ], [ -122.9538231518, 46.7487811507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2090, "RouteIdentifier": "017", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1331872975, 46.8409896084 ], [ -119.1331481081, 46.886685746 ], [ -119.1384722057, 46.892262265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2091, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288340771, 47.6158812787 ], [ -122.6288682299, 47.6213371579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2092, "RouteIdentifier": "020", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5709737986, 48.4626357523 ], [ -122.5588999199, 48.4598549429 ], [ -122.5406484136, 48.4629524261 ], [ -122.4987396272, 48.4522633023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2093, "RouteIdentifier": "005", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143482637, 48.2063281505 ], [ -122.2183218859, 48.2166037115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2094, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.482679815, 47.3814692054 ], [ -119.4690438843, 47.3852988959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2095, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3299629869, 47.4748414789 ], [ -122.3277374047, 47.4792708197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2096, "RouteIdentifier": "520", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3161312286, 47.6429143031 ], [ -122.3049498032, 47.6441648565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2097, "RouteIdentifier": "530", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5543923163, 48.3214625286 ], [ -121.5500581076, 48.3318886554 ], [ -121.5514534858, 48.3437440639 ], [ -121.540112692, 48.346215164 ], [ -121.5399069254, 48.366375817 ], [ -121.5420248636, 48.372287589 ], [ -121.5544254592, 48.3801274364 ], [ -121.5500133803, 48.3934668631 ], [ -121.5568722682, 48.4135875649 ], [ -121.566872919, 48.4288842168 ], [ -121.5917001012, 48.4513276442 ], [ -121.5855182759, 48.4609275735 ], [ -121.5934495363, 48.4859005831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2098, "RouteIdentifier": "023", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7345700167, 47.1169266042 ], [ -117.7429251101, 47.1174596066 ], [ -117.7549057664, 47.1257164324 ], [ -117.8175092803, 47.1110932633 ], [ -117.8229123252, 47.1144427701 ], [ -117.8293478123, 47.1355148253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2099, "RouteIdentifier": "012", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0677532163, 46.2468045298 ], [ -119.046642025, 46.2322064702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2100, "RouteIdentifier": "900", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1248280167, 47.5008402591 ], [ -122.1219053901, 47.5005304078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2101, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133014011, 47.3166524228 ], [ -122.3119901397, 47.333987546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2102, "RouteIdentifier": "509", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343743094, 47.5297826683 ], [ -122.334499835, 47.5319334082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2103, "RouteIdentifier": "155", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9795868328, 47.9655777499 ], [ -118.9796978543, 47.9684303804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2104, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854576502, 47.9480859363 ], [ -124.3854471652, 47.9489554101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2105, "RouteIdentifier": "539", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859559588, 48.8624202184 ], [ -122.4856871492, 48.8695370939 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2106, "RouteIdentifier": "020", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3455588826, 48.5553675301 ], [ -117.3064321854, 48.5419409683 ], [ -117.3028045022, 48.5360504548 ], [ -117.3046502589, 48.5270311029 ], [ -117.2785248998, 48.5118456191 ], [ -117.2690246326, 48.4992561871 ], [ -117.269265238, 48.4873224193 ], [ -117.2758540173, 48.4791546803 ], [ -117.320541457, 48.4685163989 ], [ -117.3259425988, 48.4587617195 ], [ -117.3237809205, 48.4393180608 ], [ -117.3166271068, 48.4252140684 ], [ -117.3190973569, 48.4189460662 ], [ -117.3131204854, 48.4113756271 ], [ -117.3146309013, 48.3944502706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2107, "RouteIdentifier": "104", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4980484153, 47.7985063825 ], [ -122.497295586, 47.7975770117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2108, "RouteIdentifier": "024", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4354637214, 46.5745924593 ], [ -120.3933243152, 46.5563517375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2109, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304605047, 48.3953989959 ], [ -122.3309115081, 48.4060252156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2110, "RouteIdentifier": "160", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6448015914, 47.5019616092 ], [ -122.6439469399, 47.5027845218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2111, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3721262643, 47.8177762685 ], [ -122.3673070896, 47.8179585281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2112, "RouteIdentifier": "096", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1659527236, 47.8777990754 ], [ -122.1636458554, 47.8796014922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2113, "RouteIdentifier": "101COPRTANG", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4272112907, 48.1176420477 ], [ -123.4309020008, 48.1191579416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2114, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5038218235, 48.1027548736 ], [ -123.4685453921, 48.1061906064 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2115, "RouteIdentifier": "017", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3489993938, 47.189958653 ], [ -119.427611675, 47.2399283143 ], [ -119.4710716591, 47.2737539701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2116, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2904509822, 45.6962586457 ], [ -121.2796331186, 45.6906882361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2117, "RouteIdentifier": "007", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.35740693, 46.9366422092 ], [ -122.3579343412, 46.9802243895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2118, "RouteIdentifier": "104COKNGSTN", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4955876896, 47.7975252491 ], [ -122.4964887302, 47.7981317254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2119, "RouteIdentifier": "121", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9342408253, 46.9527666325 ], [ -122.9357154749, 46.9527589941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2120, "RouteIdentifier": "117", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4625406534, 48.1078996274 ], [ -123.4595741397, 48.1100676892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2121, "RouteIdentifier": "005", "AADT": 198000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3238832466, 47.6326989707 ], [ -122.3226285715, 47.6386200098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2122, "RouteIdentifier": "011", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3367493104, 48.4846390125 ], [ -122.3385001064, 48.4862281599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2123, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.251298774, 48.0998571166 ], [ -117.2193213409, 48.1133107789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2124, "RouteIdentifier": "513", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2731213214, 47.6686054126 ], [ -122.2710615487, 47.6700439942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2125, "RouteIdentifier": "195", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3610664207, 47.2534566306 ], [ -117.3705856786, 47.2680751418 ], [ -117.3612540092, 47.2908793053 ], [ -117.390138784, 47.3103620664 ], [ -117.3885977334, 47.3194727622 ], [ -117.3806624631, 47.3300797576 ], [ -117.3806731936, 47.3606575442 ], [ -117.3913392846, 47.3891157864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2126, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5823712081, 48.4544018047 ], [ -122.581775545, 48.463077182 ], [ -122.5777750118, 48.4628037174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2127, "RouteIdentifier": "017", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9943545429, 46.5674942159 ], [ -119.0040609275, 46.5740844587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2128, "RouteIdentifier": "501", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6659555363, 45.631898547 ], [ -122.6693763413, 45.6325719706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2129, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4657592482, 48.106460575 ], [ -123.4611381511, 48.1069352467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2130, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4999178784, 48.7176529255 ], [ -122.486331208, 48.7148245953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2131, "RouteIdentifier": "009", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2133672387, 48.3723792401 ], [ -122.2296735711, 48.3852564968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2132, "RouteIdentifier": "531", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829723721, 48.1524164911 ], [ -122.1722962078, 48.1522897092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2133, "RouteIdentifier": "395", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1670085036, 46.1917196627 ], [ -119.1591587709, 46.198638478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2134, "RouteIdentifier": "101", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1570442192, 47.2803282022 ], [ -123.1457654709, 47.2521210376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2135, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1738772879, 47.1121270494 ], [ -124.1696146509, 47.1148944779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2136, "RouteIdentifier": "023", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.545125112, 47.08432072 ], [ -117.5754644577, 47.0918016783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2137, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2484756693, 47.9000726144 ], [ -122.2446706564, 47.9041485453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2138, "RouteIdentifier": "303", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329070414, 47.5726953913 ], [ -122.6329554592, 47.5769885266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2139, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3356088428, 48.4755713741 ], [ -122.3355650196, 48.4778597679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2140, "RouteIdentifier": "020", "AADT": 900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6850050975, 48.6506492932 ], [ -118.6855035616, 48.6448826019 ], [ -118.667711126, 48.6174517277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2141, "RouteIdentifier": "411", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9056916194, 46.2824568896 ], [ -122.9035782953, 46.2838610024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2142, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4586693868, 47.7154118844 ], [ -117.4605875174, 47.7154071362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2143, "RouteIdentifier": "272", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2704255183, 46.9127594447 ], [ -117.2498341606, 46.9246457969 ], [ -117.2343310278, 46.9253099478 ], [ -117.2205297119, 46.9331066712 ], [ -117.1593520644, 46.9417057905 ], [ -117.1360809196, 46.9326332476 ], [ -117.1104760713, 46.9284629569 ], [ -117.1027698079, 46.9174522008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2144, "RouteIdentifier": "016SPGORST", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7009258111, 47.5254077892 ], [ -122.7045017857, 47.525661698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2145, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1508809942, 47.779603159 ], [ -122.1387763237, 47.7848706123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2146, "RouteIdentifier": "173", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6910758978, 48.0187094102 ], [ -119.6976870253, 48.0311183966 ], [ -119.6937254895, 48.039290469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2147, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472711494, 47.6539867202 ], [ -122.3472698982, 47.6642399557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2148, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8753021958, 47.036689104 ], [ -122.8593818839, 47.0403533748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2149, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2527825057, 48.5028862443 ], [ -122.247228536, 48.5049651039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2150, "RouteIdentifier": "304COTUNNEL", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6250128565, 47.5624369619 ], [ -122.629614867, 47.5650234096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2151, "RouteIdentifier": "524", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3358813394, 47.8214508721 ], [ -122.3250529195, 47.8213297085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2152, "RouteIdentifier": "505", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8360736283, 46.4372194695 ], [ -122.8140314886, 46.4381206875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2153, "RouteIdentifier": "195", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0422413047, 46.4742309777 ], [ -117.0475174649, 46.4744614231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2154, "RouteIdentifier": "018", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0515162551, 47.3916599978 ], [ -122.0448319243, 47.3997061319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2155, "RouteIdentifier": "005", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6587268784, 45.6977308437 ], [ -122.6529868883, 45.7094550401 ], [ -122.6545494275, 45.7173002417 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2156, "RouteIdentifier": "101", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3476245074, 48.0559531272 ], [ -124.3376838924, 48.0547329997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2157, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205390391, 46.3386430967 ], [ -120.3201947507, 46.3605182529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2158, "RouteIdentifier": "502", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742071117, 45.781370643 ], [ -122.6672617257, 45.779820175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2159, "RouteIdentifier": "027", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1689737584, 46.7599890779 ], [ -117.1644381544, 46.7697549283 ], [ -117.1514171761, 46.7802864678 ], [ -117.147368489, 46.7904698955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2160, "RouteIdentifier": "506", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0273681586, 46.4021888563 ], [ -122.9987012021, 46.4136116155 ], [ -122.9750403018, 46.4047023004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2161, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5468403017, 46.9927649775 ], [ -122.545777661, 46.9961770865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2162, "RouteIdentifier": "283", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6943596205, 47.1892246234 ], [ -119.6860494601, 47.1944007257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2163, "RouteIdentifier": "097", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7709004569, 45.8615514769 ], [ -120.7561380643, 45.871859525 ], [ -120.7488870427, 45.8832756597 ], [ -120.7124593609, 45.8992628538 ], [ -120.7115773862, 45.9077401324 ], [ -120.7006339016, 45.9221097398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2164, "RouteIdentifier": "215", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5853439854, 48.3602159749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2165, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150855528, 47.8211917901 ], [ -122.2945690698, 47.8468435945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2166, "RouteIdentifier": "166", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6115664545, 47.5340329479 ], [ -122.6096358266, 47.5340033861 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2167, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1387763237, 47.7848706123 ], [ -122.1351159494, 47.7942908882 ], [ -122.1160881425, 47.7949538411 ], [ -122.1114164195, 47.8021101024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2168, "RouteIdentifier": "195", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649675878, 46.8759309573 ], [ -117.3649034503, 46.8772762302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2169, "RouteIdentifier": "014", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5274842124, 45.5979967225 ], [ -122.5158228483, 45.5949143216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2170, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0506265625, 47.4234707779 ], [ -122.0719970341, 47.4423650536 ], [ -122.0796037239, 47.4579919468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2171, "RouteIdentifier": "310", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.663594378, 47.5707549865 ], [ -122.6621267697, 47.5713620353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2172, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3201947507, 46.3605182529 ], [ -120.3229788958, 46.3718043346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2173, "RouteIdentifier": "150", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0721004876, 47.859499395 ], [ -120.0581786213, 47.8560176572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2174, "RouteIdentifier": "285", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3248167693, 47.4409909149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2175, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3283026635, 47.6754413596 ], [ -117.3248627173, 47.6754104751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2176, "RouteIdentifier": "304", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.65895148, 47.5539369573 ], [ -122.6552199252, 47.5591158808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2177, "RouteIdentifier": "027", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2396318808, 47.6716727121 ], [ -117.2395845311, 47.6725795615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2178, "RouteIdentifier": "105SPWESTPT", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.108797736, 46.9022648982 ], [ -124.1110123877, 46.9040127541 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2179, "RouteIdentifier": "012", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.063917083, 46.4199191264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2180, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3667991767, 47.790544377 ], [ -122.3634161418, 47.7906222233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2181, "RouteIdentifier": "503", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4468006629, 45.9137020329 ], [ -122.4272617564, 45.9171272208 ], [ -122.4211179737, 45.9198035212 ], [ -122.4210503145, 45.9241386589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2182, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2777833248, 47.1316521718 ], [ -119.2752765933, 47.1325238534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2183, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.568278873, 47.3360585763 ], [ -120.5660395573, 47.3455525678 ], [ -120.5715152011, 47.3505855892 ], [ -120.563363344, 47.3591576642 ], [ -120.5767497151, 47.3638196119 ], [ -120.5942345354, 47.3816799159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2184, "RouteIdentifier": "203", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9162959671, 47.6372969855 ], [ -121.9163495454, 47.639117271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2185, "RouteIdentifier": "225", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4873304151, 46.2607553775 ], [ -119.4876083086, 46.2698315286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2186, "RouteIdentifier": "902", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5679132072, 47.5937450378 ], [ -117.5675988781, 47.5933681002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2187, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8039379118, 45.8264664938 ], [ -120.801473643, 45.8363142697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2188, "RouteIdentifier": "432", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9949382898, 46.1422801927 ], [ -122.9876098497, 46.1378429021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2189, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3443533309, 48.4699161341 ], [ -122.3407517853, 48.4711363705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2190, "RouteIdentifier": "011", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3385001064, 48.4862281599 ], [ -122.3482490253, 48.4942122629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2191, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8201543029, 47.4545979618 ], [ -122.8042667838, 47.4677635998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2192, "RouteIdentifier": "024", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8800763033, 46.5339933138 ], [ -119.8278954802, 46.5493399359 ], [ -119.791445814, 46.569212579 ], [ -119.7282935394, 46.5780534778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2193, "RouteIdentifier": "542", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4597485486, 48.7724340267 ], [ -122.4491781665, 48.7760427514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2194, "RouteIdentifier": "163", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5159507876, 47.2584346491 ], [ -122.5159443381, 47.2599591042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2195, "RouteIdentifier": "520", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2886549992, 47.644785095 ], [ -122.2319230755, 47.6360628163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2196, "RouteIdentifier": "522", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2638528237, 47.7582985129 ], [ -122.2518648885, 47.7585697854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2197, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2366664186, 47.1398909033 ], [ -122.2373000311, 47.1324526387 ], [ -122.2292381501, 47.1179506292 ], [ -122.2143535286, 47.1036076158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2198, "RouteIdentifier": "105", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7755784334, 46.6820267252 ], [ -123.7896436506, 46.6852246296 ], [ -123.8114502592, 46.6993848447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2199, "RouteIdentifier": "705", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4321127257, 47.2333231589 ], [ -122.4318739382, 47.234680353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2200, "RouteIdentifier": "542", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4626339661, 48.7713428245 ], [ -122.4597485486, 48.7724340267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2201, "RouteIdentifier": "028", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991152602, 47.3325467605 ], [ -118.6953209574, 47.3333178275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2202, "RouteIdentifier": "092", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9796119878, 48.0909954069 ], [ -121.9615776667, 48.0935920542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2203, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6795231234, 47.662857905 ], [ -122.6888093798, 47.6646633668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2204, "RouteIdentifier": "003", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8344961907, 47.4399094921 ], [ -122.8302534091, 47.4465115389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2205, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1566237324, 47.4685018085 ], [ -122.1886206387, 47.478462399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2206, "RouteIdentifier": "211", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3014134068, 48.1726073855 ], [ -117.3015320727, 48.1814415097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2207, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2512032791, 47.0452823163 ], [ -123.2311640554, 47.0504387055 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2208, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1408999543, 47.6547957468 ], [ -118.0978930871, 47.6573058522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2209, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2965384457, 47.7337970814 ], [ -122.2924586232, 47.7337786904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2210, "RouteIdentifier": "024", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1975233079, 46.7384199394 ], [ -119.189779697, 46.7381439938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2211, "RouteIdentifier": "223", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1791144823, 46.3455191654 ], [ -120.1776037055, 46.3458600603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2212, "RouteIdentifier": "548", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7523454393, 48.9971567896 ], [ -122.7520472898, 48.9978652764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2213, "RouteIdentifier": "823", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5090316719, 46.6767027963 ], [ -120.4872923805, 46.6801245233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2214, "RouteIdentifier": "290", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3965543236, 47.6618427629 ], [ -117.3871932194, 47.6619140206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2215, "RouteIdentifier": "501", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7461434353, 45.8153622443 ], [ -122.7448931286, 45.8153696587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2216, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6679722011, 45.6264046411 ], [ -122.6664314526, 45.6289361692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2217, "RouteIdentifier": "182", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1105630412, 46.2485229568 ], [ -119.0939413826, 46.2498784583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2218, "RouteIdentifier": "526", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2231765605, 47.9226576514 ], [ -122.2125640998, 47.9215909937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2219, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0967538612, 47.4885408949 ], [ -124.1139224833, 47.4962623066 ], [ -124.1614780369, 47.506903678 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2220, "RouteIdentifier": "262", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2059547126, 46.9847954432 ], [ -119.1179298675, 46.9846708775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2221, "RouteIdentifier": "500", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3985480747, 45.5841573262 ], [ -122.3855189782, 45.5821082164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2222, "RouteIdentifier": "113", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2688269551, 48.0803462317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2223, "RouteIdentifier": "300", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8763595467, 47.4318329878 ], [ -122.8631442072, 47.4386387656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2224, "RouteIdentifier": "395", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2049625221, 48.8611827903 ], [ -118.205892243, 48.8650299972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2225, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3855106235, 47.9441729563 ], [ -124.3854821185, 47.9460570961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2226, "RouteIdentifier": "012", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3912683196, 47.0040697768 ], [ -123.3875067629, 47.0051795465 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2227, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.863957586, 48.0095725516 ], [ -122.8897294603, 47.9923528191 ], [ -122.8856837159, 47.9870204643 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2228, "RouteIdentifier": "410", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455904637, 47.1960629254 ], [ -122.238361396, 47.1927344595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2229, "RouteIdentifier": "005", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3309115081, 48.4060252156 ], [ -122.3314940653, 48.4135964059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2230, "RouteIdentifier": "169", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9910780054, 47.2049216282 ], [ -121.9896415159, 47.2138839771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2231, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4351159777, 48.9331846153 ], [ -119.436333253, 48.9342146304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2232, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0320320146, 45.6195630227 ], [ -122.0246218752, 45.6254040131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2233, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1390119706, 47.3580153681 ], [ -122.1340104468, 47.3579773429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2234, "RouteIdentifier": "902", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.675621899, 47.5794106007 ], [ -117.6687451729, 47.5798764344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2235, "RouteIdentifier": "014", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5608783461, 45.7230552598 ], [ -121.5511752614, 45.7278450651 ], [ -121.524779511, 45.7292158488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2236, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289013941, 47.6322348249 ], [ -122.6293597294, 47.645556277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2237, "RouteIdentifier": "125SP125SP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3620580135, 46.0686467543 ], [ -118.3697805104, 46.0698478744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2238, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7830173029, 47.1120217119 ], [ -120.7666038672, 47.1063778563 ], [ -120.7599445753, 47.0960137622 ], [ -120.7451378467, 47.0902835956 ], [ -120.7388834285, 47.0833211577 ], [ -120.6585157988, 47.0514934706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2239, "RouteIdentifier": "531", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1722962078, 48.1522897092 ], [ -122.1616167206, 48.1521235496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2240, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857480999, 46.9806448411 ], [ -123.8857327674, 46.9809356695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2241, "RouteIdentifier": "903", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9825252207, 47.2092344825 ], [ -120.9931524128, 47.222746832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2242, "RouteIdentifier": "260", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8840388543, 46.6627688809 ], [ -118.8714816681, 46.6542060226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2243, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3978963103, 48.1061923633 ], [ -123.3759552613, 48.1048555471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2244, "RouteIdentifier": "031", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4135771849, 48.7285818258 ], [ -117.4135602609, 48.7325006416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2245, "RouteIdentifier": "527", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2070289838, 47.914243946 ], [ -122.2062759693, 47.9180096463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2246, "RouteIdentifier": "012", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.5899764941, 46.522559419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2247, "RouteIdentifier": "525", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6064434153, 48.1635594746 ], [ -122.609133392, 48.1712861629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2248, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9095592146, 47.3467924075 ], [ -123.9114875209, 47.3617916606 ], [ -123.9025771354, 47.3722950666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2249, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1282727742, 47.8811551589 ], [ -122.109772433, 47.878119226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2250, "RouteIdentifier": "522", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2802973866, 47.7520027511 ], [ -122.2764080485, 47.7535766576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2251, "RouteIdentifier": "161", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2953114868, 47.0439310162 ], [ -122.2950977171, 47.0475551508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2252, "RouteIdentifier": "105", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0994911249, 46.8588806371 ], [ -124.0614923955, 46.8642889165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2253, "RouteIdentifier": "020", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5777750118, 48.4628037174 ], [ -122.5709737986, 48.4626357523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2254, "RouteIdentifier": "225", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4876083086, 46.2698315286 ], [ -119.4903066566, 46.2723445732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2255, "RouteIdentifier": "395", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1227222823, 48.6274371967 ], [ -118.1196487386, 48.6350042505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2256, "RouteIdentifier": "162", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2078191986, 47.09966335 ], [ -122.2024622981, 47.0953255419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2257, "RouteIdentifier": "014", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4036102525, 45.6993830974 ], [ -121.3949453382, 45.6982231146 ], [ -121.3829577285, 45.705115008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2258, "RouteIdentifier": "173", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6937254895, 48.039290469 ], [ -119.6904472484, 48.0614812616 ], [ -119.7191866099, 48.0659006898 ], [ -119.7247200058, 48.0764391164 ], [ -119.7432426466, 48.0767810116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2259, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6107084925, 45.647880158 ], [ -122.5974622536, 45.6497283577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2260, "RouteIdentifier": "507", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9375719089, 46.7539095544 ], [ -122.9232462415, 46.7732075734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2261, "RouteIdentifier": "003", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6690587997, 47.7496337056 ], [ -122.6513721365, 47.7650327884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2262, "RouteIdentifier": "101", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0415185162, 46.3088525506 ], [ -124.0433848336, 46.3088545203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2263, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4499029188, 48.52736977 ], [ -121.4310307746, 48.5268378739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2264, "RouteIdentifier": "207", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7149150326, 47.8093423824 ], [ -120.7169624148, 47.8114972148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2265, "RouteIdentifier": "124", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1599270282, 46.2701832514 ], [ -118.1547729075, 46.2701299684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2266, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2019957815, 47.9271375522 ], [ -122.1958275845, 47.933021241 ], [ -122.1992457496, 47.9616091692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2267, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6494078234, 47.8021122484 ], [ -122.6433193726, 47.8181068479 ], [ -122.6300911575, 47.828750694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2268, "RouteIdentifier": "125", "AADT": 400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3695963283, 46.2371507033 ], [ -118.3397268843, 46.2877259981 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2269, "RouteIdentifier": "007", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3579343412, 46.9802243895 ], [ -122.3592526243, 46.9990763609 ], [ -122.3689169614, 47.0093696581 ], [ -122.3694769065, 47.0202996688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2270, "RouteIdentifier": "528", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1430161763, 48.0536913707 ], [ -122.140842334, 48.0536557708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2271, "RouteIdentifier": "223", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2461650816, 46.3276930204 ], [ -120.1998163094, 46.3311315335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2272, "RouteIdentifier": "090", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2000543534, 47.5787190739 ], [ -122.1810983468, 47.5797602872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2273, "RouteIdentifier": "260", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8511888124, 46.6508402423 ], [ -118.8083617087, 46.6349016892 ], [ -118.7623864594, 46.6345593673 ], [ -118.7266393872, 46.6292584921 ], [ -118.7090644842, 46.6200739782 ], [ -118.6519632501, 46.6233243007 ], [ -118.6414940671, 46.631430572 ], [ -118.6195197634, 46.6393677099 ], [ -118.6117553593, 46.6490485607 ], [ -118.5884939945, 46.6478136609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2274, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9365504311, 48.5667945753 ], [ -117.9526076358, 48.5773917833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2275, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3154029102, 47.6847104504 ], [ -122.3151264897, 47.6852564017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2276, "RouteIdentifier": "300", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8272592504, 47.454059906 ], [ -122.8269220429, 47.4513256561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2277, "RouteIdentifier": "203", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.887427285, 47.5718451267 ], [ -121.9131923547, 47.5965925443 ], [ -121.9096907598, 47.6249890342 ], [ -121.9162959671, 47.6372969855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2278, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9709937008, 47.2786751606 ], [ -122.9601733292, 47.2820553805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2279, "RouteIdentifier": "292", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413735185, 48.0566594172 ], [ -117.704874261, 48.0670618915 ], [ -117.6731595914, 48.062248924 ], [ -117.6377513794, 48.0630093485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2280, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2747094226, 47.4287124851 ], [ -122.2690111833, 47.4377897666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2281, "RouteIdentifier": "104SPAURORA", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3388800342, 47.7781146434 ], [ -122.3462274907, 47.7777955542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2282, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3161032894, 46.3779887108 ], [ -120.318493365, 46.3762548928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2283, "RouteIdentifier": "501", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6990664231, 45.6412649874 ], [ -122.7041423514, 45.6445770609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2284, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0051151642, 46.203549009 ], [ -118.9642066552, 46.1752198269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2285, "RouteIdentifier": "171", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3165120723, 47.1009448607 ], [ -119.3155342499, 47.1016304023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2286, "RouteIdentifier": "305", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5155441649, 47.6357793786 ], [ -122.5198277142, 47.6444797699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2287, "RouteIdentifier": "027", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2106226505, 47.5366364133 ], [ -117.2147701782, 47.5416733174 ], [ -117.2144352224, 47.561959096 ], [ -117.2229100098, 47.5730667428 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2288, "RouteIdentifier": "109SPLONNGR", "AADT": 490 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.921093144, 46.9895618993 ], [ -123.89576752, 46.9948947943 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2289, "RouteIdentifier": "405", "AADT": 169000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2035861347, 47.4751805773 ], [ -122.2002742877, 47.4803239853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2290, "RouteIdentifier": "182", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3623803381, 46.2440184404 ], [ -119.3531195123, 46.244832268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2291, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9259280616, 46.1463384374 ], [ -122.923520705, 46.1460689953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2292, "RouteIdentifier": "124", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.340887862, 46.298695623 ], [ -118.3193801568, 46.2995221994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2293, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5961697621, 48.4872753789 ], [ -121.5901063759, 48.4885682085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2294, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3731501041, 45.946680716 ], [ -119.3513796962, 45.9446481587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2295, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2607429983, 47.2688990575 ], [ -122.2583295166, 47.2805652971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2296, "RouteIdentifier": "116", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7784777487, 48.0301901157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2297, "RouteIdentifier": "529", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903978445, 48.0112262144 ], [ -122.1860840265, 48.0219150499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2298, "RouteIdentifier": "539", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4861031431, 48.7826912501 ], [ -122.4860962019, 48.7836284125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2299, "RouteIdentifier": "225", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4903066566, 46.2723445732 ], [ -119.4942417879, 46.2795434721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2300, "RouteIdentifier": "163", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158979379, 47.271095951 ], [ -122.5157647305, 47.2798223974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2301, "RouteIdentifier": "007", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.1936544175, 46.7645544522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2302, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.436333253, 48.9342146304 ], [ -119.4369512503, 48.9352749432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2303, "RouteIdentifier": "501COVANCVR", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6693837427, 45.6318469625 ], [ -122.6659555363, 45.631898547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2304, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2987245907, 48.0961085325 ], [ -123.2912512618, 48.0954124931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2305, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8542222764, 46.9751663099 ], [ -123.8318384982, 46.9750779012 ], [ -123.8278685905, 46.9716853763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2306, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3797163114, 47.6619387511 ], [ -117.3720613135, 47.6630728307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2307, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6542600354, 46.633500722 ], [ -123.6446017537, 46.6167403971 ], [ -123.6251575619, 46.6007463777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2308, "RouteIdentifier": "027", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1830985465, 46.7284162635 ], [ -117.1825112217, 46.7290233594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2309, "RouteIdentifier": "020", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.657837721, 48.2913280407 ], [ -122.6575921778, 48.2930446922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2310, "RouteIdentifier": "240", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3049039776, 46.2928299037 ], [ -119.306688915, 46.2788022155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2311, "RouteIdentifier": "174SPLEAHY", "AADT": 60 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3894049745, 47.9191328124 ], [ -119.388810295, 47.917927027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2312, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1720418434, 47.3177075499 ], [ -123.1814871799, 47.2998745064 ], [ -123.1749055913, 47.289039031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2313, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7840000547, 47.472842312 ], [ -118.7842634529, 47.6121559913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2314, "RouteIdentifier": "504", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8450829264, 46.2935798136 ], [ -122.8351070251, 46.2928789335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2315, "RouteIdentifier": "007", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3573827719, 46.9297368504 ], [ -122.35740693, 46.9366422092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2316, "RouteIdentifier": "014", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8772638059, 45.6967885603 ], [ -121.8293481757, 45.7148576644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2317, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4002907153, 47.3993957355 ], [ -121.3901248718, 47.3932302588 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2318, "RouteIdentifier": "155", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5195878632, 48.4074511711 ], [ -119.5216611447, 48.408142504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2319, "RouteIdentifier": "026", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4532860957, 46.8561637408 ], [ -119.3464529029, 46.8107648966 ], [ -119.2569845795, 46.810235263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2320, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2842524512, 46.4056644379 ], [ -120.2682351433, 46.4011783488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2321, "RouteIdentifier": "105", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0910571193, 46.7988293856 ], [ -124.1062823585, 46.8495197001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2322, "RouteIdentifier": "516", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2373624055, 47.3779147052 ], [ -122.2306881417, 47.3778354946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2323, "RouteIdentifier": "303", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6293597294, 47.645556277 ], [ -122.6335380628, 47.6490423139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2324, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8906810599, 46.4350146931 ], [ -123.8576433404, 46.4293681134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2325, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8350369221, 45.6826649603 ], [ -120.8176061098, 45.6914545332 ], [ -120.8153769492, 45.6979289463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2326, "RouteIdentifier": "002", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9638147974, 47.8578165968 ], [ -121.9270653363, 47.8558599343 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2327, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7405471815, 45.9025011825 ], [ -122.7497223484, 45.9177650679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2328, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8637575163, 47.0867688468 ], [ -118.7208744803, 47.0861552891 ], [ -118.6756358928, 47.096990195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2329, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4989356807, 46.6492770518 ], [ -120.5109061448, 46.6442084502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2330, "RouteIdentifier": "162", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0947304936, 47.139868914 ], [ -122.0915871421, 47.1407602078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2331, "RouteIdentifier": "005", "AADT": 230000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2687488564, 47.4721785489 ], [ -122.2710239707, 47.4775799592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2332, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5338227757, 46.2908205864 ], [ -118.4933906402, 46.2879872582 ], [ -118.4287615677, 46.2992203509 ], [ -118.3562019376, 46.2999263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2333, "RouteIdentifier": "097AR", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1748375091, 47.7679692019 ], [ -120.16517224, 47.7707983028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2334, "RouteIdentifier": "291", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5074826876, 47.7443815862 ], [ -117.5203800137, 47.7582970266 ], [ -117.5472646731, 47.7659238189 ], [ -117.5450441479, 47.7703887266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2335, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3247753913, 47.4057300867 ], [ -122.3251389542, 47.4075113691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2336, "RouteIdentifier": "405", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1840627382, 47.7606381882 ], [ -122.1858412261, 47.7634469513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2337, "RouteIdentifier": "005", "AADT": 201000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2946343778, 47.3643588625 ], [ -122.2900428301, 47.3837562417 ], [ -122.2920536467, 47.4006698004 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2338, "RouteIdentifier": "501", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7270084609, 45.8156734191 ], [ -122.7059518963, 45.815636231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2339, "RouteIdentifier": "024", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7360584616, 46.6468473933 ], [ -119.7073340223, 46.6539357057 ], [ -119.6862564867, 46.6685040964 ], [ -119.6817502839, 46.6750016961 ], [ -119.682116182, 46.701919444 ], [ -119.6415240103, 46.7308902277 ], [ -119.6270510219, 46.735547573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2340, "RouteIdentifier": "002", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5772145701, 47.6429329048 ], [ -117.5739759223, 47.6429386574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2341, "RouteIdentifier": "599", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2744143572, 47.4850652066 ], [ -122.2816435896, 47.4911976441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2342, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8964164726, 47.6985807685 ], [ -122.8979905603, 47.6935842347 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2343, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6757381114, 47.0813300502 ], [ -122.6588479006, 47.0844194177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2344, "RouteIdentifier": "215", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.540967429, 48.399614794 ], [ -119.5286763644, 48.4060519843 ], [ -119.5284987148, 48.409540793 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2345, "RouteIdentifier": "006", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2963177918, 46.576533839 ], [ -123.2943647479, 46.5783948474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2346, "RouteIdentifier": "101", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9316246804, 47.0277555011 ], [ -122.9281707668, 47.0261889833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2347, "RouteIdentifier": "127", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7913837991, 46.6144419053 ], [ -117.7931037677, 46.617894857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2348, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0468945815, 46.4199295935 ], [ -117.045583721, 46.4199358176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2349, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1924425951, 47.69589869 ], [ -117.1520827446, 47.701179935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2350, "RouteIdentifier": "104", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3828654748, 47.8126422945 ], [ -122.3819741537, 47.8121145139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2351, "RouteIdentifier": "163", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5153285839, 47.3019754864 ], [ -122.514518613, 47.3040619068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2352, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3538626087, 47.8381496765 ], [ -117.3555823489, 47.8588071968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2353, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3719971108, 46.837063334 ], [ -120.3539257338, 46.8125656869 ], [ -120.3617492551, 46.8021851778 ], [ -120.3587542368, 46.7928184397 ], [ -120.3728367715, 46.7819036429 ], [ -120.380605613, 46.7593890779 ], [ -120.3901167664, 46.7494451154 ], [ -120.3864596626, 46.7305671826 ], [ -120.4052961815, 46.7241356625 ], [ -120.4136797599, 46.7142727147 ], [ -120.433016451, 46.7109789933 ], [ -120.4433236404, 46.6963442824 ], [ -120.4759788061, 46.681083667 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2354, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2062759693, 47.9180096463 ], [ -122.2074382827, 47.9188560677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2355, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1674102459, 47.2309146691 ], [ -121.1487724368, 47.2203984665 ], [ -121.1352981522, 47.2179205415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2356, "RouteIdentifier": "097", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4353841771, 48.9477318207 ], [ -119.4362799721, 48.9485573498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2357, "RouteIdentifier": "082", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3509475564, 46.221897885 ], [ -119.3418776019, 46.2095624858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2358, "RouteIdentifier": "097", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2150358593, 47.6419810064 ], [ -120.2141719319, 47.6561755599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2359, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.337752153, 47.4679946321 ], [ -120.3355466203, 47.469450059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2360, "RouteIdentifier": "501", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.696160252, 45.640445465 ], [ -122.6990664231, 45.6412649874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2361, "RouteIdentifier": "270", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.144376428, 46.7217073773 ], [ -117.0878490265, 46.7317943321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2362, "RouteIdentifier": "509", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342994903, 47.3048223444 ], [ -122.4275808374, 47.3168023421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2363, "RouteIdentifier": "002", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0424962708, 48.1830235936 ], [ -117.0424418871, 48.1840101705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2364, "RouteIdentifier": "546", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3311899204, 48.9637972205 ], [ -122.3092045302, 48.9638603752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2365, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2193213409, 48.1133107789 ], [ -117.143191344, 48.145029846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2366, "RouteIdentifier": "821", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4553319322, 46.8189351153 ], [ -120.4606744462, 46.8275834233 ], [ -120.4543648479, 46.8377527814 ], [ -120.4626117535, 46.8442414628 ], [ -120.4613240439, 46.8503228942 ], [ -120.4652792529, 46.8539700858 ], [ -120.4821044215, 46.8553247767 ], [ -120.4794449453, 46.8672769035 ], [ -120.4952645744, 46.8767882515 ], [ -120.4795790401, 46.8754558646 ], [ -120.4748174542, 46.8828844989 ], [ -120.4922204016, 46.8840899703 ], [ -120.5035033529, 46.8966105451 ], [ -120.4928844335, 46.9020156297 ], [ -120.504769142, 46.910050121 ], [ -120.5100857559, 46.9261498028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2367, "RouteIdentifier": "503SPCOUGAR", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3547293908, 46.000879137 ], [ -122.3259068837, 46.0175863638 ], [ -122.3143915695, 46.0302126494 ], [ -122.3105284378, 46.0417807035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2368, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470734178, 47.3105055416 ], [ -122.2447763261, 47.3180985045 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2369, "RouteIdentifier": "509", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3177802121, 47.3354233521 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2370, "RouteIdentifier": "522", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1680072039, 47.7574084421 ], [ -122.1598186601, 47.7602527368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2371, "RouteIdentifier": "027", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.132009721, 47.2741237154 ], [ -117.1591731962, 47.2805495454 ], [ -117.1640556864, 47.2925563208 ], [ -117.1644445088, 47.3113387619 ], [ -117.1924139288, 47.3317954981 ], [ -117.1780365249, 47.3581047791 ], [ -117.1809160774, 47.3646637735 ], [ -117.174270773, 47.3797829152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2372, "RouteIdentifier": "536", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3361482633, 48.4175077145 ], [ -122.3336059484, 48.4174954237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2373, "RouteIdentifier": "397", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1071132149, 46.2075458387 ], [ -119.1020141523, 46.2227420627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2374, "RouteIdentifier": "161", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2930833684, 47.1256521371 ], [ -122.2930223395, 47.1364690107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2375, "RouteIdentifier": "305", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6456845104, 47.7518428642 ], [ -122.6524298189, 47.7572284351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2376, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9196173248, 46.147218448 ], [ -122.9103992419, 46.147036878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2377, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2099835359, 48.0853786216 ], [ -123.1998425884, 48.0838545215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2378, "RouteIdentifier": "012", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9099471422, 46.0583086547 ], [ -118.9075966187, 46.0562013963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2379, "RouteIdentifier": "509", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3597169341, 47.2569450563 ], [ -122.3574461631, 47.26443574 ], [ -122.3794534635, 47.2749697278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2380, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3223743924, 48.543587961 ], [ -120.3152493003, 48.5356655747 ], [ -120.2746920614, 48.5208934314 ], [ -120.2595111993, 48.5117976986 ], [ -120.2514198263, 48.501356904 ], [ -120.2272728853, 48.4882565885 ], [ -120.1928315035, 48.4779351239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2381, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2831461268, 48.0697565692 ], [ -124.2809185137, 48.0699570958 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2382, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2966747787, 47.399436909 ], [ -122.2967521172, 47.4190994152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2383, "RouteIdentifier": "005", "AADT": 161000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321753728, 47.6660998622 ], [ -122.3217057205, 47.670374577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2384, "RouteIdentifier": "129", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0448176781, 46.3941409901 ], [ -117.044476644, 46.4040732772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2385, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112120534, 47.6843406722 ], [ -117.4111934872, 47.6661553637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2386, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5945415128, 48.3551234308 ], [ -119.5916519331, 48.3502168576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2387, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4957046659, 48.4279752811 ], [ -119.4793203116, 48.4427106768 ], [ -119.47455389, 48.4565074029 ], [ -119.504726913, 48.4971895169 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2388, "RouteIdentifier": "006", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0644490268, 46.6269757944 ], [ -123.0540392956, 46.6280909268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2389, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111435799, 47.6590755437 ], [ -117.411162631, 47.6609810366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2390, "RouteIdentifier": "125", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3484813064, 46.0630851666 ], [ -118.3491644277, 46.0639266399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2391, "RouteIdentifier": "012", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9916818783, 46.3128548734 ], [ -117.9908694542, 46.3149359546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2392, "RouteIdentifier": "017", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.285225107, 47.1460797472 ], [ -119.2938851325, 47.1496369098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2393, "RouteIdentifier": "532", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4474690781, 48.2419384688 ], [ -122.3792847178, 48.2409791825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2394, "RouteIdentifier": "405", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2651299683, 47.4614024105 ], [ -122.2629302431, 47.4619229895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2395, "RouteIdentifier": "507", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6207841642, 46.9343746994 ], [ -122.6075822125, 46.9413631902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2396, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3236818665, 46.4364355288 ], [ -117.3010762949, 46.426715932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2397, "RouteIdentifier": "262", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4607123542, 46.9566297084 ], [ -119.3970757589, 46.9577736802 ], [ -119.3641548064, 46.9706876163 ], [ -119.3337342412, 46.9675559139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2398, "RouteIdentifier": "530", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0696796026, 48.23396758 ], [ -122.061555391, 48.2363292108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2399, "RouteIdentifier": "173", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6765472999, 48.0110069203 ], [ -119.6774926459, 48.0103631519 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2400, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8482332243, 46.8586162126 ], [ -122.8467102726, 46.8590457137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2401, "RouteIdentifier": "026", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6550649229, 46.809179515 ], [ -117.6413017681, 46.8104615568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2402, "RouteIdentifier": "260", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -118.9752267156, 46.6637302723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2403, "RouteIdentifier": "005", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2520093383, 47.8571419291 ], [ -122.2369577595, 47.8790697395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2404, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9301268685, 48.5264239752 ], [ -121.8440165577, 48.5411010945 ], [ -121.8251820674, 48.538972313 ], [ -121.7933270019, 48.5435073143 ], [ -121.7727025488, 48.5378235193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2405, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2884988914, 48.963997296 ], [ -122.2762249884, 48.9650220251 ], [ -122.2715285544, 48.9748696672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2406, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0508055026, 47.0857677636 ], [ -119.0351635573, 47.0854260018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2407, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8021513026, 47.4912692217 ], [ -121.7916752446, 47.4832690795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2408, "RouteIdentifier": "203", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9701538655, 47.8449608786 ], [ -121.9707726081, 47.8570932647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2409, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9028685233, 46.7882975717 ], [ -117.8494574336, 46.7998322141 ], [ -117.8101743201, 46.8136488638 ], [ -117.7811267138, 46.8048818024 ], [ -117.7571242819, 46.8027239184 ], [ -117.716713311, 46.8103507878 ], [ -117.6914546669, 46.808715409 ], [ -117.6656137967, 46.8138014312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2410, "RouteIdentifier": "163", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158542466, 47.265516627 ], [ -122.5158418422, 47.2671438187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2411, "RouteIdentifier": "195", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4497167189, 47.6443092509 ], [ -117.4516120669, 47.6469017259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2412, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0175921586, 46.4482685616 ], [ -119.0104657492, 46.4807072897 ], [ -119.0151184142, 46.4974458958 ], [ -119.0114262534, 46.514580199 ], [ -119.0147753835, 46.5330492641 ], [ -118.9959923537, 46.5612283389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2413, "RouteIdentifier": "240", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2563379619, 46.2519667264 ], [ -119.2461272383, 46.2409894234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2414, "RouteIdentifier": "546", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.352240221, 48.9636327884 ], [ -122.3311899204, 48.9637972205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2415, "RouteIdentifier": "014", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4798570338, 45.5857517212 ], [ -122.466151024, 45.5838225286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2416, "RouteIdentifier": "395", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1591587709, 46.198638478 ], [ -119.1588244536, 46.2022230907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2417, "RouteIdentifier": "304", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6673528658, 47.5490597613 ], [ -122.65895148, 47.5539369573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2418, "RouteIdentifier": "305", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6377776889, 47.7367740872 ], [ -122.6391820613, 47.7464774496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2419, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5114853073, 46.6260626792 ], [ -120.5069976359, 46.6257073162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2420, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6260861992, 47.428820891 ], [ -121.6131737911, 47.4285755837 ], [ -121.5903662442, 47.4195793911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2421, "RouteIdentifier": "823", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5271133231, 46.6559435532 ], [ -120.5258992491, 46.6579574794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2422, "RouteIdentifier": "024", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1766968441, 46.8046382853 ], [ -119.1767648181, 46.809746805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2423, "RouteIdentifier": "097", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6040808647, 47.5533601555 ], [ -120.5989270885, 47.5553611869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2424, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5592550475, 46.9339839558 ], [ -122.5556609589, 46.9361969309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2425, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8650512546, 46.5465667665 ], [ -122.8011596478, 46.5439467679 ], [ -122.747421571, 46.532339046 ], [ -122.7197711644, 46.5320488595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2426, "RouteIdentifier": "125", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3805172543, 46.0318115343 ], [ -118.3627410114, 46.0415078207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2427, "RouteIdentifier": "101", "AADT": 94000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9134448464, 47.0253389513 ], [ -122.9094874642, 47.0217506114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2428, "RouteIdentifier": "005", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3414018352, 48.4590968726 ], [ -122.3424452974, 48.4769135735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2429, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3426003903, 48.5134790031 ], [ -122.3515399574, 48.5305200558 ], [ -122.3502009691, 48.5531647768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2430, "RouteIdentifier": "025", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7772882632, 48.9177594411 ], [ -117.7760452677, 48.928358074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2431, "RouteIdentifier": "141", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5204986539, 45.7575928617 ], [ -121.52754616, 45.7606234938 ], [ -121.5279890656, 45.7661176923 ], [ -121.5121334624, 45.776374164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2432, "RouteIdentifier": "525", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5339872909, 48.0097622963 ], [ -122.5414842419, 48.011987346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2433, "RouteIdentifier": "101", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7367980221, 46.6805525735 ], [ -123.7303182124, 46.6823391023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2434, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7334805954, 47.7623342902 ], [ -118.7212439358, 47.7631466252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2435, "RouteIdentifier": "516", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079523143, 47.3909890982 ], [ -122.3004124588, 47.3957738513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2436, "RouteIdentifier": "003", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6872359291, 47.5754584422 ], [ -122.6901316239, 47.5798542029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2437, "RouteIdentifier": "528", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.139335004, 48.0536511041 ], [ -122.1193130939, 48.0535474274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2438, "RouteIdentifier": "106", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0732200773, 47.347496595 ], [ -123.0293255922, 47.3508042021 ], [ -122.9868725272, 47.3733995692 ], [ -122.9487451622, 47.3816100186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2439, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3064040791, 47.7725385808 ], [ -122.302597486, 47.7699869803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2440, "RouteIdentifier": "129", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0533201894, 46.3352565084 ], [ -117.0523623815, 46.336389697 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2441, "RouteIdentifier": "116", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7784777487, 48.0301901157 ], [ -122.7579724158, 48.0317552349 ], [ -122.745826823, 48.0252187014 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2442, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0719934512, 46.2494836918 ], [ -119.0677532163, 46.2468045298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2443, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2809185137, 48.0699570958 ], [ -124.2359717776, 48.0661116568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2444, "RouteIdentifier": "008", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3875067629, 47.0051795465 ], [ -123.382100299, 47.0068490189 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2445, "RouteIdentifier": "017", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2626695043, 47.1398689271 ], [ -119.2701126525, 47.1419665364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2446, "RouteIdentifier": "004", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1771557033, 46.1884708528 ], [ -123.1680910014, 46.1910275512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2447, "RouteIdentifier": "008", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2311640554, 47.0504387055 ], [ -123.175467152, 47.0586866535 ], [ -123.1546990371, 47.0552496291 ], [ -123.1112802946, 47.0325956026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2448, "RouteIdentifier": "397", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1020141523, 46.2227420627 ], [ -119.101122588, 46.2240920293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2449, "RouteIdentifier": "005", "AADT": 145000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2369577595, 47.8790697395 ], [ -122.2268964445, 47.8867919049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2450, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8271538347, 45.8696991389 ], [ -119.7799581015, 45.8660328507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2451, "RouteIdentifier": "105", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0824521881, 46.7544029188 ], [ -124.0813424614, 46.7757934066 ], [ -124.0868475896, 46.7892994633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2452, "RouteIdentifier": "002", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1697766801, 47.9782340718 ], [ -122.1430545767, 47.9779093221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2453, "RouteIdentifier": "103", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0536804079, 46.3675828583 ], [ -124.053438936, 46.3706285622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2454, "RouteIdentifier": "121", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9420074404, 46.8959196782 ], [ -122.9086394896, 46.8991466854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2455, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.865717202, 47.0813852641 ], [ -119.8540700226, 47.0883824388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2456, "RouteIdentifier": "024", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1767648181, 46.809746805 ], [ -119.1767815159, 46.8114994409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2457, "RouteIdentifier": "260", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4227108674, 46.6969057794 ], [ -118.4122698552, 46.7012162608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2458, "RouteIdentifier": "405", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1863875328, 47.6405133468 ], [ -122.1869038184, 47.6636304786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2459, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9389895243, 46.9474951907 ], [ -122.9354180565, 46.9596763245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2460, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4871781519, 46.6713847636 ], [ -120.49646088, 46.6596353982 ], [ -120.4989356807, 46.6492770518 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2461, "RouteIdentifier": "501", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6914263595, 45.6358581387 ], [ -122.6938570638, 45.637225155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2462, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6476283043, 46.9765640486 ], [ -123.6272286689, 46.9765532394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2463, "RouteIdentifier": "002", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111019043, 47.687150654 ], [ -117.4111371057, 47.6944973222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2464, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7831803897, 46.6698379874 ], [ -123.7671904335, 46.6744470342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2465, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4351007945, 47.7154472911 ], [ -117.4364218141, 47.7154395468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2466, "RouteIdentifier": "009", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1294755917, 48.1987611119 ], [ -122.1296885992, 48.2003311116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2467, "RouteIdentifier": "525", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.588157825, 48.1230525484 ], [ -122.5946667739, 48.1516803947 ], [ -122.6064434153, 48.1635594746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2468, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6532972455, 47.5655345715 ], [ -122.6511293212, 47.5655459942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2469, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.668828194, 46.6101927227 ], [ -121.6663638136, 46.6141909864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2470, "RouteIdentifier": "141", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5888375562, 45.9758111476 ], [ -121.6125293313, 45.9625721062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2471, "RouteIdentifier": "101", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7397102898, 46.7012896138 ], [ -123.7437635985, 46.7153016927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2472, "RouteIdentifier": "005RL005EXP", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3304093084, 47.6079523826 ], [ -122.3286460195, 47.6218398679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2473, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0051653665, 47.2658148473 ], [ -123.0029655026, 47.2660406347 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2474, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588364929, 46.2122195073 ], [ -119.1509779825, 46.2148765642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2475, "RouteIdentifier": "548", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7335974346, 48.9792119734 ], [ -122.7482397955, 48.9864873577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2476, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8859488488, 46.5202816438 ], [ -123.8934297223, 46.5484187108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2477, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857699354, 46.9900928031 ], [ -123.8857527631, 46.9927676585 ], [ -123.8939276953, 46.9931418107 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2478, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1898949617, 47.9790684157 ], [ -122.188666249, 47.9794305969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2479, "RouteIdentifier": "011", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.410855576, 48.5508465619 ], [ -122.4221853179, 48.5654425158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2480, "RouteIdentifier": "009", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.2652637647, 49.0023331331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2481, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578488817, 48.2895410127 ], [ -122.657837721, 48.2913280407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2482, "RouteIdentifier": "025", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1703775752, 47.7449382474 ], [ -118.1736598311, 47.7883685846 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2483, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1625335373, 47.628203114 ], [ -118.159705125, 47.6427340926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2484, "RouteIdentifier": "243", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9070616699, 46.6806375323 ], [ -119.9166346542, 46.6972957966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2485, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063789003, 47.9520311616 ], [ -122.094618564, 47.9514925058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2486, "RouteIdentifier": "542", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6959320726, 48.9034555044 ], [ -121.6713565113, 48.8871755279 ], [ -121.6683746385, 48.8735964021 ], [ -121.6739808813, 48.8758038472 ], [ -121.6594897464, 48.8688630894 ], [ -121.6580262283, 48.8640419461 ], [ -121.6547619135, 48.8663081545 ], [ -121.6589172471, 48.8590433627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2487, "RouteIdentifier": "021", "AADT": 130 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.690803641, 47.9468811492 ], [ -118.6917968125, 47.9537164275 ], [ -118.7001439176, 47.9612741069 ], [ -118.7007666934, 47.9715755988 ], [ -118.6932366444, 47.9858042203 ], [ -118.6928786502, 47.9958498529 ], [ -118.6865576547, 48.0003976807 ], [ -118.6881097384, 48.0051631789 ], [ -118.6811911375, 48.013475131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2488, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7300552535, 48.6419111855 ], [ -118.7010950406, 48.6529300754 ], [ -118.6850050975, 48.6506492932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2489, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7155190209, 48.2762460851 ], [ -117.7155515131, 48.2809311397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2490, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5813429939, 47.3109726485 ], [ -122.5934601063, 47.3246446179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2491, "RouteIdentifier": "021", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6425828517, 46.9708731434 ], [ -118.6598639151, 46.9705949371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2492, "RouteIdentifier": "509", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4350299238, 47.2432097813 ], [ -122.4199297039, 47.2443571022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2493, "RouteIdentifier": "004", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7849363108, 46.3717532207 ], [ -123.7567194267, 46.3556632852 ], [ -123.7347135662, 46.3543537474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2494, "RouteIdentifier": "017", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3647672058, 47.6193901694 ], [ -119.3536592638, 47.6310538708 ], [ -119.3595018472, 47.6413739111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2495, "RouteIdentifier": "904", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6730634499, 47.4637949376 ], [ -117.6232200849, 47.4699050473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2496, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2827858737, 47.6810526384 ], [ -117.2799050476, 47.6816356586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2497, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3041069002, 47.4122978378 ], [ -120.3055238703, 47.415408638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2498, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3405498465, 46.0739014753 ], [ -118.3255247068, 46.0817350589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2499, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6082425787, 48.4287878768 ], [ -122.6067917986, 48.4370383266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2500, "RouteIdentifier": "544", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4857687926, 48.8914094656 ], [ -122.464240563, 48.891667265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2501, "RouteIdentifier": "101COABERDN", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8144960068, 46.9745245963 ], [ -123.8141567727, 46.974248551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2502, "RouteIdentifier": "509", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3924369341, 47.3216137304 ], [ -122.3903629125, 47.3216340622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2503, "RouteIdentifier": "005", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9090833449, 47.005153403 ], [ -122.907079956, 47.0085282131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2504, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2978771665, 47.6166084807 ], [ -119.2928419495, 47.6157241973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2505, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6661977768, 48.2841306381 ], [ -122.6596669668, 48.2863597414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2506, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5785447315, 46.6857085787 ], [ -121.5789679391, 46.6896872972 ], [ -121.562292404, 46.6954679099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2507, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3134257955, 47.2979565948 ], [ -122.3133300405, 47.303094966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2508, "RouteIdentifier": "005", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6742471673, 45.7884633898 ], [ -122.6813333636, 45.8063615363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2509, "RouteIdentifier": "012", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3592834167, 46.069578111 ], [ -118.3538671999, 46.0696978456 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2510, "RouteIdentifier": "104", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563306341, 47.80561327 ], [ -122.5553173378, 47.8095387896 ], [ -122.5310414126, 47.8095136583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2511, "RouteIdentifier": "509", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.325629622, 47.5091003278 ], [ -122.3329165329, 47.5234893652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2512, "RouteIdentifier": "202", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1404542596, 47.7309772963 ], [ -122.1317677799, 47.7144009727 ], [ -122.1321920922, 47.6952826792 ], [ -122.1282535153, 47.6874070809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2513, "RouteIdentifier": "706", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9814105695, 46.7572813912 ], [ -121.9474994672, 46.7550419284 ], [ -121.9273783017, 46.7493552016 ], [ -121.9220375425, 46.7426875865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2514, "RouteIdentifier": "026", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.735554338, 46.7937508078 ], [ -118.5684177308, 46.7947224844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2515, "RouteIdentifier": "082", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5009591571, 46.6232675075 ], [ -120.4880037429, 46.6075314018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2516, "RouteIdentifier": "903", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9401799875, 47.1960778907 ], [ -120.9437717492, 47.1965328965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2517, "RouteIdentifier": "105SPWESTPT", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1042307641, 46.8878717782 ], [ -124.104302567, 46.8959740416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2518, "RouteIdentifier": "004", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6384906851, 46.3352078778 ], [ -123.6214626929, 46.3469762238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2519, "RouteIdentifier": "395", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1277899267, 46.2435755653 ], [ -119.1266194124, 46.246327603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2520, "RouteIdentifier": "012", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9741828621, 46.3270182624 ], [ -117.9793951542, 46.3369573434 ], [ -117.9785387727, 46.3464638557 ], [ -117.9524909367, 46.3563728876 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2521, "RouteIdentifier": "202", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8655443332, 47.5625960148 ], [ -121.8347869038, 47.5539873994 ], [ -121.8406843431, 47.5514635735 ], [ -121.8313657266, 47.5369638292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2522, "RouteIdentifier": "203", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9856625426, 47.7451686523 ], [ -121.9845733907, 47.7513804106 ], [ -121.9557053136, 47.7697208879 ], [ -121.9740171693, 47.7885071981 ], [ -121.9823417916, 47.8127801291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2523, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7542359838, 46.978403612 ], [ -123.7445979677, 46.9735726358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2524, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0130934852, 46.3059829046 ], [ -119.9861758662, 46.3060765495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2525, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1251815178, 48.2002933787 ], [ -122.1236120707, 48.2002782394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2526, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4371558585, 48.7076989882 ], [ -119.4360006417, 48.7109840533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2527, "RouteIdentifier": "014", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158228483, 45.5949143216 ], [ -122.5156287011, 45.5948612042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2528, "RouteIdentifier": "548", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5964124559, 48.8920606997 ], [ -122.5983885994, 48.8916617976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2529, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0078653292, 47.872487544 ], [ -121.9908494983, 47.8657174136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2530, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3648165287, 46.8790297995 ], [ -117.364773078, 46.8799063068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2531, "RouteIdentifier": "016", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.493797523, 47.2348611365 ], [ -122.5100030807, 47.2490381759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2532, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.396336916, 47.755353533 ], [ -117.3946951929, 47.7570939377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2533, "RouteIdentifier": "014", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4598946117, 45.7123396511 ], [ -121.4253522035, 45.6996005372 ], [ -121.4036102525, 45.6993830974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2534, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9598608634, 46.7119804203 ], [ -122.9564753528, 46.7112869506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2535, "RouteIdentifier": "503SPCOUGAR", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.305684987, 46.0490596047 ], [ -122.2748305032, 46.0636006917 ], [ -122.2464336415, 46.0556053087 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2536, "RouteIdentifier": "522", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0654931199, 47.8179312301 ], [ -122.0562501932, 47.8299985078 ], [ -122.0295956843, 47.8298762266 ], [ -121.9992299624, 47.8523397018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2537, "RouteIdentifier": "520", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1364781908, 47.6384421787 ], [ -122.1351290082, 47.640071799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2538, "RouteIdentifier": "503", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5469856665, 45.8168217556 ], [ -122.5220688196, 45.8532467256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2539, "RouteIdentifier": "526", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2328875048, 47.9233521925 ], [ -122.2231765605, 47.9226576514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2540, "RouteIdentifier": "009", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1299980522, 48.2057570202 ], [ -122.143389182, 48.2246779017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2541, "RouteIdentifier": "542", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2096024616, 48.821069883 ], [ -122.2025293491, 48.8159609661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2542, "RouteIdentifier": "002", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9379417422, 47.660685361 ], [ -117.9167021499, 47.6653110039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2543, "RouteIdentifier": "016", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4919517544, 47.2348877891 ], [ -122.493797523, 47.2348611365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2544, "RouteIdentifier": "510", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7648711374, 47.0612918893 ], [ -122.7645455776, 47.0564842559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2545, "RouteIdentifier": "510", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691647237, 47.0115068577 ], [ -122.6881983355, 47.0090276156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2546, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3499363576, 47.2430303348 ], [ -122.3365632968, 47.2450397981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2547, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119629623, 47.3522809023 ], [ -122.3092462539, 47.3580817971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2548, "RouteIdentifier": "012", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1579964315, 46.1391116684 ], [ -118.1502609571, 46.1420400459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2549, "RouteIdentifier": "097", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3205033055, 46.3313990906 ], [ -120.3205390391, 46.3386430967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2550, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5808735402, 47.3353309836 ], [ -120.568278873, 47.3360585763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2551, "RouteIdentifier": "516", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022136155, 47.3725592844 ], [ -122.2006150998, 47.3722720586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2552, "RouteIdentifier": "002", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7334112553, 47.6434838531 ], [ -117.690253067, 47.6430952782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2553, "RouteIdentifier": "524", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3250529195, 47.8213297085 ], [ -122.3228862469, 47.8212957342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2554, "RouteIdentifier": "410", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2574451577, 47.2018821101 ], [ -122.254047685, 47.2009435128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2555, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6663638136, 46.6141909864 ], [ -121.6577255991, 46.6239161848 ], [ -121.6160035758, 46.6478940682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2556, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9727960208, 46.3237819677 ], [ -117.9741828621, 46.3270182624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2557, "RouteIdentifier": "160", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5243096729, 47.5048277184 ], [ -122.5104823423, 47.5048487373 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2558, "RouteIdentifier": "005", "AADT": 179000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224579886, 47.646211059 ], [ -122.322462732, 47.6496170314 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2559, "RouteIdentifier": "026", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2569845795, 46.810235263 ], [ -119.2181964942, 46.8141634951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2560, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4460453581, 46.3716676172 ], [ -119.4406556774, 46.3808764649 ], [ -119.4228141497, 46.3832991036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2561, "RouteIdentifier": "509", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4275808374, 47.3168023421 ], [ -122.4233116711, 47.3170469005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2562, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8577283824, 46.6939486439 ], [ -123.8431696828, 46.6984120458 ], [ -123.8153513788, 46.6707407117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2563, "RouteIdentifier": "003", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0991109684, 47.18070609 ], [ -123.0971571723, 47.1818128402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2564, "RouteIdentifier": "142", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8597476834, 45.8244297002 ], [ -120.8318672716, 45.8230595037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2565, "RouteIdentifier": "215", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5799543409, 48.3644758133 ], [ -119.5450859846, 48.396250068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2566, "RouteIdentifier": "508", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2857890361, 46.5613718886 ], [ -122.2752434827, 46.5583246063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2567, "RouteIdentifier": "161", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932262899, 47.1183648911 ], [ -122.2930833684, 47.1256521371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2568, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7921120527, 45.8483754133 ], [ -120.7709004569, 45.8615514769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2569, "RouteIdentifier": "021", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6811911375, 48.013475131 ], [ -118.671384825, 48.0238785986 ], [ -118.6745338956, 48.0329393311 ], [ -118.668829663, 48.0503155854 ], [ -118.6738246026, 48.0692605239 ], [ -118.69074626, 48.0828527406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2570, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8936094988, 46.5891345777 ], [ -122.904494363, 46.6021302692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2571, "RouteIdentifier": "101", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1135516316, 47.4532319373 ], [ -123.1155512302, 47.4448279782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2572, "RouteIdentifier": "005", "AADT": 208000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176442321, 47.2382129228 ], [ -122.4083499421, 47.2391797955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2573, "RouteIdentifier": "302SPPURDY", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259718026, 47.398107085 ], [ -122.6257721122, 47.4000022997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2574, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2243682744, 47.4778018949 ], [ -122.220911129, 47.4788254663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2575, "RouteIdentifier": "395", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5514961681, 47.9936326927 ], [ -117.5663025103, 47.9938759436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2576, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7006339016, 45.9221097398 ], [ -120.6999410067, 45.923000308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2577, "RouteIdentifier": "503", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.619337819, 45.9439148266 ], [ -122.6245766997, 45.9425126462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2578, "RouteIdentifier": "028", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6181368996, 47.2500373035 ], [ -119.5985546782, 47.2518971615 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2579, "RouteIdentifier": "513", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3045144925, 47.6452852227 ], [ -122.3045734555, 47.6490440633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2580, "RouteIdentifier": "195", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4447329829, 47.6326990173 ], [ -117.4483713102, 47.6410080356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2581, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1002782834, 47.2119732363 ], [ -123.1001117785, 47.2128066209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2582, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8844965185, 46.2561969531 ], [ -122.8921920489, 46.2675770829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2583, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3411431465, 48.4469767522 ], [ -122.3414018352, 48.4590968726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2584, "RouteIdentifier": "121", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9504462358, 46.8962553703 ], [ -122.9420074404, 46.8959196782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2585, "RouteIdentifier": "432", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007887846, 46.1084782427 ], [ -122.8925432587, 46.1068065797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2586, "RouteIdentifier": "104", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8838252738, 47.9522510714 ], [ -122.8817445196, 47.9446523903 ], [ -122.8536693945, 47.9407898169 ], [ -122.8137272987, 47.9229521483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2587, "RouteIdentifier": "122", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5955693857, 46.5253458249 ], [ -122.565213602, 46.5434407828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2588, "RouteIdentifier": "104", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4968769556, 47.7970409839 ], [ -122.4959840812, 47.795839855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2589, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8132595013, 48.1004014814 ], [ -122.7885589611, 48.1029421282 ], [ -122.7831995028, 48.1070075798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2590, "RouteIdentifier": "290", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397125029, 47.6897536118 ], [ -117.2184787446, 47.6944938171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2591, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4114871909, 47.7396505482 ], [ -117.411427803, 47.7408474959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2592, "RouteIdentifier": "027", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395845311, 47.6725795615 ], [ -117.2395516805, 47.6729939622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2593, "RouteIdentifier": "302", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6947937623, 47.381239063 ], [ -122.680812527, 47.3887654485 ], [ -122.6613065763, 47.3889764709 ], [ -122.6518676217, 47.3854416573 ], [ -122.6528510166, 47.3773323215 ], [ -122.6418945651, 47.3795057214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2594, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8239311827, 45.699442413 ], [ -120.8008176143, 45.7117126858 ], [ -120.8080597843, 45.7199565014 ], [ -120.8144502763, 45.72130035 ], [ -120.8224992697, 45.743168923 ], [ -120.8229476469, 45.7771798533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2595, "RouteIdentifier": "104", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6090544172, 47.8521256366 ], [ -122.6020428046, 47.8547635857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2596, "RouteIdentifier": "202", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1699835707, 47.7530524149 ], [ -122.1688952325, 47.7523661354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2597, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4450607281, 47.0665796514 ], [ -122.4346867332, 47.0834174301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2598, "RouteIdentifier": "397", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0404861073, 46.1612119681 ], [ -119.0494766974, 46.168670079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2599, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293907946, 47.1928634023 ], [ -122.22939549, 47.1916397461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2600, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7868512068, 46.9671019999 ], [ -123.7880909112, 46.967896691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2601, "RouteIdentifier": "007", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114938746, 46.8624815133 ], [ -122.3309551779, 46.8686509313 ], [ -122.3461519832, 46.8646712563 ], [ -122.3485996117, 46.8698964015 ], [ -122.3412473353, 46.8783735591 ], [ -122.3590200387, 46.8898382458 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2602, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2184787446, 47.6944938171 ], [ -117.1924425951, 47.69589869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2603, "RouteIdentifier": "099", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2088000662, 47.9150721941 ], [ -122.2075664829, 47.9152876806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2604, "RouteIdentifier": "531", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1327070433, 48.1526864406 ], [ -122.1167643996, 48.1516314237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2605, "RouteIdentifier": "524", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3518259847, 47.821404826 ], [ -122.3494761141, 47.8214634366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2606, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8880451706, 47.0349627247 ], [ -122.8753021958, 47.036689104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2607, "RouteIdentifier": "702", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4923909755, 46.9379773099 ], [ -122.4841720635, 46.9380070182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2608, "RouteIdentifier": "090", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2203529267, 47.5824516264 ], [ -122.2000543534, 47.5787190739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2609, "RouteIdentifier": "097", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4694374549, 46.5065542918 ], [ -120.4796170905, 46.5164951013 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2610, "RouteIdentifier": "904", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754010062, 47.4873552206 ], [ -117.5647334404, 47.498272492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2611, "RouteIdentifier": "194", "AADT": 350 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4676807101, 46.7023866982 ], [ -117.4672879853, 46.7034528115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2612, "RouteIdentifier": "223", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1998163094, 46.3311315335 ], [ -120.1801941156, 46.3452788522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2613, "RouteIdentifier": "513", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2869879295, 47.6614633424 ], [ -122.2859448482, 47.6619893558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2614, "RouteIdentifier": "099", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2756369244, 47.8708807894 ], [ -122.2748522475, 47.8718113531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2615, "RouteIdentifier": "116", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299573082, 48.0326119562 ], [ -122.7207360254, 48.0268110537 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2616, "RouteIdentifier": "285", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3065286882, 47.4166683919 ], [ -120.3170457721, 47.4294662441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2617, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6206863347, 46.6605003365 ], [ -120.6142357749, 46.6544908714 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2618, "RouteIdentifier": "026SPCOLFAX", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649144653, 46.8905633877 ], [ -117.3642482346, 46.8895898765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2619, "RouteIdentifier": "005", "AADT": 193000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.462495706, 47.2142916788 ], [ -122.4627470202, 47.2159591708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2620, "RouteIdentifier": "018", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0448319243, 47.3997061319 ], [ -122.0393244339, 47.4079731902 ], [ -122.0050649195, 47.4194364888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2621, "RouteIdentifier": "007", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4343801512, 47.1489709589 ], [ -122.434250602, 47.1554309896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2622, "RouteIdentifier": "028", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2947757571, 47.4153242228 ], [ -120.2941276522, 47.4130153494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2623, "RouteIdentifier": "515", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969253171, 47.4452667572 ], [ -122.1982503924, 47.4471972302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2624, "RouteIdentifier": "104", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5706924506, 47.8037291147 ], [ -122.563306341, 47.80561327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2625, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2449869401, 48.1566054926 ], [ -122.2383520005, 48.1519754742 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2626, "RouteIdentifier": "205", "AADT": 135000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5528157131, 45.6121505059 ], [ -122.5563050504, 45.6167350271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2627, "RouteIdentifier": "014", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6248931708, 45.9283298654 ], [ -119.603047109, 45.9369049065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2628, "RouteIdentifier": "291", "AADT": 470 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.760735503, 47.8384094476 ], [ -117.8423792383, 47.8397664657 ], [ -117.8553269485, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2629, "RouteIdentifier": "090", "AADT": 66000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9719468032, 47.5356190389 ], [ -121.9423990512, 47.5302140606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2630, "RouteIdentifier": "215", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5813873763, 48.3633416819 ], [ -119.5799543409, 48.3644758133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2631, "RouteIdentifier": "005", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1900214152, 48.1598254833 ], [ -122.1930283776, 48.176135222 ], [ -122.1994394218, 48.1842323462 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2632, "RouteIdentifier": "261", "AADT": 440 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.334575397, 46.8848116859 ], [ -118.3329102877, 46.9112865847 ], [ -118.3434404794, 46.915750159 ], [ -118.3453584296, 47.002118431 ], [ -118.3523615276, 47.0106200548 ], [ -118.3478251995, 47.0405415449 ], [ -118.3651684181, 47.0601072344 ], [ -118.3656317125, 47.112475028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2633, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206620248, 47.6769065098 ], [ -122.32934455, 47.6957536487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2634, "RouteIdentifier": "903", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9384153356, 47.1948996063 ], [ -120.9401799875, 47.1960778907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2635, "RouteIdentifier": "155", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0926019856, 47.8681495864 ], [ -119.0928254707, 47.8804577602 ], [ -119.0773477173, 47.8901190715 ], [ -119.0641730438, 47.9058725038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2636, "RouteIdentifier": "507COPEARL", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543101229, 46.7193545946 ], [ -122.9555240563, 46.7165039902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2637, "RouteIdentifier": "405", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922430833, 47.4941319797 ], [ -122.1953416359, 47.4994564392 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2638, "RouteIdentifier": "142", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1511457837, 45.8183340264 ], [ -121.1463960115, 45.8217818712 ], [ -121.1203944047, 45.8182961934 ], [ -121.1152881651, 45.8250288655 ], [ -121.1000196081, 45.8249268805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2639, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1340104468, 47.3579773429 ], [ -122.1281070641, 47.3580335124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2640, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375517758, 45.9498941429 ], [ -119.3324665654, 45.9393404761 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2641, "RouteIdentifier": "020", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8225853934, 48.534895129 ], [ -117.8178886082, 48.5253988774 ], [ -117.804791347, 48.5147408998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2642, "RouteIdentifier": "097AR", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0898201478, 47.8397078467 ], [ -120.0538459389, 47.8359849929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2643, "RouteIdentifier": "021", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.763698451, 47.6124988865 ], [ -118.7206203577, 47.6136015226 ], [ -118.7216865022, 47.7565875063 ], [ -118.7101114713, 47.7579202996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2644, "RouteIdentifier": "510", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7645455776, 47.0564842559 ], [ -122.7646365596, 47.0522855716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2645, "RouteIdentifier": "542", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9450533075, 48.8896410913 ], [ -121.9420276289, 48.8891584197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2646, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2167143776, 47.9113439649 ], [ -122.2129385008, 47.91279953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2647, "RouteIdentifier": "027", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2247355074, 47.5862739437 ], [ -117.2216074513, 47.5969812615 ], [ -117.2235791152, 47.6164555058 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2648, "RouteIdentifier": "092", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0154120928, 48.0674017673 ], [ -122.0098989742, 48.071628269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2649, "RouteIdentifier": "395", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1509779825, 46.2148765642 ], [ -119.1411095244, 46.2154260444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2650, "RouteIdentifier": "970", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7189725743, 47.1993671783 ], [ -120.7080243736, 47.2036487713 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2651, "RouteIdentifier": "018", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0987142773, 47.3694924181 ], [ -122.0815564766, 47.3772542241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2652, "RouteIdentifier": "500", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5906026172, 45.6527948204 ], [ -122.5816054123, 45.655987363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2653, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2975114504, 46.3001018541 ], [ -119.3049039776, 46.2928299037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2654, "RouteIdentifier": "433", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.961795183, 46.1047382405 ], [ -122.9512089429, 46.1157614264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2655, "RouteIdentifier": "014", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2796331186, 45.6906882361 ], [ -121.2138792304, 45.6734611598 ], [ -121.1928665076, 45.6576560325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2656, "RouteIdentifier": "906", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.398065622, 47.3956087457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2657, "RouteIdentifier": "150", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9770150376, 47.8170244607 ], [ -119.9747908435, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2658, "RouteIdentifier": "127", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7043255452, 46.7738226067 ], [ -117.6939737271, 46.7889237158 ], [ -117.6778315328, 46.7936524449 ], [ -117.6550649229, 46.809179515 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2659, "RouteIdentifier": "167", "AADT": 91000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2579004931, 47.2918141977 ], [ -122.254118291, 47.2998428644 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2660, "RouteIdentifier": "503", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5473330202, 45.7703035237 ], [ -122.547565689, 45.7807169469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2661, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194138329, 48.0143287806 ], [ -122.1915989356, 48.0125732298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2662, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8548278199, 47.23342187 ], [ -119.8533663973, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2663, "RouteIdentifier": "090", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3473440936, 47.6538234455 ], [ -117.3302489185, 47.653713239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2664, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7656400398, 46.9512725149 ], [ -123.7695997378, 46.9546351666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2665, "RouteIdentifier": "024", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4512101301, 46.5770853276 ], [ -120.4354637214, 46.5745924593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2666, "RouteIdentifier": "017", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0062862284, 46.6650492947 ], [ -119.0058747596, 46.7008068298 ], [ -119.0098352163, 46.7101063353 ], [ -119.022009186, 46.7204224263 ], [ -119.0487109157, 46.7291966819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2667, "RouteIdentifier": "503", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575637757, 45.9577400504 ], [ -122.619337819, 45.9439148266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2668, "RouteIdentifier": "195", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4117450085, 47.6019773285 ], [ -117.4390078118, 47.6240624799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2669, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6164943357, 48.7884410173 ], [ -118.616803513, 48.7959551869 ], [ -118.6034157792, 48.8049107122 ], [ -118.5916182675, 48.8270264864 ], [ -118.5921296026, 48.8354347926 ], [ -118.6039372517, 48.8559091636 ], [ -118.6063379125, 48.8732863748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2670, "RouteIdentifier": "090", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8642395904, 47.5111841759 ], [ -121.8530540341, 47.5118709577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2671, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2785898294, 48.0970199696 ], [ -117.251298774, 48.0998571166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2672, "RouteIdentifier": "904", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5832793235, 47.4818861833 ], [ -117.581932979, 47.4825221847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2673, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7004740827, 46.8819430195 ], [ -122.6888591294, 46.8883629314 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2674, "RouteIdentifier": "014", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4356102101, 45.5801631372 ], [ -122.4266731536, 45.5798853327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2675, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3242862882, 47.7185219104 ], [ -122.3241654589, 47.7296158195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2676, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4698317487, 47.5426197192 ], [ -119.4532411733, 47.5665696629 ], [ -119.4362688029, 47.5726405798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2677, "RouteIdentifier": "544", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471693341, 48.9195294698 ], [ -122.3234409469, 48.9201959718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2678, "RouteIdentifier": "003", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0997120272, 47.2056969535 ], [ -123.1011620507, 47.2072125648 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2679, "RouteIdentifier": "503", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219074037, 45.8568488308 ], [ -122.5200551004, 45.865996916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2680, "RouteIdentifier": "020", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4131299621, 48.4502154271 ], [ -122.3810673208, 48.4573156123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2681, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6362542655, 47.5417260081 ], [ -122.6349019011, 47.5414235496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2682, "RouteIdentifier": "507", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9527396272, 46.720041065 ], [ -122.9522499816, 46.7274803396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2683, "RouteIdentifier": "195", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3647146566, 46.8810185511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2684, "RouteIdentifier": "099", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3123636673, 47.3477991611 ], [ -122.3119629623, 47.3522809023 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2685, "RouteIdentifier": "090", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9071870107, 47.1848015959 ], [ -120.8977278871, 47.1804239536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2686, "RouteIdentifier": "395", "AADT": 8600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9526076358, 48.5773917833 ], [ -117.9894375686, 48.5890571016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2687, "RouteIdentifier": "303", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6329469401, 47.5673326833 ], [ -122.6329141514, 47.5710682046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2688, "RouteIdentifier": "507", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.545777661, 46.9961770865 ], [ -122.5440284191, 47.00195264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2689, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3452527917, 47.741452447 ], [ -122.3454890434, 47.7524905174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2690, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4986984819, 47.3690721351 ], [ -119.4972510691, 47.3702850298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2691, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6572408493, 47.5983589324 ], [ -120.6540439356, 47.5990844387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2692, "RouteIdentifier": "014", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156287011, 45.5948612042 ], [ -122.4943892728, 45.5890557217 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2693, "RouteIdentifier": "027", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1415565005, 47.4513001292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2694, "RouteIdentifier": "027", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.179623886, 46.7323956011 ], [ -117.1741648142, 46.7379128734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2695, "RouteIdentifier": "163", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157587458, 47.281707768 ], [ -122.5157406775, 47.2908042195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2696, "RouteIdentifier": "181", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2455886366, 47.4412210855 ], [ -122.2438389364, 47.4568632492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2697, "RouteIdentifier": "155SPOMAK", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5232962062, 48.4094700138 ], [ -119.5256803341, 48.4105086385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2698, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860064346, 48.8115322114 ], [ -122.4859938914, 48.8150001938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2699, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9658761326, 47.1936165169 ], [ -120.9280333907, 47.1893145679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2700, "RouteIdentifier": "005", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5087171766, 47.1447737983 ], [ -122.4989188555, 47.1501796155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2701, "RouteIdentifier": "526", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2635417231, 47.9221791593 ], [ -122.2510997896, 47.9232511801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2702, "RouteIdentifier": "903", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8999613431, 47.1877127316 ], [ -120.9040186992, 47.1886262402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2703, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1871847394, 47.5018573254 ], [ -122.1826210947, 47.4988151232 ], [ -122.1740778642, 47.5058207686 ], [ -122.1598568622, 47.5046576599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2704, "RouteIdentifier": "548", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7299951107, 48.9621767777 ], [ -122.7284141787, 48.9757559926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2705, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4189635614, 47.8314948096 ], [ -117.4231431671, 47.8843518204 ], [ -117.4538503546, 47.9182613584 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2706, "RouteIdentifier": "501", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7195199906, 45.6499177453 ], [ -122.7308174939, 45.655963797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2707, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.648398392, 47.0870048504 ], [ -122.634152739, 47.0903093008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2708, "RouteIdentifier": "241", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9667501531, 46.379458651 ], [ -119.9507168728, 46.3970662882 ], [ -119.9479351658, 46.4141956254 ], [ -119.9373599037, 46.4337298932 ], [ -119.938319542, 46.4575952693 ], [ -119.9310180931, 46.4741304562 ], [ -119.9017083155, 46.497304085 ], [ -119.8843350959, 46.5050823884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2709, "RouteIdentifier": "432", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9247009245, 46.1221385232 ], [ -122.9183274849, 46.1179762286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2710, "RouteIdentifier": "002COBROWNE", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.41331834, 47.6599920959 ], [ -117.4133229534, 47.6590747649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2711, "RouteIdentifier": "202", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1523661986, 47.7330804139 ], [ -122.1404542596, 47.7309772963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2712, "RouteIdentifier": "902", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044776202, 47.5482634566 ], [ -117.7044515804, 47.551027418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2713, "RouteIdentifier": "019", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7809989146, 48.0297888001 ], [ -122.7888286163, 48.0414353719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2714, "RouteIdentifier": "101", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8979905603, 47.6935842347 ], [ -122.9000668498, 47.6772665999 ], [ -122.9323014096, 47.6518739395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2715, "RouteIdentifier": "169", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0036329276, 47.3094647022 ], [ -122.0116242643, 47.3330404711 ], [ -122.0182971717, 47.3410067723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2716, "RouteIdentifier": "522", "AADT": 73000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598186601, 47.7602527368 ], [ -122.1570006357, 47.765024263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2717, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6816043754, 48.269260962 ], [ -121.6743723204, 48.2692255901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2718, "RouteIdentifier": "507", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5400380281, 47.004608762 ], [ -122.5271301706, 47.0069958392 ], [ -122.460282873, 47.0590365811 ], [ -122.4450607281, 47.0665796514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2719, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5259931748, 48.7945741767 ], [ -122.5446847676, 48.8138630642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2720, "RouteIdentifier": "006", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3070123443, 46.567981686 ], [ -123.2999170842, 46.5700274981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2721, "RouteIdentifier": "522", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3197480792, 47.6816333663 ], [ -122.318091806, 47.6824319974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2722, "RouteIdentifier": "411", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9051023405, 46.1847118489 ], [ -122.9070746013, 46.1900492586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2723, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1727879342, 46.7397697342 ], [ -117.1710414458, 46.7424904094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2724, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8823509757, 46.9792200862 ], [ -123.8857480999, 46.9806448411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2725, "RouteIdentifier": "101", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0065316221, 47.0552123027 ], [ -122.9998190814, 47.0505006375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2726, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3235459955, 47.4769045316 ], [ -120.3207059196, 47.4808771816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2727, "RouteIdentifier": "202", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7872865838, 47.4951204522 ], [ -121.788376675, 47.4940653907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2728, "RouteIdentifier": "524", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254854845, 47.8251972811 ], [ -122.2431153196, 47.8256765678 ], [ -122.2331720885, 47.8210669673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2729, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8907814895, 46.7059868252 ], [ -120.8829802143, 46.7127174081 ], [ -120.8736869896, 46.7122569007 ], [ -120.8457986157, 46.7214615642 ], [ -120.8187846966, 46.7194429167 ], [ -120.8111956085, 46.7266981663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2730, "RouteIdentifier": "006", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5746576675, 46.5626246259 ], [ -123.5402947407, 46.5576923778 ], [ -123.5203150937, 46.5452203474 ], [ -123.494926021, 46.5410094666 ], [ -123.4164514949, 46.5508891636 ], [ -123.3938977324, 46.5443022941 ], [ -123.3746653206, 46.5519403275 ], [ -123.3387554018, 46.5498400922 ], [ -123.3181533134, 46.5537699057 ], [ -123.3070123443, 46.567981686 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2731, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7445979677, 46.9735726358 ], [ -123.7381959686, 46.9710907007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2732, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0641730438, 47.9058725038 ], [ -119.0563552656, 47.9153765852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2733, "RouteIdentifier": "003", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6507363437, 47.7695891636 ], [ -122.6515427568, 47.7916136315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2734, "RouteIdentifier": "105", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7361025624, 46.6937072147 ], [ -123.7477462633, 46.6933741544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2735, "RouteIdentifier": "005", "AADT": 77000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616138919, 48.7607636257 ], [ -122.4622283159, 48.7681610573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2736, "RouteIdentifier": "505", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8037680338, 46.4381163639 ], [ -122.7267485599, 46.4373575595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2737, "RouteIdentifier": "003", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0463421603, 47.2472806543 ], [ -123.045670011, 47.2478374662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2738, "RouteIdentifier": "014", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5755446732, 45.6090058957 ], [ -122.5709358838, 45.6080222232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2739, "RouteIdentifier": "507", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538347685, 46.9524134967 ], [ -122.5468403017, 46.9927649775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2740, "RouteIdentifier": "260", "AADT": 570 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525513618, 46.6447887503 ], [ -118.5495094772, 46.6453560334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2741, "RouteIdentifier": "018", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2193270337, 47.30338806 ], [ -122.1869343886, 47.298301147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2742, "RouteIdentifier": "014", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6581170517, 45.6185588654 ], [ -122.6334221513, 45.6184980719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2743, "RouteIdentifier": "004", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8422504198, 46.4113220356 ], [ -123.8349983211, 46.3948956565 ], [ -123.8281981659, 46.3913609219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2744, "RouteIdentifier": "025", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1468751595, 48.3068128255 ], [ -118.1631186706, 48.3520288123 ], [ -118.1715522275, 48.4091006331 ], [ -118.1708437963, 48.4288296254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2745, "RouteIdentifier": "281", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534053473, 47.2223294365 ], [ -119.8533828874, 47.231885111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2746, "RouteIdentifier": "231", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7619942648, 48.0632663696 ], [ -117.7552102892, 48.1167618601 ], [ -117.7327781122, 48.1383013951 ], [ -117.7260465116, 48.1503593139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2747, "RouteIdentifier": "231", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7227122233, 48.1685422116 ], [ -117.7262847571, 48.1762204765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2748, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.67150803, 47.5902637122 ], [ -120.6676433679, 47.5927812587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2749, "RouteIdentifier": "262", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2546464371, 46.9816911587 ], [ -119.2059547126, 46.9847954432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2750, "RouteIdentifier": "405", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857415687, 47.7548599981 ], [ -122.1840627382, 47.7606381882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2751, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.605320177, 45.7801298015 ], [ -122.599982644, 45.7801453767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2752, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0957237818, 47.1572988202 ], [ -123.095106414, 47.1429892693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2753, "RouteIdentifier": "524", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2755457279, 47.8209143725 ], [ -122.2658705764, 47.8207446489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2754, "RouteIdentifier": "261", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.286718814, 46.7740832951 ], [ -118.2886572256, 46.7879317008 ], [ -118.3097453971, 46.8098489829 ], [ -118.3099862619, 46.8161196557 ], [ -118.3217641545, 46.822539058 ], [ -118.3321392421, 46.8389818766 ], [ -118.3362638132, 46.8534807148 ], [ -118.334575397, 46.8848116859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2755, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9876095018, 46.1576443082 ], [ -122.9833545966, 46.1555474575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2756, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9179703845, 46.9819334325 ], [ -123.92417003, 46.9825144102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2757, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.69367346, 47.3333652583 ], [ -118.6922310931, 47.3333156666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2758, "RouteIdentifier": "271", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2554591689, 47.1454962289 ], [ -117.2677060281, 47.1615080182 ], [ -117.2891774357, 47.1679524761 ], [ -117.2958452372, 47.1833254981 ], [ -117.3295786243, 47.1869824575 ], [ -117.3546879112, 47.2034961093 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2759, "RouteIdentifier": "281SPBURKE", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8324499347, 47.1042259268 ], [ -119.8307822154, 47.1036973105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2760, "RouteIdentifier": "105", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8114502592, 46.6993848447 ], [ -123.8253745361, 46.709170275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2761, "RouteIdentifier": "397", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.101122588, 46.2240920293 ], [ -119.0997711539, 46.223724902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2762, "RouteIdentifier": "101", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8847738398, 47.9855759007 ], [ -122.8820241615, 47.968795396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2763, "RouteIdentifier": "028", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7468893165, 47.2346362782 ], [ -119.7251709256, 47.2489121615 ], [ -119.6181368996, 47.2500373035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2764, "RouteIdentifier": "500", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6613049438, 45.647498224 ], [ -122.6496497972, 45.6504231837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2765, "RouteIdentifier": "500", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4068708389, 45.6018672646 ], [ -122.4055026586, 45.5961003788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2766, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.952269366, 46.7289642557 ], [ -122.9536737749, 46.7289461561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2767, "RouteIdentifier": "202", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1151301203, 47.6720446521 ], [ -122.1133617704, 47.671528366 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2768, "RouteIdentifier": "211", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3015320727, 48.1814415097 ], [ -117.3012126424, 48.191267265 ], [ -117.2897176202, 48.2065229267 ], [ -117.2914802502, 48.2273126077 ], [ -117.2830862535, 48.2366828375 ], [ -117.2845754339, 48.2812765736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2769, "RouteIdentifier": "005", "AADT": 205000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3271587307, 47.7136272159 ], [ -122.3242862882, 47.7185219104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2770, "RouteIdentifier": "020", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7384627186, 48.5359258924 ], [ -121.7223369447, 48.5319460862 ], [ -121.7075219149, 48.5191466035 ], [ -121.6760393017, 48.5151612873 ], [ -121.6513860232, 48.5041934528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2771, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6585157988, 47.0514934706 ], [ -120.6291812643, 47.0396007246 ], [ -120.5867415871, 47.0023957095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2772, "RouteIdentifier": "542", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1380018087, 48.9060853167 ], [ -122.1375909505, 48.9171432802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2773, "RouteIdentifier": "028", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2863393433, 47.3982856502 ], [ -120.2564967356, 47.3853137258 ], [ -120.1922237193, 47.3773145311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2774, "RouteIdentifier": "395", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8505614694, 46.6606108889 ], [ -118.8367462093, 46.6949715887 ], [ -118.8348854358, 46.7191386362 ], [ -118.8208435355, 46.7340210389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2775, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9517110134, 46.1469021572 ], [ -122.9259280616, 46.1463384374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2776, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8576433404, 46.4293681134 ], [ -123.8566143534, 46.4366406332 ], [ -123.8714474882, 46.4476360198 ], [ -123.8740416373, 46.4591167752 ], [ -123.8878297764, 46.4791584777 ], [ -123.8859488488, 46.5202816438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2777, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4389284985, 48.705561124 ], [ -119.4373980431, 48.7072992033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2778, "RouteIdentifier": "020", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7667323197, 48.110171865 ], [ -122.7608305412, 48.1125877254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2779, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6459065292, 48.3044536381 ], [ -122.6434331584, 48.3065806606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2780, "RouteIdentifier": "003", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8464511089, 47.4246031872 ], [ -122.8407076803, 47.4325617338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2781, "RouteIdentifier": "302SPPURDY", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260927168, 47.3890549862 ], [ -122.6259718026, 47.398107085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2782, "RouteIdentifier": "103", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.053203924, 46.3755642012 ], [ -124.0525359155, 46.466597142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2783, "RouteIdentifier": "008", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0967671874, 47.0341238279 ], [ -123.0754529552, 47.0405018922 ], [ -123.0577148184, 47.0409268562 ], [ -123.0223763118, 47.0580771821 ], [ -123.0124274602, 47.0563166427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2784, "RouteIdentifier": "410", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9923916449, 47.199177298 ], [ -121.984252857, 47.1994620806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2785, "RouteIdentifier": "504", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2705939775, 46.2873405261 ], [ -122.2586933356, 46.2829628948 ], [ -122.2184077423, 46.290256532 ], [ -122.1949063653, 46.2823305403 ], [ -122.2019102926, 46.2789405654 ], [ -122.2166918782, 46.2825498216 ], [ -122.230107404, 46.277811982 ], [ -122.2185321118, 46.2775970571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2786, "RouteIdentifier": "023", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546693813, 47.479786644 ], [ -118.2546196045, 47.4837941362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2787, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8311550343, 47.1038712566 ], [ -119.8272576766, 47.106307188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2788, "RouteIdentifier": "109", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8970765547, 46.9810040205 ], [ -123.902252551, 46.9810452868 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2789, "RouteIdentifier": "020", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940156325, 48.5236742491 ], [ -122.149310257, 48.5311401242 ], [ -122.1205538564, 48.5260765992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2790, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2158884218, 47.8443983695 ], [ -122.2175661581, 47.8496908765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2791, "RouteIdentifier": "112", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5712528402, 48.1146712556 ], [ -123.5666907268, 48.114021332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2792, "RouteIdentifier": "009", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.226018055, 48.5375786595 ], [ -122.2251116552, 48.5503306146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2793, "RouteIdentifier": "195", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.339143604, 46.8504355115 ], [ -117.3497979206, 46.8597063959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2794, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9524909367, 46.3563728876 ], [ -117.9392616292, 46.382620523 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2795, "RouteIdentifier": "285", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3062213119, 47.416281941 ], [ -120.3065286882, 47.4166683919 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2796, "RouteIdentifier": "525", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2777737236, 47.879481564 ], [ -122.2799690003, 47.8826891954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2797, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426668622, 48.1780973091 ], [ -117.0424962708, 48.1830235936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2798, "RouteIdentifier": "141", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5138862172, 45.7429041091 ], [ -121.5204986539, 45.7575928617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2799, "RouteIdentifier": "090", "AADT": 98000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4478142216, 47.6480936772 ], [ -117.4195602915, 47.6526347407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2800, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3195807175, 47.4716032095 ], [ -120.3025873431, 47.4686065666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2801, "RouteIdentifier": "005", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.573687598, 48.8448314506 ], [ -122.5812917606, 48.852425293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2802, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.224889202, 46.0317308992 ], [ -119.2267789418, 46.0180871043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2803, "RouteIdentifier": "017", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1384722057, 46.892262265 ], [ -119.1444896159, 46.8984851562 ], [ -119.1363999204, 46.9111066773 ], [ -119.1279706055, 46.9485582437 ], [ -119.1186109827, 46.9595266729 ], [ -119.1179382964, 46.9701782337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2804, "RouteIdentifier": "174", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0023772267, 47.9485330892 ], [ -119.0032812985, 47.947389362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2805, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0973376697, 47.1826544128 ], [ -123.0984327789, 47.1898992789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2806, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.100879718, 47.9337909869 ], [ -122.1010693917, 47.9456237913 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2807, "RouteIdentifier": "005", "AADT": 140000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3207560536, 47.5899474422 ], [ -122.3205050716, 47.5975079138 ], [ -122.3265267058, 47.6034433933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2808, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6168907485, 47.0952000036 ], [ -122.5963933831, 47.1027062195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2809, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1099317298, 48.0262394664 ], [ -122.1102365439, 48.0279042262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2810, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3523268647, 47.8961954425 ], [ -117.3511036365, 47.903873351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2811, "RouteIdentifier": "031", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4053808879, 48.6851320533 ], [ -117.4104336223, 48.6904887705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2812, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7059141852, 48.2122640442 ], [ -122.7254611419, 48.2111110539 ], [ -122.7399066254, 48.2292007745 ], [ -122.7148061182, 48.2403092978 ], [ -122.7098709231, 48.2523750469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2813, "RouteIdentifier": "205", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5794120249, 45.6676715094 ], [ -122.587012075, 45.6793317854 ], [ -122.6008744257, 45.6874395737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2814, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.220911129, 47.4788254663 ], [ -122.2194720778, 47.4795067364 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2815, "RouteIdentifier": "014", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6718045785, 45.623437204 ], [ -122.6654874391, 45.6200688002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2816, "RouteIdentifier": "539", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.485340099, 48.9066976691 ], [ -122.4854389282, 48.9351240348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2817, "RouteIdentifier": "100", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447271345, 46.3081264556 ], [ -124.0447225968, 46.3088719536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2818, "RouteIdentifier": "205", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5499665548, 45.5969306355 ], [ -122.5509906905, 45.6012653728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2819, "RouteIdentifier": "182", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0939413826, 46.2498784583 ], [ -119.0917467448, 46.2503035218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2820, "RouteIdentifier": "503", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5220688196, 45.8532467256 ], [ -122.5219074037, 45.8568488308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2821, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3502034489, 47.9137043437 ], [ -117.3506178988, 47.9432704768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2822, "RouteIdentifier": "018", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0050649195, 47.4194364888 ], [ -121.9839763366, 47.4320430934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2823, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8072496646, 45.8123784315 ], [ -120.8039379118, 45.8264664938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2824, "RouteIdentifier": "526", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931738148, 47.9220879011 ], [ -122.2914374281, 47.9220287545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2825, "RouteIdentifier": "539", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4853467091, 48.9460567842 ], [ -122.4852153791, 48.9642388691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2826, "RouteIdentifier": "904", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647296934, 47.4988542076 ], [ -117.5647059706, 47.5011897492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2827, "RouteIdentifier": "006", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0476299632, 46.6285743251 ], [ -123.0183397646, 46.6437586626 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2828, "RouteIdentifier": "021", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7225935085, 47.7708524695 ], [ -118.72180243, 47.8307542065 ], [ -118.7158171633, 47.8418244835 ], [ -118.7177993581, 47.8557884326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2829, "RouteIdentifier": "536", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4220672954, 48.4427374565 ], [ -122.390445812, 48.4422989059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2830, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199993321, 47.9818766144 ], [ -122.2043471222, 47.9819297636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2831, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074561545, 47.7875219182 ], [ -117.4059782511, 47.8001660961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2832, "RouteIdentifier": "014", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7799581015, 45.8660328507 ], [ -119.7003175758, 45.8904645213 ], [ -119.6631819174, 45.9131840003 ], [ -119.6248931708, 45.9283298654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2833, "RouteIdentifier": "100", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0561354019, 46.2902587967 ], [ -124.0480975411, 46.3020519269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2834, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2233288919, 47.9095861548 ], [ -122.2167143776, 47.9113439649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2835, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.923859645, 47.4691766915 ], [ -123.9291735447, 47.4763535553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2836, "RouteIdentifier": "003", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6987408734, 47.5866961105 ], [ -122.6986407419, 47.5960190089 ], [ -122.7047490044, 47.6007985246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2837, "RouteIdentifier": "020", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8819927368, 48.5472128187 ], [ -117.8800458807, 48.5473265211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2838, "RouteIdentifier": "027", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2236317238, 47.6278867921 ], [ -117.2398468351, 47.6445327832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2839, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6993155614, 48.2593609442 ], [ -122.6730425589, 48.2671633791 ], [ -122.6694634271, 48.2806289911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2840, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4223417195, 47.4282688783 ], [ -121.4110411782, 47.4243576922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2841, "RouteIdentifier": "097", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.608500123, 47.0374844302 ], [ -120.6092218493, 47.0480585921 ], [ -120.6294282804, 47.0744775232 ], [ -120.6552820758, 47.0921616821 ], [ -120.6686598398, 47.12002506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2842, "RouteIdentifier": "599", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710228472, 47.4819453096 ], [ -122.2744143572, 47.4850652066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2843, "RouteIdentifier": "525", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2742164355, 47.8479952638 ], [ -122.2768149357, 47.8726630238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2844, "RouteIdentifier": "167", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4072691049, 47.2393529405 ], [ -122.4019360634, 47.239469308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2845, "RouteIdentifier": "410", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1485727781, 47.1677245225 ], [ -122.1441855248, 47.1674591072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2846, "RouteIdentifier": "902", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5691788837, 47.5946199775 ], [ -117.5679132072, 47.5937450378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2847, "RouteIdentifier": "005", "AADT": 187000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288644625, 47.741140359 ], [ -122.3297726533, 47.7436959378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2848, "RouteIdentifier": "507", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6075822125, 46.9413631902 ], [ -122.6065410768, 46.9419413133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2849, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7728740575, 48.109600754 ], [ -122.7706871351, 48.109957957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2850, "RouteIdentifier": "224", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3268526166, 46.297790684 ], [ -119.3204993439, 46.2934725609 ], [ -119.3085183423, 46.2931233698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2851, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6024268764, 48.353805119 ], [ -119.5950487686, 48.3559969968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2852, "RouteIdentifier": "518", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127555504, 47.4701556709 ], [ -122.3009682136, 47.4657531835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2853, "RouteIdentifier": "090", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1698418075, 47.5801249842 ], [ -122.1380752869, 47.5786572039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2854, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0148285272, 47.8398314423 ], [ -120.0127832253, 47.8398059908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2855, "RouteIdentifier": "104", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.7163662119, 47.8813080117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2856, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2497713089, 47.7583930838 ], [ -122.2436783372, 47.757435704 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2857, "RouteIdentifier": "161", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939186583, 47.209493222 ], [ -122.2951850444, 47.215634769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2858, "RouteIdentifier": "231", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7413820969, 48.0569482281 ], [ -117.7562347833, 48.0595083721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2859, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.231080053, 47.3833072606 ], [ -122.22977526, 47.3833226703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2860, "RouteIdentifier": "181", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2473765563, 47.3813544414 ], [ -122.2474225905, 47.3852649438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2861, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.045670011, 47.2478374662 ], [ -123.0350161303, 47.253938049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2862, "RouteIdentifier": "160", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6100956059, 47.5047904492 ], [ -122.5947129537, 47.504905792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2863, "RouteIdentifier": "097", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5211794514, 48.4039684769 ], [ -119.5082283693, 48.4171152484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2864, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4341632669, 48.9323868359 ], [ -119.4351159777, 48.9331846153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2865, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4832074613, 47.3815237106 ], [ -119.4832088344, 47.3835435175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2866, "RouteIdentifier": "105SPWESTPT", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.111600125, 46.8850832339 ], [ -124.1116144402, 46.8868092337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2867, "RouteIdentifier": "900", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0977227603, 47.4988510864 ], [ -122.0870325094, 47.5100083536 ], [ -122.0698540138, 47.5181410628 ], [ -122.0619448123, 47.5311845564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2868, "RouteIdentifier": "182", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2485902926, 46.2609157729 ], [ -119.2279364121, 46.2727922262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2869, "RouteIdentifier": "529", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1798921353, 48.0395761426 ], [ -122.1790908365, 48.0404147216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2870, "RouteIdentifier": "530", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0422700836, 48.2472730431 ], [ -122.026469474, 48.2565227693 ], [ -122.0229079186, 48.2627125108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2871, "RouteIdentifier": "215", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284987148, 48.409540793 ], [ -119.5284865191, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2872, "RouteIdentifier": "105", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8046484797, 46.9587267173 ], [ -123.8025700515, 46.9620278945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2873, "RouteIdentifier": "129", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2784733835, 45.9984489029 ], [ -117.2767589116, 46.0044012908 ], [ -117.2809410701, 45.9989894093 ], [ -117.2798172641, 46.0054474608 ], [ -117.2576613456, 46.0272223173 ], [ -117.2517268724, 46.0417290027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2874, "RouteIdentifier": "028", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8107624661, 47.2341040289 ], [ -119.7681464636, 47.2343020206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2875, "RouteIdentifier": "022", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -119.998439324, 46.2111215603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2876, "RouteIdentifier": "017", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9919981435, 46.5668134388 ], [ -118.9943545429, 46.5674942159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2877, "RouteIdentifier": "906SPHYAK", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3981391089, 47.395175907 ], [ -121.3898783885, 47.3927710931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2878, "RouteIdentifier": "097", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3295269338, 46.375119312 ], [ -120.3331696319, 46.3769677074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2879, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7647638069, 47.0392228487 ], [ -122.7386443358, 47.0349276176 ], [ -122.7287961018, 47.0250540857 ], [ -122.7271458299, 47.0178712921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2880, "RouteIdentifier": "516", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2865268063, 47.3906729649 ], [ -122.2793135196, 47.389970334 ], [ -122.2714942577, 47.3774662501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2881, "RouteIdentifier": "240", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4226493275, 46.383209281 ], [ -119.3989176751, 46.3702741916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2882, "RouteIdentifier": "970", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9033027171, 47.1830360818 ], [ -120.9008694447, 47.1862212903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2883, "RouteIdentifier": "101", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8153513788, 46.6707407117 ], [ -123.8122989005, 46.6665841945 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2884, "RouteIdentifier": "162", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.077350334, 47.1390929944 ], [ -122.0684124432, 47.1438395525 ], [ -122.059029398, 47.1421956268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2885, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9075966187, 46.0562013963 ], [ -118.8913479904, 46.0543459185 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2886, "RouteIdentifier": "305", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5509605497, 47.690504212 ], [ -122.5615375286, 47.710001753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2887, "RouteIdentifier": "005", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2159243491, 47.8953256029 ], [ -122.2102027734, 47.9096841492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2888, "RouteIdentifier": "904", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.580789949, 47.4831439672 ], [ -117.5767646402, 47.4862221857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2889, "RouteIdentifier": "097", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5336093333, 48.5756042234 ], [ -119.5247105217, 48.5852161614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2890, "RouteIdentifier": "224", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3370276268, 46.2969163285 ], [ -119.3268526166, 46.297790684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2891, "RouteIdentifier": "702", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4716597285, 46.9377123473 ], [ -122.4423826497, 46.937291079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2892, "RouteIdentifier": "904", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7149843296, 47.4501888753 ], [ -117.6730634499, 47.4637949376 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2893, "RouteIdentifier": "090", "AADT": 104000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3156584943, 47.5948454186 ], [ -122.3087595806, 47.5900994807 ], [ -122.2940286061, 47.590082601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2894, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9833545966, 46.1555474575 ], [ -122.9811418748, 46.1544576439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2895, "RouteIdentifier": "005HI13358", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4363817139, 47.23258819 ], [ -122.4304655405, 47.2333702661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2896, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2006150998, 47.3722720586 ], [ -122.1935312742, 47.3693743374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2897, "RouteIdentifier": "020", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6930399694, 48.5196228035 ], [ -117.6874542357, 48.5197336235 ], [ -117.669804598, 48.503722179 ], [ -117.6364219092, 48.5278741835 ], [ -117.593606156, 48.5397640332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2898, "RouteIdentifier": "027", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2397947306, 47.6583760906 ], [ -117.2397118795, 47.6707021684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2899, "RouteIdentifier": "092", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9900538253, 48.0834098562 ], [ -121.9904268316, 48.0866632894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2900, "RouteIdentifier": "197", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1458871745, 45.6207464818 ], [ -121.1493385256, 45.627246477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2901, "RouteIdentifier": "022", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.318493365, 46.3762548928 ], [ -120.3199265565, 46.3750583048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2902, "RouteIdentifier": "022", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3141855934, 46.416664953 ], [ -120.3142184025, 46.4146304102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2903, "RouteIdentifier": "003", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0029655026, 47.2660406347 ], [ -122.9709937008, 47.2786751606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2904, "RouteIdentifier": "104", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5310414126, 47.8095136583 ], [ -122.5178867416, 47.8084398669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2905, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4905907506, 47.3968832449 ], [ -121.4746332727, 47.3939164723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2906, "RouteIdentifier": "405", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.174140027, 47.5778363862 ], [ -122.1795081855, 47.5879075274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2907, "RouteIdentifier": "432", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0036157589, 46.14714661 ], [ -122.9949382898, 46.1422801927 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2908, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6590763437, 48.2086905534 ], [ -122.6671028849, 48.208880163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2909, "RouteIdentifier": "006", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0540392956, 46.6280909268 ], [ -123.0476299632, 46.6285743251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2910, "RouteIdentifier": "410", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254047685, 47.2009435128 ], [ -122.2455904637, 47.1960629254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2911, "RouteIdentifier": "026", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9569337464, 46.9310727047 ], [ -119.8960760978, 46.9263943244 ], [ -119.8716336143, 46.9032686178 ], [ -119.8543075131, 46.8986913821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2912, "RouteIdentifier": "395", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0827548583, 46.252250739 ], [ -119.084694014, 46.2595150494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2913, "RouteIdentifier": "161", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929747612, 47.1553108605 ], [ -122.2929937518, 47.1566288415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2914, "RouteIdentifier": "150", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0202611393, 47.8413912452 ], [ -120.0194056477, 47.8409567731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2915, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4056484865, 47.7456876175 ], [ -117.402291177, 47.749169702 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2916, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.0607928531, 46.4309790988 ], [ -117.0397725467, 46.4312642493 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2917, "RouteIdentifier": "195", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3351658289, 46.9428080119 ], [ -117.3342443282, 46.9502697374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2918, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8800458807, 48.5473265211 ], [ -117.8743970818, 48.5473938298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2919, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.903098241, 46.1097389647 ], [ -122.9007887846, 46.1084782427 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2920, "RouteIdentifier": "007", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4344162199, 47.1475294086 ], [ -122.4343801512, 47.1489709589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2921, "RouteIdentifier": "014", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5675237104, 45.6073013401 ], [ -122.5624136586, 45.6062101725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2922, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7488390649, 47.8671786834 ], [ -121.7350857122, 47.8671728801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2923, "RouteIdentifier": "165", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0562728458, 47.1405796821 ], [ -122.0528218155, 47.1410552733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2924, "RouteIdentifier": "241", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0009880199, 46.2136750464 ], [ -119.9996278638, 46.2207119718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2925, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2638042622, 47.8258077379 ], [ -124.2849702887, 47.8484497473 ], [ -124.3217492312, 47.8548954983 ], [ -124.3313184873, 47.8601934071 ], [ -124.3378207285, 47.8710935066 ], [ -124.3564028382, 47.8868367862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2926, "RouteIdentifier": "109", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1580458631, 47.0446019994 ], [ -124.1654679307, 47.0715130267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2927, "RouteIdentifier": "510", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7271458299, 47.0178712921 ], [ -122.7247120976, 47.0145460302 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2928, "RouteIdentifier": "285", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3055238703, 47.415408638 ], [ -120.3062213119, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2929, "RouteIdentifier": "904", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5967641772, 47.4763429271 ], [ -117.5899202161, 47.4791586755 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2930, "RouteIdentifier": "112", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.716298311, 48.1315509218 ], [ -123.6671258406, 48.1191174479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2931, "RouteIdentifier": "240", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2878136748, 46.2595687001 ], [ -119.2860031075, 46.2585535412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2932, "RouteIdentifier": "004", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3947912458, 46.2315766109 ], [ -123.3894612533, 46.2116841789 ], [ -123.3840920127, 46.2062528444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2933, "RouteIdentifier": "405", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1922736805, 47.4901260728 ], [ -122.1922430833, 47.4941319797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2934, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3953437269, 47.0507021736 ], [ -122.3977887884, 47.0531477811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2935, "RouteIdentifier": "020", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5950487686, 48.3559969968 ], [ -119.5945415128, 48.3551234308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2936, "RouteIdentifier": "503", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5141163677, 45.8882670084 ], [ -122.5115938422, 45.8889120074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2937, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.556831556, 46.7546910576 ], [ -121.5492834565, 46.7628032231 ], [ -121.5483113382, 46.7701921391 ], [ -121.554831628, 46.7875507315 ], [ -121.5563143316, 46.8134073659 ], [ -121.5345232327, 46.8339911582 ], [ -121.5189752718, 46.8309746734 ], [ -121.5306436293, 46.8388115136 ], [ -121.5305321021, 46.8422134405 ], [ -121.514777234, 46.8543886165 ], [ -121.5282509494, 46.8561937641 ], [ -121.5302148924, 46.8635071098 ], [ -121.5399470088, 46.8668971706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2938, "RouteIdentifier": "097", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5896360866, 47.0059926881 ], [ -120.5859736555, 47.0066138323 ], [ -120.5943172222, 47.0140340001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2939, "RouteIdentifier": "395", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1266194124, 46.246327603 ], [ -119.1264880523, 46.2492677583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2940, "RouteIdentifier": "163", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156424716, 47.3005954736 ], [ -122.5153285839, 47.3019754864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2941, "RouteIdentifier": "395", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1012651236, 48.6145465613 ], [ -118.1130354822, 48.6245416722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2942, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643165436, 47.8830950253 ], [ -122.2583128195, 47.8895409718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2943, "RouteIdentifier": "530", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921631348, 48.1882508645 ], [ -122.1437081841, 48.18863098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2944, "RouteIdentifier": "305", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6524298189, 47.7572284351 ], [ -122.6551873979, 47.7579966203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2945, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8303255251, 45.9865466391 ], [ -122.8439980452, 46.0036486101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2946, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249389869, 47.5271305474 ], [ -122.3269269693, 47.5291188556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2947, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9095978806, 46.3282371415 ], [ -122.9058084856, 46.3540274103 ], [ -122.9078330534, 46.3671239838 ], [ -122.9031362266, 46.3853907412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2948, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1024989284, 47.9747837779 ], [ -122.1027482966, 47.978079114 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2949, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3489538413, 47.8018716143 ], [ -117.3472122709, 47.8244633117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2950, "RouteIdentifier": "090", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2564882876, 47.6744377468 ], [ -117.2332386303, 47.6740978586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2951, "RouteIdentifier": "509", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3312487114, 47.4630152497 ], [ -122.3322816003, 47.4672044794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2952, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1352981522, 47.2179205415 ], [ -121.124063025, 47.2160253363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2953, "RouteIdentifier": "970", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8926430173, 47.1852194677 ], [ -120.8544979241, 47.1749253538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2954, "RouteIdentifier": "101COABERDN", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8158546232, 46.9740606365 ], [ -123.8144960068, 46.9745245963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2955, "RouteIdentifier": "291", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6086838618, 47.8395393993 ], [ -117.6248994904, 47.8447512634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2956, "RouteIdentifier": "005", "AADT": 83000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050754567, 45.8579274145 ], [ -122.7086008695, 45.8700022682 ], [ -122.7304474004, 45.8859692149 ], [ -122.7405471815, 45.9025011825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2957, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2323979204, 48.5104945464 ], [ -122.2283833788, 48.5104834855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2958, "RouteIdentifier": "504", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5538906727, 46.3719036566 ], [ -122.5340666871, 46.3650761505 ], [ -122.5220157903, 46.3531056437 ], [ -122.5208405998, 46.3467606018 ], [ -122.487877126, 46.3278934812 ], [ -122.4600261231, 46.3341989605 ], [ -122.4436211994, 46.3327194151 ], [ -122.4239755806, 46.3243794359 ], [ -122.4116026874, 46.3288268712 ], [ -122.4065880617, 46.3248804093 ], [ -122.4105058581, 46.3131432327 ], [ -122.392382104, 46.307832184 ], [ -122.3741708168, 46.3113203362 ], [ -122.3510605635, 46.3071011772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2959, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2245455295, 47.6632648417 ], [ -120.2234272269, 47.6648157581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2960, "RouteIdentifier": "020", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3471628144, 48.4689593505 ], [ -122.3443533309, 48.4699161341 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2961, "RouteIdentifier": "004", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4651180339, 46.2822112261 ], [ -123.4572843275, 46.2706003653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2962, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114439556, 47.4631544785 ], [ -122.1255239767, 47.4635158088 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2963, "RouteIdentifier": "097", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7901966083, 48.1001446551 ], [ -119.7868478019, 48.101573517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2964, "RouteIdentifier": "193", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0739785142, 46.426337746 ], [ -117.1003946329, 46.424564911 ], [ -117.1253712638, 46.4309663929 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2965, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4644208312, 46.2537605149 ], [ -119.3970004337, 46.2614856786 ], [ -119.3679545991, 46.2490442826 ], [ -119.3600450664, 46.2396584936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2966, "RouteIdentifier": "020", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6172366357, 48.3298494085 ], [ -119.6125603258, 48.3338920433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2967, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5108612391, 48.7867012138 ], [ -122.5259931748, 48.7945741767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2968, "RouteIdentifier": "507", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8283708435, 46.8574846811 ], [ -122.7812799701, 46.8608150774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2969, "RouteIdentifier": "027", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398690039, 47.6488703847 ], [ -117.2398365744, 47.6534457073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2970, "RouteIdentifier": "031", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3617197932, 48.8661339983 ], [ -117.3624241485, 48.8688400718 ], [ -117.3572304808, 48.8661780923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2971, "RouteIdentifier": "522", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2764080485, 47.7535766576 ], [ -122.2638528237, 47.7582985129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2972, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7973817559, 47.8650366901 ], [ -121.7774669653, 47.8678385583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2973, "RouteIdentifier": "019", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7803536315, 48.0276618969 ], [ -122.7809989146, 48.0297888001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2974, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5324173506, 47.3958007915 ], [ -121.5160199943, 47.3953842075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2975, "RouteIdentifier": "090", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.325419947, 47.1032121332 ], [ -119.322729826, 47.1025870681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2976, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5905461616, 47.6429198089 ], [ -117.5826104882, 47.642912863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2977, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6437803284, 47.5650600843 ], [ -122.6356948558, 47.5650400988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2978, "RouteIdentifier": "028", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2995949834, 47.4678600276 ], [ -120.2975047463, 47.4351022237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2979, "RouteIdentifier": "203", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9365744608, 47.6873896384 ], [ -121.9716304243, 47.6944719968 ], [ -121.9810154345, 47.7012895486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2980, "RouteIdentifier": "018", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869343886, 47.298301147 ], [ -122.1774995641, 47.3024217933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2981, "RouteIdentifier": "119", "AADT": 510 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2103050963, 47.4923049652 ], [ -123.2231492867, 47.4962089759 ], [ -123.2418846075, 47.4953345304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2982, "RouteIdentifier": "504", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8351070251, 46.2928789335 ], [ -122.8112469946, 46.2969576394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2983, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0397574174, 46.474224958 ], [ -117.0422413047, 46.4742309777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2984, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5645756943, 48.3674740397 ], [ -119.5324591897, 48.3860626961 ], [ -119.5211794514, 48.4039684769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2985, "RouteIdentifier": "005", "AADT": 162000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223421817, 47.6560094062 ], [ -122.321753728, 47.6660998622 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2986, "RouteIdentifier": "005", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622122897, 48.7536867617 ], [ -122.4616138919, 48.7607636257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2987, "RouteIdentifier": "405", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2538113908, 47.4617511143 ], [ -122.2498888662, 47.4623828171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2988, "RouteIdentifier": "097", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4107130626, 46.2554072697 ], [ -120.3982811706, 46.2753155879 ], [ -120.3693689354, 46.2786231674 ], [ -120.3580676477, 46.2967738517 ], [ -120.3330101537, 46.3081349737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2989, "RouteIdentifier": "395", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.082542582, 46.2513545129 ], [ -119.0827548583, 46.252250739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2990, "RouteIdentifier": "007", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276587856, 47.2283207799 ], [ -122.4280346059, 47.2286568082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2991, "RouteIdentifier": "508", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7194158446, 46.5756303426 ], [ -122.7173359337, 46.5756310576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2992, "RouteIdentifier": "129", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0451921636, 46.416527455 ], [ -117.0442671142, 46.4171675734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2993, "RouteIdentifier": "012", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5169772116, 46.6260720818 ], [ -120.5114853073, 46.6260626792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2994, "RouteIdentifier": "014SPMARYHL", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8292860584, 45.6940654066 ], [ -120.8245858874, 45.6986339731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2995, "RouteIdentifier": "542", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4156991339, 48.7941935233 ], [ -122.395950267, 48.8041008656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2996, "RouteIdentifier": "017", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3961715735, 47.919272726 ], [ -119.4353927693, 47.9216556451 ], [ -119.5135000122, 47.950443261 ], [ -119.5329788462, 47.9510554207 ], [ -119.5422997674, 47.9443701814 ], [ -119.564793237, 47.9428888341 ], [ -119.6371724962, 47.9520756207 ], [ -119.6479252829, 47.9603062437 ], [ -119.6534084763, 47.9721497191 ], [ -119.6485168005, 47.9848915126 ], [ -119.6506748055, 47.9912018634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2997, "RouteIdentifier": "002", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4055514032, 47.6207224415 ], [ -119.3805932317, 47.6235798402 ], [ -119.3647672058, 47.6193901694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2998, "RouteIdentifier": "101", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8122989005, 46.6665841945 ], [ -123.809145399, 46.6649346237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 2999, "RouteIdentifier": "397", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1061582106, 46.2060951858 ], [ -119.1071132149, 46.2075458387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3000, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3362411853, 47.4550266445 ], [ -120.3360094985, 47.4608143832 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3001, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730113456, 47.2256809047 ], [ -117.0730185905, 47.2267941681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3002, "RouteIdentifier": "523", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289242991, 47.7341017926 ], [ -122.3236068716, 47.7340600888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3003, "RouteIdentifier": "002", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0941270076, 47.7457487872 ], [ -121.0893942423, 47.7454347093 ], [ -121.0764752001, 47.7551681673 ], [ -121.0775873896, 47.7686150769 ], [ -121.0729087438, 47.773323135 ], [ -121.060451893, 47.7803801069 ], [ -121.0353893482, 47.7843056375 ], [ -121.0149919147, 47.7731379178 ], [ -120.9890649278, 47.7669597776 ], [ -120.9403149112, 47.7817991783 ], [ -120.926773205, 47.7835826432 ], [ -120.911885984, 47.7797192708 ], [ -120.8736181816, 47.7912719586 ], [ -120.8260870372, 47.777964567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3004, "RouteIdentifier": "231", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8553269485, 47.8483119805 ], [ -117.8483182897, 47.8533575039 ], [ -117.838164281, 47.8740349974 ], [ -117.8385186675, 47.8839866036 ], [ -117.8160774557, 47.904185807 ], [ -117.7729376468, 47.9319295106 ], [ -117.7601643293, 47.9514802553 ], [ -117.7306706015, 47.9778797622 ], [ -117.730227038, 47.9908989454 ], [ -117.7260701767, 47.9948236433 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3005, "RouteIdentifier": "010", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6235085123, 47.0432551254 ], [ -120.6108296856, 47.0345615907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3006, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3360094985, 47.4608143832 ], [ -120.3370917545, 47.4657444174 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3007, "RouteIdentifier": "121", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9357154749, 46.9527589941 ], [ -122.9380064027, 46.9527490926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3008, "RouteIdentifier": "005RL005EXP", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286460195, 47.6218398679 ], [ -122.3255888568, 47.6309781209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3009, "RouteIdentifier": "224", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4001468865, 46.2808655483 ], [ -119.3888239449, 46.2866351388 ], [ -119.3850550864, 46.2969567513 ], [ -119.3798468993, 46.3001340733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3010, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1147080098, 48.2225207152 ], [ -117.0718319169, 48.2146041919 ], [ -117.0491706107, 48.1875683679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3011, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6640345732, 48.6790336908 ], [ -118.6592835463, 48.69353696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3012, "RouteIdentifier": "009", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2343676861, 48.3157860192 ], [ -122.2346365429, 48.3169213007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3013, "RouteIdentifier": "270", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2010536613, 46.7337602693 ], [ -117.1937212048, 46.7334218163 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3014, "RouteIdentifier": "002CODIVISN", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112846076, 47.6862395483 ], [ -117.4112120534, 47.6843406722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3015, "RouteIdentifier": "395", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8339867358, 48.3531223429 ], [ -117.854425242, 48.4239853112 ], [ -117.9008434138, 48.4812158123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3016, "RouteIdentifier": "397", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0547323353, 46.1734065603 ], [ -119.0609392727, 46.1762466146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3017, "RouteIdentifier": "206", "AADT": 760 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.202021796, 47.8299990291 ], [ -117.1906863712, 47.8382800486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3018, "RouteIdentifier": "101COABERDN", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8839143851, 46.9770579066 ], [ -123.8824654132, 46.9762996857 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3019, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3363467181, 47.5916540334 ], [ -122.3366396811, 47.6036659781 ], [ -122.3448873174, 47.6170758429 ], [ -122.3435956074, 47.6246542116 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3020, "RouteIdentifier": "530", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0102677154, 48.2683045733 ], [ -121.9969976219, 48.2744489921 ], [ -121.9882608553, 48.2735411001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3021, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1018056421, 47.1837746945 ], [ -123.0966058497, 47.1747523811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3022, "RouteIdentifier": "112", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2601698309, 48.2506931926 ], [ -124.2595417057, 48.249031188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3023, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3010762949, 46.426715932 ], [ -117.2925240987, 46.4259053325 ], [ -117.2640416943, 46.4083472778 ], [ -117.2471726354, 46.4035618315 ], [ -117.2263614526, 46.4056970206 ], [ -117.2143023696, 46.4117358872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3024, "RouteIdentifier": "531", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2153052769, 48.1518278439 ], [ -122.1937378718, 48.1522064888 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3025, "RouteIdentifier": "503", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796927801, 45.9278618295 ], [ -122.3796394499, 45.9403750242 ], [ -122.3704124175, 45.9461267079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3026, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2271386392, 48.1520086536 ], [ -122.2153052769, 48.1518278439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3027, "RouteIdentifier": "009", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2379325105, 48.3993275149 ], [ -122.2406467581, 48.4027244437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3028, "RouteIdentifier": "012", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3874436362, 47.0046753037 ], [ -123.3831477693, 46.998968611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3029, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3133077561, 47.3151824274 ], [ -122.3133014011, 47.3166524228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3030, "RouteIdentifier": "530", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0229079186, 48.2627125108 ], [ -122.0149147028, 48.26670449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3031, "RouteIdentifier": "099", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3393798517, 47.5620616142 ], [ -122.339393127, 47.5668492127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3032, "RouteIdentifier": "971", "AADT": 870 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2028039844, 47.8632306636 ], [ -120.1924069122, 47.866359942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3033, "RouteIdentifier": "160", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6154441079, 47.5048209466 ], [ -122.6100956059, 47.5047904492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3034, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8030737493, 46.9773424769 ], [ -123.7745905953, 46.9816357852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3035, "RouteIdentifier": "101", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.918842027, 47.8022660378 ], [ -122.9278853234, 47.7838704693 ], [ -122.9185752836, 47.7735579364 ], [ -122.8995415369, 47.7691442355 ], [ -122.8927871706, 47.7538639977 ], [ -122.8777886746, 47.743200821 ], [ -122.8964164726, 47.6985807685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3036, "RouteIdentifier": "104", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4989034271, 47.8005733284 ], [ -122.4984055596, 47.7996307337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3037, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8764947699, 46.5550803084 ], [ -122.8769701281, 46.5656688487 ], [ -122.886654867, 46.5818960485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3038, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.110917332, 48.053411821 ], [ -122.1111876927, 48.0718480284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3039, "RouteIdentifier": "274", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0426450193, 47.2398211593 ], [ -117.0400651005, 47.2403316548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3040, "RouteIdentifier": "005", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320109391, 47.5692199392 ], [ -122.3192746176, 47.5777213746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3041, "RouteIdentifier": "283", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7255609263, 47.1697949724 ], [ -119.6943596205, 47.1892246234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3042, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6669203097, 45.6632919305 ], [ -122.6645970993, 45.6715670557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3043, "RouteIdentifier": "021", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6468785968, 48.7737685937 ], [ -118.6164943357, 48.7884410173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3044, "RouteIdentifier": "290", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1332932554, 47.7045387135 ], [ -117.0986362805, 47.712113508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3045, "RouteIdentifier": "020", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2801945178, 48.4926127654 ], [ -122.2745076704, 48.4947462696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3046, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9007224617, 46.1436344597 ], [ -122.8991903157, 46.1440948709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3047, "RouteIdentifier": "903", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9437717492, 47.1965328965 ], [ -120.9462399136, 47.1968530327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3048, "RouteIdentifier": "155", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4406634454, 48.3884548136 ], [ -119.4751978366, 48.3959072026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3049, "RouteIdentifier": "395", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9072875101, 48.5485390558 ], [ -117.9122497826, 48.5496184382 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3050, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.869200631, 47.2331168365 ], [ -119.8640137768, 47.2332276959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3051, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6018306923, 46.1025658531 ], [ -119.6010199635, 46.1841411231 ], [ -119.6325132774, 46.1868027068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3052, "RouteIdentifier": "240", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2152365358, 46.2321748638 ], [ -119.1978814184, 46.2296948397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3053, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7065027719, 48.2686887461 ], [ -121.6816043754, 48.269260962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3054, "RouteIdentifier": "240", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3312866855, 46.3333696967 ], [ -119.3168183585, 46.3257612363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3055, "RouteIdentifier": "129", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.044476644, 46.4040732772 ], [ -117.0455119005, 46.4058071413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3056, "RouteIdentifier": "027", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0730024916, 47.2240691944 ], [ -117.0730113456, 47.2256809047 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3057, "RouteIdentifier": "507", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5900304239, 46.9331912019 ], [ -122.563890205, 46.9320426175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3058, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5605106245, 47.308418187 ], [ -119.5509551438, 47.3216616972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3059, "RouteIdentifier": "506", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8916600156, 46.4181629111 ], [ -122.8895694243, 46.4396122337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3060, "RouteIdentifier": "028", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1403017666, 47.3713844944 ], [ -120.1145793468, 47.3620058597 ], [ -120.091885291, 47.3467454248 ], [ -120.0759154793, 47.3283402333 ], [ -120.0718463794, 47.3150765031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3061, "RouteIdentifier": "410", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.969981025, 46.8708547341 ], [ -120.954468967, 46.8616530173 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3062, "RouteIdentifier": "020", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6266865938, 48.1904292048 ], [ -122.6268548608, 48.1963630554 ], [ -122.6340939948, 48.1993242257 ], [ -122.634532628, 48.2055146884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3063, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411140563, 47.7170064104 ], [ -117.4113416177, 47.7366272099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3064, "RouteIdentifier": "125", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3873052723, 46.0007282614 ], [ -118.3873059636, 46.0008733795 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3065, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021438178, 46.1517167071 ], [ -119.2021936567, 46.1479617048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3066, "RouteIdentifier": "014", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3561483502, 45.5765439754 ], [ -122.3371199918, 45.5743187936 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3067, "RouteIdentifier": "395", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.134005824, 46.2288412929 ], [ -119.1318940785, 46.233167577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3068, "RouteIdentifier": "027", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.147368489, 46.7904698955 ], [ -117.1171469709, 46.81324534 ], [ -117.1147380578, 46.8287560939 ], [ -117.1250730248, 46.8420876815 ], [ -117.1254311457, 46.8526895018 ], [ -117.1311720543, 46.8600078141 ], [ -117.1257662315, 46.8805636369 ], [ -117.1162608729, 46.8915969469 ], [ -117.0768183035, 46.9087074668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3069, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7380382951, 48.6477058434 ], [ -118.7340738301, 48.6404765011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3070, "RouteIdentifier": "014", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3371199918, 45.5743187936 ], [ -122.3368309639, 45.5742854262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3071, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4622283159, 48.7681610573 ], [ -122.468301725, 48.7760746279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3072, "RouteIdentifier": "009", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2643571316, 48.430063418 ], [ -122.2633531437, 48.4386943331 ], [ -122.2563532279, 48.4450517182 ], [ -122.2437846159, 48.4455328201 ], [ -122.2376759016, 48.4518050892 ], [ -122.2340372998, 48.459902027 ], [ -122.2364699855, 48.4678814769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3073, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3600916592, 46.8977782002 ], [ -117.3480763006, 46.9039214532 ], [ -117.3512048046, 46.911617455 ], [ -117.3488390721, 46.920878082 ], [ -117.3334887527, 46.9374674228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3074, "RouteIdentifier": "097", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1948130997, 47.7039806698 ], [ -120.2022962075, 47.715799214 ], [ -120.2016705042, 47.7214958149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3075, "RouteIdentifier": "241", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9791440454, 46.3170643063 ], [ -119.9790026711, 46.3316725974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3076, "RouteIdentifier": "410", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9813954636, 47.1994152348 ], [ -121.9791170661, 47.1993968717 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3077, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2977336595, 47.4242381539 ], [ -120.2969810046, 47.4206856987 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3078, "RouteIdentifier": "090", "AADT": 97000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2332386303, 47.6740978586 ], [ -117.2196536686, 47.6737301547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3079, "RouteIdentifier": "150", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0194056477, 47.8409567731 ], [ -120.0148285272, 47.8398314423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3080, "RouteIdentifier": "169", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1886206387, 47.478462399 ], [ -122.1965538402, 47.4840107581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3081, "RouteIdentifier": "167", "AADT": 103000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583295166, 47.2805652971 ], [ -122.2579004931, 47.2918141977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3082, "RouteIdentifier": "014", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5942584951, 45.6125607215 ], [ -122.5755446732, 45.6090058957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3083, "RouteIdentifier": "020", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.672541743, 48.1597721166 ], [ -122.6377635069, 48.1650503371 ], [ -122.6372168781, 48.1706516249 ], [ -122.6311760448, 48.1709418294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3084, "RouteIdentifier": "101", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3923505431, 47.9892462948 ], [ -124.390330186, 48.0234983063 ], [ -124.3861356451, 48.0343724022 ], [ -124.3771964333, 48.0428294994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3085, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9414768713, 46.633570246 ], [ -122.9550744316, 46.6440853642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3086, "RouteIdentifier": "900", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2262812506, 47.4777333495 ], [ -122.2243682744, 47.4778018949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3087, "RouteIdentifier": "027", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398365744, 47.6534457073 ], [ -117.2398112843, 47.6571200997 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3088, "RouteIdentifier": "281", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8612713575, 47.0847839089 ], [ -119.862512719, 47.0861911278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3089, "RouteIdentifier": "018", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9672362186, 47.4364490931 ], [ -121.9463085291, 47.4610684243 ], [ -121.8925478736, 47.4771180887 ], [ -121.884585692, 47.504313222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3090, "RouteIdentifier": "092SPGRANIT", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9899301488, 48.0831794362 ], [ -121.9880421437, 48.0837433176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3091, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9623607954, 46.955497291 ], [ -119.9739327012, 47.0005510232 ], [ -119.9555037804, 47.0083586637 ], [ -119.9485401068, 47.0155594946 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3092, "RouteIdentifier": "509", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3249301321, 47.4940508534 ], [ -122.325629622, 47.5091003278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3093, "RouteIdentifier": "530", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6017358428, 48.2552691488 ], [ -121.6020400669, 48.2595802573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3094, "RouteIdentifier": "525", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.300279957, 47.9256460771 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3095, "RouteIdentifier": "022", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.998439324, 46.2111215603 ], [ -119.9393101914, 46.196885705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3096, "RouteIdentifier": "141", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4664701671, 45.7148037075 ], [ -121.4672397114, 45.719390102 ], [ -121.486682184, 45.7277580783 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3097, "RouteIdentifier": "241", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9996278638, 46.2207119718 ], [ -119.9995278053, 46.2401318028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3098, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5646817112, 47.503963135 ], [ -117.5646472962, 47.5079585085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3099, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2701126525, 47.1419665364 ], [ -119.285225107, 47.1460797472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3100, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0661637707, 47.9143207671 ], [ -122.0436242083, 47.9056634606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3101, "RouteIdentifier": "005", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5056560072, 48.7850058356 ], [ -122.5108612391, 48.7867012138 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3102, "RouteIdentifier": "823", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5261373787, 46.6365454184 ], [ -120.5304207056, 46.6430874404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3103, "RouteIdentifier": "005", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1814065807, 48.04479845 ], [ -122.1839911758, 48.0494099826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3104, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.969523937, 47.2214727186 ], [ -123.959008749, 47.2322639062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3105, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6056799649, 46.4748288907 ], [ -117.6041932764, 46.4748995993 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3106, "RouteIdentifier": "501", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6938570638, 45.637225155 ], [ -122.696160252, 45.640445465 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3107, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4819452858, 46.2520832532 ], [ -119.4644208312, 46.2537605149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3108, "RouteIdentifier": "096", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2317004486, 47.8819477141 ], [ -122.2196680439, 47.8802932531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3109, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0372995865, 47.9328968903 ], [ -119.0177040011, 47.9367931061 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3110, "RouteIdentifier": "028", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7681464636, 47.2343020206 ], [ -119.7468893165, 47.2346362782 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3111, "RouteIdentifier": "547", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383116691, 48.9818595874 ], [ -122.2471159221, 48.9855358738 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3112, "RouteIdentifier": "101", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1417952785, 48.074895211 ], [ -123.1231539266, 48.0732680847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3113, "RouteIdentifier": "009", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2255548441, 48.5141869713 ], [ -122.2261409872, 48.5282544504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3114, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3444983864, 47.6942136653 ], [ -122.3445897421, 47.7021703261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3115, "RouteIdentifier": "395", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8208435355, 46.7340210389 ], [ -118.7557863554, 46.7871441721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3116, "RouteIdentifier": "202", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0986125857, 47.6645874444 ], [ -122.0911114715, 47.6582107586 ], [ -122.078551081, 47.6557377147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3117, "RouteIdentifier": "004", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9074799263, 46.1442853545 ], [ -122.9007224617, 46.1436344597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3118, "RouteIdentifier": "005RL005EXP", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3255888568, 47.6309781209 ], [ -122.3224725894, 47.655393277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3119, "RouteIdentifier": "260", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5495094772, 46.6453560334 ], [ -118.4999251675, 46.6516187698 ], [ -118.4903184729, 46.6611044962 ], [ -118.4227108674, 46.6969057794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3120, "RouteIdentifier": "174", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0106509547, 47.9393125368 ], [ -118.9560547959, 47.9246186729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3121, "RouteIdentifier": "003", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8277972731, 47.3865787228 ], [ -122.8288444363, 47.396432791 ], [ -122.8375622701, 47.402573245 ], [ -122.8415602841, 47.410924864 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3122, "RouteIdentifier": "003", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6823571827, 47.7086751463 ], [ -122.6690587997, 47.7496337056 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3123, "RouteIdentifier": "005", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8903778041, 46.415684535 ], [ -122.8910176347, 46.421545267 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3124, "RouteIdentifier": "525", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2663139585, 47.8342508992 ], [ -122.2724340167, 47.8395507144 ], [ -122.2742164355, 47.8479952638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3125, "RouteIdentifier": "395", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9055307646, 48.5363629877 ], [ -117.9058230966, 48.5454377559 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3126, "RouteIdentifier": "003", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6869120748, 47.6932883974 ], [ -122.6823571827, 47.7086751463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3127, "RouteIdentifier": "119", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1636333379, 47.4006707974 ], [ -123.1789488644, 47.4041675409 ], [ -123.1925948411, 47.4136830468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3128, "RouteIdentifier": "031", "AADT": 120 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3521889436, 48.8735003742 ], [ -117.3286715777, 48.892802401 ], [ -117.3238638229, 48.9174144214 ], [ -117.3133128707, 48.9245515322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3129, "RouteIdentifier": "016", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.624470827, 47.4111862674 ], [ -122.623334611, 47.4284900867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3130, "RouteIdentifier": "005RL005EXP", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32934455, 47.6957536487 ], [ -122.3295202166, 47.7043262966 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3131, "RouteIdentifier": "022", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9172628783, 46.1916920438 ], [ -119.8764960512, 46.187636732 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3132, "RouteIdentifier": "097", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5925213891, 47.0219833385 ], [ -120.6108296856, 47.0345615907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3133, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3146803025, 46.3895637812 ], [ -120.3149961011, 46.3824800478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3134, "RouteIdentifier": "003", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7922032406, 47.476414011 ], [ -122.7663244649, 47.4942350849 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3135, "RouteIdentifier": "021", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7347455537, 48.2990724352 ], [ -118.7493162362, 48.337391075 ], [ -118.7408226152, 48.3606961167 ], [ -118.7499280968, 48.3721707244 ], [ -118.7467825618, 48.3916586524 ], [ -118.7320955432, 48.399702401 ], [ -118.737561094, 48.4139729393 ], [ -118.7275775146, 48.4265108249 ], [ -118.7403276827, 48.4401809605 ], [ -118.7536657363, 48.4657381976 ], [ -118.7469823226, 48.4725287776 ], [ -118.7358955757, 48.4734852504 ], [ -118.7280051955, 48.4797806169 ], [ -118.7365952788, 48.4817782442 ], [ -118.7412126364, 48.4967914056 ], [ -118.7340631192, 48.5303352221 ], [ -118.7496554917, 48.5477265072 ], [ -118.7437512212, 48.5542247409 ], [ -118.7430996768, 48.5612042754 ], [ -118.7481235162, 48.5686839207 ], [ -118.7432636175, 48.5766708895 ], [ -118.7392164438, 48.6029509222 ], [ -118.7301109365, 48.6209221799 ], [ -118.7302329781, 48.6349158109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3136, "RouteIdentifier": "202", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1638845081, 47.7585835533 ], [ -122.1646271104, 47.7572105358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3137, "RouteIdentifier": "164", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1526290082, 47.2744486003 ], [ -122.1407606558, 47.2634183904 ], [ -122.1282708819, 47.2605031318 ], [ -122.1182659294, 47.2502870454 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3138, "RouteIdentifier": "902", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6687451729, 47.5798764344 ], [ -117.6629212073, 47.5817195825 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3139, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.238568264, 48.5105092144 ], [ -122.2352752464, 48.510504468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3140, "RouteIdentifier": "161", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.2742763685, 46.855512758 ], [ -122.2666996294, 46.8629061998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3141, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7022061254, 47.8572690469 ], [ -121.6924466276, 47.8522943399 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3142, "RouteIdentifier": "542", "AADT": 540 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6799490243, 48.8623665546 ], [ -121.6813768359, 48.8537575857 ], [ -121.6884690105, 48.8489003507 ], [ -121.6870544478, 48.8446393966 ], [ -121.6927461801, 48.8468788469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3143, "RouteIdentifier": "097AR", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2234272269, 47.6648157581 ], [ -120.2080808869, 47.675976654 ], [ -120.2072556027, 47.690389145 ], [ -120.2161904322, 47.7091769834 ], [ -120.2275722374, 47.7218054046 ], [ -120.2262456476, 47.7319503729 ], [ -120.2137503235, 47.7509668337 ], [ -120.1983417337, 47.7602672279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3144, "RouteIdentifier": "395", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1411095244, 46.2154260444 ], [ -119.1371263893, 46.2216194455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3145, "RouteIdentifier": "305", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5198277142, 47.6444797699 ], [ -122.5232713274, 47.6536299928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3146, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6127739583, 48.5004551192 ], [ -122.612637467, 48.5100800768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3147, "RouteIdentifier": "007", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4347516102, 47.1123943169 ], [ -122.4348569541, 47.1194809791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3148, "RouteIdentifier": "302", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7584799402, 47.3744092288 ], [ -122.7478911271, 47.3780569673 ], [ -122.7162522863, 47.3743552356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3149, "RouteIdentifier": "167", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3464829935, 47.2161092989 ], [ -122.3420450241, 47.2135776972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3150, "RouteIdentifier": "028", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8085220192, 47.3154321744 ], [ -118.7556512324, 47.3133928496 ], [ -118.6991152602, 47.3325467605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3151, "RouteIdentifier": "002", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3496648896, 48.0177222579 ], [ -117.3497942054, 48.0321149063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3152, "RouteIdentifier": "504", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8665119074, 46.3036401573 ], [ -122.8562709135, 46.2938613758 ], [ -122.8450829264, 46.2935798136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3153, "RouteIdentifier": "507", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9699877988, 46.7110483932 ], [ -122.9675307628, 46.7105506649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3154, "RouteIdentifier": "224", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3798468993, 46.3001340733 ], [ -119.3680598924, 46.3027624934 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3155, "RouteIdentifier": "005", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6305634117, 47.0911974641 ], [ -122.6168907485, 47.0952000036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3156, "RouteIdentifier": "195", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1050710923, 46.5588432113 ], [ -117.1186833573, 46.5672526465 ], [ -117.133768563, 46.5681320318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3157, "RouteIdentifier": "397", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0997711539, 46.223724902 ], [ -119.0836074304, 46.2194354617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3158, "RouteIdentifier": "207", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.730179083, 47.7636832556 ], [ -120.7115319431, 47.7789042748 ], [ -120.7149150326, 47.8093423824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3159, "RouteIdentifier": "002", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0367508916, 47.9006838682 ], [ -122.0166827624, 47.8768683004 ], [ -122.0078653292, 47.872487544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3160, "RouteIdentifier": "172", "AADT": 170 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.63597552, 47.8120676338 ], [ -119.6287415959, 47.8154486037 ], [ -119.3841243851, 47.8153402952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3161, "RouteIdentifier": "900", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0619448123, 47.5311845564 ], [ -122.0632060501, 47.5412525635 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3162, "RouteIdentifier": "302", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7162522863, 47.3743552356 ], [ -122.7114277659, 47.3745220756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3163, "RouteIdentifier": "507", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9531139031, 46.7191026108 ], [ -122.9527396272, 46.720041065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3164, "RouteIdentifier": "007", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2754741187, 46.7999623833 ], [ -122.2907543651, 46.8008242314 ], [ -122.2999838929, 46.812840824 ], [ -122.3010136823, 46.8299402753 ], [ -122.3179158372, 46.8309769948 ], [ -122.3198113886, 46.8392861576 ], [ -122.315135696, 46.8480783308 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3165, "RouteIdentifier": "101", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3895298763, 47.9579786515 ], [ -124.4034665195, 47.9674631851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3166, "RouteIdentifier": "005RL005EXP", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220411659, 47.6652612865 ], [ -122.3206620248, 47.6769065098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3167, "RouteIdentifier": "902", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6826564308, 47.5676722178 ], [ -117.6826777243, 47.5721438687 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3168, "RouteIdentifier": "272", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.364773078, 46.8799063068 ], [ -117.3637055225, 46.8798827877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3169, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2916171614, 47.4596862569 ], [ -122.2896393743, 47.4638618378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3170, "RouteIdentifier": "500", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055405288, 45.5917612872 ], [ -122.4055508584, 45.5906041586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3171, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3446909131, 47.7817536234 ], [ -122.3181975005, 47.8175907621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3172, "RouteIdentifier": "172", "AADT": 420 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8130784885, 47.8092766362 ], [ -119.8071947642, 47.81403994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3173, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567735413, 47.1311262985 ], [ -119.2576559361, 47.13692103 ], [ -119.2626695043, 47.1398689271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3174, "RouteIdentifier": "104", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3353283591, 47.7777753423 ], [ -122.3245572303, 47.7776430656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3175, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4369512503, 48.9352749432 ], [ -119.4353841771, 48.9477318207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3176, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1407187037, 46.2701649585 ], [ -118.1377253327, 46.2707786892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3177, "RouteIdentifier": "904", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.581932979, 47.4825221847 ], [ -117.580789949, 47.4831439672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3178, "RouteIdentifier": "507", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586957254, 46.8532935721 ], [ -122.8586860494, 46.8548429235 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3179, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3570622964, 47.2404187331 ], [ -122.356727114, 47.2430577065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3180, "RouteIdentifier": "005", "AADT": 166000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4665031792, 47.1763219389 ], [ -122.4630590407, 47.1874722949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3181, "RouteIdentifier": "525", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5876777121, 48.1210599346 ], [ -122.588157825, 48.1230525484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3182, "RouteIdentifier": "303", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288917189, 47.6068663319 ], [ -122.6288029427, 47.6101244229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3183, "RouteIdentifier": "007", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2079538886, 46.7335435597 ], [ -122.1961396485, 46.7486771117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3184, "RouteIdentifier": "509", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3289448539, 47.4433692551 ], [ -122.3239010868, 47.4397926017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3185, "RouteIdentifier": "240", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.346211276, 46.3415217482 ], [ -119.3312866855, 46.3333696967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3186, "RouteIdentifier": "531", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2383520005, 48.1519754742 ], [ -122.2271386392, 48.1520086536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3187, "RouteIdentifier": "019", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7766696657, 48.0135236739 ], [ -122.7803536315, 48.0276618969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3188, "RouteIdentifier": "522", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2518648885, 47.7585697854 ], [ -122.2497713089, 47.7583930838 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3189, "RouteIdentifier": "182", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3531195123, 46.244832268 ], [ -119.3263441939, 46.2473869538 ], [ -119.2942399537, 46.2575534355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3190, "RouteIdentifier": "516", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2065091301, 47.3725609481 ], [ -122.2022136155, 47.3725592844 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3191, "RouteIdentifier": "527", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2076567487, 47.8095958449 ], [ -122.2074687841, 47.8201159821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3192, "RouteIdentifier": "090", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4110411782, 47.4243576922 ], [ -121.4105333679, 47.412298435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3193, "RouteIdentifier": "281", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8535287712, 47.1322250265 ], [ -119.8534565369, 47.1904786655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3194, "RouteIdentifier": "024", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6011440864, 46.7379133851 ], [ -119.2452761336, 46.7382468305 ], [ -119.2171199962, 46.7443848693 ], [ -119.1975233079, 46.7384199394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3195, "RouteIdentifier": "021", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5888210566, 46.9701558628 ], [ -118.6425828517, 46.9708731434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3196, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6145007274, 47.7154775691 ], [ -122.6156582337, 47.7161387981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3197, "RouteIdentifier": "002", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.16241258, 47.6536361132 ], [ -118.1601671048, 47.6539518845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3198, "RouteIdentifier": "005", "AADT": 247000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3189900834, 47.5793697605 ], [ -122.3207560536, 47.5899474422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3199, "RouteIdentifier": "290", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3594319704, 47.6686111382 ], [ -117.3578020835, 47.6693777985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3200, "RouteIdentifier": "395", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6742632423, 46.8226983388 ], [ -118.6450781398, 46.8426071143 ], [ -118.6291145158, 46.8726381998 ], [ -118.6142343677, 46.889912435 ], [ -118.610684004, 46.9065381072 ], [ -118.5819937965, 46.9413896332 ], [ -118.571639149, 46.9627633161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3201, "RouteIdentifier": "405", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1953416359, 47.4994564392 ], [ -122.1979386219, 47.5094150608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3202, "RouteIdentifier": "291", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4899095304, 47.721909145 ], [ -117.4957696028, 47.7261247472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3203, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4070872362, 47.7441952253 ], [ -117.4056484865, 47.7456876175 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3204, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2267789418, 46.0180871043 ], [ -119.2574764079, 46.0002405136 ], [ -119.3328114294, 45.9767889078 ], [ -119.3425714208, 45.9645105136 ], [ -119.3375517758, 45.9498941429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3205, "RouteIdentifier": "505", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7082095882, 46.4297795526 ], [ -122.703586609, 46.4274712477 ], [ -122.7097401995, 46.4213142088 ], [ -122.7094939136, 46.4057567359 ], [ -122.689147502, 46.3885347527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3206, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.587167089, 47.5708280871 ], [ -117.5687388318, 47.5884737405 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3207, "RouteIdentifier": "017", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6525696935, 48.0041955683 ], [ -119.676555192, 48.0264537662 ], [ -119.6600734659, 48.0750839441 ], [ -119.6601971396, 48.0871726218 ], [ -119.6677344082, 48.0980217898 ], [ -119.67945547, 48.1025546083 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3208, "RouteIdentifier": "202", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.118861794, 47.6731312949 ], [ -122.1151301203, 47.6720446521 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3209, "RouteIdentifier": "014", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5209883629, 45.728362545 ], [ -121.4949520588, 45.7249743594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3210, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9617770984, 46.9451030468 ], [ -119.9600764508, 46.9404487329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3211, "RouteIdentifier": "241", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9781878444, 46.3023441821 ], [ -119.9783785412, 46.3052986594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3212, "RouteIdentifier": "027", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395409867, 47.6757907672 ], [ -117.2396887191, 47.6862002896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3213, "RouteIdentifier": "509", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3998093609, 47.2472450781 ], [ -122.3759701159, 47.2469906191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3214, "RouteIdentifier": "090", "AADT": 115000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3812522854, 47.6538559571 ], [ -117.3696991532, 47.6539119327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3215, "RouteIdentifier": "821", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4770208515, 46.690052266 ], [ -120.4742083499, 46.700892472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3216, "RouteIdentifier": "012", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5818052442, 46.629370911 ], [ -120.5724635589, 46.6251660017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3217, "RouteIdentifier": "516", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0435504851, 47.3579738218 ], [ -122.0376047767, 47.3579773831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3218, "RouteIdentifier": "524", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1754150379, 47.811547043 ], [ -122.1526476236, 47.8049830492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3219, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1603852076, 46.8270351021 ], [ -123.139226139, 46.8258098296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3220, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7947532586, 47.4893941273 ], [ -121.7957761395, 47.4887865294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3221, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5446847676, 48.8138630642 ], [ -122.5530762786, 48.8225160709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3222, "RouteIdentifier": "155", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0380002259, 47.9325544575 ], [ -119.0372995865, 47.9328968903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3223, "RouteIdentifier": "123", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5784341072, 46.6855847693 ], [ -121.5805077567, 46.6890208076 ], [ -121.5774144898, 46.6931081642 ], [ -121.5824741364, 46.7004388608 ], [ -121.5754153801, 46.7106518512 ], [ -121.5775304787, 46.7192388112 ], [ -121.5687127572, 46.732258391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3224, "RouteIdentifier": "303", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6923069088, 47.6636431264 ], [ -122.6926355567, 47.6632523312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3225, "RouteIdentifier": "002COBROWNE", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4133229534, 47.6590747649 ], [ -117.4134370239, 47.6535198038 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3226, "RouteIdentifier": "285", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3213843881, 47.4347156331 ], [ -120.3248875214, 47.4382457109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3227, "RouteIdentifier": "105", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8023974793, 46.9687249499 ], [ -123.8029450786, 46.9697219828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3228, "RouteIdentifier": "410", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2103710587, 46.9691134856 ], [ -121.1674967694, 46.9781722496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3229, "RouteIdentifier": "082", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3418776019, 46.2095624858 ], [ -119.3224569911, 46.1995501523 ], [ -119.2767500174, 46.1970146173 ], [ -119.2565858958, 46.1882981658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3230, "RouteIdentifier": "285", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248167693, 47.4409909149 ], [ -120.3362411853, 47.4550266445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3231, "RouteIdentifier": "026", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7477078919, 46.8989696084 ], [ -119.6446041548, 46.89906961 ], [ -119.6184725877, 46.8939308682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3232, "RouteIdentifier": "155", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9762561497, 48.135096529 ], [ -118.9780832374, 48.1620197263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3233, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3601967875, 48.1093444067 ], [ -123.355714051, 48.1030129375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3234, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3450935078, 47.7322891749 ], [ -122.3451133369, 47.7341530585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3235, "RouteIdentifier": "021", "AADT": 300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5639273641, 46.9693979048 ], [ -118.5710608079, 46.9700238316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3236, "RouteIdentifier": "270", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.054159283, 46.73844535 ], [ -117.0489497271, 46.7350588091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3237, "RouteIdentifier": "099", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3134257955, 47.2979565948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3238, "RouteIdentifier": "290", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3625630309, 47.6667062903 ], [ -117.361293531, 47.6674773757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3239, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7649510613, 47.0430902917 ], [ -122.7647638069, 47.0392228487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3240, "RouteIdentifier": "082", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200293789, 46.4169522648 ], [ -120.3038736838, 46.4140405564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3241, "RouteIdentifier": "161", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3113887255, 47.2800166221 ], [ -122.3135126494, 47.2840032145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3242, "RouteIdentifier": "510", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6929086258, 47.0122908625 ], [ -122.691647237, 47.0115068577 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3243, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4751894509, 48.7143961658 ], [ -122.4744175105, 48.7139080205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3244, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2997979412, 47.4682860937 ], [ -120.3005913938, 47.4765744345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3245, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2374372336, 48.2352708759 ], [ -122.2456895186, 48.2439992336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3246, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2231220368, 46.277953835 ], [ -118.2202318761, 46.2679666309 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3247, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9991848792, 47.2312647073 ], [ -119.9790240031, 47.2432862158 ], [ -119.9536791305, 47.233042477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3248, "RouteIdentifier": "508", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.540197422, 46.6050020592 ], [ -122.4838497619, 46.6021253382 ], [ -122.4732795737, 46.6069408848 ], [ -122.4673707706, 46.6036301167 ], [ -122.4500625677, 46.6041140274 ], [ -122.4409160896, 46.6008817765 ], [ -122.4151954073, 46.5784671948 ], [ -122.4059420339, 46.576299297 ], [ -122.3424654966, 46.5855862749 ], [ -122.3033441932, 46.5641172674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3249, "RouteIdentifier": "290", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3578020835, 47.6693777985 ], [ -117.3500629955, 47.6709209625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3250, "RouteIdentifier": "397", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0800536366, 46.2333845599 ], [ -119.0824824346, 46.2383223812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3251, "RouteIdentifier": "204", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376831738, 47.9777063656 ], [ -122.1376928426, 47.9781939272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3252, "RouteIdentifier": "003", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7050597877, 47.6433614356 ], [ -122.7045690526, 47.6571681504 ], [ -122.6927958127, 47.661573015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3253, "RouteIdentifier": "507", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9543423418, 46.7162401177 ], [ -122.9531139031, 46.7191026108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3254, "RouteIdentifier": "104COKNGSTN", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4975542478, 47.7988312911 ], [ -122.4984055596, 47.7996307337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3255, "RouteIdentifier": "155", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0105057584, 47.9398197883 ], [ -119.0005313016, 47.9426815467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3256, "RouteIdentifier": "090", "AADT": 102000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3664685234, 47.6539039945 ], [ -117.3473440936, 47.6538234455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3257, "RouteIdentifier": "003", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6707470211, 47.5494494474 ], [ -122.6709875264, 47.5540420396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3258, "RouteIdentifier": "702", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5540510049, 46.9380208301 ], [ -122.5417481504, 46.93783701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3259, "RouteIdentifier": "002", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0801746668, 47.6417804378 ], [ -120.0767740067, 47.6417886706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3260, "RouteIdentifier": "097", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1937187948, 47.6998534485 ], [ -120.1948130997, 47.7039806698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3261, "RouteIdentifier": "026", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.3038957285, 46.7578975125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3262, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1354894847, 48.7101414512 ], [ -121.1220771925, 48.7109441126 ], [ -121.1150297344, 48.7073618219 ], [ -121.1093361213, 48.6954098047 ], [ -121.0998434043, 48.6894739435 ], [ -121.0945409463, 48.6918135397 ], [ -121.0962773257, 48.7095518988 ], [ -121.0828527337, 48.7097458743 ], [ -121.0780622172, 48.7166359531 ], [ -121.0562083367, 48.7288096268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3263, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9761197664, 46.7176133986 ], [ -122.9752113547, 46.7336230278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3264, "RouteIdentifier": "512", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3637186054, 47.1582777108 ], [ -122.3478885514, 47.157627397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3265, "RouteIdentifier": "005", "AADT": 119000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839911758, 48.0494099826 ], [ -122.1844675978, 48.0584615787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3266, "RouteIdentifier": "395", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4066398664, 47.7632226212 ], [ -117.4044843472, 47.7691968077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3267, "RouteIdentifier": "020", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0611804157, 48.5291856242 ], [ -121.9951021272, 48.5298846785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3268, "RouteIdentifier": "522", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3151264897, 47.6852564017 ], [ -122.3059209037, 47.6920504533 ], [ -122.3055000322, 47.6975803085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3269, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.182959056, 46.3492095996 ], [ -120.1698660388, 46.3410315909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3270, "RouteIdentifier": "102", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1777008261, 47.2523092089 ], [ -123.1595614502, 47.2522250859 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3271, "RouteIdentifier": "305", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.51414874, 47.6248548642 ], [ -122.5155441649, 47.6357793786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3272, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1611915713, 47.7452096371 ], [ -122.1523661986, 47.7330804139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3273, "RouteIdentifier": "206", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3512461081, 47.7870908551 ], [ -117.3384306266, 47.7875972066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3274, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1027482966, 47.978079114 ], [ -122.1055377983, 47.9978871915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3275, "RouteIdentifier": "410", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.036347956, 47.1580428725 ], [ -122.0342099984, 47.1595496539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3276, "RouteIdentifier": "020", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6680924655, 48.3230367393 ], [ -119.6615285314, 48.3191457527 ], [ -119.629552896, 48.3205927715 ], [ -119.6172366357, 48.3298494085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3277, "RouteIdentifier": "109", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.92417003, 46.9825144102 ], [ -123.9501761308, 46.9833007241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3278, "RouteIdentifier": "097", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4622475833, 48.9998737464 ], [ -119.4638532324, 49.0000867262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3279, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0241669698, 46.4325560871 ], [ -119.0175921586, 46.4482685616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3280, "RouteIdentifier": "002", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1479862888, 47.6503824795 ], [ -120.1271739213, 47.6633503955 ], [ -120.1265553381, 47.657244559 ], [ -120.1204618275, 47.6534221606 ], [ -120.0801746668, 47.6417804378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3281, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.612637467, 48.5100800768 ], [ -122.6126173187, 48.5117929838 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3282, "RouteIdentifier": "100", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0631995935, 46.2983588775 ], [ -124.0561354019, 46.2902587967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3283, "RouteIdentifier": "012", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943463684, 46.6386317502 ], [ -120.5818052442, 46.629370911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3284, "RouteIdentifier": "524SP3RDAVE", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3802638858, 47.8059839555 ], [ -122.3802579386, 47.804112396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3285, "RouteIdentifier": "012", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1563756705, 46.5189965757 ], [ -122.1144886609, 46.5370987947 ], [ -122.0753610512, 46.5476298644 ], [ -122.0066412409, 46.5359150399 ], [ -121.9865919137, 46.5386883542 ], [ -121.9572975987, 46.5353534207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3286, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6260671635, 48.3402015788 ], [ -122.6126424216, 48.3479609208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3287, "RouteIdentifier": "141SPUNDRWD", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5197147624, 45.7571184025 ], [ -121.5176267241, 45.7510393509 ], [ -121.5237581372, 45.7438284052 ], [ -121.5209883629, 45.728362545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3288, "RouteIdentifier": "174", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0445267647, 47.980223996 ], [ -119.0128652831, 47.9734162413 ], [ -119.0033625218, 47.9639235084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3289, "RouteIdentifier": "002", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1885742414, 47.9807304066 ], [ -122.188128621, 47.9807982931 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3290, "RouteIdentifier": "507", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6057120793, 46.9414897752 ], [ -122.593279583, 46.934769492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3291, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940286061, 47.590082601 ], [ -122.2539138096, 47.5892523535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3292, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0194447706, 47.3543865463 ], [ -122.0202766541, 47.3583922895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3293, "RouteIdentifier": "017", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2567131133, 47.1164713022 ], [ -119.2567735413, 47.1311262985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3294, "RouteIdentifier": "103", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0548732503, 46.3323172772 ], [ -124.054617725, 46.3453645423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3295, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478874183, 46.4418799904 ], [ -122.8408960953, 46.4378300484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3296, "RouteIdentifier": "082", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3600450664, 46.2396584936 ], [ -119.3509475564, 46.221897885 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3297, "RouteIdentifier": "002", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754291602, 47.8437264887 ], [ -121.6542540009, 47.8363873413 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3298, "RouteIdentifier": "097", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6636624539, 48.1604813241 ], [ -119.6696000423, 48.1820762782 ], [ -119.713417765, 48.2196444485 ], [ -119.7243645351, 48.2458410328 ], [ -119.7212000555, 48.2626191576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3299, "RouteIdentifier": "397", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0298502289, 46.1536456355 ], [ -119.0341737891, 46.1565283618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3300, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1281070641, 47.3580335124 ], [ -122.1254159669, 47.3580621765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3301, "RouteIdentifier": "203", "AADT": 9800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9810154345, 47.7012895486 ], [ -121.9842126941, 47.7093339084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3302, "RouteIdentifier": "542", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4638096383, 48.7709035452 ], [ -122.4626339661, 48.7713428245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3303, "RouteIdentifier": "548", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7516443954, 48.9896016788 ], [ -122.7520415456, 48.9961053398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3304, "RouteIdentifier": "005HD15463", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2667315548, 47.4648600499 ], [ -122.2643040212, 47.455548918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3305, "RouteIdentifier": "104", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3487077695, 47.7814262958 ], [ -122.338699596, 47.7777824155 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3306, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9199492819, 46.1384787271 ], [ -122.9165979703, 46.1447449432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3307, "RouteIdentifier": "167", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2900662647, 47.2038050564 ], [ -122.2839041915, 47.2030418132 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3308, "RouteIdentifier": "016", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558955585, 47.2752600707 ], [ -122.5604385799, 47.2858209621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3309, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4074639212, 47.8123509195 ], [ -117.4189635614, 47.8314948096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3310, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.804791347, 48.5147408998 ], [ -117.7309310756, 48.5140766628 ], [ -117.7123099829, 48.5025346103 ], [ -117.6930399694, 48.5196228035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3311, "RouteIdentifier": "025", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1360883381, 48.2791408008 ], [ -118.1492755058, 48.3030819249 ], [ -118.1468751595, 48.3068128255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3312, "RouteIdentifier": "411", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.925898762, 46.1234239447 ], [ -122.9228006992, 46.1347958394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3313, "RouteIdentifier": "534", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2954733672, 48.3369797762 ], [ -122.2917893864, 48.3357459775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3314, "RouteIdentifier": "290", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500629955, 47.6709209625 ], [ -117.3468192298, 47.6709658181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3315, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9303556413, 46.9761338415 ], [ -122.920784729, 46.9880445401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3316, "RouteIdentifier": "005RL005EXP", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224725894, 47.655393277 ], [ -122.3220411659, 47.6652612865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3317, "RouteIdentifier": "172", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6419803649, 47.815343803 ], [ -119.6399303545, 47.813732472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3318, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2911115679, 47.1240365899 ], [ -119.289772823, 47.1254917575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3319, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7090034211, 47.0697237816 ], [ -122.6757381114, 47.0813300502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3320, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.45450523, 47.5207872011 ], [ -120.4282769273, 47.5058028204 ], [ -120.4193833846, 47.4918919015 ], [ -120.4098706126, 47.4855387729 ], [ -120.3692193944, 47.4758683659 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3321, "RouteIdentifier": "500", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4026413273, 45.5856862701 ], [ -122.3997578511, 45.5841944043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3322, "RouteIdentifier": "017", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0868227043, 46.7395693677 ], [ -119.1283965501, 46.7547549812 ], [ -119.1339570633, 46.7636604311 ], [ -119.1343073841, 46.7823988651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3323, "RouteIdentifier": "169", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0209265407, 47.3613941171 ], [ -122.0237569069, 47.3733367643 ], [ -122.0334896745, 47.3838222996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3324, "RouteIdentifier": "527", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074577992, 47.821711911 ], [ -122.2158884218, 47.8443983695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3325, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2314445716, 47.7181510912 ], [ -121.1535414241, 47.7117866081 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3326, "RouteIdentifier": "167", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2446858124, 47.3297219858 ], [ -122.2446131424, 47.3498974886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3327, "RouteIdentifier": "020", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8743970818, 48.5473938298 ], [ -117.8572715742, 48.5473213018 ], [ -117.8460715424, 48.5415018691 ], [ -117.826594003, 48.539435667 ], [ -117.8225853934, 48.534895129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3328, "RouteIdentifier": "548", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6025149847, 48.8920541634 ], [ -122.6040527531, 48.8920780487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3329, "RouteIdentifier": "122", "AADT": 740 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.565213602, 46.5434407828 ], [ -122.5476099457, 46.5481464139 ], [ -122.5335953997, 46.5573604122 ], [ -122.5226130373, 46.5528220874 ], [ -122.4976698793, 46.5583568324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3330, "RouteIdentifier": "125", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.356443458, 46.0771858995 ], [ -118.3569757559, 46.0850910738 ], [ -118.3672015566, 46.0864838173 ], [ -118.3712410754, 46.1000850053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3331, "RouteIdentifier": "241", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0027133993, 46.2121666208 ], [ -120.0009880199, 46.2136750464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3332, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.235609286, 47.1247339542 ], [ -117.2426019261, 47.1282451493 ], [ -117.2426281993, 47.1322797485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3333, "RouteIdentifier": "503", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5476135901, 45.7518906262 ], [ -122.5472598635, 45.7589462816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3334, "RouteIdentifier": "530", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1437081841, 48.18863098 ], [ -122.1370320197, 48.1971826047 ], [ -122.1294755917, 48.1987611119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3335, "RouteIdentifier": "527", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2145371798, 47.794421606 ], [ -122.2120593513, 47.7984747561 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3336, "RouteIdentifier": "150", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0356242216, 47.8496165293 ], [ -120.0277101274, 47.8474213611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3337, "RouteIdentifier": "101COABERDN", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8824654132, 46.9762996857 ], [ -123.8542222764, 46.9751663099 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3338, "RouteIdentifier": "005", "AADT": 192000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3761260037, 47.2404869197 ], [ -122.3632090748, 47.2405896685 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3339, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469511117, 48.3911357861 ], [ -122.6446295806, 48.4078455473 ], [ -122.6491078895, 48.4120594291 ], [ -122.6442962662, 48.4167133772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3340, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1729427957, 48.0794522238 ], [ -123.1566785185, 48.0769008073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3341, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5472933615, 46.8097314034 ], [ -118.5469762937, 46.8696432609 ], [ -118.5691269289, 46.8875794467 ], [ -118.5671299854, 46.9387620133 ], [ -118.560421084, 46.9671994532 ], [ -118.5639273641, 46.9693979048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3342, "RouteIdentifier": "903", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0029911997, 47.22593134 ], [ -121.0142157637, 47.2278486397 ], [ -121.0266377118, 47.2381146494 ], [ -121.0376452727, 47.2410571348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3343, "RouteIdentifier": "007", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4340414925, 47.2209096911 ], [ -122.4340520373, 47.2230930942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3344, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7391181737, 48.6476256888 ], [ -118.7380382951, 48.6477058434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3345, "RouteIdentifier": "160", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6342473786, 47.5049271741 ], [ -122.6314890754, 47.5049287108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3346, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8957472001, 48.038517837 ], [ -119.9013270478, 48.0482824988 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3347, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0541413502, 48.0609123727 ], [ -123.0317850249, 48.0444695397 ], [ -123.0308034821, 48.0385584263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3348, "RouteIdentifier": "027", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1722002227, 47.1818280167 ], [ -117.1403329492, 47.1963834582 ], [ -117.1115675348, 47.1932573716 ], [ -117.097512456, 47.1960429801 ], [ -117.0740899923, 47.2211975001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3349, "RouteIdentifier": "155", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5217331431, 48.4069900346 ], [ -119.5217501674, 48.4051129342 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3350, "RouteIdentifier": "097AR", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9981202664, 47.8393603968 ], [ -119.9735363079, 47.8450645396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3351, "RouteIdentifier": "167", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2839041915, 47.2030418132 ], [ -122.2673512221, 47.2007333641 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3352, "RouteIdentifier": "005", "AADT": 137000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8983905827, 47.0254310319 ], [ -122.8880451706, 47.0349627247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3353, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1213708923, 48.2002565193 ], [ -122.1170200605, 48.2084489517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3354, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3243406744, 47.397956274 ], [ -122.3247753913, 47.4057300867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3355, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8700407404, 47.2331134363 ], [ -119.869200631, 47.2331168365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3356, "RouteIdentifier": "395", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588244536, 46.2022230907 ], [ -119.1588003107, 46.2077511977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3357, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975047463, 47.4351022237 ], [ -120.2975325983, 47.4333562129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3358, "RouteIdentifier": "009", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1014661015, 47.9532966926 ], [ -122.1024989284, 47.9747837779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3359, "RouteIdentifier": "002", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8766375645, 47.6695099085 ], [ -117.8632239331, 47.6690209762 ], [ -117.8204632094, 47.6577245072 ], [ -117.7893280679, 47.6441586933 ], [ -117.77648464, 47.643593498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3360, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3375995228, 47.1039064442 ], [ -119.325419947, 47.1032121332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3361, "RouteIdentifier": "507", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.563890205, 46.9320426175 ], [ -122.5592550475, 46.9339839558 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3362, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5754644577, 47.0918016783 ], [ -117.5851724439, 47.0928828595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3363, "RouteIdentifier": "101", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9142967877, 47.0151102563 ], [ -123.9223395487, 47.0316557254 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3364, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2364699855, 48.4678814769 ], [ -122.2465744052, 48.4914276823 ], [ -122.2470226925, 48.5030308196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3365, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4373980431, 48.7072992033 ], [ -119.4371558585, 48.7076989882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3366, "RouteIdentifier": "161", "AADT": 720 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2666996294, 46.8629061998 ], [ -122.2667035384, 46.8634865679 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3367, "RouteIdentifier": "509", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3730388085, 47.247348751 ], [ -122.3597169341, 47.2569450563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3368, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4611381511, 48.1069352467 ], [ -123.4439905727, 48.1073916924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3369, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1761180844, 47.3631667878 ], [ -122.1654405965, 47.3580279441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3370, "RouteIdentifier": "100", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447225968, 46.3088719536 ], [ -124.0487521206, 46.3101897606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3371, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3119901397, 47.333987546 ], [ -122.3120440183, 47.335872344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3372, "RouteIdentifier": "509", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3933590552, 47.3223798088 ], [ -122.3924369341, 47.3216137304 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3373, "RouteIdentifier": "097AR", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3207059196, 47.4808771816 ], [ -120.3133639391, 47.4952529972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3374, "RouteIdentifier": "082", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5110653789, 46.970805679 ], [ -120.5070572661, 46.9588101485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3375, "RouteIdentifier": "101", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854064267, 47.9516809103 ], [ -124.3854508575, 47.9541150576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3376, "RouteIdentifier": "503", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5526401143, 45.7079886815 ], [ -122.552276004, 45.7299131095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3377, "RouteIdentifier": "020", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7340738301, 48.6404765011 ], [ -118.7302441008, 48.641839496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3378, "RouteIdentifier": "016", "AADT": 136000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4722108146, 47.2351167316 ], [ -122.482796616, 47.2349767545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3379, "RouteIdentifier": "005", "AADT": 65000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9726938016, 46.7033062755 ], [ -122.9761197664, 46.7176133986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3380, "RouteIdentifier": "302SPPURDY", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6261095677, 47.3846980617 ], [ -122.6260927168, 47.3890549862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3381, "RouteIdentifier": "510SPYELMLP", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6325310381, 46.9646197548 ], [ -122.6268938205, 46.9614926076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3382, "RouteIdentifier": "002", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0634672167, 47.6491812786 ], [ -120.0621815719, 47.6491753159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3383, "RouteIdentifier": "202", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.12152933, 47.6738932335 ], [ -122.118861794, 47.6731312949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3384, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2740595055, 47.6747650499 ], [ -117.2564882876, 47.6744377468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3385, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2120593513, 47.7984747561 ], [ -122.2108693497, 47.8004619779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3386, "RouteIdentifier": "027", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0769824862, 46.9108621348 ], [ -117.0799320523, 46.9114350689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3387, "RouteIdentifier": "016", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6997242328, 47.5273550716 ], [ -122.6974328926, 47.5290055297 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3388, "RouteIdentifier": "028", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.561131671, 47.3075520766 ], [ -119.5605106245, 47.308418187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3389, "RouteIdentifier": "003", "AADT": 81000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6974328926, 47.5290055297 ], [ -122.6759314616, 47.5414115006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3390, "RouteIdentifier": "173", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6684791314, 48.0046240362 ], [ -119.6765472999, 48.0110069203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3391, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3074304764, 47.3616303229 ], [ -122.3012698346, 47.3733093484 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3392, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0867809993, 47.0992170671 ], [ -123.0824021199, 47.0918214053 ], [ -123.0718667587, 47.0910580253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3393, "RouteIdentifier": "090", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6756358928, 47.096990195 ], [ -118.6564062372, 47.0966738492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3394, "RouteIdentifier": "090", "AADT": 106000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3059533997, 47.6666196591 ], [ -117.2905265819, 47.6724838661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3395, "RouteIdentifier": "903", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9462399136, 47.1968530327 ], [ -120.9809250496, 47.2078375727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3396, "RouteIdentifier": "005", "AADT": 171000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32907164, 47.6943145242 ], [ -122.3295502762, 47.7047809866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3397, "RouteIdentifier": "291", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5692400943, 47.8125064907 ], [ -117.5783351988, 47.8151367824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3398, "RouteIdentifier": "020", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7706871351, 48.109957957 ], [ -122.7693087634, 48.1100024605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3399, "RouteIdentifier": "410", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5963308595, 47.1073463507 ], [ -121.5851623994, 47.0923339805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3400, "RouteIdentifier": "101", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9094874642, 47.0217506114 ], [ -122.9056444809, 47.0217112789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3401, "RouteIdentifier": "215", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5835757391, 48.3616001759 ], [ -119.5813873763, 48.3633416819 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3402, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1406582023, 47.4063958443 ], [ -123.1413008619, 47.4050125018 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3403, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7808845315, 48.0899344903 ], [ -119.7809433235, 48.1019970336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3404, "RouteIdentifier": "007", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2751954315, 46.5570314235 ], [ -122.2752434827, 46.5583246063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3405, "RouteIdentifier": "012", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8123515795, 46.9758626922 ], [ -123.8089625952, 46.9762253006 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3406, "RouteIdentifier": "016", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6624695676, 47.5269884954 ], [ -122.6824612226, 47.5278472097 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3407, "RouteIdentifier": "097", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6306952505, 47.5117651765 ], [ -120.6179840298, 47.5420496525 ], [ -120.6040808647, 47.5533601555 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3408, "RouteIdentifier": "500", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3997578511, 45.5841944043 ], [ -122.3985480747, 45.5841573262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3409, "RouteIdentifier": "507", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8586860494, 46.8548429235 ], [ -122.8482332243, 46.8586162126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3410, "RouteIdentifier": "028", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0718463794, 47.3150765031 ], [ -120.0677060263, 47.3008399269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3411, "RouteIdentifier": "539", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860125357, 48.8005515797 ], [ -122.4860492264, 48.8043084991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3412, "RouteIdentifier": "016", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6498450788, 47.5081639767 ], [ -122.6624695676, 47.5269884954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3413, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6399785669, 47.7561660923 ], [ -122.6261548579, 47.7579682585 ], [ -122.6124487235, 47.7661835383 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3414, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4302739529, 48.7826189223 ], [ -122.4251466525, 48.7865571974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3415, "RouteIdentifier": "241", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9783785412, 46.3052986594 ], [ -119.9785905771, 46.3125656122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3416, "RouteIdentifier": "150", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.988693195, 47.8318583594 ], [ -119.9823239969, 47.8274002482 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3417, "RouteIdentifier": "705", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4345227013, 47.2433241411 ], [ -122.4352497488, 47.247047007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3418, "RouteIdentifier": "397", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.077331005, 46.1940733709 ], [ -119.0858231048, 46.1966150682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3419, "RouteIdentifier": "182", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2279364121, 46.2727922262 ], [ -119.2095736808, 46.2738751293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3420, "RouteIdentifier": "018", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3178488457, 47.2898411383 ], [ -122.3135246441, 47.2896891115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3421, "RouteIdentifier": "534", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349820374, 48.3411737625 ], [ -122.3335812302, 48.341165856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3422, "RouteIdentifier": "524", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2072319883, 47.8094477645 ], [ -122.2010578056, 47.8100663059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3423, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4042122878, 46.6342410524 ], [ -121.3526072751, 46.656816854 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3424, "RouteIdentifier": "131", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9527847195, 46.5056599317 ], [ -121.9535543166, 46.5073208118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3425, "RouteIdentifier": "240", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6166058605, 46.5023813913 ], [ -119.4960911537, 46.4454935227 ], [ -119.4508754515, 46.408809451 ], [ -119.4365304918, 46.3912099912 ], [ -119.4226493275, 46.383209281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3426, "RouteIdentifier": "099COTUNNEL", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3438028842, 47.6246441895 ], [ -122.3449275043, 47.6170721864 ], [ -122.3364121007, 47.6028461051 ], [ -122.3366560906, 47.5916921726 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3427, "RouteIdentifier": "305", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6391820613, 47.7464774496 ], [ -122.6456845104, 47.7518428642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3428, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6311588032, 47.5832738305 ], [ -122.6298307615, 47.5875749972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3429, "RouteIdentifier": "009", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1063755906, 48.0032207303 ], [ -122.1069288247, 48.0063280675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3430, "RouteIdentifier": "260", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8714816681, 46.6542060226 ], [ -118.8614321809, 46.652330978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3431, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3829623596, 46.8459444194 ], [ -120.3719971108, 46.837063334 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3432, "RouteIdentifier": "090", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4399901193, 47.1039813699 ], [ -119.3554512716, 47.1039652908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3433, "RouteIdentifier": "027", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398112843, 47.6571200997 ], [ -117.2397947306, 47.6583760906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3434, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9223395487, 47.0316557254 ], [ -123.92729038, 47.0572059596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3435, "RouteIdentifier": "101", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.990036615, 47.602916964 ], [ -123.0184137758, 47.5633683425 ], [ -123.0326396214, 47.5528390438 ], [ -123.0434763305, 47.5508843024 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3436, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6770752412, 45.6327721391 ], [ -122.6833369779, 45.6328269221 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3437, "RouteIdentifier": "206", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2128688346, 47.8047418564 ], [ -117.2151570287, 47.8163391381 ], [ -117.2093060077, 47.8264252345 ], [ -117.202021796, 47.8299990291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3438, "RouteIdentifier": "101", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8820241615, 47.968795396 ], [ -122.8828899247, 47.9544833493 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3439, "RouteIdentifier": "508", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7173359337, 46.5756310576 ], [ -122.7046470526, 46.5756017902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3440, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3146309013, 48.3944502706 ], [ -117.3047886437, 48.3742846879 ], [ -117.3044608349, 48.3394634583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3441, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1285221878, 48.1877057823 ], [ -122.1294755917, 48.1987611119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3442, "RouteIdentifier": "005", "AADT": 153000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1992457496, 47.9616091692 ], [ -122.1976360012, 47.9682783923 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3443, "RouteIdentifier": "014", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9750135429, 45.6406654273 ], [ -121.9427830991, 45.6519065923 ], [ -121.9293820456, 45.6481653356 ], [ -121.9186778089, 45.6533510839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3444, "RouteIdentifier": "021", "AADT": 550 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6889327532, 47.3381121478 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3445, "RouteIdentifier": "409", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3774493287, 46.1875902746 ], [ -123.3857452066, 46.1923877924 ], [ -123.3830261382, 46.2040132418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3446, "RouteIdentifier": "500", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.505932908, 45.6721730664 ], [ -122.5018408354, 45.6721275722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3447, "RouteIdentifier": "270", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1800952459, 46.7289180943 ], [ -117.1781385805, 46.7289018557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3448, "RouteIdentifier": "509", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3548548851, 47.3236743586 ], [ -122.3473241981, 47.3305148272 ], [ -122.332027696, 47.3318236437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3449, "RouteIdentifier": "501", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7438998103, 45.6694309117 ], [ -122.757700882, 45.6667941909 ], [ -122.7613328587, 45.6812652178 ], [ -122.7620622456, 45.6936966786 ], [ -122.7542852587, 45.7237947042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3450, "RouteIdentifier": "155", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9793695341, 48.1656172167 ], [ -118.9854808281, 48.1713371337 ], [ -118.9892362024, 48.1913503797 ], [ -119.0154620195, 48.2099485026 ], [ -119.0346314742, 48.2143557736 ], [ -119.0414640789, 48.2225825553 ], [ -119.0821942308, 48.2357612309 ], [ -119.1250519203, 48.2387808307 ], [ -119.1361957578, 48.2445156021 ], [ -119.1441751598, 48.2720805565 ], [ -119.1341101995, 48.3012910934 ], [ -119.1526832951, 48.3146161547 ], [ -119.1529967173, 48.3254735625 ], [ -119.1585253129, 48.3325449322 ], [ -119.1751984327, 48.3392715776 ], [ -119.198188019, 48.3557743229 ], [ -119.235022948, 48.3647323247 ], [ -119.3957608493, 48.3747968182 ], [ -119.4406634454, 48.3884548136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3451, "RouteIdentifier": "020", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1928315035, 48.4779351239 ], [ -120.1900642724, 48.4775740271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3452, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3472122709, 47.8244633117 ], [ -117.3538626087, 47.8381496765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3453, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1171685745, 47.1658351362 ], [ -122.1144319865, 47.165563315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3454, "RouteIdentifier": "902", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6629212073, 47.5817195825 ], [ -117.6112069286, 47.5946127869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3455, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5307884494, 47.2588581959 ], [ -122.5427971587, 47.2623098139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3456, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9384879591, 47.6412968212 ], [ -122.9461661794, 47.6306520624 ], [ -122.9594204625, 47.6280408601 ], [ -122.9572422363, 47.6249005791 ], [ -122.9810519598, 47.6160578938 ], [ -122.9862005621, 47.609617512 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3457, "RouteIdentifier": "525", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2849614715, 47.889952125 ], [ -122.2913576024, 47.8992527084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3458, "RouteIdentifier": "522", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1940460846, 47.7553536407 ], [ -122.1913304565, 47.7557202808 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3459, "RouteIdentifier": "516", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1615500081, 47.3579926973 ], [ -122.1407097927, 47.3580025547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3460, "RouteIdentifier": "203", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9842126941, 47.7093339084 ], [ -121.9862032678, 47.7229006915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3461, "RouteIdentifier": "504", "AADT": 840 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6200459422, 46.3718240773 ], [ -122.6135193095, 46.3732221214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3462, "RouteIdentifier": "501", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7026610905, 45.8155477016 ], [ -122.6904808118, 45.8157027044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3463, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0124274602, 47.0563166427 ], [ -123.0095625837, 47.0558186162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3464, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3324665654, 45.9393404761 ], [ -119.3287580518, 45.9316181166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3465, "RouteIdentifier": "395", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.985089341, 46.5732225177 ], [ -118.9566975233, 46.5929642283 ], [ -118.9274458263, 46.6018334943 ], [ -118.856430317, 46.646165675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3466, "RouteIdentifier": "012", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5460838145, 46.6830305932 ], [ -121.5156698827, 46.6719110445 ], [ -121.4883598873, 46.6693033481 ], [ -121.4496767451, 46.6361915585 ], [ -121.4443639435, 46.6247082632 ], [ -121.4042122878, 46.6342410524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3467, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1938148872, 47.2533046274 ], [ -121.1832082778, 47.2443206311 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3468, "RouteIdentifier": "008", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1112802946, 47.0325956026 ], [ -123.0967671874, 47.0341238279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3469, "RouteIdentifier": "411", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9218771342, 46.2762832574 ], [ -122.9073058758, 46.275376903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3470, "RouteIdentifier": "241", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9992119183, 46.2864963221 ], [ -119.9990847026, 46.3019803085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3471, "RouteIdentifier": "167", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2214808618, 47.4035987998 ], [ -122.2202025787, 47.4072374973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3472, "RouteIdentifier": "092", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9904268316, 48.0866632894 ], [ -121.9801847421, 48.0911670151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3473, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1457654709, 47.2521210376 ], [ -123.1320219502, 47.2363423355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3474, "RouteIdentifier": "026", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3038957285, 46.7578975125 ], [ -118.226642999, 46.7417055801 ], [ -118.2054032125, 46.7447486856 ], [ -118.1732608373, 46.756869523 ], [ -118.1532014075, 46.7691930635 ], [ -118.1296213053, 46.7680723413 ], [ -118.0927817262, 46.7803397001 ], [ -118.0482580436, 46.7753326706 ], [ -118.0239734671, 46.7645457326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3475, "RouteIdentifier": "195", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3616814048, 47.0290559539 ], [ -117.3802689604, 47.0508567122 ], [ -117.3831396249, 47.0764132167 ], [ -117.378854292, 47.0964231841 ], [ -117.3800291539, 47.1741955658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3476, "RouteIdentifier": "097SPORONDO", "AADT": 240 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.228042091, 47.6277888618 ], [ -120.2227369424, 47.6269803184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3477, "RouteIdentifier": "409", "AADT": 150 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3777122398, 46.153926303 ], [ -123.3770778203, 46.155161435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3478, "RouteIdentifier": "014", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8853526517, 45.6928459455 ], [ -121.8772638059, 45.6967885603 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3479, "RouteIdentifier": "129SP6THST", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0455743548, 46.418180045 ], [ -117.045583721, 46.4199358176 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3480, "RouteIdentifier": "539", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860962019, 48.7836284125 ], [ -122.4860786255, 48.7843780074 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3481, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3200450577, 46.3702712669 ], [ -120.3149587825, 46.3677298266 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3482, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2021936567, 46.1479617048 ], [ -119.2023511627, 46.1347113914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3483, "RouteIdentifier": "538", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891848021, 48.4355524149 ], [ -122.2671353579, 48.4299276122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3484, "RouteIdentifier": "167", "AADT": 93000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2546724797, 47.2425035856 ], [ -122.2559001868, 47.2460061029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3485, "RouteIdentifier": "904", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5759657586, 47.4868903381 ], [ -117.5754010062, 47.4873552206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3486, "RouteIdentifier": "006", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0786692359, 46.6270297677 ], [ -123.0644490268, 46.6269757944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3487, "RouteIdentifier": "004", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9961129273, 46.1618451049 ], [ -122.9876095018, 46.1576443082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3488, "RouteIdentifier": "090", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8977278871, 47.1804239536 ], [ -120.8726143169, 47.1638584395 ], [ -120.8239451755, 47.1552275616 ], [ -120.7990004612, 47.1178706255 ], [ -120.7830173029, 47.1120217119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3489, "RouteIdentifier": "020", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6247422202, 48.5816115228 ], [ -120.6012081348, 48.5966187591 ], [ -120.5895452075, 48.5986625905 ], [ -120.5331599851, 48.5993765517 ], [ -120.511770525, 48.5910610484 ], [ -120.4841673108, 48.5868442115 ], [ -120.4550821729, 48.5962101881 ], [ -120.4360496304, 48.597849873 ], [ -120.3929476235, 48.5798058288 ], [ -120.3665628256, 48.5612770736 ], [ -120.3389607734, 48.5486028042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3490, "RouteIdentifier": "163", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5157406775, 47.2908042195 ], [ -122.5156731861, 47.2981065252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3491, "RouteIdentifier": "240", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.302112785, 46.3183716498 ], [ -119.2938084119, 46.3141920165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3492, "RouteIdentifier": "211", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2845754339, 48.2812765736 ], [ -117.2839019256, 48.3051822196 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3493, "RouteIdentifier": "272", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0677994513, 46.9127572907 ], [ -117.0547386882, 46.9253808035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3494, "RouteIdentifier": "009", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.143389182, 48.2246779017 ], [ -122.1587937139, 48.2389534668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3495, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6041932764, 46.4748995993 ], [ -117.5915790813, 46.4740027276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3496, "RouteIdentifier": "027", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1809848194, 46.7306947672 ], [ -117.179623886, 46.7323956011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3497, "RouteIdentifier": "026", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2181964942, 46.8141634951 ], [ -119.2078614274, 46.8115731743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3498, "RouteIdentifier": "290", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3916711004, 47.6542957701 ], [ -117.3949918933, 47.6575846328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3499, "RouteIdentifier": "017", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1343129277, 46.818765882 ], [ -119.1333443494, 46.8263220149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3500, "RouteIdentifier": "182", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2095736808, 46.2738751293 ], [ -119.1895052521, 46.2676902573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3501, "RouteIdentifier": "101", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8143955605, 46.9760348973 ], [ -123.8155189414, 46.9754642319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3502, "RouteIdentifier": "005", "AADT": 170000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710239707, 47.4775799592 ], [ -122.2663296776, 47.4869149652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3503, "RouteIdentifier": "105", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8025700515, 46.9620278945 ], [ -123.8023983763, 46.9678877123 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3504, "RouteIdentifier": "110SPMORA", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.538034814, 47.9138188412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3505, "RouteIdentifier": "508", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2876908004, 46.5629051119 ], [ -122.2857890361, 46.5613718886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3506, "RouteIdentifier": "906", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4155325399, 47.4269333661 ], [ -121.4158570632, 47.425849765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3507, "RouteIdentifier": "005", "AADT": 125000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5479047169, 47.1238498878 ], [ -122.5362836535, 47.1307921694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3508, "RouteIdentifier": "292", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6367704982, 48.0627193371 ], [ -117.6217227567, 48.0596769549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3509, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2002742877, 47.4803239853 ], [ -122.1922736805, 47.4901260728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3510, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3137091087, 47.7773380757 ], [ -122.3091430991, 47.7743773963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3511, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3357219408, 48.4717196536 ], [ -122.3356088428, 48.4755713741 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3512, "RouteIdentifier": "101", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0058226032, 46.3220376768 ], [ -124.0215352259, 46.3175795065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3513, "RouteIdentifier": "500", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5063250059, 45.6848578255 ], [ -122.5059632705, 45.6819748617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3514, "RouteIdentifier": "012", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1377253327, 46.2707786892 ], [ -118.1238524112, 46.2737500843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3515, "RouteIdentifier": "026", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5056679509, 46.8329591528 ], [ -117.4900970503, 46.8410354631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3516, "RouteIdentifier": "007", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434250602, 47.1554309896 ], [ -122.4342002903, 47.1593449432 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3517, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9507202106, 48.050275 ], [ -122.9489928608, 48.0502722096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3518, "RouteIdentifier": "124", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0126506285, 46.2084245812 ], [ -119.0078943102, 46.2117237268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3519, "RouteIdentifier": "020", "AADT": 850 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6727169645, 48.1593548477 ], [ -122.672541743, 48.1597721166 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3520, "RouteIdentifier": "005", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.904494363, 46.6021302692 ], [ -122.9111972398, 46.6100100981 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3521, "RouteIdentifier": "012", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.007921493, 46.8026940324 ], [ -123.0066964764, 46.8028020636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3522, "RouteIdentifier": "101", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854225052, 47.9505814332 ], [ -124.3854064267, 47.9516809103 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3523, "RouteIdentifier": "285", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2903351251, 47.4089009481 ], [ -120.2943489103, 47.4098769599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3524, "RouteIdentifier": "172", "AADT": 200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.636809987, 47.8116079214 ], [ -119.63597552, 47.8120676338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3525, "RouteIdentifier": "240", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3168183585, 46.3257612363 ], [ -119.302112785, 46.3183716498 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3526, "RouteIdentifier": "011", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5021999805, 48.71608606 ], [ -122.502234449, 48.7176604348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3527, "RouteIdentifier": "432", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0261661571, 46.1622220249 ], [ -123.0182415473, 46.1554301629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3528, "RouteIdentifier": "525", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3522945196, 47.9747750631 ], [ -122.3555721402, 47.978279434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3529, "RouteIdentifier": "291", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957696028, 47.7261247472 ], [ -117.5075451443, 47.7371619655 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3530, "RouteIdentifier": "005", "AADT": 213000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828043572, 47.4234223225 ], [ -122.2747094226, 47.4287124851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3531, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6672617257, 45.779820175 ], [ -122.6617016336, 45.7795054863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3532, "RouteIdentifier": "405", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.204514745, 47.471240198 ], [ -122.2035861347, 47.4751805773 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3533, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2420963329, 46.1031326564 ], [ -118.2049176459, 46.123542948 ], [ -118.1579964315, 46.1391116684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3534, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9550744316, 46.6440853642 ], [ -122.9670970658, 46.649895724 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3535, "RouteIdentifier": "109", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8895230263, 46.980961881 ], [ -123.8960512885, 46.9809985306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3536, "RouteIdentifier": "012", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7884944778, 46.7483083341 ], [ -120.7718342941, 46.7474467101 ], [ -120.7239880846, 46.7348744488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3537, "RouteIdentifier": "020", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2437055114, 48.507550046 ], [ -122.2414121493, 48.5104075699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3538, "RouteIdentifier": "005", "AADT": 67000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2456895186, 48.2439992336 ], [ -122.2649177077, 48.2647143139 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3539, "RouteIdentifier": "002", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3610242433, 47.7115372115 ], [ -121.3542348939, 47.711904269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3540, "RouteIdentifier": "125", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564578154, 46.074867789 ], [ -118.3564482172, 46.0758820358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3541, "RouteIdentifier": "021", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7842634529, 47.6121559913 ], [ -118.763698451, 47.6124988865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3542, "RouteIdentifier": "005", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8439980452, 46.0036486101 ], [ -122.852240996, 46.0234388073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3543, "RouteIdentifier": "016", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6851289986, 47.5272359279 ], [ -122.6952180995, 47.5247783015 ], [ -122.6997242328, 47.5273550716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3544, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3148725381, 47.8211912078 ], [ -122.3121013887, 47.8211831696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3545, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3602316649, 47.1201988782 ], [ -118.3033025513, 47.1598935483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3546, "RouteIdentifier": "124", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9716314101, 46.2117605619 ], [ -118.9100284707, 46.215109501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3547, "RouteIdentifier": "002", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.488037135, 47.7743909398 ], [ -121.483337808, 47.77070918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3548, "RouteIdentifier": "005", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8221883958, 47.0469869506 ], [ -122.8133324553, 47.0524920951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3549, "RouteIdentifier": "432", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0182415473, 46.1554301629 ], [ -123.0036157589, 46.14714661 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3550, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1983417337, 47.7602672279 ], [ -120.1748375091, 47.7679692019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3551, "RouteIdentifier": "202", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1653460578, 47.754516793 ], [ -122.1699835707, 47.7530524149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3552, "RouteIdentifier": "528", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1786722275, 48.0518497151 ], [ -122.1770255475, 48.0518456949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3553, "RouteIdentifier": "004", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0047956327, 46.1661237024 ], [ -123.0003727518, 46.1639381329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3554, "RouteIdentifier": "011", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.502234449, 48.7176604348 ], [ -122.4999178784, 48.7176529255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3555, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5070572661, 46.9588101485 ], [ -120.507145215, 46.937825834 ], [ -120.4959893931, 46.9237521292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3556, "RouteIdentifier": "090", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.3232041563, 47.5929897168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3557, "RouteIdentifier": "522", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.318091806, 47.6824319974 ], [ -122.3154029102, 47.6847104504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3558, "RouteIdentifier": "530", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2033949315, 48.1878232468 ], [ -122.2014846937, 48.1878947696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3559, "RouteIdentifier": "291", "AADT": 670 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6861862014, 47.8907180121 ], [ -117.6975572419, 47.8844035353 ], [ -117.7022161214, 47.8768022172 ], [ -117.7066202358, 47.879310378 ], [ -117.7063360951, 47.8688643657 ], [ -117.7119483787, 47.8632977854 ], [ -117.7145821243, 47.8520405468 ], [ -117.74506215, 47.8401106032 ], [ -117.760735503, 47.8384094476 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3560, "RouteIdentifier": "097AR", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0523540333, 47.8358056633 ], [ -120.0272288264, 47.8361946595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3561, "RouteIdentifier": "503", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525698301, 45.6820848992 ], [ -122.5525729281, 45.6855805745 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3562, "RouteIdentifier": "005", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.886654867, 46.5818960485 ], [ -122.8936094988, 46.5891345777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3563, "RouteIdentifier": "101", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0208342666, 47.0780579889 ], [ -123.0127415099, 47.0564079291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3564, "RouteIdentifier": "009SPSUMAS", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649591411, 49.0000309604 ], [ -122.263463248, 49.0000254737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3565, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7562347833, 48.0595083721 ], [ -117.7619942648, 48.0632663696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3566, "RouteIdentifier": "395", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0754032266, 48.6062200924 ], [ -118.1012651236, 48.6145465613 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3567, "RouteIdentifier": "006", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0172277506, 46.645475284 ], [ -122.9797708505, 46.6600221281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3568, "RouteIdentifier": "005", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2073503784, 48.1930549968 ], [ -122.2143482637, 48.2063281505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3569, "RouteIdentifier": "020", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4413167587, 48.7028924991 ], [ -119.440005912, 48.7023795423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3570, "RouteIdentifier": "009", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.1104629668, 48.0341000118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3571, "RouteIdentifier": "539", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.48508877, 49.0005739703 ], [ -122.484170717, 49.0022047393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3572, "RouteIdentifier": "503", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.552276004, 45.7299131095 ], [ -122.5476135901, 45.7518906262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3573, "RouteIdentifier": "405", "AADT": 132000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1878139945, 47.6319385932 ], [ -122.1863875328, 47.6405133468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3574, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.920784729, 46.9880445401 ], [ -122.9090833449, 47.005153403 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3575, "RouteIdentifier": "500", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5816054123, 45.655987363 ], [ -122.5649359725, 45.6591474533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3576, "RouteIdentifier": "121", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9079204529, 46.9326825401 ], [ -122.9078901312, 46.9418030245 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3577, "RouteIdentifier": "113", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2103459096, 48.1692167689 ], [ -124.2149004639, 48.1767680441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3578, "RouteIdentifier": "405", "AADT": 152000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872101016, 47.5612869027 ], [ -122.1839184276, 47.5658400246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3579, "RouteIdentifier": "513", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3036135383, 47.6515712549 ], [ -122.3008871177, 47.6593020345 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3580, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3405862296, 47.4683902338 ], [ -120.3385227247, 47.4670473491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3581, "RouteIdentifier": "902", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7044515804, 47.551027418 ], [ -117.7040622718, 47.5520049051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3582, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.345920634, 47.7708341637 ], [ -122.3462274907, 47.7777955542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3583, "RouteIdentifier": "016", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5728475744, 47.3013604296 ], [ -122.5813429939, 47.3109726485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3584, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7456908937, 46.2158646763 ], [ -119.7350013936, 46.2109623873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3585, "RouteIdentifier": "153", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9013270478, 48.0482824988 ], [ -119.9127332439, 48.045239571 ], [ -119.9336567593, 48.052435164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3586, "RouteIdentifier": "518", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2737587614, 47.465095805 ], [ -122.2651299683, 47.4614024105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3587, "RouteIdentifier": "530", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1296885992, 48.2003311116 ], [ -122.1251815178, 48.2002933787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3588, "RouteIdentifier": "530", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8887436919, 48.2715237891 ], [ -121.8794090981, 48.2691129164 ], [ -121.8393410726, 48.2773006503 ], [ -121.7712088124, 48.2788001675 ], [ -121.7475431859, 48.2765709941 ], [ -121.7257388719, 48.26881907 ], [ -121.7065027719, 48.2686887461 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3589, "RouteIdentifier": "141", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5065371663, 45.7819263952 ], [ -121.4854380467, 45.7986174954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3590, "RouteIdentifier": "524", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3176863857, 47.8212139394 ], [ -122.3148725381, 47.8211912078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3591, "RouteIdentifier": "021", "AADT": 180 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6868873255, 47.1525952933 ], [ -118.6848539763, 47.1673793172 ], [ -118.6915299321, 47.1733521134 ], [ -118.6870124756, 47.1851546319 ], [ -118.6859186821, 47.2602317232 ], [ -118.6913794976, 47.2616081181 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3592, "RouteIdentifier": "507", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9743825684, 46.7068491655 ], [ -122.9732816215, 46.70702645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3593, "RouteIdentifier": "291", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4775864514, 47.7155036924 ], [ -117.4828080327, 47.7179633653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3594, "RouteIdentifier": "024", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7265829537, 46.6211619976 ], [ -119.7275110118, 46.6340824621 ], [ -119.7360584616, 46.6468473933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3595, "RouteIdentifier": "513", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923848001, 47.661192848 ], [ -122.2869879295, 47.6614633424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3596, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2399893883, 46.8414422249 ], [ -123.2289306877, 46.8407885562 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3597, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1969627885, 47.4415056535 ], [ -122.1969253171, 47.4452667572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3598, "RouteIdentifier": "411", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9228006992, 46.1347958394 ], [ -122.9199492819, 46.1384787271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3599, "RouteIdentifier": "305", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5129709245, 47.6238643156 ], [ -122.51414874, 47.6248548642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3600, "RouteIdentifier": "194", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.267322546, 46.7081930584 ], [ -117.2536978763, 46.7208346039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3601, "RouteIdentifier": "020", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058418724, 48.5465546852 ], [ -117.9043342814, 48.5465658408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3602, "RouteIdentifier": "104", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5036732886, 47.8027461252 ], [ -122.4989034271, 47.8005733284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3603, "RouteIdentifier": "125SP125SP", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3564762608, 46.0687349432 ], [ -118.3606111002, 46.0686802253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3604, "RouteIdentifier": "231", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8559886683, 47.847262528 ], [ -117.8553269485, 47.8483119805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3605, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.481658804, 46.9993368592 ], [ -123.4454836739, 46.996549214 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3606, "RouteIdentifier": "096", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2036492399, 47.8781466533 ], [ -122.1696161125, 47.8778286457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3607, "RouteIdentifier": "101", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1613235363, 47.333867098 ], [ -123.1720418434, 47.3177075499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3608, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1847725776, 48.1059122858 ], [ -122.1872965039, 48.1444384712 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3609, "RouteIdentifier": "302", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6208329268, 47.3728531728 ], [ -122.6188217045, 47.371309362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3610, "RouteIdentifier": "171", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2682387314, 47.1364387388 ], [ -119.262380566, 47.1396746477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3611, "RouteIdentifier": "004", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103992419, 46.147036878 ], [ -122.9085060615, 46.1467022322 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3612, "RouteIdentifier": "110", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4034665195, 47.9674631851 ], [ -124.4259416139, 47.9626411024 ], [ -124.4403885401, 47.9637407852 ], [ -124.4509429615, 47.9548776677 ], [ -124.4606869786, 47.9524141752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3613, "RouteIdentifier": "028", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2924574784, 47.4062158074 ], [ -120.2883400594, 47.3993847963 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3614, "RouteIdentifier": "014", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4432829491, 45.5785312538 ], [ -122.4356102101, 45.5801631372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3615, "RouteIdentifier": "005", "AADT": 148000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3226285715, 47.6386200098 ], [ -122.3224579886, 47.646211059 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3616, "RouteIdentifier": "225", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4942417879, 46.2795434721 ], [ -119.4935889943, 46.301316915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3617, "RouteIdentifier": "173", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6774926459, 48.0103631519 ], [ -119.6802674022, 48.0089902272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3618, "RouteIdentifier": "090", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7228989931, 47.4670798095 ], [ -121.7096706618, 47.4632751617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3619, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2226311076, 46.7258475583 ], [ -117.225059729, 46.7352516881 ], [ -117.231668147, 46.7413459926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3620, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.045583721, 46.4199358176 ], [ -117.0442946621, 46.4199328277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3621, "RouteIdentifier": "515", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2012702922, 47.4487938305 ], [ -122.2070364986, 47.4594077387 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3622, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1846880578, 48.0816069517 ], [ -122.1847277876, 48.0959977763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3623, "RouteIdentifier": "900", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0632060501, 47.5412525635 ], [ -122.0627483977, 47.5457057767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3624, "RouteIdentifier": "155SPOMAK", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5256803341, 48.4105086385 ], [ -119.5284865191, 48.4108456019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3625, "RouteIdentifier": "101", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.879496601, 47.1617156776 ], [ -123.8890619205, 47.1756198843 ], [ -123.9182389975, 47.1855844879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3626, "RouteIdentifier": "500", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4176943396, 45.6411075661 ], [ -122.3987238562, 45.6383313319 ], [ -122.3986727941, 45.6242774567 ], [ -122.403423195, 45.6233802439 ], [ -122.4043216331, 45.615225457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3627, "RouteIdentifier": "142", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1000196081, 45.8249268805 ], [ -121.0976103078, 45.8260671911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3628, "RouteIdentifier": "153", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1061717246, 48.2554318205 ], [ -120.0842561584, 48.2705971119 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3629, "RouteIdentifier": "163", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5156731861, 47.2981065252 ], [ -122.5156562553, 47.2992775357 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3630, "RouteIdentifier": "097", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4421071548, 48.7019949179 ], [ -119.4410919266, 48.7031509182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3631, "RouteIdentifier": "395", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7154506529, 48.2699984918 ], [ -117.7155190209, 48.2762460851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3632, "RouteIdentifier": "097", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3959492409, 46.4169433277 ], [ -120.4287975969, 46.4412917927 ], [ -120.4311662019, 46.4575378002 ], [ -120.4694374549, 46.5065542918 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3633, "RouteIdentifier": "305", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6551873979, 47.7579966203 ], [ -122.6566045869, 47.7584154673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3634, "RouteIdentifier": "006", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0813867451, 46.6270365528 ], [ -123.0786692359, 46.6270297677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3635, "RouteIdentifier": "002", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8309651195, 47.8579919705 ], [ -121.8165310712, 47.861761082 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3636, "RouteIdentifier": "173", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.780711497, 48.0844287634 ], [ -119.7808845315, 48.0899344903 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3637, "RouteIdentifier": "005", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3502009691, 48.5531647768 ], [ -122.3476324959, 48.5639822624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3638, "RouteIdentifier": "025", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1736598311, 47.7883685846 ], [ -118.1739846457, 47.8032868437 ], [ -118.1835057815, 47.8219514158 ], [ -118.2018883606, 47.8250490347 ], [ -118.2117772806, 47.8341073865 ], [ -118.2155107555, 47.8597323298 ], [ -118.26205996, 47.8659297604 ], [ -118.2670575361, 47.8760419568 ], [ -118.2644176885, 47.886536003 ], [ -118.2735123185, 47.8953985288 ], [ -118.2764458192, 47.9099818571 ], [ -118.3022156948, 47.9032411497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3639, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9707179801, 47.8103117805 ], [ -119.9747908435, 47.8173888452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3640, "RouteIdentifier": "171", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3052799217, 47.1087851264 ], [ -119.3035133121, 47.1100072069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3641, "RouteIdentifier": "291", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5783351988, 47.8151367824 ], [ -117.5973616913, 47.8288659688 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3642, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8814721275, 47.0869161419 ], [ -118.8637575163, 47.0867688468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3643, "RouteIdentifier": "097", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6069922762, 48.3197133157 ], [ -119.6017185779, 48.3403277867 ], [ -119.5953819331, 48.34623453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3644, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.404306887, 48.1071331596 ], [ -123.40157192, 48.1066836471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3645, "RouteIdentifier": "504", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9017000705, 46.2852760142 ], [ -122.900982517, 46.2858307257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3646, "RouteIdentifier": "195", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3584633908, 47.2145021441 ], [ -117.3533823933, 47.2237692463 ], [ -117.3626242176, 47.2400995255 ], [ -117.3610664207, 47.2534566306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3647, "RouteIdentifier": "509", "AADT": 8900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3327432015, 47.408543256 ], [ -122.3352626539, 47.4160570962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3648, "RouteIdentifier": "162", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2292841665, 47.1772685985 ], [ -122.2295427682, 47.1570738062 ], [ -122.2329885436, 47.1517472612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3649, "RouteIdentifier": "005", "AADT": 149000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.320427645, 47.677153652 ], [ -122.3223069573, 47.683835222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3650, "RouteIdentifier": "028", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2975325983, 47.4333562129 ], [ -120.2977336595, 47.4242381539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3651, "RouteIdentifier": "507COPEARL", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9555240563, 46.7165039902 ], [ -122.9559416042, 46.7155463073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3652, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6749565537, 47.443251501 ], [ -121.6592960376, 47.4422385912 ], [ -121.6260861992, 47.428820891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3653, "RouteIdentifier": "092", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1102365439, 48.0279042262 ], [ -122.07298877, 48.0304443672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3654, "RouteIdentifier": "028", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576841858, 47.6460001316 ], [ -118.1576753991, 47.6531948538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3655, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113132819, 47.7151012213 ], [ -117.4127242746, 47.7151457037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3656, "RouteIdentifier": "539COLYNDEN", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854368771, 49.0022066171 ], [ -122.48508877, 49.0005739703 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3657, "RouteIdentifier": "025", "AADT": 880 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3022156948, 47.9032411497 ], [ -118.3095884413, 47.9083492944 ], [ -118.3318773139, 47.9059107248 ], [ -118.3362657699, 47.9100541107 ], [ -118.3214853554, 47.9295013757 ], [ -118.3161620627, 47.9460652358 ], [ -118.295303866, 47.9811201405 ], [ -118.2863301117, 47.9929868084 ], [ -118.2668970833, 48.0067931754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3658, "RouteIdentifier": "548", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7265048358, 48.9175984132 ], [ -122.7261530122, 48.9551626572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3659, "RouteIdentifier": "082", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2682351433, 46.4011783488 ], [ -120.2470329935, 46.3943389424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3660, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2470329935, 46.3943389424 ], [ -120.2341478641, 46.3874544653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3661, "RouteIdentifier": "531", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2891754017, 48.1552836007 ], [ -122.2891839532, 48.1557176379 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3662, "RouteIdentifier": "160", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5010531946, 47.5121479033 ], [ -122.4973049137, 47.5119962431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3663, "RouteIdentifier": "002", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9278071982, 47.7098400514 ], [ -118.925005797, 47.7108243237 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3664, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6471818385, 47.6429287965 ], [ -117.6441483202, 47.6429238878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3665, "RouteIdentifier": "005", "AADT": 150000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2824397667, 47.8189715088 ], [ -122.2622221319, 47.8312276667 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3666, "RouteIdentifier": "005", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4754001915, 48.7114461 ], [ -122.4736376931, 48.7183214397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3667, "RouteIdentifier": "730", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9761773375, 46.0002961924 ], [ -118.9326857937, 46.0274987811 ], [ -118.9404675059, 46.0421843021 ], [ -118.9362682108, 46.051675932 ], [ -118.9281091224, 46.0567461789 ], [ -118.9122848657, 46.0569707003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3668, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9266228383, 46.1230578452 ], [ -122.9247009245, 46.1221385232 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3669, "RouteIdentifier": "005", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1829331211, 47.9885511027 ], [ -122.1739059983, 47.999571344 ], [ -122.1814065807, 48.04479845 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3670, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239010868, 47.4397926017 ], [ -122.3228061274, 47.4391963694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3671, "RouteIdentifier": "005", "AADT": 134000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2622221319, 47.8312276667 ], [ -122.2598462586, 47.83972786 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3672, "RouteIdentifier": "020", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7864369592, 48.651103998 ], [ -118.7770276759, 48.649473503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3673, "RouteIdentifier": "028", "AADT": 560 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6597780517, 47.3328929749 ], [ -118.6064394101, 47.3438463019 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3674, "RouteIdentifier": "522", "AADT": 95000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1719789948, 47.757621596 ], [ -122.1680072039, 47.7574084421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3675, "RouteIdentifier": "262", "AADT": 750 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4753373648, 46.862537997 ], [ -119.4721515928, 46.9484503801 ], [ -119.4749052078, 46.9528591823 ], [ -119.4607123542, 46.9566297084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3676, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3437891671, 48.8073210548 ], [ -122.3325641688, 48.8145942815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3677, "RouteIdentifier": "007", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3977887884, 47.0531477811 ], [ -122.4005142886, 47.0558581985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3678, "RouteIdentifier": "101", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7306682808, 48.0861363728 ], [ -123.7093296363, 48.0846676243 ], [ -123.7009703045, 48.0785930438 ], [ -123.6786220988, 48.073901581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3679, "RouteIdentifier": "005", "AADT": 167000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3241654589, 47.7296158195 ], [ -122.3288644625, 47.741140359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3680, "RouteIdentifier": "028", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2941276522, 47.4130153494 ], [ -120.2929566067, 47.408097835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3681, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3542348939, 47.711904269 ], [ -121.3352211475, 47.7132173725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3682, "RouteIdentifier": "904", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5899202161, 47.4791586755 ], [ -117.5832793235, 47.4818861833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3683, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3220553649, 48.3133080082 ], [ -122.3344939127, 48.3373547839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3684, "RouteIdentifier": "020", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302441008, 48.641839496 ], [ -118.7300552535, 48.6419111855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3685, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1183933229, 47.358083689 ], [ -122.1091619452, 47.3580988636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3686, "RouteIdentifier": "090", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1760994752, 47.580180733 ], [ -122.1698418075, 47.5801249842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3687, "RouteIdentifier": "166", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237320393, 47.533996747 ], [ -122.6115664545, 47.5340329479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3688, "RouteIdentifier": "202", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0997715333, 47.6656995892 ], [ -122.0986125857, 47.6645874444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3689, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8320237301, 47.2340352 ], [ -119.8107624661, 47.2341040289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3690, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5793216715, 47.1078928315 ], [ -122.5623879036, 47.1153885874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3691, "RouteIdentifier": "527", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2180791238, 47.8520936404 ], [ -122.2163760183, 47.8727847101 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3692, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9195012753, 46.6405634658 ], [ -123.921074264, 46.6714807055 ], [ -123.9175764369, 46.6763042754 ], [ -123.894687913, 46.6799180179 ], [ -123.8848656803, 46.6854928239 ], [ -123.8753762267, 46.68435008 ], [ -123.8577283824, 46.6939486439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3693, "RouteIdentifier": "129", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0501498005, 46.2873666617 ], [ -117.0395127862, 46.3149805998 ], [ -117.0421390618, 46.3267145152 ], [ -117.0484351291, 46.3174465631 ], [ -117.0560803608, 46.3250305409 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3694, "RouteIdentifier": "097", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5989270885, 47.5553611869 ], [ -120.5927019605, 47.5589757239 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3695, "RouteIdentifier": "024", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6270510219, 46.735547573 ], [ -119.6011440864, 46.7379133851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3696, "RouteIdentifier": "017", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2517852789, 47.1061646856 ], [ -119.2566876381, 47.112363657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3697, "RouteIdentifier": "397", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0767280097, 46.2265908318 ], [ -119.0795201794, 46.2322979284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3698, "RouteIdentifier": "005", "AADT": 195000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3301905624, 47.6128797259 ], [ -122.329134167, 47.615596198 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3699, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2277030428, 47.6241332137 ], [ -120.2219122891, 47.6270557243 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3700, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.468301725, 48.7760746279 ], [ -122.4832840697, 48.7824744802 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3701, "RouteIdentifier": "411", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9147539076, 46.1502452965 ], [ -122.9157314952, 46.1667895778 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3702, "RouteIdentifier": "528", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184716739, 48.0518594289 ], [ -122.1836148532, 48.0518643974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3703, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3118431702, 47.1567249837 ], [ -119.3235519617, 47.1618045752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3704, "RouteIdentifier": "410", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4203948955, 46.9081166471 ], [ -121.4074499246, 46.9139103029 ], [ -121.3738765638, 46.9171172093 ], [ -121.3590945902, 46.9323858894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3705, "RouteIdentifier": "014", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9052657624, 45.6630172635 ], [ -121.9096745256, 45.6749940647 ], [ -121.9015325687, 45.6823424191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3706, "RouteIdentifier": "005", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0095031858, 46.7983597125 ], [ -123.0025596088, 46.8100089469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3707, "RouteIdentifier": "016", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6225935687, 47.4383788471 ], [ -122.6237970067, 47.4635938226 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3708, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1086623321, 48.0731296075 ], [ -123.0929136587, 48.0727563835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3709, "RouteIdentifier": "405", "AADT": 144000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1956583824, 47.5351014559 ], [ -122.1926629037, 47.5532945477 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3710, "RouteIdentifier": "020", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3355650196, 48.4778597679 ], [ -122.322498894, 48.4777584669 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3711, "RouteIdentifier": "518", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3009682136, 47.4657531835 ], [ -122.2814936102, 47.4639104191 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3712, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6686114771, 47.6429513017 ], [ -117.6471818385, 47.6429287965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3713, "RouteIdentifier": "082", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2565858958, 46.1882981658 ], [ -119.2336452151, 46.1773089437 ], [ -119.2075559409, 46.1709700044 ], [ -119.2024028139, 46.1646696372 ], [ -119.2021438178, 46.1517167071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3714, "RouteIdentifier": "021", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6592835463, 48.69353696 ], [ -118.6540124627, 48.7299295462 ], [ -118.6607397326, 48.7395905415 ], [ -118.6474199782, 48.7574573152 ], [ -118.6471151083, 48.7653809106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3715, "RouteIdentifier": "194", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4877195547, 46.7310206754 ], [ -117.4828769965, 46.7374678823 ], [ -117.4606604412, 46.7478475633 ], [ -117.4529845524, 46.7578502771 ], [ -117.3966878381, 46.7692818303 ], [ -117.3754489745, 46.7524284104 ], [ -117.364269794, 46.7482639317 ], [ -117.3576285651, 46.7370046508 ], [ -117.3411179936, 46.7369182867 ], [ -117.3330136617, 46.7429594848 ], [ -117.3176622842, 46.7318138607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3716, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6671028849, 48.208880163 ], [ -122.6861432864, 48.2123143699 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3717, "RouteIdentifier": "528", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1822932343, 48.0518738744 ], [ -122.1786722275, 48.0518497151 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3718, "RouteIdentifier": "395", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1588003107, 46.2077511977 ], [ -119.1587898641, 46.2094963127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3719, "RouteIdentifier": "397", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0824824346, 46.2383223812 ], [ -119.083420541, 46.2402395389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3720, "RouteIdentifier": "525", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3044461333, 47.9446172164 ], [ -122.3040566842, 47.947165397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3721, "RouteIdentifier": "505", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8478646508, 46.4428982556 ], [ -122.8478874183, 46.4418799904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3722, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6931398543, 48.2123094716 ], [ -122.7059141852, 48.2122640442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3723, "RouteIdentifier": "291", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4379008219, 47.7154498354 ], [ -117.4568888894, 47.7154157955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3724, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6442962662, 48.4167133772 ], [ -122.620384397, 48.4202646652 ], [ -122.6082425787, 48.4287878768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3725, "RouteIdentifier": "027", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2395516805, 47.6729939622 ], [ -117.2395409867, 47.6757907672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3726, "RouteIdentifier": "099", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2952486802, 47.4309838514 ], [ -122.2954198113, 47.4345568351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3727, "RouteIdentifier": "005", "AADT": 84000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7878727232, 47.0597313969 ], [ -122.7541782353, 47.0644445369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3728, "RouteIdentifier": "161", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963449954, 47.0166678167 ], [ -122.2955397516, 47.040162607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3729, "RouteIdentifier": "405", "AADT": 165000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1869038184, 47.6636304786 ], [ -122.1862142566, 47.6722701693 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3730, "RouteIdentifier": "546", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4413239323, 48.96428992 ], [ -122.407449955, 48.9640230526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3731, "RouteIdentifier": "112", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5981693413, 48.116751797 ], [ -123.5712528402, 48.1146712556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3732, "RouteIdentifier": "303", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6298307615, 47.5875749972 ], [ -122.6295353398, 47.5924775695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3733, "RouteIdentifier": "090", "AADT": 111000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4040031937, 47.6521238544 ], [ -117.3993131644, 47.6520356027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3734, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2487949553, 47.4322754113 ], [ -122.2455886366, 47.4412210855 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3735, "RouteIdentifier": "011", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5020729469, 48.7159651259 ], [ -122.5021999805, 48.71608606 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3736, "RouteIdentifier": "821", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4807360568, 46.6775327893 ], [ -120.4821709855, 46.6784018527 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3737, "RouteIdentifier": "014", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3962982687, 45.5785567586 ], [ -122.3924335271, 45.5795236375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3738, "RouteIdentifier": "539", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4852153791, 48.9642388691 ], [ -122.4851566888, 48.9933456178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3739, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9685280902, 46.3037202391 ], [ -119.9283205921, 46.2720687974 ], [ -119.9106353482, 46.2675619431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3740, "RouteIdentifier": "005", "AADT": 69000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8209479482, 45.9765215085 ], [ -122.8303255251, 45.9865466391 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3741, "RouteIdentifier": "012", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8030737493, 46.9773424769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3742, "RouteIdentifier": "195", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0892586477, 46.5431821646 ], [ -117.0929578437, 46.5461114405 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3743, "RouteIdentifier": "395", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9030142887, 48.4912950401 ], [ -117.9000321633, 48.514822412 ], [ -117.9050816787, 48.5343812278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3744, "RouteIdentifier": "003", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0350161303, 47.253938049 ], [ -123.0051653665, 47.2658148473 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3745, "RouteIdentifier": "009", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2067256114, 48.3642645921 ], [ -122.2133672387, 48.3723792401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3746, "RouteIdentifier": "014", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4629980998, 45.7135052501 ], [ -121.4598946117, 45.7123396511 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3747, "RouteIdentifier": "285", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2943489103, 47.4098769599 ], [ -120.2980615002, 47.4097420223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3748, "RouteIdentifier": "900", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1598568622, 47.5046576599 ], [ -122.1565310736, 47.5057272643 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3749, "RouteIdentifier": "101", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2912512618, 48.0954124931 ], [ -123.2099835359, 48.0853786216 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3750, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0848828452, 46.3284729616 ], [ -120.0687629907, 46.3226150928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3751, "RouteIdentifier": "231", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8705301943, 47.7320770346 ], [ -117.8747890388, 47.7387575067 ], [ -117.8833228393, 47.7409083111 ], [ -117.8904928702, 47.7562433053 ], [ -117.8937348179, 47.7731562335 ], [ -117.8885889763, 47.7791596603 ], [ -117.8899260404, 47.7887506445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3752, "RouteIdentifier": "097", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.857595908, 48.0732144226 ], [ -119.8060994957, 48.0932061459 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3753, "RouteIdentifier": "002", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111252748, 47.7150977748 ], [ -117.411140563, 47.7170064104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3754, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.605716968, 47.5674428282 ], [ -120.6020684242, 47.564209197 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3755, "RouteIdentifier": "101", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0966058497, 47.1747523811 ], [ -123.0957237818, 47.1572988202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3756, "RouteIdentifier": "169", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0202766541, 47.3583922895 ], [ -122.0209265407, 47.3613941171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3757, "RouteIdentifier": "017", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179382964, 46.9701782337 ], [ -119.1179298675, 46.9846708775 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3758, "RouteIdentifier": "028", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.159705125, 47.6427340926 ], [ -118.1576841858, 47.6460001316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3759, "RouteIdentifier": "002COBROWNE", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411162631, 47.6609810366 ], [ -117.41331834, 47.6599920959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3760, "RouteIdentifier": "020", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1854211418, 48.4778068438 ], [ -120.1781092963, 48.4725882896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3761, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3351942988, 47.7341436296 ], [ -122.3343328973, 47.7341445146 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3762, "RouteIdentifier": "006", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2514945992, 46.6301019034 ], [ -123.1801433805, 46.6342000658 ], [ -123.1684652608, 46.6306801314 ], [ -123.1744197292, 46.6133083665 ], [ -123.1581776639, 46.5974973747 ], [ -123.1287547466, 46.6004969457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3763, "RouteIdentifier": "005", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2183218859, 48.2166037115 ], [ -122.2374372336, 48.2352708759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3764, "RouteIdentifier": "129", "AADT": 730 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0715404689, 46.1959222812 ], [ -117.069636538, 46.2278518737 ], [ -117.0596360072, 46.2294936931 ], [ -117.0595040673, 46.2749822247 ], [ -117.0501498005, 46.2873666617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3765, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6380141443, 48.3112290202 ], [ -122.6295211986, 48.3202909794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3766, "RouteIdentifier": "509", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3605429103, 47.3207278571 ], [ -122.356089198, 47.3225056037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3767, "RouteIdentifier": "002", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4834194345, 47.6349163355 ], [ -117.4797001096, 47.6332845094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3768, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3099371955, 47.3075733984 ], [ -121.3016866652, 47.3019511926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3769, "RouteIdentifier": "097", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2281613908, 47.6226631987 ], [ -120.2281213808, 47.6241276789 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3770, "RouteIdentifier": "027", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.0768951726, 46.9105822359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3771, "RouteIdentifier": "020", "AADT": 280 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108409752, 48.6851321517 ], [ -117.4053808879, 48.6851320533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3772, "RouteIdentifier": "007", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1936544175, 46.7645544522 ], [ -122.1942019738, 46.765336616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3773, "RouteIdentifier": "526", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2914374281, 47.9220287545 ], [ -122.2878185998, 47.9245144886 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3774, "RouteIdentifier": "024", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1764946499, 46.7820725916 ], [ -119.1764136146, 46.7968582865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3775, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5264716482, 45.9932175677 ], [ -122.5417332574, 45.9878702719 ], [ -122.5419737599, 45.9758418071 ], [ -122.5529555129, 45.9643382543 ], [ -122.5628644515, 45.9583082261 ], [ -122.575637757, 45.9577400504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3776, "RouteIdentifier": "009", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2296735711, 48.3852564968 ], [ -122.2379325105, 48.3993275149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3777, "RouteIdentifier": "097", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5942345354, 47.3816799159 ], [ -120.6127201842, 47.3953748749 ], [ -120.6432823873, 47.3933824989 ], [ -120.6561236285, 47.4026118042 ], [ -120.6594863695, 47.4174344817 ], [ -120.6560779809, 47.4316964265 ], [ -120.6625922847, 47.4410037523 ], [ -120.6536874982, 47.450987204 ], [ -120.6605838276, 47.4614951171 ], [ -120.6556188415, 47.4745007676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3778, "RouteIdentifier": "302", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7640925019, 47.3690425701 ], [ -122.7584799402, 47.3744092288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3779, "RouteIdentifier": "161", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2951850444, 47.215634769 ], [ -122.2982624881, 47.2176069027 ], [ -122.2940086764, 47.2249092263 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3780, "RouteIdentifier": "116", "AADT": 940 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.691035371, 48.0512475527 ], [ -122.6907759825, 48.0567497671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3781, "RouteIdentifier": "519", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3341920495, 47.5902797808 ], [ -122.3356442883, 47.5965279925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3782, "RouteIdentifier": "281", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.853533075, 47.1177226749 ], [ -119.8535293221, 47.1191977539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3783, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8913479904, 46.0543459185 ], [ -118.8674748422, 46.0534348511 ], [ -118.8396224202, 46.0652521005 ], [ -118.7880122841, 46.072450643 ], [ -118.7111374641, 46.0531567281 ], [ -118.6849142545, 46.0415021587 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3784, "RouteIdentifier": "005", "AADT": 210000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2920536467, 47.4006698004 ], [ -122.2893783047, 47.416887971 ], [ -122.2828043572, 47.4234223225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3785, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3538671999, 46.0696978456 ], [ -118.3405498465, 46.0739014753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3786, "RouteIdentifier": "405", "AADT": 143000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1926629037, 47.5532945477 ], [ -122.1872101016, 47.5612869027 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3787, "RouteIdentifier": "522", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9992299624, 47.8523397018 ], [ -121.9893266233, 47.8585504619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3788, "RouteIdentifier": "101", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8539819045, 46.9760751104 ], [ -123.8793107352, 46.9778455486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3789, "RouteIdentifier": "003", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8804463364, 47.3319204562 ], [ -122.8514198777, 47.3498457097 ], [ -122.8364747547, 47.374286003 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3790, "RouteIdentifier": "516", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1407097927, 47.3580025547 ], [ -122.1390119706, 47.3580153681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3791, "RouteIdentifier": "823", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5118923903, 46.626211773 ], [ -120.5261373787, 46.6365454184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3792, "RouteIdentifier": "522", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2995385636, 47.7120544754 ], [ -122.2923996871, 47.7318031538 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3793, "RouteIdentifier": "024", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7282935394, 46.5780534778 ], [ -119.7274029528, 46.6018834593 ], [ -119.7367554772, 46.6080827525 ], [ -119.7270556249, 46.6125948511 ], [ -119.7265829537, 46.6211619976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3794, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.313315611, 47.3116796634 ], [ -122.3133077561, 47.3151824274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3795, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.809145399, 46.6649346237 ], [ -123.7946033875, 46.6644384378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3796, "RouteIdentifier": "099", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472570211, 47.6739649907 ], [ -122.3444365005, 47.6869595926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3797, "RouteIdentifier": "012", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7239880846, 46.7348744488 ], [ -120.7002079559, 46.7282037986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3798, "RouteIdentifier": "101", "AADT": 71000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9281707668, 47.0261889833 ], [ -122.9134448464, 47.0253389513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3799, "RouteIdentifier": "014", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2227951042, 45.7429753339 ], [ -120.1980379335, 45.7506530042 ], [ -120.1858099878, 45.7626742717 ], [ -120.1496144498, 45.7796028041 ], [ -120.0728889721, 45.7937322728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3800, "RouteIdentifier": "020", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7693087634, 48.1100024605 ], [ -122.7667323197, 48.110171865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3801, "RouteIdentifier": "028SPWENTCH", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.290454096, 47.4088507662 ], [ -120.2895900621, 47.4060388964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3802, "RouteIdentifier": "007", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.315135696, 46.8480783308 ], [ -122.3110237562, 46.8548826409 ], [ -122.3028894715, 46.8561801881 ], [ -122.3114938746, 46.8624815133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3803, "RouteIdentifier": "900", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1545187673, 47.5061214996 ], [ -122.1514985886, 47.5062570131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3804, "RouteIdentifier": "005", "AADT": 182000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.329134167, 47.615596198 ], [ -122.3281449889, 47.6228434601 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3805, "RouteIdentifier": "900", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.25791496, 47.4871309015 ], [ -122.25450026, 47.4846758275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3806, "RouteIdentifier": "020", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1178922765, 48.3599953038 ], [ -120.0826339712, 48.3485688069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3807, "RouteIdentifier": "023", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8903636196, 47.2092221227 ], [ -117.8935451035, 47.2124822553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3808, "RouteIdentifier": "167", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2187031003, 47.4362642827 ], [ -122.2153057722, 47.4499572937 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3809, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3281449889, 47.6228434601 ], [ -122.324181676, 47.6321012475 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3810, "RouteIdentifier": "002", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7212439358, 47.7631466252 ], [ -118.7130750207, 47.7604898372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3811, "RouteIdentifier": "531", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1406082627, 48.151913289 ], [ -122.1327070433, 48.1526864406 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3812, "RouteIdentifier": "097", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5943172222, 47.0140340001 ], [ -120.5925213891, 47.0219833385 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3813, "RouteIdentifier": "082", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4705735995, 46.5573335962 ], [ -120.4712654383, 46.5394142128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3814, "RouteIdentifier": "172", "AADT": 340 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134510032, 47.6126348451 ], [ -119.8134804078, 47.6996424338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3815, "RouteIdentifier": "011", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3786436215, 48.5169464302 ], [ -122.410855576, 48.5508465619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3816, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9167021499, 47.6653110039 ], [ -117.8792825759, 47.6694839326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3817, "RouteIdentifier": "405", "AADT": 163000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.188529648, 47.6167655089 ], [ -122.1878139945, 47.6319385932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3818, "RouteIdentifier": "099", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3436176395, 47.6252248523 ], [ -122.3470322877, 47.6426862378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3819, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3423037081, 47.7341359849 ], [ -122.3351942988, 47.7341436296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3820, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5989397766, 45.6129740168 ], [ -122.5942584951, 45.6125607215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3821, "RouteIdentifier": "172", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6850869381, 47.8156626695 ], [ -119.6419803649, 47.815343803 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3822, "RouteIdentifier": "101", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9998190814, 47.0505006375 ], [ -122.9910016143, 47.0450336894 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3823, "RouteIdentifier": "504", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803526133, 46.3061126605 ], [ -122.8665119074, 46.3036401573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3824, "RouteIdentifier": "002", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6020684242, 47.564209197 ], [ -120.5983470734, 47.5620792828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3825, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4004674284, 47.5364053504 ], [ -117.398395829, 47.5437706657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3826, "RouteIdentifier": "028", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4885964173, 47.3774858912 ], [ -119.482679815, 47.3814692054 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3827, "RouteIdentifier": "702", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4423826497, 46.937291079 ], [ -122.35740693, 46.9366422092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3828, "RouteIdentifier": "272", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.068840619, 46.9108595721 ], [ -117.0677994513, 46.9127572907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3829, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24100502, 47.9048928592 ], [ -122.2280903322, 47.9083247357 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3830, "RouteIdentifier": "206", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3523152371, 47.7871149729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3831, "RouteIdentifier": "411", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142960975, 46.2001388421 ], [ -122.916599885, 46.2057419837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3832, "RouteIdentifier": "395", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4025141886, 47.775377664 ], [ -117.4024404199, 47.7757947974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3833, "RouteIdentifier": "005", "AADT": 127000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6569907612, 45.7325461642 ], [ -122.6612770989, 45.7464677187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3834, "RouteIdentifier": "097", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6853721482, 48.1040204491 ], [ -119.6682838379, 48.1388517209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3835, "RouteIdentifier": "024", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4733228614, 46.5849707648 ], [ -120.4709892732, 46.5848762904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3836, "RouteIdentifier": "004", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9664209143, 46.1480268532 ], [ -122.9552434055, 46.1471068295 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3837, "RouteIdentifier": "194", "AADT": 460 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3176622842, 46.7318138607 ], [ -117.2900757121, 46.7253930498 ], [ -117.267322546, 46.7081930584 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3838, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4439905727, 48.1073916924 ], [ -123.4421245304, 48.1073235415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3839, "RouteIdentifier": "101", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0602108175, 48.0644077043 ], [ -123.0541413502, 48.0609123727 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3840, "RouteIdentifier": "105SPWESTPT", "AADT": 970 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1131838766, 46.9081888251 ], [ -124.1124683872, 46.9087203442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3841, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4339726068, 47.2074131032 ], [ -122.4340414925, 47.2209096911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3842, "RouteIdentifier": "109", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9501761308, 46.9833007241 ], [ -123.9584649473, 46.9824304524 ], [ -123.9638816639, 46.9871110108 ], [ -123.9991960461, 46.9934266102 ], [ -124.0040880972, 47.00857363 ], [ -124.0381349997, 47.0457147607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3843, "RouteIdentifier": "002", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7015013824, 47.7577620281 ], [ -118.7003253167, 47.7576668992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3844, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.411427803, 47.7408474959 ], [ -117.411487897, 47.7439536479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3845, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3511036365, 47.903873351 ], [ -117.3502034489, 47.9137043437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3846, "RouteIdentifier": "167", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2207233046, 47.4156833158 ], [ -122.2187031003, 47.4362642827 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3847, "RouteIdentifier": "112", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2647934958, 48.2531691393 ], [ -124.260389031, 48.2542321886 ], [ -124.2601698309, 48.2506931926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3848, "RouteIdentifier": "241", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8843350959, 46.5050823884 ], [ -119.8766764568, 46.5100011675 ], [ -119.8734670054, 46.5215778241 ], [ -119.8802809007, 46.5340131046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3849, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8246818019, 45.8230059935 ], [ -120.8226283862, 45.8229903949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3850, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3292431802, 47.3317433744 ], [ -122.3219018806, 47.3326977386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3851, "RouteIdentifier": "103", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0289352268, 46.5118174067 ], [ -124.0306794602, 46.5320120219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3852, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7745905953, 46.9816357852 ], [ -123.7542359838, 46.978403612 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3853, "RouteIdentifier": "528", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140842334, 48.0536557708 ], [ -122.139335004, 48.0536511041 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3854, "RouteIdentifier": "027", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2398564282, 47.6462120527 ], [ -117.2398690039, 47.6488703847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3855, "RouteIdentifier": "167", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2984249952, 47.1999364331 ], [ -122.2938144583, 47.1988803768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3856, "RouteIdentifier": "525SPPAINE", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2932337855, 47.9103754832 ], [ -122.2914374281, 47.9220287545 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3857, "RouteIdentifier": "014", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.4452102491, 45.9475940632 ], [ -119.410562102, 45.9583557066 ], [ -119.4001606196, 45.9493259325 ], [ -119.3731501041, 45.946680716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3858, "RouteIdentifier": "101COHERON", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8155189414, 46.9754642319 ], [ -123.8146581289, 46.9746674338 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3859, "RouteIdentifier": "520", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1881596197, 47.6322979443 ], [ -122.1541290261, 47.6295235952 ], [ -122.1364781908, 47.6384421787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3860, "RouteIdentifier": "097", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7756848413, 48.1086426578 ], [ -119.765463651, 48.1095610147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3861, "RouteIdentifier": "520", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2319230755, 47.6360628163 ], [ -122.2133341775, 47.6416718327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3862, "RouteIdentifier": "005", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8322700503, 47.0459335687 ], [ -122.8221883958, 47.0469869506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3863, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2841686904, 48.0967467483 ], [ -117.2785898294, 48.0970199696 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3864, "RouteIdentifier": "512", "AADT": 107000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736786558, 47.1615792122 ], [ -122.4600900511, 47.1585657847 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3865, "RouteIdentifier": "023", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9739343058, 47.2980321898 ], [ -117.9728133998, 47.3032197247 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3866, "RouteIdentifier": "002", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6676433679, 47.5927812587 ], [ -120.6615401387, 47.5961287953 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3867, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3571398555, 48.6273196202 ], [ -122.363905077, 48.6441332225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3868, "RouteIdentifier": "003", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6900708232, 47.6742545713 ], [ -122.6891411882, 47.6839322136 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3869, "RouteIdentifier": "125", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3491644277, 46.0639266399 ], [ -118.3499243544, 46.069095536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3870, "RouteIdentifier": "082", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4722493593, 46.5674944544 ], [ -120.4705735995, 46.5573335962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3871, "RouteIdentifier": "529", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.191055647, 47.976747735 ], [ -122.19102137, 47.9790612199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3872, "RouteIdentifier": "261", "AADT": 500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2651804981, 46.6565738532 ], [ -118.2875256298, 46.6685119832 ], [ -118.3072819323, 46.6686867919 ], [ -118.3344458773, 46.6776884871 ], [ -118.3783577002, 46.6777368746 ], [ -118.389137803, 46.6893958146 ], [ -118.391198589, 46.6972092027 ], [ -118.4122698552, 46.7012162608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3873, "RouteIdentifier": "903", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9213159644, 47.1927732879 ], [ -120.9384153356, 47.1948996063 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3874, "RouteIdentifier": "112", "AADT": 830 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9450001967, 48.1636797033 ], [ -123.9244093839, 48.1547303657 ], [ -123.9317581136, 48.1536438133 ], [ -123.9295399819, 48.1451803052 ], [ -123.9164706989, 48.1365715012 ], [ -123.8875301745, 48.1363486659 ], [ -123.8597889454, 48.14722078 ], [ -123.8001282546, 48.1395893198 ], [ -123.7690696693, 48.1396769458 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3875, "RouteIdentifier": "020", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2411593235, 48.2498304367 ], [ -117.2293777746, 48.2389717477 ], [ -117.2149572114, 48.2326927422 ], [ -117.1445158196, 48.2276178924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3876, "RouteIdentifier": "231", "AADT": 260 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9378384893, 47.6579307436 ], [ -117.9379417422, 47.660685361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3877, "RouteIdentifier": "020", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1781092963, 48.4725882896 ], [ -120.1686914859, 48.4567062705 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3878, "RouteIdentifier": "410", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1691805082, 47.1698966439 ], [ -122.1637086417, 47.1693190408 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3879, "RouteIdentifier": "260", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8894036808, 46.6634446901 ], [ -118.8840388543, 46.6627688809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3880, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6851132626, 47.8485151937 ], [ -121.6754291602, 47.8437264887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3881, "RouteIdentifier": "026", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7472041173, 46.7900290895 ], [ -118.740366325, 46.7916254829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3882, "RouteIdentifier": "542", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0799094982, 48.9241796486 ], [ -122.0772800593, 48.924155999 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3883, "RouteIdentifier": "012", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7002079559, 46.7282037986 ], [ -120.6947545489, 46.7266771426 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3884, "RouteIdentifier": "278", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.141577431, 47.4500082492 ], [ -117.1320120548, 47.4522702959 ], [ -117.1273008596, 47.4454628501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3885, "RouteIdentifier": "215", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5450859846, 48.396250068 ], [ -119.540967429, 48.399614794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3886, "RouteIdentifier": "155", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5084842224, 48.4031367389 ], [ -119.5123492002, 48.4036826294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3887, "RouteIdentifier": "291", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4364218141, 47.7154395468 ], [ -117.4379008219, 47.7154498354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3888, "RouteIdentifier": "405", "AADT": 128000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1820573236, 47.7095901821 ], [ -122.1889808432, 47.7236094662 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3889, "RouteIdentifier": "002", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.925005797, 47.7108243237 ], [ -118.7941217724, 47.7561814138 ], [ -118.7334805954, 47.7623342902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3890, "RouteIdentifier": "004", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8026031248, 46.3760022496 ], [ -123.7936542735, 46.3767488327 ], [ -123.7849363108, 46.3717532207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3891, "RouteIdentifier": "002", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535414241, 47.7117866081 ], [ -121.1229137378, 47.7173047025 ], [ -121.1378413571, 47.7241816479 ], [ -121.1210115785, 47.7462420572 ], [ -121.0941270076, 47.7457487872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3892, "RouteIdentifier": "005", "AADT": 88000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6813333636, 45.8063615363 ], [ -122.6883954382, 45.8215294532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3893, "RouteIdentifier": "090", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5687388318, 47.5884737405 ], [ -117.5589351838, 47.5953615292 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3894, "RouteIdentifier": "197", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.1535252294, 45.6362913178 ], [ -121.1561709747, 45.6490463651 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3895, "RouteIdentifier": "516", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.24684628, 47.3779642912 ], [ -122.2430570827, 47.378057579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3896, "RouteIdentifier": "012", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8089625952, 46.9762253006 ], [ -123.8076362509, 46.9772463001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3897, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182891747, 47.2672889111 ], [ -123.9082461392, 47.2954525638 ], [ -123.9065191783, 47.3328554188 ], [ -123.9095592146, 47.3467924075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3898, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6184725877, 46.8939308682 ], [ -119.6021851057, 46.8903722209 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3899, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9030469817, 46.1632969984 ], [ -122.9042918419, 46.1726255536 ], [ -122.8992668381, 46.1802918975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3900, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1400802554, 47.8145116129 ], [ -122.1281371157, 47.8306336416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3901, "RouteIdentifier": "020", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8868341203, 47.9877015289 ], [ -122.8848678307, 47.9879382073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3902, "RouteIdentifier": "502", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.599982644, 45.7801453767 ], [ -122.5792543891, 45.780262944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3903, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9732816215, 46.70702645 ], [ -122.9747719324, 46.7112626752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3904, "RouteIdentifier": "020", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3389607734, 48.5486028042 ], [ -120.3223743924, 48.543587961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3905, "RouteIdentifier": "270", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1702535399, 46.7278386224 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3906, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4685453921, 48.1061906064 ], [ -123.4657592482, 48.106460575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3907, "RouteIdentifier": "410", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9946857537, 47.1974841035 ], [ -121.9923916449, 47.199177298 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3908, "RouteIdentifier": "507", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478831901, 46.7533571733 ], [ -122.9375719089, 46.7539095544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3909, "RouteIdentifier": "016", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6237970067, 47.4635938226 ], [ -122.6245604481, 47.4752697078 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3910, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3297726533, 47.7436959378 ], [ -122.3291037047, 47.7469054111 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3911, "RouteIdentifier": "020", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7810617654, 48.1076558595 ], [ -122.7780253279, 48.1083589075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3912, "RouteIdentifier": "307", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6124487235, 47.7661835383 ], [ -122.607158394, 47.7724672092 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3913, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3706721348, 48.2410706967 ], [ -122.3443830084, 48.2398913159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3914, "RouteIdentifier": "906", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4158570632, 47.425849765 ], [ -121.4127871024, 47.4225424219 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3915, "RouteIdentifier": "012", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874609685, 46.4153003586 ], [ -117.069154655, 46.4199117494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3916, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5724635589, 46.6251660017 ], [ -120.5436645551, 46.6226773126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3917, "RouteIdentifier": "020SPANACRT", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096344556, 48.4932908483 ], [ -122.6126265866, 48.4934511275 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3918, "RouteIdentifier": "020", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3044608349, 48.3394634583 ], [ -117.2844096141, 48.3059359445 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3919, "RouteIdentifier": "260", "AADT": 770 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3441820755, 46.7361724356 ], [ -118.3231691836, 46.7431650717 ], [ -118.3104348324, 46.7563777105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3920, "RouteIdentifier": "181", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2474311421, 47.3867136062 ], [ -122.2493486901, 47.3976177556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3921, "RouteIdentifier": "007", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4342002903, 47.1593449432 ], [ -122.4341705298, 47.1628256566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3922, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798684236, 46.8216532259 ], [ -123.0761547764, 46.8206396917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3923, "RouteIdentifier": "021", "AADT": 160 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5579970591, 46.6445599995 ], [ -118.5495267257, 46.655378434 ], [ -118.5443798132, 46.6742594979 ], [ -118.5291894222, 46.6893914363 ], [ -118.527862787, 46.697937023 ], [ -118.5289309614, 46.709283549 ], [ -118.5479758394, 46.7134582569 ], [ -118.547381969, 46.7802658991 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3924, "RouteIdentifier": "823", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4872923805, 46.6801245233 ], [ -120.482692837, 46.6807839356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3925, "RouteIdentifier": "009", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1130005817, 48.1517401354 ], [ -122.1187528092, 48.1643133094 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3926, "RouteIdentifier": "002", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1565942739, 47.6540477597 ], [ -118.1420864524, 47.6544054526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3927, "RouteIdentifier": "012", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9392616292, 46.382620523 ], [ -117.9322110467, 46.3985709129 ], [ -117.9413605818, 46.4060696422 ], [ -117.9479137743, 46.4225642672 ], [ -117.9469665414, 46.4295031017 ], [ -117.9587274494, 46.4507231244 ], [ -117.962632911, 46.4685024932 ], [ -117.9609825539, 46.4873044859 ], [ -117.9734724736, 46.4998726264 ], [ -117.9712249078, 46.5098672609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3928, "RouteIdentifier": "170", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1099088867, 46.9701523567 ], [ -119.0422256352, 46.9696837609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3929, "RouteIdentifier": "240", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2352979381, 46.2341237242 ], [ -119.2152365358, 46.2321748638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3930, "RouteIdentifier": "171", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3094973132, 47.1058411746 ], [ -119.3052799217, 47.1087851264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3931, "RouteIdentifier": "101", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5396953537, 48.0975545684 ], [ -123.5353377768, 48.098941472 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3932, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074296103, 47.7589886736 ], [ -122.1940460846, 47.7553536407 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3933, "RouteIdentifier": "221", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.603047109, 45.9369049065 ], [ -119.6031230684, 45.9389260974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3934, "RouteIdentifier": "531", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2814765504, 48.1399591811 ], [ -122.2820740303, 48.1477548637 ], [ -122.2891754017, 48.1552836007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3935, "RouteIdentifier": "215", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5284865191, 48.4108456019 ], [ -119.5284561857, 48.4123674853 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3936, "RouteIdentifier": "300", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432290715, 47.4472414198 ], [ -122.8272592504, 47.454059906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3937, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2470226925, 48.5030308196 ], [ -122.247228536, 48.5049651039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3938, "RouteIdentifier": "270", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2088606428, 46.7337475063 ], [ -117.2059069062, 46.7337520183 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3939, "RouteIdentifier": "169", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0402216819, 47.4051375238 ], [ -122.0384117208, 47.4089744879 ], [ -122.0506265625, 47.4234707779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3940, "RouteIdentifier": "536", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.378756131, 48.4364435691 ], [ -122.3619718598, 48.4277546105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3941, "RouteIdentifier": "903", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0584176535, 47.257382574 ], [ -121.0623455971, 47.2605734637 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3942, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583128195, 47.8895409718 ], [ -122.2572398494, 47.8906887228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3943, "RouteIdentifier": "009", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.109772433, 47.878119226 ], [ -122.1093210645, 47.8989017492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3944, "RouteIdentifier": "240", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2905873773, 46.2611443687 ], [ -119.2878136748, 46.2595687001 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3945, "RouteIdentifier": "510", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7653032241, 47.0638310719 ], [ -122.7651140331, 47.0629504411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3946, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6020091618, 46.6572102746 ], [ -121.5939929334, 46.6677239868 ], [ -121.5771726696, 46.6750081624 ], [ -121.5748775018, 46.6824470233 ], [ -121.5785447315, 46.6857085787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3947, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1012238708, 46.2052016642 ], [ -119.1061582106, 46.2060951858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3948, "RouteIdentifier": "310", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676487456, 47.5684242426 ], [ -122.663594378, 47.5707549865 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3949, "RouteIdentifier": "500", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6496497972, 45.6504231837 ], [ -122.6493044391, 45.6503500709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3950, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0929578437, 46.5461114405 ], [ -117.1050710923, 46.5588432113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3951, "RouteIdentifier": "395", "AADT": 920 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1426715191, 48.7772362922 ], [ -118.1497710826, 48.7873239168 ], [ -118.1606954688, 48.7925791711 ], [ -118.1610621477, 48.8013491924 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3952, "RouteIdentifier": "012", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2564997683, 46.0930373464 ], [ -118.2526403206, 46.0995793775 ], [ -118.2420963329, 46.1031326564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3953, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2828183812, 47.6193764429 ], [ -119.2613682363, 47.6314977852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3954, "RouteIdentifier": "542", "AADT": 610 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6589172471, 48.8590433627 ], [ -121.6630290925, 48.866717271 ], [ -121.6708767545, 48.862041366 ], [ -121.6754402986, 48.8651910486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3955, "RouteIdentifier": "395SPNSC", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3658073843, 47.7605601689 ], [ -117.3673481617, 47.7688728977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3956, "RouteIdentifier": "507", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9522499816, 46.7274803396 ], [ -122.952269366, 46.7289642557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3957, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3476324959, 48.5639822624 ], [ -122.3437035716, 48.5958995493 ], [ -122.3462428337, 48.6070259278 ], [ -122.3545679756, 48.6174704326 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3958, "RouteIdentifier": "002", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5983470734, 47.5620792828 ], [ -120.5889958565, 47.5568399451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3959, "RouteIdentifier": "405", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2498888662, 47.4623828171 ], [ -122.2408435002, 47.4652569769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3960, "RouteIdentifier": "010", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8544979241, 47.1749253538 ], [ -120.8169944864, 47.1654459949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3961, "RouteIdentifier": "202", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9049232747, 47.5724947503 ], [ -121.8981135123, 47.5712733617 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3962, "RouteIdentifier": "153", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0933996402, 48.1811071167 ], [ -120.096475565, 48.1968467764 ], [ -120.1071532972, 48.1976887965 ], [ -120.1282560949, 48.2086361697 ], [ -120.1174787599, 48.2312124652 ], [ -120.1161853491, 48.2490366875 ], [ -120.1061717246, 48.2554318205 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3963, "RouteIdentifier": "530", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1236120707, 48.2002782394 ], [ -122.1213708923, 48.2002565193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3964, "RouteIdentifier": "278", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0779731302, 47.442965311 ], [ -117.0397889595, 47.4349031524 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3965, "RouteIdentifier": "141", "AADT": 810 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5337335651, 45.9984030688 ], [ -121.5549969267, 45.9998011977 ], [ -121.5636114982, 45.9901163052 ], [ -121.5837003451, 45.9826021001 ], [ -121.5888375562, 45.9758111476 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3966, "RouteIdentifier": "017", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3298805519, 47.1732555069 ], [ -119.337592942, 47.1824916579 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3967, "RouteIdentifier": "101", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3376838924, 48.0547329997 ], [ -124.3149717617, 48.0584677954 ], [ -124.3028014989, 48.0673395518 ], [ -124.2831461268, 48.0697565692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3968, "RouteIdentifier": "002", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0767740067, 47.6417886706 ], [ -120.0747632734, 47.641906708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3969, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0376981686, 48.0703874967 ], [ -123.9545771246, 48.0754505177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3970, "RouteIdentifier": "512", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2823985099, 47.1941934807 ], [ -122.281111013, 47.1984410996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3971, "RouteIdentifier": "411", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9070746013, 46.1900492586 ], [ -122.9142960975, 46.2001388421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3972, "RouteIdentifier": "503", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5525729281, 45.6855805745 ], [ -122.55279656, 45.6913817983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3973, "RouteIdentifier": "097", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8060994957, 48.0932061459 ], [ -119.7944730895, 48.0983151568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3974, "RouteIdentifier": "016", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5100030807, 47.2490381759 ], [ -122.5111157203, 47.2502531629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3975, "RouteIdentifier": "012", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4811308047, 46.4673204627 ], [ -117.4724796642, 46.4594841871 ], [ -117.4670539222, 46.4470649257 ], [ -117.4444691861, 46.4466269014 ], [ -117.4311649833, 46.4362139804 ], [ -117.4202576394, 46.4360420895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3976, "RouteIdentifier": "308", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6601620541, 47.7045647028 ], [ -122.6546046376, 47.70607599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3977, "RouteIdentifier": "507COPEARL", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9559416042, 46.7155463073 ], [ -122.9571866974, 46.7126430488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3978, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1815164346, 46.226705456 ], [ -119.1466151724, 46.2179686599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3979, "RouteIdentifier": "004", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.923520705, 46.1460689953 ], [ -122.9222411132, 46.1464872396 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3980, "RouteIdentifier": "509", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3204263512, 47.4439375555 ], [ -122.3268233106, 47.4554520402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3981, "RouteIdentifier": "099", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3092462539, 47.3580817971 ], [ -122.3074304764, 47.3616303229 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3982, "RouteIdentifier": "516", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1070219689, 47.3580601805 ], [ -122.0859358901, 47.3580748666 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3983, "RouteIdentifier": "002", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.77648464, 47.643593498 ], [ -117.7334112553, 47.6434838531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3984, "RouteIdentifier": "195", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4483713102, 47.6410080356 ], [ -117.4497167189, 47.6443092509 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3985, "RouteIdentifier": "305", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6156582337, 47.7161387981 ], [ -122.6353165012, 47.7250143013 ], [ -122.6370291084, 47.7323152241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3986, "RouteIdentifier": "522", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004396604, 47.7105219184 ], [ -122.2995385636, 47.7120544754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3987, "RouteIdentifier": "022", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7475393038, 46.2094125334 ], [ -119.7476202885, 46.2140157031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3988, "RouteIdentifier": "500", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4348020717, 45.6649138902 ], [ -122.429621236, 45.6621546541 ], [ -122.4288846042, 45.6543939777 ], [ -122.4244049035, 45.6505489649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3989, "RouteIdentifier": "020", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322498894, 48.4777584669 ], [ -122.321610488, 48.4780418815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3990, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5258480464, 45.9932136954 ], [ -122.5264716482, 45.9932175677 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3991, "RouteIdentifier": "027", "AADT": 390 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1992324539, 47.1773708328 ], [ -117.1722002227, 47.1818280167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3992, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5219385669, 47.258344291 ], [ -122.5307884494, 47.2588581959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3993, "RouteIdentifier": "028", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5469623321, 47.3271872736 ], [ -119.4986984819, 47.3690721351 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3994, "RouteIdentifier": "548", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7261530122, 48.9551626572 ], [ -122.7299951107, 48.9621767777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3995, "RouteIdentifier": "027", "AADT": 780 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2006505617, 47.1259714675 ], [ -117.2204392685, 47.120872 ], [ -117.2311497101, 47.1220696502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3996, "RouteIdentifier": "097", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6682838379, 48.1388517209 ], [ -119.6636624539, 48.1604813241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3997, "RouteIdentifier": "538", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2918401179, 48.4355506598 ], [ -122.2891848021, 48.4355524149 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3998, "RouteIdentifier": "002", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3531916555, 47.7872080515 ], [ -117.3518193824, 47.7919039464 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 3999, "RouteIdentifier": "128", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.069154655, 46.4199117494 ], [ -117.0693320216, 46.4212282179 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4000, "RouteIdentifier": "101", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3564028382, 47.8868367862 ], [ -124.3561155367, 47.8937677247 ], [ -124.3644243308, 47.8948319873 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4001, "RouteIdentifier": "101", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1614780369, 47.506903678 ], [ -124.2004830222, 47.5303993959 ], [ -124.2229369627, 47.5343029792 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4002, "RouteIdentifier": "500", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5059582917, 45.6758268864 ], [ -122.505932908, 45.6721730664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4003, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3877903612, 46.8866484089 ], [ -117.3817100757, 46.8906071029 ], [ -117.3649144653, 46.8905633877 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4004, "RouteIdentifier": "002", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6542540009, 47.8363873413 ], [ -121.6418257139, 47.8341761604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4005, "RouteIdentifier": "411", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.909567729, 46.2331832879 ], [ -122.8996825001, 46.2497847546 ], [ -122.9131016887, 46.2630638015 ], [ -122.9250895302, 46.2644933419 ], [ -122.9237811251, 46.2715083431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4006, "RouteIdentifier": "224", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.475488175, 46.2509192818 ], [ -119.4752230368, 46.2516861086 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4007, "RouteIdentifier": "270", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1864957616, 46.7314771721 ], [ -117.1817811528, 46.731695621 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4008, "RouteIdentifier": "532", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2809503607, 48.235572681 ], [ -122.2423008133, 48.2388120168 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4009, "RouteIdentifier": "002", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5608436626, 47.6428844249 ], [ -117.509427539, 47.6430053975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4010, "RouteIdentifier": "512", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.281111013, 47.1984410996 ], [ -122.2782598167, 47.2029152075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4011, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4572843275, 46.2706003653 ], [ -123.4109919609, 46.2617089223 ], [ -123.4005832438, 46.2531192037 ], [ -123.3947912458, 46.2315766109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4012, "RouteIdentifier": "022", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3149587825, 46.3677298266 ], [ -120.3097289325, 46.3650774694 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4013, "RouteIdentifier": "005", "AADT": 206000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.324181676, 47.6321012475 ], [ -122.3238832466, 47.6326989707 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4014, "RouteIdentifier": "195", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3641647883, 46.8740109029 ], [ -117.3649931364, 46.8746110638 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4015, "RouteIdentifier": "291", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5075109583, 47.7416381565 ], [ -117.5074826876, 47.7443815862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4016, "RouteIdentifier": "112", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7455869752, 48.1372852387 ], [ -123.7345388535, 48.1360534594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4017, "RouteIdentifier": "904", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5647334404, 47.498272492 ], [ -117.5647296934, 47.4988542076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4018, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6748917772, 47.5440202547 ], [ -122.6707470211, 47.5494494474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4019, "RouteIdentifier": "002", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0441181005, 48.1780553435 ], [ -117.0426668622, 48.1780973091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4020, "RouteIdentifier": "542", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2395042525, 48.8318235121 ], [ -122.2195423891, 48.8277065549 ], [ -122.2096024616, 48.821069883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4021, "RouteIdentifier": "142", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9044761844, 45.8247380049 ], [ -120.8744708695, 45.824429695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4022, "RouteIdentifier": "411", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9237811251, 46.2715083431 ], [ -122.9218771342, 46.2762832574 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4023, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.321610488, 48.4780418815 ], [ -122.2801945178, 48.4926127654 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4024, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0549477321, 46.3302467729 ], [ -124.0549134209, 46.3311573646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4025, "RouteIdentifier": "305", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5109341748, 47.6229691778 ], [ -122.5129709245, 47.6238643156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4026, "RouteIdentifier": "003", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7350085187, 47.5157381772 ], [ -122.7222646763, 47.5233205646 ], [ -122.7132594935, 47.5239714664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4027, "RouteIdentifier": "395", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2244399208, 48.9981157805 ], [ -118.2239337521, 49.0001142503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4028, "RouteIdentifier": "101", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0963235193, 47.1342723946 ], [ -123.1002077406, 47.1262326925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4029, "RouteIdentifier": "005", "AADT": 114000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6644148519, 45.7566399081 ], [ -122.6701869958, 45.7753317642 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4030, "RouteIdentifier": "020", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.609133392, 48.1712861629 ], [ -122.6262008512, 48.183153552 ], [ -122.6266865938, 48.1904292048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4031, "RouteIdentifier": "005RL005EXP", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3265267058, 47.6034433933 ], [ -122.3304093084, 47.6079523826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4032, "RouteIdentifier": "097", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8229476469, 45.7771798533 ], [ -120.8225764326, 45.7876068164 ], [ -120.8169355081, 45.795557156 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4033, "RouteIdentifier": "504", "AADT": 590 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3510605635, 46.3071011772 ], [ -122.3527972938, 46.2965836771 ], [ -122.3455373962, 46.2931384349 ], [ -122.337001989, 46.3047142862 ], [ -122.3278036317, 46.3078440811 ], [ -122.3208730727, 46.3036524423 ], [ -122.313153103, 46.3066262779 ], [ -122.3100082852, 46.3001431608 ], [ -122.3022619974, 46.2970256355 ], [ -122.2938372103, 46.3000796883 ], [ -122.295182346, 46.3062068691 ], [ -122.2807292786, 46.3116469727 ], [ -122.2731898668, 46.303082327 ], [ -122.2662981155, 46.301502894 ], [ -122.2789228699, 46.3034457986 ], [ -122.2705939775, 46.2873405261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4034, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.402735532, 47.7811795472 ], [ -117.4074561545, 47.7875219182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4035, "RouteIdentifier": "090", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6947330224, 47.501473805 ], [ -117.6842799668, 47.508587719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4036, "RouteIdentifier": "005", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7483034155, 48.9956575306 ], [ -122.7547026936, 49.0004770596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4037, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8858510006, 47.9902643238 ], [ -119.8838607234, 47.9987453856 ], [ -119.8957472001, 48.038517837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4038, "RouteIdentifier": "112", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6671258406, 48.1191174479 ], [ -123.6561026165, 48.1181029102 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4039, "RouteIdentifier": "401", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8750691469, 46.2411694514 ], [ -123.8574461597, 46.2510844587 ], [ -123.8514330153, 46.2602496978 ], [ -123.8402134294, 46.2625073673 ], [ -123.8325797811, 46.2695656832 ], [ -123.8166527548, 46.2712834502 ], [ -123.8074451874, 46.2860891421 ], [ -123.8110220943, 46.292755949 ], [ -123.8005818248, 46.3043543061 ], [ -123.7980280188, 46.329180811 ], [ -123.8010026466, 46.3344527096 ], [ -123.8104269171, 46.3376105866 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4040, "RouteIdentifier": "014", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9408254869, 45.6665296294 ], [ -120.9297714065, 45.6654121621 ], [ -120.9256409171, 45.6605136294 ], [ -120.8955780583, 45.6660810678 ], [ -120.8292860584, 45.6940654066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4041, "RouteIdentifier": "512", "AADT": 87000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2828899445, 47.1858920985 ], [ -122.2823985099, 47.1941934807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4042, "RouteIdentifier": "823", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5304211479, 46.6486735819 ], [ -120.5282531262, 46.6540390188 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4043, "RouteIdentifier": "005", "AADT": 130000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675049957, 45.6181241353 ], [ -122.6716912752, 45.622917794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4044, "RouteIdentifier": "292", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6217227567, 48.0596769549 ], [ -117.6204333436, 48.0599351891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4045, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6175832531, 46.9743856487 ], [ -123.608437708, 46.9733591072 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4046, "RouteIdentifier": "020", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9043342814, 48.5465658408 ], [ -117.8819927368, 48.5472128187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4047, "RouteIdentifier": "020", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9951021272, 48.5298846785 ], [ -121.9651128936, 48.5240655431 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4048, "RouteIdentifier": "432", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9506147609, 46.1164898023 ], [ -122.9437335833, 46.1159145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4049, "RouteIdentifier": "510", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6881983355, 47.0090276156 ], [ -122.6694499846, 47.0015817743 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4050, "RouteIdentifier": "027", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1944912719, 46.7123163464 ], [ -117.1823923289, 46.7153301884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4051, "RouteIdentifier": "096", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.144284589, 47.8911732556 ], [ -122.1282727742, 47.8811551589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4052, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1994394218, 48.1842323462 ], [ -122.2073503784, 48.1930549968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4053, "RouteIdentifier": "031", "AADT": 90 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3082024553, 48.987334862 ], [ -117.300957911, 48.9914893657 ], [ -117.2997854183, 48.9998091485 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4054, "RouteIdentifier": "821", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4658299611, 46.7110974278 ], [ -120.4499387893, 46.725476403 ], [ -120.4529597593, 46.7328663314 ], [ -120.4474798796, 46.7417500389 ], [ -120.4584088633, 46.7479232715 ], [ -120.4557031883, 46.7526547977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4055, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9025771354, 47.3722950666 ], [ -123.8886284736, 47.4026822769 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4056, "RouteIdentifier": "090", "AADT": 79000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0695554806, 47.5516320142 ], [ -122.0518753525, 47.5453888035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4057, "RouteIdentifier": "014", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0728889721, 45.7937322728 ], [ -119.99534977, 45.8239202871 ], [ -119.9346212323, 45.8356923036 ], [ -119.9093114186, 45.8357642984 ], [ -119.8779729096, 45.8417460874 ], [ -119.848685047, 45.8673243697 ], [ -119.8271538347, 45.8696991389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4058, "RouteIdentifier": "012", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1306968579, 46.1654154745 ], [ -118.1391201391, 46.1784782697 ], [ -118.1360940572, 46.1845933366 ], [ -118.1377890482, 46.2310216136 ], [ -118.1530953054, 46.2591521015 ], [ -118.1532476863, 46.2701348718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4059, "RouteIdentifier": "536", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.390445812, 48.4422989059 ], [ -122.378756131, 48.4364435691 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4060, "RouteIdentifier": "109", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2125630243, 47.2479722468 ], [ -124.222223573, 47.2566679804 ], [ -124.2418234024, 47.2957168744 ], [ -124.2808034862, 47.3214481125 ], [ -124.2880206391, 47.3359121435 ], [ -124.2850104072, 47.3470290113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4061, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6901316239, 47.5798542029 ], [ -122.6987408734, 47.5866961105 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4062, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2945690698, 47.8468435945 ], [ -122.2931688795, 47.8504172566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4063, "RouteIdentifier": "090", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9856684909, 46.9399239995 ], [ -119.9617666156, 46.9450388749 ], [ -119.9623607954, 46.955497291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4064, "RouteIdentifier": "005", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354436719, 48.4902753934 ], [ -122.3370509632, 48.503991479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4065, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4935889943, 46.301316915 ], [ -119.4933154474, 46.3115165199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4066, "RouteIdentifier": "515", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2024279178, 47.3725593313 ], [ -122.2024048555, 47.3748567353 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4067, "RouteIdentifier": "161", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2939107442, 47.2065716074 ], [ -122.2939186583, 47.209493222 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4068, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9874606417, 47.6279947984 ], [ -121.9593727364, 47.6196353188 ], [ -121.9574628206, 47.6132115201 ], [ -121.9615435138, 47.60154051 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4069, "RouteIdentifier": "014", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4653744706, 45.7143933277 ], [ -121.4629980998, 45.7135052501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4070, "RouteIdentifier": "195", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3997755612, 47.5144285359 ], [ -117.3939373287, 47.5212232747 ], [ -117.3968245294, 47.5274308586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4071, "RouteIdentifier": "002", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4113416177, 47.7366272099 ], [ -117.4112982729, 47.739633774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4072, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.829825816, 47.381738143 ], [ -122.8277972731, 47.3865787228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4073, "RouteIdentifier": "546", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4744048469, 48.9644201365 ], [ -122.4631661079, 48.9646150404 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4074, "RouteIdentifier": "110", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4606869786, 47.9524141752 ], [ -124.4631155918, 47.9407965872 ], [ -124.4817162701, 47.9308967011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4075, "RouteIdentifier": "410", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9599282089, 47.199071826 ], [ -121.9346988288, 47.1921997068 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4076, "RouteIdentifier": "019", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7686405015, 48.0112283115 ], [ -122.7766696657, 48.0135236739 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4077, "RouteIdentifier": "007", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1961396485, 46.7486771117 ], [ -122.1934957289, 46.7573170831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4078, "RouteIdentifier": "307", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5733355827, 47.8027671644 ], [ -122.5706924506, 47.8037291147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4079, "RouteIdentifier": "524", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1378345116, 47.804839361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4080, "RouteIdentifier": "520", "AADT": 82000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.134945908, 47.6610541746 ], [ -122.1304517336, 47.6661307578 ], [ -122.1223453784, 47.6671817737 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4081, "RouteIdentifier": "500", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4690215411, 45.664782696 ], [ -122.4348020717, 45.6649138902 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4082, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1749055913, 47.289039031 ], [ -123.1570442192, 47.2803282022 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4083, "RouteIdentifier": "107", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7194853839, 46.9182048549 ], [ -123.7133142809, 46.9289642039 ], [ -123.6707784483, 46.9375606362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4084, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4026394998, 47.7808179884 ], [ -117.402846948, 47.7809972131 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4085, "RouteIdentifier": "505", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.881749481, 46.4752593869 ], [ -122.8657551158, 46.4709082251 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4086, "RouteIdentifier": "542", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2776857935, 48.8435345933 ], [ -122.2556345682, 48.8390461836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4087, "RouteIdentifier": "097", "AADT": 9000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4736324891, 46.5393860319 ], [ -120.4705376957, 46.5410320836 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4088, "RouteIdentifier": "097", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6556188415, 47.4745007676 ], [ -120.6528625036, 47.482823007 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4089, "RouteIdentifier": "101COHERON", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8146581289, 46.9746674338 ], [ -123.8135123607, 46.9752656303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4090, "RouteIdentifier": "005HD13393", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4290787927, 47.2340191897 ], [ -122.4348320946, 47.2331712422 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4091, "RouteIdentifier": "005", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7328423678, 48.9841695596 ], [ -122.7483034155, 48.9956575306 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4092, "RouteIdentifier": "548", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5983885994, 48.8916617976 ], [ -122.6025149847, 48.8920541634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4093, "RouteIdentifier": "150", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9808716374, 47.8137027141 ], [ -119.9770150376, 47.8170244607 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4094, "RouteIdentifier": "548", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6385290374, 48.8917094095 ], [ -122.7044893922, 48.8921934089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4095, "RouteIdentifier": "504", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7753068821, 46.3188415766 ], [ -122.7622997913, 46.31964321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4096, "RouteIdentifier": "028", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533663973, 47.2334497115 ], [ -119.8356431118, 47.2340276704 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4097, "RouteIdentifier": "432", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8925432587, 46.1068065797 ], [ -122.8785910075, 46.1067733831 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4098, "RouteIdentifier": "900", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1565310736, 47.5057272643 ], [ -122.1545187673, 47.5061214996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4099, "RouteIdentifier": "504", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8907960803, 46.3012804426 ], [ -122.8803526133, 46.3061126605 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4100, "RouteIdentifier": "101", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0447131335, 46.331198202 ], [ -124.0053179052, 46.3309294575 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4101, "RouteIdentifier": "020", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.883245172, 47.9882925028 ], [ -122.8767504028, 47.9921025165 ], [ -122.8590822264, 47.9899083019 ], [ -122.8376261196, 48.0017582789 ], [ -122.8300886216, 48.0107987872 ], [ -122.8301978646, 48.0210112267 ], [ -122.8196628775, 48.04931957 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4102, "RouteIdentifier": "538", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3228133919, 48.4357262199 ], [ -122.3174867795, 48.4356661942 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4103, "RouteIdentifier": "539", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4859938914, 48.8150001938 ], [ -122.4859651634, 48.8333491544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4104, "RouteIdentifier": "011", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4957096235, 48.6976302874 ], [ -122.4889163396, 48.702409161 ], [ -122.4998793264, 48.7103012557 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4105, "RouteIdentifier": "012", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.387883926, 47.005264982 ], [ -123.3874436362, 47.0046753037 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4106, "RouteIdentifier": "082", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5135770418, 46.6284896582 ], [ -120.5009591571, 46.6232675075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4107, "RouteIdentifier": "522", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1570006357, 47.765024263 ], [ -122.1508809942, 47.779603159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4108, "RouteIdentifier": "527", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2074687841, 47.8201159821 ], [ -122.2074577992, 47.821711911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4109, "RouteIdentifier": "509", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344227391, 47.4416515583 ], [ -122.3339487259, 47.4475073103 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4110, "RouteIdentifier": "022", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3199265565, 46.3750583048 ], [ -120.3201578547, 46.3713384075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4111, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3344939127, 48.3373547839 ], [ -122.3359326659, 48.3471746589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4112, "RouteIdentifier": "122", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4976698793, 46.5583568324 ], [ -122.4954759572, 46.5519074288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4113, "RouteIdentifier": "020", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4131299621, 48.4502154271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4114, "RouteIdentifier": "105", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8480154625, 46.9435702245 ], [ -123.8173067572, 46.9516445414 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4115, "RouteIdentifier": "539", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860492264, 48.8043084991 ], [ -122.4860458418, 48.8077759805 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4116, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2963791173, 47.3865201952 ], [ -122.2947521893, 47.3943368889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4117, "RouteIdentifier": "101", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7294448552, 46.6856170888 ], [ -123.7293771219, 46.6866295208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4118, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3445897421, 47.7021703261 ], [ -122.3446210177, 47.7050638875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4119, "RouteIdentifier": "405", "AADT": 177000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862142566, 47.6722701693 ], [ -122.1852889074, 47.6742929009 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4120, "RouteIdentifier": "500", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6493044391, 45.6503500709 ], [ -122.6469881652, 45.6495101668 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4121, "RouteIdentifier": "142", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8226283862, 45.8229903949 ], [ -120.8122602395, 45.8229926828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4122, "RouteIdentifier": "261", "AADT": 480 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3084452289, 46.758407436 ], [ -118.2927627536, 46.7640966507 ], [ -118.286718814, 46.7740832951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4123, "RouteIdentifier": "161", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2972004015, 46.9531905355 ], [ -122.2979507857, 46.9800944856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4124, "RouteIdentifier": "162", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293212399, 47.1843499681 ], [ -122.2293015421, 47.1806601772 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4125, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7406552867, 46.7781576345 ], [ -123.738474948, 46.7947691985 ], [ -123.7460823296, 46.7987604942 ], [ -123.7468410221, 46.8042726776 ], [ -123.7198612579, 46.8296809218 ], [ -123.7193448689, 46.8429886225 ], [ -123.7093258609, 46.8603697186 ], [ -123.7108617816, 46.8670798808 ], [ -123.7062185932, 46.8779876268 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4126, "RouteIdentifier": "002", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4111538627, 47.7133751719 ], [ -117.4111252748, 47.7150977748 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4127, "RouteIdentifier": "516", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22977526, 47.3833226703 ], [ -122.2214820038, 47.3825173806 ], [ -122.2065091301, 47.3725609481 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4128, "RouteIdentifier": "524", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2871149715, 47.8209339215 ], [ -122.2755457279, 47.8209143725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4129, "RouteIdentifier": "002", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0978930871, 47.6573058522 ], [ -117.9493878602, 47.6583110212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4130, "RouteIdentifier": "099", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.32119741, 47.52336099 ], [ -122.3249389869, 47.5271305474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4131, "RouteIdentifier": "285", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3006072071, 47.4096540761 ], [ -120.3029610908, 47.4095632747 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4132, "RouteIdentifier": "005", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8976072607, 46.1404539675 ], [ -122.8998676031, 46.1496842122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4133, "RouteIdentifier": "097", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4508888194, 48.973570904 ], [ -119.459484559, 48.9953117488 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4134, "RouteIdentifier": "002", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5054795183, 47.7584305503 ], [ -118.4817145594, 47.7503088944 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4135, "RouteIdentifier": "101", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7300519299, 46.6888584117 ], [ -123.7313710506, 46.6903743354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4136, "RouteIdentifier": "003", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7124496038, 47.6114063118 ], [ -122.7097773434, 47.6324886961 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4137, "RouteIdentifier": "097", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1489577681, 47.7627227749 ], [ -120.1222565242, 47.7683337153 ], [ -120.0939451422, 47.7618733285 ], [ -120.0771113094, 47.7623555736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4138, "RouteIdentifier": "009", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2406467581, 48.4027244437 ], [ -122.2643571316, 48.430063418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4139, "RouteIdentifier": "281", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8533828874, 47.231885111 ], [ -119.8533663973, 47.2334497115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4140, "RouteIdentifier": "823", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5197381527, 46.6681259529 ], [ -120.5170629867, 46.6712561513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4141, "RouteIdentifier": "003", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8455160853, 47.415535475 ], [ -122.8464511089, 47.4246031872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4142, "RouteIdentifier": "531", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1872561406, 48.1523209798 ], [ -122.1857562885, 48.1523511436 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4143, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6312757821, 47.5427369679 ], [ -122.6269725806, 47.5417504284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4144, "RouteIdentifier": "002", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5877830321, 47.5561469233 ], [ -120.5501706085, 47.5350150951 ], [ -120.5136715771, 47.5356194902 ], [ -120.4890479152, 47.5280979623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4145, "RouteIdentifier": "501", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7041423514, 45.6445770609 ], [ -122.7195199906, 45.6499177453 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4146, "RouteIdentifier": "548", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7514620424, 48.9886011741 ], [ -122.7516443954, 48.9896016788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4147, "RouteIdentifier": "099", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2981196901, 47.5020226852 ], [ -122.3037605642, 47.5106094253 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4148, "RouteIdentifier": "012", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2939892909, 46.0823692123 ], [ -118.2736672441, 46.0850299125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4149, "RouteIdentifier": "395", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1428018792, 48.7736597705 ], [ -118.1426715191, 48.7772362922 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4150, "RouteIdentifier": "523", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3100733649, 47.7339389204 ], [ -122.297844387, 47.7338069071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4151, "RouteIdentifier": "009", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649877502, 48.9991015764 ], [ -122.2649591411, 49.0000309604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4152, "RouteIdentifier": "129", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2517268724, 46.0417290027 ], [ -117.2515257215, 46.0417663171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4153, "RouteIdentifier": "020", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6686935469, 48.2839223474 ], [ -122.6661977768, 48.2841306381 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4154, "RouteIdentifier": "082", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4748023779, 46.5896995193 ], [ -120.4720339463, 46.5745548829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4155, "RouteIdentifier": "028SPWENTCH", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.287327632, 47.3995120011 ], [ -120.2863393433, 47.3982856502 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4156, "RouteIdentifier": "105", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1062823585, 46.8495197001 ], [ -124.1079704304, 46.8588588821 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4157, "RouteIdentifier": "504", "AADT": 960 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6794982425, 46.3616185155 ], [ -122.6734966352, 46.3612844656 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4158, "RouteIdentifier": "536", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4313388534, 48.4462873107 ], [ -122.4283589995, 48.4448569455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4159, "RouteIdentifier": "410", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014569021, 47.1941769535 ], [ -122.1990213709, 47.1844363574 ], [ -122.1869699983, 47.1769776673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4160, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9489928608, 48.0502722096 ], [ -122.9240212026, 48.050093762 ], [ -122.8785401303, 48.0405591613 ], [ -122.8671620679, 48.0307219954 ], [ -122.8622427496, 48.0164767191 ], [ -122.863957586, 48.0095725516 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4161, "RouteIdentifier": "004", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9085060615, 46.1467022322 ], [ -122.9093031811, 46.1446137165 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4162, "RouteIdentifier": "090", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7651585878, 47.4732140567 ], [ -121.7482609923, 47.473255323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4163, "RouteIdentifier": "009", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2034031763, 48.7206992742 ], [ -122.2022010791, 48.7460185067 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4164, "RouteIdentifier": "101", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1277858514, 47.2236494996 ], [ -123.1265910273, 47.2001121701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4165, "RouteIdentifier": "263", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5525255652, 46.6422285199 ], [ -118.5525513618, 46.6447887503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4166, "RouteIdentifier": "022", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9393101914, 46.196885705 ], [ -119.9172628783, 46.1916920438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4167, "RouteIdentifier": "021", "AADT": 250 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6991242989, 47.3709132653 ], [ -118.6920130217, 47.3791633099 ], [ -118.6836868334, 47.4153657335 ], [ -118.7129232612, 47.426961387 ], [ -118.7741833699, 47.47212032 ], [ -118.7840000547, 47.472842312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4168, "RouteIdentifier": "500", "AADT": 43000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6469881652, 45.6495101668 ], [ -122.6340284894, 45.6462602442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4169, "RouteIdentifier": "112", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3487894025, 48.2702583288 ], [ -124.3463796883, 48.2675248649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4170, "RouteIdentifier": "524SP3RDAVE", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3803488731, 47.8097254242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4171, "RouteIdentifier": "011", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4879877343, 48.6747508138 ], [ -122.4957096235, 48.6976302874 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4172, "RouteIdentifier": "101", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3854471652, 47.9489554101 ], [ -124.3854225052, 47.9505814332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4173, "RouteIdentifier": "515", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1982503924, 47.4471972302 ], [ -122.2012702922, 47.4487938305 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4174, "RouteIdentifier": "507", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6259425977, 46.9314301096 ], [ -122.6207841642, 46.9343746994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4175, "RouteIdentifier": "231", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7414617067, 48.0549272619 ], [ -117.7413820969, 48.0569482281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4176, "RouteIdentifier": "102", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1912428882, 47.2429358128 ], [ -123.1777008261, 47.2523092089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4177, "RouteIdentifier": "500", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3855189782, 45.5821082164 ], [ -122.3857916688, 45.5806082164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4178, "RouteIdentifier": "009", "AADT": 5600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3219125052, 48.9201922455 ], [ -122.3217483631, 48.934759017 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4179, "RouteIdentifier": "096", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2064495037, 47.8781807663 ], [ -122.2036492399, 47.8781466533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4180, "RouteIdentifier": "009", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1116525558, 48.0918800123 ], [ -122.1130005817, 48.1517401354 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4181, "RouteIdentifier": "142", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.2896666816, 45.6971356795 ], [ -121.2657579644, 45.7111535352 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4182, "RouteIdentifier": "005", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8874838161, 46.4465601034 ], [ -122.8839891536, 46.4708944372 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4183, "RouteIdentifier": "004", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0254965582, 46.1765544591 ], [ -123.0155186397, 46.1714070706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4184, "RouteIdentifier": "101", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8718350067, 46.2347671028 ], [ -123.8750691469, 46.2411694514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4185, "RouteIdentifier": "224", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4254807685, 46.2734329699 ], [ -119.4001468865, 46.2808655483 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4186, "RouteIdentifier": "099", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3120440183, 47.335872344 ], [ -122.312132657, 47.3394444319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4187, "RouteIdentifier": "509", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.335244606, 47.4239544628 ], [ -122.3354523656, 47.4339530916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4188, "RouteIdentifier": "507COPEARL", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9571866974, 46.7126430488 ], [ -122.9576609885, 46.7115370036 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4189, "RouteIdentifier": "099", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356727114, 47.2430577065 ], [ -122.3499363576, 47.2430303348 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4190, "RouteIdentifier": "005", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5884452443, 48.8674825234 ], [ -122.5886565352, 48.8850365558 ], [ -122.5918452042, 48.8890326206 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4191, "RouteIdentifier": "401", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8118111203, 46.365574241 ], [ -123.8026031248, 46.3760022496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4192, "RouteIdentifier": "012", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9125576769, 46.0999090238 ], [ -118.9077542093, 46.0783797271 ], [ -118.9099471422, 46.0583086547 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4193, "RouteIdentifier": "027", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0799320523, 46.9114350689 ], [ -117.0785645783, 46.9168637491 ], [ -117.0882427081, 46.9224279211 ], [ -117.0888409787, 46.92764545 ], [ -117.1008535829, 46.9394396989 ], [ -117.0895173373, 46.9526956733 ], [ -117.0915584637, 46.9622979365 ], [ -117.1061815936, 46.9621618746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4194, "RouteIdentifier": "101", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9602028302, 47.0399823411 ], [ -122.9478299761, 47.0358210791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4195, "RouteIdentifier": "002", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2620674833, 47.6387927373 ], [ -119.2528967959, 47.6483371933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4196, "RouteIdentifier": "507", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6888591294, 46.8883629314 ], [ -122.6775668388, 46.8986798288 ], [ -122.6531750965, 46.9072166327 ], [ -122.6259425977, 46.9314301096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4197, "RouteIdentifier": "016", "AADT": 61000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6824612226, 47.5278472097 ], [ -122.6851289986, 47.5272359279 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4198, "RouteIdentifier": "090", "AADT": 105000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4195602915, 47.6526347407 ], [ -117.415831441, 47.6526577026 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4199, "RouteIdentifier": "099", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462274907, 47.7777955542 ], [ -122.3455787056, 47.7806814889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4200, "RouteIdentifier": "508", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7046470526, 46.5756017902 ], [ -122.6933366335, 46.5767605568 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4201, "RouteIdentifier": "090", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9280333907, 47.1893145679 ], [ -120.9071870107, 47.1848015959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4202, "RouteIdentifier": "021", "AADT": 210 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6913794976, 47.2616081181 ], [ -118.6909098997, 47.2757797492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4203, "RouteIdentifier": "027", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1061815936, 46.9621618746 ], [ -117.1201266623, 46.9711349318 ], [ -117.1201099165, 46.978540374 ], [ -117.1261890475, 46.982384562 ], [ -117.1247530484, 46.9889983791 ], [ -117.1331982378, 46.9962242171 ], [ -117.1333198621, 47.0068232969 ], [ -117.1420392981, 47.0070763388 ], [ -117.1430372318, 47.0139495218 ], [ -117.1490857648, 47.0180587777 ], [ -117.1458226963, 47.0248832352 ], [ -117.1531459312, 47.0298429488 ], [ -117.1545590892, 47.0396761869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4204, "RouteIdentifier": "395", "AADT": 8200 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7557863554, 46.7871441721 ], [ -118.7402153352, 46.7962897708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4205, "RouteIdentifier": "101", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0798887479, 47.4834193437 ], [ -123.1019028785, 47.463429943 ], [ -123.1150336799, 47.4621474593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4206, "RouteIdentifier": "164", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9876439189, 47.202569875 ], [ -121.9842574706, 47.200949296 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4207, "RouteIdentifier": "090", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9485401068, 47.0155594946 ], [ -119.9393673303, 47.0263156043 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4208, "RouteIdentifier": "007", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4262909226, 47.225964252 ], [ -122.4276587856, 47.2283207799 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4209, "RouteIdentifier": "272", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3637055225, 46.8798827877 ], [ -117.3460816248, 46.8885837829 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4210, "RouteIdentifier": "005", "AADT": 154000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2583869574, 47.8454224344 ], [ -122.2520093383, 47.8571419291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4211, "RouteIdentifier": "016", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5934601063, 47.3246446179 ], [ -122.6046693406, 47.337400484 ], [ -122.612537009, 47.3544077565 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4212, "RouteIdentifier": "023", "AADT": 220 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1928794609, 47.4781166157 ], [ -118.2501056872, 47.4783678971 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4213, "RouteIdentifier": "903", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9940435568, 47.2237272029 ], [ -121.0006237988, 47.2257561758 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4214, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7098709231, 48.2523750469 ], [ -122.6993155614, 48.2593609442 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4215, "RouteIdentifier": "020", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6742675651, 48.5197397944 ], [ -120.6562834707, 48.5242436672 ], [ -120.6424628179, 48.5146645083 ], [ -120.6457283822, 48.5241251482 ], [ -120.6309912378, 48.5489299064 ], [ -120.6353352442, 48.5625862633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4216, "RouteIdentifier": "002", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4900236905, 47.6081531287 ], [ -119.4635639051, 47.6196933691 ], [ -119.4055514032, 47.6207224415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4217, "RouteIdentifier": "121", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9142238248, 46.952800067 ], [ -122.9289732825, 46.9527927439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4218, "RouteIdentifier": "099", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3269269693, 47.5291188556 ], [ -122.3324821085, 47.534523388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4219, "RouteIdentifier": "099", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3473316285, 47.6527710843 ], [ -122.3472711494, 47.6539867202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4220, "RouteIdentifier": "026", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2078614274, 46.8115731743 ], [ -119.1974936697, 46.8114235517 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4221, "RouteIdentifier": "021", "AADT": 370 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7101114713, 47.7579202996 ], [ -118.7091478999, 47.7594544328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4222, "RouteIdentifier": "005", "AADT": 121000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5623879036, 47.1153885874 ], [ -122.5526964173, 47.1210261719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4223, "RouteIdentifier": "544", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3519395171, 48.9160269917 ], [ -122.3471693341, 48.9195294698 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4224, "RouteIdentifier": "290", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3468192298, 47.6709658181 ], [ -117.3446807868, 47.6717289639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4225, "RouteIdentifier": "536", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.348619877, 48.42175299 ], [ -122.3462357173, 48.4217075774 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4226, "RouteIdentifier": "006", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2943647479, 46.5783948474 ], [ -123.2852999716, 46.5856826341 ], [ -123.275877446, 46.6016351381 ], [ -123.2741181864, 46.6204039176 ], [ -123.2799704551, 46.6290987029 ], [ -123.2514945992, 46.6301019034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4227, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3771964333, 48.0428294994 ], [ -124.3476245074, 48.0559531272 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4228, "RouteIdentifier": "902", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6905925202, 47.5040657699 ], [ -117.6929707776, 47.5042331597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4229, "RouteIdentifier": "195", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3342443282, 46.9502697374 ], [ -117.3317752495, 46.9591639644 ], [ -117.3228188395, 46.9678793785 ], [ -117.3241499511, 46.9733140337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4230, "RouteIdentifier": "202", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246598026, 47.644263262 ], [ -122.0103610919, 47.6398424818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4231, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.356089198, 47.3225056037 ], [ -122.3548548851, 47.3236743586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4232, "RouteIdentifier": "028", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6922310931, 47.3333156666 ], [ -118.6782492386, 47.3327708536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4233, "RouteIdentifier": "171", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.279016421, 47.1310325774 ], [ -119.2777833248, 47.1316521718 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4234, "RouteIdentifier": "092", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9801847421, 48.0911670151 ], [ -121.9796119878, 48.0909954069 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4235, "RouteIdentifier": "090", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0467690066, 47.1906721316 ], [ -121.0383554468, 47.1821664468 ], [ -121.0072302557, 47.1840617967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4236, "RouteIdentifier": "221", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6640303518, 46.1872361321 ], [ -119.7026562788, 46.1875112252 ], [ -119.7058767846, 46.1902186961 ], [ -119.7065869381, 46.2050788695 ], [ -119.716955895, 46.1992803057 ], [ -119.7276384693, 46.2085860486 ], [ -119.7426319216, 46.20699312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4237, "RouteIdentifier": "524", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2603550037, 47.8200633469 ], [ -122.254854845, 47.8251972811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4238, "RouteIdentifier": "542", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4452973982, 48.7767299988 ], [ -122.4302739529, 48.7826189223 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4239, "RouteIdentifier": "003", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8407076803, 47.4325617338 ], [ -122.8344961907, 47.4399094921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4240, "RouteIdentifier": "291", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4828080327, 47.7179633653 ], [ -117.4899095304, 47.721909145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4241, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9959923537, 46.5612283389 ], [ -118.985089341, 46.5732225177 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4242, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5910782183, 48.349487973 ], [ -119.5645756943, 48.3674740397 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4243, "RouteIdentifier": "027", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235791152, 47.6164555058 ], [ -117.2235907413, 47.620646532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4244, "RouteIdentifier": "018", "AADT": 80000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2329381771, 47.3035228844 ], [ -122.2274240044, 47.30291529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4245, "RouteIdentifier": "021", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7302329781, 48.6349158109 ], [ -118.7340738301, 48.6404765011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4246, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.16309152, 47.0915688757 ], [ -119.1344405077, 47.0889844077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4247, "RouteIdentifier": "090", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0518753525, 47.5453888035 ], [ -122.0411447066, 47.5428659307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4248, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1654405965, 47.3580279441 ], [ -122.1615500081, 47.3579926973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4249, "RouteIdentifier": "020SPANACRT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.675812415, 48.499639973 ], [ -122.6792543224, 48.5015614918 ], [ -122.6781254572, 48.5066895682 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4250, "RouteIdentifier": "002", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2282190803, 47.6193373774 ], [ -120.2277030428, 47.6241332137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4251, "RouteIdentifier": "409", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3770778203, 46.155161435 ], [ -123.376808335, 46.1600802384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4252, "RouteIdentifier": "174", "AADT": 620 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3421710669, 47.9339530573 ], [ -119.2692290678, 47.9499931301 ], [ -119.1829190953, 47.9759837264 ], [ -119.1165798222, 47.9732123098 ], [ -119.0445267647, 47.980223996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4253, "RouteIdentifier": "014", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.786225659, 45.7141304128 ], [ -121.7366031924, 45.6987633896 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4254, "RouteIdentifier": "014", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.8293481757, 45.7148576644 ], [ -121.7924840113, 45.7161680262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4255, "RouteIdentifier": "161", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2940695704, 47.1604934513 ], [ -122.2959770656, 47.1610814791 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4256, "RouteIdentifier": "007", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3734287129, 47.0252556279 ], [ -122.3953437269, 47.0507021736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4257, "RouteIdentifier": "203", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9203962911, 47.682901991 ], [ -121.9365744608, 47.6873896384 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4258, "RouteIdentifier": "017", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.67945547, 48.1025546083 ], [ -119.6853721482, 48.1040204491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4259, "RouteIdentifier": "112", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2595417057, 48.249031188 ], [ -124.2551176147, 48.2434973886 ], [ -124.25782102, 48.2357494947 ], [ -124.2487012457, 48.2130439318 ], [ -124.249669383, 48.206221953 ], [ -124.2337464478, 48.1994776202 ], [ -124.2164172902, 48.1837230479 ], [ -124.2149004639, 48.1767680441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4260, "RouteIdentifier": "173", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7432426466, 48.0767810116 ], [ -119.780711497, 48.0844287634 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4261, "RouteIdentifier": "018", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0815564766, 47.3772542241 ], [ -122.0515162551, 47.3916599978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4262, "RouteIdentifier": "017", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6506748055, 47.9912018634 ], [ -119.6565631198, 47.9990210152 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4263, "RouteIdentifier": "195", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3642482346, 46.8895898765 ], [ -117.3600916592, 46.8977782002 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4264, "RouteIdentifier": "531", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2864988953, 48.1556958232 ], [ -122.2449869401, 48.1566054926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4265, "RouteIdentifier": "224", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4752230368, 46.2516861086 ], [ -119.4719132383, 46.252522673 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4266, "RouteIdentifier": "012", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6287453364, 46.4780216163 ], [ -117.6056799649, 46.4748288907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4267, "RouteIdentifier": "002", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7878973606, 47.7642158415 ], [ -120.7730335346, 47.7672787698 ], [ -120.7466541795, 47.7635382143 ], [ -120.7393994237, 47.7563801327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4268, "RouteIdentifier": "124", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3562019376, 46.2999263 ], [ -118.340887862, 46.298695623 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4269, "RouteIdentifier": "012", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.2289306877, 46.8407885562 ], [ -123.2217410927, 46.8391963722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4270, "RouteIdentifier": "009", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1055377983, 47.9978871915 ], [ -122.1063755906, 48.0032207303 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4271, "RouteIdentifier": "516", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0376047767, 47.3579773831 ], [ -122.0279928055, 47.3596803479 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4272, "RouteIdentifier": "524", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3121013887, 47.8211831696 ], [ -122.2978040809, 47.8210601157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4273, "RouteIdentifier": "512", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4276134438, 47.1581515823 ], [ -122.4068844997, 47.1589588837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4274, "RouteIdentifier": "016", "AADT": 89000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.46060986, 47.2297520929 ], [ -122.4648670181, 47.2345482875 ], [ -122.4722108146, 47.2351167316 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4275, "RouteIdentifier": "005", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8998676031, 46.1496842122 ], [ -122.9012940427, 46.1535561469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4276, "RouteIdentifier": "167", "AADT": 92000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178750419, 47.4671156335 ], [ -122.2178776034, 47.4696365374 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4277, "RouteIdentifier": "116", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6907759825, 48.0567497671 ], [ -122.6965194533, 48.0612450071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4278, "RouteIdentifier": "524", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3663582961, 47.8214821079 ], [ -122.3642787688, 47.8215067044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4279, "RouteIdentifier": "002", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6441483202, 47.6429238878 ], [ -117.6038968536, 47.6429304571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4280, "RouteIdentifier": "543", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349383438, 48.9890983509 ], [ -122.7349579061, 48.9905390378 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4281, "RouteIdentifier": "195", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3649034503, 46.8772762302 ], [ -117.3648165287, 46.8790297995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4282, "RouteIdentifier": "204", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376542721, 47.9813261844 ], [ -122.1217698707, 47.9948572706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4283, "RouteIdentifier": "017", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1179298675, 46.9846708775 ], [ -119.1185803577, 46.992286446 ], [ -119.1257014177, 46.9990395411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4284, "RouteIdentifier": "024", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4709892732, 46.5848762904 ], [ -120.4674043677, 46.5847787764 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4285, "RouteIdentifier": "005", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6717054661, 48.9414820309 ], [ -122.7201925534, 48.9725563663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4286, "RouteIdentifier": "101", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8828899247, 47.9544833493 ], [ -122.886536485, 47.9460455733 ], [ -122.8853301763, 47.9139270916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4287, "RouteIdentifier": "270", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1817811528, 46.731695621 ], [ -117.1809848194, 46.7306947672 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4288, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1788052048, 45.588814009 ], [ -122.1416754861, 45.5914800209 ], [ -122.0320320146, 45.6195630227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4289, "RouteIdentifier": "109", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1981225594, 47.2096549901 ], [ -124.2121521075, 47.2310327987 ], [ -124.2144799519, 47.2389866166 ], [ -124.2090169893, 47.2434071564 ], [ -124.2125630243, 47.2479722468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4290, "RouteIdentifier": "002", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2970255151, 47.5111002228 ], [ -120.2972233483, 47.5139558554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4291, "RouteIdentifier": "100", "AADT": 990 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0480975411, 46.3020519269 ], [ -124.0437707451, 46.3032611115 ], [ -124.0447271345, 46.3081264556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4292, "RouteIdentifier": "012", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6272286689, 46.9765532394 ], [ -123.6175832531, 46.9743856487 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4293, "RouteIdentifier": "513", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3008871177, 47.6593020345 ], [ -122.2999619988, 47.6603776807 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4294, "RouteIdentifier": "101", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5146878293, 48.1016682747 ], [ -123.5038218235, 48.1027548736 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4295, "RouteIdentifier": "304", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6463329022, 47.5650689234 ], [ -122.6437803284, 47.5650600843 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4296, "RouteIdentifier": "020", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6353352442, 48.5625862633 ], [ -120.6247422202, 48.5816115228 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4297, "RouteIdentifier": "099", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3452527917, 47.741452447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4298, "RouteIdentifier": "110SPMORA", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.538034814, 47.9138188412 ], [ -124.5816396399, 47.9176697804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4299, "RouteIdentifier": "525", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028100586, 47.9298175191 ], [ -122.306318668, 47.9330305052 ], [ -122.3051065733, 47.9435748501 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4300, "RouteIdentifier": "017", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.246720142, 47.1017760996 ], [ -119.2517852789, 47.1061646856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4301, "RouteIdentifier": "162", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2143535286, 47.1036076158 ], [ -122.2078191986, 47.09966335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4302, "RouteIdentifier": "205", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6403863597, 45.7125037539 ], [ -122.6538586045, 45.7228492671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4303, "RouteIdentifier": "017", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4791481927, 47.3691228237 ], [ -119.4832074613, 47.3815237106 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4304, "RouteIdentifier": "534", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3223136019, 48.340974526 ], [ -122.3127725976, 48.3407796335 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4305, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9670970658, 46.649895724 ], [ -122.9768718108, 46.656330602 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4306, "RouteIdentifier": "101", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4317237119, 48.1182747731 ], [ -123.4299729836, 48.1175659952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4307, "RouteIdentifier": "017", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4362688029, 47.5726405798 ], [ -119.4024814133, 47.5956212233 ], [ -119.3831872355, 47.5969465281 ], [ -119.3320582967, 47.6264826812 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4308, "RouteIdentifier": "023", "AADT": 980 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2546196045, 47.4837941362 ], [ -118.2546862005, 47.4856106964 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4309, "RouteIdentifier": "538", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339797739, 48.4358920299 ], [ -122.3257332902, 48.4357585766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4310, "RouteIdentifier": "516", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2310615854, 47.3798227122 ], [ -122.2310669107, 47.3816510809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4311, "RouteIdentifier": "512", "AADT": 75000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3150421028, 47.158578655 ], [ -122.2984075597, 47.1601271572 ], [ -122.2965893904, 47.1697800021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4312, "RouteIdentifier": "005", "AADT": 191000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2781342919, 47.5038105301 ], [ -122.2798420437, 47.5057734725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4313, "RouteIdentifier": "161", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2979467991, 47.2619638744 ], [ -122.3080765164, 47.2755685609 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4314, "RouteIdentifier": "005", "AADT": 185000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2798420437, 47.5057734725 ], [ -122.2844136914, 47.5118003255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4315, "RouteIdentifier": "405HI01093", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1745117574, 47.5764197452 ], [ -122.1765263234, 47.5839351811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4316, "RouteIdentifier": "542", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4251466525, 48.7865571974 ], [ -122.4156991339, 48.7941935233 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4317, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3678919314, 48.6545170814 ], [ -122.3737540854, 48.6673698213 ], [ -122.3929591717, 48.6767773163 ], [ -122.3959171546, 48.6866733018 ], [ -122.4073092626, 48.6901697434 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4318, "RouteIdentifier": "501", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7308174939, 45.655963797 ], [ -122.7438998103, 45.6694309117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4319, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2153325712, 47.2145095436 ], [ -118.1150962411, 47.2443549894 ], [ -118.0820522942, 47.2578651152 ], [ -118.0234915918, 47.2986486916 ], [ -117.9764083197, 47.306520851 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4320, "RouteIdentifier": "016", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5111157203, 47.2502531629 ], [ -122.5150756745, 47.2568775022 ], [ -122.5219385669, 47.258344291 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4321, "RouteIdentifier": "539", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4860786255, 48.7843780074 ], [ -122.4860047444, 48.7952060269 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4322, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9640727762, 47.3120619457 ], [ -117.9134293815, 47.3361142767 ], [ -117.8797406624, 47.3697640598 ], [ -117.8450444219, 47.3928212867 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4323, "RouteIdentifier": "542", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.296485317, 48.8400447632 ], [ -122.2886644352, 48.8433410199 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4324, "RouteIdentifier": "097", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5914996503, 47.0056760416 ], [ -120.5896360866, 47.0059926881 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4325, "RouteIdentifier": "906", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4125086133, 47.4188575024 ], [ -121.4114287309, 47.405602473 ], [ -121.3981391089, 47.395175907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4326, "RouteIdentifier": "005", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8839891536, 46.4708944372 ], [ -122.8803797924, 46.4829246021 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4327, "RouteIdentifier": "504", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8112469946, 46.2969576394 ], [ -122.7988517363, 46.3024562624 ], [ -122.7946174518, 46.3111351239 ], [ -122.7753068821, 46.3188415766 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4328, "RouteIdentifier": "169", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0334896745, 47.3838222996 ], [ -122.0453893577, 47.3903330933 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4329, "RouteIdentifier": "169", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0182971717, 47.3410067723 ], [ -122.0194447706, 47.3543865463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4330, "RouteIdentifier": "020", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.634532628, 48.2055146884 ], [ -122.6590763437, 48.2086905534 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4331, "RouteIdentifier": "524SPCEDRWY", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2924065553, 47.8209731507 ], [ -122.2923508391, 47.8173374386 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4332, "RouteIdentifier": "115", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1585629313, 47.0421430903 ], [ -124.1580458631, 47.0446019994 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4333, "RouteIdentifier": "028", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3006349454, 47.4249031098 ], [ -119.2762951487, 47.4275043915 ], [ -119.2594662735, 47.4250049904 ], [ -119.21615798, 47.432584836 ], [ -119.1587375545, 47.4191382519 ], [ -119.1328213855, 47.4183288429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4334, "RouteIdentifier": "539", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4854389282, 48.9351240348 ], [ -122.485447935, 48.9391322618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4335, "RouteIdentifier": "167", "AADT": 85000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2559001868, 47.2460061029 ], [ -122.2593033654, 47.2570246683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4336, "RouteIdentifier": "097", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5247105217, 48.5852161614 ], [ -119.5087900733, 48.6126127152 ], [ -119.4740104061, 48.6441487529 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4337, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1970611649, 47.4220162124 ], [ -122.1969627885, 47.4415056535 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4338, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2699380817, 47.6708379539 ], [ -122.2639807772, 47.6750826193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4339, "RouteIdentifier": "166", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6096358266, 47.5340033861 ], [ -122.601757504, 47.5339879331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4340, "RouteIdentifier": "005", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7253740372, 47.0679296901 ], [ -122.7090034211, 47.0697237816 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4341, "RouteIdentifier": "500", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6163705941, 45.6478697622 ], [ -122.6107084925, 45.647880158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4342, "RouteIdentifier": "167", "AADT": 120000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2442490763, 47.3856159218 ], [ -122.2313987649, 47.3961663604 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4343, "RouteIdentifier": "124", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0078943102, 46.2117237268 ], [ -118.9716314101, 46.2117605619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4344, "RouteIdentifier": "155", "AADT": 4700 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5123492002, 48.4036826294 ], [ -119.5195878632, 48.4074511711 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4345, "RouteIdentifier": "706", "AADT": 3200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1920445113, 46.7631482149 ], [ -122.11013683, 46.7534531953 ], [ -122.0309120554, 46.7587001203 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4346, "RouteIdentifier": "182", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2781150352, 46.2587418451 ], [ -119.2485902926, 46.2609157729 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4347, "RouteIdentifier": "101", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0326707223, 47.0850835188 ], [ -123.0208342666, 47.0780579889 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4348, "RouteIdentifier": "022", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150062176, 46.3807401139 ], [ -120.3150102837, 46.3792337657 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4349, "RouteIdentifier": "026", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4900970503, 46.8410354631 ], [ -117.485569689, 46.8462038031 ], [ -117.4728550026, 46.8484992365 ], [ -117.4491740407, 46.8620068645 ], [ -117.4229038284, 46.8656513628 ], [ -117.3996057791, 46.8749458131 ], [ -117.3877903612, 46.8866484089 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4350, "RouteIdentifier": "097AR", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0930271133, 47.8390930772 ], [ -120.0898201478, 47.8397078467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4351, "RouteIdentifier": "432", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0304642178, 46.1645370289 ], [ -123.0261661571, 46.1622220249 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4352, "RouteIdentifier": "531", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1167643996, 48.1516314237 ], [ -122.1130429581, 48.1514951182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4353, "RouteIdentifier": "900", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1429848329, 47.5057588479 ], [ -122.1414184657, 47.5061993756 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4354, "RouteIdentifier": "529", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1904086007, 47.976739907 ], [ -122.191055647, 47.976747735 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4355, "RouteIdentifier": "090", "AADT": 118000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2348413671, 47.588418258 ], [ -122.2203529267, 47.5824516264 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4356, "RouteIdentifier": "142", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8053708556, 45.8265045706 ], [ -120.8039379118, 45.8264664938 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4357, "RouteIdentifier": "005", "AADT": 108000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4839759446, 47.158948731 ], [ -122.4725322952, 47.1701115828 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4358, "RouteIdentifier": "020", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6529393278, 48.3694852783 ], [ -122.6511977801, 48.3765935554 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4359, "RouteIdentifier": "509", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3354523656, 47.4339530916 ], [ -122.3344227391, 47.4416515583 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4360, "RouteIdentifier": "005", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4832840697, 48.7824744802 ], [ -122.4958895454, 48.7835005491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4361, "RouteIdentifier": "027", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1742498954, 47.3867659672 ], [ -117.1737248443, 47.4229162513 ], [ -117.1504802596, 47.4304049796 ], [ -117.1426102031, 47.4378155483 ], [ -117.1421354348, 47.4475636134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4362, "RouteIdentifier": "523", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3343328973, 47.7341445146 ], [ -122.3289242991, 47.7341017926 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4363, "RouteIdentifier": "012", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5560127138, 46.4751416428 ], [ -117.4811308047, 46.4673204627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4364, "RouteIdentifier": "821", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4821709855, 46.6784018527 ], [ -120.482692837, 46.6807839356 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4365, "RouteIdentifier": "097", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7080243736, 47.2036487713 ], [ -120.698400881, 47.209642341 ], [ -120.7006997329, 47.215577636 ], [ -120.6947810491, 47.2369919331 ], [ -120.6976443009, 47.2433710848 ], [ -120.6923436564, 47.2506189178 ], [ -120.7011122103, 47.2986247569 ], [ -120.6957500975, 47.3044682452 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4366, "RouteIdentifier": "090", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0241863249, 47.5315881261 ], [ -122.0171493711, 47.533899271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4367, "RouteIdentifier": "303", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6291767301, 47.6025424022 ], [ -122.6288917189, 47.6068663319 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4368, "RouteIdentifier": "101", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3235990471, 48.0975676978 ], [ -123.2987245907, 48.0961085325 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4369, "RouteIdentifier": "505", "AADT": 650 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7267485599, 46.4373575595 ], [ -122.7177660143, 46.4300338266 ], [ -122.7082095882, 46.4297795526 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4370, "RouteIdentifier": "524SPCEDRWY", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2923508391, 47.8173374386 ], [ -122.2923358096, 47.816111394 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4371, "RouteIdentifier": "303", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6676311053, 47.6547183962 ], [ -122.6759360238, 47.659448765 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4372, "RouteIdentifier": "020", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1898318211, 48.589329096 ], [ -118.1686131052, 48.5922259084 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4373, "RouteIdentifier": "129", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0544483353, 46.341189423 ], [ -117.0559678999, 46.3418155618 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4374, "RouteIdentifier": "005", "AADT": 64000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2746840212, 48.2730370256 ], [ -122.3124253164, 48.3052893759 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4375, "RouteIdentifier": "014", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4943892728, 45.5890557217 ], [ -122.4798570338, 45.5857517212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4376, "RouteIdentifier": "009", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1084072105, 47.9196070975 ], [ -122.1077045908, 47.9288634652 ], [ -122.100879718, 47.9337909869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4377, "RouteIdentifier": "240", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2461272383, 46.2409894234 ], [ -119.2352979381, 46.2341237242 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4378, "RouteIdentifier": "027", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0768183035, 46.9087074668 ], [ -117.0767523409, 46.9097212815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4379, "RouteIdentifier": "082", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4959893931, 46.9237521292 ], [ -120.430333448, 46.8881638576 ], [ -120.4212005019, 46.8724889781 ], [ -120.3996856862, 46.8614101436 ], [ -120.3929861408, 46.8503722268 ], [ -120.3829623596, 46.8459444194 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4380, "RouteIdentifier": "164", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2174597214, 47.2971248747 ], [ -122.1920375216, 47.2883683977 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4381, "RouteIdentifier": "101", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9287037815, 47.0601524957 ], [ -123.9302808397, 47.0618284552 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4382, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8991903157, 46.1440948709 ], [ -122.8982557871, 46.1444215752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4383, "RouteIdentifier": "101", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3644243308, 47.8948319873 ], [ -124.3806106649, 47.8957632885 ], [ -124.3925708525, 47.9077321088 ], [ -124.4096776218, 47.9282853343 ], [ -124.4017832625, 47.9345882869 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4384, "RouteIdentifier": "012", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3960419117, 47.002634929 ], [ -123.3912683196, 47.0040697768 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4385, "RouteIdentifier": "903", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.0006237988, 47.2257561758 ], [ -121.0029911997, 47.22593134 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4386, "RouteIdentifier": "509", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.434434259, 47.2999575945 ], [ -122.4342994903, 47.3048223444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4387, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6904593755, 46.9737613337 ], [ -123.6476283043, 46.9765640486 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4388, "RouteIdentifier": "112", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3463796883, 48.2675248649 ], [ -124.3064146166, 48.2617164172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4389, "RouteIdentifier": "097", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4366735302, 48.9489071813 ], [ -119.4441638638, 48.9563167486 ], [ -119.4508888194, 48.973570904 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4390, "RouteIdentifier": "503", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7415652617, 45.9061801375 ], [ -122.7425010819, 45.9056627104 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4391, "RouteIdentifier": "904", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6076139263, 47.472278094 ], [ -117.5967641772, 47.4763429271 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4392, "RouteIdentifier": "014", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.9810776369, 45.663863346 ], [ -120.9541625183, 45.6629024253 ], [ -120.9408254869, 45.6665296294 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4393, "RouteIdentifier": "021", "AADT": 270 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6639343919, 46.9743066653 ], [ -118.6636857174, 46.9998165576 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4394, "RouteIdentifier": "283", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6058982049, 47.2443593024 ], [ -119.6003280753, 47.2499775307 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4395, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0351635573, 47.0854260018 ], [ -118.8814721275, 47.0869161419 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4396, "RouteIdentifier": "104", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3736956575, 47.7951965131 ], [ -122.3700729113, 47.7924504549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4397, "RouteIdentifier": "536", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3364704335, 48.4212504751 ], [ -122.3361482633, 48.4175077145 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4398, "RouteIdentifier": "527", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2109843601, 47.8772104619 ], [ -122.2069786865, 47.8783103437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4399, "RouteIdentifier": "104", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.575679242, 47.8083982974 ], [ -122.5706924506, 47.8037291147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4400, "RouteIdentifier": "161", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2956838746, 46.9101470708 ], [ -122.2816151022, 46.9256466238 ], [ -122.2836719967, 46.935493017 ], [ -122.2806671696, 46.9400534634 ], [ -122.2972004015, 46.9531905355 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4401, "RouteIdentifier": "097", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9031806451, 48.0520592106 ], [ -119.899717106, 48.0550657238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4402, "RouteIdentifier": "509", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3339487259, 47.4475073103 ], [ -122.3289448539, 47.4433692551 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4403, "RouteIdentifier": "507", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7812799701, 46.8608150774 ], [ -122.7122024199, 46.8760779053 ], [ -122.7004740827, 46.8819430195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4404, "RouteIdentifier": "101", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9323014096, 47.6518739395 ], [ -122.9384879591, 47.6412968212 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4405, "RouteIdentifier": "821", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4557031883, 46.7526547977 ], [ -120.4528979621, 46.7612045639 ], [ -120.4557694597, 46.7658039465 ], [ -120.4481605409, 46.7713262375 ], [ -120.4538028284, 46.7790776556 ], [ -120.4504875687, 46.7884785604 ], [ -120.4624214807, 46.800526586 ], [ -120.4458862509, 46.8007720122 ], [ -120.4401392158, 46.8070933277 ], [ -120.4553319322, 46.8189351153 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4406, "RouteIdentifier": "525", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3921711474, 47.9866051994 ], [ -122.4022467347, 47.9970221327 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4407, "RouteIdentifier": "501COVANCVR", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704405811, 45.6318535726 ], [ -122.6693837427, 45.6318469625 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4408, "RouteIdentifier": "005", "AADT": 151000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5362836535, 47.1307921694 ], [ -122.5294843284, 47.134748182 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4409, "RouteIdentifier": "705", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4330740998, 47.2403048183 ], [ -122.4345227013, 47.2433241411 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4410, "RouteIdentifier": "082", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4720339463, 46.5745548829 ], [ -120.4722493593, 46.5674944544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4411, "RouteIdentifier": "097AR", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0023636712, 47.8395520304 ], [ -119.9981202664, 47.8393603968 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4412, "RouteIdentifier": "101", "AADT": 25000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.09520306, 47.1066616235 ], [ -123.0867809993, 47.0992170671 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4413, "RouteIdentifier": "167", "AADT": 37000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2178365864, 47.4708583363 ], [ -122.217721755, 47.4720497684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4414, "RouteIdentifier": "099", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3472698982, 47.6642399557 ], [ -122.3472570211, 47.6739649907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4415, "RouteIdentifier": "516", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2306881417, 47.3778354946 ], [ -122.2310615854, 47.3798227122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4416, "RouteIdentifier": "195", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3800291539, 47.1741955658 ], [ -117.3584633908, 47.2145021441 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4417, "RouteIdentifier": "023", "AADT": 600 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.354064457, 47.0058824451 ], [ -117.3964147136, 47.0053152401 ], [ -117.4162303684, 47.0005004291 ], [ -117.4435778528, 47.0027701026 ], [ -117.4671998581, 47.0097954879 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4418, "RouteIdentifier": "526", "AADT": 68000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2510997896, 47.9232511801 ], [ -122.2328875048, 47.9233521925 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4419, "RouteIdentifier": "411", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9035782953, 46.2838610024 ], [ -122.9030769375, 46.2842542837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4420, "RouteIdentifier": "529", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.19102137, 47.9790612199 ], [ -122.1909967909, 47.9804242172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4421, "RouteIdentifier": "101", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9182389975, 47.1855844879 ], [ -123.9532395545, 47.1976220274 ], [ -123.969523937, 47.2214727186 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4422, "RouteIdentifier": "155", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9780832374, 48.1620197263 ], [ -118.9793695341, 48.1656172167 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4423, "RouteIdentifier": "505", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8432117884, 46.4565616045 ], [ -122.84688053, 46.4446581265 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4424, "RouteIdentifier": "101", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0053179052, 46.3309294575 ], [ -123.9777350926, 46.3323489831 ], [ -123.9591582091, 46.3481677178 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4425, "RouteIdentifier": "260", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9752267156, 46.6637302723 ], [ -118.8894036808, 46.6634446901 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4426, "RouteIdentifier": "129", "AADT": 6100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0559008398, 46.3750297198 ], [ -117.0517810734, 46.3795878122 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4427, "RouteIdentifier": "112", "AADT": 5300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5537509538, 48.0996615302 ], [ -123.5398960568, 48.0974797421 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4428, "RouteIdentifier": "525", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3040566842, 47.947165397 ], [ -122.3011185084, 47.9488440128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4429, "RouteIdentifier": "308", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6289258671, 47.6987018227 ], [ -122.6226857238, 47.702539463 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4430, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0122863976, 46.8024280456 ], [ -123.007921493, 46.8026940324 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4431, "RouteIdentifier": "016", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.642332524, 47.4978831795 ], [ -122.6498450788, 47.5081639767 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4432, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3500487942, 47.7980256738 ], [ -117.3489538413, 47.8018716143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4433, "RouteIdentifier": "016SPGORST", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6971089618, 47.524879573 ], [ -122.6996522214, 47.5252936288 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4434, "RouteIdentifier": "024", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.189779697, 46.7381439938 ], [ -119.1773608192, 46.7412901614 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4435, "RouteIdentifier": "005", "AADT": 63000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2649177077, 48.2647143139 ], [ -122.2746840212, 48.2730370256 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4436, "RouteIdentifier": "516", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1892028116, 47.3678526781 ], [ -122.1811585184, 47.3649772586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4437, "RouteIdentifier": "410", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0430468348, 47.1585051205 ], [ -122.036347956, 47.1580428725 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4438, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3555721402, 47.978279434 ], [ -122.3561926794, 47.9788192594 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4439, "RouteIdentifier": "512", "AADT": 96000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2848476708, 47.1815733492 ], [ -122.2828899445, 47.1858920985 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4440, "RouteIdentifier": "405", "AADT": 190000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1862318775, 47.6058898709 ], [ -122.1885119703, 47.6116238629 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4441, "RouteIdentifier": "162", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2293785955, 47.1902878983 ], [ -122.2293212399, 47.1843499681 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4442, "RouteIdentifier": "166", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6269725806, 47.5417504284 ], [ -122.6274333676, 47.5344924995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4443, "RouteIdentifier": "167", "AADT": 86000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254118291, 47.2998428644 ], [ -122.2470734178, 47.3105055416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4444, "RouteIdentifier": "121", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9078901312, 46.9418030245 ], [ -122.9078782799, 46.9473039393 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4445, "RouteIdentifier": "014", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.4677352564, 45.7152835978 ], [ -121.4664701671, 45.7148037075 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4446, "RouteIdentifier": "025", "AADT": 230 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8035781755, 48.9610755132 ], [ -117.8260454275, 48.9825544193 ], [ -117.8316760948, 49.0005187362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4447, "RouteIdentifier": "025", "AADT": 660 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1708437963, 48.4288296254 ], [ -118.1721144093, 48.4502822246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4448, "RouteIdentifier": "097", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4360006417, 48.7109840533 ], [ -119.4060187455, 48.7641667069 ], [ -119.3995222327, 48.7939812329 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4449, "RouteIdentifier": "509", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3903629125, 47.3216340622 ], [ -122.3708239951, 47.3286992032 ], [ -122.3654780308, 47.3194849976 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4450, "RouteIdentifier": "004", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3840920127, 46.2062528444 ], [ -123.3821019742, 46.204770148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4451, "RouteIdentifier": "104", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5840564696, 47.8521537918 ], [ -122.5873849699, 47.8401132773 ], [ -122.5836844979, 47.8135870398 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4452, "RouteIdentifier": "002", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8141165471, 47.7731482573 ], [ -120.7878973606, 47.7642158415 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4453, "RouteIdentifier": "546", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407449955, 48.9640230526 ], [ -122.352240221, 48.9636327884 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4454, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1857562885, 48.1523511436 ], [ -122.1829723721, 48.1524164911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4455, "RouteIdentifier": "002", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0747632734, 47.641906708 ], [ -120.0714795546, 47.648195998 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4456, "RouteIdentifier": "155", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0177040011, 47.9367931061 ], [ -119.0105057584, 47.9398197883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4457, "RouteIdentifier": "014", "AADT": 4600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3829577285, 45.705115008 ], [ -121.3759162286, 45.7092484545 ], [ -121.3443236712, 45.7108946405 ], [ -121.3062630807, 45.7050166524 ], [ -121.2904509822, 45.6962586457 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4458, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5318979045, 45.6826849971 ], [ -122.5077498431, 45.6840205721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4459, "RouteIdentifier": "195", "AADT": 5700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0874842611, 46.5393952983 ], [ -117.0892586477, 46.5431821646 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4460, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2929510336, 47.905080688 ], [ -122.2933970337, 47.9108132967 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4461, "RouteIdentifier": "020", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2839019256, 48.3051822196 ], [ -117.2577905977, 48.2662465526 ], [ -117.2411593235, 48.2498304367 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4462, "RouteIdentifier": "221", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7426319216, 46.20699312 ], [ -119.7486010675, 46.2060790676 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4463, "RouteIdentifier": "395", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.084694014, 46.2595150494 ], [ -119.0867515262, 46.2655755624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4464, "RouteIdentifier": "005", "AADT": 123000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2102027734, 47.9096841492 ], [ -122.2019957815, 47.9271375522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4465, "RouteIdentifier": "004", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9811418748, 46.1544576439 ], [ -122.974844153, 46.1513553719 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4466, "RouteIdentifier": "082", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4759788061, 46.681083667 ], [ -120.4871781519, 46.6713847636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4467, "RouteIdentifier": "513", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2710615487, 47.6700439942 ], [ -122.2699380817, 47.6708379539 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4468, "RouteIdentifier": "150", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0474672026, 47.8548480152 ], [ -120.0356242216, 47.8496165293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4469, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897117864, 47.2283165519 ], [ -121.9897674878, 47.2427944952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4470, "RouteIdentifier": "020", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2257076367, 48.5104740686 ], [ -122.2104399855, 48.5159581466 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4471, "RouteIdentifier": "395", "AADT": 9900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5663025103, 47.9938759436 ], [ -117.6038139756, 48.0324402361 ], [ -117.606047775, 48.0433540517 ], [ -117.6160740909, 48.0543832543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4472, "RouteIdentifier": "090", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9423990512, 47.5302140606 ], [ -121.9356420479, 47.5224107728 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4473, "RouteIdentifier": "902", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6903245553, 47.5619414589 ], [ -117.6837381984, 47.566162133 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4474, "RouteIdentifier": "003", "AADT": 51000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6774101021, 47.5636481361 ], [ -122.6811544626, 47.5662461986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4475, "RouteIdentifier": "509", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3349746441, 47.5375233364 ], [ -122.3350027439, 47.5378934087 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4476, "RouteIdentifier": "172", "AADT": 140 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3841243851, 47.8153402952 ], [ -119.3626574045, 47.8153679549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4477, "RouteIdentifier": "022", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3142184025, 46.4146304102 ], [ -120.3146069423, 46.4038122596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4478, "RouteIdentifier": "004", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7157590122, 46.3489750762 ], [ -123.7059505973, 46.3368666444 ], [ -123.694991834, 46.3327351476 ], [ -123.6898715896, 46.3183120371 ], [ -123.6592989856, 46.3330689844 ], [ -123.6405403984, 46.3349412244 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4479, "RouteIdentifier": "538", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3079784055, 48.4355954608 ], [ -122.2961576193, 48.435565171 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4480, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0574168065, 46.4199273309 ], [ -117.0468945815, 46.4199295935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4481, "RouteIdentifier": "161", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2947362877, 47.2575680773 ], [ -122.2979467991, 47.2619638744 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4482, "RouteIdentifier": "530", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9882608553, 48.2735411001 ], [ -121.9610038225, 48.2684611163 ], [ -121.9318997964, 48.2706730135 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4483, "RouteIdentifier": "101", "AADT": 33000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.40157192, 48.1066836471 ], [ -123.3978963103, 48.1061923633 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4484, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5160199943, 47.3953842075 ], [ -121.4905907506, 47.3968832449 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4485, "RouteIdentifier": "002CONEWPRT", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0439333142, 48.1840295652 ], [ -117.0441181005, 48.1780553435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4486, "RouteIdentifier": "002", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1576684527, 47.6540467209 ], [ -118.1565942739, 47.6540477597 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4487, "RouteIdentifier": "005", "AADT": 53000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8992668381, 46.1802918975 ], [ -122.8950160535, 46.1910097955 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4488, "RouteIdentifier": "161", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2937941925, 47.0829397886 ], [ -122.2935392549, 47.0986145276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4489, "RouteIdentifier": "026", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6413017681, 46.8104615568 ], [ -117.593064935, 46.8132659409 ], [ -117.5586417087, 46.8037170574 ], [ -117.5379557025, 46.8086463059 ], [ -117.52930964, 46.8231348395 ], [ -117.5178051863, 46.8292156508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4490, "RouteIdentifier": "285COWENTCH", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3248875214, 47.4382457109 ], [ -120.3245445805, 47.4367115543 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4491, "RouteIdentifier": "005", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3424452974, 48.4769135735 ], [ -122.3416041033, 48.4806846506 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4492, "RouteIdentifier": "005", "AADT": 72000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6645970993, 45.6715670557 ], [ -122.6645242594, 45.6843405722 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4493, "RouteIdentifier": "150", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1295906216, 47.8811242831 ], [ -120.1084617824, 47.8738712824 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4494, "RouteIdentifier": "002", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112745852, 47.6530477533 ], [ -117.4111435799, 47.6590755437 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4495, "RouteIdentifier": "522", "AADT": 34000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2436783372, 47.757435704 ], [ -122.2135261083, 47.7504974579 ], [ -122.2093581645, 47.7588250331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4496, "RouteIdentifier": "410", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1441855248, 47.1674591072 ], [ -122.1171685745, 47.1658351362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4497, "RouteIdentifier": "902", "AADT": 2500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7040622718, 47.5520049051 ], [ -117.6903245553, 47.5619414589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4498, "RouteIdentifier": "026", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.75567632, 46.7921007504 ], [ -118.7472041173, 46.7900290895 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4499, "RouteIdentifier": "272", "AADT": 520 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0875131805, 46.9125608238 ], [ -117.083074089, 46.9114449779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4500, "RouteIdentifier": "101", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4036573523, 47.9700998663 ], [ -124.4027159358, 47.9795700328 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4501, "RouteIdentifier": "503SPCOUGAR", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3649925149, 45.9971019257 ], [ -122.3547293908, 46.000879137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4502, "RouteIdentifier": "162", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0993240354, 47.1390009974 ], [ -122.0947304936, 47.139868914 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4503, "RouteIdentifier": "022", "AADT": 7500 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7476202885, 46.2140157031 ], [ -119.7431160592, 46.21487318 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4504, "RouteIdentifier": "164", "AADT": 9400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9888740579, 47.2031602024 ], [ -121.9876439189, 47.202569875 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4505, "RouteIdentifier": "005", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9277931611, 46.6221965746 ], [ -122.9414768713, 46.633570246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4506, "RouteIdentifier": "017", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.337592942, 47.1824916579 ], [ -119.3489993938, 47.189958653 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4507, "RouteIdentifier": "020", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0454478886, 48.1840423049 ], [ -117.0439333142, 48.1840295652 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4508, "RouteIdentifier": "002", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3692193944, 47.4758683659 ], [ -120.3461737894, 47.4701826048 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4509, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4083499421, 47.2391797955 ], [ -122.4000472078, 47.2402668908 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4510, "RouteIdentifier": "516", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3004124588, 47.3957738513 ], [ -122.2985045151, 47.39547624 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4511, "RouteIdentifier": "172", "AADT": 380 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8134933014, 47.7033989052 ], [ -119.8130784885, 47.8092766362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4512, "RouteIdentifier": "009", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1093210645, 47.8989017492 ], [ -122.1084072105, 47.9196070975 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4513, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8766472391, 46.1027391181 ], [ -122.8834047537, 46.113522401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4514, "RouteIdentifier": "500", "AADT": 2800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3857916688, 45.5806082164 ], [ -122.3855374224, 45.5797321231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4515, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6861432864, 48.2123143699 ], [ -122.6931398543, 48.2123094716 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4516, "RouteIdentifier": "195", "AADT": 9300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3650011171, 46.8751003196 ], [ -117.3649675878, 46.8759309573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4517, "RouteIdentifier": "110", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.5344288985, 47.9127912202 ], [ -124.5432499372, 47.9032589462 ], [ -124.5843571045, 47.8989411015 ], [ -124.5896096738, 47.8935749777 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4518, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3133639391, 47.4952529972 ], [ -120.3051164258, 47.5266969435 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4519, "RouteIdentifier": "160", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5298400174, 47.5049019302 ], [ -122.5243096729, 47.5048277184 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4520, "RouteIdentifier": "291", "AADT": 1800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.641565621, 47.8531276258 ], [ -117.645634686, 47.8601052658 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4521, "RouteIdentifier": "548", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7263837289, 48.8921522797 ], [ -122.7266598296, 48.9068699571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4522, "RouteIdentifier": "023", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9722788914, 47.3073278653 ], [ -117.9726679277, 47.3094719647 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4523, "RouteIdentifier": "530", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6743723204, 48.2692255901 ], [ -121.6500900855, 48.2728153124 ], [ -121.6360735698, 48.2637676424 ], [ -121.6087560562, 48.2553398746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4524, "RouteIdentifier": "162", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.127858372, 47.1309639391 ], [ -122.0993240354, 47.1390009974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4525, "RouteIdentifier": "002", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.707944478, 47.7591802313 ], [ -118.7015013824, 47.7577620281 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4526, "RouteIdentifier": "090", "AADT": 110000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0890281054, 47.5593389769 ], [ -122.0695554806, 47.5516320142 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4527, "RouteIdentifier": "014", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.7967192306, 45.7024032011 ], [ -120.7833426983, 45.7091771574 ], [ -120.7319438816, 45.7170108114 ], [ -120.7221536232, 45.7293069774 ], [ -120.6517779943, 45.7521047655 ], [ -120.6135360378, 45.7563909158 ], [ -120.5610451158, 45.7497909585 ], [ -120.5332228068, 45.7346091661 ], [ -120.5114600933, 45.7166372424 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4528, "RouteIdentifier": "181", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2494308353, 47.4122081687 ], [ -122.2487949553, 47.4322754113 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4529, "RouteIdentifier": "028", "AADT": 9200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8966827506, 47.2327403563 ], [ -119.8747183109, 47.2330604599 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4530, "RouteIdentifier": "395", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9122497826, 48.5496184382 ], [ -117.9203722024, 48.5548430412 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4531, "RouteIdentifier": "195", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3846465219, 47.4488701305 ], [ -117.3998174003, 47.4705479987 ], [ -117.3997755612, 47.5144285359 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4532, "RouteIdentifier": "524", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1378345116, 47.804839361 ], [ -122.1137494257, 47.8050106332 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4533, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6378671733, 46.2418590791 ], [ -119.6231476737, 46.2473883891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4534, "RouteIdentifier": "432", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9708431325, 46.1276076543 ], [ -122.9627838072, 46.122637066 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4535, "RouteIdentifier": "395SPNSC", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3591982992, 47.7502754755 ], [ -117.3658073843, 47.7605601689 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4536, "RouteIdentifier": "099", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.339393127, 47.5668492127 ], [ -122.3393652388, 47.5748709959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4537, "RouteIdentifier": "107", "AADT": 4300 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6041613497, 46.9661133917 ], [ -123.6009036248, 46.9747491231 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4538, "RouteIdentifier": "041", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0395862835, 48.1810552137 ], [ -117.039658043, 48.1780212144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4539, "RouteIdentifier": "101", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.4027159358, 47.9795700328 ], [ -124.3923505431, 47.9892462948 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4540, "RouteIdentifier": "027", "AADT": 800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.146111612, 47.067878035 ], [ -117.1661035805, 47.0934677871 ], [ -117.1829751603, 47.1048097168 ], [ -117.2006505617, 47.1259714675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4541, "RouteIdentifier": "128", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0693320216, 46.4212282179 ], [ -117.0739785142, 46.426337746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4542, "RouteIdentifier": "519", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3288909545, 47.5903087916 ], [ -122.329127007, 47.5903078499 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4543, "RouteIdentifier": "167", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3082844841, 47.2024103912 ], [ -122.2984249952, 47.1999364331 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4544, "RouteIdentifier": "103", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0337063992, 46.4929517328 ], [ -124.0332571479, 46.5053645236 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4545, "RouteIdentifier": "099", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2948243841, 47.4982893333 ], [ -122.2981196901, 47.5020226852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4546, "RouteIdentifier": "090", "AADT": 49000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4957532497, 47.6240627613 ], [ -117.4685078514, 47.6390299187 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4547, "RouteIdentifier": "410", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9032240437, 47.1642334315 ], [ -121.8720051785, 47.1614029692 ], [ -121.8491037107, 47.15273018 ], [ -121.8248002007, 47.1594263485 ], [ -121.7896956437, 47.1776620458 ], [ -121.7241753305, 47.1569952423 ], [ -121.6890804036, 47.1533532154 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4548, "RouteIdentifier": "163", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5158418422, 47.2671438187 ], [ -122.5158979379, 47.271095951 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4549, "RouteIdentifier": "005", "AADT": 76000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3410260439, 48.4420756317 ], [ -122.3411431465, 48.4469767522 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4550, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2958516184, 47.4404648377 ], [ -122.2961885635, 47.4452613117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4551, "RouteIdentifier": "019", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7888286163, 48.0414353719 ], [ -122.7936594895, 48.0437626987 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4552, "RouteIdentifier": "397", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0820864503, 46.2486605032 ], [ -119.082542582, 46.2513545129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4553, "RouteIdentifier": "526", "AADT": 56000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.270222134, 47.9220918299 ], [ -122.2635417231, 47.9221791593 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4554, "RouteIdentifier": "090", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7916752446, 47.4832690795 ], [ -121.7812157741, 47.4740748071 ], [ -121.7651585878, 47.4732140567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4555, "RouteIdentifier": "024", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1773608192, 46.7412901614 ], [ -119.1764209525, 46.7675625649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4556, "RouteIdentifier": "101", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8857715571, 46.9892213843 ], [ -123.8857699354, 46.9900928031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4557, "RouteIdentifier": "004", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6093516169, 46.3560125261 ], [ -123.5796596528, 46.3569722482 ], [ -123.5716587538, 46.3606344951 ], [ -123.5279784869, 46.3476726817 ], [ -123.4985989794, 46.3468225811 ], [ -123.4940632677, 46.3246853921 ], [ -123.4668950282, 46.295217675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4558, "RouteIdentifier": "260", "AADT": 1000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.8524014486, 46.6510749802 ], [ -118.8511888124, 46.6508402423 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4559, "RouteIdentifier": "174", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.007361139, 47.9433157516 ], [ -119.0106509547, 47.9393125368 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4560, "RouteIdentifier": "507", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6065410768, 46.9419413133 ], [ -122.6057120793, 46.9414897752 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4561, "RouteIdentifier": "160", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5927942323, 47.5049278803 ], [ -122.5510696792, 47.5051569339 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4562, "RouteIdentifier": "169", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9897674878, 47.2427944952 ], [ -121.9855912992, 47.2608703461 ], [ -121.993396961, 47.2701490347 ], [ -121.9893553049, 47.2856086782 ], [ -121.9987441084, 47.2949136689 ], [ -122.002777857, 47.3067016972 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4563, "RouteIdentifier": "224", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4719132383, 46.252522673 ], [ -119.4711841566, 46.2575715157 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4564, "RouteIdentifier": "012", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.5933186815, 46.9783764391 ], [ -123.481658804, 46.9993368592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4565, "RouteIdentifier": "515", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.197055607, 47.4196716079 ], [ -122.1970611649, 47.4220162124 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4566, "RouteIdentifier": "100", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0433848336, 46.3088545203 ], [ -124.0447225968, 46.3088719536 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4567, "RouteIdentifier": "025", "AADT": 580 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2476233983, 48.0127941378 ], [ -118.2370390967, 48.0181683325 ], [ -118.2214889113, 48.0495658171 ], [ -118.2229361425, 48.0536372397 ], [ -118.1970382045, 48.0730473236 ], [ -118.2047001305, 48.088017503 ], [ -118.201271985, 48.0979999523 ], [ -118.2040162741, 48.1089461065 ], [ -118.200662958, 48.1160236535 ], [ -118.192017662, 48.1178376661 ], [ -118.202303033, 48.1171744248 ], [ -118.2090938982, 48.1247874877 ], [ -118.2017532025, 48.1348019428 ], [ -118.1667978159, 48.1559458942 ], [ -118.1710111219, 48.1632157542 ], [ -118.1677592146, 48.1778167061 ], [ -118.1719498116, 48.1908780528 ], [ -118.1700073083, 48.1986778218 ], [ -118.1799617419, 48.2055463123 ], [ -118.1754317167, 48.2178911392 ], [ -118.1569623818, 48.2283942399 ], [ -118.1354121563, 48.2515691219 ], [ -118.1314821032, 48.2619991359 ], [ -118.1360883381, 48.2791408008 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4568, "RouteIdentifier": "012", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7381959686, 46.9710907007 ], [ -123.6904593755, 46.9737613337 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4569, "RouteIdentifier": "018", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2274240044, 47.30291529 ], [ -122.2193270337, 47.30338806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4570, "RouteIdentifier": "243", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9378634013, 46.8432344905 ], [ -119.9417957659, 46.8489960363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4571, "RouteIdentifier": "531", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2815700733, 48.1364858296 ], [ -122.2814765504, 48.1399591811 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4572, "RouteIdentifier": "097AR", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0272288264, 47.8361946595 ], [ -120.0250689519, 47.8360845439 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4573, "RouteIdentifier": "527", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2148947405, 47.8742828444 ], [ -122.2109843601, 47.8772104619 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4574, "RouteIdentifier": "097", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8169355081, 45.795557156 ], [ -120.8072496646, 45.8123784315 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4575, "RouteIdentifier": "009", "AADT": 30000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1434306209, 47.804831104 ], [ -122.1400802554, 47.8145116129 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4576, "RouteIdentifier": "112", "AADT": 820 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1568931216, 48.1895403281 ], [ -124.1366332936, 48.1896932833 ], [ -124.1191842401, 48.1973336885 ], [ -124.1119721489, 48.1930568586 ], [ -124.099026134, 48.1963808527 ], [ -124.0654490759, 48.1842032056 ], [ -124.067003423, 48.179499668 ], [ -124.0625034827, 48.1822719075 ], [ -124.0609965475, 48.1744746566 ], [ -124.0071237943, 48.1712466081 ], [ -123.9983013856, 48.1629502571 ], [ -123.9913474, 48.1650020278 ], [ -123.960699734, 48.1599293665 ], [ -123.9544082731, 48.1651293696 ], [ -123.9450001967, 48.1636797033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4577, "RouteIdentifier": "410", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.016253916, 47.1784207654 ], [ -121.9946857537, 47.1974841035 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4578, "RouteIdentifier": "020", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2441256362, 48.5062952131 ], [ -122.2437055114, 48.507550046 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4579, "RouteIdentifier": "525", "AADT": 9700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4022467347, 47.9970221327 ], [ -122.4150175631, 48.0010609611 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4580, "RouteIdentifier": "160", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5104823423, 47.5048487373 ], [ -122.5035093915, 47.505998994 ], [ -122.5010531946, 47.5121479033 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4581, "RouteIdentifier": "005", "AADT": 47000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4736865914, 48.7254915984 ], [ -122.4674230818, 48.7381587883 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4582, "RouteIdentifier": "082", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8696023471, 46.2515208776 ], [ -119.8182520318, 46.2379730535 ], [ -119.7975638125, 46.2245562959 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4583, "RouteIdentifier": "542", "AADT": 320 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6754402986, 48.8651910486 ], [ -121.6783150365, 48.8665390524 ], [ -121.6799490243, 48.8623665546 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4584, "RouteIdentifier": "020", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0782317267, 48.3464626059 ], [ -120.0545756911, 48.3445792629 ], [ -120.0431258874, 48.3481890608 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4585, "RouteIdentifier": "503", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5034799431, 45.9983583464 ], [ -122.5258480464, 45.9932136954 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4586, "RouteIdentifier": "105", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7477462633, 46.6933741544 ], [ -123.7523543573, 46.686064117 ], [ -123.7680296972, 46.6803622831 ], [ -123.7755784334, 46.6820267252 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4587, "RouteIdentifier": "101", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.2505086155, 47.804211862 ], [ -124.2505172054, 47.8109376742 ], [ -124.2580730119, 47.8098225751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4588, "RouteIdentifier": "101", "AADT": 7100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9230833697, 46.2536596942 ], [ -123.9486490068, 46.2763382177 ], [ -123.9684991984, 46.3063276073 ], [ -124.0020006548, 46.3205770833 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4589, "RouteIdentifier": "105SPWESTPT", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.104302567, 46.8959740416 ], [ -124.108797736, 46.9022648982 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4590, "RouteIdentifier": "012", "AADT": 6600 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5899764941, 46.522559419 ], [ -122.5775403152, 46.5133343443 ], [ -122.5624407348, 46.517004806 ], [ -122.550440133, 46.5344542826 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4591, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8408960953, 46.4378300484 ], [ -122.8360736283, 46.4372194695 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4592, "RouteIdentifier": "205", "AADT": 54000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6538586045, 45.7228492671 ], [ -122.6539986238, 45.7231498065 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4593, "RouteIdentifier": "109", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1701797505, 47.1175620554 ], [ -124.1774711517, 47.126216089 ], [ -124.1826998409, 47.1546474521 ], [ -124.1877734935, 47.1568704766 ], [ -124.192508816, 47.1667261776 ], [ -124.1884261401, 47.1715589354 ], [ -124.1943335755, 47.1777040428 ], [ -124.1872853992, 47.1802398968 ], [ -124.1970883653, 47.1823629315 ], [ -124.1977866952, 47.2037633126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4594, "RouteIdentifier": "018", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1774995641, 47.3024217933 ], [ -122.1583977367, 47.3298300754 ], [ -122.1475130648, 47.3390747692 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4595, "RouteIdentifier": "103", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.050056982, 46.4906407097 ], [ -124.0338926368, 46.4915291514 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4596, "RouteIdentifier": "525", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2799690003, 47.8826891954 ], [ -122.2849614715, 47.889952125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4597, "RouteIdentifier": "302", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8203461375, 47.4070484463 ], [ -122.8153357809, 47.4049429252 ], [ -122.8113444229, 47.3926501334 ], [ -122.8159977791, 47.3779028227 ], [ -122.8058112478, 47.3601334979 ], [ -122.7907640195, 47.3624582676 ], [ -122.7783007191, 47.374504504 ], [ -122.7727867254, 47.3724749266 ], [ -122.771733287, 47.3675849633 ], [ -122.7640925019, 47.3690425701 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4598, "RouteIdentifier": "104", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3832242727, 47.8097517091 ], [ -122.3831772587, 47.8031153818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4599, "RouteIdentifier": "524", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1921188204, 47.8129694111 ], [ -122.1799369192, 47.8125762494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4600, "RouteIdentifier": "101", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8135123607, 46.9752656303 ], [ -123.8143955605, 46.9760348973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4601, "RouteIdentifier": "202", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9532472828, 47.5883720957 ], [ -121.9327980228, 47.5785984862 ], [ -121.9049232747, 47.5724947503 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4602, "RouteIdentifier": "526", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3001742723, 47.9219962025 ], [ -122.2931738148, 47.9220879011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4603, "RouteIdentifier": "395", "AADT": 8700 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4024404199, 47.7757947974 ], [ -117.4020716363, 47.7805975201 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4604, "RouteIdentifier": "082", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8846884522, 46.2587169246 ], [ -119.8696023471, 46.2515208776 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4605, "RouteIdentifier": "002", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4112427568, 47.6526173898 ], [ -117.4112745852, 47.6530477533 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4606, "RouteIdentifier": "304", "AADT": 9100 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6304436393, 47.5650259077 ], [ -122.629614867, 47.5650234096 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4607, "RouteIdentifier": "104", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3245572303, 47.7776430656 ], [ -122.3137091087, 47.7773380757 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4608, "RouteIdentifier": "012", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2736672441, 46.0850299125 ], [ -118.2672424979, 46.0864775034 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4609, "RouteIdentifier": "017", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6565631198, 47.9990210152 ], [ -119.6525696935, 48.0041955683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4610, "RouteIdentifier": "101", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.542425415, 48.0963861688 ], [ -123.5396953537, 48.0975545684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4611, "RouteIdentifier": "012", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6947545489, 46.7266771426 ], [ -120.6682357978, 46.7114791155 ], [ -120.6535718414, 46.6949663919 ], [ -120.6511837992, 46.682767821 ], [ -120.6206863347, 46.6605003365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4612, "RouteIdentifier": "017", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.3595018472, 47.6413739111 ], [ -119.3541224664, 47.6543643378 ], [ -119.3628837429, 47.6709101104 ], [ -119.3626574045, 47.8153679549 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4613, "RouteIdentifier": "509", "AADT": 4500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3654780308, 47.3194849976 ], [ -122.3605429103, 47.3207278571 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4614, "RouteIdentifier": "510", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6694499846, 47.0015817743 ], [ -122.6553305469, 46.9933014974 ], [ -122.6470692004, 46.9763124318 ], [ -122.6325310381, 46.9646197548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4615, "RouteIdentifier": "017", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1342855473, 46.7970731587 ], [ -119.1343129277, 46.818765882 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4616, "RouteIdentifier": "240", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.139733927, 46.2168054788 ], [ -119.1380609673, 46.216909794 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4617, "RouteIdentifier": "308", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6546046376, 47.70607599 ], [ -122.6455230644, 47.699437756 ], [ -122.6289258671, 47.6987018227 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4618, "RouteIdentifier": "012", "AADT": 8300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7197711644, 46.5320488595 ], [ -122.6442388387, 46.5318795567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4619, "RouteIdentifier": "530", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2014846937, 48.1878947696 ], [ -122.1921631348, 48.1882508645 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4620, "RouteIdentifier": "405", "AADT": 158000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1889808432, 47.7236094662 ], [ -122.1871980092, 47.7384984553 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4621, "RouteIdentifier": "503", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7402748344, 45.9071079053 ], [ -122.7415652617, 45.9061801375 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4622, "RouteIdentifier": "523", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3451133369, 47.7341530585 ], [ -122.3423037081, 47.7341359849 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4623, "RouteIdentifier": "167", "AADT": 131000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2445299041, 47.3611482288 ], [ -122.2439880813, 47.3740667238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4624, "RouteIdentifier": "005HI15420", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2633967769, 47.4587012142 ], [ -122.2670557408, 47.4665917564 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4625, "RouteIdentifier": "005", "AADT": 176000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4616630283, 47.2001928833 ], [ -122.462495706, 47.2142916788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4626, "RouteIdentifier": "509", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3277374047, 47.4792708197 ], [ -122.3272024219, 47.4854072542 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4627, "RouteIdentifier": "101", "AADT": 3800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8784338391, 47.8213945565 ], [ -122.8867284289, 47.8204635395 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4628, "RouteIdentifier": "194", "AADT": 360 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4672879853, 46.7034528115 ], [ -117.4648072806, 46.7209769351 ], [ -117.4712118709, 46.7125945025 ], [ -117.4792740728, 46.7112771519 ], [ -117.4877195547, 46.7310206754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4629, "RouteIdentifier": "104", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3700729113, 47.7924504549 ], [ -122.3667991767, 47.790544377 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4630, "RouteIdentifier": "019", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7338240699, 47.9543732544 ], [ -122.7387409377, 47.9595773681 ], [ -122.7406674139, 47.9788642723 ], [ -122.7484287352, 47.9946458229 ], [ -122.7585868562, 48.0067586832 ], [ -122.7686405015, 48.0112283115 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4631, "RouteIdentifier": "026", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6021851057, 46.8903722209 ], [ -119.5806705958, 46.8856606496 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4632, "RouteIdentifier": "005", "AADT": 45000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8803797924, 46.4829246021 ], [ -122.87656073, 46.494718014 ], [ -122.8765100174, 46.5439285548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4633, "RouteIdentifier": "410", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1591468798, 47.1688389452 ], [ -122.1485727781, 47.1677245225 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4634, "RouteIdentifier": "503", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5115938422, 45.8889120074 ], [ -122.5018126834, 45.8933986585 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4635, "RouteIdentifier": "017", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0040609275, 46.5740844587 ], [ -119.0017412812, 46.5851433384 ], [ -119.0063294763, 46.5974626974 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4636, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.877036547, 47.4475535195 ], [ -123.8797547045, 47.4557845081 ], [ -123.8856775734, 47.4568668079 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4637, "RouteIdentifier": "127", "AADT": 950 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.7891868451, 46.5254691689 ], [ -117.7762087351, 46.5365465696 ], [ -117.774915493, 46.5482610417 ], [ -117.7695236781, 46.5563503655 ], [ -117.7807630648, 46.5681984198 ], [ -117.7751352134, 46.580586403 ], [ -117.7852894412, 46.5874957373 ], [ -117.781376055, 46.592409526 ], [ -117.7913837991, 46.6144419053 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4638, "RouteIdentifier": "900", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2525911983, 47.4840343924 ], [ -122.2490284682, 47.4830589416 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4639, "RouteIdentifier": "395", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9008434138, 48.4812158123 ], [ -117.9030142887, 48.4912950401 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4640, "RouteIdentifier": "525", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.263270535, 47.832397759 ], [ -122.2663139585, 47.8342508992 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4641, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9063657838, 46.1800997708 ], [ -122.9051023405, 46.1847118489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4642, "RouteIdentifier": "005", "AADT": 157000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4630590407, 47.1874722949 ], [ -122.4620882803, 47.1970495358 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4643, "RouteIdentifier": "004", "AADT": 3000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3544482975, 46.1872368309 ], [ -123.3284135658, 46.1638323685 ], [ -123.2823984896, 46.1526498853 ], [ -123.2628134616, 46.1553986607 ], [ -123.2326272804, 46.1727272565 ], [ -123.1771557033, 46.1884708528 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4644, "RouteIdentifier": "009", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1187528092, 48.1643133094 ], [ -122.1285623751, 48.1783060226 ], [ -122.1285221878, 48.1877057823 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4645, "RouteIdentifier": "243", "AADT": 4100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7363030997, 46.6466193959 ], [ -119.8006316104, 46.633273275 ], [ -119.8505806667, 46.6339001593 ], [ -119.8948432937, 46.6642061796 ], [ -119.9070616699, 46.6806375323 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4646, "RouteIdentifier": "395", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.17625049, 46.1849328401 ], [ -119.1670085036, 46.1917196627 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4647, "RouteIdentifier": "109", "AADT": 6400 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0381349997, 47.0457147607 ], [ -124.0440853494, 47.0525732949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4648, "RouteIdentifier": "002", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7091478999, 47.7594544328 ], [ -118.707944478, 47.7591802313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4649, "RouteIdentifier": "012", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6160035758, 46.6478940682 ], [ -121.6109588785, 46.6497792928 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4650, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7350857122, 47.8671728801 ], [ -121.7199344676, 47.8658767679 ], [ -121.7022061254, 47.8572690469 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4651, "RouteIdentifier": "017", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.483234393, 47.3893726474 ], [ -119.4842297169, 47.3934848684 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4652, "RouteIdentifier": "531", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1937378718, 48.1522064888 ], [ -122.1872561406, 48.1523209798 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4653, "RouteIdentifier": "006", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7038991686, 46.6750455817 ], [ -123.6950836877, 46.6690700815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4654, "RouteIdentifier": "303", "AADT": 39000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6555581763, 47.650535837 ], [ -122.6676311053, 47.6547183962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4655, "RouteIdentifier": "005", "AADT": 186000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2598462586, 47.83972786 ], [ -122.2583869574, 47.8454224344 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4656, "RouteIdentifier": "271", "AADT": 930 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2430200919, 47.1351050773 ], [ -117.2554591689, 47.1454962289 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4657, "RouteIdentifier": "012", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6340930823, 46.5322486745 ], [ -122.613916913, 46.5330861252 ], [ -122.6035425582, 46.5285458674 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4658, "RouteIdentifier": "002", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1420864524, 47.6544054526 ], [ -118.1408999543, 47.6547957468 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4659, "RouteIdentifier": "009", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2022010791, 48.7460185067 ], [ -122.2007828338, 48.7782923251 ], [ -122.1904825956, 48.7896980395 ], [ -122.1904549774, 48.7962085212 ], [ -122.1981325832, 48.8071844986 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4660, "RouteIdentifier": "020", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7831995028, 48.1070075798 ], [ -122.7810617654, 48.1076558595 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4661, "RouteIdentifier": "101COPRTANG", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4309020008, 48.1191579416 ], [ -123.4317237119, 48.1182747731 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4662, "RouteIdentifier": "281", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8534105031, 47.2194487082 ], [ -119.8534053473, 47.2223294365 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4663, "RouteIdentifier": "101", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1566785185, 48.0769008073 ], [ -123.1417952785, 48.074895211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4664, "RouteIdentifier": "516", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3114493708, 47.3915360181 ], [ -122.3079523143, 47.3909890982 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4665, "RouteIdentifier": "090", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7482609923, 47.473255323 ], [ -121.7228989931, 47.4670798095 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4666, "RouteIdentifier": "395", "AADT": 9600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.7402153352, 46.7962897708 ], [ -118.7081501436, 46.8144289467 ], [ -118.6742632423, 46.8226983388 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4667, "RouteIdentifier": "410", "AADT": 710 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.3058304988, 46.9520915888 ], [ -121.2558073968, 46.9665971639 ], [ -121.2103710587, 46.9691134856 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4668, "RouteIdentifier": "020SPANACRT", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6128336455, 48.4963987197 ], [ -122.6127739583, 48.5004551192 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4669, "RouteIdentifier": "304", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6475719156, 47.5652581761 ], [ -122.6463329022, 47.5650689234 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4670, "RouteIdentifier": "090", "AADT": 62000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0411447066, 47.5428659307 ], [ -122.0241863249, 47.5315881261 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4671, "RouteIdentifier": "005", "AADT": 178000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3028757982, 47.3000530138 ], [ -122.2981579128, 47.312895011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4672, "RouteIdentifier": "097", "AADT": 4900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.888689271, 47.925649692 ], [ -119.882313128, 47.9310935459 ], [ -119.8822982751, 47.9420181745 ], [ -119.8757419687, 47.9580513417 ], [ -119.8879581207, 47.9724408061 ], [ -119.8895324357, 47.9825320573 ], [ -119.8858510006, 47.9902643238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4673, "RouteIdentifier": "169", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0796037239, 47.4579919468 ], [ -122.0839012223, 47.4613097266 ], [ -122.1114439556, 47.4631544785 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4674, "RouteIdentifier": "014", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7924840113, 45.7161680262 ], [ -121.786225659, 45.7141304128 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4675, "RouteIdentifier": "240", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.306688915, 46.2788022155 ], [ -119.3023056898, 46.2676765369 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4676, "RouteIdentifier": "012", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.5903183471, 46.0567683361 ], [ -118.5192085128, 46.0499502566 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4677, "RouteIdentifier": "090", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1344405077, 47.0889844077 ], [ -119.1212539974, 47.0877998117 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4678, "RouteIdentifier": "003", "AADT": 55000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7047490044, 47.6007985246 ], [ -122.7112388207, 47.6052288214 ], [ -122.7124496038, 47.6114063118 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4679, "RouteIdentifier": "395", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0934185999, 46.2851671356 ], [ -119.0925020979, 46.3401794742 ], [ -119.0860022305, 46.3582053906 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4680, "RouteIdentifier": "900", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2702955652, 47.4970013804 ], [ -122.25791496, 47.4871309015 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4681, "RouteIdentifier": "002", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3495747173, 47.9706537304 ], [ -117.3495866356, 47.9814746809 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4682, "RouteIdentifier": "020", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.1900642724, 48.4775740271 ], [ -120.1854211418, 48.4778068438 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4683, "RouteIdentifier": "101", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8886284736, 47.4026822769 ], [ -123.8763097221, 47.4213934899 ], [ -123.877036547, 47.4475535195 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4684, "RouteIdentifier": "285COWENTCH", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3128299563, 47.4225323717 ], [ -120.3062213119, 47.416281941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4685, "RouteIdentifier": "090", "AADT": 36000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5776035522, 47.4100021272 ], [ -121.5501634492, 47.3981832043 ], [ -121.5324173506, 47.3958007915 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4686, "RouteIdentifier": "524", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2331720885, 47.8210669673 ], [ -122.2307337316, 47.8178356076 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4687, "RouteIdentifier": "409", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.3771418088, 46.1802763744 ], [ -123.3774493287, 46.1875902746 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4688, "RouteIdentifier": "171", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942457468, 47.1191324392 ], [ -119.2911115679, 47.1240365899 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4689, "RouteIdentifier": "090", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5309634911, 46.9718013391 ], [ -120.5263000656, 46.9709601801 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4690, "RouteIdentifier": "014", "AADT": 1400 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8153769492, 45.6979289463 ], [ -120.7967192306, 45.7024032011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4691, "RouteIdentifier": "018", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.883903298, 47.5075662681 ], [ -121.8835917466, 47.5090369919 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4692, "RouteIdentifier": "005", "AADT": 173000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3307967988, 47.6088249044 ], [ -122.3301905624, 47.6128797259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4693, "RouteIdentifier": "303", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.632862566, 47.5657555269 ], [ -122.6328642069, 47.5666355148 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4694, "RouteIdentifier": "005", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5918452042, 48.8890326206 ], [ -122.6067680743, 48.8981282277 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4695, "RouteIdentifier": "121", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9608696722, 46.8965879431 ], [ -122.9594136168, 46.8965445916 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4696, "RouteIdentifier": "108", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1050673886, 47.1296410636 ], [ -123.0991749755, 47.1301780444 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4697, "RouteIdentifier": "005", "AADT": 70000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8575716456, 46.0374677293 ], [ -122.8610659653, 46.0478652505 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4698, "RouteIdentifier": "112", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7345388535, 48.1360534594 ], [ -123.716298311, 48.1315509218 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4699, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9589950413, 47.4802520054 ], [ -124.0276869285, 47.471479931 ], [ -124.0967538612, 47.4885408949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4700, "RouteIdentifier": "544", "AADT": 8500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3585353638, 48.9093392192 ], [ -122.3580820498, 48.915412848 ], [ -122.3519395171, 48.9160269917 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4701, "RouteIdentifier": "405", "AADT": 139000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1839184276, 47.5658400246 ], [ -122.1766955576, 47.5724700872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4702, "RouteIdentifier": "005", "AADT": 74000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.852240996, 46.0234388073 ], [ -122.8575716456, 46.0374677293 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4703, "RouteIdentifier": "124", "AADT": 1500 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3193801568, 46.2995221994 ], [ -118.29383435, 46.2991695402 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4704, "RouteIdentifier": "500", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4055026586, 45.5961003788 ], [ -122.4055405288, 45.5917612872 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4705, "RouteIdentifier": "548", "AADT": 6800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7284141787, 48.9757559926 ], [ -122.7335974346, 48.9792119734 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4706, "RouteIdentifier": "082", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5430046419, 46.2654844556 ], [ -119.523755174, 46.2613892962 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4707, "RouteIdentifier": "019", "AADT": 6700 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.724042039, 47.9126704949 ], [ -122.7346098799, 47.9375467064 ], [ -122.7338240699, 47.9543732544 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4708, "RouteIdentifier": "090", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3796443329, 47.1117747241 ], [ -118.3686788882, 47.1150041492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4709, "RouteIdentifier": "432", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.926866154, 46.1216324995 ], [ -122.9261218499, 46.1229717137 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4710, "RouteIdentifier": "509", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3239524065, 47.3971362502 ], [ -122.3243406744, 47.397956274 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4711, "RouteIdentifier": "503", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6781103544, 45.9394909444 ], [ -122.6958656415, 45.9431672649 ], [ -122.7043424684, 45.9356642435 ], [ -122.7200617061, 45.9337898632 ], [ -122.7226222255, 45.9280008842 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4712, "RouteIdentifier": "002", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2882313209, 47.6170498652 ], [ -119.2828183812, 47.6193764429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4713, "RouteIdentifier": "105SPWESTPT", "AADT": 3100 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1090869647, 46.8588515883 ], [ -124.1108347849, 46.868530839 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4714, "RouteIdentifier": "006", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0183397646, 46.6437586626 ], [ -123.0172277506, 46.645475284 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4715, "RouteIdentifier": "028", "AADT": 790 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6782492386, 47.3327708536 ], [ -118.6676786101, 47.3291647101 ], [ -118.6597780517, 47.3328929749 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4716, "RouteIdentifier": "510SPYELMLP", "AADT": 5200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6268938205, 46.9614926076 ], [ -122.6170471339, 46.9569922317 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4717, "RouteIdentifier": "706", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9220375425, 46.7426875865 ], [ -121.9184730058, 46.7411984508 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4718, "RouteIdentifier": "225", "AADT": 1600 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4933154474, 46.3115165199 ], [ -119.4925583765, 46.329979207 ], [ -119.4539087276, 46.3558692568 ], [ -119.4460453581, 46.3716676172 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4719, "RouteIdentifier": "101", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8258142714, 46.9714747617 ], [ -123.8309808672, 46.9760099288 ], [ -123.8521750453, 46.9760733389 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4720, "RouteIdentifier": "173", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6579299947, 47.9994661851 ], [ -119.6684791314, 48.0046240362 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4721, "RouteIdentifier": "524", "AADT": 6500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3796065351, 47.8114284518 ], [ -122.3787722403, 47.8124279259 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4722, "RouteIdentifier": "395", "AADT": 8000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.9058230966, 48.5454377559 ], [ -117.9058418724, 48.5465546852 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4723, "RouteIdentifier": "112", "AADT": 4000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6561026165, 48.1181029102 ], [ -123.5981693413, 48.116751797 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4724, "RouteIdentifier": "510", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6328542511, 46.9587926513 ], [ -122.6076963808, 46.9425842125 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4725, "RouteIdentifier": "531", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1616167206, 48.1521235496 ], [ -122.1507870886, 48.1520523663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4726, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3555823489, 47.8588071968 ], [ -117.3555936398, 47.8589452723 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4727, "RouteIdentifier": "290", "AADT": 20000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2799050476, 47.6816356586 ], [ -117.2448313626, 47.6887168246 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4728, "RouteIdentifier": "090", "AADT": 126000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2398779598, 47.5908053835 ], [ -122.2348413671, 47.588418258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4729, "RouteIdentifier": "520", "AADT": 52000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2093039324, 47.6428078098 ], [ -122.1932937046, 47.6371487563 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4730, "RouteIdentifier": "002", "AADT": 680 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6697674526, 47.5997916763 ], [ -119.6612151194, 47.6070005476 ], [ -119.6066831591, 47.5993624318 ], [ -119.519316737, 47.5996716644 ], [ -119.506659076, 47.6061494046 ], [ -119.4900236905, 47.6081531287 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4731, "RouteIdentifier": "395", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4538503546, 47.9182613584 ], [ -117.4773490149, 47.9428804513 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4732, "RouteIdentifier": "099", "AADT": 38000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2129385008, 47.91279953 ], [ -122.2088000662, 47.9150721941 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4733, "RouteIdentifier": "536", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3462357173, 48.4217075774 ], [ -122.3364704335, 48.4212504751 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4734, "RouteIdentifier": "141", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.5121334624, 45.776374164 ], [ -121.5065371663, 45.7819263952 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4735, "RouteIdentifier": "101", "AADT": 1200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.3993841644, 47.6751810229 ], [ -124.4100299932, 47.6905385507 ], [ -124.4131584898, 47.7153241709 ], [ -124.3232512525, 47.7503923932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4736, "RouteIdentifier": "012", "AADT": 42000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5219723944, 46.626090815 ], [ -120.5169772116, 46.6260720818 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4737, "RouteIdentifier": "031", "AADT": 100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3133128707, 48.9245515322 ], [ -117.307119418, 48.9291991442 ], [ -117.3165313082, 48.9327488117 ], [ -117.3199075356, 48.941222607 ], [ -117.3159801283, 48.9518030247 ], [ -117.3175917456, 48.9601239582 ], [ -117.3114187744, 48.9688574605 ], [ -117.3132407923, 48.9844676109 ], [ -117.3082024553, 48.987334862 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4738, "RouteIdentifier": "281SPBURKE", "AADT": 5100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8307822154, 47.1036973105 ], [ -119.829366692, 47.1025741429 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4739, "RouteIdentifier": "025", "AADT": 890 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8009917503, 48.899088371 ], [ -117.7948982738, 48.9007751191 ], [ -117.7898246409, 48.9128912695 ], [ -117.7787592741, 48.9171693044 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4740, "RouteIdentifier": "509", "AADT": 5500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3873073485, 47.2789522223 ], [ -122.4046720676, 47.2838514749 ], [ -122.4168936072, 47.2966428978 ], [ -122.4326700109, 47.2980606258 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4741, "RouteIdentifier": "105SPBOONE", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8024187553, 46.9692826304 ], [ -123.8023268261, 46.9706138586 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4742, "RouteIdentifier": "027", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1724700156, 46.747419563 ], [ -117.1689737584, 46.7599890779 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4743, "RouteIdentifier": "002", "AADT": 48000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9791204594, 47.8613218296 ], [ -121.9772544823, 47.8608534091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4744, "RouteIdentifier": "520", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3224229641, 47.6404419429 ], [ -122.3161312286, 47.6429143031 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4745, "RouteIdentifier": "510SPYELMLP", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6170471339, 46.9569922317 ], [ -122.6116398299, 46.9565353077 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4746, "RouteIdentifier": "303", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6288029427, 47.6101244229 ], [ -122.6288340771, 47.6158812787 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4747, "RouteIdentifier": "002", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6462988146, 47.596485754 ], [ -120.6287660452, 47.5891210126 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4748, "RouteIdentifier": "270COPULLMN", "AADT": 6900 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1769047974, 46.729513769 ], [ -117.1788357705, 46.7295852663 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4749, "RouteIdentifier": "395", "AADT": 27000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4108536601, 47.7513199125 ], [ -117.4105237126, 47.7523163592 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4750, "RouteIdentifier": "705", "AADT": 40000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318739382, 47.234680353 ], [ -122.4322202216, 47.2386425935 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4751, "RouteIdentifier": "020", "AADT": 6000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8848678307, 47.9879382073 ], [ -122.883245172, 47.9882925028 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4752, "RouteIdentifier": "003", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6709875264, 47.5540420396 ], [ -122.6774101021, 47.5636481361 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4753, "RouteIdentifier": "505", "AADT": 3500 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9103335991, 46.482928058 ], [ -122.8974973541, 46.4793963978 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4754, "RouteIdentifier": "024", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4674043677, 46.5847787764 ], [ -120.4512101301, 46.5770853276 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4755, "RouteIdentifier": "101COABERDN", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8278685905, 46.9716853763 ], [ -123.8269852287, 46.9708707418 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4756, "RouteIdentifier": "195", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3913392846, 47.3891157864 ], [ -117.3895677666, 47.4250017467 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4757, "RouteIdentifier": "534", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3127725976, 48.3407796335 ], [ -122.3057217067, 48.3394359548 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4758, "RouteIdentifier": "500", "AADT": 19000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5077498431, 45.6840205721 ], [ -122.5063250059, 45.6848578255 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4759, "RouteIdentifier": "082", "AADT": 50000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4798850922, 46.5977376972 ], [ -120.4748023779, 46.5896995193 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4760, "RouteIdentifier": "161", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2955397516, 47.040162607 ], [ -122.2953114868, 47.0439310162 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4761, "RouteIdentifier": "155", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.4751978366, 48.3959072026 ], [ -119.5023027759, 48.4022781572 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4762, "RouteIdentifier": "291", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4127242746, 47.7151457037 ], [ -117.4351007945, 47.7154472911 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4763, "RouteIdentifier": "527", "AADT": 41000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2108693497, 47.8004619779 ], [ -122.2077141546, 47.8063531965 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4764, "RouteIdentifier": "261", "AADT": 410 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.2223022809, 46.5981111151 ], [ -118.2257643504, 46.6045957035 ], [ -118.2223138409, 46.6097615191 ], [ -118.2404866495, 46.6279194815 ], [ -118.2450914062, 46.6416022081 ], [ -118.2651804981, 46.6565738532 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4765, "RouteIdentifier": "002COBROWNE", "AADT": 8400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4134270225, 47.6531107382 ], [ -117.4134608952, 47.6527226616 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4766, "RouteIdentifier": "082", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.7793761782, 46.2212051746 ], [ -119.7556065922, 46.2209514813 ], [ -119.7456908937, 46.2158646763 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4767, "RouteIdentifier": "101", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.1320219502, 47.2363423355 ], [ -123.1277858514, 47.2236494996 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4768, "RouteIdentifier": "002", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3518193824, 47.7919039464 ], [ -117.3500487942, 47.7980256738 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4769, "RouteIdentifier": "028COWENTCH", "AADT": 6300 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2920566884, 47.4105282137 ], [ -120.2941276522, 47.4130153494 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4770, "RouteIdentifier": "012COABERDN", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8076362509, 46.9772463001 ], [ -123.8090468875, 46.9772106863 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4771, "RouteIdentifier": "509", "AADT": 44000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3329165329, 47.5234893652 ], [ -122.3343743094, 47.5297826683 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4772, "RouteIdentifier": "516", "AADT": 35000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2931085242, 47.392427434 ], [ -122.2865268063, 47.3906729649 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4773, "RouteIdentifier": "500", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5974622536, 45.6497283577 ], [ -122.5906026172, 45.6527948204 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4774, "RouteIdentifier": "904", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.788774298, 47.4352395576 ], [ -117.7149843296, 47.4501888753 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4775, "RouteIdentifier": "002", "AADT": 4200 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8260870372, 47.777964567 ], [ -120.8141165471, 47.7731482573 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4776, "RouteIdentifier": "155", "AADT": 2700 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9796978543, 47.9684303804 ], [ -118.9621464726, 47.9788971521 ], [ -118.95552571, 47.9967673661 ], [ -118.9422778312, 48.0154868034 ], [ -118.9435832543, 48.025575113 ], [ -118.9867693325, 48.0530626329 ], [ -118.9736668822, 48.0641934995 ], [ -118.9821481019, 48.0758148849 ], [ -118.9820321546, 48.0927666601 ], [ -118.9898155429, 48.1044621788 ], [ -118.9790932527, 48.1197891062 ], [ -118.9775744375, 48.130752286 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4777, "RouteIdentifier": "103", "AADT": 7300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0547617311, 46.345935959 ], [ -124.0547456263, 46.346612471 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4778, "RouteIdentifier": "538", "AADT": 8800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2671353579, 48.4299276122 ], [ -122.264774667, 48.429909313 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4779, "RouteIdentifier": "023", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.5970369922, 47.0955432506 ], [ -117.6318611212, 47.1066720807 ], [ -117.6461224106, 47.1166306215 ], [ -117.6838431177, 47.1180750089 ], [ -117.707883861, 47.1113392664 ], [ -117.7190609148, 47.1167193872 ], [ -117.7345700167, 47.1169266042 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4780, "RouteIdentifier": "027", "AADT": 2100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1421354348, 47.4475636134 ], [ -117.141577431, 47.4500082492 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4781, "RouteIdentifier": "272", "AADT": 690 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3460816248, 46.8885837829 ], [ -117.3041492589, 46.8990209551 ], [ -117.2746295508, 46.9141916061 ], [ -117.2704255183, 46.9127594447 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4782, "RouteIdentifier": "005", "AADT": 122000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1903760819, 47.9768936616 ], [ -122.1829774552, 47.9869383211 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4783, "RouteIdentifier": "005", "AADT": 57000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8834047537, 46.113522401 ], [ -122.8982367501, 46.1289443409 ], [ -122.8976072607, 46.1404539675 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4784, "RouteIdentifier": "902", "AADT": 2200 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6929707776, 47.5042331597 ], [ -117.6934989729, 47.5042678567 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4785, "RouteIdentifier": "142", "AADT": 3600 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.8081064714, 45.8245819424 ], [ -120.8053708556, 45.8265045706 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4786, "RouteIdentifier": "411", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9119035401, 46.1765920328 ], [ -122.9063657838, 46.1800997708 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4787, "RouteIdentifier": "195", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3497979206, 46.8597063959 ], [ -117.3570081447, 46.8650918135 ], [ -117.3554031402, 46.8717225878 ], [ -117.3641647883, 46.8740109029 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4788, "RouteIdentifier": "272", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0767523409, 46.9097212815 ], [ -117.068840619, 46.9108595721 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4789, "RouteIdentifier": "162", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.22939549, 47.1916397461 ], [ -122.2293785955, 47.1902878983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4790, "RouteIdentifier": "026", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.0239734671, 46.7645457326 ], [ -117.9831420651, 46.7629392432 ], [ -117.9366891767, 46.7853119491 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4791, "RouteIdentifier": "012", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0970384228, 46.8218084668 ], [ -123.0905398888, 46.8217373497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4792, "RouteIdentifier": "103", "AADT": 7200 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0545804856, 46.3501186151 ], [ -124.0544043707, 46.3526539161 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4793, "RouteIdentifier": "507", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9747719324, 46.7112626752 ], [ -122.9699877988, 46.7110483932 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4794, "RouteIdentifier": "169", "AADT": 31000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1376219385, 47.4652954001 ], [ -122.1566237324, 47.4685018085 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4795, "RouteIdentifier": "395", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.4815523866, 47.9470052096 ], [ -117.5235622768, 47.9784884907 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4796, "RouteIdentifier": "012", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0418858195, 46.4199930726 ], [ -117.0398979045, 46.4201869144 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4797, "RouteIdentifier": "518", "AADT": 58000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3286086093, 47.4699818296 ], [ -122.3127555504, 47.4701556709 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4798, "RouteIdentifier": "105", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8029450786, 46.9697219828 ], [ -123.8046532988, 46.9702958878 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4799, "RouteIdentifier": "182", "AADT": 59000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2942399537, 46.2575534355 ], [ -119.2781150352, 46.2587418451 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4800, "RouteIdentifier": "031", "AADT": 910 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.3690791376, 48.8628154536 ], [ -117.364148903, 48.8597893208 ], [ -117.3617197932, 48.8661339983 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4801, "RouteIdentifier": "544", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3836725936, 48.891377649 ], [ -122.3760304765, 48.891834109 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4802, "RouteIdentifier": "101", "AADT": 3700 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.6786220988, 48.073901581 ], [ -123.6689386318, 48.0733486098 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4803, "RouteIdentifier": "529", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190960133, 47.9817746745 ], [ -122.1922476604, 47.98179891 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4804, "RouteIdentifier": "012", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5384276031, 46.6224575094 ], [ -120.5219723944, 46.626090815 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4805, "RouteIdentifier": "002", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.094618564, 47.9514925058 ], [ -122.0707436627, 47.9406113033 ], [ -122.0751751165, 47.9197652005 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4806, "RouteIdentifier": "005", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8133324553, 47.0524920951 ], [ -122.7878727232, 47.0597313969 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4807, "RouteIdentifier": "542", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9420276289, 48.8891584197 ], [ -121.9241996724, 48.889732773 ], [ -121.908282161, 48.9059343216 ], [ -121.879074748, 48.9058079495 ], [ -121.8682821094, 48.9018532858 ], [ -121.7845347292, 48.9125297162 ], [ -121.7740122508, 48.9093794354 ], [ -121.7601734233, 48.9113382708 ], [ -121.7351648161, 48.9028517067 ], [ -121.7046225873, 48.9084869163 ], [ -121.6936997501, 48.906634052 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4808, "RouteIdentifier": "007", "AADT": 2900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3590200387, 46.8898382458 ], [ -122.3589746896, 46.8933149788 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4809, "RouteIdentifier": "005", "AADT": 194000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.322462732, 47.6496170314 ], [ -122.3223421817, 47.6560094062 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4810, "RouteIdentifier": "405", "AADT": 113000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1858412261, 47.7634469513 ], [ -122.1876596894, 47.7659065312 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4811, "RouteIdentifier": "525", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3520946491, 47.9747243569 ], [ -122.3522945196, 47.9747750631 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4812, "RouteIdentifier": "009", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2938609707, 48.8575655792 ], [ -122.3097395207, 48.8660049753 ], [ -122.3097414265, 48.8834697321 ], [ -122.3205696751, 48.8842446664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4813, "RouteIdentifier": "104", "AADT": 4800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3819741537, 47.8121145139 ], [ -122.3832242727, 47.8097517091 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4814, "RouteIdentifier": "090", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.6842799668, 47.508587719 ], [ -117.587167089, 47.5708280871 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4815, "RouteIdentifier": "003", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8364747547, 47.374286003 ], [ -122.829825816, 47.381738143 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4816, "RouteIdentifier": "202", "AADT": 60000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1035997262, 47.668444842 ], [ -122.0997715333, 47.6656995892 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4817, "RouteIdentifier": "101", "AADT": 8100 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.7313710506, 46.6903743354 ], [ -123.7361025624, 46.6937072147 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4818, "RouteIdentifier": "900", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2783410998, 47.5080120111 ], [ -122.2788666186, 47.5036332815 ], [ -122.2702955652, 47.4970013804 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4819, "RouteIdentifier": "005", "AADT": 180000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3295502762, 47.7047809866 ], [ -122.3271587307, 47.7136272159 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4820, "RouteIdentifier": "012", "AADT": 2600 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7354912874, 46.5526532482 ], [ -121.6910471042, 46.5761502729 ], [ -121.6861660179, 46.5905859513 ], [ -121.6750836999, 46.6021829664 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4821, "RouteIdentifier": "007", "AADT": 29000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4318700022, 47.2324653952 ], [ -122.4321127257, 47.2333231589 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4822, "RouteIdentifier": "028", "AADT": 12000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8747183109, 47.2330604599 ], [ -119.8700407404, 47.2331134363 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4823, "RouteIdentifier": "202", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.7957761395, 47.4887865294 ], [ -121.7967231004, 47.488245636 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4824, "RouteIdentifier": "020", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6434331584, 48.3065806606 ], [ -122.6380141443, 48.3112290202 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4825, "RouteIdentifier": "099", "AADT": 23000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3324821085, 47.534523388 ], [ -122.3350200428, 47.5391616011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4826, "RouteIdentifier": "432", "AADT": 24000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9300694121, 46.1160931581 ], [ -122.926866154, 46.1216324995 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4827, "RouteIdentifier": "105", "AADT": 3300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1079704304, 46.8588588821 ], [ -124.0994911249, 46.8588806371 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4828, "RouteIdentifier": "503", "AADT": 3900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4518693234, 45.9101122837 ], [ -122.4469167382, 45.910167278 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4829, "RouteIdentifier": "002", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.6540439356, 47.5990844387 ], [ -120.6462988146, 47.596485754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4830, "RouteIdentifier": "082", "AADT": 28000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.4495337758, 46.5039654868 ], [ -120.4137225019, 46.4856279656 ], [ -120.4004187802, 46.4742779497 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4831, "RouteIdentifier": "503", "AADT": 2400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.4519709732, 45.9059295423 ], [ -122.4490361292, 45.9074852932 ], [ -122.4518693234, 45.9101122837 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4832, "RouteIdentifier": "501", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6704395067, 45.6325772078 ], [ -122.6726772266, 45.6325544336 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4833, "RouteIdentifier": "507", "AADT": 5000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9538231518, 46.7487811507 ], [ -122.9478831901, 46.7533571733 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4834, "RouteIdentifier": "270COPULLMN", "AADT": 7000 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1788357705, 46.7295852663 ], [ -117.1799080975, 46.7296299262 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4835, "RouteIdentifier": "124", "AADT": 1300 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.29383435, 46.2991695402 ], [ -118.276819223, 46.297266298 ], [ -118.2231220368, 46.277953835 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4836, "RouteIdentifier": "005", "AADT": 225000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2690111833, 47.4377897666 ], [ -122.2633467095, 47.4598544879 ], [ -122.2687488564, 47.4721785489 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4837, "RouteIdentifier": "195", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.1875760408, 46.6478028536 ], [ -117.1915478685, 46.6599654613 ], [ -117.1988941769, 46.666906221 ], [ -117.195441231, 46.6743020858 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4838, "RouteIdentifier": "019", "AADT": 6200 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7323375199, 47.8898968676 ], [ -122.724042039, 47.9126704949 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4839, "RouteIdentifier": "022", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3150102837, 46.3792337657 ], [ -120.3161032894, 46.3779887108 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4840, "RouteIdentifier": "020", "AADT": 2000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5916519331, 48.3502168576 ], [ -119.5910782183, 48.349487973 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4841, "RouteIdentifier": "002", "AADT": 7800 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.0626629459, 48.1752916443 ], [ -117.052759201, 48.1759897639 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4842, "RouteIdentifier": "005", "AADT": 133000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6617032151, 45.6433830491 ], [ -122.6617020964, 45.6446264754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4843, "RouteIdentifier": "090", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.8540700226, 47.0883824388 ], [ -119.8347016505, 47.1010560076 ], [ -119.8239536487, 47.1032398754 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4844, "RouteIdentifier": "165", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0576029409, 47.0916817763 ], [ -122.0458704138, 47.0990889736 ], [ -122.0454972488, 47.103424531 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4845, "RouteIdentifier": "525", "AADT": 7400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5455047346, 48.0151911959 ], [ -122.5604137621, 48.0262292109 ], [ -122.5668558184, 48.0450684226 ], [ -122.5682398591, 48.0885136006 ], [ -122.5876777121, 48.1210599346 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4846, "RouteIdentifier": "525", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2974847948, 47.9152081943 ], [ -122.3001156286, 47.9185854039 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4847, "RouteIdentifier": "285", "AADT": 18000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.3170457721, 47.4294662441 ], [ -120.3176595662, 47.4302249495 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4848, "RouteIdentifier": "215", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5138464975, 48.416820343 ], [ -119.51157568, 48.4168080215 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4849, "RouteIdentifier": "014", "AADT": 4400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.0246218752, 45.6254040131 ], [ -122.0163741662, 45.6319524828 ], [ -122.0088409823, 45.6309029624 ], [ -121.9860480217, 45.6413721887 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4850, "RouteIdentifier": "005", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7201925534, 48.9725563663 ], [ -122.7328423678, 48.9841695596 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4851, "RouteIdentifier": "020", "AADT": 21000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6578563225, 48.2883491403 ], [ -122.6578488817, 48.2895410127 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4852, "RouteIdentifier": "090", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.5263000656, 46.9709601801 ], [ -120.497732858, 46.9704790806 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4853, "RouteIdentifier": "022", "AADT": 1700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.0419262876, 46.2219914931 ], [ -120.0027133993, 46.2121666208 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4854, "RouteIdentifier": "167", "AADT": 109000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2202025787, 47.4072374973 ], [ -122.2207233046, 47.4156833158 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4855, "RouteIdentifier": "397", "AADT": 13000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.0823565056, 46.2482752943 ], [ -119.0820864503, 46.2486605032 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4856, "RouteIdentifier": "503", "AADT": 860 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3556390004, 45.9892331664 ], [ -122.3647789259, 45.992938942 ], [ -122.3649925149, 45.9971019257 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4857, "RouteIdentifier": "024", "AADT": 7700 }, "geometry": { "type": "LineString", "coordinates": [ [ -120.385569175, 46.5499987592 ], [ -120.3750456098, 46.5493985238 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4858, "RouteIdentifier": "221", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.6325132774, 46.1868027068 ], [ -119.6640303518, 46.1872361321 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4859, "RouteIdentifier": "028", "AADT": 430 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.1069520778, 47.4029037206 ], [ -119.0663191716, 47.4059245392 ], [ -119.0422944621, 47.3856092016 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4860, "RouteIdentifier": "131", "AADT": 1100 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.9561002594, 46.5266704559 ], [ -121.9572975987, 46.5353534207 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4861, "RouteIdentifier": "012", "AADT": 7600 }, "geometry": { "type": "LineString", "coordinates": [ [ -118.4150633113, 46.0706784483 ], [ -118.3764731907, 46.0716522784 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4862, "RouteIdentifier": "542", "AADT": 5800 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2025293491, 48.8159609661 ], [ -122.1954842634, 48.8206495581 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4863, "RouteIdentifier": "503", "AADT": 16000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.5472358647, 45.8117200378 ], [ -122.5469856665, 45.8168217556 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4864, "RouteIdentifier": "502", "AADT": 22000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.558361614, 45.780526879 ], [ -122.5555409989, 45.780635909 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4865, "RouteIdentifier": "101COABERDN", "AADT": 10000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.8269852287, 46.9708707418 ], [ -123.8261026875, 46.9700612141 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4866, "RouteIdentifier": "101", "AADT": 46000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.9478299761, 47.0358210791 ], [ -122.9316246804, 47.0277555011 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4867, "RouteIdentifier": "543", "AADT": 11000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.7349574112, 48.9939874349 ], [ -122.7353942026, 49.0020702071 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4868, "RouteIdentifier": "240", "AADT": 17000 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.2938084119, 46.3141920165 ], [ -119.2862401307, 46.308479073 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4869, "RouteIdentifier": "525", "AADT": 15000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3051065733, 47.9435748501 ], [ -122.3044461333, 47.9446172164 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4870, "RouteIdentifier": "410", "AADT": 1900 }, "geometry": { "type": "LineString", "coordinates": [ [ -121.6890804036, 47.1533532154 ], [ -121.6592910203, 47.1591358128 ], [ -121.619821252, 47.133142341 ], [ -121.6124069417, 47.1210645571 ], [ -121.5963308595, 47.1073463507 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4871, "RouteIdentifier": "027", "AADT": 9500 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.2235907413, 47.620646532 ], [ -117.2236317238, 47.6278867921 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4872, "RouteIdentifier": "105SPWESTPT", "AADT": 2300 }, "geometry": { "type": "LineString", "coordinates": [ [ -124.1116144402, 46.8868092337 ], [ -124.1042063039, 46.8868591474 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4873, "RouteIdentifier": "012", "AADT": 7900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8770396143, 46.5473587206 ], [ -122.8752641023, 46.5473525241 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4874, "RouteIdentifier": "009", "AADT": 5900 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3206641784, 48.920195997 ], [ -122.3219125052, 48.9201922455 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4875, "RouteIdentifier": "007", "AADT": 3400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3589746896, 46.8933149788 ], [ -122.3573827719, 46.9297368504 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4876, "RouteIdentifier": "525", "AADT": 5400 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.3515312423, 47.9748188959 ], [ -122.3520946491, 47.9747243569 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4877, "RouteIdentifier": "004", "AADT": 14000 }, "geometry": { "type": "LineString", "coordinates": [ [ -123.0003727518, 46.1639381329 ], [ -122.9961129273, 46.1618451049 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4878, "RouteIdentifier": "522", "AADT": 32000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.1114164195, 47.8021101024 ], [ -122.1053446624, 47.8104011539 ], [ -122.0654931199, 47.8179312301 ] ] } }, -{ "type": "Feature", "properties": { "OBJECTID": 4879, "RouteIdentifier": "501", "AADT": 26000 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6649628638, 45.6316024762 ], [ -122.6659555363, 45.631898547 ] ] } } -] -} diff --git a/examples/data/origdata/points_gas.geojson b/examples/data/origdata/points_gas.geojson deleted file mode 100644 index 5dfa2d2..0000000 --- a/examples/data/origdata/points_gas.geojson +++ /dev/null @@ -1,98 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "points_gas", -"features": [ -{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, -{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": 1.43, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille" }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, -{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC" }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, -{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI" }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, -{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI" }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, -{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE" }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, -{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": 1.785, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total" }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, -{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE" }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, -{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": 1.81, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)" }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, -{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, -{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia" }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, -{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE" }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, -{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, -{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA" }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, -{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne" }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, -{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI" }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, -{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS" }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, -{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, -{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA" }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, -{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA" }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, -{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique" }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, -{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, -{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, -{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti" }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, -{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade" }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, -{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, -{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles" }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, -{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, -{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": 1.75, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA" }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, -{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto" }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, -{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, -{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": 1.77, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES" }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, -{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA" }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, -{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi" }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, -{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, -{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, -{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL" }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, -{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José" }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, -{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS" }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, -{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres" }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, -{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS" }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, -{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO" }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, -{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE" }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, -{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse" }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, -{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA" }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, -{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO" }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, -{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc" }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, -{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": 2.02, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia" }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, -{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée" }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, -{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA" }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, -{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI" }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, -{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA" }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, -{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, -{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, -{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, -{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD" }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, -{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN" }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, -{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS" }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, -{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": 1.72, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, -{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES" }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, -{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": 1.8, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM" }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, -{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ" }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, -{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques" }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, -{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, -{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE" }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, -{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI" }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, -{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE" }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, -{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, -{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, -{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA" }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, -{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO" }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, -{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël" }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, -{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, -{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION" }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, -{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2" }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, -{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": 1.73, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare" }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, -{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO" }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, -{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI" }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, -{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal" }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, -{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH" }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, -{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI" }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, -{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari" }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, -{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA" }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, -{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André" }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, -{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA" }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, -{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution" }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } -] -} diff --git a/examples/data/origdata/points_lux_pop_osm.geojson b/examples/data/origdata/points_lux_pop_osm.geojson deleted file mode 100644 index cca1d99..0000000 --- a/examples/data/origdata/points_lux_pop_osm.geojson +++ /dev/null @@ -1,478 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "points_lux_pop_osm", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": 1708 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": 660 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": 1450 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": 757 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": 486 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": 853 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 4804 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, -{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, -{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, -{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": 3512 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1702 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, -{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, -{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2437 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, -{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": 736 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, -{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, -{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, -{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": 2055 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2401 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": 649 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1342 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, -{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": 1867 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": 1785 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": 140 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": 143 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": 240 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": 551 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": 752 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": 656 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": 150 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": 417 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": 66 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": 350 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": 608 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": 181 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": 328 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": 246 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": 1460 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": 1154 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": 480 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": 509 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": 2947 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, -{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": 957 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, -{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": 203 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, -{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, -{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, -{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, -{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, -{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": 2126 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": 21 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, -{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, -{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, -{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, -{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, -{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": 27 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, -{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, -{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": 364 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": 1139 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1673 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": 776 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": 4444 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } -] -} diff --git a/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson b/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson deleted file mode 100644 index 72ebc9d..0000000 --- a/examples/data/origdata/polygons_hatch_eu_lifeexp_2018.geojson +++ /dev/null @@ -1,341 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "polygons_hatch_eu_lifeexp_2018", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": 79.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": 79.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } -] -} diff --git a/examples/data/origdata/polygons_nz_regions.geojson b/examples/data/origdata/polygons_nz_regions.geojson deleted file mode 100644 index 33f5ecf..0000000 --- a/examples/data/origdata/polygons_nz_regions.geojson +++ /dev/null @@ -1,23 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "polygons_nz_regions2", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "id": "pv084qp8629.1", "id_1": 1, "name_1": "Auckland", "hasc_1": "NZ.AU", "population2022": 1695200, "areakm2": 5095.679, "density2022": 332.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.74861145, -37.34444427 ], [ 174.74708557, -37.3454895 ], [ 174.74694824, -37.34361267 ], [ 174.74861145, -37.34444427 ], [ 174.74861145, -37.34444427 ] ] ], [ [ [ 174.77009583, -37.34389114 ], [ 174.770446779999986, -37.34157944 ], [ 174.77178955, -37.3429718 ], [ 174.77009583, -37.34389114 ], [ 174.77009583, -37.34389114 ] ] ], [ [ [ 174.7555542, -37.3441658 ], [ 174.75404358, -37.34367752 ], [ 174.754516599999988, -37.34116364 ], [ 174.7555542, -37.3441658 ], [ 174.7555542, -37.3441658 ] ] ], [ [ [ 174.764160159999989, -37.34388733 ], [ 174.76008606, -37.34461975 ], [ 174.76565552, -37.33962631 ], [ 174.764160159999989, -37.34388733 ], [ 174.764160159999989, -37.34388733 ] ] ], [ [ [ 174.752990720000014, -37.34559631 ], [ 174.75141907, -37.34180832 ], [ 174.752304079999988, -37.34277725 ], [ 174.752990720000014, -37.34559631 ], [ 174.752990720000014, -37.34559631 ] ] ], [ [ [ 174.77192688, -37.33953094 ], [ 174.768737789999989, -37.3407135 ], [ 174.771835329999988, -37.33702469 ], [ 174.77192688, -37.33953094 ], [ 174.77192688, -37.33953094 ] ] ], [ [ [ 174.75320435, -37.33498001 ], [ 174.74888611, -37.34166718 ], [ 174.74491882, -37.33788681 ], [ 174.75320435, -37.33498001 ], [ 174.75320435, -37.33498001 ] ] ], [ [ [ 174.75654602, -37.33567429 ], [ 174.75642395, -37.33279037 ], [ 174.76016235, -37.33059692 ], [ 174.75654602, -37.33567429 ], [ 174.75654602, -37.33567429 ] ] ], [ [ [ 174.791107180000012, -37.32666779 ], [ 174.77305603, -37.34166718 ], [ 174.77806091, -37.33166504 ], [ 174.791107180000012, -37.32666779 ], [ 174.791107180000012, -37.32666779 ] ] ], [ [ [ 174.76023865, -37.32954788 ], [ 174.76167297, -37.32620239 ], [ 174.76620483, -37.32515717 ], [ 174.76023865, -37.32954788 ], [ 174.76023865, -37.32954788 ] ] ], [ [ [ 174.797210690000014, -37.3252449 ], [ 174.79432678, -37.3246994 ], [ 174.79898071, -37.32347488 ], [ 174.797210690000014, -37.3252449 ], [ 174.797210690000014, -37.3252449 ] ] ], [ [ [ 174.71255493000001, -37.19326782 ], [ 174.713088989999989, -37.19437408 ], [ 174.71208191, -37.19443512 ], [ 174.71255493000001, -37.19326782 ], [ 174.71255493000001, -37.19326782 ] ] ], [ [ [ 174.88668823, -37.06499863 ], [ 174.88700867, -37.06641006 ], [ 174.886077879999988, -37.06524277 ], [ 174.88668823, -37.06499863 ], [ 174.88668823, -37.06499863 ] ] ], [ [ [ 174.73410034, -36.96100998 ], [ 174.75726318, -36.96128464 ], [ 174.75708008, -36.96967316 ], [ 174.74598694, -36.97321701 ], [ 174.73286438, -36.96675491 ], [ 174.73410034, -36.96100998 ], [ 174.73410034, -36.96100998 ] ] ], [ [ [ 175.15527344, -36.92194366 ], [ 175.15943909, -36.92499924 ], [ 175.15638733, -36.92666626 ], [ 175.15527344, -36.92194366 ], [ 175.15527344, -36.92194366 ] ] ], [ [ [ 175.16471863000001, -36.90194321 ], [ 175.170837400000011, -36.90833282 ], [ 175.15028381, -36.91361237 ], [ 175.16471863000001, -36.90194321 ], [ 175.16471863000001, -36.90194321 ] ] ], [ [ [ 174.97932434, -36.87934494 ], [ 174.977310179999989, -36.87853241 ], [ 174.97924805, -36.8763237 ], [ 174.97932434, -36.87934494 ], [ 174.97932434, -36.87934494 ] ] ], [ [ [ 174.684783939999988, -36.87700653 ], [ 174.68363953, -36.87633133 ], [ 174.68690491000001, -36.87526703 ], [ 174.684783939999988, -36.87700653 ], [ 174.684783939999988, -36.87700653 ] ] ], [ [ [ 175.18833923, -36.83666611 ], [ 175.208618159999986, -36.83111191 ], [ 175.21499634, -36.83499908 ], [ 175.2124939, -36.84277725 ], [ 175.20144653, -36.84207916 ], [ 175.1958313, -36.85972214 ], [ 175.19833374000001, -36.86888885 ], [ 175.207778929999989, -36.88000107 ], [ 175.199722290000011, -36.88833237 ], [ 175.20083618000001, -36.89805603 ], [ 175.18972778, -36.90194321 ], [ 175.18804932, -36.89666748 ], [ 175.17555237, -36.89472198 ], [ 175.172775269999988, -36.88527679 ], [ 175.16111755, -36.86527634 ], [ 175.15333557, -36.86083221 ], [ 175.168884279999986, -36.86000061 ], [ 175.17805481, -36.85111237 ], [ 175.172500609999986, -36.84555435 ], [ 175.176391599999988, -36.83805466 ], [ 175.18943787, -36.83194351 ], [ 175.18833923, -36.83666611 ], [ 175.18833923, -36.83666611 ] ] ], [ [ [ 175.206542969999987, -36.82966232 ], [ 175.20561218, -36.82774734 ], [ 175.208084109999987, -36.82830429 ], [ 175.206542969999987, -36.82966232 ], [ 175.206542969999987, -36.82966232 ] ] ], [ [ [ 174.897537230000012, -36.82781601 ], [ 174.89205933, -36.83633041 ], [ 174.88879395, -36.8285675 ], [ 174.897537230000012, -36.82781601 ], [ 174.897537230000012, -36.82781601 ] ] ], [ [ [ 174.97322083, -36.81057739 ], [ 174.973724370000014, -36.8139534 ], [ 174.971206669999987, -36.81113434 ], [ 174.97322083, -36.81057739 ], [ 174.97322083, -36.81057739 ] ] ], [ [ [ 175.19805908, -36.80555725 ], [ 175.202224730000012, -36.80944443 ], [ 175.20195007, -36.82416534 ], [ 175.196105960000011, -36.82333374 ], [ 175.19805908, -36.80555725 ], [ 175.19805908, -36.80555725 ] ] ], [ [ [ 174.93743896, -36.80243683 ], [ 174.952499390000014, -36.80916595 ], [ 174.94721985000001, -36.82249832 ], [ 174.93888855, -36.82055664 ], [ 174.94277954, -36.8125 ], [ 174.93743896, -36.80243683 ], [ 174.93743896, -36.80243683 ] ] ], [ [ [ 175.19221497, -36.79277802 ], [ 175.20056152, -36.79777908 ], [ 175.196105960000011, -36.80083466 ], [ 175.19221497, -36.79277802 ], [ 175.19221497, -36.79277802 ] ] ], [ [ [ 175.2277832, -36.79083252 ], [ 175.22389221, -36.79027939 ], [ 175.22694397, -36.78777695 ], [ 175.2277832, -36.79083252 ], [ 175.2277832, -36.79083252 ] ] ], [ [ [ 174.662170409999987, -36.77856445 ], [ 174.65034485000001, -36.78217316 ], [ 174.65328979, -36.77868652 ], [ 174.662170409999987, -36.77856445 ], [ 174.662170409999987, -36.77856445 ] ] ], [ [ [ 174.898895259999989, -36.74944305 ], [ 174.896392819999988, -36.74861145 ], [ 174.89805603, -36.74361038 ], [ 174.898895259999989, -36.74944305 ], [ 174.898895259999989, -36.74944305 ] ] ], [ [ [ 175.172775269999988, -36.73916626 ], [ 175.169723510000011, -36.74861145 ], [ 175.1819458, -36.75361252 ], [ 175.19221497, -36.75111008 ], [ 175.203887939999987, -36.76444626 ], [ 175.19332886, -36.77916718 ], [ 175.18777466, -36.77361298 ], [ 175.167037959999988, -36.77801514 ], [ 175.15499878, -36.78722382 ], [ 175.15861511, -36.79944611 ], [ 175.1680603, -36.80555725 ], [ 175.16305542, -36.81416702 ], [ 175.1652832, -36.82500076 ], [ 175.16085815, -36.83246994 ], [ 175.148895259999989, -36.83527756 ], [ 175.15388489, -36.8405571 ], [ 175.13806152, -36.8488884 ], [ 175.136383059999986, -36.83638763 ], [ 175.12861633, -36.83250046 ], [ 175.12319946, -36.83744049 ], [ 175.12805176, -36.84583282 ], [ 175.112777709999989, -36.84777832 ], [ 175.11193848, -36.83027649 ], [ 175.104995730000013, -36.82389069 ], [ 175.09249878, -36.83722305 ], [ 175.079162599999989, -36.83472061 ], [ 175.07556152, -36.83805466 ], [ 175.06111145, -36.83000183 ], [ 175.07139587, -36.82583237 ], [ 175.070800780000013, -36.82086182 ], [ 175.053894039999989, -36.81833267 ], [ 175.044998170000014, -36.82083511 ], [ 175.03250122, -36.8180542 ], [ 175.047775269999988, -36.80555725 ], [ 175.03305054, -36.80110931 ], [ 175.02194214, -36.8133316 ], [ 175.018066409999989, -36.80887222 ], [ 175.02722168, -36.79750061 ], [ 175.014724730000012, -36.79000092 ], [ 175.00852966, -36.79153824 ], [ 175.006057739999989, -36.80369568 ], [ 174.99868774, -36.80368805 ], [ 174.99494934, -36.81095123 ], [ 174.987503049999987, -36.81138992 ], [ 174.988891599999988, -36.79360962 ], [ 174.98167419, -36.78777695 ], [ 174.986114500000014, -36.7705574 ], [ 174.996444700000012, -36.77493286 ], [ 174.99945068, -36.76722336 ], [ 175.016113280000013, -36.76889038 ], [ 175.00971985000001, -36.77833176 ], [ 175.017791749999986, -36.78364182 ], [ 175.02166748, -36.77833176 ], [ 175.03639221, -36.77416611 ], [ 175.04083252, -36.77944565 ], [ 175.053894039999989, -36.77444458 ], [ 175.0597229, -36.76499939 ], [ 175.06083679, -36.77527618 ], [ 175.0680542, -36.78527832 ], [ 175.08653259, -36.78783798 ], [ 175.10083008, -36.78527832 ], [ 175.10806274, -36.77639008 ], [ 175.102493290000012, -36.76944351 ], [ 175.106109620000012, -36.76333237 ], [ 175.1194458, -36.76055527 ], [ 175.124099730000012, -36.76806259 ], [ 175.13667297, -36.76250076 ], [ 175.146987919999987, -36.76496124 ], [ 175.15083313, -36.75166702 ], [ 175.16027832, -36.74250031 ], [ 175.172775269999988, -36.73916626 ], [ 175.172775269999988, -36.73916626 ] ] ], [ [ [ 174.91583252, -36.72888947 ], [ 174.92555237, -36.73860931 ], [ 174.93527222, -36.74083328 ], [ 174.93028259, -36.74888992 ], [ 174.93777466, -36.75416565 ], [ 174.93804932, -36.76666641 ], [ 174.92944336, -36.76805496 ], [ 174.928894039999989, -36.78416824 ], [ 174.91555786, -36.7891655 ], [ 174.9125061, -36.79750061 ], [ 174.90306091, -36.79000092 ], [ 174.89778137, -36.7788887 ], [ 174.89204407, -36.78447723 ], [ 174.897689820000011, -36.79029465 ], [ 174.89520264, -36.79819489 ], [ 174.87414551, -36.80767822 ], [ 174.84777832, -36.8097229 ], [ 174.826385499999986, -36.78777695 ], [ 174.83778381, -36.76861191 ], [ 174.84950256, -36.76420975 ], [ 174.86947632, -36.76311111 ], [ 174.88024902, -36.76958847 ], [ 174.892776489999989, -36.76777649 ], [ 174.893890379999988, -36.75888824 ], [ 174.90083313, -36.7519455 ], [ 174.91471863000001, -36.74611282 ], [ 174.91583252, -36.72888947 ], [ 174.91583252, -36.72888947 ] ] ], [ [ [ 174.94837952, -36.70943451 ], [ 174.95300293, -36.71068192 ], [ 174.95436096, -36.72274399 ], [ 174.943435670000014, -36.72822571 ], [ 174.94250488, -36.71972275 ], [ 174.94837952, -36.70943451 ], [ 174.94837952, -36.70943451 ] ] ], [ [ [ 175.005371090000011, -36.70791245 ], [ 175.00628662, -36.70982742 ], [ 175.00375366, -36.70896149 ], [ 175.005371090000011, -36.70791245 ], [ 175.005371090000011, -36.70791245 ] ] ], [ [ [ 174.99836731, -36.69808578 ], [ 174.99772644, -36.70172501 ], [ 174.99667358, -36.69805527 ], [ 174.99836731, -36.69808578 ], [ 174.99836731, -36.69808578 ] ] ], [ [ [ 174.971069340000014, -36.69258499 ], [ 174.97795105, -36.69343185 ], [ 174.97346497, -36.69891357 ], [ 174.971069340000014, -36.69258499 ], [ 174.971069340000014, -36.69258499 ] ] ], [ [ [ 174.96234131, -36.68624878 ], [ 174.96551514, -36.68757248 ], [ 174.96388245, -36.69218063 ], [ 174.96234131, -36.68624878 ], [ 174.96234131, -36.68624878 ] ] ], [ [ [ 174.88276672, -36.59151077 ], [ 174.8999176, -36.60185242 ], [ 174.90098572, -36.60828018 ], [ 174.89105225, -36.60912323 ], [ 174.87973022, -36.59898376 ], [ 174.88276672, -36.59151077 ], [ 174.88276672, -36.59151077 ] ] ], [ [ [ 174.39993286, -36.57617187 ], [ 174.39518738000001, -36.56950378 ], [ 174.398895259999989, -36.56694412 ], [ 174.39993286, -36.57617187 ], [ 174.39993286, -36.57617187 ] ] ], [ [ [ 174.74786377, -36.51462555 ], [ 174.747024540000012, -36.50824356 ], [ 174.749801639999987, -36.50896454 ], [ 174.74786377, -36.51462555 ], [ 174.74786377, -36.51462555 ] ] ], [ [ [ 174.801422120000012, -36.49801254 ], [ 174.802825930000012, -36.50374985 ], [ 174.78611755, -36.51388931 ], [ 174.78582764, -36.50749969 ], [ 174.801422120000012, -36.49801254 ], [ 174.801422120000012, -36.49801254 ] ] ], [ [ [ 174.801239009999989, -36.47497177 ], [ 174.792221070000011, -36.47999954 ], [ 174.78805542, -36.47611237 ], [ 174.801239009999989, -36.47497177 ], [ 174.801239009999989, -36.47497177 ] ] ], [ [ [ 174.80833435, -36.46683121 ], [ 174.81388855, -36.46895981 ], [ 174.80731201, -36.47409058 ], [ 174.80833435, -36.46683121 ], [ 174.80833435, -36.46683121 ] ] ], [ [ [ 174.72694397, -36.46194458 ], [ 174.72639465, -36.46472168 ], [ 174.72471619, -36.4636116 ], [ 174.72694397, -36.46194458 ], [ 174.72694397, -36.46194458 ] ] ], [ [ [ 174.823608400000012, -36.45055389 ], [ 174.82194519, -36.45333481 ], [ 174.81916809, -36.45111084 ], [ 174.823608400000012, -36.45055389 ], [ 174.823608400000012, -36.45055389 ] ] ], [ [ [ 174.40863037, -36.44541931 ], [ 174.406707759999989, -36.44382858 ], [ 174.40885925, -36.44260788 ], [ 174.40863037, -36.44541931 ], [ 174.40863037, -36.44541931 ] ] ], [ [ [ 174.40611267, -36.4383316 ], [ 174.40861511, -36.44138718 ], [ 174.40472412, -36.4430542 ], [ 174.40611267, -36.4383316 ], [ 174.40611267, -36.4383316 ] ] ], [ [ [ 174.795166020000011, -36.42495346 ], [ 174.793167110000013, -36.4260788 ], [ 174.79425049, -36.42292786 ], [ 174.795166020000011, -36.42495346 ], [ 174.795166020000011, -36.42495346 ] ] ], [ [ [ 174.39332581, -36.42361069 ], [ 174.392776489999989, -36.42083359 ], [ 174.3972168, -36.42083359 ], [ 174.39332581, -36.42361069 ], [ 174.39332581, -36.42361069 ] ] ], [ [ [ 174.7930603, -36.41249847 ], [ 174.795272829999988, -36.41388702 ], [ 174.79333496000001, -36.4169426 ], [ 174.7930603, -36.41249847 ], [ 174.7930603, -36.41249847 ] ] ], [ [ [ 174.840164179999988, -36.39127731 ], [ 174.87805176, -36.41523743 ], [ 174.88024902, -36.43740463 ], [ 174.87445068, -36.45416641 ], [ 174.86276245, -36.44109726 ], [ 174.857055659999986, -36.44581985 ], [ 174.83703613, -36.45054626 ], [ 174.82804871, -36.43638992 ], [ 174.82025146, -36.43609238 ], [ 174.8152771, -36.42805481 ], [ 174.829727170000012, -36.42499924 ], [ 174.840271, -36.42805481 ], [ 174.854415890000013, -36.42507553 ], [ 174.85028076, -36.41805649 ], [ 174.83805847, -36.42277908 ], [ 174.81767273, -36.41349792 ], [ 174.833618159999986, -36.41027832 ], [ 174.823883059999986, -36.40732956 ], [ 174.82943726, -36.3983345 ], [ 174.83694458, -36.39888763 ], [ 174.840164179999988, -36.39127731 ], [ 174.840164179999988, -36.39127731 ] ] ], [ [ [ 174.25444031, -36.38611221 ], [ 174.25721741000001, -36.38833237 ], [ 174.2527771, -36.38777924 ], [ 174.25444031, -36.38611221 ], [ 174.25444031, -36.38611221 ] ] ], [ [ [ 174.24221802, -36.36833191 ], [ 174.24749756, -36.37250137 ], [ 174.25138855, -36.39527893 ], [ 174.24806213, -36.40083313 ], [ 174.235839840000011, -36.3769455 ], [ 174.24221802, -36.36833191 ], [ 174.24221802, -36.36833191 ] ] ], [ [ [ 174.25332642, -36.36138916 ], [ 174.24972534, -36.36833191 ], [ 174.24333191, -36.36639023 ], [ 174.25332642, -36.36138916 ], [ 174.25332642, -36.36138916 ] ] ], [ [ [ 175.50798035, -36.34883499 ], [ 175.50305176, -36.34660721 ], [ 175.507064820000011, -36.34487915 ], [ 175.50798035, -36.34883499 ], [ 175.50798035, -36.34883499 ] ] ], [ [ [ 175.54315186, -36.33336639 ], [ 175.54083252, -36.33311844 ], [ 175.543304440000014, -36.33175659 ], [ 175.54315186, -36.33336639 ], [ 175.54315186, -36.33336639 ] ] ], [ [ [ 174.769332889999987, -36.31733704 ], [ 174.76747131, -36.32003021 ], [ 174.76461792, -36.31834412 ], [ 174.769332889999987, -36.31733704 ], [ 174.769332889999987, -36.31733704 ] ] ], [ [ [ 174.796661379999989, -36.26805496 ], [ 174.795944209999988, -36.26393127 ], [ 174.8006897, -36.26434708 ], [ 174.796661379999989, -36.26805496 ], [ 174.796661379999989, -36.26805496 ] ] ], [ [ [ 175.3694458, -36.2527771 ], [ 175.37416077, -36.25583267 ], [ 175.37277222, -36.25722122 ], [ 175.3694458, -36.2527771 ], [ 175.3694458, -36.2527771 ] ] ], [ [ [ 175.49256897, -36.2543602 ], [ 175.49009705, -36.25114441 ], [ 175.49256897, -36.25114441 ], [ 175.49256897, -36.2543602 ], [ 175.49256897, -36.2543602 ] ] ], [ [ [ 175.30278015, -36.23749924 ], [ 175.30259705, -36.23859024 ], [ 175.301132200000012, -36.23760223 ], [ 175.30278015, -36.23749924 ], [ 175.30278015, -36.23749924 ] ] ], [ [ [ 175.31599426, -36.23490906 ], [ 175.31352234, -36.23515701 ], [ 175.3155365, -36.23404312 ], [ 175.31599426, -36.23490906 ], [ 175.31599426, -36.23490906 ] ] ], [ [ [ 175.30741882, -36.23115158 ], [ 175.29585266, -36.23498154 ], [ 175.3012085, -36.22740555 ], [ 175.30741882, -36.23115158 ], [ 175.30741882, -36.23115158 ] ] ], [ [ [ 175.4936676, -36.22166824 ], [ 175.49290466, -36.22049332 ], [ 175.49467468, -36.21975327 ], [ 175.4936676, -36.22166824 ], [ 175.4936676, -36.22166824 ] ] ], [ [ [ 175.29943848, -36.21888733 ], [ 175.31195068, -36.22499847 ], [ 175.29417419, -36.22249985 ], [ 175.29943848, -36.21888733 ], [ 175.29943848, -36.21888733 ] ] ], [ [ [ 175.28639221, -36.21333313 ], [ 175.289993290000012, -36.21888733 ], [ 175.288604740000011, -36.22138977 ], [ 175.28639221, -36.21333313 ], [ 175.28639221, -36.21333313 ] ] ], [ [ [ 175.297775269999988, -36.20027924 ], [ 175.29804993, -36.20416641 ], [ 175.295837400000011, -36.20027924 ], [ 175.297775269999988, -36.20027924 ], [ 175.297775269999988, -36.20027924 ] ] ], [ [ [ 175.304901120000011, -36.1999321 ], [ 175.30366516, -36.20042419 ], [ 175.30366516, -36.19844818 ], [ 175.304901120000011, -36.1999321 ], [ 175.304901120000011, -36.1999321 ] ] ], [ [ [ 175.30844116, -36.18930054 ], [ 175.30427551, -36.1890564 ], [ 175.30551147, -36.18769455 ], [ 175.30844116, -36.18930054 ], [ 175.30844116, -36.18930054 ] ] ], [ [ [ 175.306442260000011, -36.18621063 ], [ 175.30535889, -36.1869545 ], [ 175.30474854, -36.18473053 ], [ 175.306442260000011, -36.18621063 ], [ 175.306442260000011, -36.18621063 ] ] ], [ [ [ 175.294982909999987, -36.18518066 ], [ 175.29252625, -36.1829567 ], [ 175.29437256, -36.18246078 ], [ 175.294982909999987, -36.18518066 ], [ 175.294982909999987, -36.18518066 ] ] ], [ [ [ 175.09361267, -36.16916656 ], [ 175.10583496000001, -36.16944504 ], [ 175.11610413, -36.1827774 ], [ 175.110275269999988, -36.1883316 ], [ 175.11193848, -36.21416855 ], [ 175.10667419, -36.22861099 ], [ 175.09916687, -36.23222351 ], [ 175.078338620000011, -36.23083496 ], [ 175.05999756, -36.22166824 ], [ 175.05055237, -36.2211113 ], [ 175.048614500000014, -36.20444489 ], [ 175.051391599999988, -36.18500137 ], [ 175.0708313, -36.17694473 ], [ 175.077774049999988, -36.17916489 ], [ 175.09361267, -36.16916656 ], [ 175.09361267, -36.16916656 ] ] ], [ [ [ 175.300155640000014, -36.16735458 ], [ 175.295837400000011, -36.16488266 ], [ 175.301544189999987, -36.1646347 ], [ 175.300155640000014, -36.16735458 ], [ 175.300155640000014, -36.16735458 ] ] ], [ [ [ 175.339080810000013, -36.16407394 ], [ 175.34249878, -36.17833328 ], [ 175.333892819999988, -36.18111038 ], [ 175.33778381, -36.18583298 ], [ 175.331115720000014, -36.19083405 ], [ 175.31277466, -36.18138885 ], [ 175.30332947, -36.16944504 ], [ 175.30528259, -36.16555405 ], [ 175.323608400000012, -36.17083359 ], [ 175.339080810000013, -36.16407394 ], [ 175.339080810000013, -36.16407394 ] ] ], [ [ [ 175.49806213, -36.16305542 ], [ 175.4916687, -36.16527939 ], [ 175.48971558, -36.16277695 ], [ 175.49806213, -36.16305542 ], [ 175.49806213, -36.16305542 ] ] ], [ [ [ 175.28805542, -36.1594429 ], [ 175.29444885, -36.16277695 ], [ 175.29272461, -36.1672287 ], [ 175.28805542, -36.1594429 ], [ 175.28805542, -36.1594429 ] ] ], [ [ [ 175.30888367, -36.14138794 ], [ 175.31111145, -36.14277649 ], [ 175.30833435, -36.14444351 ], [ 175.30888367, -36.14138794 ], [ 175.30888367, -36.14138794 ] ] ], [ [ [ 174.63522339, -36.14515686 ], [ 174.65336609, -36.1629715 ], [ 174.65110779, -36.16749954 ], [ 174.667343140000014, -36.18865204 ], [ 174.68914795, -36.21086502 ], [ 174.72833252, -36.24499893 ], [ 174.74720764, -36.25767899 ], [ 174.768615720000014, -36.25916672 ], [ 174.779785159999989, -36.26965332 ], [ 174.79914856, -36.26813507 ], [ 174.82028198, -36.27444458 ], [ 174.822509770000011, -36.27960587 ], [ 174.800003049999987, -36.30444336 ], [ 174.79466248, -36.30353928 ], [ 174.797775269999988, -36.32204437 ], [ 174.78379822, -36.32040024 ], [ 174.78259277, -36.30789185 ], [ 174.75750732, -36.31916809 ], [ 174.763885499999986, -36.32805634 ], [ 174.75971985000001, -36.33666611 ], [ 174.768890379999988, -36.35416794 ], [ 174.77638245, -36.35944366 ], [ 174.777771, -36.35222244 ], [ 174.768615720000014, -36.34083176 ], [ 174.77565002, -36.32389069 ], [ 174.780471799999987, -36.32223129 ], [ 174.78083801, -36.33972168 ], [ 174.78889465, -36.35111237 ], [ 174.804367070000012, -36.34745026 ], [ 174.81654358, -36.35943985 ], [ 174.839233400000012, -36.36986923 ], [ 174.856384279999986, -36.36583328 ], [ 174.86193848, -36.36000061 ], [ 174.86557007, -36.37009048 ], [ 174.84693909, -36.38083267 ], [ 174.8449707, -36.37844849 ], [ 174.82194519, -36.37666702 ], [ 174.80479431, -36.38342667 ], [ 174.79559326, -36.37924194 ], [ 174.792053220000014, -36.38952255 ], [ 174.779785159999989, -36.38541794 ], [ 174.768341060000012, -36.3912735 ], [ 174.7649231, -36.38343811 ], [ 174.75772095, -36.38233185 ], [ 174.757186890000014, -36.39266968 ], [ 174.742675780000013, -36.39739609 ], [ 174.7315979, -36.38865662 ], [ 174.73822021, -36.37300873 ], [ 174.731384279999986, -36.37333298 ], [ 174.721054079999988, -36.38892746 ], [ 174.73872375, -36.40179443 ], [ 174.72975159, -36.41090775 ], [ 174.73208618000001, -36.42351151 ], [ 174.73948669, -36.42406845 ], [ 174.74694824, -36.43638992 ], [ 174.76118469, -36.43070221 ], [ 174.76008606, -36.43761826 ], [ 174.773773190000014, -36.44091797 ], [ 174.7658844, -36.44686127 ], [ 174.766922, -36.46149063 ], [ 174.75508118, -36.4749527 ], [ 174.75213623, -36.49309921 ], [ 174.73979187, -36.49824142 ], [ 174.734725950000012, -36.48777771 ], [ 174.74414063, -36.48487473 ], [ 174.74572754, -36.47399139 ], [ 174.73944092, -36.47055435 ], [ 174.728607180000012, -36.48472214 ], [ 174.731384279999986, -36.45166779 ], [ 174.722854610000013, -36.43668365 ], [ 174.7141571, -36.43139648 ], [ 174.707931519999988, -36.43462753 ], [ 174.7134552, -36.44461441 ], [ 174.703460690000014, -36.44823456 ], [ 174.71095276, -36.4511528 ], [ 174.703613280000013, -36.4655571 ], [ 174.711837769999988, -36.46228027 ], [ 174.719665529999986, -36.47034454 ], [ 174.711425780000013, -36.47318268 ], [ 174.715271, -36.48749924 ], [ 174.70341492, -36.47452164 ], [ 174.69139099, -36.48138809 ], [ 174.70776367, -36.48524094 ], [ 174.706115720000014, -36.49472046 ], [ 174.7194519, -36.49499893 ], [ 174.71861267, -36.50361252 ], [ 174.73017883, -36.51727676 ], [ 174.722045900000012, -36.51877975 ], [ 174.72195435, -36.52544785 ], [ 174.711715700000013, -36.53026962 ], [ 174.71861267, -36.54611206 ], [ 174.71194458, -36.54888916 ], [ 174.704879760000011, -36.56425476 ], [ 174.69667053, -36.5616684 ], [ 174.69250488, -36.57527924 ], [ 174.70056152, -36.5961113 ], [ 174.72000122, -36.61027908 ], [ 174.732772829999988, -36.6222229 ], [ 174.74018860000001, -36.62414169 ], [ 174.74499512, -36.61805725 ], [ 174.75444031, -36.62861252 ], [ 174.764984129999988, -36.62617874 ], [ 174.77359009, -36.60601807 ], [ 174.7988739, -36.60061646 ], [ 174.81231689, -36.60146332 ], [ 174.82698059, -36.5920105 ], [ 174.83917236, -36.59249878 ], [ 174.841857909999987, -36.60139465 ], [ 174.83789063, -36.61478806 ], [ 174.83258057, -36.61993027 ], [ 174.823577879999988, -36.61423111 ], [ 174.81634521, -36.61763763 ], [ 174.80860901, -36.60836029 ], [ 174.80607605, -36.62430191 ], [ 174.798736569999988, -36.62942505 ], [ 174.789825439999987, -36.62469482 ], [ 174.771560670000014, -36.62540054 ], [ 174.77210999, -36.63004303 ], [ 174.76054382, -36.64135742 ], [ 174.749786379999989, -36.63983917 ], [ 174.73733521, -36.64815521 ], [ 174.727615359999987, -36.64610291 ], [ 174.7306366, -36.66270447 ], [ 174.71234131, -36.67443466 ], [ 174.730789179999988, -36.66940689 ], [ 174.744354249999986, -36.66017151 ], [ 174.74905396, -36.68097305 ], [ 174.763610840000013, -36.69583511 ], [ 174.75305176, -36.70249939 ], [ 174.74972534, -36.71416855 ], [ 174.75889587, -36.73083496 ], [ 174.75726318, -36.73915863 ], [ 174.770309450000013, -36.75818253 ], [ 174.76841736, -36.76640701 ], [ 174.77722168, -36.77388763 ], [ 174.775588989999989, -36.78743362 ], [ 174.79258728, -36.79959869 ], [ 174.81411743000001, -36.82762527 ], [ 174.79649353, -36.8332634 ], [ 174.784667969999987, -36.83230972 ], [ 174.77507019, -36.82492447 ], [ 174.78692627, -36.82000351 ], [ 174.78109741, -36.8153801 ], [ 174.762496950000013, -36.82110977 ], [ 174.77703857, -36.80975342 ], [ 174.765289309999986, -36.79846954 ], [ 174.751754760000011, -36.81555557 ], [ 174.74848938, -36.82757187 ], [ 174.74018860000001, -36.81729126 ], [ 174.73616028, -36.82245255 ], [ 174.70968628, -36.82638931 ], [ 174.6967926, -36.82323074 ], [ 174.679351809999986, -36.78834152 ], [ 174.6652832, -36.78111267 ], [ 174.66256714, -36.77205276 ], [ 174.67308044, -36.75695801 ], [ 174.65957642, -36.77095795 ], [ 174.6519165, -36.76856232 ], [ 174.63491821, -36.77178574 ], [ 174.633605960000011, -36.76700974 ], [ 174.607208250000014, -36.77388763 ], [ 174.63545227, -36.77622604 ], [ 174.64450073, -36.7746048 ], [ 174.64848328, -36.78260422 ], [ 174.64149475, -36.79126358 ], [ 174.666076659999987, -36.78504181 ], [ 174.67539978, -36.7949028 ], [ 174.67045593, -36.8055191 ], [ 174.65361023, -36.80459595 ], [ 174.638885499999986, -36.82361221 ], [ 174.64219666, -36.83140564 ], [ 174.645004269999987, -36.82194519 ], [ 174.65786743000001, -36.81516647 ], [ 174.65609741, -36.8277359 ], [ 174.661605830000013, -36.83152008 ], [ 174.663604740000011, -36.84666824 ], [ 174.65629578, -36.85379028 ], [ 174.65861511, -36.87942505 ], [ 174.66769409, -36.88144302 ], [ 174.66516113, -36.88782883 ], [ 174.67401123, -36.89351654 ], [ 174.67303467, -36.88363647 ], [ 174.664382929999988, -36.8796196 ], [ 174.65834045, -36.86536407 ], [ 174.66664124, -36.85723495 ], [ 174.6815033, -36.87699127 ], [ 174.69096375, -36.88014984 ], [ 174.703872679999989, -36.8506546 ], [ 174.70898438, -36.85595703 ], [ 174.73573303, -36.84051132 ], [ 174.74276733, -36.83430862 ], [ 174.746704099999988, -36.84137726 ], [ 174.76473999000001, -36.83957672 ], [ 174.78166199, -36.8433342 ], [ 174.78527832, -36.84000015 ], [ 174.792770389999987, -36.84860992 ], [ 174.79075623, -36.86040115 ], [ 174.81184387, -36.86079025 ], [ 174.805175780000013, -36.85333252 ], [ 174.81434631, -36.85197067 ], [ 174.82421875, -36.84395981 ], [ 174.846191409999989, -36.8504982 ], [ 174.85612488000001, -36.85035324 ], [ 174.86471558, -36.84361267 ], [ 174.87539673, -36.84647751 ], [ 174.884262080000013, -36.85935211 ], [ 174.88555908, -36.87333298 ], [ 174.877304079999988, -36.87441635 ], [ 174.86975098, -36.88442993 ], [ 174.868896479999989, -36.90222168 ], [ 174.85221863000001, -36.9141655 ], [ 174.86254883, -36.92725372 ], [ 174.85414124, -36.92984009 ], [ 174.8666687, -36.93305588 ], [ 174.857772829999988, -36.93861008 ], [ 174.85714722, -36.9468689 ], [ 174.87176514, -36.93473053 ], [ 174.87007141, -36.91969681 ], [ 174.862777709999989, -36.92250061 ], [ 174.85900879, -36.90898895 ], [ 174.87554932, -36.90472412 ], [ 174.87930298, -36.89136887 ], [ 174.887496950000013, -36.89027786 ], [ 174.89694214, -36.87888718 ], [ 174.90596008, -36.87366104 ], [ 174.898895259999989, -36.85972214 ], [ 174.89833069, -36.8461113 ], [ 174.90472412, -36.84777832 ], [ 174.90541077, -36.85891724 ], [ 174.914840700000013, -36.87380981 ], [ 174.927246090000011, -36.87918091 ], [ 174.94248962, -36.8927803 ], [ 174.95169067, -36.89477921 ], [ 174.95469666, -36.90237808 ], [ 174.951660159999989, -36.91249847 ], [ 174.962799069999988, -36.91230011 ], [ 174.97639465, -36.90750122 ], [ 174.99249268, -36.90805435 ], [ 174.9863739, -36.89934158 ], [ 174.983337400000011, -36.88277817 ], [ 175.00054932, -36.87611008 ], [ 175.01698303, -36.88047409 ], [ 175.0249939, -36.87555695 ], [ 175.038604740000011, -36.87388992 ], [ 175.043609620000012, -36.88000107 ], [ 175.05955505, -36.88559723 ], [ 175.06460571, -36.90013123 ], [ 175.07069397, -36.90451813 ], [ 175.09861755, -36.89972305 ], [ 175.081405640000014, -36.91238403 ], [ 175.08082581, -36.91999817 ], [ 175.0874939, -36.93916702 ], [ 175.0930481, -36.94527817 ], [ 175.113891599999988, -36.94416809 ], [ 175.11555481, -36.93805695 ], [ 175.12889099, -36.9394455 ], [ 175.13555908, -36.93083191 ], [ 175.143890379999988, -36.92777634 ], [ 175.1444397, -36.9383316 ], [ 175.15249634, -36.9402771 ], [ 175.15638733, -36.95000076 ], [ 175.16833496000001, -36.94666672 ], [ 175.17582703, -36.9375 ], [ 175.19166565, -36.92944336 ], [ 175.20555115, -36.94111252 ], [ 175.230270389999987, -36.94889069 ], [ 175.238891599999988, -36.95694351 ], [ 175.24888611, -36.95611191 ], [ 175.25166321, -36.96666718 ], [ 175.27444458, -36.98527908 ], [ 175.28305054, -36.98749924 ], [ 175.28782654, -36.99531174 ], [ 175.27339172, -37.02422333 ], [ 175.267211909999986, -37.02603531 ], [ 175.216308590000011, -37.03106689 ], [ 175.20687866, -37.03936005 ], [ 175.18336487, -37.03012848 ], [ 175.18638611, -37.02379227 ], [ 175.17288208, -37.01697159 ], [ 175.15328979, -37.02281189 ], [ 175.16027832, -37.03159332 ], [ 175.16073608, -37.04232407 ], [ 175.151580810000013, -37.06135941 ], [ 175.12791443, -37.05207825 ], [ 175.11830139, -37.06035995 ], [ 175.10475159, -37.05350113 ], [ 175.09165955, -37.05736542 ], [ 175.08161926, -37.05489349 ], [ 175.08465576, -37.04856491 ], [ 175.077667240000011, -37.0397644 ], [ 175.05805969, -37.04554367 ], [ 175.06155396, -37.04994583 ], [ 175.048477170000012, -37.05379486 ], [ 175.04588318, -37.07086182 ], [ 175.0328064, -37.07471085 ], [ 175.03630066, -37.07912064 ], [ 175.023223879999989, -37.08296967 ], [ 175.02061462, -37.10005188 ], [ 175.02410889, -37.10446548 ], [ 175.01101685, -37.10831833 ], [ 175.01802063, -37.11714172 ], [ 175.01496887, -37.12348175 ], [ 175.001861569999988, -37.12733841 ], [ 175.005371090000011, -37.13175201 ], [ 174.97915649, -37.13946152 ], [ 174.982208250000014, -37.13311768 ], [ 174.96911621000001, -37.13697052 ], [ 174.95864868000001, -37.12372208 ], [ 174.94554138, -37.12756729 ], [ 174.93942261, -37.14025116 ], [ 174.94332886, -37.15543365 ], [ 174.95294189, -37.14716339 ], [ 174.96690369, -37.16483307 ], [ 174.97695923, -37.16732025 ], [ 174.98396301, -37.17615128 ], [ 174.980896, -37.18249512 ], [ 174.994903560000012, -37.20016098 ], [ 174.991851809999986, -37.20650482 ], [ 175.00192261, -37.20898819 ], [ 174.979568480000012, -37.231884 ], [ 174.983078, -37.23629761 ], [ 174.96992493, -37.24015808 ], [ 174.94320679, -37.23711777 ], [ 174.93621826, -37.22828293 ], [ 174.92308044, -37.23213577 ], [ 174.937042240000011, -37.24981308 ], [ 174.93395996000001, -37.25615692 ], [ 174.920806879999986, -37.26001358 ], [ 174.927795409999987, -37.26884842 ], [ 174.92121887, -37.27077866 ], [ 174.91853333, -37.28787994 ], [ 174.884841920000014, -37.27599716 ], [ 174.86471558, -37.27100372 ], [ 174.85157776, -37.27485275 ], [ 174.85195923, -37.28562164 ], [ 174.84538269, -37.28754807 ], [ 174.852340700000013, -37.29639435 ], [ 174.849243159999986, -37.302742 ], [ 174.82292175, -37.31043625 ], [ 174.823303220000014, -37.32120895 ], [ 174.81323242, -37.3241539 ], [ 174.801391599999988, -37.32055664 ], [ 174.78222656, -37.32722092 ], [ 174.75944519, -37.34277725 ], [ 174.75527954, -37.34027863 ], [ 174.770004269999987, -37.32389069 ], [ 174.75889587, -37.32694626 ], [ 174.74610901, -37.33499908 ], [ 174.74055481, -37.34361267 ], [ 174.74583435, -37.35258102 ], [ 174.74339294, -37.36933517 ], [ 174.72793579, -37.38022995 ], [ 174.7191925, -37.38008881 ], [ 174.70744324, -37.36303329 ], [ 174.686874390000014, -37.35016632 ], [ 174.66555786, -37.30444336 ], [ 174.62750244, -37.23333359 ], [ 174.60806274, -37.19916534 ], [ 174.59635925, -37.1749115 ], [ 174.53805542, -37.07527924 ], [ 174.536193849999989, -37.05663681 ], [ 174.54148865, -37.04803467 ], [ 174.563537599999989, -37.04257202 ], [ 174.582229610000013, -37.04580688 ], [ 174.59613037, -37.04479218 ], [ 174.6033783, -37.0488739 ], [ 174.618377689999988, -37.04405975 ], [ 174.62768555, -37.03572083 ], [ 174.63929749, -37.04273987 ], [ 174.658401489999989, -37.04346085 ], [ 174.66659546, -37.05578232 ], [ 174.66238403, -37.07104874 ], [ 174.651550289999989, -37.07485199 ], [ 174.6582489, -37.08179855 ], [ 174.64932251, -37.08469772 ], [ 174.659835820000012, -37.09937286 ], [ 174.65719604, -37.1036644 ], [ 174.66603088, -37.11007309 ], [ 174.65834045, -37.11777878 ], [ 174.66726685, -37.11764908 ], [ 174.67073059, -37.1275444 ], [ 174.66278076, -37.13360977 ], [ 174.66549683, -37.13876724 ], [ 174.68989563, -37.14783478 ], [ 174.68093872, -37.1594162 ], [ 174.697479249999986, -37.15065384 ], [ 174.699020389999987, -37.15457916 ], [ 174.68888855, -37.16361237 ], [ 174.69416809, -37.18611145 ], [ 174.703887939999987, -37.1866684 ], [ 174.69416809, -37.19833374 ], [ 174.704162599999989, -37.19610977 ], [ 174.704727170000012, -37.21444321 ], [ 174.71903992, -37.21577072 ], [ 174.721740720000014, -37.23689651 ], [ 174.736114500000014, -37.23500061 ], [ 174.73854065, -37.22458649 ], [ 174.7253418, -37.22209167 ], [ 174.72193909, -37.20861053 ], [ 174.714218140000014, -37.20185089 ], [ 174.7207489, -37.18832779 ], [ 174.71542358, -37.18151855 ], [ 174.71470642, -37.16691208 ], [ 174.703460690000014, -37.15739441 ], [ 174.72558594, -37.15255737 ], [ 174.740737919999987, -37.16088867 ], [ 174.74615479, -37.17043304 ], [ 174.77471924, -37.16305542 ], [ 174.79055786, -37.16222382 ], [ 174.769210820000012, -37.15892792 ], [ 174.75379944, -37.16146088 ], [ 174.745040890000013, -37.16618347 ], [ 174.74511719, -37.15767288 ], [ 174.7361908, -37.14894485 ], [ 174.71401978, -37.152668 ], [ 174.70425415, -37.15139008 ], [ 174.70523071, -37.14375687 ], [ 174.69020081, -37.14219666 ], [ 174.69058228, -37.13669205 ], [ 174.72889709, -37.13051224 ], [ 174.74328613, -37.12337875 ], [ 174.75526428, -37.11260605 ], [ 174.77049255, -37.09150696 ], [ 174.77679443, -37.08836365 ], [ 174.79382324, -37.09136581 ], [ 174.793884279999986, -37.10111237 ], [ 174.80607605, -37.08727264 ], [ 174.823608400000012, -37.08222198 ], [ 174.83636475, -37.07331085 ], [ 174.84182739, -37.06376266 ], [ 174.85545349, -37.05511093 ], [ 174.86341858, -37.06336212 ], [ 174.8768158, -37.06953812 ], [ 174.88800049, -37.06748581 ], [ 174.89593506, -37.06103897 ], [ 174.90306091, -37.07277679 ], [ 174.91123962, -37.06416321 ], [ 174.924331669999987, -37.06008148 ], [ 174.917480469999987, -37.0536232 ], [ 174.90698242, -37.05328369 ], [ 174.90655518, -37.04590988 ], [ 174.89321899, -37.05011749 ], [ 174.88731384, -37.05898285 ], [ 174.869644169999987, -37.05386353 ], [ 174.87107849, -37.04896545 ], [ 174.885665890000013, -37.0430603 ], [ 174.874084470000014, -37.04246902 ], [ 174.86328125, -37.0529747 ], [ 174.857788090000014, -37.05137253 ], [ 174.85549927, -37.02599335 ], [ 174.84832764, -37.0336113 ], [ 174.83256531, -37.01757431 ], [ 174.8097229, -37.0055542 ], [ 174.8097229, -37.01777649 ], [ 174.793731689999987, -37.01195145 ], [ 174.76547241, -37.01953888 ], [ 174.77416992, -37.01083374 ], [ 174.751037599999989, -36.99941635 ], [ 174.7416687, -36.99208832 ], [ 174.74717712, -36.98075104 ], [ 174.76077271, -36.9774704 ], [ 174.7746582, -36.96874619 ], [ 174.77583313, -36.95972061 ], [ 174.7562561, -36.94947052 ], [ 174.75628662, -36.94068527 ], [ 174.79141235, -36.93827057 ], [ 174.802978520000011, -36.9471283 ], [ 174.81509399, -36.9428215 ], [ 174.81771851, -36.94869232 ], [ 174.82885742, -36.93861389 ], [ 174.828887939999987, -36.93102264 ], [ 174.78973389, -36.93144226 ], [ 174.7827301, -36.93377686 ], [ 174.772521970000014, -36.92459869 ], [ 174.758575439999987, -36.93213272 ], [ 174.740600590000014, -36.932827 ], [ 174.73147583, -36.93881226 ], [ 174.71430969, -36.9348793 ], [ 174.7114563, -36.92741776 ], [ 174.702789309999986, -36.93151855 ], [ 174.68081665, -36.93448639 ], [ 174.66665649, -36.94392014 ], [ 174.6643219, -36.95485687 ], [ 174.660476679999988, -36.95121765 ], [ 174.652008059999986, -36.96409988 ], [ 174.645172120000012, -36.96048737 ], [ 174.64451599, -36.96909714 ], [ 174.633270259999989, -36.97922516 ], [ 174.62127686, -36.97101593 ], [ 174.61820984, -36.9884491 ], [ 174.60464478, -36.99318314 ], [ 174.603149409999986, -37.00133514 ], [ 174.61245728, -37.0196991 ], [ 174.60089111, -37.01769257 ], [ 174.59416199, -37.00508499 ], [ 174.57286072, -37.01064301 ], [ 174.566894530000013, -36.99916458 ], [ 174.55845642, -37.02070999 ], [ 174.534805299999988, -37.0325737 ], [ 174.526412959999988, -37.03224564 ], [ 174.50762939, -37.04738617 ], [ 174.49095154, -37.0520668 ], [ 174.48316956, -37.04669952 ], [ 174.47659302, -37.02732468 ], [ 174.47538757, -36.99555206 ], [ 174.46765137, -36.98597717 ], [ 174.46028137, -36.95999908 ], [ 174.46801758, -36.95759201 ], [ 174.46606445, -36.94641876 ], [ 174.45916748, -36.93500137 ], [ 174.450271609999987, -36.92861176 ], [ 174.453338620000011, -36.92222214 ], [ 174.44389343, -36.91194534 ], [ 174.446105960000011, -36.8955574 ], [ 174.43756104, -36.88339233 ], [ 174.428894039999989, -36.87888718 ], [ 174.43360901, -36.86888885 ], [ 174.42694092, -36.85194397 ], [ 174.43110657, -36.84833145 ], [ 174.42648315, -36.83020401 ], [ 174.41694641, -36.80916595 ], [ 174.41278076, -36.80555725 ], [ 174.387496950000013, -36.76610947 ], [ 174.366394039999989, -36.73555374 ], [ 174.28250122, -36.6222229 ], [ 174.2444458, -36.57805634 ], [ 174.18110657, -36.50860977 ], [ 174.16471863000001, -36.48860931 ], [ 174.16082764, -36.47638702 ], [ 174.16166687, -36.4608345 ], [ 174.16944885, -36.44805527 ], [ 174.18861389, -36.44083405 ], [ 174.20317078, -36.42809677 ], [ 174.22583008, -36.42694473 ], [ 174.22583008, -36.42944336 ], [ 174.204162599999989, -36.43222046 ], [ 174.19332886, -36.44555664 ], [ 174.1902771, -36.45611191 ], [ 174.19778442, -36.46250153 ], [ 174.19944763, -36.44944382 ], [ 174.20555115, -36.43777847 ], [ 174.21305847, -36.4375 ], [ 174.2359314, -36.427845 ], [ 174.25250244, -36.45249939 ], [ 174.25965881, -36.45434952 ], [ 174.28012085, -36.49325943 ], [ 174.29333496000001, -36.50333405 ], [ 174.29267883, -36.5084877 ], [ 174.302505489999987, -36.52722168 ], [ 174.324996950000013, -36.5363884 ], [ 174.35083008, -36.54333496 ], [ 174.3555603, -36.55222321 ], [ 174.37971497, -36.56861115 ], [ 174.375, -36.57722092 ], [ 174.362503049999987, -36.58333206 ], [ 174.36384583, -36.5953064 ], [ 174.360000609999986, -36.60722351 ], [ 174.376464840000011, -36.59213257 ], [ 174.376190189999988, -36.60593414 ], [ 174.38534546, -36.6158638 ], [ 174.39944458, -36.6202774 ], [ 174.40306091, -36.6258316 ], [ 174.418609620000012, -36.61833191 ], [ 174.421112060000013, -36.61027908 ], [ 174.43638611, -36.61000061 ], [ 174.440643310000013, -36.60068893 ], [ 174.432678220000014, -36.5900116 ], [ 174.40834045, -36.58444595 ], [ 174.41389465, -36.57722092 ], [ 174.42971802, -36.57944489 ], [ 174.41917419, -36.57055664 ], [ 174.423751829999986, -36.55867386 ], [ 174.44221497, -36.55666733 ], [ 174.43556213, -36.54472351 ], [ 174.427505489999987, -36.53888702 ], [ 174.422225950000012, -36.52777863 ], [ 174.42666626, -36.52222061 ], [ 174.422775269999988, -36.51139069 ], [ 174.43055725, -36.51111221 ], [ 174.423889159999987, -36.49666595 ], [ 174.41172791, -36.48948288 ], [ 174.4055481, -36.47750092 ], [ 174.409729, -36.46666718 ], [ 174.41000366, -36.44777679 ], [ 174.41760254, -36.43902588 ], [ 174.43943787, -36.42750168 ], [ 174.42852783, -36.42801666 ], [ 174.42555237, -36.42083359 ], [ 174.41221619, -36.41027832 ], [ 174.413604740000011, -36.40277863 ], [ 174.397506709999988, -36.39722061 ], [ 174.393615720000014, -36.38888931 ], [ 174.41870117, -36.3806572 ], [ 174.42555237, -36.37388992 ], [ 174.41111755, -36.36777878 ], [ 174.417221070000011, -36.35889053 ], [ 174.402771, -36.3544426 ], [ 174.40499878, -36.36500168 ], [ 174.416107180000012, -36.37472153 ], [ 174.40596008, -36.38108826 ], [ 174.38555908, -36.38611221 ], [ 174.381896970000014, -36.4062233 ], [ 174.368225099999989, -36.40099716 ], [ 174.36384583, -36.40944672 ], [ 174.356109620000012, -36.41194534 ], [ 174.35028076, -36.40277863 ], [ 174.325286870000014, -36.38490295 ], [ 174.31361389, -36.38277817 ], [ 174.310775760000013, -36.39226913 ], [ 174.29055786, -36.38999939 ], [ 174.27287292, -36.39101791 ], [ 174.25138855, -36.38138962 ], [ 174.25027466, -36.37527847 ], [ 174.262496950000013, -36.35583496 ], [ 174.25889587, -36.34500122 ], [ 174.25805664, -36.3144455 ], [ 174.262496950000013, -36.32166672 ], [ 174.26333618000001, -36.3405571 ], [ 174.26832581, -36.31027603 ], [ 174.28166199, -36.30444336 ], [ 174.297225950000012, -36.30749893 ], [ 174.31333923, -36.32277679 ], [ 174.35398865, -36.32294464 ], [ 174.363891599999988, -36.31861115 ], [ 174.36610413, -36.31027603 ], [ 174.373947140000013, -36.31713867 ], [ 174.37928772, -36.31167984 ], [ 174.39144897, -36.30988693 ], [ 174.39305115, -36.30222321 ], [ 174.40750122, -36.29277802 ], [ 174.41661072, -36.2756424 ], [ 174.42778015, -36.27361298 ], [ 174.44082642, -36.26555634 ], [ 174.453338620000011, -36.25333405 ], [ 174.46499634, -36.26166534 ], [ 174.47138977, -36.25860977 ], [ 174.47721863000001, -36.23013306 ], [ 174.48692322, -36.23255539 ], [ 174.490173340000013, -36.22624207 ], [ 174.49987793, -36.22865677 ], [ 174.51280212, -36.22473526 ], [ 174.509567260000011, -36.22036743 ], [ 174.52890015, -36.21446228 ], [ 174.522399900000011, -36.20570755 ], [ 174.53198242, -36.19737625 ], [ 174.531875609999986, -36.18663406 ], [ 174.557525629999986, -36.17871094 ], [ 174.56723022, -36.1811409 ], [ 174.573440549999987, -36.16841507 ], [ 174.58314514, -36.17086792 ], [ 174.58930969, -36.15815735 ], [ 174.58268738000001, -36.14934158 ], [ 174.60180664, -36.1435051 ], [ 174.59849548, -36.13909531 ], [ 174.61122131, -36.1352272 ], [ 174.61094666, -36.12446976 ], [ 174.619506840000014, -36.12182999 ], [ 174.63522339, -36.14515686 ], [ 174.63522339, -36.14515686 ] ] ], [ [ [ 175.49740601, -36.11763382 ], [ 175.511383059999986, -36.11999893 ], [ 175.49668884, -36.13606262 ], [ 175.48693848, -36.13416672 ], [ 175.48666382, -36.12444305 ], [ 175.49740601, -36.11763382 ], [ 175.49740601, -36.11763382 ] ] ], [ [ [ 175.41055298, -36.02999878 ], [ 175.41694641, -36.03333282 ], [ 175.40249634, -36.04277802 ], [ 175.40583801, -36.05361176 ], [ 175.414993290000012, -36.06277847 ], [ 175.40415955, -36.07027817 ], [ 175.41111755, -36.07110977 ], [ 175.40499878, -36.08083344 ], [ 175.41082764, -36.0933342 ], [ 175.422500609999986, -36.08527756 ], [ 175.426391599999988, -36.09111023 ], [ 175.425003049999987, -36.10222244 ], [ 175.43110657, -36.10749817 ], [ 175.44639587, -36.10749817 ], [ 175.43972778, -36.11583328 ], [ 175.42971802, -36.11249924 ], [ 175.425277709999989, -36.11750031 ], [ 175.425277709999989, -36.13360977 ], [ 175.4291687, -36.14027786 ], [ 175.420272829999988, -36.14055634 ], [ 175.424728390000013, -36.14611053 ], [ 175.43722534, -36.14166641 ], [ 175.448608400000012, -36.15250015 ], [ 175.453338620000011, -36.15055466 ], [ 175.46360779, -36.15805435 ], [ 175.47555542, -36.1566658 ], [ 175.485000609999986, -36.16916656 ], [ 175.49694824, -36.16611099 ], [ 175.506103520000011, -36.17250061 ], [ 175.49638367, -36.17972183 ], [ 175.49667358, -36.18888855 ], [ 175.490005489999987, -36.1866684 ], [ 175.481384279999986, -36.20750046 ], [ 175.488891599999988, -36.21500015 ], [ 175.47361755, -36.23389053 ], [ 175.47639465, -36.24638748 ], [ 175.49777222, -36.26833344 ], [ 175.50971985000001, -36.26416779 ], [ 175.52194214, -36.27777863 ], [ 175.52667236, -36.27777863 ], [ 175.53666687, -36.2919426 ], [ 175.54556274, -36.29694366 ], [ 175.55082703, -36.31583405 ], [ 175.54167175, -36.3180542 ], [ 175.53694153, -36.32916641 ], [ 175.53833008, -36.33750153 ], [ 175.52915955, -36.34805679 ], [ 175.520278929999989, -36.3488884 ], [ 175.50054932, -36.33833313 ], [ 175.49028015, -36.34027863 ], [ 175.47389221, -36.33194351 ], [ 175.48445129000001, -36.31944275 ], [ 175.49194336, -36.32361221 ], [ 175.49417114, -36.31222153 ], [ 175.48944092, -36.30472183 ], [ 175.47055054, -36.30138779 ], [ 175.46833801, -36.30888748 ], [ 175.45944214, -36.3133316 ], [ 175.453887939999987, -36.30638885 ], [ 175.43222046, -36.30916595 ], [ 175.43417358, -36.28666687 ], [ 175.42944336, -36.2816658 ], [ 175.43305969, -36.27249908 ], [ 175.44250488, -36.26444626 ], [ 175.42555237, -36.26055527 ], [ 175.41471863000001, -36.26889038 ], [ 175.40333557, -36.26638794 ], [ 175.39805603, -36.25944519 ], [ 175.40361023, -36.25694275 ], [ 175.3972168, -36.2452774 ], [ 175.391113280000013, -36.24388885 ], [ 175.386383059999986, -36.2555542 ], [ 175.3722229, -36.25138855 ], [ 175.34944153, -36.22888947 ], [ 175.32278442, -36.22055435 ], [ 175.324996950000013, -36.22750092 ], [ 175.31416321, -36.22499847 ], [ 175.30860901, -36.21277618 ], [ 175.31388855, -36.20750046 ], [ 175.31195068, -36.19166565 ], [ 175.318603520000011, -36.19916534 ], [ 175.326110840000013, -36.19138718 ], [ 175.33833313, -36.21389008 ], [ 175.34222412, -36.20277786 ], [ 175.35795593, -36.20695877 ], [ 175.34693909, -36.19472122 ], [ 175.34750366, -36.1847229 ], [ 175.36694336, -36.18416595 ], [ 175.35083008, -36.17361069 ], [ 175.36054993, -36.17361069 ], [ 175.35945129000001, -36.16666794 ], [ 175.35139465, -36.16916656 ], [ 175.34555054, -36.16027832 ], [ 175.33860779, -36.15833282 ], [ 175.34777832, -36.15194321 ], [ 175.34666443, -36.14666748 ], [ 175.33555603, -36.14638901 ], [ 175.326385499999986, -36.13861084 ], [ 175.32000732, -36.1483345 ], [ 175.30944824, -36.13999939 ], [ 175.31083679, -36.1305542 ], [ 175.31832886, -36.1241684 ], [ 175.32583618000001, -36.13333511 ], [ 175.33999634, -36.13027954 ], [ 175.34472656, -36.1241684 ], [ 175.34916687, -36.13083267 ], [ 175.37333679, -36.11833191 ], [ 175.36416626, -36.11805725 ], [ 175.34916687, -36.10889053 ], [ 175.34222412, -36.0961113 ], [ 175.34777832, -36.07794189 ], [ 175.33972168, -36.07305527 ], [ 175.34666443, -36.0644455 ], [ 175.35139465, -36.06972122 ], [ 175.36785889, -36.06409073 ], [ 175.36917114, -36.05699158 ], [ 175.40083313, -36.04805374 ], [ 175.398895259999989, -36.04000092 ], [ 175.41055298, -36.02999878 ], [ 175.41055298, -36.02999878 ] ] ], [ [ [ 175.40756226, -36.02861023 ], [ 175.40632629000001, -36.0253334 ], [ 175.4085083, -36.02484512 ], [ 175.40756226, -36.02861023 ], [ 175.40756226, -36.02861023 ] ] ], [ [ [ 175.14620972, -35.93373108 ], [ 175.15499878, -35.94610977 ], [ 175.140274049999988, -35.94194412 ], [ 175.14620972, -35.93373108 ], [ 175.14620972, -35.93373108 ] ] ], [ [ [ 175.16027832, -35.92139053 ], [ 175.16221619, -35.92250061 ], [ 175.15986633, -35.92295074 ], [ 175.16027832, -35.92139053 ], [ 175.16027832, -35.92139053 ] ] ], [ [ [ 175.094360349999988, -35.91471863 ], [ 175.09463501, -35.91281128 ], [ 175.09555054, -35.91380692 ], [ 175.094360349999988, -35.91471863 ], [ 175.094360349999988, -35.91471863 ] ] ], [ [ [ 175.113891599999988, -35.91333389 ], [ 175.11444092, -35.91083145 ], [ 175.11582947, -35.91194534 ], [ 175.113891599999988, -35.91333389 ], [ 175.113891599999988, -35.91333389 ] ] ], [ [ [ 175.12083435, -35.90277863 ], [ 175.10212708, -35.91672134 ], [ 175.09555054, -35.9113884 ], [ 175.10583496000001, -35.90777588 ], [ 175.108337400000011, -35.90191269 ], [ 175.12083435, -35.90277863 ], [ 175.12083435, -35.90277863 ] ] ], [ [ [ 175.05667114, -35.9011116 ], [ 175.05471802, -35.90027618 ], [ 175.056396479999989, -35.89916611 ], [ 175.05667114, -35.9011116 ], [ 175.05667114, -35.9011116 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.2", "id_1": 2, "name_1": "Bay of Plenty", "hasc_1": "NZ.BP", "population2022": 347700, "areakm2": 13514.775, "density2022": 25.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.13305664, -38.01722336 ], [ 177.13583374000001, -38.01833344 ], [ 177.13389587, -38.02194595 ], [ 177.13305664, -38.01722336 ], [ 177.13305664, -38.01722336 ] ] ], [ [ [ 177.13166809, -38.0047226 ], [ 177.13945007, -38.00999832 ], [ 177.133605960000011, -38.01277924 ], [ 177.13166809, -38.0047226 ], [ 177.13166809, -38.0047226 ] ] ], [ [ [ 177.1555481, -37.99777603 ], [ 177.14692688, -38.00155258 ], [ 177.145004269999987, -37.99888992 ], [ 177.1555481, -37.99777603 ], [ 177.1555481, -37.99777603 ] ] ], [ [ [ 177.12416077, -37.9952774 ], [ 177.12477112, -38.00325394 ], [ 177.11471558, -38.00944519 ], [ 177.11416626, -37.99750137 ], [ 177.12416077, -37.9952774 ], [ 177.12416077, -37.9952774 ] ] ], [ [ [ 177.07139587, -37.98361206 ], [ 177.08528137, -37.99111176 ], [ 177.073883059999986, -37.99027634 ], [ 177.07139587, -37.98361206 ], [ 177.07139587, -37.98361206 ] ] ], [ [ [ 176.96972656, -37.84999847 ], [ 176.98809814, -37.85563278 ], [ 176.98742676, -37.85967636 ], [ 176.970916749999986, -37.85990143 ], [ 176.96037292, -37.85390854 ], [ 176.96333313, -37.84722137 ], [ 176.96972656, -37.84999847 ], [ 176.96972656, -37.84999847 ] ] ], [ [ [ 176.883605960000011, -37.83333206 ], [ 176.8833313, -37.83055496 ], [ 176.88694763, -37.83083344 ], [ 176.883605960000011, -37.83333206 ], [ 176.883605960000011, -37.83333206 ] ] ], [ [ [ 176.87527466, -37.83055496 ], [ 176.86860657, -37.83061981 ], [ 176.87693787, -37.82638931 ], [ 176.87527466, -37.83055496 ], [ 176.87527466, -37.83055496 ] ] ], [ [ [ 176.47917175, -37.7705574 ], [ 176.4805603, -37.77249908 ], [ 176.47805786, -37.77166748 ], [ 176.47917175, -37.7705574 ], [ 176.47917175, -37.7705574 ] ] ], [ [ [ 176.477035519999987, -37.77118683 ], [ 176.47618103, -37.77161789 ], [ 176.47547913, -37.77045059 ], [ 176.477035519999987, -37.77118683 ], [ 176.477035519999987, -37.77118683 ] ] ], [ [ [ 176.47471619, -37.76916504 ], [ 176.47361755, -37.76972198 ], [ 176.47277832, -37.76861191 ], [ 176.47471619, -37.76916504 ], [ 176.47471619, -37.76916504 ] ] ], [ [ [ 176.482223510000011, -37.76527786 ], [ 176.483612060000013, -37.76944351 ], [ 176.47666931, -37.76805496 ], [ 176.482223510000011, -37.76527786 ], [ 176.482223510000011, -37.76527786 ] ] ], [ [ [ 176.1930542, -37.6847229 ], [ 176.1958313, -37.68972397 ], [ 176.18972778, -37.68611145 ], [ 176.1930542, -37.6847229 ], [ 176.1930542, -37.6847229 ] ] ], [ [ [ 176.15249634, -37.68598938 ], [ 176.15138245, -37.6847229 ], [ 176.15377808, -37.68484497 ], [ 176.15249634, -37.68598938 ], [ 176.15249634, -37.68598938 ] ] ], [ [ [ 176.56222534, -37.66222382 ], [ 176.55805969, -37.66249847 ], [ 176.56138611, -37.65805435 ], [ 176.56222534, -37.66222382 ], [ 176.56222534, -37.66222382 ] ] ], [ [ [ 176.085479740000011, -37.63493347 ], [ 176.0665741, -37.64846802 ], [ 176.06195068, -37.64425278 ], [ 176.06929016, -37.6366272 ], [ 176.085479740000011, -37.63493347 ], [ 176.085479740000011, -37.63493347 ] ] ], [ [ [ 176.19458008, -37.63232803 ], [ 176.19332886, -37.63081741 ], [ 176.19429016, -37.63029099 ], [ 176.19458008, -37.63232803 ], [ 176.19458008, -37.63232803 ] ] ], [ [ [ 176.09092712, -37.61990738 ], [ 176.092300419999987, -37.6231041 ], [ 176.08757019, -37.62001038 ], [ 176.09092712, -37.61990738 ], [ 176.09092712, -37.61990738 ] ] ], [ [ [ 175.995346070000011, -37.6297226 ], [ 175.990310670000014, -37.6249733 ], [ 175.99446106, -37.61780167 ], [ 175.995346070000011, -37.6297226 ], [ 175.995346070000011, -37.6297226 ] ] ], [ [ [ 176.08473206, -37.61838913 ], [ 176.08369446, -37.61771774 ], [ 176.086547849999988, -37.61642456 ], [ 176.08473206, -37.61838913 ], [ 176.08473206, -37.61838913 ] ] ], [ [ [ 176.52705383, -37.60882187 ], [ 176.525894169999987, -37.6088829 ], [ 176.527145389999987, -37.60728836 ], [ 176.52705383, -37.60882187 ], [ 176.52705383, -37.60882187 ] ] ], [ [ [ 176.09280396, -37.60676193 ], [ 176.11193848, -37.6202774 ], [ 176.12306213, -37.61722183 ], [ 176.122833250000014, -37.63134384 ], [ 176.12693787, -37.63611221 ], [ 176.10723877, -37.63940811 ], [ 176.10481262, -37.61935806 ], [ 176.090591429999989, -37.60984039 ], [ 176.09280396, -37.60676193 ], [ 176.09280396, -37.60676193 ] ] ], [ [ [ 176.41667175, -37.6016655 ], [ 176.43777466, -37.61333466 ], [ 176.44000244, -37.6202774 ], [ 176.431427, -37.62984085 ], [ 176.42832947, -37.63916779 ], [ 176.41209412, -37.6425972 ], [ 176.40527344, -37.65472412 ], [ 176.40873718, -37.62427139 ], [ 176.41311646, -37.62330627 ], [ 176.41667175, -37.6016655 ], [ 176.41667175, -37.6016655 ] ] ], [ [ [ 176.018890379999988, -37.57277679 ], [ 176.02360535, -37.57583237 ], [ 176.01519775, -37.58384705 ], [ 176.00479126, -37.58496094 ], [ 176.00115967, -37.57711792 ], [ 176.018890379999988, -37.57277679 ], [ 176.018890379999988, -37.57277679 ] ] ], [ [ [ 176.024475099999989, -37.57344437 ], [ 176.022537230000012, -37.57178879 ], [ 176.02455139, -37.57227707 ], [ 176.024475099999989, -37.57344437 ], [ 176.024475099999989, -37.57344437 ] ] ], [ [ [ 176.01908875, -37.57110977 ], [ 176.015625, -37.57138824 ], [ 176.01716614, -37.56898117 ], [ 176.01908875, -37.57110977 ], [ 176.01908875, -37.57110977 ] ] ], [ [ [ 175.94778442, -37.5644455 ], [ 175.946105960000011, -37.5633316 ], [ 175.948593140000014, -37.56324005 ], [ 175.94778442, -37.5644455 ], [ 175.94778442, -37.5644455 ] ] ], [ [ [ 176.13334656, -37.52894974 ], [ 176.13269043, -37.53134918 ], [ 176.12931824, -37.52961731 ], [ 176.13334656, -37.52894974 ], [ 176.13334656, -37.52894974 ] ] ], [ [ [ 177.18083191, -37.50916672 ], [ 177.19491577, -37.51530075 ], [ 177.1930542, -37.52777863 ], [ 177.17971802, -37.52999878 ], [ 177.167221070000011, -37.51777649 ], [ 177.18083191, -37.50916672 ], [ 177.18083191, -37.50916672 ] ] ], [ [ [ 177.133605960000011, -37.47527695 ], [ 177.13583374000001, -37.47694397 ], [ 177.13194275, -37.47722244 ], [ 177.133605960000011, -37.47527695 ], [ 177.133605960000011, -37.47527695 ] ] ], [ [ [ 175.98852539, -37.47361374 ], [ 176.00416565, -37.47888947 ], [ 176.017654420000014, -37.48993301 ], [ 176.02946472, -37.50756073 ], [ 176.053924560000013, -37.53728104 ], [ 176.09513855, -37.58045578 ], [ 176.127014159999987, -37.60689926 ], [ 176.134704590000013, -37.61112213 ], [ 176.16163635, -37.63563538 ], [ 176.15208435, -37.64425278 ], [ 176.136260990000011, -37.63335419 ], [ 176.1277771, -37.63249969 ], [ 176.126861569999988, -37.61992645 ], [ 176.11875916, -37.61369324 ], [ 176.10813904, -37.61241913 ], [ 176.101760860000013, -37.60261154 ], [ 176.082229610000013, -37.59555435 ], [ 176.08100891, -37.60460281 ], [ 176.087677, -37.61185074 ], [ 176.08082581, -37.62194443 ], [ 176.07333374000001, -37.62250137 ], [ 176.064224239999987, -37.60777664 ], [ 176.03434753, -37.60134125 ], [ 176.027679440000014, -37.58443832 ], [ 176.02896118000001, -37.57270813 ], [ 176.03767395, -37.56790161 ], [ 176.056991579999988, -37.57234573 ], [ 176.068420409999987, -37.58197403 ], [ 176.068161010000011, -37.57081604 ], [ 176.053909299999987, -37.5659523 ], [ 176.03823853, -37.54964447 ], [ 176.02929688, -37.54592133 ], [ 176.015289309999986, -37.53305054 ], [ 176.00123596, -37.51208878 ], [ 175.98466492, -37.49910355 ], [ 175.98287964, -37.48009109 ], [ 175.98852539, -37.47361374 ], [ 175.98852539, -37.47361374 ] ] ], [ [ [ 175.94665527, -37.46854782 ], [ 175.94488525, -37.46573257 ], [ 175.94851685, -37.46558762 ], [ 175.94665527, -37.46854782 ], [ 175.94665527, -37.46854782 ] ] ], [ [ [ 175.9246521, -37.37372589 ], [ 175.92825317, -37.37813568 ], [ 175.94009399, -37.37508774 ], [ 175.938140870000012, -37.38247681 ], [ 175.94351196, -37.38829422 ], [ 175.939529420000014, -37.39912796 ], [ 175.9574585, -37.42624664 ], [ 175.983871459999989, -37.45849991 ], [ 175.99163818, -37.46605301 ], [ 175.978866579999988, -37.46902466 ], [ 175.97193909, -37.45444489 ], [ 175.961853029999986, -37.44865799 ], [ 175.94508362, -37.46009827 ], [ 175.94038391, -37.46871948 ], [ 175.93943787, -37.48138809 ], [ 175.947189329999986, -37.47925949 ], [ 175.93940735000001, -37.49137115 ], [ 175.93026733, -37.49583817 ], [ 175.94271851, -37.49932098 ], [ 175.95799255, -37.49225235 ], [ 175.96723938, -37.49481964 ], [ 175.978317260000011, -37.51382065 ], [ 175.960617070000012, -37.51981735 ], [ 175.94642639, -37.53164291 ], [ 175.936859129999988, -37.53033066 ], [ 175.920272829999988, -37.53416443 ], [ 175.936752320000011, -37.53646088 ], [ 175.94960022, -37.54481888 ], [ 175.95088196, -37.55825806 ], [ 175.94418335, -37.55559921 ], [ 175.93089294, -37.55924606 ], [ 175.93760681, -37.56319809 ], [ 175.92442322, -37.57474136 ], [ 175.92901611, -37.58218384 ], [ 175.94354248, -37.5689888 ], [ 175.943557739999989, -37.58070374 ], [ 175.95150757, -37.59152985 ], [ 175.96691895, -37.58249283 ], [ 175.97195435, -37.5737114 ], [ 175.98016357, -37.59008789 ], [ 175.96305847, -37.60138702 ], [ 175.96522522, -37.60536957 ], [ 175.98832703, -37.60833359 ], [ 175.99110413, -37.61639023 ], [ 175.97416687, -37.61972046 ], [ 175.991836549999988, -37.63219452 ], [ 175.99008179, -37.63947296 ], [ 176.00511169, -37.62836456 ], [ 176.01661682, -37.62411499 ], [ 176.01832581, -37.64138794 ], [ 176.03909302, -37.63681412 ], [ 176.04808044, -37.62693024 ], [ 176.04821777, -37.63459015 ], [ 176.03321838, -37.66100693 ], [ 176.04618835, -37.65228271 ], [ 176.0450592, -37.66077423 ], [ 176.05047607, -37.66926193 ], [ 176.04083252, -37.67944336 ], [ 176.05085754000001, -37.67770386 ], [ 176.05104065, -37.65898895 ], [ 176.0625, -37.66444397 ], [ 176.06364441, -37.65695953 ], [ 176.07395935, -37.65782547 ], [ 176.093261719999987, -37.66439819 ], [ 176.09509277, -37.67428589 ], [ 176.10128784, -37.67905045 ], [ 176.09378052, -37.68546677 ], [ 176.11207581, -37.67813873 ], [ 176.11860657, -37.67972183 ], [ 176.12638855, -37.67333221 ], [ 176.113632200000012, -37.66998291 ], [ 176.124542240000011, -37.65986252 ], [ 176.137496950000013, -37.66083145 ], [ 176.16296387, -37.66990662 ], [ 176.15583801, -37.67938614 ], [ 176.14756775, -37.68057632 ], [ 176.15179443, -37.69582367 ], [ 176.16098022, -37.6877594 ], [ 176.16654968, -37.66617203 ], [ 176.164825439999987, -37.66030884 ], [ 176.17694092, -37.66110992 ], [ 176.171249390000014, -37.67781067 ], [ 176.171661379999989, -37.68888855 ], [ 176.16653442, -37.69725037 ], [ 176.16648865, -37.71429825 ], [ 176.1622467, -37.71141434 ], [ 176.15222168, -37.71694565 ], [ 176.15974426, -37.72842789 ], [ 176.185317989999987, -37.70799637 ], [ 176.19128418, -37.71688461 ], [ 176.1819458, -37.72305679 ], [ 176.19917297, -37.72027588 ], [ 176.208786010000011, -37.71132278 ], [ 176.23088074, -37.7130661 ], [ 176.22619629, -37.7059021 ], [ 176.23620605, -37.69799042 ], [ 176.22200012, -37.69376373 ], [ 176.21611023, -37.6883316 ], [ 176.21217346, -37.69612885 ], [ 176.19029236, -37.70602036 ], [ 176.1791687, -37.69333267 ], [ 176.18499756, -37.68416595 ], [ 176.19781494, -37.69396591 ], [ 176.20561218, -37.68731689 ], [ 176.20132446, -37.67680359 ], [ 176.19410706, -37.68157578 ], [ 176.17930603, -37.66657639 ], [ 176.18278503, -37.64861298 ], [ 176.18008423, -37.63768387 ], [ 176.166107180000012, -37.63222122 ], [ 176.17416382, -37.6241684 ], [ 176.19644165, -37.64503479 ], [ 176.230010990000011, -37.6688118 ], [ 176.263595579999986, -37.6866951 ], [ 176.289535519999987, -37.69782257 ], [ 176.346191409999989, -37.71651077 ], [ 176.38117981, -37.73456955 ], [ 176.40541077, -37.74459076 ], [ 176.4458313, -37.75444412 ], [ 176.422637939999987, -37.75545502 ], [ 176.431991579999988, -37.76247787 ], [ 176.43760681, -37.75880432 ], [ 176.453887939999987, -37.75749969 ], [ 176.46833801, -37.73777771 ], [ 176.48051453, -37.76119614 ], [ 176.47305298, -37.76361084 ], [ 176.46888733, -37.77277756 ], [ 176.49380493000001, -37.77191544 ], [ 176.48306274, -37.75916672 ], [ 176.499069209999988, -37.7713356 ], [ 176.563568120000014, -37.80960083 ], [ 176.60649109, -37.83219147 ], [ 176.66053772, -37.85463333 ], [ 176.69010925, -37.8649826 ], [ 176.749679570000012, -37.88375473 ], [ 176.822021479999989, -37.89385605 ], [ 176.88221741000001, -37.90972137 ], [ 176.927795409999987, -37.91599655 ], [ 176.95407104, -37.92385483 ], [ 176.9831543, -37.93661499 ], [ 177.00805664, -37.94388962 ], [ 176.99316406, -37.94932556 ], [ 177.00639343, -37.94805527 ], [ 177.01306152, -37.93777847 ], [ 177.02333069, -37.94555664 ], [ 177.019195559999986, -37.95024872 ], [ 177.03416443, -37.96277618 ], [ 177.0597229, -37.9711113 ], [ 177.09944153, -37.97916794 ], [ 177.14305115, -37.98638916 ], [ 177.143890379999988, -37.99166489 ], [ 177.118896479999989, -37.98888779 ], [ 177.09666443, -37.98110962 ], [ 177.083618159999986, -37.97888947 ], [ 177.06832886, -37.98027802 ], [ 177.0625, -37.98416519 ], [ 177.06388855, -37.99305725 ], [ 177.0569458, -37.99583435 ], [ 177.06138611, -38.00972366 ], [ 177.07221985000001, -38.00916672 ], [ 177.07028198, -37.99694443 ], [ 177.08972168, -37.99611282 ], [ 177.08666992, -38.0055542 ], [ 177.09555054, -38.01583481 ], [ 177.09249878, -38.0027771 ], [ 177.1086731, -38.00219345 ], [ 177.11305237, -38.01111221 ], [ 177.10806274, -38.02249908 ], [ 177.11860657, -38.01777649 ], [ 177.13278198, -38.03694534 ], [ 177.15055847, -38.04277802 ], [ 177.15722656, -38.04027939 ], [ 177.14416504, -38.03472137 ], [ 177.13806152, -38.0205574 ], [ 177.142501829999986, -38.00916672 ], [ 177.15943909, -38.00972366 ], [ 177.16221619, -37.98749924 ], [ 177.198608400000012, -37.99111176 ], [ 177.184234620000012, -37.99274826 ], [ 177.193283079999986, -38.00144958 ], [ 177.19528198, -37.99250031 ], [ 177.2088623, -37.99084854 ], [ 177.262771609999987, -37.99194336 ], [ 177.27944946, -38.00166702 ], [ 177.2694397, -37.99166489 ], [ 177.34693909, -37.98833466 ], [ 177.38250732, -37.98361206 ], [ 177.391387939999987, -37.98555374 ], [ 177.419998170000014, -37.97722244 ], [ 177.426391599999988, -37.9663887 ], [ 177.43804932, -37.96755981 ], [ 177.443603520000011, -37.95722198 ], [ 177.44787598, -37.96107483 ], [ 177.486389159999987, -37.95027924 ], [ 177.49194336, -37.94194412 ], [ 177.488632200000012, -37.93442917 ], [ 177.52944946, -37.92055511 ], [ 177.546386719999987, -37.90750122 ], [ 177.544998170000014, -37.89666748 ], [ 177.55386353, -37.88376999 ], [ 177.57556152, -37.87333298 ], [ 177.58555603, -37.85925674 ], [ 177.58416748, -37.84444427 ], [ 177.58860779, -37.83666611 ], [ 177.606384279999986, -37.83722305 ], [ 177.612503049999987, -37.82583237 ], [ 177.611114500000014, -37.81277847 ], [ 177.61972046, -37.8069458 ], [ 177.63000488, -37.8144455 ], [ 177.64833069, -37.80638885 ], [ 177.6569519, -37.79249954 ], [ 177.65083313, -37.7863884 ], [ 177.66000366, -37.7761116 ], [ 177.67304993, -37.77111053 ], [ 177.68388367, -37.75805664 ], [ 177.678894039999989, -37.7480545 ], [ 177.66833496000001, -37.73833466 ], [ 177.7069397, -37.72166824 ], [ 177.707229610000013, -37.71472168 ], [ 177.7180481, -37.70611191 ], [ 177.727310179999989, -37.6775322 ], [ 177.75389099, -37.67388916 ], [ 177.79417419, -37.67666626 ], [ 177.80010986, -37.67329407 ], [ 177.800277709999989, -37.66444397 ], [ 177.81666565, -37.65611267 ], [ 177.83944702, -37.66249847 ], [ 177.86851501000001, -37.65096283 ], [ 177.87510681, -37.63760376 ], [ 177.883728029999986, -37.63711166 ], [ 177.88389587, -37.62916565 ], [ 177.890838620000011, -37.6269455 ], [ 177.889160159999989, -37.61916733 ], [ 177.90388489, -37.60305405 ], [ 177.91011047, -37.61603546 ], [ 177.91833496000001, -37.61888885 ], [ 177.94520569, -37.61809921 ], [ 177.95349121000001, -37.61465073 ], [ 177.95443726, -37.60638809 ], [ 177.96583557, -37.60138702 ], [ 177.9694519, -37.59361267 ], [ 177.98445129000001, -37.58388901 ], [ 177.99194336, -37.56750107 ], [ 177.983337400000011, -37.56361008 ], [ 177.97944641, -37.53777695 ], [ 177.983612060000013, -37.53583145 ], [ 178.00750732, -37.55194473 ], [ 178.03971863000001, -37.54249954 ], [ 178.0597229, -37.54000092 ], [ 178.0821228, -37.54546356 ], [ 178.07955933, -37.55147171 ], [ 178.09403992, -37.58409119 ], [ 178.105667110000013, -37.59650803 ], [ 178.03947449, -37.59576416 ], [ 178.020278929999989, -37.60207367 ], [ 177.984161379999989, -37.60866928 ], [ 177.9788208, -37.62128067 ], [ 177.972320559999986, -37.62343979 ], [ 177.97991943, -37.63170624 ], [ 177.973419189999987, -37.63385773 ], [ 177.992385860000013, -37.65461349 ], [ 177.99343872, -37.66508865 ], [ 177.9868927, -37.66723633 ], [ 177.99446106, -37.67557907 ], [ 177.98791504, -37.67772675 ], [ 177.99926758, -37.69025803 ], [ 177.99649048, -37.69659424 ], [ 177.98335266, -37.70090866 ], [ 177.98432922, -37.71144104 ], [ 177.99188232, -37.71981812 ], [ 177.97589111, -37.73050308 ], [ 177.9730835, -37.736866 ], [ 177.99591064, -37.76205063 ], [ 178.037170409999987, -37.73210144 ], [ 178.07418823, -37.76342773 ], [ 177.970489500000014, -37.84687042 ], [ 177.943115229999989, -37.91049576 ], [ 177.91697693, -37.98450089 ], [ 177.86262512, -38.11087799 ], [ 177.858764650000012, -38.1067009 ], [ 177.8494873, -38.11515808 ], [ 177.775741579999988, -38.06314087 ], [ 177.74331665, -38.04655838 ], [ 177.72399902, -38.0257225 ], [ 177.70046997, -38.02796173 ], [ 177.68887329, -38.01547241 ], [ 177.66923523, -38.02186966 ], [ 177.68467712, -38.03852081 ], [ 177.6781311, -38.04065323 ], [ 177.701263430000012, -38.06565475 ], [ 177.68815613000001, -38.06991196 ], [ 177.68930054, -38.0803833 ], [ 177.67619324, -38.08463287 ], [ 177.686599730000012, -38.08668137 ], [ 177.68774414, -38.0971489 ], [ 177.69543457, -38.10549545 ], [ 177.69271851, -38.11179733 ], [ 177.65992737, -38.12240982 ], [ 177.661056519999988, -38.13288498 ], [ 177.649063109999986, -38.14759445 ], [ 177.66056824, -38.16012955 ], [ 177.64089966, -38.1664772 ], [ 177.630508420000012, -38.16440582 ], [ 177.62779236, -38.17070007 ], [ 177.60813904, -38.17702103 ], [ 177.60430908, -38.1728363 ], [ 177.60270691, -38.18959045 ], [ 177.56350708, -38.20214462 ], [ 177.567321779999986, -38.20633316 ], [ 177.55618286, -38.21260071 ], [ 177.530899049999988, -38.21256256 ], [ 177.531997679999989, -38.22303391 ], [ 177.515151980000013, -38.22299957 ], [ 177.51135254, -38.21879959 ], [ 177.49180603, -38.22502899 ], [ 177.49940491000001, -38.23342514 ], [ 177.49667358, -38.23970032 ], [ 177.48364258, -38.24385071 ], [ 177.495040890000013, -38.25645447 ], [ 177.48851013, -38.25852966 ], [ 177.49610901, -38.26693344 ], [ 177.50263977, -38.26485443 ], [ 177.49064636, -38.27949142 ], [ 177.49276733, -38.300457 ], [ 177.471466060000012, -38.32346344 ], [ 177.46594238, -38.33602142 ], [ 177.45283508, -38.34014893 ], [ 177.4434967, -38.34848404 ], [ 177.39471436, -38.36911011 ], [ 177.34864807, -38.38344955 ], [ 177.299743650000011, -38.40407562 ], [ 177.237808230000013, -38.42886353 ], [ 177.25862122, -38.50911713 ], [ 177.249252320000011, -38.5174942 ], [ 177.245483400000012, -38.51325607 ], [ 177.23049927, -38.5342598 ], [ 177.21362305, -38.53416824 ], [ 177.206130980000012, -38.52568436 ], [ 177.199569700000012, -38.52775574 ], [ 177.19116211, -38.54670334 ], [ 177.18180847, -38.55509186 ], [ 177.18275452, -38.56565094 ], [ 177.1631012, -38.5718689 ], [ 177.17059326, -38.58036423 ], [ 177.14442444, -38.58865738 ], [ 177.14723206, -38.58233261 ], [ 177.13041687, -38.5822258 ], [ 177.12110901, -38.59062195 ], [ 177.11552429, -38.60327148 ], [ 177.10899353, -38.60534668 ], [ 177.100631709999988, -38.62432861 ], [ 177.096893310000013, -38.62007523 ], [ 177.0838623, -38.62421799 ], [ 177.08291626, -38.6136322 ], [ 177.06990051, -38.61777115 ], [ 177.060607909999987, -38.62615967 ], [ 177.04393005, -38.62598419 ], [ 177.047637939999987, -38.63026047 ], [ 177.034683230000013, -38.63433456 ], [ 177.026412959999988, -38.65325928 ], [ 177.01994324, -38.65528488 ], [ 177.02735901, -38.66384506 ], [ 177.02088928, -38.66587067 ], [ 177.0153656, -38.67847824 ], [ 177.002441409999989, -38.68251419 ], [ 177.00337219, -38.69309998 ], [ 176.98396301, -38.69913864 ], [ 176.987670900000012, -38.70342636 ], [ 176.9682312, -38.70945358 ], [ 176.967300419999987, -38.69887161 ], [ 176.95433044, -38.70288467 ], [ 176.9506073, -38.69859695 ], [ 176.93763733, -38.70261002 ], [ 176.9302063, -38.69403839 ], [ 176.90977478, -38.68947601 ], [ 176.89115906, -38.66804886 ], [ 176.87164307, -38.67407227 ], [ 176.87536621000001, -38.67835617 ], [ 176.862350459999988, -38.68237305 ], [ 176.85490417, -38.67380142 ], [ 176.84559631, -38.6821022 ], [ 176.83256531, -38.68611908 ], [ 176.82325745, -38.69441986 ], [ 176.79901123, -38.68558502 ], [ 176.795272829999988, -38.68130112 ], [ 176.77571106, -38.68732834 ], [ 176.7766571, -38.69789886 ], [ 176.76454163, -38.71247864 ], [ 176.75149536, -38.71648026 ], [ 176.752441409999989, -38.72704697 ], [ 176.73937988, -38.73104477 ], [ 176.73190308, -38.72247696 ], [ 176.71885681, -38.72647095 ], [ 176.719802859999987, -38.73703003 ], [ 176.711425780000013, -38.75586319 ], [ 176.71611023, -38.77070236 ], [ 176.70774841, -38.78952408 ], [ 176.71801758, -38.79181671 ], [ 176.70495605, -38.79579544 ], [ 176.71244812, -38.80435944 ], [ 176.6993866, -38.80833817 ], [ 176.7003479, -38.81888962 ], [ 176.711578370000012, -38.8317337 ], [ 176.70225525, -38.83998489 ], [ 176.70976257, -38.84854889 ], [ 176.619232180000012, -38.92478943 ], [ 176.603317260000011, -38.93504333 ], [ 176.600509640000013, -38.94130707 ], [ 176.60804749, -38.94984436 ], [ 176.598693849999989, -38.95811081 ], [ 176.609985349999988, -38.97091293 ], [ 176.603424069999988, -38.97291565 ], [ 176.61849976, -38.9899826 ], [ 176.61193848, -38.99198532 ], [ 176.61947632, -39.00051498 ], [ 176.54814148, -38.9952507 ], [ 176.55567932, -39.00378036 ], [ 176.45428467, -39.00237656 ], [ 176.422485349999988, -39.06100845 ], [ 176.45185852, -39.12254333 ], [ 176.437713620000011, -39.11604309 ], [ 176.42077637, -39.11582947 ], [ 176.37469482, -39.13002777 ], [ 176.38505554, -39.132267 ], [ 176.400192260000011, -39.14933014 ], [ 176.40116882, -39.15988922 ], [ 176.38800049, -39.16394806 ], [ 176.344680790000012, -39.17187119 ], [ 176.23622131, -39.09662628 ], [ 176.2559967, -39.09053802 ], [ 176.26539612, -39.08221054 ], [ 176.28515625, -39.0761261 ], [ 176.286087040000012, -39.04868698 ], [ 176.27760315, -39.02957153 ], [ 176.26725769, -39.02732086 ], [ 176.27290344, -39.01472473 ], [ 176.28889465, -39.00437927 ], [ 176.28137207, -38.99583054 ], [ 176.28044128, -38.98526001 ], [ 176.26634216, -38.97873688 ], [ 176.26165771, -38.96389008 ], [ 176.26823425, -38.96186829 ], [ 176.2635498, -38.94701767 ], [ 176.26170349, -38.9258728 ], [ 176.248550419999987, -38.92991257 ], [ 176.23822021, -38.92765427 ], [ 176.22596741000001, -38.94226837 ], [ 176.215637210000011, -38.94001007 ], [ 176.20246887, -38.94404984 ], [ 176.194976809999986, -38.93548965 ], [ 176.18838501, -38.93750763 ], [ 176.16589355, -38.91181946 ], [ 176.15931702, -38.91383743 ], [ 176.13684082, -38.88813019 ], [ 176.14343262, -38.88611603 ], [ 176.12934875, -38.87956238 ], [ 176.132202150000012, -38.8732605 ], [ 176.11723328, -38.85611343 ], [ 176.13414001000001, -38.85637665 ], [ 176.12664795, -38.84780121 ], [ 176.12007141, -38.84981537 ], [ 176.09764099, -38.82408905 ], [ 176.10421753, -38.8220787 ], [ 176.096740720000014, -38.81349945 ], [ 176.10990906, -38.80947876 ], [ 176.10243225, -38.80090332 ], [ 176.1166687, -38.76941299 ], [ 176.219802859999987, -38.79217529 ], [ 176.24145508, -38.76927948 ], [ 176.26116943, -38.76324844 ], [ 176.17713928, -38.68585587 ], [ 176.21022034, -38.63781738 ], [ 176.21875, -38.61894989 ], [ 176.21130371000001, -38.61037064 ], [ 176.22444153, -38.60636902 ], [ 176.2104187, -38.59979248 ], [ 176.19729614, -38.6037941 ], [ 176.15153503, -38.57975769 ], [ 176.141250609999986, -38.57746506 ], [ 176.12153625, -38.58346558 ], [ 176.1206665, -38.57287598 ], [ 176.10951233, -38.55999756 ], [ 176.08607483, -38.5616951 ], [ 176.07579041, -38.55939484 ], [ 176.05606079, -38.56538773 ], [ 176.048629760000011, -38.55679321 ], [ 176.0552063, -38.55479813 ], [ 176.047775269999988, -38.54620361 ], [ 176.06378174, -38.53591537 ], [ 176.05262756, -38.5230217 ], [ 176.05834961, -38.5104332 ], [ 176.085495, -38.51304245 ], [ 176.08834839, -38.5067482 ], [ 176.11946106, -38.47558594 ], [ 176.12231445, -38.46929169 ], [ 176.139160159999989, -38.46959686 ], [ 176.13829041, -38.45900726 ], [ 176.144851679999988, -38.45701218 ], [ 176.1559906, -38.46989822 ], [ 176.14942932, -38.47189713 ], [ 176.156860349999988, -38.48048782 ], [ 176.15400696, -38.48677826 ], [ 176.16143799, -38.49536896 ], [ 176.16799927, -38.49337006 ], [ 176.181991579999988, -38.49996185 ], [ 176.17913818, -38.5062561 ], [ 176.186569209999988, -38.51484299 ], [ 176.18373108, -38.52113342 ], [ 176.19685364, -38.51713943 ], [ 176.21084595, -38.5237236 ], [ 176.22396851, -38.5197258 ], [ 176.23425293, -38.52201843 ], [ 176.24737549, -38.51801682 ], [ 176.250213620000011, -38.51172638 ], [ 176.282989500000014, -38.50172806 ], [ 176.28210449, -38.49114609 ], [ 176.30177307, -38.48514175 ], [ 176.312026980000013, -38.48743057 ], [ 176.33061218, -38.5088768 ], [ 176.327789309999986, -38.51516724 ], [ 176.30618286, -38.53804016 ], [ 176.31361389, -38.5466156 ], [ 176.310791020000011, -38.55290604 ], [ 176.32478333, -38.55947495 ], [ 176.36587524, -38.56860733 ], [ 176.392211909999986, -38.52258301 ], [ 176.39785767, -38.51000595 ], [ 176.418396, -38.51457596 ], [ 176.45661926, -38.53000259 ], [ 176.4874115, -38.53685379 ], [ 176.48651123, -38.52627945 ], [ 176.47906494, -38.51770782 ], [ 176.49507141, -38.46939468 ], [ 176.50071716, -38.45681 ], [ 176.50544739, -38.43364716 ], [ 176.511093140000014, -38.42106247 ], [ 176.51301575, -38.40418243 ], [ 176.48701477, -38.37415314 ], [ 176.48048401, -38.37615585 ], [ 176.47306824, -38.3675766 ], [ 176.43209839, -38.35842514 ], [ 176.41531372, -38.35814285 ], [ 176.39677429, -38.33668137 ], [ 176.39024353, -38.33868408 ], [ 176.379119870000011, -38.32580566 ], [ 176.34927368000001, -38.32952118 ], [ 176.3250885, -38.32064438 ], [ 176.327911379999989, -38.31435013 ], [ 176.31114197, -38.3140564 ], [ 176.313964840000011, -38.30776215 ], [ 176.3028717, -38.2948761 ], [ 176.30569458, -38.28857803 ], [ 176.29545593, -38.2862854 ], [ 176.29829407, -38.27998734 ], [ 176.28521729, -38.28398895 ], [ 176.284362789999989, -38.27339554 ], [ 176.26046753, -38.22642136 ], [ 176.256774900000011, -38.22212219 ], [ 176.269851679999988, -38.2181282 ], [ 176.265304570000012, -38.20323563 ], [ 176.2681427, -38.19694138 ], [ 176.24969482, -38.17544937 ], [ 176.256225590000014, -38.17345047 ], [ 176.245162959999988, -38.16055298 ], [ 176.25169373, -38.15855789 ], [ 176.2406311, -38.14565659 ], [ 176.247161870000014, -38.1436615 ], [ 176.246307370000011, -38.13306808 ], [ 176.252838129999986, -38.131073 ], [ 176.23809814, -38.11386871 ], [ 176.22503662, -38.11785126 ], [ 176.23072815, -38.10526276 ], [ 176.22052002, -38.10295105 ], [ 176.21315002, -38.09434128 ], [ 176.20661926, -38.09633255 ], [ 176.191894530000013, -38.07911301 ], [ 176.17800903, -38.07249069 ], [ 176.158401489999989, -38.07845306 ], [ 176.14451599, -38.07182693 ], [ 176.13143921, -38.07580185 ], [ 176.12121582, -38.07348251 ], [ 176.07952881, -38.05358505 ], [ 176.06195068, -38.04264069 ], [ 176.06768799, -38.03004837 ], [ 176.05665588, -38.01712036 ], [ 176.042755129999989, -38.01047897 ], [ 176.036209109999987, -38.0124588 ], [ 176.02151489, -37.99520493 ], [ 176.001068120000014, -37.99052811 ], [ 175.98797607, -37.99448013 ], [ 175.97409058, -37.98781967 ], [ 175.979843140000014, -37.97523499 ], [ 175.97250366, -37.9665947 ], [ 175.95573425, -37.96622086 ], [ 175.958618159999986, -37.95992661 ], [ 175.95129395, -37.9512825 ], [ 175.94317627, -37.93202209 ], [ 175.9526062, -37.92376328 ], [ 175.97879028, -37.91588211 ], [ 175.96124268, -37.90488815 ], [ 175.97644043, -37.88404846 ], [ 175.967010499999986, -37.89230728 ], [ 175.95968628, -37.88366318 ], [ 175.94294739, -37.88327408 ], [ 175.942169189999987, -37.87266541 ], [ 175.948715209999989, -37.87069702 ], [ 175.93486023, -37.86401749 ], [ 175.93774414, -37.85773087 ], [ 175.930435179999989, -37.84908295 ], [ 175.94352722, -37.84515381 ], [ 175.9092865, -37.83374786 ], [ 175.92086792, -37.80861664 ], [ 175.92881775, -37.77917862 ], [ 175.92079163, -37.75994492 ], [ 175.90551758, -37.73206329 ], [ 175.89825439, -37.72341156 ], [ 175.904800419999987, -37.72146606 ], [ 175.890274049999988, -37.70415878 ], [ 175.876464840000011, -37.6974411 ], [ 175.875762939999987, -37.68683624 ], [ 175.864883420000012, -37.67382813 ], [ 175.871429440000014, -37.67189026 ], [ 175.857635499999986, -37.66514969 ], [ 175.83953857, -37.64342499 ], [ 175.846069340000014, -37.64148712 ], [ 175.83522034, -37.6284256 ], [ 175.844680790000012, -37.62019348 ], [ 175.84397888, -37.60952759 ], [ 175.82228088, -37.58328629 ], [ 175.82159424, -37.57258224 ], [ 175.810760499999986, -37.55941772 ], [ 175.836288450000012, -37.54096603 ], [ 175.82546997, -37.52778625 ], [ 175.82843018, -37.5214653 ], [ 175.81106567, -37.5102005 ], [ 175.81040955, -37.49946976 ], [ 175.8235321, -37.49562073 ], [ 175.81632996, -37.48681641 ], [ 175.8354187, -37.47035217 ], [ 175.843246459999989, -37.48987579 ], [ 175.86062622, -37.50116348 ], [ 175.8737793, -37.49734879 ], [ 175.90072632, -37.50042343 ], [ 175.90370178, -37.49413681 ], [ 175.88569641, -37.47217941 ], [ 175.87252808, -37.47596741 ], [ 175.86172485, -37.46276474 ], [ 175.88442993000001, -37.45083237 ], [ 175.88375854, -37.44016266 ], [ 175.89755249000001, -37.44709015 ], [ 175.90986633, -37.43274689 ], [ 175.9163208, -37.43091202 ], [ 175.90516663, -37.41771317 ], [ 175.910369870000011, -37.40530777 ], [ 175.92033386, -37.40795135 ], [ 175.92201233, -37.39107895 ], [ 175.92871094, -37.38906097 ], [ 175.914855960000011, -37.38217163 ], [ 175.9246521, -37.37372589 ], [ 175.9246521, -37.37372589 ] ] ], [ [ [ 176.262176509999989, -37.26832581 ], [ 176.27552795, -37.26803207 ], [ 176.28083801, -37.27249908 ], [ 176.27261353, -37.2855835 ], [ 176.2769165, -37.29076767 ], [ 176.270431519999988, -37.29637909 ], [ 176.27049255, -37.30449295 ], [ 176.25492859, -37.31015015 ], [ 176.24272156, -37.30212402 ], [ 176.231506349999989, -37.28545761 ], [ 176.23832703, -37.27194595 ], [ 176.262176509999989, -37.26832581 ], [ 176.262176509999989, -37.26832581 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": 655000, "areakm2": 44553.886, "density2022": 14.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.4", "id_1": 4, "name_1": "Chatham Islands", "hasc_1": "NZ.CI", "population2022": 800, "areakm2": 819.511, "density2022": 0.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.23971558, -44.43000031 ], [ -176.237228390000013, -44.43416595 ], [ -176.24333191, -44.43249893 ], [ -176.23971558, -44.43000031 ], [ -176.23971558, -44.43000031 ] ] ], [ [ [ -176.327331539999989, -44.3699379 ], [ -176.32952881, -44.36924744 ], [ -176.32830811, -44.36832428 ], [ -176.327331539999989, -44.3699379 ], [ -176.327331539999989, -44.3699379 ] ] ], [ [ [ -176.28053284, -44.37034988 ], [ -176.27955627, -44.36816025 ], [ -176.27865601, -44.36936951 ], [ -176.28053284, -44.37034988 ], [ -176.28053284, -44.37034988 ] ] ], [ [ [ -176.24858093, -44.35507584 ], [ -176.245742799999988, -44.35674667 ], [ -176.248413090000014, -44.35646057 ], [ -176.24858093, -44.35507584 ], [ -176.24858093, -44.35507584 ] ] ], [ [ [ -176.237823490000011, -44.35574722 ], [ -176.242385860000013, -44.35787964 ], [ -176.24205017, -44.35546112 ], [ -176.237823490000011, -44.35574722 ], [ -176.237823490000011, -44.35574722 ] ] ], [ [ [ -176.27166748, -44.35388947 ], [ -176.26817322, -44.35628891 ], [ -176.27102661, -44.35680771 ], [ -176.27166748, -44.35388947 ], [ -176.27166748, -44.35388947 ] ] ], [ [ [ -176.27694702, -44.35749817 ], [ -176.27806091, -44.35610962 ], [ -176.27397156, -44.35361481 ], [ -176.27694702, -44.35749817 ], [ -176.27694702, -44.35749817 ] ] ], [ [ [ -176.16116333, -44.3524437 ], [ -176.15921021, -44.35434723 ], [ -176.16172791, -44.35492325 ], [ -176.16116333, -44.3524437 ], [ -176.16116333, -44.3524437 ] ] ], [ [ [ -176.17523193, -44.33598709 ], [ -176.166076659999987, -44.33908463 ], [ -176.16864014, -44.34720993 ], [ -176.16267395, -44.34992599 ], [ -176.168762210000011, -44.35717773 ], [ -176.1862793, -44.34912872 ], [ -176.1809845, -44.33683777 ], [ -176.17523193, -44.33598709 ], [ -176.17523193, -44.33598709 ] ] ], [ [ [ -176.345611569999988, -44.29091644 ], [ -176.34707642, -44.29091644 ], [ -176.34602356, -44.28890228 ], [ -176.345611569999988, -44.29091644 ], [ -176.345611569999988, -44.29091644 ] ] ], [ [ [ -176.39329529, -44.2882843 ], [ -176.3944397, -44.28667068 ], [ -176.39273071, -44.2869606 ], [ -176.39329529, -44.2882843 ], [ -176.39329529, -44.2882843 ] ] ], [ [ [ -176.3380127, -44.28578949 ], [ -176.340347290000011, -44.28897476 ], [ -176.342285159999989, -44.2872467 ], [ -176.3380127, -44.28578949 ], [ -176.3380127, -44.28578949 ] ] ], [ [ [ -176.313400269999988, -44.27650452 ], [ -176.3099823, -44.28019333 ], [ -176.32029724, -44.28152084 ], [ -176.313400269999988, -44.27650452 ], [ -176.313400269999988, -44.27650452 ] ] ], [ [ [ -176.28132629000001, -44.27167511 ], [ -176.283111569999988, -44.27092361 ], [ -176.281570429999988, -44.27058029 ], [ -176.28132629000001, -44.27167511 ], [ -176.28132629000001, -44.27167511 ] ] ], [ [ [ -176.1289978, -44.27043915 ], [ -176.131103520000011, -44.26934433 ], [ -176.12875366, -44.26893997 ], [ -176.1289978, -44.27043915 ], [ -176.1289978, -44.27043915 ] ] ], [ [ [ -176.12802124000001, -44.26571274 ], [ -176.129394530000013, -44.26490784 ], [ -176.12834167, -44.26467514 ], [ -176.12802124000001, -44.26571274 ], [ -176.12802124000001, -44.26571274 ] ] ], [ [ [ -176.292221070000011, -44.26236343 ], [ -176.28710938, -44.27060318 ], [ -176.301239009999989, -44.277565 ], [ -176.31002808, -44.27677917 ], [ -176.29945374, -44.27124786 ], [ -176.3019104, -44.26719284 ], [ -176.292221070000011, -44.26236343 ], [ -176.292221070000011, -44.26236343 ] ] ], [ [ [ -176.279235840000013, -44.23928452 ], [ -176.28208923, -44.24160385 ], [ -176.28572083, -44.23941422 ], [ -176.279235840000013, -44.23928452 ], [ -176.279235840000013, -44.23928452 ] ] ], [ [ [ -176.22309875, -44.22398376 ], [ -176.21255493000001, -44.2243042 ], [ -176.19625854, -44.23195648 ], [ -176.19096375, -44.24119949 ], [ -176.16413879000001, -44.26426315 ], [ -176.1559906, -44.2612114 ], [ -176.15400696, -44.27312088 ], [ -176.18453979, -44.28730774 ], [ -176.19993591, -44.30501175 ], [ -176.195510860000013, -44.31244278 ], [ -176.20135498, -44.31624603 ], [ -176.20210266, -44.32706451 ], [ -176.21369934, -44.33409882 ], [ -176.22642517, -44.3342247 ], [ -176.22456360000001, -44.34135818 ], [ -176.243896479999989, -44.35499954 ], [ -176.24737549, -44.34856796 ], [ -176.25744629, -44.34447098 ], [ -176.24835205, -44.33520508 ], [ -176.249069209999988, -44.32810974 ], [ -176.26690674, -44.32461548 ], [ -176.25744629, -44.31946182 ], [ -176.2532196, -44.30890274 ], [ -176.260650629999986, -44.30834961 ], [ -176.2641449, -44.29935837 ], [ -176.256103520000011, -44.29365158 ], [ -176.26216125, -44.28289795 ], [ -176.25694275, -44.27520752 ], [ -176.24147034, -44.2731781 ], [ -176.239349370000014, -44.26580429 ], [ -176.249679570000012, -44.25969696 ], [ -176.25640869, -44.24978256 ], [ -176.276718140000014, -44.24303436 ], [ -176.25547791, -44.24035645 ], [ -176.23733521, -44.24071121 ], [ -176.22309875, -44.22398376 ], [ -176.22309875, -44.22398376 ] ] ], [ [ [ -176.01545715, -44.22029495 ], [ -176.011383059999986, -44.22416687 ], [ -176.0177002, -44.22338104 ], [ -176.01545715, -44.22029495 ], [ -176.01545715, -44.22029495 ] ] ], [ [ [ -175.984161379999989, -44.22138977 ], [ -175.988616940000014, -44.22682953 ], [ -175.992813109999986, -44.22527695 ], [ -175.984161379999989, -44.22138977 ], [ -175.984161379999989, -44.22138977 ] ] ], [ [ [ -176.52307129, -44.10287476 ], [ -176.52510071, -44.10201263 ], [ -176.52201843, -44.1006279 ], [ -176.52307129, -44.10287476 ], [ -176.52307129, -44.10287476 ] ] ], [ [ [ -175.8354187, -43.96092224 ], [ -175.82855225, -43.96641159 ], [ -175.84072876, -43.96123123 ], [ -175.8354187, -43.96092224 ], [ -175.8354187, -43.96092224 ] ] ], [ [ [ -176.43263245, -43.91785431 ], [ -176.43496704, -43.91627502 ], [ -176.43386841, -43.91572571 ], [ -176.43263245, -43.91785431 ], [ -176.43263245, -43.91785431 ] ] ], [ [ [ -176.43005371000001, -43.91435242 ], [ -176.43238831, -43.91266632 ], [ -176.43174744, -43.91179276 ], [ -176.43005371000001, -43.91435242 ], [ -176.43005371000001, -43.91435242 ] ] ], [ [ [ -176.92964172, -43.87784958 ], [ -176.929489139999987, -43.88058472 ], [ -176.934494019999988, -43.87849045 ], [ -176.92964172, -43.87784958 ], [ -176.92964172, -43.87784958 ] ] ], [ [ [ -176.41412354, -43.83907318 ], [ -176.41685486, -43.83657074 ], [ -176.4125061, -43.83535004 ], [ -176.41412354, -43.83907318 ], [ -176.41412354, -43.83907318 ] ] ], [ [ [ -176.42414856, -43.83542633 ], [ -176.426818849999989, -43.83486938 ], [ -176.42410278, -43.8331871 ], [ -176.42414856, -43.83542633 ], [ -176.42414856, -43.83542633 ] ] ], [ [ [ -176.71353149, -43.83267593 ], [ -176.71473694, -43.83151245 ], [ -176.71208191, -43.83017349 ], [ -176.71353149, -43.83267593 ], [ -176.71353149, -43.83267593 ] ] ], [ [ [ -176.407958979999989, -43.82998657 ], [ -176.40626526, -43.83057022 ], [ -176.40875244, -43.83091736 ], [ -176.407958979999989, -43.82998657 ], [ -176.407958979999989, -43.82998657 ] ] ], [ [ [ -176.43205261, -43.83083725 ], [ -176.436035159999989, -43.83108521 ], [ -176.43052673, -43.82479095 ], [ -176.43205261, -43.83083725 ], [ -176.43205261, -43.83083725 ] ] ], [ [ [ -176.43678284, -43.82921982 ], [ -176.43933105, -43.82778931 ], [ -176.43278503, -43.82491684 ], [ -176.43678284, -43.82921982 ], [ -176.43678284, -43.82921982 ] ] ], [ [ [ -176.439086909999986, -43.82643127 ], [ -176.440505980000012, -43.82563782 ], [ -176.437042240000011, -43.8237114 ], [ -176.439086909999986, -43.82643127 ], [ -176.439086909999986, -43.82643127 ] ] ], [ [ [ -176.62588501, -43.69239426 ], [ -176.60824585, -43.70328522 ], [ -176.58227539, -43.70502472 ], [ -176.564666749999986, -43.71256256 ], [ -176.54771423, -43.71541214 ], [ -176.54589844, -43.7191658 ], [ -176.52955627, -43.72319794 ], [ -176.4977417, -43.72211838 ], [ -176.49609375, -43.73063278 ], [ -176.477600099999989, -43.7409668 ], [ -176.45962524, -43.74511337 ], [ -176.43136597, -43.74827576 ], [ -176.38768005, -43.74391937 ], [ -176.36070251000001, -43.74326706 ], [ -176.34669495, -43.73379135 ], [ -176.335174560000013, -43.73662949 ], [ -176.31973267, -43.74703217 ], [ -176.29953003, -43.74700165 ], [ -176.29034424, -43.74152756 ], [ -176.27926636, -43.74197769 ], [ -176.2668457, -43.7339325 ], [ -176.25392151, -43.73472214 ], [ -176.24746704, -43.72679901 ], [ -176.22434998, -43.73405457 ], [ -176.21340942, -43.73297119 ], [ -176.207504269999987, -43.72694397 ], [ -176.19917297, -43.73860931 ], [ -176.217163090000014, -43.74406815 ], [ -176.222198490000011, -43.74076843 ], [ -176.241256709999988, -43.75662994 ], [ -176.23620605, -43.77058411 ], [ -176.23997498, -43.77492905 ], [ -176.24995422, -43.76622391 ], [ -176.26525879, -43.76151276 ], [ -176.28335571, -43.76313782 ], [ -176.30926514, -43.77268219 ], [ -176.32684326, -43.78305435 ], [ -176.34713745, -43.79963684 ], [ -176.365448, -43.81807327 ], [ -176.384552, -43.84243011 ], [ -176.40054321, -43.86891174 ], [ -176.40818787, -43.88647461 ], [ -176.41708374000001, -43.92494965 ], [ -176.42758179, -43.91875076 ], [ -176.42694092, -43.90750122 ], [ -176.417770389999987, -43.89277649 ], [ -176.42004395, -43.86566925 ], [ -176.430175780000013, -43.84100723 ], [ -176.422225950000012, -43.84749985 ], [ -176.40429688, -43.83200836 ], [ -176.402771, -43.82025146 ], [ -176.38053894, -43.81056976 ], [ -176.36582947, -43.81000137 ], [ -176.36366272, -43.8014946 ], [ -176.3747406, -43.79185104 ], [ -176.39305115, -43.76916504 ], [ -176.43510437, -43.75144196 ], [ -176.45491028, -43.75160217 ], [ -176.47651672, -43.74753571 ], [ -176.49972534, -43.76380157 ], [ -176.503707889999987, -43.7551918 ], [ -176.51509094, -43.74391174 ], [ -176.54563904, -43.73727036 ], [ -176.553756709999988, -43.74252701 ], [ -176.54896545, -43.75228119 ], [ -176.559494019999988, -43.75935364 ], [ -176.55871582, -43.77790451 ], [ -176.546264650000012, -43.78149796 ], [ -176.54577637, -43.78833389 ], [ -176.53320313, -43.79703903 ], [ -176.4967804, -43.79663467 ], [ -176.48155212, -43.80296326 ], [ -176.4637146, -43.80083084 ], [ -176.45120239, -43.80254745 ], [ -176.442993159999986, -43.80849457 ], [ -176.46485901, -43.81502533 ], [ -176.47589111, -43.82344055 ], [ -176.490325930000012, -43.8219986 ], [ -176.50770569, -43.83974457 ], [ -176.51925659, -43.84616089 ], [ -176.52470398, -43.85586166 ], [ -176.52204895, -43.87018204 ], [ -176.51043701, -43.88972092 ], [ -176.473709109999987, -43.91674042 ], [ -176.473297120000012, -43.93069458 ], [ -176.48434448, -43.95026016 ], [ -176.47695923, -43.95605469 ], [ -176.453765870000012, -43.96497345 ], [ -176.43611145, -43.96777725 ], [ -176.43028259, -43.95972061 ], [ -176.43095398, -43.94293594 ], [ -176.42619324, -43.93333054 ], [ -176.43638611, -43.93361282 ], [ -176.45083618000001, -43.92499924 ], [ -176.422775269999988, -43.92250061 ], [ -176.41702271, -43.9278717 ], [ -176.41487122, -43.95622253 ], [ -176.408569340000014, -43.98202515 ], [ -176.402145389999987, -43.99652481 ], [ -176.39047241, -44.0147438 ], [ -176.37388611, -44.02472305 ], [ -176.359024049999988, -44.02130127 ], [ -176.34667969, -44.03115845 ], [ -176.32452393, -44.03368378 ], [ -176.327774049999988, -44.03702927 ], [ -176.325973510000011, -44.05187225 ], [ -176.34370422, -44.05063248 ], [ -176.35745239, -44.0583992 ], [ -176.38006592, -44.05869293 ], [ -176.391098019999987, -44.05384445 ], [ -176.43745422, -44.06628799 ], [ -176.45143127, -44.06712341 ], [ -176.46987915, -44.0752449 ], [ -176.47711182, -44.07437897 ], [ -176.490997310000012, -44.08597183 ], [ -176.49931335, -44.08723068 ], [ -176.51774597, -44.09977722 ], [ -176.52302551, -44.09764481 ], [ -176.53948975, -44.11385345 ], [ -176.5572052, -44.12559891 ], [ -176.575973510000011, -44.13233566 ], [ -176.58456421, -44.12773514 ], [ -176.598297120000012, -44.13171387 ], [ -176.6027832, -44.12527847 ], [ -176.61555481, -44.12805557 ], [ -176.61911011, -44.12179565 ], [ -176.629241940000014, -44.12023926 ], [ -176.63514709, -44.12446213 ], [ -176.63285828, -44.11424255 ], [ -176.64204407, -44.10461807 ], [ -176.64733887, -44.10759354 ], [ -176.64350891, -44.08660889 ], [ -176.649200439999987, -44.07629395 ], [ -176.659118650000011, -44.07064438 ], [ -176.65634155, -44.06472015 ], [ -176.66056824, -44.04927063 ], [ -176.65710449, -44.04279327 ], [ -176.669998170000014, -44.03763962 ], [ -176.67202759, -44.03043365 ], [ -176.680480960000011, -44.02565002 ], [ -176.68551636, -44.00858688 ], [ -176.65444946, -43.9980545 ], [ -176.6322937, -43.98340607 ], [ -176.59257507, -43.96448898 ], [ -176.57943726, -43.96194458 ], [ -176.572494510000013, -43.94666672 ], [ -176.57337952, -43.94134521 ], [ -176.55915833, -43.94582367 ], [ -176.56239319, -43.9493103 ], [ -176.54956055, -43.95190048 ], [ -176.534698490000011, -43.93827057 ], [ -176.533432010000013, -43.91908646 ], [ -176.53623962, -43.90826035 ], [ -176.546127320000011, -43.89878082 ], [ -176.54504395, -43.88532639 ], [ -176.56556702, -43.85456848 ], [ -176.60409546, -43.8153038 ], [ -176.61228943, -43.81041336 ], [ -176.623260499999986, -43.81250381 ], [ -176.633605960000011, -43.8084259 ], [ -176.642227170000012, -43.81027603 ], [ -176.64587402, -43.80420303 ], [ -176.657318120000014, -43.8091774 ], [ -176.66545105, -43.79814529 ], [ -176.67344666, -43.80844879 ], [ -176.68307495, -43.79862213 ], [ -176.688003540000011, -43.79968643 ], [ -176.68522644, -43.81384659 ], [ -176.68930054, -43.81764984 ], [ -176.706390379999988, -43.80780792 ], [ -176.70932007, -43.81384277 ], [ -176.700820920000012, -43.82213974 ], [ -176.715164179999988, -43.830616 ], [ -176.743118290000012, -43.82759857 ], [ -176.75431824, -43.83361053 ], [ -176.7747345, -43.82569504 ], [ -176.79522705, -43.82193375 ], [ -176.78388977, -43.83555603 ], [ -176.81774902, -43.84617233 ], [ -176.828750609999986, -43.84417343 ], [ -176.84191895, -43.83700562 ], [ -176.85656738, -43.84408951 ], [ -176.86143494, -43.83869171 ], [ -176.881774900000011, -43.84170151 ], [ -176.87376404, -43.83006668 ], [ -176.89367676, -43.82535934 ], [ -176.892807010000013, -43.82081985 ], [ -176.874649049999988, -43.81687546 ], [ -176.87976074, -43.81115341 ], [ -176.87602234, -43.79364395 ], [ -176.86662292, -43.78872299 ], [ -176.8165741, -43.78604507 ], [ -176.80926514, -43.7793541 ], [ -176.81263733, -43.76348114 ], [ -176.823608400000012, -43.75583267 ], [ -176.81790161, -43.74679565 ], [ -176.80397034, -43.74407959 ], [ -176.79978943, -43.75470352 ], [ -176.78933716, -43.75974655 ], [ -176.76133728, -43.76532745 ], [ -176.72518921, -43.76384735 ], [ -176.71492004000001, -43.75926208 ], [ -176.65985107, -43.74863052 ], [ -176.63993835, -43.73540878 ], [ -176.631744379999986, -43.72113419 ], [ -176.64118958, -43.7032547 ], [ -176.63008118, -43.70145035 ], [ -176.62588501, -43.69239426 ], [ -176.62588501, -43.69239426 ] ] ], [ [ [ -176.806549069999988, -43.56958389 ], [ -176.8084259, -43.56700516 ], [ -176.80625916, -43.56613922 ], [ -176.806549069999988, -43.56958389 ], [ -176.806549069999988, -43.56958389 ] ] ], [ [ [ -176.8127594, -43.57031631 ], [ -176.81500244, -43.56935883 ], [ -176.81132507, -43.56425476 ], [ -176.8127594, -43.57031631 ], [ -176.8127594, -43.57031631 ] ] ], [ [ [ -176.798339840000011, -43.5643158 ], [ -176.80059814, -43.56806946 ], [ -176.80329895, -43.56391907 ], [ -176.798339840000011, -43.5643158 ], [ -176.798339840000011, -43.5643158 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.5", "id_1": 5, "name_1": "Gisborne", "hasc_1": "NZ.GI", "population2022": 52100, "areakm2": 8357.714, "density2022": 6.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.93359375, -38.74312592 ], [ 177.93365479, -38.74114609 ], [ 177.93487549, -38.74159241 ], [ 177.93359375, -38.74312592 ], [ 177.93359375, -38.74312592 ] ] ], [ [ [ 177.93777466, -38.74555588 ], [ 177.93638611, -38.74111176 ], [ 177.93833923, -38.74250031 ], [ 177.93777466, -38.74555588 ], [ 177.93777466, -38.74555588 ] ] ], [ [ [ 178.05137634, -38.70673752 ], [ 178.047500609999986, -38.7080574 ], [ 178.04818726, -38.70524597 ], [ 178.05137634, -38.70673752 ], [ 178.05137634, -38.70673752 ] ] ], [ [ [ 178.23554993, -38.57242966 ], [ 178.23944092, -38.57527924 ], [ 178.23301697, -38.57382965 ], [ 178.23554993, -38.57242966 ], [ 178.23554993, -38.57242966 ] ] ], [ [ [ 178.29556274, -38.53527832 ], [ 178.296386719999987, -38.53277588 ], [ 178.29804993, -38.53277588 ], [ 178.29556274, -38.53527832 ], [ 178.29556274, -38.53527832 ] ] ], [ [ [ 178.34837341, -38.41864395 ], [ 178.348419189999987, -38.41688156 ], [ 178.351226809999986, -38.41682053 ], [ 178.34837341, -38.41864395 ], [ 178.34837341, -38.41864395 ] ] ], [ [ [ 178.34222412, -38.37833405 ], [ 178.35055542, -38.38833237 ], [ 178.34333801, -38.38888931 ], [ 178.34222412, -38.37833405 ], [ 178.34222412, -38.37833405 ] ] ], [ [ [ 178.344802859999987, -38.37496567 ], [ 178.34628296, -38.37577057 ], [ 178.34146118000001, -38.37672806 ], [ 178.344802859999987, -38.37496567 ], [ 178.344802859999987, -38.37496567 ] ] ], [ [ [ 178.336395259999989, -38.35027695 ], [ 178.33583069, -38.34749985 ], [ 178.34388733, -38.34583282 ], [ 178.336395259999989, -38.35027695 ], [ 178.336395259999989, -38.35027695 ] ] ], [ [ [ 178.34344482, -38.2494545 ], [ 178.332672120000012, -38.25011826 ], [ 178.33442688, -38.24695587 ], [ 178.34344482, -38.2494545 ], [ 178.34344482, -38.2494545 ] ] ], [ [ [ 178.342559810000012, -38.21173096 ], [ 178.34147644, -38.21099854 ], [ 178.342712400000011, -38.20990372 ], [ 178.342559810000012, -38.21173096 ], [ 178.342559810000012, -38.21173096 ] ] ], [ [ [ 178.38186646, -38.06932068 ], [ 178.379531859999986, -38.06908035 ], [ 178.38140869, -38.06822586 ], [ 178.38186646, -38.06932068 ], [ 178.38186646, -38.06932068 ] ] ], [ [ [ 178.577774049999988, -37.68805695 ], [ 178.576110840000013, -37.69361115 ], [ 178.57254028, -37.69182968 ], [ 178.577774049999988, -37.68805695 ], [ 178.577774049999988, -37.68805695 ] ] ], [ [ [ 178.172225950000012, -37.53277588 ], [ 178.18278503, -37.53777695 ], [ 178.21278381, -37.53416824 ], [ 178.21888733, -37.54555511 ], [ 178.2930603, -37.55194473 ], [ 178.31472778, -37.55472183 ], [ 178.324996950000013, -37.55944443 ], [ 178.3125, -37.56916809 ], [ 178.296386719999987, -37.57027817 ], [ 178.29444885, -37.57860947 ], [ 178.303894039999989, -37.59166718 ], [ 178.32658386, -37.59018326 ], [ 178.318603520000011, -37.60138702 ], [ 178.35028076, -37.625 ], [ 178.37333679, -37.63249969 ], [ 178.39161682, -37.62696075 ], [ 178.39230347, -37.63064194 ], [ 178.41838074, -37.62968826 ], [ 178.45880127, -37.64155579 ], [ 178.4677887, -37.63809586 ], [ 178.48083496000001, -37.63944626 ], [ 178.49305725, -37.65333176 ], [ 178.52055359, -37.67083359 ], [ 178.53889465, -37.67361069 ], [ 178.55047607, -37.69242859 ], [ 178.54417419, -37.70277786 ], [ 178.52833557, -37.7136116 ], [ 178.523895259999989, -37.72055435 ], [ 178.524902340000011, -37.73236465 ], [ 178.51554871, -37.7452774 ], [ 178.50500488, -37.7491684 ], [ 178.48805237, -37.77249908 ], [ 178.47583008, -37.77583313 ], [ 178.481246950000013, -37.78012085 ], [ 178.44917297, -37.81583405 ], [ 178.44639587, -37.82555389 ], [ 178.455001829999986, -37.83361053 ], [ 178.43861389, -37.84472275 ], [ 178.43305969, -37.84388733 ], [ 178.41333008, -37.86000061 ], [ 178.40499878, -37.8741684 ], [ 178.40666199, -37.88750076 ], [ 178.40167236, -37.90333176 ], [ 178.389160159999989, -37.91972351 ], [ 178.391113280000013, -37.93444443 ], [ 178.39916992, -37.93999863 ], [ 178.392776489999989, -37.96166611 ], [ 178.37583923, -37.9691658 ], [ 178.36833191, -37.98583221 ], [ 178.35417175, -37.98805618 ], [ 178.340271, -38.00416565 ], [ 178.33444214, -38.02027893 ], [ 178.336395259999989, -38.03694534 ], [ 178.357223510000011, -38.04888916 ], [ 178.373291020000011, -38.05094147 ], [ 178.36454773, -38.07032394 ], [ 178.37219238, -38.07107925 ], [ 178.37416077, -38.09444427 ], [ 178.358612060000013, -38.11055374 ], [ 178.34971619, -38.10694504 ], [ 178.32278442, -38.1202774 ], [ 178.31666565, -38.13722229 ], [ 178.31971741000001, -38.14722061 ], [ 178.35694885, -38.17750168 ], [ 178.35255432, -38.18668365 ], [ 178.33805847, -38.19250107 ], [ 178.33305359, -38.21583176 ], [ 178.33666992, -38.22000122 ], [ 178.31913757, -38.22222137 ], [ 178.31083679, -38.22999954 ], [ 178.31137085, -38.23944092 ], [ 178.32598877, -38.25540161 ], [ 178.335006709999988, -38.25999832 ], [ 178.33166504, -38.27222061 ], [ 178.34083557, -38.28527832 ], [ 178.36305237, -38.28749847 ], [ 178.35305786, -38.29611206 ], [ 178.33427429, -38.29845047 ], [ 178.32411194, -38.31058884 ], [ 178.32533264, -38.31893539 ], [ 178.332366940000014, -38.32194901 ], [ 178.33175659, -38.33227539 ], [ 178.32562256, -38.33343124 ], [ 178.33009338, -38.35302734 ], [ 178.30722046, -38.36166763 ], [ 178.3069458, -38.37194443 ], [ 178.29804993, -38.37638855 ], [ 178.31027222, -38.37638855 ], [ 178.31832886, -38.38305664 ], [ 178.340179440000014, -38.3787117 ], [ 178.33734131, -38.40435791 ], [ 178.346603390000013, -38.41904831 ], [ 178.33944702, -38.42444611 ], [ 178.32028198, -38.42777634 ], [ 178.301544189999987, -38.44438553 ], [ 178.29199219, -38.45911407 ], [ 178.288452150000012, -38.47053146 ], [ 178.28120422, -38.47682953 ], [ 178.28663635, -38.48859024 ], [ 178.28416443, -38.51171494 ], [ 178.29545593, -38.52299118 ], [ 178.29333496000001, -38.5295639 ], [ 178.28486633, -38.53173828 ], [ 178.28112793, -38.54019165 ], [ 178.26882935, -38.5398941 ], [ 178.264984129999988, -38.54660416 ], [ 178.24617004000001, -38.55828476 ], [ 178.234161379999989, -38.5616684 ], [ 178.23194885, -38.57194519 ], [ 178.2124939, -38.57972336 ], [ 178.199996950000013, -38.59249878 ], [ 178.19741821, -38.60703659 ], [ 178.18742371, -38.60798645 ], [ 178.17953491, -38.61528015 ], [ 178.17288208, -38.628685 ], [ 178.16096497, -38.63001251 ], [ 178.15568542, -38.63935471 ], [ 178.14646912, -38.64572906 ], [ 178.14813232, -38.65242767 ], [ 178.12770081, -38.65077972 ], [ 178.10848999000001, -38.65973282 ], [ 178.081390379999988, -38.67833328 ], [ 178.07194519, -38.69194412 ], [ 178.06916809, -38.70861053 ], [ 178.06056213, -38.70055389 ], [ 178.04943848, -38.70194626 ], [ 178.03883362, -38.68533325 ], [ 178.02471924, -38.68055725 ], [ 178.01853943, -38.67144012 ], [ 178.00653076, -38.67105865 ], [ 177.98554993, -38.67583466 ], [ 177.96556091, -38.6866684 ], [ 177.951385499999986, -38.69972229 ], [ 177.943603520000011, -38.71138763 ], [ 177.93722534, -38.73249817 ], [ 177.93388367, -38.72472382 ], [ 177.93110657, -38.74305725 ], [ 177.93804932, -38.7527771 ], [ 177.950408939999988, -38.75516129 ], [ 177.95944214, -38.7519455 ], [ 177.97305298, -38.75611115 ], [ 177.95057678, -38.7648201 ], [ 177.946228029999986, -38.77706909 ], [ 177.92860413, -38.78888702 ], [ 177.91946411, -38.81238556 ], [ 177.92411804, -38.82071304 ], [ 177.91288757, -38.82760239 ], [ 177.91157532, -38.85138702 ], [ 177.92037964, -38.86795807 ], [ 177.90356445, -38.88601685 ], [ 177.9115448, -38.9057045 ], [ 177.91000366, -38.92361069 ], [ 177.90332031, -38.93183899 ], [ 177.90527344, -38.94861221 ], [ 177.896728520000011, -38.9653244 ], [ 177.899627689999988, -38.97198105 ], [ 177.85914612, -38.96456146 ], [ 177.86585999, -38.96245956 ], [ 177.844787599999989, -38.95827484 ], [ 177.83329773, -38.94565582 ], [ 177.84846497, -38.92477417 ], [ 177.836685179999989, -38.9121666 ], [ 177.823287959999988, -38.91629791 ], [ 177.82049561, -38.92256165 ], [ 177.80207825, -38.91204453 ], [ 177.80877686, -38.90997696 ], [ 177.80096436, -38.90159607 ], [ 177.80374146, -38.89533615 ], [ 177.79037476, -38.89946747 ], [ 177.79428101, -38.90366364 ], [ 177.780914309999986, -38.90780258 ], [ 177.778121950000013, -38.9140625 ], [ 177.75193787, -38.89509201 ], [ 177.74917603, -38.90138245 ], [ 177.735824580000013, -38.90552521 ], [ 177.739730830000013, -38.90973663 ], [ 177.730270389999987, -38.91809082 ], [ 177.72915649, -38.9076004 ], [ 177.72135925, -38.89916611 ], [ 177.7118988, -38.90753555 ], [ 177.69744873, -38.9011879 ], [ 177.684097290000011, -38.90534973 ], [ 177.66966248, -38.8990097 ], [ 177.66687012, -38.90530396 ], [ 177.65631104, -38.90318298 ], [ 177.661346439999988, -38.85274124 ], [ 177.66412354, -38.84643173 ], [ 177.65081787, -38.85062027 ], [ 177.6519165, -38.8611412 ], [ 177.63473511, -38.86111832 ], [ 177.61927795, -38.84428024 ], [ 177.59933472, -38.85056686 ], [ 177.59344482, -38.82536316 ], [ 177.58679199, -38.82745361 ], [ 177.59532166, -38.80859375 ], [ 177.58103943, -38.80229187 ], [ 177.56773376000001, -38.80646515 ], [ 177.56391907, -38.80226898 ], [ 177.54397583, -38.80854034 ], [ 177.5411377, -38.81482697 ], [ 177.53353882, -38.80644226 ], [ 177.53259277, -38.79595947 ], [ 177.51367188, -38.77500153 ], [ 177.493774409999986, -38.78127289 ], [ 177.485290529999986, -38.76239395 ], [ 177.47488403, -38.76028442 ], [ 177.46733093, -38.75188065 ], [ 177.47966003, -38.73721313 ], [ 177.4683075, -38.72459793 ], [ 177.47494507, -38.72251129 ], [ 177.46359253, -38.70988846 ], [ 177.470214840000011, -38.70780182 ], [ 177.44277954, -38.7056427 ], [ 177.431442260000011, -38.69300842 ], [ 177.42860413, -38.69930649 ], [ 177.41157532, -38.69926834 ], [ 177.42010498, -38.68037033 ], [ 177.4163208, -38.67615509 ], [ 177.43617249, -38.6699028 ], [ 177.43522644, -38.6593895 ], [ 177.444686890000014, -38.65100861 ], [ 177.44088745, -38.64679337 ], [ 177.45413208, -38.64262772 ], [ 177.4503479, -38.63841248 ], [ 177.41252136, -38.63409042 ], [ 177.39456177, -38.62350845 ], [ 177.38793945, -38.62559128 ], [ 177.36054993, -38.62338257 ], [ 177.35394287, -38.62546158 ], [ 177.307678220000014, -38.60210419 ], [ 177.30957031, -38.62318039 ], [ 177.30957031, -38.66109848 ], [ 177.28883362, -38.65681458 ], [ 177.27471924, -38.65044403 ], [ 177.12762451, -38.58855057 ], [ 177.13041687, -38.5822258 ], [ 177.14723206, -38.58233261 ], [ 177.14442444, -38.58865738 ], [ 177.17059326, -38.58036423 ], [ 177.1631012, -38.5718689 ], [ 177.18275452, -38.56565094 ], [ 177.18180847, -38.55509186 ], [ 177.203323360000013, -38.53199768 ], [ 177.206130980000012, -38.52568436 ], [ 177.21362305, -38.53416824 ], [ 177.23049927, -38.5342598 ], [ 177.245483400000012, -38.51325607 ], [ 177.249252320000011, -38.5174942 ], [ 177.25862122, -38.50911713 ], [ 177.237808230000013, -38.42886353 ], [ 177.299743650000011, -38.40407562 ], [ 177.34864807, -38.38344955 ], [ 177.39471436, -38.36911011 ], [ 177.4434967, -38.34848404 ], [ 177.45283508, -38.34014893 ], [ 177.46594238, -38.33602142 ], [ 177.471466060000012, -38.32346344 ], [ 177.49276733, -38.300457 ], [ 177.49064636, -38.27949142 ], [ 177.50263977, -38.26485443 ], [ 177.49610901, -38.26693344 ], [ 177.48851013, -38.25852966 ], [ 177.495040890000013, -38.25645447 ], [ 177.48364258, -38.24385071 ], [ 177.49667358, -38.23970032 ], [ 177.49940491000001, -38.23342514 ], [ 177.49180603, -38.22502899 ], [ 177.51135254, -38.21879959 ], [ 177.515151980000013, -38.22299957 ], [ 177.531997679999989, -38.22303391 ], [ 177.530899049999988, -38.21256256 ], [ 177.55618286, -38.21260071 ], [ 177.567321779999986, -38.20633316 ], [ 177.56350708, -38.20214462 ], [ 177.60270691, -38.18959045 ], [ 177.60430908, -38.1728363 ], [ 177.60813904, -38.17702103 ], [ 177.62779236, -38.17070007 ], [ 177.630508420000012, -38.16440582 ], [ 177.64089966, -38.1664772 ], [ 177.66056824, -38.16012955 ], [ 177.649063109999986, -38.14759445 ], [ 177.661056519999988, -38.13288498 ], [ 177.65992737, -38.12240982 ], [ 177.69271851, -38.11179733 ], [ 177.69543457, -38.10549545 ], [ 177.68774414, -38.0971489 ], [ 177.686599730000012, -38.08668137 ], [ 177.67619324, -38.08463287 ], [ 177.68930054, -38.0803833 ], [ 177.68815613000001, -38.06991196 ], [ 177.701263430000012, -38.06565475 ], [ 177.6781311, -38.04065323 ], [ 177.68467712, -38.03852081 ], [ 177.66923523, -38.02186966 ], [ 177.68887329, -38.01547241 ], [ 177.70046997, -38.02796173 ], [ 177.72399902, -38.0257225 ], [ 177.74331665, -38.04655838 ], [ 177.775741579999988, -38.06314087 ], [ 177.8494873, -38.11515808 ], [ 177.858764650000012, -38.1067009 ], [ 177.86262512, -38.11087799 ], [ 177.91697693, -37.98450089 ], [ 177.943115229999989, -37.91049576 ], [ 177.970489500000014, -37.84687042 ], [ 178.07418823, -37.76342773 ], [ 178.037170409999987, -37.73210144 ], [ 177.99591064, -37.76205063 ], [ 177.9730835, -37.736866 ], [ 177.97589111, -37.73050308 ], [ 177.99188232, -37.71981812 ], [ 177.98432922, -37.71144104 ], [ 177.98335266, -37.70090866 ], [ 177.99649048, -37.69659424 ], [ 177.99926758, -37.69025803 ], [ 177.98791504, -37.67772675 ], [ 177.99446106, -37.67557907 ], [ 177.9868927, -37.66723633 ], [ 177.99343872, -37.66508865 ], [ 177.992385860000013, -37.65461349 ], [ 177.973419189999987, -37.63385773 ], [ 177.97991943, -37.63170624 ], [ 177.972320559999986, -37.62343979 ], [ 177.9788208, -37.62128067 ], [ 177.984161379999989, -37.60866928 ], [ 178.020278929999989, -37.60207367 ], [ 178.03947449, -37.59576416 ], [ 178.105667110000013, -37.59650803 ], [ 178.09403992, -37.58409119 ], [ 178.07955933, -37.55147171 ], [ 178.07943726, -37.5419426 ], [ 178.08721924, -37.53972244 ], [ 178.11054993, -37.54722214 ], [ 178.12861633, -37.54833221 ], [ 178.142776489999989, -37.54639053 ], [ 178.14694214, -37.55027771 ], [ 178.16694641, -37.54972076 ], [ 178.172225950000012, -37.53277588 ], [ 178.172225950000012, -37.53277588 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.6", "id_1": 6, "name_1": "Hawke's Bay", "hasc_1": "NZ.HB", "population2022": 182700, "areakm2": 12689.223, "density2022": 14.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.586837769999988, -40.43193054 ], [ 176.582901, -40.42770767 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ], [ [ [ 177.02888489, -39.83027649 ], [ 177.0305481, -39.83416748 ], [ 177.02278137, -39.83611298 ], [ 177.02888489, -39.83027649 ], [ 177.02888489, -39.83027649 ] ] ], [ [ [ 177.8694458, -39.27527618 ], [ 177.87333679, -39.27722168 ], [ 177.87554932, -39.29555511 ], [ 177.8694458, -39.30638885 ], [ 177.861114500000014, -39.30389023 ], [ 177.862777709999989, -39.28499985 ], [ 177.8694458, -39.27527618 ], [ 177.8694458, -39.27527618 ] ] ], [ [ [ 176.589523320000012, -40.42566299 ], [ 176.577621459999989, -40.41304398 ], [ 176.56306458, -40.40666199 ], [ 176.55107117, -40.42127609 ], [ 176.52593994, -40.41265488 ], [ 176.496856689999987, -40.39968491 ], [ 176.49147034, -40.412323 ], [ 176.476913450000012, -40.40582657 ], [ 176.46360779, -40.40992737 ], [ 176.44903564, -40.40341949 ], [ 176.44238281, -40.4054718 ], [ 176.4344635, -40.39690781 ], [ 176.44111633, -40.3948555 ], [ 176.43319702, -40.38628006 ], [ 176.419860840000013, -40.39039612 ], [ 176.4039917, -40.37324524 ], [ 176.390625, -40.37737274 ], [ 176.38665771, -40.37308502 ], [ 176.39607239, -40.36466599 ], [ 176.3921051, -40.36037445 ], [ 176.37081909, -40.35591507 ], [ 176.409683230000013, -40.33288574 ], [ 176.399063109999986, -40.33064651 ], [ 176.387222290000011, -40.31775284 ], [ 176.3966217, -40.30932999 ], [ 176.400894169999987, -40.28594589 ], [ 176.39302063, -40.27733994 ], [ 176.38633728, -40.27939987 ], [ 176.378479, -40.27079391 ], [ 176.38789368, -40.26236725 ], [ 176.3800354, -40.25375748 ], [ 176.38670349, -40.25169754 ], [ 176.37884521, -40.24308777 ], [ 176.38160706, -40.23672104 ], [ 176.3710022, -40.234478 ], [ 176.375320429999988, -40.2110672 ], [ 176.36198425, -40.21519089 ], [ 176.36631775, -40.19179153 ], [ 176.36239624000001, -40.18748856 ], [ 176.37182617, -40.17906189 ], [ 176.36398315, -40.17045975 ], [ 176.377319340000014, -40.16633224 ], [ 176.38008118, -40.15996933 ], [ 176.36833191, -40.14707184 ], [ 176.347152709999989, -40.14260864 ], [ 176.3354187, -40.1297226 ], [ 176.34208679, -40.12765884 ], [ 176.33425903, -40.11906815 ], [ 176.317016599999988, -40.11891174 ], [ 176.31309509, -40.11462021 ], [ 176.32252502, -40.10619354 ], [ 176.31471252, -40.09761047 ], [ 176.321380620000014, -40.09554291 ], [ 176.3163147, -40.08060455 ], [ 176.30851746, -40.07202911 ], [ 176.301849370000014, -40.07409668 ], [ 176.30072021, -40.06345749 ], [ 176.27682495, -40.06537628 ], [ 176.262359620000012, -40.05887604 ], [ 176.27180481, -40.050457 ], [ 176.261245730000013, -40.04824448 ], [ 176.264022829999988, -40.04189301 ], [ 176.24291992, -40.03746796 ], [ 176.24180603, -40.02684021 ], [ 176.214050289999989, -40.02448273 ], [ 176.212951659999987, -40.0138588 ], [ 176.182403560000012, -40.01784897 ], [ 176.185195920000012, -40.01150131 ], [ 176.17185974, -40.01563644 ], [ 176.157440189999988, -40.00914764 ], [ 176.13853455, -40.02597046 ], [ 176.126892090000013, -40.013134 ], [ 176.10084534, -39.99382019 ], [ 176.09976196, -39.98320389 ], [ 176.12145996000001, -39.96006393 ], [ 176.11758423, -39.95579147 ], [ 176.127044680000012, -39.94739532 ], [ 176.108764650000012, -39.93664551 ], [ 176.11541748, -39.93458176 ], [ 176.114349370000014, -39.92398071 ], [ 176.1210022, -39.92191696 ], [ 176.11326599, -39.91337585 ], [ 176.129364009999989, -39.90292358 ], [ 176.13494873, -39.89026642 ], [ 176.12055969, -39.88378906 ], [ 176.13450623, -39.85215378 ], [ 176.14115906, -39.85009384 ], [ 176.14179993, -39.82258606 ], [ 176.17805481, -39.74040604 ], [ 176.172073360000013, -39.71498108 ], [ 176.18536377, -39.71086884 ], [ 176.186035159999989, -39.68339157 ], [ 176.1993103, -39.67928314 ], [ 176.20872498, -39.6709137 ], [ 176.20103455, -39.66239166 ], [ 176.16856384, -39.64518738 ], [ 176.185333250000014, -39.6072998 ], [ 176.177658079999986, -39.59877396 ], [ 176.164398190000014, -39.60287476 ], [ 176.16337585, -39.5922966 ], [ 176.156738280000013, -39.59434891 ], [ 176.14524841, -39.58155441 ], [ 176.162338260000013, -39.58171844 ], [ 176.18885803, -39.57352066 ], [ 176.190628049999987, -39.556633 ], [ 176.203872679999989, -39.55253601 ], [ 176.21226501000001, -39.53359985 ], [ 176.252014159999987, -39.52131271 ], [ 176.254806519999988, -39.5150032 ], [ 176.30776978, -39.49861908 ], [ 176.322036739999987, -39.50508499 ], [ 176.32865906, -39.5030365 ], [ 176.317169189999987, -39.49026108 ], [ 176.3237915, -39.4882164 ], [ 176.31613159, -39.47969818 ], [ 176.32936096, -39.47560501 ], [ 176.31892395, -39.47339249 ], [ 176.3112793, -39.46487808 ], [ 176.32069397, -39.4565239 ], [ 176.31965637, -39.445961 ], [ 176.30819702, -39.43318558 ], [ 176.32040405, -39.41853333 ], [ 176.3099823, -39.41631699 ], [ 176.32981873, -39.41018677 ], [ 176.32600403, -39.40592575 ], [ 176.33540344, -39.39757919 ], [ 176.32397461, -39.38479996 ], [ 176.34098816, -39.38497543 ], [ 176.33337402, -39.37645721 ], [ 176.33998108, -39.37441635 ], [ 176.332366940000014, -39.36589432 ], [ 176.31915283, -39.36997604 ], [ 176.307724, -39.35719299 ], [ 176.29450989, -39.36127472 ], [ 176.27368164, -39.3568306 ], [ 176.2802887, -39.35478973 ], [ 176.268890379999988, -39.34199905 ], [ 176.28210449, -39.33791733 ], [ 176.28111267, -39.32735062 ], [ 176.28771973, -39.32531357 ], [ 176.28012085, -39.31678391 ], [ 176.290527340000011, -39.31901169 ], [ 176.28292847, -39.31048203 ], [ 176.309341429999989, -39.30233002 ], [ 176.31115723, -39.28546143 ], [ 176.29977417, -39.27266693 ], [ 176.30258179, -39.26636505 ], [ 176.29119873, -39.25357056 ], [ 176.297805790000012, -39.25153351 ], [ 176.29022217, -39.24300003 ], [ 176.27983093, -39.24076843 ], [ 176.26663208, -39.24483871 ], [ 176.25527954, -39.23203659 ], [ 176.22790527, -39.22960281 ], [ 176.21470642, -39.23366928 ], [ 176.21374512, -39.22309494 ], [ 176.20713806, -39.22513199 ], [ 176.19958496000001, -39.21659088 ], [ 176.20617676, -39.21455383 ], [ 176.19862366000001, -39.20601273 ], [ 176.20144653, -39.19971085 ], [ 176.18634033, -39.18262482 ], [ 176.19293213, -39.18059158 ], [ 176.18537903, -39.17204666 ], [ 176.1882019, -39.16574097 ], [ 176.18066406, -39.15719604 ], [ 176.19197083, -39.1319809 ], [ 176.1882019, -39.12770844 ], [ 176.22116089, -39.11756134 ], [ 176.22398376000001, -39.11125565 ], [ 176.24375916, -39.10516739 ], [ 176.23622131, -39.09662628 ], [ 176.344680790000012, -39.17187119 ], [ 176.38800049, -39.16394806 ], [ 176.40116882, -39.15988922 ], [ 176.396408079999986, -39.14506531 ], [ 176.38505554, -39.132267 ], [ 176.37469482, -39.13002777 ], [ 176.42077637, -39.11582947 ], [ 176.437713620000011, -39.11604309 ], [ 176.45185852, -39.12254333 ], [ 176.422485349999988, -39.06100845 ], [ 176.45428467, -39.00237656 ], [ 176.55567932, -39.00378036 ], [ 176.54814148, -38.9952507 ], [ 176.61947632, -39.00051498 ], [ 176.61193848, -38.99198532 ], [ 176.61849976, -38.9899826 ], [ 176.603424069999988, -38.97291565 ], [ 176.609985349999988, -38.97091293 ], [ 176.598693849999989, -38.95811081 ], [ 176.60804749, -38.94984436 ], [ 176.600509640000013, -38.94130707 ], [ 176.603317260000011, -38.93504333 ], [ 176.619232180000012, -38.92478943 ], [ 176.70976257, -38.84854889 ], [ 176.70225525, -38.83998489 ], [ 176.711578370000012, -38.8317337 ], [ 176.7003479, -38.81888962 ], [ 176.6993866, -38.80833817 ], [ 176.71244812, -38.80435944 ], [ 176.70495605, -38.79579544 ], [ 176.71801758, -38.79181671 ], [ 176.70774841, -38.78952408 ], [ 176.71611023, -38.77070236 ], [ 176.711425780000013, -38.75586319 ], [ 176.719802859999987, -38.73703003 ], [ 176.71885681, -38.72647095 ], [ 176.73190308, -38.72247696 ], [ 176.73937988, -38.73104477 ], [ 176.752441409999989, -38.72704697 ], [ 176.748703, -38.72276306 ], [ 176.76454163, -38.71247864 ], [ 176.77012634, -38.6999054 ], [ 176.7766571, -38.69789886 ], [ 176.77571106, -38.68732834 ], [ 176.795272829999988, -38.68130112 ], [ 176.82325745, -38.69441986 ], [ 176.83256531, -38.68611908 ], [ 176.84559631, -38.6821022 ], [ 176.85490417, -38.67380142 ], [ 176.862350459999988, -38.68237305 ], [ 176.87536621000001, -38.67835617 ], [ 176.87164307, -38.67407227 ], [ 176.89115906, -38.66804886 ], [ 176.90977478, -38.68947601 ], [ 176.9302063, -38.69403839 ], [ 176.93763733, -38.70261002 ], [ 176.9506073, -38.69859695 ], [ 176.95433044, -38.70288467 ], [ 176.967300419999987, -38.69887161 ], [ 176.9682312, -38.70945358 ], [ 176.987670900000012, -38.70342636 ], [ 176.98396301, -38.69913864 ], [ 177.00337219, -38.69309998 ], [ 177.002441409999989, -38.68251419 ], [ 177.0153656, -38.67847824 ], [ 177.02088928, -38.66587067 ], [ 177.02735901, -38.66384506 ], [ 177.01994324, -38.65528488 ], [ 177.026412959999988, -38.65325928 ], [ 177.034683230000013, -38.63433456 ], [ 177.047637939999987, -38.63026047 ], [ 177.04393005, -38.62598419 ], [ 177.060607909999987, -38.62615967 ], [ 177.06990051, -38.61777115 ], [ 177.08291626, -38.6136322 ], [ 177.0838623, -38.62421799 ], [ 177.096893310000013, -38.62007523 ], [ 177.100631709999988, -38.62432861 ], [ 177.10899353, -38.60534668 ], [ 177.11552429, -38.60327148 ], [ 177.12110901, -38.59062195 ], [ 177.12762451, -38.58855057 ], [ 177.27471924, -38.65044403 ], [ 177.28883362, -38.65681458 ], [ 177.30957031, -38.66109848 ], [ 177.30957031, -38.62318039 ], [ 177.307678220000014, -38.60210419 ], [ 177.35394287, -38.62546158 ], [ 177.36054993, -38.62338257 ], [ 177.38793945, -38.62559128 ], [ 177.39456177, -38.62350845 ], [ 177.41252136, -38.63409042 ], [ 177.4503479, -38.63841248 ], [ 177.45413208, -38.64262772 ], [ 177.44088745, -38.64679337 ], [ 177.444686890000014, -38.65100861 ], [ 177.43522644, -38.6593895 ], [ 177.43617249, -38.6699028 ], [ 177.4163208, -38.67615509 ], [ 177.42010498, -38.68037033 ], [ 177.41157532, -38.69926834 ], [ 177.42860413, -38.69930649 ], [ 177.431442260000011, -38.69300842 ], [ 177.44277954, -38.7056427 ], [ 177.470214840000011, -38.70780182 ], [ 177.46359253, -38.70988846 ], [ 177.47494507, -38.72251129 ], [ 177.4683075, -38.72459793 ], [ 177.47966003, -38.73721313 ], [ 177.46733093, -38.75188065 ], [ 177.47488403, -38.76028442 ], [ 177.485290529999986, -38.76239395 ], [ 177.493774409999986, -38.78127289 ], [ 177.51367188, -38.77500153 ], [ 177.53637695, -38.80015182 ], [ 177.53353882, -38.80644226 ], [ 177.5411377, -38.81482697 ], [ 177.54397583, -38.80854034 ], [ 177.56391907, -38.80226898 ], [ 177.56773376000001, -38.80646515 ], [ 177.58103943, -38.80229187 ], [ 177.59532166, -38.80859375 ], [ 177.58679199, -38.82745361 ], [ 177.59344482, -38.82536316 ], [ 177.59933472, -38.85056686 ], [ 177.61927795, -38.84428024 ], [ 177.63473511, -38.86111832 ], [ 177.6519165, -38.8611412 ], [ 177.65081787, -38.85062027 ], [ 177.66412354, -38.84643173 ], [ 177.661346439999988, -38.85274124 ], [ 177.65631104, -38.90318298 ], [ 177.66687012, -38.90530396 ], [ 177.66966248, -38.8990097 ], [ 177.684097290000011, -38.90534973 ], [ 177.69744873, -38.9011879 ], [ 177.7118988, -38.90753555 ], [ 177.72135925, -38.89916611 ], [ 177.72915649, -38.9076004 ], [ 177.730270389999987, -38.91809082 ], [ 177.739730830000013, -38.90973663 ], [ 177.735824580000013, -38.90552521 ], [ 177.74917603, -38.90138245 ], [ 177.75193787, -38.89509201 ], [ 177.778121950000013, -38.9140625 ], [ 177.780914309999986, -38.90780258 ], [ 177.79428101, -38.90366364 ], [ 177.79037476, -38.89946747 ], [ 177.80374146, -38.89533615 ], [ 177.80096436, -38.90159607 ], [ 177.80877686, -38.90997696 ], [ 177.80207825, -38.91204453 ], [ 177.82049561, -38.92256165 ], [ 177.823287959999988, -38.91629791 ], [ 177.836685179999989, -38.9121666 ], [ 177.84846497, -38.92477417 ], [ 177.842834470000014, -38.93731308 ], [ 177.83329773, -38.94565582 ], [ 177.844787599999989, -38.95827484 ], [ 177.86585999, -38.96245956 ], [ 177.85914612, -38.96456146 ], [ 177.899627689999988, -38.97198105 ], [ 177.89448547, -38.99613571 ], [ 177.8944397, -39.00888824 ], [ 177.886108400000012, -39.01777649 ], [ 177.888885499999986, -39.04416656 ], [ 177.8999939, -39.07166672 ], [ 177.90943909, -39.07583237 ], [ 177.91448975, -39.08446884 ], [ 177.94805908, -39.0941658 ], [ 177.96360779, -39.0886116 ], [ 177.96888733, -39.09722137 ], [ 177.988891599999988, -39.0969429 ], [ 178.00389099, -39.10388947 ], [ 178.00151062, -39.11472321 ], [ 177.98200989, -39.12532806 ], [ 177.96972656, -39.13639069 ], [ 177.96008301, -39.13656616 ], [ 177.94625854, -39.15620422 ], [ 177.938400269999988, -39.15771866 ], [ 177.92443848, -39.17083359 ], [ 177.92645264, -39.18907928 ], [ 177.918884279999986, -39.20777893 ], [ 177.9069519, -39.22999954 ], [ 177.88491821, -39.24909592 ], [ 177.87889099, -39.25055695 ], [ 177.87287903, -39.26136017 ], [ 177.863616940000014, -39.26833344 ], [ 177.858337400000011, -39.25444412 ], [ 177.86193848, -39.24666595 ], [ 177.858886719999987, -39.23749924 ], [ 177.851104740000011, -39.23083496 ], [ 177.8500061, -39.21111298 ], [ 177.84056091, -39.1827774 ], [ 177.821105960000011, -39.1613884 ], [ 177.82728577, -39.16129303 ], [ 177.83805847, -39.1511116 ], [ 177.83778381, -39.14027786 ], [ 177.84597778, -39.13588333 ], [ 177.85305786, -39.1241684 ], [ 177.853607180000012, -39.11583328 ], [ 177.860275269999988, -39.11138916 ], [ 177.858612060000013, -39.10222244 ], [ 177.86721802, -39.09749985 ], [ 177.86610413, -39.08611298 ], [ 177.87236023, -39.08409119 ], [ 177.87037659, -39.07657242 ], [ 177.85928345, -39.06583786 ], [ 177.84680176, -39.0603447 ], [ 177.835037230000012, -39.0605545 ], [ 177.82925415, -39.07449341 ], [ 177.81277466, -39.07444382 ], [ 177.79476929, -39.06640244 ], [ 177.768463129999986, -39.06230164 ], [ 177.74667358, -39.05638885 ], [ 177.66708374000001, -39.05081177 ], [ 177.60142517, -39.05247116 ], [ 177.56582642, -39.05527878 ], [ 177.54333496000001, -39.05444336 ], [ 177.4828949, -39.05644608 ], [ 177.43305969, -39.06277847 ], [ 177.42860413, -39.05638885 ], [ 177.431396479999989, -39.04527664 ], [ 177.4125061, -39.06361008 ], [ 177.35038757, -39.07725525 ], [ 177.2902832, -39.09222412 ], [ 177.213790890000013, -39.11782837 ], [ 177.18444824, -39.1297226 ], [ 177.15345764, -39.13977051 ], [ 177.123535159999989, -39.15211105 ], [ 177.07305908, -39.17777634 ], [ 177.047500609999986, -39.19369507 ], [ 177.03971863000001, -39.20055389 ], [ 177.034729, -39.23833466 ], [ 177.021987919999987, -39.24702835 ], [ 177.02333069, -39.2508316 ], [ 177.01106262, -39.27080917 ], [ 176.99806213, -39.27861023 ], [ 176.9916687, -39.29333496 ], [ 176.96638489, -39.3144455 ], [ 176.95033264, -39.32203293 ], [ 176.94242859, -39.33499527 ], [ 176.934646609999987, -39.33959579 ], [ 176.930191040000011, -39.33571625 ], [ 176.92030334, -39.33919525 ], [ 176.89538574, -39.37428665 ], [ 176.88139343, -39.40638733 ], [ 176.875610349999988, -39.42479324 ], [ 176.872131349999989, -39.45125198 ], [ 176.879226679999988, -39.46986008 ], [ 176.88528442, -39.47833252 ], [ 176.89805603, -39.4794426 ], [ 176.91583252, -39.47305679 ], [ 176.922500609999986, -39.47833252 ], [ 176.920272829999988, -39.48860931 ], [ 176.91920471, -39.52249146 ], [ 176.922500609999986, -39.55110931 ], [ 176.930450439999987, -39.57159424 ], [ 176.953338620000011, -39.60955429 ], [ 176.96762085, -39.62439346 ], [ 176.98083496000001, -39.63249969 ], [ 176.98693848, -39.6305542 ], [ 177.00267029, -39.63985443 ], [ 177.03166199, -39.64972305 ], [ 177.04333496000001, -39.64472198 ], [ 177.06388855, -39.64250183 ], [ 177.077224730000012, -39.63360977 ], [ 177.08444214, -39.64138794 ], [ 177.09611511, -39.64361191 ], [ 177.09165955, -39.65277863 ], [ 177.08076477, -39.66241455 ], [ 177.07943726, -39.67277908 ], [ 177.050170900000012, -39.69223785 ], [ 177.03668213, -39.70506287 ], [ 177.01965332, -39.72591019 ], [ 177.01393127, -39.73768234 ], [ 177.00775146, -39.76146698 ], [ 177.01028442, -39.77027893 ], [ 176.998947140000013, -39.78574753 ], [ 176.993896479999989, -39.79972076 ], [ 176.993652340000011, -39.81194305 ], [ 177.00582886, -39.84194565 ], [ 176.99499512, -39.8433342 ], [ 176.98832703, -39.85638809 ], [ 176.98117065, -39.86145401 ], [ 176.96539307, -39.88660049 ], [ 176.96376038, -39.90393066 ], [ 176.95568848, -39.91743469 ], [ 176.93849182, -39.92717361 ], [ 176.928894039999989, -39.94499969 ], [ 176.927978520000011, -39.95892334 ], [ 176.91473389, -39.97155762 ], [ 176.90852356, -39.98235321 ], [ 176.90333557, -40.00666809 ], [ 176.88806152, -40.0261116 ], [ 176.88020325, -40.04597473 ], [ 176.88027954, -40.06027603 ], [ 176.89425659, -40.07424545 ], [ 176.891250609999986, -40.08286285 ], [ 176.874786379999989, -40.09606552 ], [ 176.87080383, -40.10604858 ], [ 176.87388611, -40.11916733 ], [ 176.87832642, -40.11999893 ], [ 176.8666687, -40.13499832 ], [ 176.84527588, -40.14583206 ], [ 176.84916687, -40.15222168 ], [ 176.84333801, -40.15999985 ], [ 176.828323360000013, -40.16924667 ], [ 176.82583618000001, -40.1819458 ], [ 176.795272829999988, -40.2080574 ], [ 176.786605830000013, -40.22458267 ], [ 176.780197140000013, -40.21709061 ], [ 176.764724730000012, -40.21944427 ], [ 176.73944092, -40.22833252 ], [ 176.71583557, -40.24000168 ], [ 176.69917297, -40.25305557 ], [ 176.68444824, -40.26111221 ], [ 176.67443848, -40.27138901 ], [ 176.66743469, -40.29819489 ], [ 176.666381840000014, -40.31361008 ], [ 176.673339840000011, -40.32110977 ], [ 176.65293884, -40.35227585 ], [ 176.649368290000012, -40.36864471 ], [ 176.63630676, -40.38997269 ], [ 176.63661194, -40.40676117 ], [ 176.623535159999989, -40.42652893 ], [ 176.5921936, -40.41939926 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.7", "id_1": 7, "name_1": "Manawatu-Wanganui", "hasc_1": "NZ.MW", "population2022": 258200, "areakm2": 21962.059, "density2022": 11.76 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.5921936, -40.41939926 ], [ 176.623535159999989, -40.42652893 ], [ 176.62361145, -40.44416809 ], [ 176.63438416, -40.45258331 ], [ 176.62889099, -40.46111298 ], [ 176.62971497, -40.47555542 ], [ 176.6222229, -40.49139023 ], [ 176.60687256, -40.49111176 ], [ 176.56639099, -40.4952774 ], [ 176.52722168, -40.51111221 ], [ 176.51167297, -40.52000046 ], [ 176.514999390000014, -40.52166748 ], [ 176.479721070000011, -40.54388809 ], [ 176.47277832, -40.5577774 ], [ 176.47389221, -40.57110977 ], [ 176.4624939, -40.57749939 ], [ 176.460006709999988, -40.58361053 ], [ 176.416107180000012, -40.60666656 ], [ 176.4152832, -40.62194443 ], [ 176.40249634, -40.62805557 ], [ 176.387496950000013, -40.64277649 ], [ 176.386383059999986, -40.65194321 ], [ 176.3788147, -40.6553688 ], [ 176.3777771, -40.66777802 ], [ 176.36166382, -40.68027878 ], [ 176.35305786, -40.68157196 ], [ 176.34472656, -40.69194412 ], [ 176.33305359, -40.69858932 ], [ 176.312835690000014, -40.71668243 ], [ 176.30844116, -40.73020172 ], [ 176.298614500000014, -40.73583221 ], [ 176.28767395, -40.74990082 ], [ 176.291900629999986, -40.75482178 ], [ 176.288604740000011, -40.76527786 ], [ 176.27166748, -40.78194427 ], [ 176.26315308, -40.77605057 ], [ 176.26176453, -40.76538849 ], [ 176.2736969, -40.75070953 ], [ 176.26567078, -40.74206543 ], [ 176.24835205, -40.74177933 ], [ 176.247009279999986, -40.73113632 ], [ 176.21905518, -40.70081711 ], [ 176.20568848, -40.7048912 ], [ 176.19767761, -40.69624329 ], [ 176.1869812, -40.6939621 ], [ 176.173614500000014, -40.69804001 ], [ 176.15888977, -40.69146347 ], [ 176.153533939999988, -40.67651749 ], [ 176.13346863000001, -40.68264008 ], [ 176.11872864, -40.67610168 ], [ 176.11204529, -40.67815018 ], [ 176.104003909999989, -40.66957855 ], [ 176.090606689999987, -40.67368698 ], [ 176.08792114, -40.70762634 ], [ 176.077194209999988, -40.70539856 ], [ 176.0852356, -40.71397018 ], [ 176.07450867, -40.7117424 ], [ 176.06109619, -40.71586609 ], [ 176.0436554, -40.7157135 ], [ 176.02218628, -40.71128845 ], [ 176.024887080000013, -40.70493698 ], [ 176.0141449, -40.70272446 ], [ 175.99934387, -40.72384644 ], [ 175.97789001000001, -40.71942139 ], [ 175.97117615, -40.72149277 ], [ 175.97920227, -40.73005676 ], [ 175.97651672, -40.73640823 ], [ 175.959075930000012, -40.73626328 ], [ 175.95637512, -40.74261475 ], [ 175.945648190000014, -40.74040222 ], [ 175.93484497, -40.76580048 ], [ 175.91207886, -40.75074387 ], [ 175.88653564, -40.76964188 ], [ 175.873107909999987, -40.77376938 ], [ 175.85838318, -40.76726913 ], [ 175.850372310000012, -40.75870514 ], [ 175.84094238, -40.76711273 ], [ 175.82621765, -40.76060867 ], [ 175.814102170000012, -40.77535629 ], [ 175.796661379999989, -40.77519608 ], [ 175.78865051, -40.76663208 ], [ 175.785949710000011, -40.77297211 ], [ 175.76451111, -40.76852417 ], [ 175.76591492, -40.75155258 ], [ 175.77934265, -40.74743271 ], [ 175.775329590000013, -40.74314499 ], [ 175.79016113, -40.72203445 ], [ 175.783447270000011, -40.72409821 ], [ 175.7754364, -40.71552658 ], [ 175.78485107, -40.70711517 ], [ 175.766113280000013, -40.69631958 ], [ 175.75669861, -40.70472717 ], [ 175.74868774, -40.69615555 ], [ 175.72055054, -40.69376373 ], [ 175.68972778, -40.69771576 ], [ 175.693725590000014, -40.70200348 ], [ 175.685607909999987, -40.72104645 ], [ 175.67619324, -40.72945023 ], [ 175.66148376000001, -40.72293472 ], [ 175.65335083, -40.74196243 ], [ 175.629226679999988, -40.74383926 ], [ 175.63322449, -40.74812317 ], [ 175.61981201, -40.75222778 ], [ 175.61180115, -40.74365616 ], [ 175.60510254, -40.74570847 ], [ 175.59710693, -40.73713684 ], [ 175.59039307, -40.73918915 ], [ 175.57569885, -40.73266983 ], [ 175.562286379999989, -40.73676682 ], [ 175.55429077, -40.72819519 ], [ 175.56098938, -40.7261467 ], [ 175.47012329, -40.69334412 ], [ 175.4499054, -40.72703171 ], [ 175.44320679, -40.72907257 ], [ 175.43780518, -40.74172592 ], [ 175.42442322, -40.74580765 ], [ 175.413742070000012, -40.74356079 ], [ 175.405761719999987, -40.73498535 ], [ 175.392379760000011, -40.73905945 ], [ 175.384399409999986, -40.73048401 ], [ 175.377716060000012, -40.73252106 ], [ 175.36973572, -40.72394562 ], [ 175.356369019999988, -40.7280159 ], [ 175.34559631, -40.7532959 ], [ 175.33094788, -40.74674606 ], [ 175.317596439999988, -40.75080109 ], [ 175.3069458, -40.74853516 ], [ 175.28692627, -40.75460052 ], [ 175.284240720000014, -40.76091385 ], [ 175.26423645, -40.7669754 ], [ 175.25360107, -40.76469803 ], [ 175.235015870000012, -40.75382614 ], [ 175.20172119, -40.76387024 ], [ 175.181854249999986, -40.74236298 ], [ 175.20581055, -40.74065399 ], [ 175.20452881, -40.73005295 ], [ 175.18592834, -40.71916199 ], [ 175.168609620000012, -40.71885681 ], [ 175.16729736, -40.70825958 ], [ 175.133728029999986, -40.70552826 ], [ 175.14416504, -40.68999863 ], [ 175.14759827, -40.67651367 ], [ 175.16111755, -40.66222382 ], [ 175.163604740000011, -40.64027786 ], [ 175.19519043, -40.54970551 ], [ 175.207519530000013, -40.49890137 ], [ 175.20797729, -40.49038696 ], [ 175.21682739, -40.4774437 ], [ 175.21333313, -40.47000122 ], [ 175.22332764, -40.41666794 ], [ 175.227493290000012, -40.38166809 ], [ 175.227493290000012, -40.33416748 ], [ 175.2250061, -40.30361176 ], [ 175.236389159999987, -40.28694534 ], [ 175.22471619, -40.29472351 ], [ 175.21083069, -40.22305679 ], [ 175.1993866, -40.18008423 ], [ 175.178085329999988, -40.13204956 ], [ 175.14582825, -40.0830574 ], [ 175.14582825, -40.08833313 ], [ 175.127166749999986, -40.06621552 ], [ 175.10044861, -40.04244614 ], [ 175.107772829999988, -40.02916718 ], [ 175.09736633, -40.03992462 ], [ 175.074722290000011, -40.01277924 ], [ 175.05981445, -39.99818802 ], [ 175.02883911, -39.97143936 ], [ 174.99916077, -39.95277786 ], [ 175.011108400000012, -39.95694351 ], [ 175.02326965, -39.95248795 ], [ 174.99679565, -39.94485474 ], [ 174.981521609999987, -39.94760895 ], [ 174.9672699, -39.92794037 ], [ 174.95307922, -39.91596222 ], [ 174.920272829999988, -39.89527893 ], [ 174.876464840000011, -39.8770752 ], [ 174.85148621, -39.8706131 ], [ 174.82397461, -39.86606979 ], [ 174.79702759, -39.85811996 ], [ 174.77902222, -39.86208725 ], [ 174.77305603, -39.85594177 ], [ 174.762207030000013, -39.85339355 ], [ 174.779373170000014, -39.8437233 ], [ 174.78570557, -39.83148956 ], [ 174.789520259999989, -39.83581543 ], [ 174.802810670000014, -39.82175827 ], [ 174.795837400000011, -39.82356262 ], [ 174.80526733, -39.80513382 ], [ 174.82299805, -39.80586243 ], [ 174.84381104, -39.80039597 ], [ 174.853713989999989, -39.79227448 ], [ 174.8528595, -39.78165054 ], [ 174.88008118, -39.77389145 ], [ 174.87625122, -39.76953506 ], [ 174.88980103, -39.76560211 ], [ 174.888885499999986, -39.75491714 ], [ 174.9158783, -39.74695969 ], [ 174.919708250000014, -39.75130844 ], [ 174.93307495, -39.74729156 ], [ 174.925460820000012, -39.73860168 ], [ 174.92832947, -39.7322464 ], [ 174.941619870000011, -39.72821426 ], [ 174.9264679, -39.71084213 ], [ 174.92555237, -39.70014191 ], [ 174.93884277, -39.69610596 ], [ 174.931274409999986, -39.68742752 ], [ 174.95118713, -39.68136597 ], [ 174.95495605, -39.68570328 ], [ 174.98141479, -39.67760086 ], [ 174.97764587, -39.67326736 ], [ 174.9974823, -39.66718292 ], [ 174.98997498, -39.65851212 ], [ 174.98335266, -39.66054153 ], [ 174.98246765, -39.64984131 ], [ 174.97209167, -39.64753342 ], [ 174.98532104, -39.64347839 ], [ 174.97406006, -39.63047409 ], [ 174.980682370000011, -39.62844849 ], [ 174.97317505, -39.61977768 ], [ 174.9797821, -39.61775208 ], [ 174.97229004, -39.60908127 ], [ 174.978027340000011, -39.59636307 ], [ 174.97427368000001, -39.59202576 ], [ 174.98577881, -39.56659317 ], [ 174.98202515, -39.56225967 ], [ 174.99526978, -39.55821609 ], [ 174.99066162, -39.54319 ], [ 174.9719696, -39.52151871 ], [ 174.978591920000014, -39.51950073 ], [ 174.97111511, -39.51082993 ], [ 174.97773743, -39.50881195 ], [ 174.96652222, -39.49580765 ], [ 174.96940613000001, -39.48945618 ], [ 174.96192932, -39.48078537 ], [ 174.94866943, -39.48482132 ], [ 174.938293460000011, -39.48250198 ], [ 174.923324580000013, -39.46515656 ], [ 174.91294861, -39.4628334 ], [ 174.91584778, -39.45648193 ], [ 174.901702879999988, -39.44982147 ], [ 174.89045715, -39.43680573 ], [ 174.89710999, -39.43479538 ], [ 174.88961792, -39.42611694 ], [ 174.896270750000014, -39.4241066 ], [ 174.87007141, -39.39373398 ], [ 174.88711548, -39.3940506 ], [ 174.88627625, -39.38336563 ], [ 174.892929079999988, -39.38135147 ], [ 174.9016571, -39.36230469 ], [ 174.88088989, -39.35765076 ], [ 174.86967468, -39.34463501 ], [ 174.86303711, -39.34664536 ], [ 174.85557556, -39.33796692 ], [ 174.842285159999989, -39.34198761 ], [ 174.82820129000001, -39.33531952 ], [ 174.820755, -39.32663727 ], [ 174.82739258, -39.32462692 ], [ 174.81994629, -39.31594849 ], [ 174.82949829, -39.3075943 ], [ 174.82577515, -39.30325317 ], [ 174.839050289999989, -39.2992363 ], [ 174.853607180000012, -39.26749802 ], [ 174.86688232, -39.26348495 ], [ 174.86315918, -39.25914764 ], [ 174.872695920000012, -39.25079346 ], [ 174.86526489, -39.24211502 ], [ 174.874801639999987, -39.23376465 ], [ 174.88224792, -39.24244308 ], [ 174.899230960000011, -39.24277115 ], [ 174.90504456, -39.23008347 ], [ 174.9125061, -39.23875809 ], [ 174.92576599, -39.23474503 ], [ 174.918319700000012, -39.2260704 ], [ 174.931579590000013, -39.22206116 ], [ 174.94320679, -39.19668961 ], [ 174.949844359999986, -39.19468689 ], [ 174.957519530000013, -39.18417358 ], [ 174.94529724, -39.17967224 ], [ 174.965179440000014, -39.17366028 ], [ 174.954833979999989, -39.17132568 ], [ 174.95773315, -39.16498566 ], [ 174.96809387, -39.16732025 ], [ 174.99458313, -39.15930557 ], [ 174.979705810000013, -39.14196014 ], [ 175.003295900000012, -39.14028931 ], [ 174.99586487, -39.1316185 ], [ 175.01281738, -39.13195038 ], [ 175.00538635, -39.12327957 ], [ 175.018630980000012, -39.11927414 ], [ 175.02442932, -39.10660172 ], [ 175.03767395, -39.10259628 ], [ 175.041381840000014, -39.10693359 ], [ 175.065765379999988, -39.11592865 ], [ 175.07901001, -39.11192322 ], [ 175.0604248, -39.09025955 ], [ 175.05381775, -39.09225845 ], [ 175.046386719999987, -39.08359146 ], [ 175.05218506, -39.07092285 ], [ 175.01828003, -39.07025146 ], [ 174.99842834, -39.07624817 ], [ 174.990997310000012, -39.06757736 ], [ 174.98065186, -39.06523514 ], [ 174.96740723, -39.06923294 ], [ 174.966598510000011, -39.05855942 ], [ 174.98275757, -39.0482254 ], [ 174.96791077, -39.03087234 ], [ 174.974533079999986, -39.02887726 ], [ 174.963394169999987, -39.0158577 ], [ 174.966308590000011, -39.0095253 ], [ 174.958892819999988, -39.00084305 ], [ 174.948577879999988, -38.99849701 ], [ 174.935348510000011, -39.002491 ], [ 174.9390564, -39.00683212 ], [ 174.92951965, -39.01516342 ], [ 174.91920471, -39.01281738 ], [ 174.925033570000011, -39.00014496 ], [ 174.917633059999986, -38.99146271 ], [ 174.90440369, -38.99545288 ], [ 174.90071106, -38.99110794 ], [ 174.887481689999987, -38.99509811 ], [ 174.88008118, -38.98641205 ], [ 174.89253235000001, -38.97174072 ], [ 174.87852478, -38.96504593 ], [ 174.885131840000014, -38.96305084 ], [ 174.890960690000014, -38.95037842 ], [ 174.87696838, -38.94367981 ], [ 174.883575439999987, -38.94168854 ], [ 174.876190189999988, -38.93299484 ], [ 174.88862610000001, -38.91832733 ], [ 174.8812561, -38.90963745 ], [ 174.88786316, -38.90764618 ], [ 174.87678528, -38.89460373 ], [ 174.8664856, -38.89224625 ], [ 174.84667969, -38.89821243 ], [ 174.85035706, -38.90256119 ], [ 174.8371582, -38.90654373 ], [ 174.800323490000011, -38.86302948 ], [ 174.80691528, -38.86103821 ], [ 174.79956055, -38.85232925 ], [ 174.809082030000013, -38.84399796 ], [ 174.79067993000001, -38.82221222 ], [ 174.81414795, -38.82061386 ], [ 174.82290649, -38.80158997 ], [ 174.82214355, -38.79088974 ], [ 174.855133059999986, -38.78098297 ], [ 174.85882568, -38.78533936 ], [ 174.872024540000012, -38.78137589 ], [ 174.8712616, -38.77068329 ], [ 174.897659299999987, -38.76276398 ], [ 174.907165529999986, -38.75444794 ], [ 174.91085815, -38.75880432 ], [ 174.924057010000013, -38.75484085 ], [ 174.92773438, -38.75919724 ], [ 174.94754028, -38.75325394 ], [ 174.93647766, -38.74019623 ], [ 174.94599915, -38.731884 ], [ 174.94523621, -38.72119522 ], [ 174.9584198, -38.71723938 ], [ 174.96057129, -38.70022202 ], [ 174.97085571, -38.70259476 ], [ 174.95979309, -38.68953705 ], [ 174.96931458, -38.68122482 ], [ 174.95826721, -38.6681633 ], [ 174.97514343, -38.66856384 ], [ 174.98832703, -38.66461182 ], [ 174.99201965, -38.66896439 ], [ 175.00889587, -38.66936111 ], [ 175.00520325, -38.66500854 ], [ 175.0249939, -38.65907288 ], [ 175.02868652, -38.66342545 ], [ 175.048477170000012, -38.65748978 ], [ 175.04478455, -38.65314102 ], [ 175.0645752, -38.64720154 ], [ 175.060897829999988, -38.64285278 ], [ 175.08068848, -38.63691711 ], [ 175.08358765, -38.63058853 ], [ 175.0909729, -38.63928223 ], [ 175.123947140000013, -38.62938309 ], [ 175.140838620000011, -38.62976456 ], [ 175.14451599, -38.63410568 ], [ 175.157714840000011, -38.63014221 ], [ 175.16799927, -38.63249969 ], [ 175.18119812, -38.62853622 ], [ 175.19517517, -38.63523102 ], [ 175.20178223, -38.63324738 ], [ 175.20916748, -38.641922 ], [ 175.24215698, -38.63199615 ], [ 175.23846436, -38.62765884 ], [ 175.25166321, -38.62369156 ], [ 175.247970579999986, -38.61935425 ], [ 175.26776123, -38.61339951 ], [ 175.27145386, -38.617733 ], [ 175.28965759, -38.59047318 ], [ 175.30734253, -38.60148621 ], [ 175.31393433, -38.59950256 ], [ 175.306549069999988, -38.59083557 ], [ 175.30865479, -38.57386398 ], [ 175.327651980000013, -38.55726242 ], [ 175.33055115, -38.55094528 ], [ 175.34532166, -38.56827545 ], [ 175.33872986, -38.57025909 ], [ 175.34321594, -38.58523941 ], [ 175.38278198, -38.57332611 ], [ 175.388580319999988, -38.56069565 ], [ 175.405456539999989, -38.56105423 ], [ 175.40835571, -38.55473709 ], [ 175.42523193, -38.55509567 ], [ 175.428924560000013, -38.55942535 ], [ 175.45320129000001, -38.56843185 ], [ 175.50672913, -38.5631752 ], [ 175.53262329, -38.59343338 ], [ 175.5466156, -38.60008621 ], [ 175.56637573, -38.59412003 ], [ 175.57008362, -38.59843826 ], [ 175.57955933, -38.5901413 ], [ 175.58325195, -38.59446335 ], [ 175.61619568, -38.58451462 ], [ 175.628570559999986, -38.56991196 ], [ 175.64173889, -38.56593323 ], [ 175.645431519999988, -38.57025146 ], [ 175.63389587, -38.59547806 ], [ 175.63182068, -38.6124115 ], [ 175.618637080000013, -38.61639023 ], [ 175.609985349999988, -38.63531494 ], [ 175.59680176, -38.6393013 ], [ 175.600509640000013, -38.64361572 ], [ 175.58073425, -38.64959335 ], [ 175.588134770000011, -38.65822983 ], [ 175.581542969999987, -38.6602211 ], [ 175.58895874000001, -38.66885757 ], [ 175.57948303, -38.67716217 ], [ 175.58319092, -38.68148041 ], [ 175.57740784, -38.69410324 ], [ 175.570816040000011, -38.69609451 ], [ 175.5592804, -38.72134399 ], [ 175.54319763, -38.73165131 ], [ 175.544021609999987, -38.74228287 ], [ 175.53083801, -38.74627304 ], [ 175.52793884, -38.75259018 ], [ 175.5324707, -38.76753998 ], [ 175.55102539, -38.78912735 ], [ 175.54814148, -38.79544449 ], [ 175.56134033, -38.79144287 ], [ 175.58734131, -38.82165146 ], [ 175.58818054, -38.83227921 ], [ 175.56838989, -38.83828354 ], [ 175.55026245, -38.86555481 ], [ 175.568847659999989, -38.88712692 ], [ 175.569702150000012, -38.89775848 ], [ 175.57629395, -38.89575195 ], [ 175.59118652, -38.91300583 ], [ 175.57221985000001, -38.92965317 ], [ 175.57307434, -38.94028473 ], [ 175.56358337, -38.94861221 ], [ 175.56155396, -38.96556473 ], [ 175.57273865, -38.97850037 ], [ 175.573577879999988, -38.98913193 ], [ 175.6103363, -38.98339844 ], [ 175.63674927, -38.97536087 ], [ 175.65081787, -38.98197174 ], [ 175.6913147, -38.98053741 ], [ 175.67523193, -38.99087524 ], [ 175.653396609999987, -39.01385117 ], [ 175.658004760000011, -39.02878189 ], [ 175.64851379000001, -39.037117 ], [ 175.6522522, -39.0414238 ], [ 175.619216920000014, -39.05148697 ], [ 175.62667847, -39.06010437 ], [ 175.623809810000012, -39.06642532 ], [ 175.628417969999987, -39.08135986 ], [ 175.62554932, -39.08768463 ], [ 175.642501829999986, -39.08795929 ], [ 175.6574707, -39.10518265 ], [ 175.65084839, -39.10720062 ], [ 175.63824463, -39.16007233 ], [ 175.562973019999987, -39.27570724 ], [ 175.67338562, -39.29647064 ], [ 175.71025085, -39.29063416 ], [ 175.75180054, -39.29970932 ], [ 175.74803162, -39.29541016 ], [ 175.75752258, -39.28705978 ], [ 175.7754364, -39.29791641 ], [ 175.78868103, -39.29385757 ], [ 175.79620361, -39.30244446 ], [ 175.81321716, -39.30267334 ], [ 175.82646179, -39.2986145 ], [ 175.8359375, -39.29026413 ], [ 175.844497679999989, -39.27130508 ], [ 175.85772705, -39.26725006 ], [ 175.868118290000012, -39.26950836 ], [ 175.87382507, -39.25687408 ], [ 175.86343384, -39.25461197 ], [ 175.862518310000013, -39.2440033 ], [ 175.88897705, -39.23589325 ], [ 175.88522339, -39.23160553 ], [ 175.89845276, -39.22755051 ], [ 175.901306150000011, -39.22123337 ], [ 175.889999390000014, -39.20836258 ], [ 175.9296875, -39.19620514 ], [ 175.92591858, -39.19191742 ], [ 175.945755, -39.18584061 ], [ 175.94952393, -39.19012833 ], [ 175.969360349999988, -39.1840477 ], [ 175.97505188, -39.17142487 ], [ 175.96751404, -39.16284943 ], [ 175.98074341, -39.15879822 ], [ 175.983581539999989, -39.15248871 ], [ 176.05525208, -39.15769958 ], [ 176.085433959999989, -39.15386581 ], [ 176.089202879999988, -39.1581459 ], [ 176.14860535, -39.13988495 ], [ 176.151443480000012, -39.13357925 ], [ 176.16557312, -39.14010239 ], [ 176.17218018, -39.13807297 ], [ 176.186309810000012, -39.14458847 ], [ 176.18066406, -39.15719604 ], [ 176.1882019, -39.16574097 ], [ 176.18537903, -39.17204666 ], [ 176.19293213, -39.18059158 ], [ 176.18634033, -39.18262482 ], [ 176.20144653, -39.19971085 ], [ 176.19862366000001, -39.20601273 ], [ 176.20617676, -39.21455383 ], [ 176.19958496000001, -39.21659088 ], [ 176.20713806, -39.22513199 ], [ 176.21374512, -39.22309494 ], [ 176.21470642, -39.23366928 ], [ 176.22790527, -39.22960281 ], [ 176.25527954, -39.23203659 ], [ 176.26663208, -39.24483871 ], [ 176.27983093, -39.24076843 ], [ 176.29022217, -39.24300003 ], [ 176.297805790000012, -39.25153351 ], [ 176.29119873, -39.25357056 ], [ 176.30258179, -39.26636505 ], [ 176.29977417, -39.27266693 ], [ 176.31115723, -39.28546143 ], [ 176.309341429999989, -39.30233002 ], [ 176.28292847, -39.31048203 ], [ 176.290527340000011, -39.31901169 ], [ 176.28012085, -39.31678391 ], [ 176.28771973, -39.32531357 ], [ 176.28111267, -39.32735062 ], [ 176.28210449, -39.33791733 ], [ 176.268890379999988, -39.34199905 ], [ 176.2802887, -39.35478973 ], [ 176.27368164, -39.3568306 ], [ 176.29450989, -39.36127472 ], [ 176.307724, -39.35719299 ], [ 176.31915283, -39.36997604 ], [ 176.332366940000014, -39.36589432 ], [ 176.33998108, -39.37441635 ], [ 176.33337402, -39.37645721 ], [ 176.34098816, -39.38497543 ], [ 176.32397461, -39.38479996 ], [ 176.33540344, -39.39757919 ], [ 176.32600403, -39.40592575 ], [ 176.32981873, -39.41018677 ], [ 176.3099823, -39.41631699 ], [ 176.32040405, -39.41853333 ], [ 176.30819702, -39.43318558 ], [ 176.31965637, -39.445961 ], [ 176.32069397, -39.4565239 ], [ 176.3112793, -39.46487808 ], [ 176.31892395, -39.47339249 ], [ 176.32936096, -39.47560501 ], [ 176.31613159, -39.47969818 ], [ 176.3237915, -39.4882164 ], [ 176.317169189999987, -39.49026108 ], [ 176.32865906, -39.5030365 ], [ 176.322036739999987, -39.50508499 ], [ 176.30776978, -39.49861908 ], [ 176.254806519999988, -39.5150032 ], [ 176.252014159999987, -39.52131271 ], [ 176.21226501000001, -39.53359985 ], [ 176.203872679999989, -39.55253601 ], [ 176.190628049999987, -39.556633 ], [ 176.18885803, -39.57352066 ], [ 176.162338260000013, -39.58171844 ], [ 176.14524841, -39.58155441 ], [ 176.156738280000013, -39.59434891 ], [ 176.16337585, -39.5922966 ], [ 176.164398190000014, -39.60287476 ], [ 176.177658079999986, -39.59877396 ], [ 176.185333250000014, -39.6072998 ], [ 176.16856384, -39.64518738 ], [ 176.20103455, -39.66239166 ], [ 176.20872498, -39.6709137 ], [ 176.1993103, -39.67928314 ], [ 176.186035159999989, -39.68339157 ], [ 176.18536377, -39.71086884 ], [ 176.172073360000013, -39.71498108 ], [ 176.17805481, -39.74040604 ], [ 176.14179993, -39.82258606 ], [ 176.14115906, -39.85009384 ], [ 176.13450623, -39.85215378 ], [ 176.12055969, -39.88378906 ], [ 176.13494873, -39.89026642 ], [ 176.129364009999989, -39.90292358 ], [ 176.11326599, -39.91337585 ], [ 176.1210022, -39.92191696 ], [ 176.108764650000012, -39.93664551 ], [ 176.127044680000012, -39.94739532 ], [ 176.11758423, -39.95579147 ], [ 176.12145996000001, -39.96006393 ], [ 176.09976196, -39.98320389 ], [ 176.10084534, -39.99382019 ], [ 176.126892090000013, -40.013134 ], [ 176.13853455, -40.02597046 ], [ 176.157440189999988, -40.00914764 ], [ 176.17185974, -40.01563644 ], [ 176.185195920000012, -40.01150131 ], [ 176.182403560000012, -40.01784897 ], [ 176.212951659999987, -40.0138588 ], [ 176.214050289999989, -40.02448273 ], [ 176.24180603, -40.02684021 ], [ 176.24291992, -40.03746796 ], [ 176.264022829999988, -40.04189301 ], [ 176.261245730000013, -40.04824448 ], [ 176.27180481, -40.050457 ], [ 176.262359620000012, -40.05887604 ], [ 176.27682495, -40.06537628 ], [ 176.30072021, -40.06345749 ], [ 176.301849370000014, -40.07409668 ], [ 176.30851746, -40.07202911 ], [ 176.32022095, -40.08489609 ], [ 176.321380620000014, -40.09554291 ], [ 176.31471252, -40.09761047 ], [ 176.32252502, -40.10619354 ], [ 176.31309509, -40.11462021 ], [ 176.317016599999988, -40.11891174 ], [ 176.33425903, -40.11906815 ], [ 176.34208679, -40.12765884 ], [ 176.3354187, -40.1297226 ], [ 176.347152709999989, -40.14260864 ], [ 176.36833191, -40.14707184 ], [ 176.38008118, -40.15996933 ], [ 176.377319340000014, -40.16633224 ], [ 176.36398315, -40.17045975 ], [ 176.37182617, -40.17906189 ], [ 176.36239624000001, -40.18748856 ], [ 176.36631775, -40.19179153 ], [ 176.36198425, -40.21519089 ], [ 176.375320429999988, -40.2110672 ], [ 176.3710022, -40.234478 ], [ 176.38160706, -40.23672104 ], [ 176.37884521, -40.24308777 ], [ 176.38670349, -40.25169754 ], [ 176.3800354, -40.25375748 ], [ 176.38789368, -40.26236725 ], [ 176.378479, -40.27079391 ], [ 176.38633728, -40.27939987 ], [ 176.39302063, -40.27733994 ], [ 176.400894169999987, -40.28594589 ], [ 176.393890379999988, -40.3156929 ], [ 176.387222290000011, -40.31775284 ], [ 176.399063109999986, -40.33064651 ], [ 176.409683230000013, -40.33288574 ], [ 176.37081909, -40.35591507 ], [ 176.3921051, -40.36037445 ], [ 176.39607239, -40.36466599 ], [ 176.38665771, -40.37308502 ], [ 176.390625, -40.37737274 ], [ 176.4039917, -40.37324524 ], [ 176.419860840000013, -40.39039612 ], [ 176.43319702, -40.38628006 ], [ 176.44111633, -40.3948555 ], [ 176.4344635, -40.39690781 ], [ 176.44238281, -40.4054718 ], [ 176.44903564, -40.40341949 ], [ 176.46360779, -40.40992737 ], [ 176.476913450000012, -40.40582657 ], [ 176.49147034, -40.412323 ], [ 176.496856689999987, -40.39968491 ], [ 176.52593994, -40.41265488 ], [ 176.55107117, -40.42127609 ], [ 176.56306458, -40.40666199 ], [ 176.577621459999989, -40.41304398 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.8", "id_1": 8, "name_1": "Marlborough", "hasc_1": "NZ.MA", "population2022": 51900, "areakm2": 10429.736, "density2022": 4.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.069808959999989, -41.54973221 ], [ 174.068573, -41.54731369 ], [ 174.07087708, -41.54758072 ], [ 174.069808959999989, -41.54973221 ], [ 174.069808959999989, -41.54973221 ] ] ], [ [ [ 174.1091156, -41.5349884 ], [ 174.10577393, -41.53451538 ], [ 174.10737610000001, -41.5330925 ], [ 174.1091156, -41.5349884 ], [ 174.1091156, -41.5349884 ] ] ], [ [ [ 174.10324097, -41.53338623 ], [ 174.09277344, -41.5336113 ], [ 174.093963620000011, -41.52955627 ], [ 174.10324097, -41.53338623 ], [ 174.10324097, -41.53338623 ] ] ], [ [ [ 174.13555908, -41.33194351 ], [ 174.131103520000011, -41.33194351 ], [ 174.131103520000011, -41.33083344 ], [ 174.13555908, -41.33194351 ], [ 174.13555908, -41.33194351 ] ] ], [ [ [ 174.244491579999988, -41.29296112 ], [ 174.2419281, -41.29088211 ], [ 174.24601746, -41.29173279 ], [ 174.244491579999988, -41.29296112 ], [ 174.244491579999988, -41.29296112 ] ] ], [ [ [ 174.237808230000013, -41.24723053 ], [ 174.240036010000011, -41.24770737 ], [ 174.236694340000014, -41.24824142 ], [ 174.237808230000013, -41.24723053 ], [ 174.237808230000013, -41.24723053 ] ] ], [ [ [ 174.21611023, -41.24472046 ], [ 174.21444702, -41.24388885 ], [ 174.21638489, -41.24361038 ], [ 174.21611023, -41.24472046 ], [ 174.21611023, -41.24472046 ] ] ], [ [ [ 174.05563354, -41.23460388 ], [ 174.05760193, -41.2394371 ], [ 174.052932739999989, -41.23703384 ], [ 174.05563354, -41.23460388 ], [ 174.05563354, -41.23460388 ] ] ], [ [ [ 174.237228390000013, -41.20055389 ], [ 174.23554993, -41.19916534 ], [ 174.236389159999987, -41.19833374 ], [ 174.237228390000013, -41.20055389 ], [ 174.237228390000013, -41.20055389 ] ] ], [ [ [ 174.02372742, -41.1726799 ], [ 174.0221405, -41.17143631 ], [ 174.02261353, -41.17060471 ], [ 174.02372742, -41.1726799 ], [ 174.02372742, -41.1726799 ] ] ], [ [ [ 174.31916809, -41.16972351 ], [ 174.318603520000011, -41.16805649 ], [ 174.321105960000011, -41.16777802 ], [ 174.31916809, -41.16972351 ], [ 174.31916809, -41.16972351 ] ] ], [ [ [ 174.24087524, -41.15915298 ], [ 174.254669189999987, -41.17927933 ], [ 174.24285889, -41.1792984 ], [ 174.22930908, -41.18486786 ], [ 174.22596741000001, -41.17338943 ], [ 174.23348999000001, -41.17004013 ], [ 174.22964478, -41.1646347 ], [ 174.24087524, -41.15915298 ], [ 174.24087524, -41.15915298 ] ] ], [ [ [ 174.289855960000011, -41.15650177 ], [ 174.2890625, -41.16498947 ], [ 174.273895259999989, -41.16333389 ], [ 174.27478027, -41.1558876 ], [ 174.289855960000011, -41.15650177 ], [ 174.289855960000011, -41.15650177 ] ] ], [ [ [ 174.32583618000001, -41.11249924 ], [ 174.330429079999988, -41.11429596 ], [ 174.32945251000001, -41.11570358 ], [ 174.32583618000001, -41.11249924 ], [ 174.32583618000001, -41.11249924 ] ] ], [ [ [ 174.431137080000013, -41.11771774 ], [ 174.43264771, -41.11231995 ], [ 174.43527222, -41.11202621 ], [ 174.431137080000013, -41.11771774 ], [ 174.431137080000013, -41.11771774 ] ] ], [ [ [ 173.976104740000011, -41.11216736 ], [ 173.97659302, -41.10972214 ], [ 173.98017883, -41.10941315 ], [ 173.976104740000011, -41.11216736 ], [ 173.976104740000011, -41.11216736 ] ] ], [ [ [ 174.44250488, -41.11111069 ], [ 174.44055176, -41.10805511 ], [ 174.44332886, -41.10944366 ], [ 174.44250488, -41.11111069 ], [ 174.44250488, -41.11111069 ] ] ], [ [ [ 174.29658508, -41.11053467 ], [ 174.269332889999987, -41.12337875 ], [ 174.284118650000011, -41.11142731 ], [ 174.29658508, -41.11053467 ], [ 174.29658508, -41.11053467 ] ] ], [ [ [ 174.440765379999988, -41.10650635 ], [ 174.44020081, -41.10170364 ], [ 174.44258118, -41.10194016 ], [ 174.440765379999988, -41.10650635 ], [ 174.440765379999988, -41.10650635 ] ] ], [ [ [ 174.30610657, -41.10388947 ], [ 174.30499268, -41.10305405 ], [ 174.30860901, -41.10027695 ], [ 174.30610657, -41.10388947 ], [ 174.30610657, -41.10388947 ] ] ], [ [ [ 174.381347659999989, -41.08795929 ], [ 174.392501829999986, -41.09277725 ], [ 174.38909912, -41.11188507 ], [ 174.39147949, -41.11881638 ], [ 174.38273621, -41.1349678 ], [ 174.38383484, -41.14006042 ], [ 174.371521, -41.15784073 ], [ 174.36773682, -41.17328644 ], [ 174.37446594, -41.1811409 ], [ 174.37460327, -41.19426727 ], [ 174.36444092, -41.20138931 ], [ 174.35461426, -41.19450378 ], [ 174.34294128, -41.19216537 ], [ 174.33247375, -41.20651627 ], [ 174.32369995, -41.21199799 ], [ 174.312164309999986, -41.20198441 ], [ 174.29588318, -41.21038055 ], [ 174.281753540000011, -41.20946884 ], [ 174.280624390000014, -41.21521378 ], [ 174.25866699, -41.22774124 ], [ 174.255630489999987, -41.23619461 ], [ 174.245895389999987, -41.23370743 ], [ 174.2305603, -41.23555374 ], [ 174.229553220000014, -41.22231293 ], [ 174.215896609999987, -41.22672653 ], [ 174.218551639999987, -41.23178864 ], [ 174.20451355, -41.23769379 ], [ 174.190353390000013, -41.23532486 ], [ 174.18608093, -41.24029541 ], [ 174.162170409999987, -41.24324036 ], [ 174.16563416, -41.22855759 ], [ 174.18080139, -41.22154999 ], [ 174.182952879999988, -41.21658325 ], [ 174.192153929999989, -41.21910858 ], [ 174.19493103, -41.20926285 ], [ 174.20574951, -41.21092606 ], [ 174.21488953, -41.20619965 ], [ 174.23156738, -41.21580505 ], [ 174.22695923, -41.20338058 ], [ 174.23701477, -41.20735931 ], [ 174.24452209, -41.20249176 ], [ 174.25415039, -41.20303726 ], [ 174.26445007, -41.19616699 ], [ 174.24960327, -41.192379 ], [ 174.25788879000001, -41.1815567 ], [ 174.27859497, -41.1789093 ], [ 174.288162230000012, -41.1820488 ], [ 174.29295349, -41.16958237 ], [ 174.32197571, -41.16122055 ], [ 174.31092834, -41.17495728 ], [ 174.3379364, -41.17672729 ], [ 174.33320618, -41.16894913 ], [ 174.34153748, -41.16019058 ], [ 174.35827637, -41.15855789 ], [ 174.371719359999986, -41.1425972 ], [ 174.37553406, -41.13063431 ], [ 174.368377689999988, -41.12533951 ], [ 174.36523438, -41.13253021 ], [ 174.35385132, -41.14215088 ], [ 174.3321991, -41.14770508 ], [ 174.32531738, -41.14305115 ], [ 174.32775879, -41.13322449 ], [ 174.319122310000012, -41.13084793 ], [ 174.30340576, -41.13468933 ], [ 174.2875061, -41.14222336 ], [ 174.30601501000001, -41.12546921 ], [ 174.3196106, -41.12423706 ], [ 174.33255005, -41.12958527 ], [ 174.349838260000013, -41.11591721 ], [ 174.35481262, -41.11813354 ], [ 174.365722659999989, -41.10701752 ], [ 174.3795929, -41.09887695 ], [ 174.381347659999989, -41.08795929 ], [ 174.381347659999989, -41.08795929 ] ] ], [ [ [ 174.27722168, -41.09860992 ], [ 174.271133420000012, -41.09724045 ], [ 174.27256775, -41.08915329 ], [ 174.28067017, -41.08415985 ], [ 174.27722168, -41.09860992 ], [ 174.27722168, -41.09860992 ] ] ], [ [ [ 173.79418945, -41.07126999 ], [ 173.80059814, -41.06003952 ], [ 173.79899597, -41.07033157 ], [ 173.79418945, -41.07126999 ], [ 173.79418945, -41.07126999 ] ] ], [ [ [ 173.65805054, -41.05472183 ], [ 173.65499878, -41.05722046 ], [ 173.65138245, -41.05500031 ], [ 173.65805054, -41.05472183 ], [ 173.65805054, -41.05472183 ] ] ], [ [ [ 173.80679321, -41.0544281 ], [ 173.80566406, -41.0525322 ], [ 173.808105469999987, -41.05218124 ], [ 173.80679321, -41.0544281 ], [ 173.80679321, -41.0544281 ] ] ], [ [ [ 173.8008728, -41.04589844 ], [ 173.80409241000001, -41.05068588 ], [ 173.79547119, -41.05035019 ], [ 173.8008728, -41.04589844 ], [ 173.8008728, -41.04589844 ] ] ], [ [ [ 173.642791749999986, -41.0397377 ], [ 173.64199829, -41.04403305 ], [ 173.638732909999987, -41.03955841 ], [ 173.642791749999986, -41.0397377 ], [ 173.642791749999986, -41.0397377 ] ] ], [ [ [ 173.64537048, -41.03845215 ], [ 173.642227170000012, -41.03777695 ], [ 173.64520264, -41.03714752 ], [ 173.64537048, -41.03845215 ], [ 173.64537048, -41.03845215 ] ] ], [ [ [ 173.661026, -41.04374313 ], [ 173.65737915, -41.03792191 ], [ 173.6625061, -41.03777695 ], [ 173.661026, -41.04374313 ], [ 173.661026, -41.04374313 ] ] ], [ [ [ 173.90649414, -41.03309631 ], [ 173.908447270000011, -41.04082108 ], [ 173.900604249999986, -41.03116226 ], [ 173.90649414, -41.03309631 ], [ 173.90649414, -41.03309631 ] ] ], [ [ [ 173.89448547, -41.01633835 ], [ 173.906753540000011, -41.01773453 ], [ 173.88291931, -41.03675461 ], [ 173.880783079999986, -41.03142166 ], [ 173.8692627, -41.02923584 ], [ 173.87916565, -41.02194595 ], [ 173.89448547, -41.01633835 ], [ 173.89448547, -41.01633835 ] ] ], [ [ [ 174.03443909, -40.99264908 ], [ 174.033966060000012, -40.99174881 ], [ 174.03649902, -40.99007416 ], [ 174.03443909, -40.99264908 ], [ 174.03443909, -40.99264908 ] ] ], [ [ [ 174.01887512, -40.98361206 ], [ 174.017776489999989, -40.98241425 ], [ 174.01927185, -40.98121643 ], [ 174.01887512, -40.98361206 ], [ 174.01887512, -40.98361206 ] ] ], [ [ [ 173.87205505, -40.96554947 ], [ 173.8711853, -40.96465302 ], [ 173.87309265, -40.9642334 ], [ 173.87205505, -40.96554947 ], [ 173.87205505, -40.96554947 ] ] ], [ [ [ 174.1401825, -40.95042801 ], [ 174.14401245, -40.95291519 ], [ 174.13139343, -40.95138931 ], [ 174.1401825, -40.95042801 ], [ 174.1401825, -40.95042801 ] ] ], [ [ [ 173.782318120000014, -40.94605637 ], [ 173.77874756, -40.94880295 ], [ 173.78118896, -40.9430809 ], [ 173.782318120000014, -40.94605637 ], [ 173.782318120000014, -40.94605637 ] ] ], [ [ [ 174.081420900000012, -40.94057083 ], [ 174.07821655, -40.95824051 ], [ 174.088790890000013, -40.96456146 ], [ 174.087539670000012, -40.96991348 ], [ 174.07817078, -40.9692421 ], [ 174.07118225, -40.98292923 ], [ 174.0599823, -40.99575424 ], [ 174.05271912, -40.98970032 ], [ 174.056732180000012, -40.98428726 ], [ 174.04916382, -40.97916794 ], [ 174.0569458, -40.96888733 ], [ 174.06723022, -40.96496582 ], [ 174.07417297, -40.95702744 ], [ 174.068298340000013, -40.95198441 ], [ 174.05082703, -40.95277786 ], [ 174.05778503, -40.94527817 ], [ 174.081420900000012, -40.94057083 ], [ 174.081420900000012, -40.94057083 ] ] ], [ [ [ 173.761108400000012, -40.91027832 ], [ 173.76333618000001, -40.91249847 ], [ 173.761108400000012, -40.91305542 ], [ 173.761108400000012, -40.91027832 ], [ 173.761108400000012, -40.91027832 ] ] ], [ [ [ 174.087661739999987, -40.89191055 ], [ 174.08988953, -40.89655304 ], [ 174.07772827, -40.90381241 ], [ 174.072036739999987, -40.9005127 ], [ 174.068145750000014, -40.90788269 ], [ 174.06254578, -40.90521622 ], [ 174.05610657, -40.91444397 ], [ 174.0569458, -40.9030571 ], [ 174.06582642, -40.89694595 ], [ 174.07695007, -40.89749908 ], [ 174.085006709999988, -40.88861084 ], [ 174.087661739999987, -40.89191055 ], [ 174.087661739999987, -40.89191055 ] ] ], [ [ [ 173.97648621, -40.89812469 ], [ 173.97915649, -40.90499115 ], [ 173.99459839, -40.91031647 ], [ 174.01333618000001, -40.90694427 ], [ 174.02337646, -40.91134644 ], [ 174.01454163, -40.91749954 ], [ 174.01835632, -40.92649841 ], [ 174.01438904, -40.93664551 ], [ 174.0, -40.94138718 ], [ 173.9992981, -40.93257141 ], [ 173.987640379999988, -40.92502213 ], [ 173.99087524, -40.91670227 ], [ 173.982482909999987, -40.9082489 ], [ 173.95887756, -40.92198181 ], [ 173.96131897, -40.92813492 ], [ 173.97238159, -40.92678833 ], [ 173.97541809, -40.93835068 ], [ 173.97042847, -40.94711685 ], [ 173.965911870000014, -40.9366188 ], [ 173.95019531, -40.94682693 ], [ 173.95857239, -40.95741653 ], [ 173.95687866, -40.96518326 ], [ 173.947021479999989, -40.97260666 ], [ 173.93693542, -40.96192169 ], [ 173.92198181, -40.96638107 ], [ 173.90740967, -40.96603012 ], [ 173.90895081, -40.97088623 ], [ 173.89930725, -40.97773361 ], [ 173.90330505, -40.9881897 ], [ 173.91799927, -40.97897339 ], [ 173.93013, -40.98330688 ], [ 173.91932678, -40.99564743 ], [ 173.910644530000013, -40.99393463 ], [ 173.895431519999988, -40.99894333 ], [ 173.888916020000011, -41.0080452 ], [ 173.88053894, -41.00268555 ], [ 173.87197876, -41.01707077 ], [ 173.85179138, -41.02247238 ], [ 173.832489009999989, -41.01560211 ], [ 173.81304932, -41.01777649 ], [ 173.83358765, -40.99640274 ], [ 173.8276825, -40.98905563 ], [ 173.816055299999988, -40.99367142 ], [ 173.80163574, -41.01360703 ], [ 173.792221070000011, -41.00639725 ], [ 173.771240229999989, -41.02373886 ], [ 173.78573608, -41.02088547 ], [ 173.78321838, -41.0251503 ], [ 173.79756165, -41.02370453 ], [ 173.792480469999987, -41.03103256 ], [ 173.80789185, -41.02680588 ], [ 173.81069946, -41.0324173 ], [ 173.79942322, -41.03501129 ], [ 173.79086304, -41.04346848 ], [ 173.78456116000001, -41.04072571 ], [ 173.78210449, -41.04867172 ], [ 173.76965332, -41.05231857 ], [ 173.78709412, -41.05656433 ], [ 173.77861023, -41.07083511 ], [ 173.78236389, -41.07448578 ], [ 173.77940369, -41.08619308 ], [ 173.767807010000013, -41.08645248 ], [ 173.75367737, -41.09829712 ], [ 173.75445557, -41.1024704 ], [ 173.765151980000013, -41.09315491 ], [ 173.77288818, -41.09990692 ], [ 173.76141357, -41.10350037 ], [ 173.756057739999989, -41.114048 ], [ 173.763305659999986, -41.11819077 ], [ 173.767776489999989, -41.10749817 ], [ 173.77926636, -41.1056633 ], [ 173.782180790000012, -41.11436081 ], [ 173.78993225, -41.10263062 ], [ 173.779525760000013, -41.0991478 ], [ 173.783416749999986, -41.0919838 ], [ 173.79724121000001, -41.08287811 ], [ 173.79341125, -41.09266663 ], [ 173.80883789, -41.09082794 ], [ 173.81971741000001, -41.05888748 ], [ 173.829727170000012, -41.05277634 ], [ 173.84805298, -41.05444336 ], [ 173.85920715, -41.06293869 ], [ 173.86482239, -41.0533371 ], [ 173.88406372, -41.06182861 ], [ 173.8943634, -41.05734634 ], [ 173.912170409999987, -41.05495453 ], [ 173.92837524, -41.06274414 ], [ 173.94697571, -41.0663414 ], [ 173.92897034, -41.06740189 ], [ 173.92225647, -41.06343079 ], [ 173.91555786, -41.06972122 ], [ 173.90515137, -41.07197952 ], [ 173.91139221, -41.07694626 ], [ 173.90110779, -41.08666611 ], [ 173.88464355, -41.07463074 ], [ 173.8777771, -41.07860947 ], [ 173.88027954, -41.08638763 ], [ 173.86982727, -41.07895279 ], [ 173.86801147, -41.0915184 ], [ 173.858886719999987, -41.09749985 ], [ 173.87861633, -41.0969429 ], [ 173.8883667, -41.10087204 ], [ 173.88583374000001, -41.11722183 ], [ 173.875915529999986, -41.12210083 ], [ 173.87419128, -41.11542511 ], [ 173.8613739, -41.11035156 ], [ 173.845611569999988, -41.11393738 ], [ 173.856384279999986, -41.12111282 ], [ 173.85214233, -41.13403702 ], [ 173.844375609999986, -41.13222504 ], [ 173.83087158, -41.13788605 ], [ 173.8377533, -41.14393616 ], [ 173.82771301, -41.14739227 ], [ 173.82139587, -41.14083481 ], [ 173.81770325, -41.1532135 ], [ 173.80337524, -41.15010452 ], [ 173.796371459999989, -41.15499878 ], [ 173.78443909, -41.14749908 ], [ 173.77722168, -41.17194366 ], [ 173.78582764, -41.17416763 ], [ 173.793441769999987, -41.16482162 ], [ 173.81625366, -41.16008377 ], [ 173.822494510000013, -41.1613884 ], [ 173.84861755, -41.15194321 ], [ 173.84889221, -41.16222382 ], [ 173.8293457, -41.17288589 ], [ 173.85806274, -41.16833496 ], [ 173.865005489999987, -41.17527771 ], [ 173.86462402, -41.19563675 ], [ 173.85061646, -41.20869446 ], [ 173.84739685, -41.22190857 ], [ 173.85083008, -41.24027634 ], [ 173.82221985000001, -41.25040817 ], [ 173.80049133, -41.24195862 ], [ 173.80429077, -41.25483322 ], [ 173.797348019999987, -41.25882721 ], [ 173.77360535, -41.25416183 ], [ 173.75971985000001, -41.26333237 ], [ 173.7565918, -41.27311325 ], [ 173.77055359, -41.27416611 ], [ 173.77166748, -41.28388977 ], [ 173.77891541, -41.28155518 ], [ 173.7822113, -41.27144241 ], [ 173.77262878, -41.26619339 ], [ 173.77915955, -41.26237106 ], [ 173.793609620000012, -41.2705574 ], [ 173.8028717, -41.28364944 ], [ 173.82321167, -41.29239273 ], [ 173.843399049999988, -41.29003906 ], [ 173.84971619, -41.28194427 ], [ 173.82783508, -41.28609085 ], [ 173.81169128, -41.27788925 ], [ 173.806991579999988, -41.26892853 ], [ 173.82015991, -41.26068497 ], [ 173.84472656, -41.25500107 ], [ 173.849685670000014, -41.26078796 ], [ 173.869049069999988, -41.25579071 ], [ 173.87457275, -41.24850845 ], [ 173.88267517, -41.24778748 ], [ 173.90640259, -41.23087311 ], [ 173.91584778, -41.23023605 ], [ 173.9259491, -41.22338867 ], [ 173.89755249000001, -41.225811 ], [ 173.88252258, -41.2299881 ], [ 173.86555481, -41.22472382 ], [ 173.86198425, -41.2191658 ], [ 173.87971497, -41.22083282 ], [ 173.893753049999987, -41.21746826 ], [ 173.893478390000013, -41.21327972 ], [ 173.90750122, -41.20750046 ], [ 173.93110657, -41.20888901 ], [ 173.94917297, -41.20138931 ], [ 173.945114139999987, -41.21377563 ], [ 173.95318604, -41.21102905 ], [ 173.96992493, -41.21721649 ], [ 173.9691925, -41.21075058 ], [ 173.99806213, -41.20888901 ], [ 174.01145935, -41.20329666 ], [ 174.01144409, -41.19936752 ], [ 174.03245544, -41.20109177 ], [ 174.03277588, -41.19166565 ], [ 174.0163269, -41.19081879 ], [ 174.02999878, -41.18444443 ], [ 174.03388977, -41.19111252 ], [ 174.052948, -41.18965149 ], [ 174.07481384, -41.19356918 ], [ 174.07783508, -41.18688202 ], [ 174.09776306, -41.18534851 ], [ 174.12167358, -41.17139053 ], [ 174.11917114, -41.16749954 ], [ 174.08364868000001, -41.17803955 ], [ 174.051391599999988, -41.17889023 ], [ 174.03991699, -41.17379379 ], [ 174.04966736, -41.16553879 ], [ 174.04507446, -41.15891647 ], [ 174.02662659, -41.16881561 ], [ 174.01252747, -41.16749954 ], [ 174.003143310000013, -41.17114258 ], [ 174.01098633, -41.17657852 ], [ 174.00289917, -41.18080521 ], [ 173.987213129999986, -41.18208694 ], [ 173.99864197, -41.18610764 ], [ 174.00302124000001, -41.19364548 ], [ 173.99612427, -41.19578934 ], [ 173.9850769, -41.19068146 ], [ 173.970932010000013, -41.19282532 ], [ 173.965744019999988, -41.18869781 ], [ 173.97444153, -41.18321228 ], [ 173.96861267, -41.17282486 ], [ 173.94709778, -41.18681717 ], [ 173.94081116000001, -41.18535233 ], [ 173.92880249000001, -41.19797897 ], [ 173.919677729999989, -41.20048141 ], [ 173.89826965, -41.19680786 ], [ 173.882308959999989, -41.20354462 ], [ 173.87742615, -41.20998764 ], [ 173.87361145, -41.20249939 ], [ 173.88679504000001, -41.19139099 ], [ 173.8833313, -41.17610931 ], [ 173.89128113000001, -41.17502975 ], [ 173.895568849999989, -41.16727066 ], [ 173.87908936, -41.16745377 ], [ 173.86955261, -41.15985107 ], [ 173.867980960000011, -41.15316772 ], [ 173.88391113, -41.15465927 ], [ 173.899337769999988, -41.14929581 ], [ 173.878143310000013, -41.14881134 ], [ 173.868637080000013, -41.13990784 ], [ 173.87779236, -41.13596344 ], [ 173.89447021, -41.13634491 ], [ 173.92092896, -41.12484741 ], [ 173.900878909999989, -41.12115479 ], [ 173.905914309999986, -41.11052704 ], [ 173.91337585, -41.10881042 ], [ 173.929214480000013, -41.11448669 ], [ 173.933258059999986, -41.10185242 ], [ 173.92651367, -41.09571838 ], [ 173.936584470000014, -41.08348083 ], [ 173.943710329999988, -41.08944321 ], [ 173.947631840000014, -41.08317184 ], [ 173.95884705, -41.07963562 ], [ 173.96357727, -41.08484268 ], [ 173.97445679, -41.07734299 ], [ 173.97790527, -41.08393478 ], [ 173.97070313, -41.08746719 ], [ 173.96459961, -41.10187149 ], [ 173.95179749, -41.11271286 ], [ 173.9574585, -41.1263237 ], [ 173.95298767, -41.13159561 ], [ 173.960037230000012, -41.1464119 ], [ 173.96759033, -41.15047455 ], [ 173.96502686, -41.13628006 ], [ 173.97129822, -41.13661957 ], [ 173.97471619, -41.12809372 ], [ 173.991577150000012, -41.13677979 ], [ 173.98901367, -41.12313461 ], [ 173.9941864, -41.10660172 ], [ 173.99223328, -41.10242462 ], [ 174.00799561, -41.09888077 ], [ 174.011215209999989, -41.09460831 ], [ 174.03155518, -41.10611725 ], [ 174.03846741000001, -41.11302567 ], [ 174.044708250000014, -41.10182953 ], [ 174.03166199, -41.09583282 ], [ 174.03128052, -41.08589172 ], [ 174.02416992, -41.07833481 ], [ 174.01194763, -41.05666733 ], [ 174.021118159999986, -41.06138992 ], [ 174.02333069, -41.05611038 ], [ 174.032180790000012, -41.06062317 ], [ 174.04699707, -41.05382538 ], [ 174.0473175, -41.0389328 ], [ 174.05290222, -41.02525711 ], [ 174.03572083, -41.01863098 ], [ 174.02972412, -41.02027893 ], [ 174.00915527, -41.01757431 ], [ 173.99777222, -41.03277588 ], [ 173.99653625, -41.04119492 ], [ 173.977630620000014, -41.05596542 ], [ 173.977752689999988, -41.05173874 ], [ 173.99101257, -41.03759003 ], [ 173.983871459999989, -41.03172684 ], [ 173.964080810000013, -41.04460907 ], [ 173.949432370000011, -41.03728485 ], [ 173.93974304, -41.04159546 ], [ 173.93611145, -41.03398895 ], [ 173.95056152, -41.03527832 ], [ 173.9533844, -41.03054047 ], [ 173.9347229, -41.01972198 ], [ 173.9458313, -41.01722336 ], [ 173.961395259999989, -41.0205574 ], [ 173.987945559999986, -41.0152092 ], [ 173.97386169, -41.00231171 ], [ 173.96899414, -41.003582 ], [ 173.96453857, -40.99173737 ], [ 173.97142029, -40.98340225 ], [ 173.973846439999988, -40.99130249 ], [ 173.99334717, -40.99525452 ], [ 174.00213623, -40.98561096 ], [ 173.99053955, -40.98150635 ], [ 173.99443054, -40.96892929 ], [ 174.01039124, -40.96934128 ], [ 174.01480103, -40.96495438 ], [ 174.02270508, -40.97727203 ], [ 174.01272583, -40.98736572 ], [ 174.01557922, -40.99275589 ], [ 174.0083313, -41.00944519 ], [ 174.015274049999988, -41.00749969 ], [ 174.02082825, -41.01555634 ], [ 174.03833008, -41.01027679 ], [ 174.04299927, -41.01777649 ], [ 174.04943848, -41.01527786 ], [ 174.06472778, -40.99583435 ], [ 174.07182312, -41.00689697 ], [ 174.0663147, -41.01205826 ], [ 174.0819397, -41.02083206 ], [ 174.107498170000014, -41.05222321 ], [ 174.1038208, -41.0287323 ], [ 174.09558105, -41.00089645 ], [ 174.0967865, -40.99469757 ], [ 174.10585022, -40.99257278 ], [ 174.11610413, -41.00416565 ], [ 174.12693787, -41.00889969 ], [ 174.13273621, -41.01908112 ], [ 174.14677429, -41.01652908 ], [ 174.14370728, -40.99626923 ], [ 174.15538025, -40.99738693 ], [ 174.15992737, -40.98168945 ], [ 174.14976501000001, -40.98119354 ], [ 174.148239139999987, -40.97377777 ], [ 174.15661621000001, -40.96791458 ], [ 174.16549683, -40.97117233 ], [ 174.17089844, -40.979599 ], [ 174.176269530000013, -40.99858856 ], [ 174.17324829, -41.00800705 ], [ 174.18583679, -41.01027679 ], [ 174.19667053, -41.00222397 ], [ 174.21583557, -41.0 ], [ 174.21916199, -40.99055481 ], [ 174.23237610000001, -40.98619843 ], [ 174.22306824, -40.99663925 ], [ 174.22589111, -41.00050354 ], [ 174.216735840000013, -41.00905609 ], [ 174.19813538, -41.00898361 ], [ 174.19612122, -41.02416611 ], [ 174.1993866, -41.03964996 ], [ 174.18888855, -41.04222107 ], [ 174.184661870000014, -41.02955627 ], [ 174.16925049, -41.04969025 ], [ 174.18251038, -41.05897903 ], [ 174.19010925, -41.05865097 ], [ 174.21891785, -41.07129669 ], [ 174.22583008, -41.06833267 ], [ 174.22416687, -41.05472183 ], [ 174.239349370000014, -41.04918671 ], [ 174.241394039999989, -41.04027939 ], [ 174.25773621, -41.04330063 ], [ 174.26916504, -41.02916718 ], [ 174.28889465, -41.03333282 ], [ 174.296386719999987, -41.01583481 ], [ 174.30610657, -41.00999832 ], [ 174.303894039999989, -41.00166702 ], [ 174.31195068, -40.99361038 ], [ 174.3115387, -41.01765442 ], [ 174.30430603, -41.02028656 ], [ 174.298614500000014, -41.0346756 ], [ 174.27761841, -41.04034042 ], [ 174.27320862, -41.04418182 ], [ 174.2762146, -41.05953979 ], [ 174.27107239, -41.06907654 ], [ 174.26449585, -41.06895828 ], [ 174.261398320000012, -41.07764053 ], [ 174.25268555, -41.07670212 ], [ 174.24786377, -41.08957672 ], [ 174.23439026, -41.09268188 ], [ 174.23744202, -41.10179901 ], [ 174.249389650000012, -41.10520554 ], [ 174.24661255, -41.12279129 ], [ 174.2416687, -41.12611008 ], [ 174.2252655, -41.11299515 ], [ 174.20910645, -41.11915207 ], [ 174.21276855, -41.12845993 ], [ 174.21987915, -41.13060379 ], [ 174.22125244, -41.14129639 ], [ 174.20812988, -41.13338852 ], [ 174.18592834, -41.13835907 ], [ 174.19548035, -41.12370682 ], [ 174.18484497, -41.12702179 ], [ 174.180877689999988, -41.11388016 ], [ 174.187988280000013, -41.09597778 ], [ 174.180175780000013, -41.08889389 ], [ 174.1693573, -41.11057281 ], [ 174.163284299999987, -41.11690521 ], [ 174.14648438, -41.10961533 ], [ 174.14833069, -41.12722397 ], [ 174.16252136, -41.13114929 ], [ 174.16975403, -41.14899063 ], [ 174.18566895, -41.15721893 ], [ 174.198440549999987, -41.15400696 ], [ 174.18482971, -41.17412949 ], [ 174.19709778, -41.17254257 ], [ 174.202774049999988, -41.18444443 ], [ 174.19248962, -41.18289566 ], [ 174.187286379999989, -41.19460297 ], [ 174.168884279999986, -41.20194626 ], [ 174.17778015, -41.19194412 ], [ 174.1799469, -41.18213654 ], [ 174.171661379999989, -41.1855545 ], [ 174.164413450000012, -41.17824936 ], [ 174.152664179999988, -41.1764946 ], [ 174.155197140000013, -41.19799042 ], [ 174.14910889, -41.2065506 ], [ 174.157180790000012, -41.21280289 ], [ 174.14395142, -41.21620178 ], [ 174.142227170000012, -41.20777893 ], [ 174.12666321, -41.20467377 ], [ 174.125915529999986, -41.19287109 ], [ 174.1131134, -41.20534134 ], [ 174.123291020000011, -41.21660995 ], [ 174.11521912, -41.22267151 ], [ 174.101913450000012, -41.21867371 ], [ 174.10662842, -41.21444702 ], [ 174.097991940000014, -41.20311356 ], [ 174.085479740000011, -41.21520615 ], [ 174.088241579999988, -41.22589111 ], [ 174.075271609999987, -41.22972107 ], [ 174.077056879999986, -41.2228241 ], [ 174.06361389, -41.22277832 ], [ 174.073577879999988, -41.21081543 ], [ 174.0627594, -41.20617676 ], [ 174.058273320000012, -41.21491623 ], [ 174.047805790000012, -41.20975113 ], [ 174.04740906, -41.22159958 ], [ 174.04083252, -41.22333145 ], [ 174.03051758, -41.21118164 ], [ 174.02182007, -41.22354507 ], [ 174.03071594, -41.22796631 ], [ 174.03257751000001, -41.23876953 ], [ 174.01757813, -41.23748016 ], [ 174.01576233, -41.22724152 ], [ 174.008575439999987, -41.23959732 ], [ 174.00500488, -41.22583389 ], [ 173.99845886, -41.21932602 ], [ 173.996566769999987, -41.24198151 ], [ 173.98858643, -41.24253082 ], [ 173.98312378, -41.25074768 ], [ 173.982498170000014, -41.23583221 ], [ 173.97206116000001, -41.22623062 ], [ 173.96499634, -41.23249817 ], [ 173.97235107, -41.24076462 ], [ 173.97006226, -41.25011063 ], [ 173.957351679999988, -41.25677109 ], [ 173.95466614, -41.25256348 ], [ 173.941619870000011, -41.25474548 ], [ 173.92591858, -41.26411057 ], [ 173.9140625, -41.26440048 ], [ 173.905929570000012, -41.27841187 ], [ 173.9163208, -41.27944946 ], [ 173.92056274, -41.27388763 ], [ 173.934204099999988, -41.26923752 ], [ 173.957504269999987, -41.26777649 ], [ 173.960159299999987, -41.27285767 ], [ 173.96774292, -41.26716232 ], [ 174.01086426, -41.25843048 ], [ 173.99520874000001, -41.27475357 ], [ 174.00944519, -41.27198792 ], [ 174.010940549999987, -41.28261185 ], [ 174.018783570000011, -41.27180862 ], [ 174.0352478, -41.25686646 ], [ 174.04916382, -41.25068283 ], [ 174.040954590000013, -41.2593956 ], [ 174.04083252, -41.26750183 ], [ 174.06573486, -41.25576401 ], [ 174.074722290000011, -41.26777649 ], [ 174.08860779, -41.26861191 ], [ 174.08201599, -41.25842667 ], [ 174.07434082, -41.25466156 ], [ 174.09350586, -41.24309158 ], [ 174.09803772, -41.24613571 ], [ 174.10678101, -41.23953247 ], [ 174.11305237, -41.2463913 ], [ 174.11358643, -41.23690414 ], [ 174.12486267, -41.23617935 ], [ 174.131774900000011, -41.24096298 ], [ 174.14680481, -41.23244858 ], [ 174.14569092, -41.23900986 ], [ 174.13397217, -41.25640106 ], [ 174.13856506, -41.25918579 ], [ 174.14945984, -41.24866104 ], [ 174.15791321, -41.25095749 ], [ 174.15943909, -41.26222229 ], [ 174.16802979, -41.2519722 ], [ 174.176681519999988, -41.24986649 ], [ 174.177963260000013, -41.26038742 ], [ 174.203750609999986, -41.27179718 ], [ 174.21110535, -41.26916504 ], [ 174.18821716, -41.26109695 ], [ 174.18482971, -41.25192642 ], [ 174.197174069999988, -41.24394608 ], [ 174.2081604, -41.24586868 ], [ 174.210723879999989, -41.25513077 ], [ 174.22554016, -41.25104523 ], [ 174.22868347, -41.24622345 ], [ 174.242538450000012, -41.25049591 ], [ 174.24707031, -41.24454117 ], [ 174.25517273, -41.24986649 ], [ 174.25161743000001, -41.25803375 ], [ 174.26475525, -41.25207901 ], [ 174.258605960000011, -41.24472046 ], [ 174.265289309999986, -41.24036026 ], [ 174.27555847, -41.24305725 ], [ 174.27073669, -41.23472977 ], [ 174.31304932, -41.21194458 ], [ 174.31777954, -41.21416855 ], [ 174.302505489999987, -41.22249985 ], [ 174.29020691, -41.23254776 ], [ 174.28919983, -41.24523163 ], [ 174.275756840000014, -41.25572968 ], [ 174.28416443, -41.26889038 ], [ 174.26600647, -41.27407837 ], [ 174.25372314, -41.27086639 ], [ 174.25889587, -41.27999878 ], [ 174.239883420000012, -41.28768539 ], [ 174.229675289999989, -41.28701401 ], [ 174.224533079999986, -41.2922554 ], [ 174.235168460000011, -41.30315781 ], [ 174.24499512, -41.30833435 ], [ 174.23698425, -41.31990814 ], [ 174.220611569999988, -41.31728745 ], [ 174.214050289999989, -41.32542419 ], [ 174.20855713, -41.31325531 ], [ 174.201248170000014, -41.31129837 ], [ 174.19178772, -41.31616592 ], [ 174.19822693, -41.33020401 ], [ 174.19198608, -41.337677 ], [ 174.17984009, -41.33376694 ], [ 174.16925049, -41.33613586 ], [ 174.15286255, -41.34679413 ], [ 174.16000366, -41.35055542 ], [ 174.13520813, -41.34759521 ], [ 174.13127136, -41.35311508 ], [ 174.125473019999987, -41.3431778 ], [ 174.145156859999986, -41.33321762 ], [ 174.13883972, -41.33234024 ], [ 174.142654420000014, -41.3236084 ], [ 174.15901184, -41.32709122 ], [ 174.16123962, -41.31972122 ], [ 174.17341614, -41.31524277 ], [ 174.167221070000011, -41.3069458 ], [ 174.176712040000012, -41.30383682 ], [ 174.176834109999987, -41.29530716 ], [ 174.18850708, -41.29520798 ], [ 174.17979431, -41.28671646 ], [ 174.16976929, -41.29189301 ], [ 174.16027832, -41.28805542 ], [ 174.163131709999988, -41.298069 ], [ 174.15625, -41.29954147 ], [ 174.146728520000011, -41.31383514 ], [ 174.13615417, -41.31164551 ], [ 174.15028381, -41.2919426 ], [ 174.14649963, -41.283638 ], [ 174.132019039999989, -41.28899765 ], [ 174.13128662, -41.29616165 ], [ 174.1166687, -41.29861069 ], [ 174.11384583, -41.30448532 ], [ 174.122146609999987, -41.30705261 ], [ 174.10757446, -41.33367538 ], [ 174.099258420000012, -41.33159256 ], [ 174.104721070000011, -41.33911896 ], [ 174.086395259999989, -41.35527802 ], [ 174.08944702, -41.35972214 ], [ 174.073028560000012, -41.35704803 ], [ 174.07855225, -41.36361313 ], [ 174.06768799, -41.38023758 ], [ 174.06773376000001, -41.38863373 ], [ 174.05917358, -41.38666534 ], [ 174.04826355, -41.39492798 ], [ 174.040115359999987, -41.41088486 ], [ 174.02999878, -41.43942642 ], [ 174.030059810000012, -41.46487045 ], [ 174.03863525, -41.48430252 ], [ 174.04556274, -41.49186325 ], [ 174.06123352, -41.5002861 ], [ 174.05705261, -41.50403976 ], [ 174.0425415, -41.50105286 ], [ 174.04943848, -41.50749969 ], [ 174.056732180000012, -41.5064621 ], [ 174.060913090000014, -41.51371002 ], [ 174.08944702, -41.52694321 ], [ 174.079727170000012, -41.52999878 ], [ 174.082778929999989, -41.53527832 ], [ 174.0625, -41.5348053 ], [ 174.0581665, -41.53992844 ], [ 174.06417847, -41.54701614 ], [ 174.059082030000013, -41.5510025 ], [ 174.073303220000014, -41.55188751 ], [ 174.07885742, -41.53730774 ], [ 174.088806150000011, -41.54555893 ], [ 174.08053589, -41.55102921 ], [ 174.08996582, -41.55879211 ], [ 174.106933590000011, -41.55685425 ], [ 174.12527466, -41.54555511 ], [ 174.1166687, -41.5363884 ], [ 174.08888245, -41.52416611 ], [ 174.05888367, -41.50638962 ], [ 174.06222534, -41.5008316 ], [ 174.06750488, -41.50860977 ], [ 174.0930481, -41.52388763 ], [ 174.11749268, -41.53499985 ], [ 174.137146, -41.55124664 ], [ 174.14881897, -41.55688095 ], [ 174.14866638, -41.57120895 ], [ 174.15336609, -41.58884048 ], [ 174.159729, -41.59145737 ], [ 174.1680603, -41.60666656 ], [ 174.16116333, -41.62960434 ], [ 174.15786743000001, -41.64793777 ], [ 174.15956116000001, -41.66830063 ], [ 174.16809082, -41.68919754 ], [ 174.181152340000011, -41.7094574 ], [ 174.19471741000001, -41.72083282 ], [ 174.21334839, -41.72789383 ], [ 174.22332764, -41.7219429 ], [ 174.23301697, -41.72747421 ], [ 174.25932312, -41.73431015 ], [ 174.268615720000014, -41.73277664 ], [ 174.27610779, -41.72416687 ], [ 174.27806091, -41.73749924 ], [ 174.27528381, -41.74666595 ], [ 174.26693726, -41.74972153 ], [ 174.25778198, -41.76250076 ], [ 174.24224854, -41.76947021 ], [ 174.23268127, -41.78382874 ], [ 174.21847534, -41.7926712 ], [ 174.21284485000001, -41.8028717 ], [ 174.215316769999987, -41.81268311 ], [ 174.19865417, -41.82202911 ], [ 174.19436646, -41.82759476 ], [ 174.19709778, -41.83575439 ], [ 174.18301392, -41.84665298 ], [ 174.18270874000001, -41.85064697 ], [ 174.16471863000001, -41.85984039 ], [ 174.15386963, -41.87762451 ], [ 174.1275177, -41.90056229 ], [ 174.11555481, -41.90631104 ], [ 174.09788513, -41.92332077 ], [ 174.09751892, -41.93053055 ], [ 174.073028560000012, -41.95115662 ], [ 174.05186462, -41.96649933 ], [ 174.0664978, -41.93467712 ], [ 174.05163574, -41.92819595 ], [ 174.04202271, -41.93682098 ], [ 174.038024900000011, -41.9324913 ], [ 174.01768494, -41.93891144 ], [ 174.00305176, -41.93235779 ], [ 173.979003909999989, -41.9343605 ], [ 173.98179626000001, -41.92789459 ], [ 173.971206669999987, -41.92565536 ], [ 173.95950317, -41.91259003 ], [ 173.92616272, -41.92310333 ], [ 173.918396, -41.91438293 ], [ 173.85194397, -41.93529892 ], [ 173.84806824, -41.93092728 ], [ 173.8215332, -41.93917847 ], [ 173.81213379, -41.94766235 ], [ 173.7988739, -41.95175171 ], [ 173.796127320000011, -41.95817947 ], [ 173.77557373, -41.92541885 ], [ 173.76116943, -41.91867447 ], [ 173.767807010000013, -41.91664505 ], [ 173.753402709999989, -41.90990067 ], [ 173.740142819999988, -41.91395187 ], [ 173.74401855, -41.91833878 ], [ 173.73075867, -41.92238235 ], [ 173.73464966, -41.92677307 ], [ 173.7252655, -41.93519592 ], [ 173.71977234, -41.94800949 ], [ 173.72366333, -41.95240402 ], [ 173.71817017, -41.96520996 ], [ 173.70880127, -41.97361374 ], [ 173.66894531, -41.985569 ], [ 173.667343140000014, -42.00274658 ], [ 173.64074707, -42.01065826 ], [ 173.63018799, -42.0082283 ], [ 173.61019897, -42.01413727 ], [ 173.61135864, -42.02490997 ], [ 173.60194397, -42.03324509 ], [ 173.59135437, -42.03079987 ], [ 173.57801819, -42.03471756 ], [ 173.579177859999987, -42.04548645 ], [ 173.56584167, -42.0493927 ], [ 173.55480957, -42.07481766 ], [ 173.55088806, -42.07041168 ], [ 173.53753662, -42.07430267 ], [ 173.53361511, -42.06990051 ], [ 173.52024841, -42.07378769 ], [ 173.517501829999986, -42.08013535 ], [ 173.50413513, -42.08401489 ], [ 173.50805664, -42.08842087 ], [ 173.49468994, -42.0922966 ], [ 173.499786379999989, -42.10744858 ], [ 173.49703979, -42.1137886 ], [ 173.47698975, -42.11958694 ], [ 173.47422791, -42.12592316 ], [ 173.48602295, -42.13913727 ], [ 173.4793396, -42.1410675 ], [ 173.48719788, -42.14987946 ], [ 173.48051453, -42.15180588 ], [ 173.49623108, -42.16943359 ], [ 173.48954773, -42.1713562 ], [ 173.49740601, -42.18017197 ], [ 173.484054570000012, -42.184021 ], [ 173.480117799999988, -42.17961502 ], [ 173.47460938, -42.19227219 ], [ 173.47854614, -42.19667816 ], [ 173.45181274, -42.20436096 ], [ 173.44631958, -42.21700668 ], [ 173.4317627, -42.21011734 ], [ 173.4223175, -42.21835327 ], [ 173.40222168, -42.22409439 ], [ 173.39828491, -42.21969223 ], [ 173.37818909, -42.22542572 ], [ 173.386077879999988, -42.23423004 ], [ 173.36991882, -42.24435806 ], [ 173.35531616, -42.23746109 ], [ 173.35255432, -42.2437706 ], [ 173.32571411, -42.25138855 ], [ 173.321762080000013, -42.24698639 ], [ 173.30833435, -42.25078964 ], [ 173.3162384, -42.25959015 ], [ 173.3134613, -42.26589203 ], [ 173.293304440000014, -42.27159119 ], [ 173.27432251, -42.28798294 ], [ 173.271560670000014, -42.29428101 ], [ 173.25808716, -42.29807663 ], [ 173.25532532, -42.30437469 ], [ 173.221618650000011, -42.31387711 ], [ 173.22003174, -42.33087158 ], [ 173.20932007, -42.3283844 ], [ 173.195816040000011, -42.33220291 ], [ 173.19024658, -42.34481049 ], [ 173.24263, -42.34654236 ], [ 173.257308959999989, -42.35343552 ], [ 173.23310852, -42.35474014 ], [ 173.23033142, -42.36103821 ], [ 173.23548889, -42.37612152 ], [ 173.22200012, -42.37993622 ], [ 173.22319031, -42.390625 ], [ 173.21086121, -42.40513611 ], [ 173.17706299, -42.41472626 ], [ 173.17149353, -42.42734146 ], [ 173.175460820000012, -42.43172836 ], [ 173.16590881, -42.43996048 ], [ 173.16987610000001, -42.44434357 ], [ 173.14956665, -42.45012283 ], [ 173.145599370000014, -42.44573975 ], [ 173.132049560000013, -42.44960022 ], [ 173.121292110000013, -42.44714355 ], [ 173.11849976, -42.45346069 ], [ 173.098159790000011, -42.45925903 ], [ 173.09417725, -42.45487595 ], [ 173.082962040000012, -42.48015594 ], [ 173.06260681, -42.48597717 ], [ 173.043884279999986, -42.47475815 ], [ 173.05348206, -42.4664917 ], [ 173.02960205, -42.44016647 ], [ 172.99565125, -42.4498558 ], [ 172.980896, -42.44301224 ], [ 172.98770142, -42.44107437 ], [ 172.99331665, -42.42841721 ], [ 173.00292969, -42.42015457 ], [ 173.001754760000011, -42.40943527 ], [ 173.01135254, -42.40117645 ], [ 173.00738525, -42.39678574 ], [ 173.02095032, -42.39292145 ], [ 173.006210329999988, -42.38607025 ], [ 172.9858551, -42.39187241 ], [ 172.98187256, -42.38747787 ], [ 172.95239258, -42.37377167 ], [ 172.94841003, -42.36937714 ], [ 172.96083069, -42.35479355 ], [ 172.95288086, -42.34600449 ], [ 172.93930054, -42.34986496 ], [ 172.93135071, -42.3410759 ], [ 172.930191040000011, -42.3303566 ], [ 172.939804079999988, -42.32209778 ], [ 172.923904420000014, -42.30451584 ], [ 172.9103241, -42.30837631 ], [ 172.90634155, -42.30397797 ], [ 172.885955810000013, -42.30976486 ], [ 172.883132929999988, -42.31609344 ], [ 172.87518311, -42.30730057 ], [ 172.86839294, -42.3092308 ], [ 172.85647583, -42.29603577 ], [ 172.85531616, -42.28530884 ], [ 172.8745575, -42.26879883 ], [ 172.87623596, -42.25175095 ], [ 172.854705810000013, -42.2468071 ], [ 172.84790039, -42.24873352 ], [ 172.83598328, -42.23553848 ], [ 172.8427887, -42.23361206 ], [ 172.83483887, -42.22481155 ], [ 172.84164429, -42.22288895 ], [ 172.83369446, -42.21408844 ], [ 172.83255005, -42.20336533 ], [ 172.84614563, -42.19952011 ], [ 172.85180664, -42.1868782 ], [ 172.84387207, -42.17808151 ], [ 172.81668091, -42.18576813 ], [ 172.80873108, -42.17696762 ], [ 172.814392090000013, -42.16432571 ], [ 172.803634640000013, -42.16184616 ], [ 172.776428220000014, -42.16953278 ], [ 172.74807739, -42.16649246 ], [ 172.732192989999987, -42.14888382 ], [ 172.73106384, -42.13815689 ], [ 172.7407074, -42.12991714 ], [ 172.732772829999988, -42.12111282 ], [ 172.73957825, -42.11919403 ], [ 172.73164368, -42.11038971 ], [ 172.73051453, -42.09967041 ], [ 172.74411011, -42.09583282 ], [ 172.742980960000011, -42.08511734 ], [ 172.73504639, -42.07631302 ], [ 172.740722659999989, -42.06367874 ], [ 172.75036621000001, -42.05545044 ], [ 172.74243164, -42.04664993 ], [ 172.749237060000013, -42.04473495 ], [ 172.748107909999987, -42.03402328 ], [ 172.76170349, -42.03019714 ], [ 172.7724762, -42.03268433 ], [ 172.775299069999988, -42.026371 ], [ 172.78889465, -42.02254868 ], [ 172.784942629999989, -42.01815033 ], [ 172.79852295, -42.01432419 ], [ 172.80136108, -42.00801849 ], [ 172.78947449, -41.99482346 ], [ 172.80986023, -41.98908997 ], [ 172.825149540000012, -41.96826553 ], [ 172.82684326, -41.95125961 ], [ 172.86077881, -41.94171906 ], [ 172.862487789999989, -41.92472458 ], [ 172.876037599999989, -41.92090988 ], [ 172.87208557, -41.91651535 ], [ 172.88169861, -41.90831375 ], [ 172.8658905, -41.89074707 ], [ 172.85516357, -41.88825989 ], [ 172.86477661, -41.88005829 ], [ 172.86364746000001, -41.86937332 ], [ 172.88398743, -41.86366653 ], [ 172.8800354, -41.85927582 ], [ 172.88963318, -41.85107803 ], [ 172.881744379999986, -41.84230042 ], [ 172.9009552, -41.82591248 ], [ 172.91337585, -41.81142807 ], [ 172.9269104, -41.807621 ], [ 172.92295837, -41.8032341 ], [ 172.93649292, -41.79942322 ], [ 172.94213867, -41.78684616 ], [ 172.95565796, -41.78303528 ], [ 172.95454407, -41.77235794 ], [ 172.9438324, -41.7698822 ], [ 172.94665527, -41.76359177 ], [ 172.93484497, -41.75043869 ], [ 172.94442749000001, -41.74224091 ], [ 172.95230103, -41.75101089 ], [ 172.96299744, -41.75348663 ], [ 172.97651672, -41.74966431 ], [ 172.97257996, -41.74528122 ], [ 173.01593018, -41.72750092 ], [ 173.04463196, -41.70283508 ], [ 173.06544495, -41.66937637 ], [ 173.072174069999988, -41.66744614 ], [ 173.0643158, -41.65869141 ], [ 173.0632019, -41.64800262 ], [ 173.07165527, -41.62907028 ], [ 173.08512878, -41.62519836 ], [ 173.089050289999989, -41.62957764 ], [ 173.115997310000012, -41.62182236 ], [ 173.114883420000012, -41.61112595 ], [ 173.12553406, -41.61355591 ], [ 173.13899231, -41.60966873 ], [ 173.1350708, -41.60529327 ], [ 173.14741516, -41.59070587 ], [ 173.16760254, -41.58486176 ], [ 173.17211914, -41.56151199 ], [ 173.18165588, -41.5532341 ], [ 173.187286379999989, -41.54058456 ], [ 173.17945862, -41.53184128 ], [ 173.18228149, -41.52551651 ], [ 173.19682312, -41.53229904 ], [ 173.21028137, -41.52838516 ], [ 173.213088989999989, -41.52205658 ], [ 173.223724370000014, -41.52446747 ], [ 173.23716736, -41.52054214 ], [ 173.25169373, -41.52731323 ], [ 173.265136719999987, -41.52338028 ], [ 173.275756840000014, -41.52578354 ], [ 173.30259705, -41.51789093 ], [ 173.31321716, -41.52028656 ], [ 173.31600952, -41.5139389 ], [ 173.30038452, -41.49646759 ], [ 173.29368591, -41.4984436 ], [ 173.26634216, -41.46787262 ], [ 173.27194214, -41.45518494 ], [ 173.285354610000013, -41.45122528 ], [ 173.284255980000012, -41.44051361 ], [ 173.304351809999986, -41.43455505 ], [ 173.307144169999987, -41.42820358 ], [ 173.29544067, -41.41510773 ], [ 173.30213928, -41.41312027 ], [ 173.29432678, -41.40438843 ], [ 173.30381775, -41.39604187 ], [ 173.31440735000001, -41.3984108 ], [ 173.34783936, -41.38840485 ], [ 173.35340881, -41.37566376 ], [ 173.36952209, -41.36526108 ], [ 173.36839294, -41.35451508 ], [ 173.38449097, -41.34408569 ], [ 173.41778564, -41.33392715 ], [ 173.43264771, -41.31264114 ], [ 173.42483521, -41.30390167 ], [ 173.43147278, -41.30184937 ], [ 173.42366028, -41.29310989 ], [ 173.435760499999986, -41.27820206 ], [ 173.4490509, -41.27408981 ], [ 173.45451355, -41.26123047 ], [ 173.46780396, -41.2571106 ], [ 173.46389771, -41.25273514 ], [ 173.477188109999986, -41.24861526 ], [ 173.48814392, -41.22285843 ], [ 173.52807617, -41.21050262 ], [ 173.52690125, -41.19968796 ], [ 173.56021118000001, -41.18941116 ], [ 173.57745361, -41.18968201 ], [ 173.5735321, -41.18530655 ], [ 173.585723879999989, -41.17040634 ], [ 173.58457947, -41.15960312 ], [ 173.59010315, -41.14676285 ], [ 173.58227539, -41.13800812 ], [ 173.58895874000001, -41.13596344 ], [ 173.581130980000012, -41.12720871 ], [ 173.587814329999986, -41.12516785 ], [ 173.58943176, -41.10795593 ], [ 173.5977478, -41.08872604 ], [ 173.604431150000011, -41.08670044 ], [ 173.596603390000013, -41.07793808 ], [ 173.60606384, -41.06951523 ], [ 173.59823608, -41.06075287 ], [ 173.61444092, -41.06555557 ], [ 173.62208557, -41.07431412 ], [ 173.63000488, -41.06972122 ], [ 173.637039179999988, -41.07928467 ], [ 173.624542240000011, -41.08520889 ], [ 173.61471558, -41.10138702 ], [ 173.62028503, -41.10388947 ], [ 173.62879944, -41.09618759 ], [ 173.64004517, -41.09629059 ], [ 173.6472168, -41.08833313 ], [ 173.65934753, -41.10137558 ], [ 173.65249634, -41.10889053 ], [ 173.6652832, -41.11083221 ], [ 173.675018310000013, -41.10166931 ], [ 173.66087341, -41.08944321 ], [ 173.666107180000012, -41.07583237 ], [ 173.67941284, -41.07739258 ], [ 173.69639587, -41.06944275 ], [ 173.707656859999986, -41.07195663 ], [ 173.71083069, -41.06638718 ], [ 173.72296143, -41.06743622 ], [ 173.72361755, -41.05861282 ], [ 173.75332642, -41.05444336 ], [ 173.76187134, -41.04680252 ], [ 173.74916077, -41.04888916 ], [ 173.738922120000012, -41.04627609 ], [ 173.75268555, -41.03557587 ], [ 173.74472046, -41.03333282 ], [ 173.72683716, -41.04819107 ], [ 173.718429570000012, -41.03990555 ], [ 173.71583557, -41.04639053 ], [ 173.70045471, -41.05552292 ], [ 173.68861389, -41.05611038 ], [ 173.687011719999987, -41.04928589 ], [ 173.670837400000011, -41.0363884 ], [ 173.708892819999988, -41.00811386 ], [ 173.71861267, -41.00388718 ], [ 173.72543335, -41.01325607 ], [ 173.73535156, -40.99972153 ], [ 173.74610901, -41.00566101 ], [ 173.74934387, -40.99333572 ], [ 173.75727844, -40.9928627 ], [ 173.76490784, -40.97375488 ], [ 173.77864075, -40.99014282 ], [ 173.787460329999988, -40.98254395 ], [ 173.79768372, -40.98387909 ], [ 173.79278564, -40.97416306 ], [ 173.78323364, -40.97053146 ], [ 173.793899540000012, -40.96247101 ], [ 173.80230713, -40.97226715 ], [ 173.81053162, -40.96587372 ], [ 173.80485535, -40.95362091 ], [ 173.81245422, -40.95372772 ], [ 173.829177859999987, -40.94571304 ], [ 173.83859253, -40.93173218 ], [ 173.833618159999986, -40.92494202 ], [ 173.84405518, -40.92269897 ], [ 173.85215759, -40.93191528 ], [ 173.844665529999986, -40.94384003 ], [ 173.845901489999989, -40.95347595 ], [ 173.834884640000013, -40.95984268 ], [ 173.84068298, -40.96681213 ], [ 173.832794189999987, -40.9825325 ], [ 173.852340700000013, -40.9897995 ], [ 173.86912537, -40.98192978 ], [ 173.874069209999988, -40.9656868 ], [ 173.88435364, -40.96352768 ], [ 173.88258362, -40.95693588 ], [ 173.89772034, -40.95984268 ], [ 173.90473938, -40.94888687 ], [ 173.918289179999988, -40.94161224 ], [ 173.91096497, -40.93820953 ], [ 173.90664673, -40.92700577 ], [ 173.923324580000013, -40.92140961 ], [ 173.93226624, -40.92457581 ], [ 173.96191406, -40.89672852 ], [ 173.968536379999989, -40.89828491 ], [ 173.97877502, -40.88805389 ], [ 173.97648621, -40.89812469 ], [ 173.97648621, -40.89812469 ] ] ], [ [ [ 174.10667419, -40.88249969 ], [ 174.106109620000012, -40.89027786 ], [ 174.09638977, -40.89222336 ], [ 174.10667419, -40.88249969 ], [ 174.10667419, -40.88249969 ] ] ], [ [ [ 173.766662599999989, -40.88388824 ], [ 173.764724730000012, -40.88194275 ], [ 173.76693726, -40.88166809 ], [ 173.766662599999989, -40.88388824 ], [ 173.766662599999989, -40.88388824 ] ] ], [ [ [ 173.99931335, -40.83649826 ], [ 174.00379944, -40.83800888 ], [ 173.995605469999987, -40.84088135 ], [ 173.99931335, -40.83649826 ], [ 173.99931335, -40.83649826 ] ] ], [ [ [ 173.97444153, -40.77027512 ], [ 173.97193909, -40.78555298 ], [ 173.961730960000011, -40.77944565 ], [ 173.966735840000013, -40.77072906 ], [ 173.97444153, -40.77027512 ], [ 173.97444153, -40.77027512 ] ] ], [ [ [ 173.98448181, -40.76450348 ], [ 173.98631287, -40.78056335 ], [ 173.97668457, -40.76599503 ], [ 173.98448181, -40.76450348 ], [ 173.98448181, -40.76450348 ] ] ], [ [ [ 173.9887085, -40.76059341 ], [ 173.9906311, -40.74845123 ], [ 173.99746704, -40.74570847 ], [ 173.99674988000001, -40.75568771 ], [ 173.9887085, -40.76059341 ], [ 173.9887085, -40.76059341 ] ] ], [ [ [ 173.91783142, -40.73557281 ], [ 173.91007996, -40.73682022 ], [ 173.91416931, -40.73241806 ], [ 173.91783142, -40.73557281 ], [ 173.91783142, -40.73557281 ] ] ], [ [ [ 173.95692444, -40.692276 ], [ 173.961715700000013, -40.70569992 ], [ 173.96708679, -40.70288467 ], [ 173.96617126000001, -40.7198143 ], [ 173.960617070000012, -40.73695755 ], [ 173.954986569999988, -40.74523163 ], [ 173.9616394, -40.75527573 ], [ 173.9596405, -40.76519012 ], [ 173.94869995, -40.76878357 ], [ 173.94122314, -40.77935028 ], [ 173.94084167, -40.79084778 ], [ 173.94664001000001, -40.79466248 ], [ 173.94213867, -40.80411148 ], [ 173.931396479999989, -40.81279373 ], [ 173.92965698, -40.82242966 ], [ 173.936447140000013, -40.82681656 ], [ 173.92399597, -40.82889175 ], [ 173.90496826, -40.85493088 ], [ 173.91192627, -40.86091614 ], [ 173.912475590000014, -40.86858749 ], [ 173.905197140000013, -40.87298584 ], [ 173.9050293, -40.85846329 ], [ 173.89317322, -40.86282349 ], [ 173.8908844, -40.85773849 ], [ 173.87319946, -40.87158966 ], [ 173.879516599999988, -40.87533951 ], [ 173.8681488, -40.87993622 ], [ 173.86985779, -40.88497925 ], [ 173.854980469999987, -40.89936829 ], [ 173.83815002, -40.90369034 ], [ 173.825927729999989, -40.92034149 ], [ 173.810638430000012, -40.93126678 ], [ 173.803924560000013, -40.92881775 ], [ 173.78677368000001, -40.9425621 ], [ 173.77305603, -40.94289017 ], [ 173.77366638, -40.93100357 ], [ 173.78330994, -40.92484665 ], [ 173.788726809999986, -40.90879822 ], [ 173.795684810000012, -40.90154648 ], [ 173.78834534, -40.89605331 ], [ 173.79795837, -40.89008331 ], [ 173.78721619, -40.88843918 ], [ 173.78825378, -40.88299179 ], [ 173.77478027, -40.89211273 ], [ 173.77888489, -40.87526321 ], [ 173.77354431, -40.87201691 ], [ 173.77093506, -40.86103439 ], [ 173.77876282, -40.84969711 ], [ 173.77680969, -40.84075546 ], [ 173.78475952, -40.83186722 ], [ 173.79154968, -40.84113312 ], [ 173.79231262, -40.85736084 ], [ 173.82002258, -40.85616684 ], [ 173.83108521, -40.86211777 ], [ 173.83634949, -40.85082245 ], [ 173.82836914, -40.85644531 ], [ 173.81710815, -40.84862518 ], [ 173.81044006, -40.84938049 ], [ 173.81515503, -40.83987808 ], [ 173.8137207, -40.83107758 ], [ 173.80480957, -40.82642365 ], [ 173.81022644, -40.81932068 ], [ 173.796661379999989, -40.80666733 ], [ 173.80528259, -40.80222321 ], [ 173.83457947, -40.77040863 ], [ 173.82849121000001, -40.75614548 ], [ 173.84056091, -40.76833344 ], [ 173.84475708, -40.75156021 ], [ 173.85838318, -40.74348068 ], [ 173.86982727, -40.72912216 ], [ 173.871734620000012, -40.73664474 ], [ 173.87928772, -40.73959732 ], [ 173.8745575, -40.75180054 ], [ 173.861389159999987, -40.76935959 ], [ 173.874542240000011, -40.77566147 ], [ 173.8681488, -40.80717087 ], [ 173.87472534, -40.80275726 ], [ 173.87905884, -40.79033661 ], [ 173.887191769999987, -40.78836441 ], [ 173.88676453, -40.77998352 ], [ 173.893463129999986, -40.77756119 ], [ 173.90318298, -40.78229523 ], [ 173.904800419999987, -40.80028152 ], [ 173.91096497, -40.77993011 ], [ 173.926254269999987, -40.7830925 ], [ 173.923599239999987, -40.77506256 ], [ 173.931137080000013, -40.76777649 ], [ 173.922500609999986, -40.76609039 ], [ 173.91461182, -40.773983 ], [ 173.900039670000012, -40.77353668 ], [ 173.89526367, -40.76721191 ], [ 173.88334656, -40.76882172 ], [ 173.900756840000014, -40.75437164 ], [ 173.91586304, -40.75243378 ], [ 173.91825867, -40.74621582 ], [ 173.93743896, -40.74662399 ], [ 173.93482971, -40.73836517 ], [ 173.94142151, -40.73692322 ], [ 173.9362793, -40.72694016 ], [ 173.9493866, -40.72801971 ], [ 173.954727170000012, -40.72222137 ], [ 173.949722290000011, -40.7163887 ], [ 173.95335388, -40.70865631 ], [ 173.95063782, -40.69229126 ], [ 173.95692444, -40.692276 ], [ 173.95692444, -40.692276 ] ] ], [ [ [ 173.94721985000001, -40.69072723 ], [ 173.94825745, -40.68863297 ], [ 173.949432370000011, -40.6894722 ], [ 173.94721985000001, -40.69072723 ], [ 173.94721985000001, -40.69072723 ] ] ], [ [ [ 173.99884033, -40.66346741 ], [ 174.00917053, -40.66972351 ], [ 174.000778200000013, -40.67638779 ], [ 173.99049377, -40.67661667 ], [ 173.98757935, -40.67063522 ], [ 173.99884033, -40.66346741 ], [ 173.99884033, -40.66346741 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.9", "id_1": 9, "name_1": "Nelson", "hasc_1": "NZ.NE", "population2022": 54500, "areakm2": 10146.028, "density2022": 5.37 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 173.19306946, -41.30689621 ], [ 173.20004272, -41.30701828 ], [ 173.19046021, -41.30965424 ], [ 173.19306946, -41.30689621 ], [ 173.19306946, -41.30689621 ] ] ], [ [ [ 173.200942989999987, -41.30340958 ], [ 173.200668330000013, -41.30009842 ], [ 173.20285034, -41.30181503 ], [ 173.200942989999987, -41.30340958 ], [ 173.200942989999987, -41.30340958 ] ] ], [ [ [ 173.182556150000011, -41.29471588 ], [ 173.18025208, -41.29490662 ], [ 173.18208313, -41.28974533 ], [ 173.182556150000011, -41.29471588 ], [ 173.182556150000011, -41.29471588 ] ] ], [ [ [ 173.16531372, -41.28720856 ], [ 173.177963260000013, -41.28759766 ], [ 173.180160519999987, -41.29769516 ], [ 173.16833496000001, -41.29611206 ], [ 173.15740967, -41.28533554 ], [ 173.16531372, -41.28720856 ], [ 173.16531372, -41.28720856 ] ] ], [ [ [ 173.153244019999988, -41.28535843 ], [ 173.154205319999988, -41.2865448 ], [ 173.15080261, -41.28567886 ], [ 173.153244019999988, -41.28535843 ], [ 173.153244019999988, -41.28535843 ] ] ], [ [ [ 173.11192322, -41.26702118 ], [ 173.14033508, -41.28007889 ], [ 173.136367799999988, -41.28617096 ], [ 173.12149048, -41.27700043 ], [ 173.11526489, -41.27689362 ], [ 173.11192322, -41.26702118 ], [ 173.11192322, -41.26702118 ] ] ], [ [ [ 173.25889587, -41.26916504 ], [ 173.256210329999988, -41.26750946 ], [ 173.258026120000011, -41.26533508 ], [ 173.25889587, -41.26916504 ], [ 173.25889587, -41.26916504 ] ] ], [ [ [ 173.27047729, -41.26018524 ], [ 173.27047729, -41.25876236 ], [ 173.27182007, -41.25876236 ], [ 173.27047729, -41.26018524 ], [ 173.27047729, -41.26018524 ] ] ], [ [ [ 173.10418701, -41.25992584 ], [ 173.10421753, -41.25840378 ], [ 173.10523987, -41.25889587 ], [ 173.10418701, -41.25992584 ], [ 173.10418701, -41.25992584 ] ] ], [ [ [ 173.11430359, -41.25139618 ], [ 173.13276672, -41.25883865 ], [ 173.186889650000012, -41.27599335 ], [ 173.196060179999989, -41.28581619 ], [ 173.1849823, -41.28661728 ], [ 173.1796875, -41.28087234 ], [ 173.16369629, -41.28059769 ], [ 173.15411377, -41.28382111 ], [ 173.1428833, -41.28068542 ], [ 173.12277222, -41.26930618 ], [ 173.10426331, -41.26369476 ], [ 173.104721070000011, -41.25638962 ], [ 173.11430359, -41.25139618 ], [ 173.11430359, -41.25139618 ] ] ], [ [ [ 173.03959656, -41.16856384 ], [ 173.03665161, -41.17208481 ], [ 173.03601074, -41.16881561 ], [ 173.03959656, -41.16856384 ], [ 173.03959656, -41.16856384 ] ] ], [ [ [ 173.02745056, -41.14227295 ], [ 173.03668213, -41.15441132 ], [ 173.02806091, -41.15037155 ], [ 173.02745056, -41.14227295 ], [ 173.02745056, -41.14227295 ] ] ], [ [ [ 173.012771609999987, -41.14222336 ], [ 173.01312256, -41.13825226 ], [ 173.01408386, -41.14131165 ], [ 173.012771609999987, -41.14222336 ], [ 173.012771609999987, -41.14222336 ] ] ], [ [ [ 173.41694641, -41.13472366 ], [ 173.43618774, -41.13976669 ], [ 173.43960571, -41.16154861 ], [ 173.42576599, -41.16625214 ], [ 173.41221619, -41.14944458 ], [ 173.41166687, -41.13888931 ], [ 173.41694641, -41.13472366 ], [ 173.41694641, -41.13472366 ] ] ], [ [ [ 173.01228333, -41.06901169 ], [ 173.01023865, -41.07110596 ], [ 173.00971985000001, -41.06777954 ], [ 173.01228333, -41.06901169 ], [ 173.01228333, -41.06901169 ] ] ], [ [ [ 173.05291748, -40.99332809 ], [ 173.04945374, -40.99435806 ], [ 173.0514679, -40.99177551 ], [ 173.05291748, -40.99332809 ], [ 173.05291748, -40.99332809 ] ] ], [ [ [ 173.06115723, -40.97496033 ], [ 173.063125609999986, -40.98408508 ], [ 173.05311584, -40.98168945 ], [ 173.06115723, -40.97496033 ], [ 173.06115723, -40.97496033 ] ] ], [ [ [ 173.06835938, -40.89221573 ], [ 173.064529420000014, -40.89017868 ], [ 173.06874084, -40.88862991 ], [ 173.06835938, -40.89221573 ], [ 173.06835938, -40.89221573 ] ] ], [ [ [ 172.82618713, -40.81838226 ], [ 172.8240509, -40.81876373 ], [ 172.82444763, -40.81694412 ], [ 172.82618713, -40.81838226 ], [ 172.82618713, -40.81838226 ] ] ], [ [ [ 172.91166687, -40.80555725 ], [ 172.90943909, -40.80416489 ], [ 172.91166687, -40.80389023 ], [ 172.91166687, -40.80555725 ], [ 172.91166687, -40.80555725 ] ] ], [ [ [ 172.91333008, -40.80194473 ], [ 172.91082764, -40.80194473 ], [ 172.91278076, -40.79972076 ], [ 172.91333008, -40.80194473 ], [ 172.91333008, -40.80194473 ] ] ], [ [ [ 173.02511597, -40.55424881 ], [ 173.030639650000012, -40.55837631 ], [ 173.02424622, -40.55789948 ], [ 173.02511597, -40.55424881 ], [ 173.02511597, -40.55424881 ] ] ], [ [ [ 172.675003049999987, -40.50055695 ], [ 172.67539978, -40.49869156 ], [ 172.67622375, -40.49960327 ], [ 172.675003049999987, -40.50055695 ], [ 172.675003049999987, -40.50055695 ] ] ], [ [ [ 172.671661379999989, -40.49861145 ], [ 172.67304993, -40.50055695 ], [ 172.66944885, -40.50027847 ], [ 172.671661379999989, -40.49861145 ], [ 172.671661379999989, -40.49861145 ] ] ], [ [ [ 172.68804932, -40.49750137 ], [ 172.71777344, -40.50166702 ], [ 172.73429871, -40.50875473 ], [ 172.74278259, -40.50805664 ], [ 172.7722168, -40.51277924 ], [ 172.77471924, -40.50944519 ], [ 172.80471802, -40.50416565 ], [ 172.81555176, -40.50999832 ], [ 172.82556152, -40.50694275 ], [ 172.857498170000014, -40.51388931 ], [ 172.92999268, -40.51972198 ], [ 172.94194031, -40.52388763 ], [ 172.99806213, -40.53888702 ], [ 173.01028442, -40.54472351 ], [ 173.017776489999989, -40.55277634 ], [ 173.01028442, -40.55389023 ], [ 172.98554993, -40.54333496 ], [ 172.956390379999988, -40.5363884 ], [ 172.93333435, -40.52777863 ], [ 172.91416931, -40.52833176 ], [ 172.88250732, -40.51972198 ], [ 172.86999512, -40.51972198 ], [ 172.831115720000014, -40.51527786 ], [ 172.789260860000013, -40.51336288 ], [ 172.75527954, -40.51555634 ], [ 172.732498170000014, -40.52639008 ], [ 172.72361755, -40.53722382 ], [ 172.72528076, -40.54360962 ], [ 172.70733643, -40.56026077 ], [ 172.68777466, -40.5858345 ], [ 172.69111633, -40.5961113 ], [ 172.68666077, -40.60194397 ], [ 172.67871094, -40.62848282 ], [ 172.68249512, -40.65722275 ], [ 172.67100525, -40.6507225 ], [ 172.67056274, -40.64138794 ], [ 172.66444397, -40.64222336 ], [ 172.65444946, -40.65194321 ], [ 172.65361023, -40.6586113 ], [ 172.66694641, -40.66444397 ], [ 172.676681519999988, -40.67650986 ], [ 172.68695068, -40.67833328 ], [ 172.68888855, -40.71277618 ], [ 172.676696779999986, -40.72079086 ], [ 172.684219359999986, -40.73009872 ], [ 172.690490720000014, -40.71656418 ], [ 172.69519043, -40.72851944 ], [ 172.734161379999989, -40.77249908 ], [ 172.74110413, -40.77361298 ], [ 172.753433230000013, -40.78382111 ], [ 172.76603699, -40.78637695 ], [ 172.77583313, -40.79916763 ], [ 172.79391479, -40.80080032 ], [ 172.789550780000013, -40.8040657 ], [ 172.796386719999987, -40.8152771 ], [ 172.81086731, -40.81889725 ], [ 172.80314636, -40.82338715 ], [ 172.81115723, -40.83194733 ], [ 172.817199710000011, -40.83115387 ], [ 172.806396479999989, -40.82361221 ], [ 172.81219482, -40.81949615 ], [ 172.83666992, -40.82972336 ], [ 172.87506104, -40.83326721 ], [ 172.8890686, -40.83105087 ], [ 172.897659299999987, -40.82347107 ], [ 172.91389465, -40.8180542 ], [ 172.91444397, -40.80250168 ], [ 172.9239502, -40.80459976 ], [ 172.940902709999989, -40.81383133 ], [ 172.93833923, -40.82055664 ], [ 172.95555115, -40.81000137 ], [ 172.950805659999986, -40.8054657 ], [ 172.95324707, -40.78927994 ], [ 172.961288450000012, -40.78403473 ], [ 172.973007200000012, -40.78668976 ], [ 172.9883728, -40.78019333 ], [ 172.99916077, -40.78333282 ], [ 172.993637080000013, -40.78782272 ], [ 173.00384521, -40.80186462 ], [ 173.01200867, -40.80459595 ], [ 173.01446533, -40.81660461 ], [ 173.00645447, -40.81827164 ], [ 173.00559998, -40.82574081 ], [ 173.01544189, -40.84044266 ], [ 173.01602173, -40.84853363 ], [ 173.02371216, -40.85792542 ], [ 173.00196838, -40.86230087 ], [ 173.011230469999987, -40.86720276 ], [ 173.021682739999989, -40.86097717 ], [ 173.04048157, -40.85903549 ], [ 173.04705811, -40.85119629 ], [ 173.05815125, -40.8566246 ], [ 173.06556702, -40.87455368 ], [ 173.061889650000012, -40.88291168 ], [ 173.05368042, -40.88093567 ], [ 173.04695129000001, -40.88845825 ], [ 173.064254760000011, -40.90927124 ], [ 173.05319214, -40.91413498 ], [ 173.06222534, -40.93797684 ], [ 173.044998170000014, -40.95222092 ], [ 173.05860901, -40.95639038 ], [ 173.067871090000011, -40.95025635 ], [ 173.06950378, -40.96141434 ], [ 173.05722046, -40.96450424 ], [ 173.04273987, -40.97352982 ], [ 173.03570557, -40.98967361 ], [ 173.00776672, -40.99180984 ], [ 173.01127625, -40.99651337 ], [ 173.00721741000001, -41.00916672 ], [ 172.9972229, -41.01472092 ], [ 172.99972534, -41.01916504 ], [ 173.011077879999988, -41.01379395 ], [ 173.0206604, -41.01579666 ], [ 173.02201843, -41.02797699 ], [ 173.017227170000012, -41.0391655 ], [ 173.02346802, -41.04502869 ], [ 173.017807010000013, -41.05091476 ], [ 173.00485229, -41.05446625 ], [ 173.00138855, -41.0633316 ], [ 173.00628662, -41.07122803 ], [ 173.03253174, -41.08983231 ], [ 173.03388977, -41.09944534 ], [ 173.023101809999986, -41.12784958 ], [ 173.0209198, -41.13903427 ], [ 173.0177002, -41.12631226 ], [ 173.00471497, -41.14638901 ], [ 173.01167297, -41.14611053 ], [ 173.02053833, -41.1589241 ], [ 173.04159546, -41.17644501 ], [ 173.05036926, -41.18630219 ], [ 173.05360413, -41.18249893 ], [ 173.04399109, -41.16226196 ], [ 173.06570435, -41.18338776 ], [ 173.07023621, -41.19362259 ], [ 173.085449219999987, -41.21280289 ], [ 173.0836792, -41.2269783 ], [ 173.08900452, -41.23566055 ], [ 173.10783386, -41.24952698 ], [ 173.10047913, -41.26050949 ], [ 173.07662964, -41.25390625 ], [ 173.07366943, -41.26324081 ], [ 173.08674622, -41.26799393 ], [ 173.07704163, -41.27402115 ], [ 173.097869870000011, -41.2740097 ], [ 173.104690549999987, -41.2783432 ], [ 173.088256840000014, -41.28490448 ], [ 173.103881840000014, -41.28972244 ], [ 173.10906982, -41.28451538 ], [ 173.126739500000014, -41.28292084 ], [ 173.1383667, -41.28896332 ], [ 173.14039612, -41.28307343 ], [ 173.155761719999987, -41.28875351 ], [ 173.16412354, -41.2964592 ], [ 173.159729, -41.31111145 ], [ 173.16963196, -41.32063293 ], [ 173.181869510000013, -41.3230896 ], [ 173.19389343, -41.33166504 ], [ 173.208618159999986, -41.32638931 ], [ 173.21333313, -41.31361008 ], [ 173.22084045, -41.30416489 ], [ 173.20582581, -41.30555725 ], [ 173.235122679999989, -41.27951813 ], [ 173.2507019, -41.27900696 ], [ 173.270004269999987, -41.26083374 ], [ 173.28388977, -41.25388718 ], [ 173.28572083, -41.26416016 ], [ 173.31361389, -41.24833298 ], [ 173.31944275, -41.2266655 ], [ 173.32943726, -41.2183342 ], [ 173.32221985000001, -41.20500183 ], [ 173.30465698, -41.22719574 ], [ 173.293457030000013, -41.23785782 ], [ 173.27757263, -41.24804306 ], [ 173.302505489999987, -41.22750092 ], [ 173.323608400000012, -41.20222092 ], [ 173.3631897, -41.1842308 ], [ 173.37432861, -41.17284775 ], [ 173.38911438, -41.16769791 ], [ 173.40203857, -41.15643692 ], [ 173.41156006, -41.15826416 ], [ 173.42758179, -41.17341614 ], [ 173.43766785, -41.17302704 ], [ 173.451385499999986, -41.1641655 ], [ 173.4641571, -41.16585922 ], [ 173.46873474, -41.1607132 ], [ 173.44137573, -41.16107559 ], [ 173.480270389999987, -41.15694427 ], [ 173.49278259, -41.14916611 ], [ 173.50666809, -41.13444519 ], [ 173.5083313, -41.11277771 ], [ 173.51628113000001, -41.10342789 ], [ 173.53025818, -41.10385513 ], [ 173.54660034, -41.09563446 ], [ 173.55778503, -41.08472061 ], [ 173.56083679, -41.07389069 ], [ 173.56555176, -41.07583237 ], [ 173.574722290000011, -41.06305695 ], [ 173.580566409999989, -41.0664444 ], [ 173.58860779, -41.0616684 ], [ 173.59333801, -41.05222321 ], [ 173.604995730000013, -41.05873489 ], [ 173.59823608, -41.06075287 ], [ 173.60606384, -41.06951523 ], [ 173.596603390000013, -41.07793808 ], [ 173.604431150000011, -41.08670044 ], [ 173.5977478, -41.08872604 ], [ 173.58666992, -41.11437225 ], [ 173.587814329999986, -41.12516785 ], [ 173.581130980000012, -41.12720871 ], [ 173.58895874000001, -41.13596344 ], [ 173.58227539, -41.13800812 ], [ 173.59010315, -41.14676285 ], [ 173.58457947, -41.15960312 ], [ 173.585723879999989, -41.17040634 ], [ 173.57745361, -41.18968201 ], [ 173.56021118000001, -41.18941116 ], [ 173.52690125, -41.19968796 ], [ 173.52807617, -41.21050262 ], [ 173.48814392, -41.22285843 ], [ 173.477188109999986, -41.24861526 ], [ 173.46389771, -41.25273514 ], [ 173.46780396, -41.2571106 ], [ 173.45451355, -41.26123047 ], [ 173.4490509, -41.27408981 ], [ 173.435760499999986, -41.27820206 ], [ 173.42366028, -41.29310989 ], [ 173.43147278, -41.30184937 ], [ 173.42483521, -41.30390167 ], [ 173.43264771, -41.31264114 ], [ 173.41778564, -41.33392715 ], [ 173.38449097, -41.34408569 ], [ 173.36839294, -41.35451508 ], [ 173.36952209, -41.36526108 ], [ 173.35340881, -41.37566376 ], [ 173.34783936, -41.38840485 ], [ 173.31440735000001, -41.3984108 ], [ 173.30381775, -41.39604187 ], [ 173.29432678, -41.40438843 ], [ 173.30213928, -41.41312027 ], [ 173.29544067, -41.41510773 ], [ 173.307144169999987, -41.42820358 ], [ 173.304351809999986, -41.43455505 ], [ 173.284255980000012, -41.44051361 ], [ 173.285354610000013, -41.45122528 ], [ 173.27194214, -41.45518494 ], [ 173.26634216, -41.46787262 ], [ 173.29368591, -41.4984436 ], [ 173.30038452, -41.49646759 ], [ 173.31600952, -41.5139389 ], [ 173.31321716, -41.52028656 ], [ 173.30259705, -41.51789093 ], [ 173.275756840000014, -41.52578354 ], [ 173.25169373, -41.52731323 ], [ 173.23716736, -41.52054214 ], [ 173.223724370000014, -41.52446747 ], [ 173.213088989999989, -41.52205658 ], [ 173.21028137, -41.52838516 ], [ 173.19682312, -41.53229904 ], [ 173.18228149, -41.52551651 ], [ 173.17945862, -41.53184128 ], [ 173.187286379999989, -41.54058456 ], [ 173.18165588, -41.5532341 ], [ 173.16931152, -41.56783676 ], [ 173.16760254, -41.58486176 ], [ 173.14741516, -41.59070587 ], [ 173.1350708, -41.60529327 ], [ 173.13899231, -41.60966873 ], [ 173.12553406, -41.61355591 ], [ 173.114883420000012, -41.61112595 ], [ 173.115997310000012, -41.62182236 ], [ 173.089050289999989, -41.62957764 ], [ 173.08512878, -41.62519836 ], [ 173.07165527, -41.62907028 ], [ 173.0632019, -41.64800262 ], [ 173.0643158, -41.65869141 ], [ 173.072174069999988, -41.66744614 ], [ 173.06544495, -41.66937637 ], [ 173.04463196, -41.70283508 ], [ 173.01593018, -41.72750092 ], [ 172.97257996, -41.74528122 ], [ 172.97651672, -41.74966431 ], [ 172.96299744, -41.75348663 ], [ 172.95230103, -41.75101089 ], [ 172.94442749000001, -41.74224091 ], [ 172.93484497, -41.75043869 ], [ 172.94665527, -41.76359177 ], [ 172.9438324, -41.7698822 ], [ 172.95454407, -41.77235794 ], [ 172.95565796, -41.78303528 ], [ 172.94213867, -41.78684616 ], [ 172.93649292, -41.79942322 ], [ 172.92295837, -41.8032341 ], [ 172.9269104, -41.807621 ], [ 172.91337585, -41.81142807 ], [ 172.9009552, -41.82591248 ], [ 172.881744379999986, -41.84230042 ], [ 172.88963318, -41.85107803 ], [ 172.8800354, -41.85927582 ], [ 172.88398743, -41.86366653 ], [ 172.86364746000001, -41.86937332 ], [ 172.86477661, -41.88005829 ], [ 172.85516357, -41.88825989 ], [ 172.8658905, -41.89074707 ], [ 172.88169861, -41.90831375 ], [ 172.87208557, -41.91651535 ], [ 172.876037599999989, -41.92090988 ], [ 172.862487789999989, -41.92472458 ], [ 172.86077881, -41.94171906 ], [ 172.82684326, -41.95125961 ], [ 172.825149540000012, -41.96826553 ], [ 172.80986023, -41.98908997 ], [ 172.78947449, -41.99482346 ], [ 172.80136108, -42.00801849 ], [ 172.79852295, -42.01432419 ], [ 172.784942629999989, -42.01815033 ], [ 172.78889465, -42.02254868 ], [ 172.775299069999988, -42.026371 ], [ 172.7724762, -42.03268433 ], [ 172.76170349, -42.03019714 ], [ 172.748107909999987, -42.03402328 ], [ 172.749237060000013, -42.04473495 ], [ 172.74243164, -42.04664993 ], [ 172.75036621000001, -42.05545044 ], [ 172.740722659999989, -42.06367874 ], [ 172.73504639, -42.07631302 ], [ 172.742980960000011, -42.08511734 ], [ 172.74411011, -42.09583282 ], [ 172.723709109999987, -42.10158539 ], [ 172.71974182, -42.09718323 ], [ 172.6993103, -42.10293579 ], [ 172.70214844, -42.09661484 ], [ 172.69421387, -42.08781052 ], [ 172.646545409999987, -42.10123062 ], [ 172.64483643, -42.11828232 ], [ 172.656738280000013, -42.13149643 ], [ 172.63630676, -42.13726044 ], [ 172.623809810000012, -42.1518364 ], [ 172.6277771, -42.15624237 ], [ 172.62208557, -42.16890335 ], [ 172.6300354, -42.1777153 ], [ 172.62321472, -42.17964172 ], [ 172.63116455, -42.18845749 ], [ 172.624359129999988, -42.1903801 ], [ 172.6186676, -42.20304871 ], [ 172.6050415, -42.20690155 ], [ 172.60900879, -42.21131134 ], [ 172.59538269, -42.21516418 ], [ 172.59140015, -42.21075821 ], [ 172.570938109999986, -42.21654129 ], [ 172.56240845, -42.23556137 ], [ 172.54194641, -42.24135208 ], [ 172.54592896, -42.24576569 ], [ 172.532287599999989, -42.24962997 ], [ 172.533416749999986, -42.26038361 ], [ 172.51293945, -42.26618576 ], [ 172.50897217, -42.26177216 ], [ 172.46118164, -42.27531433 ], [ 172.46232605, -42.28608322 ], [ 172.44866943, -42.28995514 ], [ 172.45661926, -42.29878616 ], [ 172.44296265, -42.3026619 ], [ 172.42817688, -42.29576874 ], [ 172.41053772, -42.29522705 ], [ 172.40257263, -42.28639221 ], [ 172.39175415, -42.28391266 ], [ 172.38378906, -42.27507782 ], [ 172.37013245, -42.27895355 ], [ 172.36216736, -42.2701149 ], [ 172.371856689999987, -42.26182556 ], [ 172.34399414, -42.23089218 ], [ 172.357666020000011, -42.22702408 ], [ 172.356536870000014, -42.21625519 ], [ 172.3633728, -42.21432495 ], [ 172.35142517, -42.20106888 ], [ 172.35826111, -42.19913864 ], [ 172.35031128, -42.19029999 ], [ 172.35714722, -42.18837357 ], [ 172.34918213, -42.17953491 ], [ 172.358871459999989, -42.17126083 ], [ 172.34693909, -42.15800858 ], [ 172.349807739999989, -42.15166092 ], [ 172.32420349, -42.14226151 ], [ 172.28207397, -42.14305496 ], [ 172.26156616, -42.14883423 ], [ 172.26441956, -42.14248657 ], [ 172.25646973, -42.1336441 ], [ 172.25933838, -42.12729645 ], [ 172.24565125, -42.13114548 ], [ 172.234848019999987, -42.12865067 ], [ 172.22291565, -42.11537933 ], [ 172.22975159, -42.11345673 ], [ 172.21385193, -42.09576416 ], [ 172.19332886, -42.10153198 ], [ 172.18934631, -42.09710693 ], [ 172.17565918, -42.10095215 ], [ 172.14718628, -42.09786606 ], [ 172.135253909999989, -42.08458328 ], [ 172.1421051, -42.08266449 ], [ 172.110290529999986, -42.04723358 ], [ 172.12001038, -42.03897095 ], [ 172.118911739999987, -42.02819824 ], [ 172.125747679999989, -42.02628326 ], [ 172.12068176, -42.01108551 ], [ 172.08822632, -42.00353622 ], [ 172.0763092, -41.990242 ], [ 172.08602905, -41.98199081 ], [ 172.07807922, -41.97312927 ], [ 172.07301331, -41.9579277 ], [ 172.06219482, -41.95540237 ], [ 172.054245, -41.94654083 ], [ 172.0639801, -41.93829727 ], [ 172.06001282, -41.93386459 ], [ 172.07369995, -41.93005753 ], [ 172.06973267, -41.92562485 ], [ 172.0834198, -41.92182159 ], [ 172.08630371000001, -41.91548538 ], [ 172.07041931, -41.89776611 ], [ 172.073303220000014, -41.89143753 ], [ 172.0841217, -41.89396667 ], [ 172.09780884, -41.89016724 ], [ 172.09671021, -41.8794136 ], [ 172.10931396, -41.86486816 ], [ 172.12011719, -41.86739349 ], [ 172.12225342, -41.78401947 ], [ 172.10856628, -41.78779602 ], [ 172.100646970000014, -41.77895355 ], [ 172.107498170000014, -41.77706528 ], [ 172.09957886, -41.76822662 ], [ 172.10929871, -41.76003647 ], [ 172.122970579999986, -41.75626755 ], [ 172.12190247, -41.74555206 ], [ 172.131622310000012, -41.73736954 ], [ 172.116867070000012, -41.73042297 ], [ 172.11975098, -41.72412872 ], [ 172.133438109999986, -41.72036743 ], [ 172.12947083, -41.71595383 ], [ 172.15682983, -41.70843124 ], [ 172.155761719999987, -41.69773483 ], [ 172.17733765, -41.70278931 ], [ 172.1870575, -41.69462204 ], [ 172.20071411, -41.69085693 ], [ 172.20466614, -41.69526291 ], [ 172.22229004, -41.69589615 ], [ 172.214385990000011, -41.68709183 ], [ 172.22122192, -41.68521118 ], [ 172.22912598, -41.6940155 ], [ 172.24278259, -41.69024658 ], [ 172.254653929999989, -41.70344925 ], [ 172.26435852, -41.69527817 ], [ 172.25248718, -41.68207932 ], [ 172.25823975, -41.66952133 ], [ 172.2424469, -41.65193939 ], [ 172.24926758, -41.65005875 ], [ 172.24136353, -41.6412735 ], [ 172.251068120000014, -41.63312149 ], [ 172.271560670000014, -41.62748718 ], [ 172.29705811, -41.63689423 ], [ 172.302810670000014, -41.62435532 ], [ 172.29885864, -41.6199646 ], [ 172.33299255, -41.61056137 ], [ 172.329040529999986, -41.60617447 ], [ 172.344497679999989, -41.585495 ], [ 172.332672120000012, -41.57234955 ], [ 172.339492799999988, -41.57046509 ], [ 172.331604, -41.56170654 ], [ 172.3520813, -41.55606461 ], [ 172.34709167, -41.54105377 ], [ 172.3528595, -41.52854156 ], [ 172.34498596, -41.51979446 ], [ 172.347869870000011, -41.51353836 ], [ 172.361526489999989, -41.50976944 ], [ 172.37411499000001, -41.49536514 ], [ 172.39457703, -41.48970413 ], [ 172.3974762, -41.4834404 ], [ 172.424743650000011, -41.4758873 ], [ 172.426574710000011, -41.4589653 ], [ 172.433395389999987, -41.45707321 ], [ 172.42553711, -41.44831085 ], [ 172.438125609999986, -41.43386841 ], [ 172.43026733, -41.42510223 ], [ 172.41952515, -41.42261505 ], [ 172.42242432, -41.41633606 ], [ 172.44966125, -41.408741 ], [ 172.45254517, -41.40245819 ], [ 172.46615601, -41.39865494 ], [ 172.47399902, -41.40743256 ], [ 172.495468140000014, -41.41241455 ], [ 172.52372742, -41.41550064 ], [ 172.526596070000011, -41.40921021 ], [ 172.54412842, -41.40980911 ], [ 172.54020691, -41.40541458 ], [ 172.56059265, -41.39971924 ], [ 172.55667114, -41.39532089 ], [ 172.56632996, -41.38712311 ], [ 172.59350586, -41.3795166 ], [ 172.59243774, -41.36880875 ], [ 172.58457947, -41.36000061 ], [ 172.59136963, -41.35809708 ], [ 172.58351135, -41.34928513 ], [ 172.58638, -41.3429718 ], [ 172.599960329999988, -41.3391571 ], [ 172.59210205, -41.33034515 ], [ 172.60644531, -41.29875946 ], [ 172.5957489, -41.29625702 ], [ 172.58792114, -41.28743362 ], [ 172.59469604, -41.28552246 ], [ 172.57516479, -41.26345062 ], [ 172.63618469, -41.24627304 ], [ 172.6401062, -41.25069427 ], [ 172.667221070000011, -41.2430687 ], [ 172.663299560000013, -41.23864746 ], [ 172.676849370000014, -41.23483658 ], [ 172.68649292, -41.22660446 ], [ 172.68258667, -41.22217941 ], [ 172.69613647, -41.21837234 ], [ 172.699005129999989, -41.21203995 ], [ 172.68336487, -41.19433212 ], [ 172.66305542, -41.20005035 ], [ 172.65914917, -41.19562531 ], [ 172.63883972, -41.20134735 ], [ 172.623260499999986, -41.1836319 ], [ 172.63002014, -41.18172073 ], [ 172.62223816, -41.17285538 ], [ 172.62901306, -41.17094421 ], [ 172.62124634, -41.16207123 ], [ 172.6105957, -41.1595459 ], [ 172.59507751000001, -41.14177704 ], [ 172.58831787, -41.14369202 ], [ 172.57286072, -41.12590027 ], [ 172.558380129999989, -41.11891174 ], [ 172.56515503, -41.11699295 ], [ 172.55360413, -41.10361481 ], [ 172.52566528, -41.10045242 ], [ 172.51802063, -41.0915184 ], [ 172.52770996000001, -41.08320236 ], [ 172.516265870000012, -41.06978607 ], [ 172.498962400000011, -41.06916809 ], [ 172.487533570000011, -41.05576324 ], [ 172.49429321, -41.05383301 ], [ 172.50016785, -41.04104614 ], [ 172.49551392, -41.02571487 ], [ 172.48202515, -41.02957535 ], [ 172.4609375, -41.02450562 ], [ 172.44364929, -41.02390289 ], [ 172.44068909, -41.03029251 ], [ 172.413711549999988, -41.03800964 ], [ 172.40612793, -41.02908707 ], [ 172.37831116000001, -41.02595901 ], [ 172.3821106, -41.0304184 ], [ 172.36566162, -41.04066086 ], [ 172.3694458, -41.04512024 ], [ 172.36352539, -41.05789185 ], [ 172.35298157, -41.0553627 ], [ 172.35380554, -41.06620789 ], [ 172.343276980000013, -41.06367493 ], [ 172.32977295, -41.06753159 ], [ 172.322204590000013, -41.05862045 ], [ 172.32896423, -41.05669022 ], [ 172.33784485000001, -41.03753662 ], [ 172.32731628, -41.03501129 ], [ 172.31219482, -41.01719284 ], [ 172.321899409999986, -41.00888062 ], [ 172.33079529, -40.98972321 ], [ 172.34805298, -40.99031448 ], [ 172.35101318, -40.98392868 ], [ 172.36448669, -40.98006439 ], [ 172.383880620000014, -40.96342468 ], [ 172.38980103, -40.95064926 ], [ 172.38305664, -40.95258331 ], [ 172.37846375, -40.93729019 ], [ 172.364990229999989, -40.94115829 ], [ 172.35070801, -40.93419266 ], [ 172.33050537, -40.93999863 ], [ 172.31919861, -40.926651 ], [ 172.305725099999989, -40.9305191 ], [ 172.29820251000001, -40.92162704 ], [ 172.30493164, -40.91968918 ], [ 172.29364014, -40.906353 ], [ 172.286895750000014, -40.90828705 ], [ 172.279373170000014, -40.8993988 ], [ 172.29284668, -40.89552689 ], [ 172.292053220000014, -40.88470459 ], [ 172.284530640000014, -40.87582016 ], [ 172.2635498, -40.87081528 ], [ 172.26274109, -40.86000824 ], [ 172.25306702, -40.86831284 ], [ 172.23287964, -40.87412262 ], [ 172.235839840000011, -40.86775208 ], [ 172.228286739999987, -40.85889053 ], [ 172.231216429999989, -40.85252762 ], [ 172.24467468, -40.8486557 ], [ 172.237091060000012, -40.8398056 ], [ 172.24676514, -40.83150482 ], [ 172.242965700000013, -40.82708359 ], [ 172.248962400000011, -40.81437302 ], [ 172.21711731, -40.77483368 ], [ 172.23666382, -40.77277756 ], [ 172.25, -40.76555634 ], [ 172.258605960000011, -40.76472092 ], [ 172.27360535, -40.75305557 ], [ 172.2930603, -40.7491684 ], [ 172.29333496000001, -40.7444458 ], [ 172.30749512, -40.73083496 ], [ 172.33694458, -40.71277618 ], [ 172.34611511, -40.71111298 ], [ 172.36999512, -40.69722366 ], [ 172.38194275, -40.68638992 ], [ 172.390838620000011, -40.67027664 ], [ 172.40415955, -40.66249847 ], [ 172.425003049999987, -40.64333344 ], [ 172.43333435, -40.64110947 ], [ 172.44221497, -40.6305542 ], [ 172.46083069, -40.62472153 ], [ 172.472229, -40.61722183 ], [ 172.48083496000001, -40.61639023 ], [ 172.48805237, -40.60610962 ], [ 172.51554871, -40.59500122 ], [ 172.52972412, -40.58388901 ], [ 172.53611755, -40.58250046 ], [ 172.54417419, -40.59444427 ], [ 172.53416443, -40.60138702 ], [ 172.54440308, -40.60555649 ], [ 172.52944946, -40.60833359 ], [ 172.50805664, -40.61999893 ], [ 172.514160159999989, -40.6230545 ], [ 172.51083374000001, -40.6297226 ], [ 172.53027344, -40.61666489 ], [ 172.55749512, -40.60527802 ], [ 172.57804871, -40.61194611 ], [ 172.581390379999988, -40.60138702 ], [ 172.571105960000011, -40.60610962 ], [ 172.56777954, -40.5961113 ], [ 172.5819397, -40.58833313 ], [ 172.613616940000014, -40.58777618 ], [ 172.6305542, -40.58444595 ], [ 172.625, -40.58027649 ], [ 172.63027954, -40.57110977 ], [ 172.62249756, -40.56138992 ], [ 172.6166687, -40.56694412 ], [ 172.5944519, -40.56861115 ], [ 172.59111023, -40.57222366 ], [ 172.575271609999987, -40.5672226 ], [ 172.56971741000001, -40.57749939 ], [ 172.57305908, -40.58166504 ], [ 172.55499268, -40.58833313 ], [ 172.547225950000012, -40.5830574 ], [ 172.55499268, -40.56416702 ], [ 172.56611633, -40.55916595 ], [ 172.582504269999987, -40.54639053 ], [ 172.58999634, -40.54444504 ], [ 172.60139465, -40.5336113 ], [ 172.63555908, -40.51111221 ], [ 172.64833069, -40.50500107 ], [ 172.66194153, -40.50722122 ], [ 172.68804932, -40.49750137 ], [ 172.68804932, -40.49750137 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.10", "id_1": 10, "name_1": "Northland", "hasc_1": "NZ.NO", "population2022": 201500, "areakm2": 12841.998, "density2022": 15.69 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.38833618000001, -36.27483749 ], [ 174.38757324, -36.27409744 ], [ 174.38911438, -36.27335358 ], [ 174.38833618000001, -36.27483749 ], [ 174.38833618000001, -36.27483749 ] ] ], [ [ [ 174.18888855, -36.24166489 ], [ 174.18722534, -36.24027634 ], [ 174.18916321, -36.23888779 ], [ 174.18888855, -36.24166489 ], [ 174.18888855, -36.24166489 ] ] ], [ [ [ 174.16305542, -36.22638702 ], [ 174.16166687, -36.22444534 ], [ 174.1652832, -36.2238884 ], [ 174.16305542, -36.22638702 ], [ 174.16305542, -36.22638702 ] ] ], [ [ [ 174.582229610000013, -36.11666489 ], [ 174.580322270000011, -36.12127686 ], [ 174.578445429999988, -36.11925507 ], [ 174.582229610000013, -36.11666489 ], [ 174.582229610000013, -36.11666489 ] ] ], [ [ [ 174.697494510000013, -35.95166779 ], [ 174.71305847, -35.9580574 ], [ 174.72389221, -35.95611191 ], [ 174.74749756, -35.96722412 ], [ 174.72694397, -35.97249985 ], [ 174.706390379999988, -35.97000122 ], [ 174.69639587, -35.95888901 ], [ 174.697494510000013, -35.95166779 ], [ 174.697494510000013, -35.95166779 ] ] ], [ [ [ 174.69471741000001, -35.89194489 ], [ 174.70195007, -35.89416504 ], [ 174.69194031, -35.89583206 ], [ 174.69471741000001, -35.89194489 ], [ 174.69471741000001, -35.89194489 ] ] ], [ [ [ 174.742507929999988, -35.89021683 ], [ 174.74121094, -35.89027786 ], [ 174.741287230000012, -35.88828659 ], [ 174.742507929999988, -35.89021683 ], [ 174.742507929999988, -35.89021683 ] ] ], [ [ [ 174.75222778, -35.88416672 ], [ 174.762496950000013, -35.88888931 ], [ 174.76083374000001, -35.89333344 ], [ 174.74330139, -35.89092255 ], [ 174.75222778, -35.88416672 ], [ 174.75222778, -35.88416672 ] ] ], [ [ [ 174.72471619, -35.88583374 ], [ 174.73925781, -35.88962555 ], [ 174.737228390000013, -35.8983345 ], [ 174.72346497, -35.89439392 ], [ 174.71583557, -35.88583374 ], [ 174.72471619, -35.88583374 ], [ 174.72471619, -35.88583374 ] ] ], [ [ [ 174.702651980000013, -35.88689423 ], [ 174.70112610000001, -35.88683319 ], [ 174.70059204, -35.8837204 ], [ 174.702651980000013, -35.88689423 ], [ 174.702651980000013, -35.88689423 ] ] ], [ [ [ 174.77861023, -35.88360977 ], [ 174.76701355, -35.89451218 ], [ 174.76693726, -35.88666534 ], [ 174.77861023, -35.88360977 ], [ 174.77861023, -35.88360977 ] ] ], [ [ [ 174.69721985000001, -35.88111115 ], [ 174.69590759, -35.88486862 ], [ 174.69322205, -35.88209152 ], [ 174.69721985000001, -35.88111115 ], [ 174.69721985000001, -35.88111115 ] ] ], [ [ [ 174.59584045, -35.83777618 ], [ 174.59379578, -35.84151459 ], [ 174.59263611, -35.83758545 ], [ 174.59584045, -35.83777618 ], [ 174.59584045, -35.83777618 ] ] ], [ [ [ 174.51916504, -35.82860947 ], [ 174.518615720000014, -35.83027649 ], [ 174.516662599999989, -35.82860947 ], [ 174.51916504, -35.82860947 ], [ 174.51916504, -35.82860947 ] ] ], [ [ [ 174.35023499, -35.82321548 ], [ 174.35186768, -35.82626724 ], [ 174.34681702, -35.8261528 ], [ 174.35023499, -35.82321548 ], [ 174.35023499, -35.82321548 ] ] ], [ [ [ 174.34832764, -35.81305695 ], [ 174.347229, -35.81694412 ], [ 174.34500122, -35.8152771 ], [ 174.34832764, -35.81305695 ], [ 174.34832764, -35.81305695 ] ] ], [ [ [ 174.37971497, -35.80833435 ], [ 174.38305664, -35.81000137 ], [ 174.37944031, -35.81138992 ], [ 174.37971497, -35.80833435 ], [ 174.37971497, -35.80833435 ] ] ], [ [ [ 174.34764099, -35.80336761 ], [ 174.34555054, -35.80250168 ], [ 174.34761047, -35.80142975 ], [ 174.34764099, -35.80336761 ], [ 174.34764099, -35.80336761 ] ] ], [ [ [ 174.448608400000012, -35.7891655 ], [ 174.449996950000013, -35.79027939 ], [ 174.44833374000001, -35.79305649 ], [ 174.448608400000012, -35.7891655 ], [ 174.448608400000012, -35.7891655 ] ] ], [ [ [ 174.347229, -35.78749847 ], [ 174.347229, -35.79499817 ], [ 174.34527588, -35.79360962 ], [ 174.347229, -35.78749847 ], [ 174.347229, -35.78749847 ] ] ], [ [ [ 174.37138367, -35.7844429 ], [ 174.37110901, -35.78722382 ], [ 174.36860657, -35.78583145 ], [ 174.37138367, -35.7844429 ], [ 174.37138367, -35.7844429 ] ] ], [ [ [ 174.362930299999988, -35.78653717 ], [ 174.35444641, -35.78333282 ], [ 174.36332703, -35.77944565 ], [ 174.362930299999988, -35.78653717 ], [ 174.362930299999988, -35.78653717 ] ] ], [ [ [ 174.57133484, -35.72345352 ], [ 174.56880188, -35.72127151 ], [ 174.57055664, -35.72083664 ], [ 174.57133484, -35.72345352 ], [ 174.57133484, -35.72345352 ] ] ], [ [ [ 173.44332886, -35.64444351 ], [ 173.44444275, -35.64666748 ], [ 173.44221497, -35.64583206 ], [ 173.44332886, -35.64444351 ], [ 173.44332886, -35.64444351 ] ] ], [ [ [ 173.43333435, -35.62861252 ], [ 173.43222046, -35.6269455 ], [ 173.4347229, -35.62638855 ], [ 173.43333435, -35.62861252 ], [ 173.43333435, -35.62861252 ] ] ], [ [ [ 174.70582581, -35.56638718 ], [ 174.702224730000012, -35.56611252 ], [ 174.705001829999986, -35.5644455 ], [ 174.70582581, -35.56638718 ], [ 174.70582581, -35.56638718 ] ] ], [ [ [ 174.72332764, -35.54972076 ], [ 174.722030640000014, -35.5463829 ], [ 174.7250061, -35.54805374 ], [ 174.72332764, -35.54972076 ], [ 174.72332764, -35.54972076 ] ] ], [ [ [ 174.74694824, -35.48805618 ], [ 174.74507141, -35.48587799 ], [ 174.74873352, -35.48571014 ], [ 174.74694824, -35.48805618 ], [ 174.74694824, -35.48805618 ] ] ], [ [ [ 174.74357605, -35.4763031 ], [ 174.74694824, -35.47999954 ], [ 174.738616940000014, -35.49166489 ], [ 174.73226929, -35.4824295 ], [ 174.736389159999987, -35.47444534 ], [ 174.74357605, -35.4763031 ], [ 174.74357605, -35.4763031 ] ] ], [ [ [ 174.46083069, -35.47166824 ], [ 174.45698547, -35.4756546 ], [ 174.45423889, -35.47359848 ], [ 174.46083069, -35.47166824 ], [ 174.46083069, -35.47166824 ] ] ], [ [ [ 174.457778929999989, -35.46527863 ], [ 174.45443726, -35.46527863 ], [ 174.4569397, -35.46416855 ], [ 174.457778929999989, -35.46527863 ], [ 174.457778929999989, -35.46527863 ] ] ], [ [ [ 174.741149900000011, -35.44827271 ], [ 174.74583435, -35.46055603 ], [ 174.735000609999986, -35.47416687 ], [ 174.73554993, -35.46426773 ], [ 174.7305603, -35.44833374 ], [ 174.741149900000011, -35.44827271 ], [ 174.741149900000011, -35.44827271 ] ] ], [ [ [ 174.44863892, -35.43325806 ], [ 174.44541931, -35.43714905 ], [ 174.44242859, -35.4356842 ], [ 174.44863892, -35.43325806 ], [ 174.44863892, -35.43325806 ] ] ], [ [ [ 174.39805603, -35.43000031 ], [ 174.39944458, -35.43166733 ], [ 174.395278929999989, -35.43222046 ], [ 174.39805603, -35.43000031 ], [ 174.39805603, -35.43000031 ] ] ], [ [ [ 174.44389343, -35.43055725 ], [ 174.4430542, -35.42861176 ], [ 174.447494510000013, -35.42805481 ], [ 174.44389343, -35.43055725 ], [ 174.44389343, -35.43055725 ] ] ], [ [ [ 174.44781494, -35.42048645 ], [ 174.43722534, -35.42972183 ], [ 174.43989563, -35.42070389 ], [ 174.44781494, -35.42048645 ], [ 174.44781494, -35.42048645 ] ] ], [ [ [ 173.49465942, -35.42205048 ], [ 173.49287415, -35.41882706 ], [ 173.494644169999987, -35.41996002 ], [ 173.49465942, -35.42205048 ], [ 173.49465942, -35.42205048 ] ] ], [ [ [ 173.40209961, -35.41384506 ], [ 173.3997345, -35.41253662 ], [ 173.4021759, -35.4123497 ], [ 173.40209961, -35.41384506 ], [ 173.40209961, -35.41384506 ] ] ], [ [ [ 173.51832581, -35.39722061 ], [ 173.520278929999989, -35.4011116 ], [ 173.516387939999987, -35.39944458 ], [ 173.51832581, -35.39722061 ], [ 173.51832581, -35.39722061 ] ] ], [ [ [ 174.37210083, -35.38687515 ], [ 174.37249756, -35.38388824 ], [ 174.37416077, -35.38499832 ], [ 174.37210083, -35.38687515 ], [ 174.37210083, -35.38687515 ] ] ], [ [ [ 174.340271, -35.35527802 ], [ 174.33833313, -35.35361099 ], [ 174.34111023, -35.35222244 ], [ 174.340271, -35.35527802 ], [ 174.340271, -35.35527802 ] ] ], [ [ [ 173.58166504, -35.34999847 ], [ 173.58917236, -35.35138702 ], [ 173.582504269999987, -35.35472107 ], [ 173.58166504, -35.34999847 ], [ 173.58166504, -35.34999847 ] ] ], [ [ [ 174.3777771, -35.32805634 ], [ 174.37916565, -35.32916641 ], [ 174.37750244, -35.33055496 ], [ 174.3777771, -35.32805634 ], [ 174.3777771, -35.32805634 ] ] ], [ [ [ 173.52861023, -35.27083206 ], [ 173.527771, -35.26972198 ], [ 173.52999878, -35.26972198 ], [ 173.52861023, -35.27083206 ], [ 173.52861023, -35.27083206 ] ] ], [ [ [ 174.18444824, -35.24888992 ], [ 174.18666077, -35.25055695 ], [ 174.1847229, -35.25111008 ], [ 174.18444824, -35.24888992 ], [ 174.18444824, -35.24888992 ] ] ], [ [ [ 174.15904236, -35.22982788 ], [ 174.17565918, -35.23165131 ], [ 174.173614500000014, -35.23607635 ], [ 174.1582489, -35.23518372 ], [ 174.15904236, -35.22982788 ], [ 174.15904236, -35.22982788 ] ] ], [ [ [ 174.22193909, -35.2266655 ], [ 174.228607180000012, -35.23110962 ], [ 174.22055054, -35.22916794 ], [ 174.22193909, -35.2266655 ], [ 174.22193909, -35.2266655 ] ] ], [ [ [ 174.19429016, -35.21644211 ], [ 174.202774049999988, -35.22611237 ], [ 174.1946106, -35.23287582 ], [ 174.182006840000014, -35.22290039 ], [ 174.18695068, -35.21583176 ], [ 174.19429016, -35.21644211 ], [ 174.19429016, -35.21644211 ] ] ], [ [ [ 174.202774049999988, -35.2136116 ], [ 174.20582581, -35.2219429 ], [ 174.193603520000011, -35.21389008 ], [ 174.202774049999988, -35.2136116 ], [ 174.202774049999988, -35.2136116 ] ] ], [ [ [ 174.11471558, -35.20722198 ], [ 174.11582947, -35.20833206 ], [ 174.11416626, -35.21055603 ], [ 174.11471558, -35.20722198 ], [ 174.11471558, -35.20722198 ] ] ], [ [ [ 174.23431396, -35.20607758 ], [ 174.24494934, -35.22016525 ], [ 174.23838806, -35.21843719 ], [ 174.23747253, -35.22793198 ], [ 174.22647095, -35.2225914 ], [ 174.224517819999988, -35.21150208 ], [ 174.23431396, -35.20607758 ], [ 174.23431396, -35.20607758 ] ] ], [ [ [ 174.1000061, -35.20694351 ], [ 174.108886719999987, -35.21111298 ], [ 174.09750366, -35.21389008 ], [ 174.080276489999989, -35.21277618 ], [ 174.077774049999988, -35.20472336 ], [ 174.1000061, -35.20694351 ], [ 174.1000061, -35.20694351 ] ] ], [ [ [ 174.1027832, -35.20416641 ], [ 174.103607180000012, -35.20194626 ], [ 174.10444641, -35.20305634 ], [ 174.1027832, -35.20416641 ], [ 174.1027832, -35.20416641 ] ] ], [ [ [ 174.07943726, -35.20111084 ], [ 174.081390379999988, -35.20249939 ], [ 174.079162599999989, -35.20333481 ], [ 174.07943726, -35.20111084 ], [ 174.07943726, -35.20111084 ] ] ], [ [ [ 174.11166382, -35.20000076 ], [ 174.11305237, -35.20583344 ], [ 174.10945129000001, -35.20277786 ], [ 174.11166382, -35.20000076 ], [ 174.11166382, -35.20000076 ] ] ], [ [ [ 174.215271, -35.19916534 ], [ 174.22416687, -35.20472336 ], [ 174.20985413, -35.20573807 ], [ 174.215271, -35.19916534 ], [ 174.215271, -35.19916534 ] ] ], [ [ [ 174.049728390000013, -35.19833374 ], [ 174.052505489999987, -35.20027924 ], [ 174.045272829999988, -35.20138931 ], [ 174.049728390000013, -35.19833374 ], [ 174.049728390000013, -35.19833374 ] ] ], [ [ [ 174.11054993, -35.19833374 ], [ 174.107772829999988, -35.20055389 ], [ 174.1055603, -35.19916534 ], [ 174.11054993, -35.19833374 ], [ 174.11054993, -35.19833374 ] ] ], [ [ [ 174.008605960000011, -35.19805527 ], [ 174.00805664, -35.20000076 ], [ 174.00491333, -35.19906616 ], [ 174.008605960000011, -35.19805527 ], [ 174.008605960000011, -35.19805527 ] ] ], [ [ [ 174.21444702, -35.19555664 ], [ 174.206390379999988, -35.20249939 ], [ 174.204162599999989, -35.19638824 ], [ 174.21444702, -35.19555664 ], [ 174.21444702, -35.19555664 ] ] ], [ [ [ 174.082504269999987, -35.18611145 ], [ 174.0847168, -35.18777847 ], [ 174.083618159999986, -35.18888855 ], [ 174.082504269999987, -35.18611145 ], [ 174.082504269999987, -35.18611145 ] ] ], [ [ [ 174.085006709999988, -35.1827774 ], [ 174.08944702, -35.18638992 ], [ 174.083892819999988, -35.18388748 ], [ 174.085006709999988, -35.1827774 ], [ 174.085006709999988, -35.1827774 ] ] ], [ [ [ 174.079162599999989, -35.18249893 ], [ 174.081115720000014, -35.18444443 ], [ 174.078887939999987, -35.1847229 ], [ 174.079162599999989, -35.18249893 ], [ 174.079162599999989, -35.18249893 ] ] ], [ [ [ 174.085006709999988, -35.17972183 ], [ 174.08416748, -35.18166733 ], [ 174.082504269999987, -35.18000031 ], [ 174.085006709999988, -35.17972183 ], [ 174.085006709999988, -35.17972183 ] ] ], [ [ [ 174.33917236, -35.16888809 ], [ 174.33778381, -35.16755295 ], [ 174.33961487, -35.16766739 ], [ 174.33917236, -35.16888809 ], [ 174.33917236, -35.16888809 ] ] ], [ [ [ 174.34068298, -35.16584396 ], [ 174.33805847, -35.16583252 ], [ 174.33869934, -35.16366577 ], [ 174.34068298, -35.16584396 ], [ 174.34068298, -35.16584396 ] ] ], [ [ [ 173.98350525, -35.12156677 ], [ 173.98243713, -35.12057114 ], [ 173.983581539999989, -35.1195755 ], [ 173.98350525, -35.12156677 ], [ 173.98350525, -35.12156677 ] ] ], [ [ [ 174.05999756, -35.11000061 ], [ 174.06027222, -35.11360931 ], [ 174.05883789, -35.11116791 ], [ 174.05999756, -35.11000061 ], [ 174.05999756, -35.11000061 ] ] ], [ [ [ 173.96356201, -35.03900909 ], [ 173.961563109999986, -35.03801346 ], [ 173.96226501000001, -35.03695679 ], [ 173.96356201, -35.03900909 ], [ 173.96356201, -35.03900909 ] ] ], [ [ [ 173.9447937, -35.03010941 ], [ 173.94165039, -35.03278351 ], [ 173.94126892, -35.03010941 ], [ 173.9447937, -35.03010941 ], [ 173.9447937, -35.03010941 ] ] ], [ [ [ 173.93482971, -35.03091812 ], [ 173.932846070000011, -35.028862 ], [ 173.93521118000001, -35.02892685 ], [ 173.93482971, -35.03091812 ], [ 173.93482971, -35.03091812 ] ] ], [ [ [ 173.95866394, -35.03091812 ], [ 173.961563109999986, -35.03483963 ], [ 173.95054626000001, -35.03377914 ], [ 173.95866394, -35.03091812 ], [ 173.95866394, -35.03091812 ] ] ], [ [ [ 173.95100403, -35.0236969 ], [ 173.95184326, -35.028862 ], [ 173.94869995, -35.0273056 ], [ 173.95100403, -35.0236969 ], [ 173.95100403, -35.0236969 ] ] ], [ [ [ 173.754837040000012, -35.01564789 ], [ 173.75663757, -35.0216713 ], [ 173.7527771, -35.02082062 ], [ 173.754837040000012, -35.01564789 ], [ 173.754837040000012, -35.01564789 ] ] ], [ [ [ 173.87117004000001, -35.01528168 ], [ 173.86955261, -35.01416016 ], [ 173.871551509999989, -35.01397324 ], [ 173.87117004000001, -35.01528168 ], [ 173.87117004000001, -35.01528168 ] ] ], [ [ [ 173.555755620000014, -35.00296783 ], [ 173.55552673, -35.00141144 ], [ 173.55636597, -35.00097656 ], [ 173.555755620000014, -35.00296783 ], [ 173.555755620000014, -35.00296783 ] ] ], [ [ [ 173.969802859999987, -35.0015831 ], [ 173.96681213, -35.00127411 ], [ 173.969207759999989, -34.99891663 ], [ 173.969802859999987, -35.0015831 ], [ 173.969802859999987, -35.0015831 ] ] ], [ [ [ 173.2835083, -34.9946022 ], [ 173.28555298, -34.99499893 ], [ 173.28500366, -34.99666595 ], [ 173.2835083, -34.9946022 ], [ 173.2835083, -34.9946022 ] ] ], [ [ [ 173.2694397, -34.99333191 ], [ 173.270278929999989, -34.99666595 ], [ 173.26832581, -34.9944458 ], [ 173.2694397, -34.99333191 ], [ 173.2694397, -34.99333191 ] ] ], [ [ [ 173.297500609999986, -34.99222183 ], [ 173.30554199, -35.00317001 ], [ 173.29055786, -34.9980545 ], [ 173.297500609999986, -34.99222183 ], [ 173.297500609999986, -34.99222183 ] ] ], [ [ [ 173.86317444, -34.98765182 ], [ 173.86045837, -34.98650742 ], [ 173.863616940000014, -34.98527908 ], [ 173.86317444, -34.98765182 ], [ 173.86317444, -34.98765182 ] ] ], [ [ [ 173.95718384, -34.98606873 ], [ 173.950271609999987, -34.99166489 ], [ 173.951385499999986, -35.00111008 ], [ 173.94221497, -35.01194382 ], [ 173.928894039999989, -35.00444412 ], [ 173.94055176, -34.98638916 ], [ 173.95718384, -34.98606873 ], [ 173.95718384, -34.98606873 ] ] ], [ [ [ 173.43888855, -34.98055649 ], [ 173.43888855, -34.98277664 ], [ 173.43695068, -34.98138809 ], [ 173.43888855, -34.98055649 ], [ 173.43888855, -34.98055649 ] ] ], [ [ [ 173.9577179, -34.98296738 ], [ 173.95443726, -34.98138809 ], [ 173.95761108, -34.98036957 ], [ 173.9577179, -34.98296738 ], [ 173.9577179, -34.98296738 ] ] ], [ [ [ 173.972335820000012, -34.98194504 ], [ 173.972229, -34.97972107 ], [ 173.973556519999988, -34.98075485 ], [ 173.972335820000012, -34.98194504 ], [ 173.972335820000012, -34.98194504 ] ] ], [ [ [ 173.28083801, -34.97750092 ], [ 173.28527832, -34.98083496 ], [ 173.27861023, -34.99472046 ], [ 173.27194214, -34.99000168 ], [ 173.28083801, -34.97750092 ], [ 173.28083801, -34.97750092 ] ] ], [ [ [ 173.86778259, -34.97527695 ], [ 173.865005489999987, -34.98389053 ], [ 173.862091060000012, -34.97438049 ], [ 173.86778259, -34.97527695 ], [ 173.86778259, -34.97527695 ] ] ], [ [ [ 173.965271, -34.97249985 ], [ 173.96914673, -34.97473907 ], [ 173.96305847, -34.97833252 ], [ 173.965271, -34.97249985 ], [ 173.965271, -34.97249985 ] ] ], [ [ [ 173.94639587, -34.9719429 ], [ 173.95675659, -34.97382355 ], [ 173.944549560000013, -34.97750092 ], [ 173.94639587, -34.9719429 ], [ 173.94639587, -34.9719429 ] ] ], [ [ [ 173.94277954, -34.97166824 ], [ 173.93833923, -34.97222137 ], [ 173.941192629999989, -34.96968079 ], [ 173.94277954, -34.97166824 ], [ 173.94277954, -34.97166824 ] ] ], [ [ [ 173.25819397, -34.97597885 ], [ 173.261108400000012, -34.9663887 ], [ 173.263885499999986, -34.9663887 ], [ 173.25819397, -34.97597885 ], [ 173.25819397, -34.97597885 ] ] ], [ [ [ 173.25, -34.96166611 ], [ 173.24861145, -34.95722198 ], [ 173.25305176, -34.95639038 ], [ 173.25, -34.96166611 ], [ 173.25, -34.96166611 ] ] ], [ [ [ 173.773895259999989, -34.95472336 ], [ 173.78388977, -34.95944595 ], [ 173.78778076, -34.97055435 ], [ 173.77722168, -34.97055435 ], [ 173.773895259999989, -34.95472336 ], [ 173.773895259999989, -34.95472336 ] ] ], [ [ [ 173.76445007, -34.95111084 ], [ 173.770004269999987, -34.95333481 ], [ 173.768615720000014, -34.95527649 ], [ 173.76445007, -34.95111084 ], [ 173.76445007, -34.95111084 ] ] ], [ [ [ 173.25909424, -34.95363617 ], [ 173.25917053, -34.95083237 ], [ 173.26028442, -34.95249939 ], [ 173.25909424, -34.95363617 ], [ 173.25909424, -34.95363617 ] ] ], [ [ [ 173.69110107, -34.9452858 ], [ 173.69111633, -34.94666672 ], [ 173.688278200000013, -34.94474411 ], [ 173.69110107, -34.9452858 ], [ 173.69110107, -34.9452858 ] ] ], [ [ [ 173.65333557, -34.94277954 ], [ 173.65522766, -34.94596481 ], [ 173.65222168, -34.94527817 ], [ 173.65333557, -34.94277954 ], [ 173.65333557, -34.94277954 ] ] ], [ [ [ 173.5597229, -34.9094429 ], [ 173.56111145, -34.9113884 ], [ 173.55885315, -34.9118576 ], [ 173.5597229, -34.9094429 ], [ 173.5597229, -34.9094429 ] ] ], [ [ [ 173.42254639, -34.83016968 ], [ 173.420837400000011, -34.82944489 ], [ 173.42195129000001, -34.82777786 ], [ 173.42254639, -34.83016968 ], [ 173.42254639, -34.83016968 ] ] ], [ [ [ 173.37583923, -34.78499985 ], [ 173.38194275, -34.78833389 ], [ 173.37693787, -34.79000092 ], [ 173.37583923, -34.78499985 ], [ 173.37583923, -34.78499985 ] ] ], [ [ [ 173.36218262, -34.78314209 ], [ 173.363616940000014, -34.78527832 ], [ 173.360000609999986, -34.78472137 ], [ 173.36218262, -34.78314209 ], [ 173.36218262, -34.78314209 ] ] ], [ [ [ 173.358337400000011, -34.77944565 ], [ 173.361389159999987, -34.7808342 ], [ 173.358886719999987, -34.7836113 ], [ 173.358337400000011, -34.77944565 ], [ 173.358337400000011, -34.77944565 ] ] ], [ [ [ 173.397506709999988, -34.77388763 ], [ 173.395278929999989, -34.77833176 ], [ 173.39219666, -34.77355194 ], [ 173.397506709999988, -34.77388763 ], [ 173.397506709999988, -34.77388763 ] ] ], [ [ [ 173.34500122, -34.76694489 ], [ 173.35166931, -34.77361298 ], [ 173.34472656, -34.7705574 ], [ 173.34500122, -34.76694489 ], [ 173.34500122, -34.76694489 ] ] ], [ [ [ 173.15638733, -34.75416565 ], [ 173.15640259, -34.75751877 ], [ 173.15274048, -34.75695419 ], [ 173.15638733, -34.75416565 ], [ 173.15638733, -34.75416565 ] ] ], [ [ [ 172.890274049999988, -34.68500137 ], [ 172.893615720000014, -34.6875 ], [ 172.888610840000013, -34.6875 ], [ 172.890274049999988, -34.68500137 ], [ 172.890274049999988, -34.68500137 ] ] ], [ [ [ 172.798614500000014, -34.60805511 ], [ 172.796661379999989, -34.60583496 ], [ 172.79853821, -34.60459518 ], [ 172.798614500000014, -34.60805511 ], [ 172.798614500000014, -34.60805511 ] ] ], [ [ [ 172.956115720000014, -34.58194351 ], [ 172.955001829999986, -34.58388901 ], [ 172.954193120000014, -34.58200836 ], [ 172.956115720000014, -34.58194351 ], [ 172.956115720000014, -34.58194351 ] ] ], [ [ [ 172.913452150000012, -34.56146622 ], [ 172.913604740000011, -34.56246948 ], [ 172.90934753, -34.56328964 ], [ 172.913452150000012, -34.56146622 ], [ 172.913452150000012, -34.56146622 ] ] ], [ [ [ 172.94082642, -34.55444336 ], [ 172.94194031, -34.55722046 ], [ 172.93916321, -34.55749893 ], [ 172.94082642, -34.55444336 ], [ 172.94082642, -34.55444336 ] ] ], [ [ [ 172.8972168, -34.5295639 ], [ 172.89874268, -34.53068924 ], [ 172.897521970000014, -34.53131866 ], [ 172.8972168, -34.5295639 ], [ 172.8972168, -34.5295639 ] ] ], [ [ [ 172.956115720000014, -34.5055542 ], [ 172.96278381, -34.51194382 ], [ 172.954727170000012, -34.50722122 ], [ 172.956115720000014, -34.5055542 ], [ 172.956115720000014, -34.5055542 ] ] ], [ [ [ 172.94877625, -34.50155258 ], [ 172.949722290000011, -34.50444412 ], [ 172.94667053, -34.50222397 ], [ 172.94877625, -34.50155258 ], [ 172.94877625, -34.50155258 ] ] ], [ [ [ 172.91053772, -34.48409653 ], [ 172.90943909, -34.48166656 ], [ 172.91278076, -34.48055649 ], [ 172.91053772, -34.48409653 ], [ 172.91053772, -34.48409653 ] ] ], [ [ [ 172.65333557, -34.48166656 ], [ 172.652832030000013, -34.47867966 ], [ 172.65489197, -34.4802475 ], [ 172.65333557, -34.48166656 ], [ 172.65333557, -34.48166656 ] ] ], [ [ [ 172.64054871, -34.47333145 ], [ 172.63471985000001, -34.47360992 ], [ 172.63583374000001, -34.46416855 ], [ 172.64054871, -34.47333145 ], [ 172.64054871, -34.47333145 ] ] ], [ [ [ 173.01132202, -34.39270782 ], [ 173.03166199, -34.3983345 ], [ 173.04556274, -34.41222382 ], [ 173.02166748, -34.41860962 ], [ 173.01055908, -34.42444611 ], [ 173.00486755, -34.43872833 ], [ 173.00361633, -34.47333145 ], [ 173.006103520000011, -34.48138809 ], [ 173.000335690000014, -34.48408508 ], [ 173.00222778, -34.5019455 ], [ 173.00917053, -34.50888824 ], [ 173.00027466, -34.51638794 ], [ 172.987228390000013, -34.52000046 ], [ 172.97471619, -34.51777649 ], [ 172.96861267, -34.52222061 ], [ 172.976104740000011, -34.4980545 ], [ 172.96444702, -34.49472046 ], [ 172.951660159999989, -34.50222397 ], [ 172.947494510000013, -34.49388885 ], [ 172.93722534, -34.50694275 ], [ 172.922500609999986, -34.50333405 ], [ 172.93499756, -34.49194336 ], [ 172.93051147, -34.48440933 ], [ 172.923889159999987, -34.48777771 ], [ 172.914276120000011, -34.48298264 ], [ 172.91723633, -34.47789383 ], [ 172.90527344, -34.47722244 ], [ 172.91166687, -34.48833466 ], [ 172.92416382, -34.49139023 ], [ 172.90834045, -34.50055695 ], [ 172.92416382, -34.51277924 ], [ 172.91000366, -34.52000046 ], [ 172.90499878, -34.5336113 ], [ 172.89694214, -34.52277756 ], [ 172.8833313, -34.51499939 ], [ 172.896392819999988, -34.52861023 ], [ 172.890274049999988, -34.5391655 ], [ 172.87832642, -34.53972244 ], [ 172.887222290000011, -34.54666519 ], [ 172.90055847, -34.54388809 ], [ 172.918396, -34.55244064 ], [ 172.916107180000012, -34.54388809 ], [ 172.92778015, -34.52916718 ], [ 172.93943787, -34.53555679 ], [ 172.93278503, -34.54639053 ], [ 172.93278503, -34.55555725 ], [ 172.921386719999987, -34.55611038 ], [ 172.90638733, -34.56194305 ], [ 172.9200592, -34.56847763 ], [ 172.923339840000011, -34.56027603 ], [ 172.9375, -34.56611252 ], [ 172.92999268, -34.58055496 ], [ 172.93861389, -34.57249832 ], [ 172.95083618000001, -34.55083466 ], [ 172.96278381, -34.5577774 ], [ 172.97361755, -34.57194519 ], [ 172.96833801, -34.57694626 ], [ 172.9569397, -34.57583237 ], [ 172.956390379999988, -34.58611298 ], [ 172.97193909, -34.58166504 ], [ 172.96221924, -34.5988884 ], [ 172.97332764, -34.5941658 ], [ 172.97416687, -34.60222244 ], [ 172.96833801, -34.61249924 ], [ 172.97535706, -34.61598969 ], [ 172.985839840000011, -34.59972382 ], [ 172.983886719999987, -34.58638763 ], [ 172.9859314, -34.57051849 ], [ 172.97528076, -34.56388855 ], [ 172.95950317, -34.54743576 ], [ 172.955276489999989, -34.53472137 ], [ 172.95944214, -34.5280571 ], [ 172.97027588, -34.52583313 ], [ 172.98574829, -34.52812195 ], [ 172.99055481, -34.53416824 ], [ 172.99110413, -34.54722214 ], [ 173.00332642, -34.5988884 ], [ 173.018890379999988, -34.63972092 ], [ 173.02915955, -34.66083527 ], [ 173.05860901, -34.70277786 ], [ 173.068603520000011, -34.70694351 ], [ 173.077774049999988, -34.71861267 ], [ 173.09222412, -34.7211113 ], [ 173.0930481, -34.72583389 ], [ 173.110839840000011, -34.73166656 ], [ 173.11694336, -34.73694611 ], [ 173.12388611, -34.75305557 ], [ 173.14054871, -34.76750183 ], [ 173.15611267, -34.76638794 ], [ 173.15527344, -34.77305603 ], [ 173.14694214, -34.77750015 ], [ 173.15388489, -34.78666687 ], [ 173.166381840000014, -34.78888702 ], [ 173.175277709999989, -34.80277634 ], [ 173.163711549999988, -34.80746078 ], [ 173.172225950000012, -34.82027817 ], [ 173.166381840000014, -34.82666779 ], [ 173.15055847, -34.82138824 ], [ 173.14741516, -34.81163025 ], [ 173.137771609999987, -34.8125 ], [ 173.13221741000001, -34.80749893 ], [ 173.13250732, -34.79722214 ], [ 173.12167358, -34.77694321 ], [ 173.109161379999989, -34.77555466 ], [ 173.10627747, -34.77028656 ], [ 173.10221863000001, -34.78111267 ], [ 173.11833191, -34.80138779 ], [ 173.1222229, -34.81777954 ], [ 173.137496950000013, -34.82583237 ], [ 173.1446991, -34.82130051 ], [ 173.1555481, -34.82611084 ], [ 173.15834045, -34.84277725 ], [ 173.18666077, -34.86500168 ], [ 173.21638489, -34.87749863 ], [ 173.22805786, -34.8805542 ], [ 173.268615720000014, -34.88388824 ], [ 173.28083801, -34.89333344 ], [ 173.27888489, -34.90555573 ], [ 173.267776489999989, -34.91860962 ], [ 173.25193787, -34.93111038 ], [ 173.238616940000014, -34.9355545 ], [ 173.24082947, -34.94777679 ], [ 173.23693848, -34.95833206 ], [ 173.24777222, -34.95750046 ], [ 173.24777222, -34.96694565 ], [ 173.23805237, -34.96611023 ], [ 173.24472046, -34.97694397 ], [ 173.23167419, -34.98055649 ], [ 173.237503049999987, -34.98500061 ], [ 173.233337400000011, -34.99139023 ], [ 173.24159241000001, -34.995121 ], [ 173.2583313, -34.99277878 ], [ 173.25250244, -34.98555374 ], [ 173.26333618000001, -34.9738884 ], [ 173.271850590000014, -34.97734833 ], [ 173.266113280000013, -34.99555588 ], [ 173.26916504, -34.9991684 ], [ 173.29083252, -34.9991684 ], [ 173.303939820000011, -35.00577164 ], [ 173.302505489999987, -34.99166489 ], [ 173.28971863000001, -34.99416733 ], [ 173.28138733, -34.99166489 ], [ 173.29438782, -34.97409821 ], [ 173.28833008, -34.9683342 ], [ 173.296661379999989, -34.96166611 ], [ 173.3041687, -34.96333313 ], [ 173.31138611, -34.95277786 ], [ 173.30999756, -34.9719429 ], [ 173.31694031, -34.97555542 ], [ 173.33305359, -34.96500015 ], [ 173.33444214, -34.95444489 ], [ 173.318603520000011, -34.91666794 ], [ 173.31111145, -34.9030571 ], [ 173.30055237, -34.89805603 ], [ 173.295837400000011, -34.8805542 ], [ 173.289993290000012, -34.8769455 ], [ 173.28611755, -34.86333466 ], [ 173.29055786, -34.85777664 ], [ 173.297775269999988, -34.86166763 ], [ 173.31388855, -34.86138916 ], [ 173.33911133, -34.85663986 ], [ 173.37055969, -34.84666824 ], [ 173.387222290000011, -34.83611298 ], [ 173.395278929999989, -34.82583237 ], [ 173.39694214, -34.81694412 ], [ 173.38555908, -34.81222153 ], [ 173.38555908, -34.80027771 ], [ 173.39416504, -34.80083466 ], [ 173.395278929999989, -34.78194427 ], [ 173.413604740000011, -34.79694366 ], [ 173.40722656, -34.80500031 ], [ 173.417770389999987, -34.81833267 ], [ 173.41027832, -34.82166672 ], [ 173.41139221, -34.83187485 ], [ 173.421081539999989, -34.83357239 ], [ 173.42944336, -34.82444382 ], [ 173.4352417, -34.82798386 ], [ 173.45106506, -34.82409286 ], [ 173.451416020000011, -34.83213425 ], [ 173.44154358, -34.83304977 ], [ 173.46066284, -34.84715271 ], [ 173.47055054, -34.84916687 ], [ 173.46080017, -34.85305786 ], [ 173.461395259999989, -34.86000061 ], [ 173.4375, -34.86611176 ], [ 173.41333008, -34.88138962 ], [ 173.39778137, -34.88194275 ], [ 173.39778137, -34.8777771 ], [ 173.37861633, -34.87666702 ], [ 173.36917114, -34.89638901 ], [ 173.3722229, -34.9169426 ], [ 173.37805176, -34.93333435 ], [ 173.39416504, -34.95666504 ], [ 173.41055298, -34.9719429 ], [ 173.43028259, -34.98472214 ], [ 173.44055176, -34.98194504 ], [ 173.452346799999987, -34.98363495 ], [ 173.45944214, -34.99083328 ], [ 173.47250366, -34.99416733 ], [ 173.47471619, -34.98749924 ], [ 173.495742799999988, -34.9910202 ], [ 173.49916077, -34.98666763 ], [ 173.515274049999988, -34.98972321 ], [ 173.52638245, -34.98027802 ], [ 173.52749634, -34.98722076 ], [ 173.5375061, -34.98944473 ], [ 173.53666687, -35.0 ], [ 173.558395389999987, -34.99915314 ], [ 173.55360413, -34.98166656 ], [ 173.54194641, -34.97499847 ], [ 173.53808594, -34.98704147 ], [ 173.52749634, -34.97805405 ], [ 173.53833008, -34.96861267 ], [ 173.52999878, -34.96472168 ], [ 173.52471924, -34.94944382 ], [ 173.53111267, -34.9383316 ], [ 173.555145259999989, -34.92879868 ], [ 173.55993652, -34.9134407 ], [ 173.56889343, -34.92750168 ], [ 173.57562256, -34.93053818 ], [ 173.572494510000013, -34.94083405 ], [ 173.577774049999988, -34.94444275 ], [ 173.6000061, -34.9319458 ], [ 173.60694885, -34.93861008 ], [ 173.62167358, -34.93888855 ], [ 173.62487793, -34.95294189 ], [ 173.639999390000014, -34.95249939 ], [ 173.64054871, -34.96444321 ], [ 173.654541020000011, -34.96691513 ], [ 173.66166687, -34.95888901 ], [ 173.669998170000014, -34.96146011 ], [ 173.681396479999989, -34.94666672 ], [ 173.70083618000001, -34.95111084 ], [ 173.706115720000014, -34.95500183 ], [ 173.70304871, -34.96722412 ], [ 173.715484620000012, -34.98265839 ], [ 173.70976257, -34.99049377 ], [ 173.71333313, -34.99555588 ], [ 173.73666382, -34.99250031 ], [ 173.75444031, -34.99777603 ], [ 173.75790405, -35.00565338 ], [ 173.74945068, -35.00694275 ], [ 173.733734129999988, -35.00095367 ], [ 173.730270389999987, -35.01139069 ], [ 173.73658752, -35.0098114 ], [ 173.749221799999987, -35.01535416 ], [ 173.741394039999989, -35.0363884 ], [ 173.728881840000014, -35.0419426 ], [ 173.728607180000012, -35.04777908 ], [ 173.71388245, -35.04472351 ], [ 173.707778929999989, -35.05583191 ], [ 173.71861267, -35.0605545 ], [ 173.71472168, -35.06583405 ], [ 173.72166443, -35.07444382 ], [ 173.733337400000011, -35.07777786 ], [ 173.7444458, -35.05749893 ], [ 173.74110413, -35.04888916 ], [ 173.753570559999986, -35.03775406 ], [ 173.76072693, -35.04901123 ], [ 173.76832581, -35.04916763 ], [ 173.75852966, -35.03427505 ], [ 173.763900760000013, -35.03200531 ], [ 173.7749939, -35.03775406 ], [ 173.77333069, -35.02083206 ], [ 173.75527954, -35.01499939 ], [ 173.76753235000001, -35.00450897 ], [ 173.77742004000001, -35.00767136 ], [ 173.789382929999988, -35.00199127 ], [ 173.80091858, -35.00128937 ], [ 173.81195068, -34.99139023 ], [ 173.81639099, -34.99777603 ], [ 173.81777954, -34.98583221 ], [ 173.82809448, -35.00149536 ], [ 173.84367371, -34.99376297 ], [ 173.86193848, -34.99027634 ], [ 173.84428406, -34.99814987 ], [ 173.853607180000012, -35.00166702 ], [ 173.853881840000014, -35.01333237 ], [ 173.86372375, -35.02109146 ], [ 173.87442017, -35.01671219 ], [ 173.88262939, -35.02169037 ], [ 173.89582825, -35.00860977 ], [ 173.8999939, -35.02000046 ], [ 173.916381840000014, -35.0288887 ], [ 173.91339111, -35.03449631 ], [ 173.94139099, -35.05416489 ], [ 173.92756653, -35.06050873 ], [ 173.9402771, -35.09722137 ], [ 173.93556213, -35.10416794 ], [ 173.94389343, -35.10277939 ], [ 173.95661926, -35.10915756 ], [ 173.96760559, -35.11956024 ], [ 173.97721863000001, -35.11639023 ], [ 173.98083496000001, -35.12638855 ], [ 173.987777709999989, -35.11722183 ], [ 173.99610901, -35.11527634 ], [ 174.00054932, -35.12138748 ], [ 174.012771609999987, -35.12111282 ], [ 174.016113280000013, -35.11555481 ], [ 174.043609620000012, -35.11611176 ], [ 174.051116940000014, -35.1202774 ], [ 174.05722046, -35.11472321 ], [ 174.08166504, -35.11527634 ], [ 174.1000061, -35.14416504 ], [ 174.09750366, -35.14944458 ], [ 174.11528015, -35.15555573 ], [ 174.12750244, -35.15527725 ], [ 174.12944031, -35.16222382 ], [ 174.12193298, -35.17218781 ], [ 174.11166382, -35.16777802 ], [ 174.104003909999989, -35.17525864 ], [ 174.09634399, -35.1697464 ], [ 174.085006709999988, -35.17805481 ], [ 174.07258606, -35.18056107 ], [ 174.066909790000011, -35.19401932 ], [ 174.0606842, -35.18948746 ], [ 174.0559845, -35.16759109 ], [ 174.04550171, -35.15543747 ], [ 174.04795837, -35.14805603 ], [ 174.03778076, -35.15805435 ], [ 174.035491940000014, -35.16579437 ], [ 174.01832581, -35.14944458 ], [ 174.017227170000012, -35.14305496 ], [ 174.00854492, -35.13995743 ], [ 174.004364009999989, -35.14864349 ], [ 174.00065613000001, -35.14393234 ], [ 173.987503049999987, -35.14749908 ], [ 173.98306274, -35.15611267 ], [ 173.99583435, -35.16027832 ], [ 174.00500488, -35.15833282 ], [ 174.0075531, -35.17145538 ], [ 174.01983643, -35.17234039 ], [ 174.017929079999988, -35.18007278 ], [ 174.03289795, -35.18046188 ], [ 174.03125, -35.18678665 ], [ 174.040924069999988, -35.18679047 ], [ 174.05023193, -35.19346237 ], [ 174.03250122, -35.19666672 ], [ 174.01557922, -35.18892288 ], [ 174.00280762, -35.19729996 ], [ 173.97540283, -35.21107864 ], [ 174.0027771, -35.20694351 ], [ 174.01171875, -35.21188736 ], [ 174.01364136, -35.20713425 ], [ 174.0365448, -35.20786667 ], [ 174.04829407, -35.20385742 ], [ 174.052948, -35.21123505 ], [ 174.06500244, -35.21472168 ], [ 174.05833435, -35.2238884 ], [ 174.05961609, -35.23109436 ], [ 174.07139587, -35.23749924 ], [ 174.076660159999989, -35.23583221 ], [ 174.082778929999989, -35.24777603 ], [ 174.080276489999989, -35.25388718 ], [ 174.085006709999988, -35.26555634 ], [ 174.08055115, -35.27472305 ], [ 174.10333252, -35.2844429 ], [ 174.09944153, -35.29722214 ], [ 174.125, -35.31277847 ], [ 174.10795593, -35.32824707 ], [ 174.12249756, -35.33166504 ], [ 174.12304688, -35.32185364 ], [ 174.137191769999987, -35.31670761 ], [ 174.139038090000014, -35.33129501 ], [ 174.15116882, -35.33050156 ], [ 174.142227170000012, -35.32083511 ], [ 174.158691409999989, -35.31259155 ], [ 174.167343140000014, -35.31483078 ], [ 174.178894039999989, -35.3105545 ], [ 174.18888855, -35.31777954 ], [ 174.2069397, -35.32055664 ], [ 174.217453, -35.3272438 ], [ 174.21635437, -35.33407974 ], [ 174.22444153, -35.33194351 ], [ 174.206115720000014, -35.3125 ], [ 174.19528198, -35.31222153 ], [ 174.18888855, -35.30222321 ], [ 174.175277709999989, -35.30472183 ], [ 174.17070007, -35.29621124 ], [ 174.161743159999986, -35.30530167 ], [ 174.15611267, -35.30250168 ], [ 174.14428711, -35.30883026 ], [ 174.132354740000011, -35.30685043 ], [ 174.12693787, -35.31083298 ], [ 174.115005489999987, -35.30361176 ], [ 174.124069209999988, -35.30096436 ], [ 174.11309814, -35.28505325 ], [ 174.12973022, -35.28056335 ], [ 174.13806152, -35.29083252 ], [ 174.145004269999987, -35.28472137 ], [ 174.13548279, -35.28117371 ], [ 174.12889099, -35.26694489 ], [ 174.12236023, -35.26877594 ], [ 174.11192322, -35.25102997 ], [ 174.12257385, -35.24149704 ], [ 174.12333679, -35.2472229 ], [ 174.13555908, -35.25222397 ], [ 174.13194275, -35.25779724 ], [ 174.14582825, -35.25944519 ], [ 174.15861511, -35.26477432 ], [ 174.16786194, -35.27672195 ], [ 174.17636108, -35.2726593 ], [ 174.172225950000012, -35.26618195 ], [ 174.17778015, -35.26277924 ], [ 174.19821167, -35.27352142 ], [ 174.20585632, -35.28374863 ], [ 174.211441040000011, -35.28100967 ], [ 174.20454407, -35.27279282 ], [ 174.21694946, -35.27027893 ], [ 174.20832825, -35.26166534 ], [ 174.20443726, -35.25138855 ], [ 174.22389221, -35.2452774 ], [ 174.25416565, -35.26055527 ], [ 174.26055908, -35.25749969 ], [ 174.24583435, -35.24611282 ], [ 174.25027466, -35.23527908 ], [ 174.25958252, -35.23637772 ], [ 174.25639343, -35.2219429 ], [ 174.26399231, -35.21733856 ], [ 174.271240229999989, -35.22202301 ], [ 174.268890379999988, -35.23027802 ], [ 174.294418330000013, -35.21059418 ], [ 174.28942871000001, -35.20636368 ], [ 174.30438232, -35.19950485 ], [ 174.30499268, -35.19277954 ], [ 174.292495730000013, -35.1930542 ], [ 174.29333496000001, -35.18638992 ], [ 174.3125, -35.17916489 ], [ 174.32444763, -35.18305588 ], [ 174.33082581, -35.16944504 ], [ 174.33332825, -35.18027878 ], [ 174.340301509999989, -35.18749237 ], [ 174.327774049999988, -35.19833374 ], [ 174.32000732, -35.19527817 ], [ 174.31777954, -35.20277786 ], [ 174.30749512, -35.20888901 ], [ 174.321090700000013, -35.21353149 ], [ 174.30833435, -35.21583176 ], [ 174.29098511, -35.23422241 ], [ 174.31277466, -35.23638916 ], [ 174.30221558, -35.2472229 ], [ 174.29241943, -35.2510376 ], [ 174.30198669, -35.25337601 ], [ 174.30690002, -35.24697495 ], [ 174.32588196, -35.24781036 ], [ 174.32214355, -35.25508881 ], [ 174.30258179, -35.25426102 ], [ 174.29290771, -35.26451111 ], [ 174.2902832, -35.27416611 ], [ 174.30303955, -35.28742599 ], [ 174.30917358, -35.30416489 ], [ 174.320922849999988, -35.30620956 ], [ 174.32333374000001, -35.3152771 ], [ 174.33984375, -35.32549286 ], [ 174.356384279999986, -35.32305527 ], [ 174.36862183, -35.325634 ], [ 174.374786379999989, -35.31932068 ], [ 174.37306213, -35.33333206 ], [ 174.35142517, -35.33262253 ], [ 174.35147095, -35.34240723 ], [ 174.36035156, -35.34772491 ], [ 174.37683105, -35.34521866 ], [ 174.38137817, -35.36439133 ], [ 174.37110901, -35.36888885 ], [ 174.37788391, -35.37696457 ], [ 174.37042236, -35.3788147 ], [ 174.35702515, -35.37260437 ], [ 174.36073303, -35.35771561 ], [ 174.355148320000012, -35.34863663 ], [ 174.33828735, -35.35026169 ], [ 174.33662415, -35.34166718 ], [ 174.32647705, -35.3422699 ], [ 174.31639099, -35.33333206 ], [ 174.30999756, -35.33472061 ], [ 174.328887939999987, -35.35111237 ], [ 174.34194946, -35.36527634 ], [ 174.33944702, -35.37527847 ], [ 174.35333252, -35.38472366 ], [ 174.34432983, -35.38746262 ], [ 174.354721070000011, -35.39416504 ], [ 174.35305786, -35.40416718 ], [ 174.358612060000013, -35.41527939 ], [ 174.37333679, -35.41222382 ], [ 174.37583923, -35.42277908 ], [ 174.36471558, -35.42305374 ], [ 174.360839840000011, -35.43166733 ], [ 174.37110901, -35.43777847 ], [ 174.395004269999987, -35.43055725 ], [ 174.39694214, -35.44166565 ], [ 174.40805054, -35.4430542 ], [ 174.42304993, -35.43416595 ], [ 174.416519169999987, -35.42789841 ], [ 174.43305969, -35.42805481 ], [ 174.428085329999988, -35.43832779 ], [ 174.42721558, -35.45222092 ], [ 174.43611145, -35.46111298 ], [ 174.453887939999987, -35.46722412 ], [ 174.44944763, -35.4711113 ], [ 174.45555115, -35.48972321 ], [ 174.47277832, -35.48833466 ], [ 174.46972656, -35.50416565 ], [ 174.481384279999986, -35.51444626 ], [ 174.461395259999989, -35.50833511 ], [ 174.45195007, -35.51805496 ], [ 174.46611023, -35.51222229 ], [ 174.460006709999988, -35.52972412 ], [ 174.46833801, -35.53805542 ], [ 174.4750061, -35.55555725 ], [ 174.485000609999986, -35.55500031 ], [ 174.49749756, -35.56111145 ], [ 174.50238037, -35.553936 ], [ 174.51481628, -35.558815 ], [ 174.52944946, -35.57805634 ], [ 174.53778076, -35.57944489 ], [ 174.538299560000013, -35.59646606 ], [ 174.543884279999986, -35.59916687 ], [ 174.533554079999988, -35.60486984 ], [ 174.539672849999988, -35.61422348 ], [ 174.529083250000014, -35.61177444 ], [ 174.53163147, -35.62189865 ], [ 174.542221070000011, -35.61777878 ], [ 174.54304504000001, -35.63182068 ], [ 174.53388977, -35.64277649 ], [ 174.51445007, -35.6277771 ], [ 174.5055542, -35.6297226 ], [ 174.49777222, -35.63805389 ], [ 174.48554993, -35.63750076 ], [ 174.49313354, -35.64323044 ], [ 174.50250244, -35.64055634 ], [ 174.51055908, -35.6297226 ], [ 174.513885499999986, -35.63249969 ], [ 174.50193787, -35.64916611 ], [ 174.516662599999989, -35.65472412 ], [ 174.511108400000012, -35.65805435 ], [ 174.50222778, -35.67361069 ], [ 174.50805664, -35.67555618 ], [ 174.51805115, -35.70527649 ], [ 174.52452087, -35.71370316 ], [ 174.511245730000013, -35.71482086 ], [ 174.50527954, -35.72083282 ], [ 174.516662599999989, -35.72055435 ], [ 174.52082825, -35.71527863 ], [ 174.53413391, -35.71521378 ], [ 174.54269409, -35.71035767 ], [ 174.547500609999986, -35.71972275 ], [ 174.526306150000011, -35.72403336 ], [ 174.54083252, -35.73694611 ], [ 174.549728390000013, -35.73527908 ], [ 174.539688109999986, -35.72437286 ], [ 174.550460820000012, -35.71693039 ], [ 174.56277466, -35.7136116 ], [ 174.56944275, -35.71805573 ], [ 174.55387878, -35.73042679 ], [ 174.563552859999987, -35.74528885 ], [ 174.551391599999988, -35.74666595 ], [ 174.56111145, -35.76222229 ], [ 174.55499268, -35.76416779 ], [ 174.55778503, -35.77694321 ], [ 174.548889159999987, -35.78694534 ], [ 174.55749512, -35.81277847 ], [ 174.56916809, -35.83194351 ], [ 174.579162599999989, -35.83833313 ], [ 174.59083557, -35.8516655 ], [ 174.59175110000001, -35.85768127 ], [ 174.57818604, -35.85990524 ], [ 174.56381226, -35.85635757 ], [ 174.555877689999988, -35.86088562 ], [ 174.533569340000014, -35.85498047 ], [ 174.53036499000001, -35.86196136 ], [ 174.52444458, -35.85083389 ], [ 174.536605830000013, -35.84363556 ], [ 174.525588989999989, -35.82513428 ], [ 174.502441409999989, -35.83055878 ], [ 174.49249268, -35.82027817 ], [ 174.50389099, -35.81388855 ], [ 174.497009279999986, -35.79680634 ], [ 174.48666382, -35.7863884 ], [ 174.48083496000001, -35.79360962 ], [ 174.457229610000013, -35.79249954 ], [ 174.46722412, -35.79027939 ], [ 174.46028137, -35.78472137 ], [ 174.479995730000013, -35.77750015 ], [ 174.46916199, -35.77000046 ], [ 174.452499390000014, -35.77222061 ], [ 174.44778442, -35.77972412 ], [ 174.43167114, -35.77972412 ], [ 174.43251038, -35.78504562 ], [ 174.446105960000011, -35.79499817 ], [ 174.43159485000001, -35.7943573 ], [ 174.41416931, -35.77999878 ], [ 174.40444946, -35.7788887 ], [ 174.385955810000013, -35.76091385 ], [ 174.37690735000001, -35.7624054 ], [ 174.368240359999987, -35.77354431 ], [ 174.356521609999987, -35.77346039 ], [ 174.356109620000012, -35.75583267 ], [ 174.34638977, -35.73611069 ], [ 174.35069275, -35.75804901 ], [ 174.34764099, -35.76402664 ], [ 174.33694458, -35.75694275 ], [ 174.329162599999989, -35.76833344 ], [ 174.33166504, -35.78694534 ], [ 174.34056091, -35.78972244 ], [ 174.33305359, -35.79861069 ], [ 174.34194946, -35.80722046 ], [ 174.3347168, -35.81361008 ], [ 174.34333801, -35.81972122 ], [ 174.34500122, -35.8330574 ], [ 174.35803223, -35.81832886 ], [ 174.35945129000001, -35.80472183 ], [ 174.354995730000013, -35.80277634 ], [ 174.36195374, -35.78970718 ], [ 174.36972046, -35.78861237 ], [ 174.37666321, -35.79611206 ], [ 174.36997986, -35.81404114 ], [ 174.390274049999988, -35.81666565 ], [ 174.39880371000001, -35.81467438 ], [ 174.41383362, -35.82222366 ], [ 174.43583679, -35.82888794 ], [ 174.44389343, -35.82694626 ], [ 174.45443726, -35.8180542 ], [ 174.47361755, -35.83611298 ], [ 174.49749756, -35.83499908 ], [ 174.50305176, -35.83722305 ], [ 174.49833679, -35.84527588 ], [ 174.47833252, -35.86194611 ], [ 174.46864319, -35.88000488 ], [ 174.46221924, -35.9058342 ], [ 174.46138, -35.92359161 ], [ 174.46444702, -35.94916534 ], [ 174.47166443, -35.97055435 ], [ 174.481109620000012, -35.99027634 ], [ 174.482223510000011, -36.0 ], [ 174.49028015, -36.01305389 ], [ 174.48432922, -35.99250031 ], [ 174.49610901, -36.01499939 ], [ 174.50811768, -36.02964401 ], [ 174.51756287, -36.03131485 ], [ 174.54167175, -36.04888916 ], [ 174.55555725, -36.04499817 ], [ 174.5696106, -36.04829407 ], [ 174.57244873, -36.04320908 ], [ 174.58416748, -36.0419426 ], [ 174.59057617, -36.0472641 ], [ 174.59361267, -36.07333374 ], [ 174.59861755, -36.08059692 ], [ 174.589523320000012, -36.08419418 ], [ 174.59117126000001, -36.09815216 ], [ 174.59666443, -36.10847473 ], [ 174.590332030000013, -36.11852646 ], [ 174.58221436, -36.11045074 ], [ 174.57463074, -36.11971283 ], [ 174.5821228, -36.1255188 ], [ 174.59524536, -36.12026596 ], [ 174.60151672, -36.11002731 ], [ 174.60305786, -36.09488678 ], [ 174.619506840000014, -36.12182999 ], [ 174.61094666, -36.12446976 ], [ 174.61122131, -36.1352272 ], [ 174.59849548, -36.13909531 ], [ 174.60180664, -36.1435051 ], [ 174.58268738000001, -36.14934158 ], [ 174.58930969, -36.15815735 ], [ 174.58314514, -36.17086792 ], [ 174.573440549999987, -36.16841507 ], [ 174.56723022, -36.1811409 ], [ 174.557525629999986, -36.17871094 ], [ 174.531875609999986, -36.18663406 ], [ 174.53198242, -36.19737625 ], [ 174.522399900000011, -36.20570755 ], [ 174.52890015, -36.21446228 ], [ 174.509567260000011, -36.22036743 ], [ 174.51280212, -36.22473526 ], [ 174.49987793, -36.22865677 ], [ 174.490173340000013, -36.22624207 ], [ 174.48692322, -36.23255539 ], [ 174.47721863000001, -36.23013306 ], [ 174.4694519, -36.25694275 ], [ 174.46388245, -36.26027679 ], [ 174.45555115, -36.25138855 ], [ 174.42416382, -36.27249908 ], [ 174.41471863000001, -36.27361298 ], [ 174.39489746000001, -36.2888298 ], [ 174.383605960000011, -36.28610992 ], [ 174.38528442, -36.27599335 ], [ 174.374359129999988, -36.27593994 ], [ 174.354003909999989, -36.29801178 ], [ 174.35668945, -36.30938339 ], [ 174.33985901, -36.31718445 ], [ 174.32333374000001, -36.30833435 ], [ 174.31138611, -36.31305695 ], [ 174.30166626, -36.29305649 ], [ 174.28971863000001, -36.28944397 ], [ 174.28582764, -36.29611206 ], [ 174.27471924, -36.28472137 ], [ 174.270324710000011, -36.26142502 ], [ 174.291107180000012, -36.24750137 ], [ 174.3097229, -36.24361038 ], [ 174.32194519, -36.25833511 ], [ 174.32325745, -36.26545334 ], [ 174.33287048, -36.26286316 ], [ 174.34693909, -36.26499939 ], [ 174.35083008, -36.27576447 ], [ 174.3589325, -36.27176666 ], [ 174.34611511, -36.25888824 ], [ 174.333618159999986, -36.25777817 ], [ 174.328338620000011, -36.24472046 ], [ 174.32305908, -36.24888992 ], [ 174.32087708, -36.23804474 ], [ 174.328887939999987, -36.22694397 ], [ 174.33721924, -36.22638702 ], [ 174.33999634, -36.21944427 ], [ 174.3527832, -36.21166611 ], [ 174.36332703, -36.21166611 ], [ 174.37527466, -36.19472122 ], [ 174.375, -36.17944336 ], [ 174.396133420000012, -36.17234802 ], [ 174.3911438, -36.17034912 ], [ 174.37333679, -36.17777634 ], [ 174.37167358, -36.16944504 ], [ 174.391387939999987, -36.15750122 ], [ 174.386108400000012, -36.13472366 ], [ 174.3833313, -36.13944626 ], [ 174.38528442, -36.1566658 ], [ 174.371887210000011, -36.1647644 ], [ 174.36305237, -36.20222092 ], [ 174.358184810000012, -36.20659256 ], [ 174.335144039999989, -36.21090698 ], [ 174.32305908, -36.21611023 ], [ 174.31555176, -36.22611237 ], [ 174.30917358, -36.21583176 ], [ 174.31555176, -36.20999908 ], [ 174.31338501, -36.20365143 ], [ 174.296661379999989, -36.21222305 ], [ 174.29199219, -36.20508575 ], [ 174.265274049999988, -36.18444443 ], [ 174.277771, -36.18000031 ], [ 174.28916931, -36.18138885 ], [ 174.2819519, -36.17388916 ], [ 174.26896667, -36.17777252 ], [ 174.26167297, -36.17305374 ], [ 174.25500488, -36.18416595 ], [ 174.235000609999986, -36.17083359 ], [ 174.23713684, -36.15981293 ], [ 174.232772829999988, -36.1558342 ], [ 174.237777709999989, -36.13861084 ], [ 174.25138855, -36.125 ], [ 174.241561890000014, -36.12621307 ], [ 174.23101807, -36.13400269 ], [ 174.22561646, -36.15962219 ], [ 174.21638489, -36.14777756 ], [ 174.22250366, -36.13444519 ], [ 174.22027588, -36.1269455 ], [ 174.20582581, -36.13805389 ], [ 174.19944763, -36.12833405 ], [ 174.18916321, -36.14277649 ], [ 174.199722290000011, -36.14694595 ], [ 174.1875, -36.1538887 ], [ 174.19555664, -36.16722107 ], [ 174.20942688, -36.15839386 ], [ 174.228881840000014, -36.17055511 ], [ 174.22639465, -36.17694473 ], [ 174.236114500000014, -36.1819458 ], [ 174.230270389999987, -36.18500137 ], [ 174.21499634, -36.17555618 ], [ 174.206390379999988, -36.17722321 ], [ 174.203613280000013, -36.18722153 ], [ 174.21694946, -36.18305588 ], [ 174.22332764, -36.18999863 ], [ 174.23916626, -36.18527603 ], [ 174.235839840000011, -36.19250107 ], [ 174.22377014, -36.20111847 ], [ 174.22848511, -36.20453644 ], [ 174.235275269999988, -36.19777679 ], [ 174.24555969, -36.19610977 ], [ 174.25222778, -36.20083237 ], [ 174.258605960000011, -36.1930542 ], [ 174.26333618000001, -36.19583511 ], [ 174.26362610000001, -36.2080574 ], [ 174.27355957, -36.21715927 ], [ 174.28666687, -36.21472168 ], [ 174.291915890000013, -36.23818588 ], [ 174.27360535, -36.23444366 ], [ 174.25917053, -36.2472229 ], [ 174.24861145, -36.25 ], [ 174.25193787, -36.25749969 ], [ 174.23957825, -36.26346207 ], [ 174.21499634, -36.25944519 ], [ 174.203338620000011, -36.2472229 ], [ 174.205276489999989, -36.24111176 ], [ 174.198608400000012, -36.23305511 ], [ 174.18333435, -36.23611069 ], [ 174.174728390000013, -36.22222137 ], [ 174.16555786, -36.22166824 ], [ 174.167495730000013, -36.21583176 ], [ 174.15415955, -36.21472168 ], [ 174.15383911, -36.20794296 ], [ 174.13424683, -36.19049072 ], [ 174.13021851, -36.17973328 ], [ 174.119628909999989, -36.16984177 ], [ 174.09899902, -36.16504669 ], [ 174.06741333, -36.17369843 ], [ 174.04431152, -36.1668396 ], [ 174.02513123, -36.14141846 ], [ 174.0149231, -36.13389587 ], [ 173.986114500000014, -36.12160492 ], [ 173.981536870000014, -36.12750244 ], [ 173.99221802, -36.13750076 ], [ 174.01055908, -36.14777756 ], [ 174.03251648, -36.18106079 ], [ 174.040786739999987, -36.18832397 ], [ 174.06056213, -36.19444275 ], [ 174.07055664, -36.20194626 ], [ 174.075256349999989, -36.21442413 ], [ 174.08666992, -36.22722244 ], [ 174.08055115, -36.23333359 ], [ 174.09603882, -36.23666382 ], [ 174.09671021, -36.24448013 ], [ 174.108581539999989, -36.25256348 ], [ 174.103881840000014, -36.25638962 ], [ 174.1315155, -36.26006317 ], [ 174.13819885, -36.26828766 ], [ 174.14416504, -36.26750183 ], [ 174.1569519, -36.27722168 ], [ 174.158447270000011, -36.28873062 ], [ 174.14860535, -36.29583359 ], [ 174.13139343, -36.30138779 ], [ 174.14651489, -36.29950714 ], [ 174.159393310000013, -36.30213165 ], [ 174.161056519999988, -36.31148529 ], [ 174.16937256, -36.31459808 ], [ 174.18093872, -36.33603287 ], [ 174.17785645, -36.35230637 ], [ 174.18222046, -36.36416626 ], [ 174.16667175, -36.37861252 ], [ 174.14416504, -36.39027786 ], [ 174.12889099, -36.39500046 ], [ 174.083892819999988, -36.39500046 ], [ 174.05528259, -36.40027618 ], [ 174.045272829999988, -36.3955574 ], [ 174.03694153, -36.38639069 ], [ 174.01805115, -36.35583496 ], [ 174.011383059999986, -36.33611298 ], [ 174.01445007, -36.32888794 ], [ 174.01028442, -36.29694366 ], [ 174.000473019999987, -36.27472305 ], [ 173.96861267, -36.22166824 ], [ 173.9347229, -36.17527771 ], [ 173.90805054, -36.14416504 ], [ 173.90611267, -36.13972092 ], [ 173.8347168, -36.05611038 ], [ 173.74555969, -35.95527649 ], [ 173.681579590000013, -35.88534546 ], [ 173.572479249999986, -35.76915359 ], [ 173.55444336, -35.75916672 ], [ 173.54141235, -35.73614502 ], [ 173.50234985, -35.69507599 ], [ 173.49694824, -35.68583298 ], [ 173.44503784, -35.64118958 ], [ 173.42384338, -35.60544586 ], [ 173.389724730000012, -35.57110977 ], [ 173.375, -35.56361008 ], [ 173.362777709999989, -35.54111099 ], [ 173.37028503, -35.53610992 ], [ 173.38430786, -35.53603745 ], [ 173.3888092, -35.53058243 ], [ 173.38739014, -35.51979446 ], [ 173.39146423, -35.50439072 ], [ 173.4012146, -35.50096512 ], [ 173.41125488, -35.48538589 ], [ 173.41055298, -35.47833252 ], [ 173.40208435, -35.47212601 ], [ 173.41656494, -35.46985626 ], [ 173.4147644, -35.45197296 ], [ 173.4256134, -35.44628525 ], [ 173.42648315, -35.42442703 ], [ 173.43196106, -35.41840744 ], [ 173.43873596, -35.42889786 ], [ 173.437835690000014, -35.41352463 ], [ 173.463943480000012, -35.41012955 ], [ 173.46835327, -35.40351868 ], [ 173.48077393, -35.40723419 ], [ 173.4959259, -35.41917801 ], [ 173.501876829999986, -35.40792465 ], [ 173.50361633, -35.39250183 ], [ 173.51802063, -35.40488434 ], [ 173.51922607, -35.42153549 ], [ 173.53517151, -35.42761993 ], [ 173.539978029999986, -35.42468262 ], [ 173.52201843, -35.42005157 ], [ 173.52481079, -35.40548325 ], [ 173.53083801, -35.39888763 ], [ 173.53083801, -35.38855362 ], [ 173.53863525, -35.37901306 ], [ 173.55075073, -35.37738037 ], [ 173.55665588, -35.37218094 ], [ 173.55444336, -35.36138916 ], [ 173.565933230000013, -35.35227203 ], [ 173.58149719, -35.35823822 ], [ 173.59916687, -35.35138702 ], [ 173.604721070000011, -35.34388733 ], [ 173.60083008, -35.33944321 ], [ 173.608581539999989, -35.32141876 ], [ 173.598159790000011, -35.33176041 ], [ 173.596588129999986, -35.34086609 ], [ 173.589370730000013, -35.34582138 ], [ 173.585006709999988, -35.3413887 ], [ 173.55273438, -35.34075546 ], [ 173.55026245, -35.33364105 ], [ 173.53334045, -35.32027817 ], [ 173.53083801, -35.31277847 ], [ 173.53388977, -35.29416656 ], [ 173.52555847, -35.27416611 ], [ 173.54417419, -35.26472092 ], [ 173.52722168, -35.26889038 ], [ 173.52194214, -35.27444458 ], [ 173.52999878, -35.29388809 ], [ 173.52915955, -35.31611252 ], [ 173.54440308, -35.3325882 ], [ 173.546249390000014, -35.3599205 ], [ 173.53945923, -35.37604141 ], [ 173.53085327, -35.38486099 ], [ 173.519210820000012, -35.38486481 ], [ 173.50944519, -35.37611008 ], [ 173.49380493000001, -35.37670898 ], [ 173.484176639999987, -35.38712692 ], [ 173.481094359999986, -35.40048218 ], [ 173.4675293, -35.3937645 ], [ 173.451675419999987, -35.40248489 ], [ 173.423339840000011, -35.39888763 ], [ 173.41177368000001, -35.4003334 ], [ 173.396575930000012, -35.41226959 ], [ 173.40344238, -35.41714096 ], [ 173.40802002, -35.43113708 ], [ 173.391387939999987, -35.43083191 ], [ 173.38752747, -35.44791794 ], [ 173.37722778, -35.45750046 ], [ 173.38127136, -35.46302795 ], [ 173.37446594, -35.47351456 ], [ 173.38389587, -35.48555374 ], [ 173.370300289999989, -35.49574661 ], [ 173.37518311, -35.51545715 ], [ 173.369079590000013, -35.52280045 ], [ 173.35678101, -35.52314377 ], [ 173.3338623, -35.49864578 ], [ 173.26524353, -35.42039108 ], [ 173.22833252, -35.38722229 ], [ 173.2180481, -35.38222122 ], [ 173.2263031, -35.37779999 ], [ 173.22659302, -35.36552048 ], [ 173.23554993, -35.3544426 ], [ 173.24221802, -35.35555649 ], [ 173.24972534, -35.34472275 ], [ 173.2444458, -35.34222412 ], [ 173.23666382, -35.34972382 ], [ 173.22805786, -35.33555603 ], [ 173.22694397, -35.3469429 ], [ 173.233612060000013, -35.35305405 ], [ 173.22555542, -35.36138916 ], [ 173.222976679999988, -35.37586975 ], [ 173.215271, -35.37916565 ], [ 173.208618159999986, -35.36444473 ], [ 173.19500732, -35.34916687 ], [ 173.18833923, -35.34722137 ], [ 173.18804932, -35.33333206 ], [ 173.169723510000011, -35.32305527 ], [ 173.15527344, -35.30361176 ], [ 173.158966060000012, -35.29398346 ], [ 173.169692989999987, -35.30093384 ], [ 173.185607909999987, -35.29169464 ], [ 173.18293762, -35.28687286 ], [ 173.19548035, -35.28470993 ], [ 173.19146729, -35.2798233 ], [ 173.17950439, -35.28079605 ], [ 173.172668460000011, -35.29280472 ], [ 173.163742070000012, -35.29354477 ], [ 173.14178467, -35.27293396 ], [ 173.12361145, -35.25222397 ], [ 173.11242676, -35.248909 ], [ 173.107498170000014, -35.24000168 ], [ 173.0874939, -35.2211113 ], [ 173.05610657, -35.19524384 ], [ 173.05360413, -35.18367386 ], [ 173.06027222, -35.16777802 ], [ 173.073287959999988, -35.16342545 ], [ 173.086700439999987, -35.16670609 ], [ 173.09666443, -35.17301559 ], [ 173.106109620000012, -35.16944504 ], [ 173.12095642, -35.17923355 ], [ 173.136108400000012, -35.17666626 ], [ 173.15472412, -35.16194534 ], [ 173.168609620000012, -35.13639069 ], [ 173.17555237, -35.10694504 ], [ 173.17666626, -35.08638763 ], [ 173.171386719999987, -35.04944611 ], [ 173.16082764, -35.01889038 ], [ 173.14332581, -34.98416519 ], [ 173.12583923, -34.95527649 ], [ 173.1055603, -34.92583466 ], [ 173.05999756, -34.86861038 ], [ 173.0055542, -34.80527878 ], [ 172.99555969, -34.79499817 ], [ 172.943603520000011, -34.73472214 ], [ 172.89778137, -34.68611145 ], [ 172.887771609999987, -34.67083359 ], [ 172.87055969, -34.6511116 ], [ 172.827499390000014, -34.60805511 ], [ 172.81083679, -34.59500122 ], [ 172.796386719999987, -34.58000183 ], [ 172.765838620000011, -34.5569458 ], [ 172.732223510000011, -34.52944565 ], [ 172.72555542, -34.5261116 ], [ 172.72000122, -34.5308342 ], [ 172.706115720000014, -34.52583313 ], [ 172.701110840000013, -34.52027893 ], [ 172.702774049999988, -34.5055542 ], [ 172.68933105, -34.48989105 ], [ 172.670272829999988, -34.48722076 ], [ 172.66000366, -34.4794426 ], [ 172.642501829999986, -34.47499847 ], [ 172.66389465, -34.46805573 ], [ 172.672225950000012, -34.45888901 ], [ 172.67709351, -34.44080734 ], [ 172.673889159999987, -34.42638779 ], [ 172.67967224, -34.41974258 ], [ 172.693603520000011, -34.42944336 ], [ 172.70832825, -34.42805481 ], [ 172.7124939, -34.4355545 ], [ 172.739730830000013, -34.43588257 ], [ 172.764999390000014, -34.44250107 ], [ 172.77278137, -34.44861221 ], [ 172.79167175, -34.45360947 ], [ 172.82139587, -34.45111084 ], [ 172.8400116, -34.44260025 ], [ 172.8510437, -34.4342041 ], [ 172.858886719999987, -34.42361069 ], [ 172.85305786, -34.41555405 ], [ 172.86917114, -34.41444397 ], [ 172.884994510000013, -34.41972351 ], [ 172.899475099999989, -34.41508102 ], [ 172.91194153, -34.42111206 ], [ 172.93101501000001, -34.42070389 ], [ 172.94111633, -34.42694473 ], [ 172.967300419999987, -34.42525482 ], [ 172.982498170000014, -34.41999817 ], [ 172.98805237, -34.4038887 ], [ 173.00030518, -34.40242386 ], [ 173.00190735000001, -34.39646912 ], [ 173.01132202, -34.39270782 ], [ 173.01132202, -34.39270782 ] ] ], [ [ [ 172.03109741, -34.18310928 ], [ 172.03598022, -34.18472672 ], [ 172.03778076, -34.18999863 ], [ 172.03109741, -34.18310928 ], [ 172.03109741, -34.18310928 ] ] ], [ [ [ 172.0574646, -34.18259048 ], [ 172.05499268, -34.1819458 ], [ 172.0559082, -34.18115616 ], [ 172.0574646, -34.18259048 ], [ 172.0574646, -34.18259048 ] ] ], [ [ [ 172.03868103, -34.17899704 ], [ 172.03527832, -34.17833328 ], [ 172.038314820000011, -34.17739105 ], [ 172.03868103, -34.17899704 ], [ 172.03868103, -34.17899704 ] ] ], [ [ [ 172.05555725, -34.17555618 ], [ 172.05583191, -34.18000031 ], [ 172.05332947, -34.17638779 ], [ 172.05555725, -34.17555618 ], [ 172.05555725, -34.17555618 ] ] ], [ [ [ 172.04621887, -34.17503738 ], [ 172.05194092, -34.17750168 ], [ 172.04420471, -34.17805099 ], [ 172.04621887, -34.17503738 ], [ 172.04621887, -34.17503738 ] ] ], [ [ [ 172.072021479999989, -34.17375946 ], [ 172.077224730000012, -34.17944336 ], [ 172.06694031, -34.17750168 ], [ 172.072021479999989, -34.17375946 ], [ 172.072021479999989, -34.17375946 ] ] ], [ [ [ 172.14805603, -34.14393234 ], [ 172.15777588, -34.14444351 ], [ 172.15368652, -34.15322876 ], [ 172.14437866, -34.15542984 ], [ 172.14845276, -34.16145325 ], [ 172.140823360000013, -34.17110443 ], [ 172.12167358, -34.15777588 ], [ 172.11947632, -34.14842606 ], [ 172.13743591, -34.15225601 ], [ 172.14805603, -34.14393234 ], [ 172.14805603, -34.14393234 ] ] ], [ [ [ 172.16868591, -34.13500214 ], [ 172.16569519, -34.1329422 ], [ 172.16667175, -34.1297226 ], [ 172.16868591, -34.13500214 ], [ 172.16868591, -34.13500214 ] ] ], [ [ [ -178.825271609999987, -31.35611153 ], [ -178.82583618000001, -31.35277748 ], [ -178.823608400000012, -31.3544445 ], [ -178.825271609999987, -31.35611153 ], [ -178.825271609999987, -31.35611153 ] ] ], [ [ [ -178.55552673, -30.53827477 ], [ -178.55328369, -30.54388428 ], [ -178.56109619, -30.54052734 ], [ -178.55552673, -30.53827477 ], [ -178.55552673, -30.53827477 ] ] ], [ [ [ -178.569396970000014, -30.53387451 ], [ -178.565490720000014, -30.53637886 ], [ -178.567199710000011, -30.53967476 ], [ -178.569396970000014, -30.53387451 ], [ -178.569396970000014, -30.53387451 ] ] ], [ [ [ -178.41471863000001, -30.23277855 ], [ -178.41583252, -30.23749924 ], [ -178.4172821, -30.23499489 ], [ -178.41471863000001, -30.23277855 ], [ -178.41471863000001, -30.23277855 ] ] ], [ [ [ -178.42468262, -30.22442627 ], [ -178.41668701, -30.23217773 ], [ -178.431396479999989, -30.24305534 ], [ -178.44082642, -30.23181152 ], [ -178.43469238, -30.22576714 ], [ -178.42468262, -30.22442627 ], [ -178.42468262, -30.22442627 ] ] ], [ [ [ -177.90240479, -29.28167725 ], [ -177.904785159999989, -29.28179932 ], [ -177.90264893, -29.28068542 ], [ -177.90240479, -29.28167725 ], [ -177.90240479, -29.28167725 ] ] ], [ [ [ -177.852600099999989, -29.25439453 ], [ -177.85417175, -29.25499916 ], [ -177.85583496000001, -29.24936104 ], [ -177.852600099999989, -29.25439453 ], [ -177.852600099999989, -29.25439453 ] ] ], [ [ [ -177.85630798, -29.24436188 ], [ -177.85667419, -29.24666405 ], [ -177.858886719999987, -29.2452774 ], [ -177.85630798, -29.24436188 ], [ -177.85630798, -29.24436188 ] ] ], [ [ [ -177.875488280000013, -29.24243546 ], [ -177.878295900000012, -29.24859619 ], [ -177.88150024, -29.24874115 ], [ -177.875488280000013, -29.24243546 ], [ -177.875488280000013, -29.24243546 ] ] ], [ [ [ -177.95159912, -29.23858643 ], [ -177.928771970000014, -29.2421875 ], [ -177.923477170000012, -29.2460537 ], [ -177.89801025, -29.25189018 ], [ -177.88668823, -29.26749229 ], [ -177.88519287, -29.27752686 ], [ -177.89086914, -29.28356934 ], [ -177.89387512, -29.27778816 ], [ -177.91471863000001, -29.27944374 ], [ -177.920837400000011, -29.28583336 ], [ -177.923889159999987, -29.29919434 ], [ -177.935043330000013, -29.2953949 ], [ -177.96008301, -29.29510689 ], [ -177.942199710000011, -29.27050781 ], [ -177.94665527, -29.26171494 ], [ -177.95718384, -29.25219727 ], [ -177.9655304, -29.2519455 ], [ -177.981384279999986, -29.24139404 ], [ -177.95159912, -29.23858643 ], [ -177.95159912, -29.23858643 ] ] ], [ [ [ -177.87580872, -29.23418617 ], [ -177.87600708, -29.23277855 ], [ -177.87367249, -29.23179245 ], [ -177.87580872, -29.23418617 ], [ -177.87580872, -29.23418617 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.11", "id_1": 11, "name_1": "Otago", "hasc_1": "NZ.OT", "population2022": 246000, "areakm2": 32261.588, "density2022": 7.63 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.73716736, -49.69208145 ], [ 178.73547363, -49.69219208 ], [ 178.73580933, -49.69077682 ], [ 178.73716736, -49.69208145 ], [ 178.73716736, -49.69208145 ] ] ], [ [ [ 178.80944824, -49.6855545 ], [ 178.813552859999987, -49.68888474 ], [ 178.80815125, -49.6897583 ], [ 178.80944824, -49.6855545 ], [ 178.80944824, -49.6855545 ] ] ], [ [ [ 178.7210083, -49.67634583 ], [ 178.71759033, -49.67621231 ], [ 178.71682739, -49.67261505 ], [ 178.7210083, -49.67634583 ], [ 178.7210083, -49.67634583 ] ] ], [ [ [ 178.73666382, -49.67407227 ], [ 178.731506349999989, -49.67581558 ], [ 178.73083496000001, -49.67222214 ], [ 178.73666382, -49.67407227 ], [ 178.73666382, -49.67407227 ] ] ], [ [ [ 178.799057010000013, -49.65930939 ], [ 178.80119324, -49.66578293 ], [ 178.81280518, -49.66582108 ], [ 178.80833435, -49.68296432 ], [ 178.79922485, -49.69633102 ], [ 178.78723145, -49.69852448 ], [ 178.78330994, -49.70619965 ], [ 178.79005432, -49.71130371 ], [ 178.78288269, -49.71415329 ], [ 178.757461549999988, -49.715271 ], [ 178.755630489999987, -49.70907974 ], [ 178.737777709999989, -49.70416641 ], [ 178.73971558, -49.69138718 ], [ 178.72796631, -49.68422699 ], [ 178.74459839, -49.68049622 ], [ 178.75524902, -49.67086411 ], [ 178.77349854, -49.67189789 ], [ 178.7749939, -49.66472244 ], [ 178.78582764, -49.66444397 ], [ 178.799057010000013, -49.65930939 ], [ 178.799057010000013, -49.65930939 ] ] ], [ [ [ 178.81455994, -49.63837051 ], [ 178.82368469, -49.6416893 ], [ 178.81748962, -49.64484787 ], [ 178.81455994, -49.63837051 ], [ 178.81455994, -49.63837051 ] ] ], [ [ [ 169.61483765, -46.56000137 ], [ 169.6158905, -46.55750275 ], [ 169.61723328, -46.55949402 ], [ 169.61483765, -46.56000137 ], [ 169.61483765, -46.56000137 ] ] ], [ [ [ 169.71388245, -46.5 ], [ 169.71583557, -46.50444412 ], [ 169.71194458, -46.50444412 ], [ 169.71388245, -46.5 ], [ 169.71388245, -46.5 ] ] ], [ [ [ 169.810623170000014, -46.34658813 ], [ 169.79606628, -46.3530159 ], [ 169.796524049999988, -46.34816742 ], [ 169.810623170000014, -46.34658813 ], [ 169.810623170000014, -46.34658813 ] ] ], [ [ [ 170.21777344, -46.0605545 ], [ 170.21499634, -46.06027603 ], [ 170.22038269, -46.05494308 ], [ 170.21777344, -46.0605545 ], [ 170.21777344, -46.0605545 ] ] ], [ [ [ 170.389724730000012, -45.95305634 ], [ 170.386108400000012, -45.95444489 ], [ 170.38471985000001, -45.95249939 ], [ 170.389724730000012, -45.95305634 ], [ 170.389724730000012, -45.95305634 ] ] ], [ [ [ 170.71653748, -45.88073349 ], [ 170.71359253, -45.88027573 ], [ 170.71580505, -45.87942123 ], [ 170.71653748, -45.88073349 ], [ 170.71653748, -45.88073349 ] ] ], [ [ [ 170.543396, -45.87120819 ], [ 170.54176331, -45.87075424 ], [ 170.54495239, -45.86989975 ], [ 170.543396, -45.87120819 ], [ 170.543396, -45.87120819 ] ] ], [ [ [ 170.62944031, -45.82648849 ], [ 170.637466429999989, -45.82862854 ], [ 170.63253784, -45.83039474 ], [ 170.62944031, -45.82648849 ], [ 170.62944031, -45.82648849 ] ] ], [ [ [ 170.626602170000012, -45.82604599 ], [ 170.62431335, -45.82365036 ], [ 170.62677002, -45.82324982 ], [ 170.626602170000012, -45.82604599 ], [ 170.626602170000012, -45.82604599 ] ] ], [ [ [ 170.59527588, -45.72527695 ], [ 170.58944702, -45.73500061 ], [ 170.583618159999986, -45.72972107 ], [ 170.59527588, -45.72527695 ], [ 170.59527588, -45.72527695 ] ] ], [ [ [ 169.69769287, -43.95532608 ], [ 169.708633420000012, -43.95793533 ], [ 169.7166748, -43.96688461 ], [ 169.71780396, -43.97770691 ], [ 169.71089172, -43.97957993 ], [ 169.72698975, -43.99748993 ], [ 169.717163090000014, -44.0057106 ], [ 169.72521973, -44.01467133 ], [ 169.718292240000011, -44.01654053 ], [ 169.73440552, -44.0344696 ], [ 169.72457886, -44.04269409 ], [ 169.710723879999989, -44.0464325 ], [ 169.706695559999986, -44.04195023 ], [ 169.6968689, -44.0501709 ], [ 169.70089722, -44.05465698 ], [ 169.68817139, -44.06923294 ], [ 169.674316409999989, -44.07296753 ], [ 169.671417240000011, -44.079319 ], [ 169.679473879999989, -44.0882988 ], [ 169.66964722, -44.09651947 ], [ 169.655776980000013, -44.10025024 ], [ 169.64996338, -44.11296463 ], [ 169.65803528, -44.12195206 ], [ 169.63317871000001, -44.12305832 ], [ 169.63835144, -44.13841248 ], [ 169.62850952, -44.14664841 ], [ 169.61462402, -44.15038681 ], [ 169.622695920000012, -44.15938568 ], [ 169.60186768, -44.1649971 ], [ 169.59896851, -44.17136765 ], [ 169.58506775, -44.17510986 ], [ 169.5861969, -44.18598938 ], [ 169.57633972, -44.19424057 ], [ 169.5803833, -44.19874191 ], [ 169.559524540000012, -44.20436096 ], [ 169.55661011, -44.21074295 ], [ 169.564697270000011, -44.21975708 ], [ 169.56178284, -44.22614288 ], [ 169.572769169999987, -44.22877502 ], [ 169.597015379999988, -44.25582504 ], [ 169.598159790000011, -44.26671982 ], [ 169.5894165, -44.28589249 ], [ 169.59458923, -44.30130386 ], [ 169.587646479999989, -44.30318451 ], [ 169.59573364, -44.31221008 ], [ 169.581817629999989, -44.31597519 ], [ 169.58990479, -44.32500076 ], [ 169.586990359999987, -44.33139801 ], [ 169.599121090000011, -44.34493637 ], [ 169.58229065, -44.35510635 ], [ 169.59039307, -44.36413193 ], [ 169.570632929999988, -44.38070679 ], [ 169.58682251, -44.39876556 ], [ 169.583908079999986, -44.40517044 ], [ 169.569976809999986, -44.40894318 ], [ 169.574020389999987, -44.41345978 ], [ 169.56413269, -44.42175293 ], [ 169.57627869, -44.43530655 ], [ 169.55943298, -44.44548798 ], [ 169.57157898, -44.4590416 ], [ 169.58955383, -44.45977783 ], [ 169.59361267, -44.46429825 ], [ 169.61450195, -44.45862579 ], [ 169.61856079, -44.4631424 ], [ 169.632476809999986, -44.45935822 ], [ 169.654495239999989, -44.46460342 ], [ 169.67070007, -44.4826622 ], [ 169.663726809999986, -44.48455429 ], [ 169.66487122, -44.49547958 ], [ 169.6509552, -44.49926758 ], [ 169.67120361, -44.52185059 ], [ 169.66423035, -44.52374649 ], [ 169.676391599999988, -44.5372963 ], [ 169.663604740000011, -44.55201721 ], [ 169.667648320000012, -44.55653381 ], [ 169.65777588, -44.56484604 ], [ 169.65890503, -44.57577896 ], [ 169.66700745, -44.58481598 ], [ 169.65713501, -44.5931282 ], [ 169.66815186, -44.5957489 ], [ 169.68208313, -44.59195328 ], [ 169.70817566, -44.60170746 ], [ 169.72615051, -44.60242462 ], [ 169.737792969999987, -44.57675934 ], [ 169.733734129999988, -44.57224274 ], [ 169.74765015, -44.5684433 ], [ 169.75056458, -44.56202698 ], [ 169.75866699, -44.57105637 ], [ 169.751708979999989, -44.57295609 ], [ 169.76791382, -44.59101486 ], [ 169.765014650000012, -44.59743118 ], [ 169.77716064, -44.61097717 ], [ 169.76844788, -44.63023376 ], [ 169.780609129999988, -44.64378357 ], [ 169.802642819999988, -44.64900589 ], [ 169.821762080000013, -44.66064453 ], [ 169.8547821, -44.66846848 ], [ 169.85768127, -44.66204834 ], [ 169.909225459999988, -44.64226532 ], [ 169.913284299999987, -44.64677811 ], [ 169.960159299999987, -44.65076065 ], [ 169.98394775, -44.70612335 ], [ 169.99151611, -44.74345016 ], [ 169.99963379, -44.75247574 ], [ 169.9979248, -44.76984406 ], [ 170.01010132, -44.78338623 ], [ 170.01651001, -44.80979156 ], [ 170.01074219, -44.82265091 ], [ 170.059509279999986, -44.87683487 ], [ 170.081527709999989, -44.88202667 ], [ 170.0786438, -44.88846207 ], [ 170.09896851, -44.91103745 ], [ 170.0821991, -44.92131805 ], [ 170.10423279, -44.92650604 ], [ 170.10948181, -44.94197845 ], [ 170.116424560000013, -44.94005585 ], [ 170.13150024, -44.94716644 ], [ 170.14131165, -44.93880844 ], [ 170.14538574, -44.94332504 ], [ 170.159255980000012, -44.93947601 ], [ 170.16333008, -44.94399261 ], [ 170.181274409999986, -44.944664 ], [ 170.222854610000013, -44.93312073 ], [ 170.2338562, -44.93571091 ], [ 170.25462341, -44.92993546 ], [ 170.26727295, -44.91513443 ], [ 170.27539063, -44.92416 ], [ 170.316909790000011, -44.91260529 ], [ 170.33358765, -44.90231323 ], [ 170.36244202, -44.90555573 ], [ 170.3677063, -44.92102051 ], [ 170.36201477, -44.93390274 ], [ 170.372985840000013, -44.93648911 ], [ 170.38516235, -44.95003128 ], [ 170.419692989999987, -44.94038773 ], [ 170.42254639, -44.93394089 ], [ 170.43756104, -44.94103622 ], [ 170.44041443, -44.9345932 ], [ 170.46112061, -44.92879486 ], [ 170.45706177, -44.92428207 ], [ 170.51226807, -44.9087944 ], [ 170.52485657, -44.89395523 ], [ 170.53866577, -44.89007568 ], [ 170.55288696, -44.85782623 ], [ 170.551681519999988, -44.84687042 ], [ 170.561431879999986, -44.83847427 ], [ 170.57522583, -44.83458328 ], [ 170.59068298, -44.8132782 ], [ 170.63447571, -44.82348633 ], [ 170.63851929, -44.82799149 ], [ 170.65635681, -44.82858276 ], [ 170.67825317, -44.83367538 ], [ 170.68229675, -44.83817673 ], [ 170.700134279999986, -44.83876038 ], [ 170.704177859999987, -44.84326553 ], [ 170.7479248, -44.85342026 ], [ 170.76695251000001, -44.86496353 ], [ 170.78477478, -44.86552811 ], [ 170.7928772, -44.87453461 ], [ 170.8216095, -44.87761688 ], [ 170.85437012, -44.88518524 ], [ 170.861251829999986, -44.8832016 ], [ 170.86245728, -44.89418411 ], [ 170.87620544, -44.89021301 ], [ 170.88024902, -44.89471054 ], [ 170.89398193, -44.890728 ], [ 170.90489197, -44.89323044 ], [ 170.91296387, -44.90221786 ], [ 170.941619870000011, -44.90519333 ], [ 170.963394169999987, -44.91016388 ], [ 170.97711182, -44.90616608 ], [ 170.98518372, -44.91516876 ], [ 170.99203491, -44.9131813 ], [ 171.00010681, -44.92219925 ], [ 171.02067566, -44.91627121 ], [ 171.04649353, -44.92590714 ], [ 171.06022644, -44.92198563 ], [ 171.07115173, -44.92456055 ], [ 171.07925415, -44.93362427 ], [ 171.09988403, -44.92776871 ], [ 171.11772156, -44.92840958 ], [ 171.125915529999986, -44.9374733 ], [ 171.13700867, -44.94003296 ], [ 171.14836121, -44.93682098 ], [ 171.12530518, -44.9719162 ], [ 171.110168460000011, -44.99204636 ], [ 171.08778381, -45.01583481 ], [ 171.056396479999989, -45.04138947 ], [ 171.017486569999988, -45.06694794 ], [ 170.98805237, -45.08472061 ], [ 170.976104740000011, -45.09666824 ], [ 170.97250366, -45.10694504 ], [ 170.98306274, -45.11222076 ], [ 170.980270389999987, -45.12250137 ], [ 170.97389221, -45.1269455 ], [ 170.96333313, -45.12638855 ], [ 170.93943787, -45.14055634 ], [ 170.91000366, -45.16722107 ], [ 170.89555359, -45.19527817 ], [ 170.88471985000001, -45.21055603 ], [ 170.889160159999989, -45.21611023 ], [ 170.87277222, -45.22777939 ], [ 170.86305237, -45.24111176 ], [ 170.86416626, -45.25666809 ], [ 170.858886719999987, -45.26305389 ], [ 170.86193848, -45.26889038 ], [ 170.84277344, -45.28694534 ], [ 170.835006709999988, -45.29888916 ], [ 170.824996950000013, -45.32444382 ], [ 170.824996950000013, -45.33972168 ], [ 170.83082581, -45.35416794 ], [ 170.83999634, -45.36083221 ], [ 170.86416626, -45.35666656 ], [ 170.86444092, -45.37749863 ], [ 170.87055969, -45.38555527 ], [ 170.8694458, -45.39666748 ], [ 170.85694885, -45.39027786 ], [ 170.83305359, -45.4058342 ], [ 170.81971741000001, -45.42277908 ], [ 170.80944824, -45.44861221 ], [ 170.80944824, -45.45611191 ], [ 170.82943726, -45.46694565 ], [ 170.832778929999989, -45.47277832 ], [ 170.81916809, -45.47972107 ], [ 170.81111145, -45.48944473 ], [ 170.78166199, -45.51194382 ], [ 170.77722168, -45.52027893 ], [ 170.766387939999987, -45.52750015 ], [ 170.766113280000013, -45.53250122 ], [ 170.7555542, -45.5344429 ], [ 170.74472046, -45.55222321 ], [ 170.72694397, -45.56750107 ], [ 170.72805786, -45.55583191 ], [ 170.71398926, -45.54794312 ], [ 170.72332764, -45.55805588 ], [ 170.72444153, -45.5680542 ], [ 170.730270389999987, -45.57277679 ], [ 170.72917175, -45.58972168 ], [ 170.70555115, -45.61305618 ], [ 170.69389343, -45.62055588 ], [ 170.68695068, -45.61027908 ], [ 170.671661379999989, -45.61555481 ], [ 170.66000366, -45.62888718 ], [ 170.66055298, -45.63861084 ], [ 170.64805603, -45.62111282 ], [ 170.66055298, -45.64333344 ], [ 170.65110779, -45.66249847 ], [ 170.65499878, -45.66638947 ], [ 170.62998962, -45.68664932 ], [ 170.61471558, -45.69138718 ], [ 170.59916687, -45.71222305 ], [ 170.59944153, -45.73055649 ], [ 170.59161377, -45.71369553 ], [ 170.58082581, -45.71472168 ], [ 170.57028198, -45.72527695 ], [ 170.57028198, -45.7452774 ], [ 170.59555054, -45.74027634 ], [ 170.59777832, -45.73305511 ], [ 170.608886719999987, -45.73222351 ], [ 170.62611389, -45.74333191 ], [ 170.62083435, -45.75027847 ], [ 170.62611389, -45.76250076 ], [ 170.63221741000001, -45.74944305 ], [ 170.62722778, -45.74111176 ], [ 170.639160159999989, -45.73833466 ], [ 170.65527344, -45.75583267 ], [ 170.67189026, -45.76264954 ], [ 170.67582703, -45.75722122 ], [ 170.68916321, -45.76055527 ], [ 170.6958313, -45.75749969 ], [ 170.69651794, -45.76660156 ], [ 170.71083069, -45.77583313 ], [ 170.700271609999987, -45.78610992 ], [ 170.672500609999986, -45.78583145 ], [ 170.64833069, -45.79277802 ], [ 170.64555359, -45.79777908 ], [ 170.62693787, -45.79833221 ], [ 170.6305542, -45.81666565 ], [ 170.61749268, -45.82805634 ], [ 170.61332703, -45.81944275 ], [ 170.59388733, -45.82805634 ], [ 170.574996950000013, -45.85555649 ], [ 170.55999756, -45.86583328 ], [ 170.519729610000013, -45.87472153 ], [ 170.50721741000001, -45.88639069 ], [ 170.51306152, -45.89250183 ], [ 170.520278929999989, -45.89027786 ], [ 170.52915955, -45.88027954 ], [ 170.57278442, -45.87916565 ], [ 170.59638977, -45.86888885 ], [ 170.59832764, -45.85388947 ], [ 170.60333252, -45.84527588 ], [ 170.62306213, -45.84749985 ], [ 170.645278929999989, -45.83777618 ], [ 170.65167236, -45.83777618 ], [ 170.640274049999988, -45.82860947 ], [ 170.643890379999988, -45.82361221 ], [ 170.65916443, -45.83777618 ], [ 170.672775269999988, -45.83166504 ], [ 170.66833496000001, -45.81611252 ], [ 170.68444824, -45.8069458 ], [ 170.698883059999986, -45.80416489 ], [ 170.726104740000011, -45.79222107 ], [ 170.72277832, -45.78388977 ], [ 170.728866579999988, -45.77288818 ], [ 170.74278259, -45.77972412 ], [ 170.742523190000014, -45.79977036 ], [ 170.75138855, -45.80555725 ], [ 170.74610901, -45.81611252 ], [ 170.73554993, -45.81638718 ], [ 170.729721070000011, -45.83083344 ], [ 170.7305603, -45.84388733 ], [ 170.70832825, -45.84222412 ], [ 170.69508362, -45.83771133 ], [ 170.681396479999989, -45.8461113 ], [ 170.693603520000011, -45.85472107 ], [ 170.710006709999988, -45.84833145 ], [ 170.74916077, -45.84583282 ], [ 170.74360657, -45.84944534 ], [ 170.74972534, -45.85555649 ], [ 170.74206543, -45.85708237 ], [ 170.7444458, -45.86583328 ], [ 170.75111389, -45.86750031 ], [ 170.740478520000011, -45.87878418 ], [ 170.72944641, -45.88222122 ], [ 170.72332764, -45.8771286 ], [ 170.700271609999987, -45.875 ], [ 170.68278503, -45.88111115 ], [ 170.675277709999989, -45.87277603 ], [ 170.6875, -45.86750031 ], [ 170.68249512, -45.85722351 ], [ 170.66087341, -45.8515358 ], [ 170.658432010000013, -45.86567688 ], [ 170.668884279999986, -45.86722183 ], [ 170.668609620000012, -45.8730545 ], [ 170.68583679, -45.89500046 ], [ 170.66305542, -45.90416718 ], [ 170.65919495, -45.89971924 ], [ 170.639999390000014, -45.89583206 ], [ 170.63444519, -45.90250015 ], [ 170.6240387, -45.89769745 ], [ 170.60464478, -45.89758301 ], [ 170.59257507, -45.90309906 ], [ 170.59274292, -45.92103577 ], [ 170.58325195, -45.92132187 ], [ 170.58398438, -45.90312958 ], [ 170.56700134, -45.91026306 ], [ 170.53868103, -45.90649414 ], [ 170.49221802, -45.9113884 ], [ 170.48666382, -45.91777802 ], [ 170.443603520000011, -45.92360306 ], [ 170.43623352, -45.9309845 ], [ 170.42507935, -45.92814636 ], [ 170.40415955, -45.92944336 ], [ 170.347045900000012, -45.94013214 ], [ 170.33776855, -45.9487381 ], [ 170.32800293, -45.95012283 ], [ 170.29312134, -45.96424484 ], [ 170.266113280000013, -45.98944473 ], [ 170.258605960000011, -45.9991684 ], [ 170.24777222, -46.0047226 ], [ 170.233337400000011, -46.0233345 ], [ 170.21278381, -46.04527664 ], [ 170.21153259, -46.05138779 ], [ 170.20304871, -46.05222321 ], [ 170.19825745, -46.06166077 ], [ 170.202499390000014, -46.07138824 ], [ 170.202224730000012, -46.09083176 ], [ 170.19500732, -46.11166763 ], [ 170.186706539999989, -46.11727524 ], [ 170.18774414, -46.13019943 ], [ 170.17971802, -46.14527893 ], [ 170.171386719999987, -46.15361023 ], [ 170.1555481, -46.16194534 ], [ 170.128417969999987, -46.1836853 ], [ 170.11555481, -46.19083405 ], [ 170.104675289999989, -46.19182205 ], [ 170.05180359, -46.21603394 ], [ 170.044998170000014, -46.21722412 ], [ 170.048614500000014, -46.20416641 ], [ 170.044723510000011, -46.20416641 ], [ 170.04727173, -46.22258377 ], [ 170.010955810000013, -46.2376442 ], [ 170.00138855, -46.24333191 ], [ 170.0015564, -46.25128555 ], [ 169.983322140000013, -46.26091003 ], [ 169.973114009999989, -46.2728157 ], [ 169.960586549999988, -46.27483368 ], [ 169.93315125, -46.28555679 ], [ 169.924743650000011, -46.29832077 ], [ 169.91148376000001, -46.30335999 ], [ 169.892501829999986, -46.31544113 ], [ 169.885269169999987, -46.31591797 ], [ 169.84416199, -46.32888794 ], [ 169.8374939, -46.32527924 ], [ 169.83335876000001, -46.33216476 ], [ 169.81222534, -46.3441658 ], [ 169.80006409, -46.32992935 ], [ 169.80592346, -46.34513855 ], [ 169.79684448, -46.34633636 ], [ 169.79559326, -46.35571671 ], [ 169.784545900000012, -46.3662262 ], [ 169.78083801, -46.39777756 ], [ 169.7983551, -46.41050339 ], [ 169.79414368, -46.42949295 ], [ 169.79849243000001, -46.43987274 ], [ 169.82000732, -46.44889069 ], [ 169.79954529, -46.44690323 ], [ 169.797775269999988, -46.45222092 ], [ 169.779220579999986, -46.45514297 ], [ 169.78198242, -46.46503067 ], [ 169.77722168, -46.46888733 ], [ 169.7583313, -46.46722412 ], [ 169.7537384, -46.4739151 ], [ 169.76048279, -46.47736359 ], [ 169.75384521, -46.48197174 ], [ 169.74136353, -46.47589874 ], [ 169.72242737, -46.47915268 ], [ 169.71742249, -46.47443771 ], [ 169.69644165, -46.4684639 ], [ 169.687011719999987, -46.47834015 ], [ 169.67977905, -46.47177887 ], [ 169.65496826, -46.46728897 ], [ 169.64057922, -46.46897125 ], [ 169.63336182, -46.47690964 ], [ 169.61528015, -46.47972107 ], [ 169.62249756, -46.48888779 ], [ 169.629531859999986, -46.49021912 ], [ 169.66429138, -46.47124863 ], [ 169.67805481, -46.47527695 ], [ 169.68360901, -46.48380661 ], [ 169.69500732, -46.48527908 ], [ 169.703903200000013, -46.47829819 ], [ 169.70707703, -46.48268127 ], [ 169.72111511, -46.48583221 ], [ 169.72055054, -46.49139023 ], [ 169.70916748, -46.49388885 ], [ 169.70898438, -46.50647736 ], [ 169.69395447, -46.51006317 ], [ 169.69903564, -46.51821899 ], [ 169.66555786, -46.52972412 ], [ 169.64805603, -46.54000092 ], [ 169.62934875, -46.53684235 ], [ 169.61166382, -46.5419426 ], [ 169.617980960000011, -46.54808044 ], [ 169.594818120000014, -46.567173 ], [ 169.58876038, -46.56586075 ], [ 169.58305359, -46.57916641 ], [ 169.577499390000014, -46.57583237 ], [ 169.57606506, -46.5637207 ], [ 169.56808472, -46.56587601 ], [ 169.55220032, -46.558918 ], [ 169.542770389999987, -46.56555557 ], [ 169.520980830000013, -46.55563354 ], [ 169.49884033, -46.55647659 ], [ 169.47753906, -46.56046677 ], [ 169.47946167, -46.56856155 ], [ 169.46485901, -46.5839653 ], [ 169.463104249999986, -46.57852936 ], [ 169.452621459999989, -46.57714081 ], [ 169.43360901, -46.59000015 ], [ 169.426101679999988, -46.60358429 ], [ 169.43917847, -46.59951019 ], [ 169.4450531, -46.60236359 ], [ 169.43565369, -46.6139183 ], [ 169.42071533, -46.60342789 ], [ 169.40415955, -46.61333466 ], [ 169.39196777, -46.60788727 ], [ 169.37652588, -46.60811234 ], [ 169.35536194, -46.61957169 ], [ 169.36592102, -46.63126755 ], [ 169.362930299999988, -46.63694763 ], [ 169.35140991, -46.63853836 ], [ 169.33833313, -46.63249969 ], [ 169.33230591, -46.63440323 ], [ 169.315475459999988, -46.62776566 ], [ 169.31222534, -46.63555527 ], [ 169.30583191, -46.62552261 ], [ 169.28117371, -46.62169647 ], [ 169.26255798, -46.62746429 ], [ 169.257308959999989, -46.63794327 ], [ 169.24859619, -46.64210892 ], [ 169.240020750000014, -46.63646698 ], [ 169.23854065, -46.64489365 ], [ 169.224121090000011, -46.64871979 ], [ 169.220932010000013, -46.65710068 ], [ 169.199996950000013, -46.66222382 ], [ 169.190612789999989, -46.65470505 ], [ 169.198181150000011, -46.61721802 ], [ 169.21542358, -46.61766052 ], [ 169.21360779, -46.60285187 ], [ 169.21948242, -46.59360886 ], [ 169.20198059, -46.59238052 ], [ 169.189086909999986, -46.57865143 ], [ 169.1990509, -46.56999588 ], [ 169.19476318, -46.56540298 ], [ 169.22758484, -46.56188202 ], [ 169.23327637, -46.54869461 ], [ 169.25039673, -46.53807068 ], [ 169.24897766, -46.52694321 ], [ 169.25611877, -46.52493286 ], [ 169.24757385, -46.51581955 ], [ 169.233322140000013, -46.51982117 ], [ 169.22053528, -46.50611496 ], [ 169.21340942, -46.50810623 ], [ 169.20491028, -46.4989624 ], [ 169.18638611, -46.49835205 ], [ 169.17790222, -46.48920441 ], [ 169.185043330000013, -46.48722839 ], [ 169.16519165, -46.47549057 ], [ 169.163864139999987, -46.46438217 ], [ 169.19241333, -46.45649338 ], [ 169.18818665, -46.451931 ], [ 169.19822693, -46.44342804 ], [ 169.18978882, -46.4343071 ], [ 169.204055790000012, -46.43037033 ], [ 169.20697021, -46.42384338 ], [ 169.19854736, -46.41473007 ], [ 169.20567322, -46.4127655 ], [ 169.18884277, -46.39454651 ], [ 169.15484619, -46.38677216 ], [ 169.14770508, -46.38873672 ], [ 169.13931274, -46.37962341 ], [ 169.15232849, -46.36463165 ], [ 169.14813232, -46.3600769 ], [ 169.16954041, -46.35419846 ], [ 169.16534424, -46.34964752 ], [ 169.17961121, -46.34572601 ], [ 169.17541504, -46.34117508 ], [ 169.19680786, -46.33529663 ], [ 169.18130493000001, -46.32815552 ], [ 169.18844604, -46.32619858 ], [ 169.20146179, -46.31122589 ], [ 169.18475342, -46.29302979 ], [ 169.194824219999987, -46.28456879 ], [ 169.20072937, -46.27156448 ], [ 169.19238281, -46.26246643 ], [ 169.198303220000014, -46.24946213 ], [ 169.205429079999988, -46.247509 ], [ 169.19293213, -46.23386765 ], [ 169.20301819, -46.22541428 ], [ 169.2118988, -46.20591736 ], [ 169.19645691, -46.19877243 ], [ 169.18934631, -46.20072174 ], [ 169.168579099999988, -46.17797852 ], [ 169.17866516, -46.16952896 ], [ 169.166229249999986, -46.15587997 ], [ 169.15496826, -46.15327835 ], [ 169.14071655, -46.15717316 ], [ 169.13838196, -46.13507462 ], [ 169.16685486, -46.12729263 ], [ 169.17694092, -46.11885452 ], [ 169.1686554, -46.10975647 ], [ 169.174591060000012, -46.09676743 ], [ 169.15623474, -46.09610367 ], [ 169.15921021, -46.08961105 ], [ 169.147949219999987, -46.08700562 ], [ 169.15092468, -46.08050919 ], [ 169.16514587, -46.07662582 ], [ 169.16281128, -46.05454254 ], [ 169.14031982, -46.04932404 ], [ 169.132049560000013, -46.04022217 ], [ 169.1137085, -46.03954697 ], [ 169.08065796, -46.00312424 ], [ 169.07539368, -45.98752975 ], [ 169.0884552, -45.9726181 ], [ 169.10266113, -45.96875 ], [ 169.11454773, -45.94281387 ], [ 169.10333252, -45.94019318 ], [ 169.086837769999988, -45.92198563 ], [ 169.09393311, -45.92005539 ], [ 169.10881042, -45.88765335 ], [ 169.09645081, -45.87399673 ], [ 169.089355469999987, -45.87592697 ], [ 169.09118652, -45.85841751 ], [ 169.06878662, -45.85316467 ], [ 169.07289124, -45.85771561 ], [ 169.05871582, -45.86156845 ], [ 169.062820429999988, -45.8661232 ], [ 169.01911926, -45.866642 ], [ 169.014999390000014, -45.86208344 ], [ 169.02693176, -45.83616638 ], [ 169.0440979, -45.82584381 ], [ 169.038864139999987, -45.81025696 ], [ 169.027664179999988, -45.807621 ], [ 169.0194397, -45.79851151 ], [ 169.02201843, -45.75247192 ], [ 169.02088928, -45.74144363 ], [ 169.009704590000013, -45.73880386 ], [ 169.03056335, -45.69351196 ], [ 169.03764343, -45.69159698 ], [ 169.03240967, -45.67602158 ], [ 169.042465209999989, -45.66764069 ], [ 169.04133606, -45.65662003 ], [ 169.06964111, -45.64897156 ], [ 169.0655365, -45.64442062 ], [ 169.0796814, -45.64059448 ], [ 169.07557678, -45.63604355 ], [ 169.093399049999988, -45.59726334 ], [ 169.10754395, -45.59344101 ], [ 169.103439329999986, -45.58889008 ], [ 169.11756897, -45.58506775 ], [ 169.113479610000013, -45.58052063 ], [ 169.13127136, -45.54176331 ], [ 169.14129639, -45.53339767 ], [ 169.137207030000013, -45.52885056 ], [ 169.14723206, -45.52048492 ], [ 169.14312744, -45.51593781 ], [ 169.160903929999989, -45.47720718 ], [ 169.15568542, -45.46166229 ], [ 169.16275024, -45.45975494 ], [ 169.17572021, -45.44494629 ], [ 169.17163086, -45.44039917 ], [ 169.189819340000014, -45.44113541 ], [ 169.21801758, -45.43351746 ], [ 169.229843140000014, -45.40772247 ], [ 169.21348572, -45.38954163 ], [ 169.19940186, -45.39334869 ], [ 169.17897034, -45.37062073 ], [ 169.18193054, -45.36417389 ], [ 169.16966248, -45.35053635 ], [ 169.16854858, -45.33954239 ], [ 169.15036011, -45.33879471 ], [ 169.13514709, -45.33160019 ], [ 169.12698364, -45.32250595 ], [ 169.11585999, -45.31985855 ], [ 169.113616940000014, -45.29787064 ], [ 169.08912659, -45.27058411 ], [ 169.08209229, -45.27248001 ], [ 169.03088379, -45.30319214 ], [ 168.978866579999988, -45.36236191 ], [ 168.94390869, -45.41131592 ], [ 168.92604065, -45.45003891 ], [ 168.91598511, -45.4583931 ], [ 168.901840209999989, -45.46219254 ], [ 168.879531859999986, -45.45686722 ], [ 168.874359129999988, -45.44129562 ], [ 168.88142395, -45.4393959 ], [ 168.86618042, -45.43217468 ], [ 168.8449707, -45.4378624 ], [ 168.846069340000014, -45.44887543 ], [ 168.81559753, -45.43442154 ], [ 168.79437256, -45.44010162 ], [ 168.79627991000001, -45.42263031 ], [ 168.7840271, -45.40894318 ], [ 168.79299927, -45.38958359 ], [ 168.78892517, -45.38502121 ], [ 168.79083252, -45.36755753 ], [ 168.786743159999986, -45.36299515 ], [ 168.76553345, -45.36866379 ], [ 168.738082889999987, -45.34774017 ], [ 168.70463562, -45.33971024 ], [ 168.710617070000012, -45.32680893 ], [ 168.717697140000013, -45.32492447 ], [ 168.71661377, -45.31391144 ], [ 168.70846558, -45.30478668 ], [ 168.71444702, -45.29188919 ], [ 168.702224730000012, -45.27820206 ], [ 168.70928955, -45.2763176 ], [ 168.692993159999986, -45.25806427 ], [ 168.69898987, -45.24517441 ], [ 168.687850950000012, -45.24249268 ], [ 168.65957642, -45.25002289 ], [ 168.66365051, -45.25458908 ], [ 168.649505620000014, -45.25835037 ], [ 168.65357971, -45.26291656 ], [ 168.63237, -45.26856232 ], [ 168.63644409, -45.27312851 ], [ 168.579849239999987, -45.28817749 ], [ 168.583923340000013, -45.2927475 ], [ 168.56976318, -45.29650497 ], [ 168.57383728, -45.30107498 ], [ 168.5526123, -45.30671692 ], [ 168.5566864, -45.31128311 ], [ 168.474700930000012, -45.32738876 ], [ 168.44937134, -45.32845306 ], [ 168.412872310000012, -45.32681656 ], [ 168.405792240000011, -45.32868958 ], [ 168.336837769999988, -45.32995987 ], [ 168.33172607, -45.31436157 ], [ 168.31546021, -45.29606247 ], [ 168.317443849999989, -45.27859497 ], [ 168.32350159, -45.26570511 ], [ 168.30317688, -45.242836 ], [ 168.309219359999986, -45.22994995 ], [ 168.3163147, -45.22808075 ], [ 168.30818176, -45.21893311 ], [ 168.29296875, -45.21165466 ], [ 168.2706604, -45.20623779 ], [ 168.26254272, -45.19709015 ], [ 168.272644039999989, -45.18878555 ], [ 168.25640869, -45.17049026 ], [ 168.24525452, -45.16777802 ], [ 168.255371090000011, -45.15947723 ], [ 168.24723816, -45.1503334 ], [ 168.229003909999989, -45.14948273 ], [ 168.23204041, -45.14304733 ], [ 168.24621582, -45.13932037 ], [ 168.25935364, -45.1245842 ], [ 168.258316040000011, -45.11357498 ], [ 168.2724762, -45.10984421 ], [ 168.26435852, -45.10070419 ], [ 168.28862, -45.08866501 ], [ 168.30278015, -45.08493042 ], [ 168.31184387, -45.06561661 ], [ 168.3037262, -45.05648041 ], [ 168.30569458, -45.03904343 ], [ 168.32286072, -45.02886963 ], [ 168.3106842, -45.01516724 ], [ 168.296539309999986, -45.01890182 ], [ 168.30059814, -45.02347183 ], [ 168.279373170000014, -45.02907562 ], [ 168.25408936, -45.03010559 ], [ 168.238891599999988, -45.02283096 ], [ 168.237854, -45.01182938 ], [ 168.22975159, -45.00269318 ], [ 168.22267151, -45.00455475 ], [ 168.20747375, -44.99727631 ], [ 168.18721008, -44.97443008 ], [ 168.19023132, -44.96800232 ], [ 168.17807007, -44.95429611 ], [ 168.15582275, -44.94887161 ], [ 168.15884399, -44.94244385 ], [ 168.1446991, -44.94615555 ], [ 168.142639159999987, -44.92416763 ], [ 168.15274048, -44.91589355 ], [ 168.14059448, -44.90218735 ], [ 168.139572140000013, -44.8911972 ], [ 168.12440491000001, -44.88391495 ], [ 168.13148499, -44.88206482 ], [ 168.123397829999988, -44.87292862 ], [ 168.13752747, -44.86922455 ], [ 168.12944031, -44.86009216 ], [ 168.141540529999986, -44.83441544 ], [ 168.18092346, -44.82969284 ], [ 168.17585754000001, -44.81414795 ], [ 168.18292236, -44.81228638 ], [ 168.19198608, -44.79302216 ], [ 168.20509338, -44.7783165 ], [ 168.19700623, -44.76919937 ], [ 168.20303345, -44.7563591 ], [ 168.217163090000014, -44.75262833 ], [ 168.209075930000012, -44.74351501 ], [ 168.19494629, -44.74724197 ], [ 168.178787230000012, -44.72901917 ], [ 168.17776489, -44.71804428 ], [ 168.187850950000012, -44.70976257 ], [ 168.17976379000001, -44.70065689 ], [ 168.18682861, -44.6987915 ], [ 168.19992065, -44.68409348 ], [ 168.20698547, -44.68222427 ], [ 168.19184875, -44.67498779 ], [ 168.2049408, -44.66028595 ], [ 168.19284058, -44.64663696 ], [ 168.203918460000011, -44.6493187 ], [ 168.212982180000012, -44.63006973 ], [ 168.20893860000001, -44.62552261 ], [ 168.222030640000014, -44.61081696 ], [ 168.217987060000013, -44.60627365 ], [ 168.23913574, -44.6006546 ], [ 168.231079099999988, -44.59156799 ], [ 168.23408508, -44.58515167 ], [ 168.2481842, -44.58140182 ], [ 168.24414063, -44.57686234 ], [ 168.25016785, -44.56402588 ], [ 168.24110413, -44.5439949 ], [ 168.25114441, -44.53570175 ], [ 168.26522827, -44.53194427 ], [ 168.26119995, -44.5274086 ], [ 168.282302859999987, -44.52176285 ], [ 168.29837036, -44.5006218 ], [ 168.31645203, -44.50138474 ], [ 168.33755493000001, -44.49573898 ], [ 168.341583250000014, -44.50027847 ], [ 168.3697052, -44.49276352 ], [ 168.39183044, -44.4981041 ], [ 168.39585876000001, -44.50265503 ], [ 168.42398071, -44.49516296 ], [ 168.42802429, -44.4997139 ], [ 168.46316528, -44.49036026 ], [ 168.46720886, -44.49491501 ], [ 168.481262210000011, -44.49117661 ], [ 168.491271970000014, -44.48288727 ], [ 168.512344359999986, -44.47728348 ], [ 168.51831055, -44.46443558 ], [ 168.57450867, -44.44951248 ], [ 168.59663391, -44.45490265 ], [ 168.602600099999989, -44.44205856 ], [ 168.63769531, -44.43274307 ], [ 168.64364624000001, -44.41989899 ], [ 168.664703370000012, -44.41431427 ], [ 168.67468262, -44.40603256 ], [ 168.67063904, -44.401474 ], [ 168.698715209999989, -44.39403152 ], [ 168.71086121, -44.40771103 ], [ 168.748107909999987, -44.42037201 ], [ 168.75512695, -44.41851044 ], [ 168.75, -44.40297318 ], [ 168.759979249999986, -44.3946991 ], [ 168.7950592, -44.38540649 ], [ 168.800979610000013, -44.37257385 ], [ 168.81500244, -44.36885834 ], [ 168.8109436, -44.36429977 ], [ 168.83198547, -44.35873032 ], [ 168.82794189, -44.35417175 ], [ 168.84196472, -44.35046005 ], [ 168.847869870000011, -44.33763123 ], [ 168.83976746, -44.32851028 ], [ 168.84677124000001, -44.32665634 ], [ 168.84567261, -44.31568146 ], [ 168.85565186, -44.30741501 ], [ 168.85159302, -44.30285263 ], [ 168.853439329999986, -44.28546143 ], [ 168.86340332, -44.27719498 ], [ 168.86524963, -44.25980759 ], [ 168.8600769, -44.24426651 ], [ 168.881103520000011, -44.23871613 ], [ 168.88293457, -44.22132492 ], [ 168.903945920000012, -44.21578598 ], [ 168.9150238, -44.21850586 ], [ 168.91796875, -44.21209335 ], [ 168.95298767, -44.20286942 ], [ 168.964050289999989, -44.20558929 ], [ 168.97805786, -44.20190048 ], [ 168.969940189999988, -44.19277954 ], [ 168.97694397, -44.19093323 ], [ 168.96882629000001, -44.18180847 ], [ 168.978759770000011, -44.1735611 ], [ 168.999786379999989, -44.16804123 ], [ 168.98352051, -44.14978409 ], [ 168.98646545, -44.14338303 ], [ 169.02848816, -44.13237 ], [ 169.02035522, -44.12324142 ], [ 169.02330017, -44.11684418 ], [ 169.037307739999989, -44.11317825 ], [ 169.041366579999988, -44.11774445 ], [ 169.076400760000013, -44.10858917 ], [ 169.08746338, -44.11131287 ], [ 169.08633423, -44.1003685 ], [ 169.149353029999986, -44.08388519 ], [ 169.15229797, -44.07750702 ], [ 169.16447449, -44.09114456 ], [ 169.16152954, -44.09752274 ], [ 169.16964722, -44.10660934 ], [ 169.18363953, -44.10293198 ], [ 169.187698360000013, -44.10747528 ], [ 169.21679688, -44.11102676 ], [ 169.24182129, -44.11003113 ], [ 169.26280212, -44.10450363 ], [ 169.2668457, -44.10903168 ], [ 169.28781128, -44.10349655 ], [ 169.29257202, -44.07986832 ], [ 169.306549069999988, -44.07618713 ], [ 169.29844666, -44.0671463 ], [ 169.326400760000013, -44.05978394 ], [ 169.34257507, -44.07784653 ], [ 169.339645389999987, -44.08420944 ], [ 169.35179138, -44.09775925 ], [ 169.348846439999988, -44.10412598 ], [ 169.366851809999986, -44.10493851 ], [ 169.37495422, -44.1139679 ], [ 169.38192749000001, -44.11211395 ], [ 169.390014650000012, -44.12114334 ], [ 169.40396118000001, -44.11743164 ], [ 169.3999176, -44.11291885 ], [ 169.420822140000013, -44.10735321 ], [ 169.416778560000012, -44.10284424 ], [ 169.44464111, -44.09542847 ], [ 169.4475708, -44.08906555 ], [ 169.46148682, -44.08535767 ], [ 169.46330261, -44.06814575 ], [ 169.47721863000001, -44.06444168 ], [ 169.47317505, -44.05994415 ], [ 169.494049069999988, -44.05438995 ], [ 169.49807739, -44.05888367 ], [ 169.51197815, -44.0551796 ], [ 169.51602173, -44.05967331 ], [ 169.52990723, -44.05596542 ], [ 169.53977966, -44.04776764 ], [ 169.53575134, -44.04327774 ], [ 169.57740784, -44.03215027 ], [ 169.58143616000001, -44.03663635 ], [ 169.59532166, -44.03292084 ], [ 169.594207759999989, -44.02209091 ], [ 169.609878540000011, -44.00120544 ], [ 169.59378052, -43.98327637 ], [ 169.60362244, -43.97507858 ], [ 169.59558105, -43.96611786 ], [ 169.60542297, -43.95792389 ], [ 169.60945129000001, -43.96240234 ], [ 169.63023376000001, -43.95682144 ], [ 169.64520264, -43.96391296 ], [ 169.672912599999989, -43.95645523 ], [ 169.67692566, -43.96092987 ], [ 169.69769287, -43.95532608 ], [ 169.69769287, -43.95532608 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.12", "id_1": 12, "name_1": "Southland", "hasc_1": "NZ.SO", "population2022": 102400, "areakm2": 32794.846, "density2022": 3.12 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 169.12677002, -52.61396027 ], [ 169.12611389, -52.62083435 ], [ 169.12013245, -52.61728668 ], [ 169.12677002, -52.61396027 ], [ 169.12677002, -52.61396027 ] ] ], [ [ [ 169.13444519, -52.61555481 ], [ 169.131347659999989, -52.61441422 ], [ 169.13412476, -52.61233521 ], [ 169.13444519, -52.61555481 ], [ 169.13444519, -52.61555481 ] ] ], [ [ [ 169.066894530000013, -52.5814743 ], [ 169.063125609999986, -52.5814743 ], [ 169.06387329, -52.57950211 ], [ 169.066894530000013, -52.5814743 ], [ 169.066894530000013, -52.5814743 ] ] ], [ [ [ 169.018753049999987, -52.57892227 ], [ 169.01661682, -52.57679749 ], [ 169.02038574, -52.57619095 ], [ 169.018753049999987, -52.57892227 ], [ 169.018753049999987, -52.57892227 ] ] ], [ [ [ 169.05062866, -52.57239914 ], [ 169.04559326, -52.57065582 ], [ 169.0488739, -52.56921005 ], [ 169.05062866, -52.57239914 ], [ 169.05062866, -52.57239914 ] ] ], [ [ [ 168.98445129000001, -52.55656433 ], [ 168.982772829999988, -52.55666733 ], [ 168.98452759, -52.55488968 ], [ 168.98445129000001, -52.55656433 ], [ 168.98445129000001, -52.55656433 ] ] ], [ [ [ 169.02105713, -52.55053711 ], [ 169.02319336, -52.55211258 ], [ 169.02035522, -52.55222321 ], [ 169.02105713, -52.55053711 ], [ 169.02105713, -52.55053711 ] ] ], [ [ [ 168.990997310000012, -52.55332184 ], [ 168.98886108, -52.5508194 ], [ 168.993225099999989, -52.54926682 ], [ 168.990997310000012, -52.55332184 ], [ 168.990997310000012, -52.55332184 ] ] ], [ [ [ 169.01605225, -52.54030228 ], [ 169.01365662, -52.53992462 ], [ 169.01580811, -52.53848267 ], [ 169.01605225, -52.54030228 ], [ 169.01605225, -52.54030228 ] ] ], [ [ [ 169.06503296, -52.52045059 ], [ 169.06784058, -52.52521133 ], [ 169.060760499999986, -52.52323532 ], [ 169.06503296, -52.52045059 ], [ 169.06503296, -52.52045059 ] ] ], [ [ [ 169.13273621, -52.5079155 ], [ 169.129959109999987, -52.50776291 ], [ 169.13160706, -52.5057869 ], [ 169.13273621, -52.5079155 ], [ 169.13273621, -52.5079155 ] ] ], [ [ [ 169.24336243, -52.50587082 ], [ 169.24134827, -52.50511169 ], [ 169.24601746, -52.50526428 ], [ 169.24336243, -52.50587082 ], [ 169.24336243, -52.50587082 ] ] ], [ [ [ 169.1245575, -52.50442123 ], [ 169.12115479, -52.50336075 ], [ 169.12492371, -52.50252533 ], [ 169.1245575, -52.50442123 ], [ 169.1245575, -52.50442123 ] ] ], [ [ [ 169.12957764, -52.46721268 ], [ 169.13146973, -52.46971893 ], [ 169.12680054, -52.47078323 ], [ 169.12957764, -52.46721268 ], [ 169.12957764, -52.46721268 ] ] ], [ [ [ 169.201232909999987, -52.46813202 ], [ 169.21292114, -52.46677017 ], [ 169.22833252, -52.47138977 ], [ 169.21751404, -52.48914719 ], [ 169.22129822, -52.50331497 ], [ 169.238601679999988, -52.50585556 ], [ 169.220611569999988, -52.51276398 ], [ 169.1953125, -52.5154953 ], [ 169.19833374000001, -52.51916504 ], [ 169.232223510000011, -52.51361084 ], [ 169.24087524, -52.51010513 ], [ 169.238082889999987, -52.51901245 ], [ 169.24357605, -52.52617264 ], [ 169.23300171, -52.53229141 ], [ 169.232498170000014, -52.54244995 ], [ 169.24124146, -52.54659271 ], [ 169.26477051, -52.54841614 ], [ 169.262146, -52.56367493 ], [ 169.237228390000013, -52.56397629 ], [ 169.21598816, -52.54841232 ], [ 169.2086792, -52.5455246 ], [ 169.1574707, -52.54486084 ], [ 169.14720154, -52.55529785 ], [ 169.135665890000013, -52.55550003 ], [ 169.1333313, -52.56138992 ], [ 169.173339840000011, -52.55222321 ], [ 169.18055725, -52.55555725 ], [ 169.203887939999987, -52.55833435 ], [ 169.24221802, -52.57444382 ], [ 169.22111511, -52.59111023 ], [ 169.2084198, -52.59686279 ], [ 169.2069397, -52.60213852 ], [ 169.173629760000011, -52.59104156 ], [ 169.181442260000011, -52.6032753 ], [ 169.15419006, -52.60662842 ], [ 169.14707947, -52.59559631 ], [ 169.133163450000012, -52.60307693 ], [ 169.12512207, -52.59921265 ], [ 169.12690735000001, -52.58967209 ], [ 169.10871887, -52.58547592 ], [ 169.103881840000014, -52.58083344 ], [ 169.090774540000012, -52.57884598 ], [ 169.09443665, -52.57535553 ], [ 169.07878113000001, -52.56341171 ], [ 169.05726624, -52.56196976 ], [ 169.03988647, -52.56422043 ], [ 169.02522278, -52.54926682 ], [ 169.01564026, -52.54436874 ], [ 169.03166199, -52.53583145 ], [ 169.04684448, -52.53196335 ], [ 169.05726624, -52.54144669 ], [ 169.08131409, -52.54029846 ], [ 169.078338620000011, -52.54499817 ], [ 169.09942627, -52.54987717 ], [ 169.11166382, -52.54333496 ], [ 169.12110901, -52.53027725 ], [ 169.12832642, -52.52972412 ], [ 169.135116579999988, -52.5173111 ], [ 169.13082886, -52.51396942 ], [ 169.151474, -52.49682999 ], [ 169.15791321, -52.485569 ], [ 169.147964480000013, -52.48008347 ], [ 169.13537598, -52.47947693 ], [ 169.142669680000012, -52.47454071 ], [ 169.17062378, -52.47833633 ], [ 169.173767090000013, -52.47350693 ], [ 169.186859129999988, -52.47541428 ], [ 169.19142151, -52.46679306 ], [ 169.201232909999987, -52.46813202 ], [ 169.201232909999987, -52.46813202 ] ] ], [ [ [ 165.923889159999987, -50.84194565 ], [ 165.92999268, -50.84777832 ], [ 165.94055176, -50.84860992 ], [ 165.9694519, -50.86249924 ], [ 165.98832703, -50.86639023 ], [ 165.9972229, -50.86249924 ], [ 166.02610779, -50.86527634 ], [ 166.044998170000014, -50.85916519 ], [ 166.05667114, -50.86527634 ], [ 166.06388855, -50.85388947 ], [ 166.073883059999986, -50.84833145 ], [ 166.08999634, -50.85416794 ], [ 166.136108400000012, -50.86111069 ], [ 166.148895259999989, -50.86111069 ], [ 166.19166565, -50.87277603 ], [ 166.20832825, -50.88194275 ], [ 166.201660159999989, -50.88583374 ], [ 166.167770389999987, -50.88360977 ], [ 166.17944336, -50.89222336 ], [ 166.1713562, -50.89511108 ], [ 166.18063354, -50.90125275 ], [ 166.13787842, -50.91610336 ], [ 166.12110901, -50.9094429 ], [ 166.08666992, -50.89166641 ], [ 166.09944153, -50.90444565 ], [ 166.11444092, -50.90916824 ], [ 166.125, -50.91916656 ], [ 166.11647034, -50.92429733 ], [ 166.09370422, -50.92824936 ], [ 166.07167053, -50.92972183 ], [ 166.06944275, -50.92499924 ], [ 166.03552246000001, -50.90975189 ], [ 166.025588989999989, -50.90759277 ], [ 166.025604249999986, -50.91584015 ], [ 166.00228882, -50.91467667 ], [ 165.99884033, -50.90832138 ], [ 165.985961909999986, -50.90498734 ], [ 165.95552063, -50.90320587 ], [ 165.94975281, -50.89507294 ], [ 165.955017090000013, -50.89213181 ], [ 165.95343018, -50.88198471 ], [ 165.948028560000012, -50.88051224 ], [ 165.9405365, -50.89135742 ], [ 165.915252689999988, -50.88709641 ], [ 165.917343140000014, -50.87268829 ], [ 165.9105835, -50.8724556 ], [ 165.91279602, -50.8625412 ], [ 165.897827150000012, -50.85673523 ], [ 165.905929570000012, -50.85115814 ], [ 165.91891479, -50.85096741 ], [ 165.91111755, -50.84388733 ], [ 165.915802, -50.83685684 ], [ 165.923889159999987, -50.84194565 ], [ 165.923889159999987, -50.84194565 ] ] ], [ [ [ 166.02278137, -50.60694504 ], [ 166.02166748, -50.60499954 ], [ 166.03001404, -50.60396576 ], [ 166.02278137, -50.60694504 ], [ 166.02278137, -50.60694504 ] ] ], [ [ [ 166.31944275, -50.57500076 ], [ 166.32444763, -50.57611084 ], [ 166.32333374000001, -50.57916641 ], [ 166.31944275, -50.57500076 ], [ 166.31944275, -50.57500076 ] ] ], [ [ [ 166.362777709999989, -50.56694412 ], [ 166.358886719999987, -50.5672226 ], [ 166.36166382, -50.5652771 ], [ 166.362777709999989, -50.56694412 ], [ 166.362777709999989, -50.56694412 ] ] ], [ [ [ 166.301116940000014, -50.52444458 ], [ 166.31166077, -50.52472305 ], [ 166.30888367, -50.53333282 ], [ 166.292770389999987, -50.53055573 ], [ 166.301116940000014, -50.52444458 ], [ 166.301116940000014, -50.52444458 ] ] ], [ [ [ 166.178894039999989, -50.51194382 ], [ 166.18722534, -50.51416779 ], [ 166.202774049999988, -50.52583313 ], [ 166.206115720000014, -50.51916504 ], [ 166.21888733, -50.51333237 ], [ 166.232223510000011, -50.51805496 ], [ 166.226104740000011, -50.52083206 ], [ 166.22055054, -50.53250122 ], [ 166.21221924, -50.53861237 ], [ 166.21722412, -50.54861069 ], [ 166.19944763, -50.55138779 ], [ 166.171661379999989, -50.55916595 ], [ 166.18444824, -50.56194305 ], [ 166.19778442, -50.5577774 ], [ 166.22277832, -50.5569458 ], [ 166.23832703, -50.54916763 ], [ 166.24221802, -50.54333496 ], [ 166.267227170000012, -50.52944565 ], [ 166.27610779, -50.54055405 ], [ 166.29055786, -50.53944397 ], [ 166.27610779, -50.54999924 ], [ 166.261108400000012, -50.55194473 ], [ 166.261108400000012, -50.55555725 ], [ 166.2749939, -50.55611038 ], [ 166.2722168, -50.56305695 ], [ 166.28166199, -50.56277847 ], [ 166.27667236, -50.57833481 ], [ 166.28666687, -50.58166504 ], [ 166.25332642, -50.58388901 ], [ 166.233886719999987, -50.57916641 ], [ 166.21388245, -50.58111191 ], [ 166.21086121, -50.58403397 ], [ 166.22389221, -50.59027863 ], [ 166.21278381, -50.5969429 ], [ 166.21166992, -50.60416794 ], [ 166.237777709999989, -50.60388947 ], [ 166.243896479999989, -50.60777664 ], [ 166.21556091, -50.63027954 ], [ 166.20555115, -50.6269455 ], [ 166.19000244, -50.61527634 ], [ 166.173339840000011, -50.60666656 ], [ 166.167221070000011, -50.61416626 ], [ 166.181289670000012, -50.61894608 ], [ 166.203887939999987, -50.63722229 ], [ 166.171661379999989, -50.63194275 ], [ 166.19555664, -50.63888931 ], [ 166.201110840000013, -50.64611053 ], [ 166.18888855, -50.64666748 ], [ 166.19111633, -50.65083313 ], [ 166.21055603, -50.6558342 ], [ 166.202224730000012, -50.66249847 ], [ 166.18333435, -50.6594429 ], [ 166.167221070000011, -50.65194321 ], [ 166.172775269999988, -50.66833496 ], [ 166.19166565, -50.67583466 ], [ 166.18333435, -50.6827774 ], [ 166.16221619, -50.68111038 ], [ 166.15055847, -50.68333435 ], [ 166.16278076, -50.68722153 ], [ 166.145004269999987, -50.69250107 ], [ 166.12832642, -50.70333481 ], [ 166.13000488, -50.70639038 ], [ 166.141662599999989, -50.69777679 ], [ 166.17778015, -50.69166565 ], [ 166.20832825, -50.69861221 ], [ 166.19833374000001, -50.71027756 ], [ 166.19778442, -50.71749878 ], [ 166.18666077, -50.71888733 ], [ 166.16833496000001, -50.71250153 ], [ 166.137771609999987, -50.70861053 ], [ 166.115005489999987, -50.71305466 ], [ 166.080001829999986, -50.71666718 ], [ 166.081115720000014, -50.72000122 ], [ 166.11610413, -50.71749878 ], [ 166.130615229999989, -50.71307755 ], [ 166.152771, -50.71500015 ], [ 166.16667175, -50.7219429 ], [ 166.16000366, -50.7294426 ], [ 166.1444397, -50.72861099 ], [ 166.146118159999986, -50.73361206 ], [ 166.1222229, -50.73722076 ], [ 166.12889099, -50.73916626 ], [ 166.14833069, -50.73722076 ], [ 166.16667175, -50.73138809 ], [ 166.19389343, -50.74166489 ], [ 166.18888855, -50.75 ], [ 166.171112060000013, -50.75638962 ], [ 166.15722656, -50.76555634 ], [ 166.13278198, -50.77639008 ], [ 166.15222168, -50.77222061 ], [ 166.171661379999989, -50.76055527 ], [ 166.19868469, -50.75228882 ], [ 166.21777344, -50.76472092 ], [ 166.22111511, -50.77416611 ], [ 166.20837402, -50.77991486 ], [ 166.21444702, -50.78499985 ], [ 166.19389343, -50.79000092 ], [ 166.22555542, -50.79055405 ], [ 166.21722412, -50.79861069 ], [ 166.18943787, -50.79999924 ], [ 166.173889159999987, -50.80611038 ], [ 166.19332886, -50.80277634 ], [ 166.22277832, -50.80277634 ], [ 166.23167419, -50.80749893 ], [ 166.2250061, -50.81111145 ], [ 166.20173645, -50.81561279 ], [ 166.21722412, -50.81666565 ], [ 166.2416687, -50.82416534 ], [ 166.24610901, -50.83055496 ], [ 166.240005489999987, -50.84083176 ], [ 166.229995730000013, -50.84277725 ], [ 166.24221802, -50.84860992 ], [ 166.22332764, -50.86166763 ], [ 166.19407654, -50.8606987 ], [ 166.19013977, -50.86538696 ], [ 166.171112060000013, -50.86089325 ], [ 166.17295837, -50.85741043 ], [ 166.141113280000013, -50.84722137 ], [ 166.10945129000001, -50.83333206 ], [ 166.11166382, -50.82666779 ], [ 166.09165955, -50.82277679 ], [ 166.09277344, -50.8144455 ], [ 166.07943726, -50.80749893 ], [ 166.071105960000011, -50.80888748 ], [ 166.07221985000001, -50.82611084 ], [ 166.05944824, -50.82444382 ], [ 166.05166626, -50.83222198 ], [ 166.03666687, -50.82416534 ], [ 166.06944275, -50.8077774 ], [ 166.05944824, -50.79999924 ], [ 166.06166077, -50.7863884 ], [ 166.05722046, -50.78138733 ], [ 166.05944824, -50.75999832 ], [ 166.03611755, -50.76139069 ], [ 166.020004269999987, -50.75333405 ], [ 166.018890379999988, -50.7452774 ], [ 166.009994510000013, -50.74944305 ], [ 166.01167297, -50.76083374 ], [ 166.00666809, -50.77027893 ], [ 166.018890379999988, -50.77555466 ], [ 166.03443909, -50.78749847 ], [ 166.039993290000012, -50.79555511 ], [ 166.03666687, -50.80444336 ], [ 166.027771, -50.80722046 ], [ 166.011108400000012, -50.79861069 ], [ 166.00666809, -50.78722382 ], [ 165.992385860000013, -50.77213669 ], [ 165.99508667, -50.77996063 ], [ 165.98294067, -50.78437424 ], [ 165.99717712, -50.79250717 ], [ 166.00222778, -50.80222321 ], [ 166.013885499999986, -50.8077774 ], [ 166.016662599999989, -50.81861115 ], [ 166.009994510000013, -50.82194519 ], [ 165.997543330000013, -50.81675339 ], [ 166.00721741000001, -50.83250046 ], [ 166.01554871, -50.83527756 ], [ 166.020004269999987, -50.84749985 ], [ 166.014999390000014, -50.85277939 ], [ 165.982223510000011, -50.85250092 ], [ 165.97944641, -50.85583496 ], [ 165.96388245, -50.8488884 ], [ 165.955001829999986, -50.84833145 ], [ 165.94778442, -50.8405571 ], [ 165.92999268, -50.83805466 ], [ 165.930450439999987, -50.82954025 ], [ 165.923339840000011, -50.82694626 ], [ 165.919433590000011, -50.812603 ], [ 165.91555786, -50.83111191 ], [ 165.882019039999989, -50.84101105 ], [ 165.8881073, -50.83495712 ], [ 165.87805176, -50.82519531 ], [ 165.883453370000012, -50.81930923 ], [ 165.86833191, -50.80028534 ], [ 165.88032532, -50.79495621 ], [ 165.88949585, -50.77975845 ], [ 165.87757874, -50.76961136 ], [ 165.89268494, -50.7677536 ], [ 165.917770389999987, -50.75860977 ], [ 165.93330383, -50.75839996 ], [ 165.93005371000001, -50.74862289 ], [ 165.934097290000011, -50.74490356 ], [ 165.943557739999989, -50.74986267 ], [ 165.948593140000014, -50.74389648 ], [ 165.96035767, -50.74007034 ], [ 165.962402340000011, -50.73134613 ], [ 165.96989441, -50.73796082 ], [ 165.97657776, -50.72472 ], [ 165.9887085, -50.72781372 ], [ 166.00500488, -50.71834183 ], [ 166.027771, -50.71583176 ], [ 166.046661379999989, -50.70111084 ], [ 166.048339840000011, -50.69694519 ], [ 166.07130432, -50.6864624 ], [ 166.069702150000012, -50.67557144 ], [ 166.082778929999989, -50.67305374 ], [ 166.08555603, -50.6669426 ], [ 166.076660159999989, -50.66305542 ], [ 166.06832886, -50.64500046 ], [ 166.07333374000001, -50.62666702 ], [ 166.08944702, -50.61166763 ], [ 166.08666992, -50.60388947 ], [ 166.09611511, -50.59749985 ], [ 166.09944153, -50.58416748 ], [ 166.09666443, -50.5680542 ], [ 166.063003540000011, -50.57144547 ], [ 166.06066895, -50.56238174 ], [ 166.09376526, -50.56018829 ], [ 166.09165955, -50.55222321 ], [ 166.06832886, -50.54111099 ], [ 166.06793213, -50.53614044 ], [ 166.03910828, -50.54642105 ], [ 166.034683230000013, -50.54239273 ], [ 166.05332947, -50.5344429 ], [ 166.06555176, -50.52527618 ], [ 166.07167053, -50.5280571 ], [ 166.08778381, -50.52277756 ], [ 166.103881840000014, -50.52666855 ], [ 166.11778259, -50.52277756 ], [ 166.11839294, -50.51269913 ], [ 166.12944031, -50.50913239 ], [ 166.137771609999987, -50.51250076 ], [ 166.12445068, -50.5336113 ], [ 166.137222290000011, -50.52722168 ], [ 166.14944458, -50.51166534 ], [ 166.16056824, -50.52189255 ], [ 166.173339840000011, -50.51889038 ], [ 166.173889159999987, -50.50888824 ], [ 166.178894039999989, -50.51194382 ], [ 166.178894039999989, -50.51194382 ] ] ], [ [ [ 166.25222778, -50.50611115 ], [ 166.25778198, -50.50777817 ], [ 166.25389099, -50.51916504 ], [ 166.240005489999987, -50.51833344 ], [ 166.25222778, -50.50611115 ], [ 166.25222778, -50.50611115 ] ] ], [ [ [ 166.30444336, -50.48444366 ], [ 166.32055664, -50.49083328 ], [ 166.32444763, -50.50055695 ], [ 166.32055664, -50.50666809 ], [ 166.292221070000011, -50.50500107 ], [ 166.28166199, -50.50027847 ], [ 166.267227170000012, -50.50972366 ], [ 166.26445007, -50.49388885 ], [ 166.28166199, -50.48749924 ], [ 166.298889159999987, -50.48888779 ], [ 166.30444336, -50.48444366 ], [ 166.30444336, -50.48444366 ] ] ], [ [ [ 166.50639343, -48.05888748 ], [ 166.49583435, -48.06416702 ], [ 166.50111389, -48.05833435 ], [ 166.50639343, -48.05888748 ], [ 166.50639343, -48.05888748 ] ] ], [ [ [ 166.51445007, -48.05222321 ], [ 166.51805115, -48.05361176 ], [ 166.511108400000012, -48.05749893 ], [ 166.51445007, -48.05222321 ], [ 166.51445007, -48.05222321 ] ] ], [ [ [ 166.62277222, -48.0391655 ], [ 166.63000488, -48.04416656 ], [ 166.61305237, -48.04222107 ], [ 166.62277222, -48.0391655 ], [ 166.62277222, -48.0391655 ] ] ], [ [ [ 166.605270389999987, -48.01361084 ], [ 166.6166687, -48.02944565 ], [ 166.612503049999987, -48.03972244 ], [ 166.6000061, -48.02916718 ], [ 166.58947754, -48.0353241 ], [ 166.571105960000011, -48.0391655 ], [ 166.573303220000014, -48.02840042 ], [ 166.58898926, -48.02861023 ], [ 166.605270389999987, -48.01361084 ], [ 166.605270389999987, -48.01361084 ] ] ], [ [ [ 166.604995730000013, -48.00999832 ], [ 166.605270389999987, -48.01277924 ], [ 166.602493290000012, -48.01111221 ], [ 166.604995730000013, -48.00999832 ], [ 166.604995730000013, -48.00999832 ] ] ], [ [ [ 167.5, -47.28944397 ], [ 167.49694824, -47.28888702 ], [ 167.49977112, -47.28827667 ], [ 167.5, -47.28944397 ], [ 167.5, -47.28944397 ] ] ], [ [ [ 167.57920837, -47.27503586 ], [ 167.57574463, -47.27414703 ], [ 167.57756042, -47.27342987 ], [ 167.57920837, -47.27503586 ], [ 167.57920837, -47.27503586 ] ] ], [ [ [ 167.397384640000013, -47.26433563 ], [ 167.396392819999988, -47.27166748 ], [ 167.39039612, -47.26906204 ], [ 167.397384640000013, -47.26433563 ], [ 167.397384640000013, -47.26433563 ] ] ], [ [ [ 167.45350647, -47.25245285 ], [ 167.45225525, -47.25150299 ], [ 167.45474243000001, -47.25172806 ], [ 167.45350647, -47.25245285 ], [ 167.45350647, -47.25245285 ] ] ], [ [ [ 167.43817139, -47.24180984 ], [ 167.43864441, -47.24065399 ], [ 167.43963623, -47.24137878 ], [ 167.43817139, -47.24180984 ], [ 167.43817139, -47.24180984 ] ] ], [ [ [ 167.65989685, -47.24184418 ], [ 167.6567688, -47.24057388 ], [ 167.660797120000012, -47.23722839 ], [ 167.65989685, -47.24184418 ], [ 167.65989685, -47.24184418 ] ] ], [ [ [ 167.61784363000001, -47.23750687 ], [ 167.616439820000011, -47.23683929 ], [ 167.617935179999989, -47.23656082 ], [ 167.61784363000001, -47.23750687 ], [ 167.61784363000001, -47.23750687 ] ] ], [ [ [ 167.34750366, -47.23110962 ], [ 167.34971619, -47.23277664 ], [ 167.34527588, -47.23277664 ], [ 167.34750366, -47.23110962 ], [ 167.34750366, -47.23110962 ] ] ], [ [ [ 167.35194397, -47.23138809 ], [ 167.35083008, -47.23249817 ], [ 167.3500061, -47.22999954 ], [ 167.35194397, -47.23138809 ], [ 167.35194397, -47.23138809 ] ] ], [ [ [ 167.35444641, -47.22888947 ], [ 167.35583496000001, -47.23138809 ], [ 167.352493290000012, -47.22972107 ], [ 167.35444641, -47.22888947 ], [ 167.35444641, -47.22888947 ] ] ], [ [ [ 167.36805725, -47.2286644 ], [ 167.36555481, -47.2294426 ], [ 167.36616516, -47.22766495 ], [ 167.36805725, -47.2286644 ], [ 167.36805725, -47.2286644 ] ] ], [ [ [ 167.36416626, -47.22777939 ], [ 167.36050415, -47.23075485 ], [ 167.362777709999989, -47.22638702 ], [ 167.36416626, -47.22777939 ], [ 167.36416626, -47.22777939 ] ] ], [ [ [ 167.37382507, -47.22800064 ], [ 167.37091064, -47.22599792 ], [ 167.37417603, -47.22644424 ], [ 167.37382507, -47.22800064 ], [ 167.37382507, -47.22800064 ] ] ], [ [ [ 167.43235779, -47.2241745 ], [ 167.440902709999989, -47.22929764 ], [ 167.43916321, -47.23777771 ], [ 167.43147278, -47.23591614 ], [ 167.42718506, -47.24356079 ], [ 167.40177917, -47.25461578 ], [ 167.400619510000013, -47.26068497 ], [ 167.38896179, -47.25841141 ], [ 167.37693787, -47.24869919 ], [ 167.39219666, -47.23535156 ], [ 167.41088867, -47.22619247 ], [ 167.43235779, -47.2241745 ], [ 167.43235779, -47.2241745 ] ] ], [ [ [ 167.37727356, -47.22216415 ], [ 167.3777771, -47.22360992 ], [ 167.375, -47.22333145 ], [ 167.37727356, -47.22216415 ], [ 167.37727356, -47.22216415 ] ] ], [ [ [ 167.44085693, -47.22248077 ], [ 167.42977905, -47.22219467 ], [ 167.432968140000014, -47.21888733 ], [ 167.44085693, -47.22248077 ], [ 167.44085693, -47.22248077 ] ] ], [ [ [ 167.331115720000014, -47.21722412 ], [ 167.325927729999989, -47.22938919 ], [ 167.31893921, -47.2266655 ], [ 167.331115720000014, -47.21722412 ], [ 167.331115720000014, -47.21722412 ] ] ], [ [ [ 167.63980103, -47.21798706 ], [ 167.63821411, -47.21854401 ], [ 167.637634279999986, -47.21754074 ], [ 167.63980103, -47.21798706 ], [ 167.63980103, -47.21798706 ] ] ], [ [ [ 167.626724239999987, -47.21411133 ], [ 167.62472534, -47.2136116 ], [ 167.62602234, -47.21272278 ], [ 167.626724239999987, -47.21411133 ], [ 167.626724239999987, -47.21411133 ] ] ], [ [ [ 167.48071289, -47.21049118 ], [ 167.47805786, -47.21155167 ], [ 167.4786377, -47.21049118 ], [ 167.48071289, -47.21049118 ], [ 167.48071289, -47.21049118 ] ] ], [ [ [ 167.387222290000011, -47.20916748 ], [ 167.39952087, -47.21683884 ], [ 167.386917110000013, -47.22244263 ], [ 167.37536621000001, -47.21959305 ], [ 167.387222290000011, -47.20916748 ], [ 167.387222290000011, -47.20916748 ] ] ], [ [ [ 167.482498170000014, -47.20722198 ], [ 167.48445129000001, -47.20888901 ], [ 167.482223510000011, -47.20916748 ], [ 167.482498170000014, -47.20722198 ], [ 167.482498170000014, -47.20722198 ] ] ], [ [ [ 167.657302859999987, -47.20727158 ], [ 167.669723510000011, -47.2136116 ], [ 167.667175289999989, -47.22390366 ], [ 167.66130066, -47.22400665 ], [ 167.651474, -47.20884323 ], [ 167.657302859999987, -47.20727158 ], [ 167.657302859999987, -47.20727158 ] ] ], [ [ [ 167.454833979999989, -47.20213318 ], [ 167.452926639999987, -47.20486832 ], [ 167.449691769999987, -47.20293045 ], [ 167.454833979999989, -47.20213318 ], [ 167.454833979999989, -47.20213318 ] ] ], [ [ [ 167.67382813, -47.19886398 ], [ 167.68278503, -47.19972229 ], [ 167.67832947, -47.21222305 ], [ 167.65943909, -47.20527649 ], [ 167.67382813, -47.19886398 ], [ 167.67382813, -47.19886398 ] ] ], [ [ [ 167.78457642, -47.19394684 ], [ 167.783111569999988, -47.19411469 ], [ 167.782699580000013, -47.1918335 ], [ 167.78457642, -47.19394684 ], [ 167.78457642, -47.19394684 ] ] ], [ [ [ 167.78393555, -47.18997574 ], [ 167.7817688, -47.19002914 ], [ 167.78208923, -47.18875885 ], [ 167.78393555, -47.18997574 ], [ 167.78393555, -47.18997574 ] ] ], [ [ [ 167.707962040000012, -47.18030167 ], [ 167.724105830000013, -47.18801498 ], [ 167.72555542, -47.19333267 ], [ 167.71638489, -47.19666672 ], [ 167.71694946, -47.20249939 ], [ 167.70555115, -47.20972061 ], [ 167.6985321, -47.20748138 ], [ 167.70246887, -47.19822311 ], [ 167.689544680000012, -47.18768311 ], [ 167.69993591, -47.17755508 ], [ 167.707962040000012, -47.18030167 ], [ 167.707962040000012, -47.18030167 ] ] ], [ [ [ 167.538604740000011, -47.17555618 ], [ 167.53833008, -47.17777634 ], [ 167.534729, -47.17638779 ], [ 167.538604740000011, -47.17555618 ], [ 167.538604740000011, -47.17555618 ] ] ], [ [ [ 167.508605960000011, -47.17083359 ], [ 167.506347659999989, -47.17029572 ], [ 167.50971985000001, -47.16860962 ], [ 167.508605960000011, -47.17083359 ], [ 167.508605960000011, -47.17083359 ] ] ], [ [ [ 167.518615720000014, -47.16527939 ], [ 167.51689148, -47.16761017 ], [ 167.51445007, -47.16666794 ], [ 167.518615720000014, -47.16527939 ], [ 167.518615720000014, -47.16527939 ] ] ], [ [ [ 167.701110840000013, -47.16110992 ], [ 167.69917297, -47.16027832 ], [ 167.70083618000001, -47.1594429 ], [ 167.701110840000013, -47.16110992 ], [ 167.701110840000013, -47.16110992 ] ] ], [ [ [ 167.414855960000011, -47.13747787 ], [ 167.41841125, -47.14006805 ], [ 167.4158783, -47.14207458 ], [ 167.414855960000011, -47.13747787 ], [ 167.414855960000011, -47.13747787 ] ] ], [ [ [ 167.51832581, -47.13861084 ], [ 167.512496950000013, -47.13944626 ], [ 167.517227170000012, -47.13639069 ], [ 167.51832581, -47.13861084 ], [ 167.51832581, -47.13861084 ] ] ], [ [ [ 167.52737427, -47.13625336 ], [ 167.52149963, -47.13922119 ], [ 167.523773190000014, -47.13506317 ], [ 167.52737427, -47.13625336 ], [ 167.52737427, -47.13625336 ] ] ], [ [ [ 167.40638733, -47.13499832 ], [ 167.40805054, -47.15416718 ], [ 167.39694214, -47.14444351 ], [ 167.40638733, -47.13499832 ], [ 167.40638733, -47.13499832 ] ] ], [ [ [ 167.56735229, -47.13651657 ], [ 167.56616211, -47.13214493 ], [ 167.57038879000001, -47.13142776 ], [ 167.56735229, -47.13651657 ], [ 167.56735229, -47.13651657 ] ] ], [ [ [ 167.53805542, -47.12888718 ], [ 167.53833008, -47.13138962 ], [ 167.53416443, -47.13000107 ], [ 167.53805542, -47.12888718 ], [ 167.53805542, -47.12888718 ] ] ], [ [ [ 168.210311890000014, -47.12322617 ], [ 168.20956421, -47.12093735 ], [ 168.21221924, -47.1202774 ], [ 168.210311890000014, -47.12322617 ], [ 168.210311890000014, -47.12322617 ] ] ], [ [ [ 168.15039063, -47.11911774 ], [ 168.16194153, -47.12611008 ], [ 168.14944458, -47.1258316 ], [ 168.15039063, -47.11911774 ], [ 168.15039063, -47.11911774 ] ] ], [ [ [ 167.553771970000014, -47.11626053 ], [ 167.55667114, -47.11972046 ], [ 167.54852295, -47.12198639 ], [ 167.553771970000014, -47.11626053 ], [ 167.553771970000014, -47.11626053 ] ] ], [ [ [ 167.549728390000013, -47.11750031 ], [ 167.54804993, -47.11777878 ], [ 167.54943848, -47.11583328 ], [ 167.549728390000013, -47.11750031 ], [ 167.549728390000013, -47.11750031 ] ] ], [ [ [ 168.207504269999987, -47.11416626 ], [ 168.21194458, -47.11639023 ], [ 168.208892819999988, -47.11999893 ], [ 168.207504269999987, -47.11416626 ], [ 168.207504269999987, -47.11416626 ] ] ], [ [ [ 168.20195007, -47.11222076 ], [ 168.201660159999989, -47.11639023 ], [ 168.19778442, -47.11333466 ], [ 168.20195007, -47.11222076 ], [ 168.20195007, -47.11222076 ] ] ], [ [ [ 168.19917297, -47.11055374 ], [ 168.19781494, -47.10887146 ], [ 168.200119019999988, -47.10957336 ], [ 168.19917297, -47.11055374 ], [ 168.19917297, -47.11055374 ] ] ], [ [ [ 168.15759277, -47.10903549 ], [ 168.15805054, -47.11111069 ], [ 168.15501404, -47.10842133 ], [ 168.15759277, -47.10903549 ], [ 168.15759277, -47.10903549 ] ] ], [ [ [ 168.201660159999989, -47.10194397 ], [ 168.203338620000011, -47.10833359 ], [ 168.19639587, -47.1044426 ], [ 168.201660159999989, -47.10194397 ], [ 168.201660159999989, -47.10194397 ] ] ], [ [ [ 168.15446472, -47.0867424 ], [ 168.15113831, -47.08707428 ], [ 168.15097046, -47.08629608 ], [ 168.15446472, -47.0867424 ], [ 168.15446472, -47.0867424 ] ] ], [ [ [ 168.21861267, -47.07083511 ], [ 168.2277832, -47.07416534 ], [ 168.21499634, -47.07527924 ], [ 168.21861267, -47.07083511 ], [ 168.21861267, -47.07083511 ] ] ], [ [ [ 168.21873474, -47.05986786 ], [ 168.21556091, -47.0625 ], [ 168.21360779, -47.06000137 ], [ 168.21873474, -47.05986786 ], [ 168.21873474, -47.05986786 ] ] ], [ [ [ 168.22724915, -47.02205658 ], [ 168.22917175, -47.0233345 ], [ 168.227325439999987, -47.02412033 ], [ 168.22724915, -47.02205658 ], [ 168.22724915, -47.02205658 ] ] ], [ [ [ 168.11213684, -46.99040604 ], [ 168.110305790000012, -46.98958206 ], [ 168.111389159999987, -46.98749924 ], [ 168.11213684, -46.99040604 ], [ 168.11213684, -46.99040604 ] ] ], [ [ [ 168.13583374000001, -46.95972061 ], [ 168.14115906, -46.96192169 ], [ 168.13381958, -46.96536255 ], [ 168.13583374000001, -46.95972061 ], [ 168.13583374000001, -46.95972061 ] ] ], [ [ [ 168.13856506, -46.95561981 ], [ 168.14416504, -46.95666504 ], [ 168.141387939999987, -46.95861053 ], [ 168.13856506, -46.95561981 ], [ 168.13856506, -46.95561981 ] ] ], [ [ [ 168.142776489999989, -46.95083237 ], [ 168.14694214, -46.95500183 ], [ 168.141113280000013, -46.95249939 ], [ 168.142776489999989, -46.95083237 ], [ 168.142776489999989, -46.95083237 ] ] ], [ [ [ 168.12583923, -46.94972229 ], [ 168.13221741000001, -46.95416641 ], [ 168.12722778, -46.95444489 ], [ 168.12583923, -46.94972229 ], [ 168.12583923, -46.94972229 ] ] ], [ [ [ 168.13528442, -46.94944382 ], [ 168.133605960000011, -46.95249939 ], [ 168.13000488, -46.95027924 ], [ 168.13528442, -46.94944382 ], [ 168.13528442, -46.94944382 ] ] ], [ [ [ 168.18167114, -46.94805527 ], [ 168.18205261, -46.95042038 ], [ 168.17895508, -46.94924545 ], [ 168.18167114, -46.94805527 ], [ 168.18167114, -46.94805527 ] ] ], [ [ [ 168.12472534, -46.92416763 ], [ 168.13417053, -46.93055725 ], [ 168.15333557, -46.93249893 ], [ 168.15499878, -46.93722153 ], [ 168.12693787, -46.93916702 ], [ 168.12194824, -46.93111038 ], [ 168.10806274, -46.92666626 ], [ 168.12472534, -46.92416763 ], [ 168.12472534, -46.92416763 ] ] ], [ [ [ 168.152771, -46.9094429 ], [ 168.1625061, -46.91666794 ], [ 168.15333557, -46.91999817 ], [ 168.14694214, -46.91527939 ], [ 168.152771, -46.9094429 ], [ 168.152771, -46.9094429 ] ] ], [ [ [ 168.124542240000011, -46.90791702 ], [ 168.1194458, -46.90750122 ], [ 168.12304688, -46.90616989 ], [ 168.124542240000011, -46.90791702 ], [ 168.124542240000011, -46.90791702 ] ] ], [ [ [ 168.24055481, -46.9011116 ], [ 168.24667358, -46.9038887 ], [ 168.25083923, -46.91555405 ], [ 168.227493290000012, -46.91333389 ], [ 168.24055481, -46.9011116 ], [ 168.24055481, -46.9011116 ] ] ], [ [ [ 168.00305176, -46.90222168 ], [ 168.00125122, -46.90122223 ], [ 168.00392151, -46.9011116 ], [ 168.00305176, -46.90222168 ], [ 168.00305176, -46.90222168 ] ] ], [ [ [ 168.264999390000014, -46.86416626 ], [ 168.26856995, -46.86901855 ], [ 168.26098633, -46.86492538 ], [ 168.264999390000014, -46.86416626 ], [ 168.264999390000014, -46.86416626 ] ] ], [ [ [ 168.23049927, -46.86399078 ], [ 168.23173523, -46.86963272 ], [ 168.22111511, -46.86833191 ], [ 168.23049927, -46.86399078 ], [ 168.23049927, -46.86399078 ] ] ], [ [ [ 168.21611023, -46.84555435 ], [ 168.21748352, -46.84999084 ], [ 168.20684814, -46.85079575 ], [ 168.21611023, -46.84555435 ], [ 168.21611023, -46.84555435 ] ] ], [ [ [ 168.21905518, -46.82765579 ], [ 168.22193909, -46.83944321 ], [ 168.21499634, -46.8386116 ], [ 168.21905518, -46.82765579 ], [ 168.21905518, -46.82765579 ] ] ], [ [ [ 168.24555969, -46.82583237 ], [ 168.24333191, -46.82305527 ], [ 168.24749756, -46.82333374 ], [ 168.24555969, -46.82583237 ], [ 168.24555969, -46.82583237 ] ] ], [ [ [ 168.46110535, -46.82194519 ], [ 168.45443726, -46.82249832 ], [ 168.457778929999989, -46.82055664 ], [ 168.46110535, -46.82194519 ], [ 168.46110535, -46.82194519 ] ] ], [ [ [ 168.452774049999988, -46.81972122 ], [ 168.45443726, -46.82110977 ], [ 168.450271609999987, -46.82389069 ], [ 168.452774049999988, -46.81972122 ], [ 168.452774049999988, -46.81972122 ] ] ], [ [ [ 168.46444702, -46.81916809 ], [ 168.46722412, -46.82083511 ], [ 168.465759279999986, -46.82130051 ], [ 168.46444702, -46.81916809 ], [ 168.46444702, -46.81916809 ] ] ], [ [ [ 168.47555542, -46.81861115 ], [ 168.47666931, -46.82027817 ], [ 168.47444153, -46.82027817 ], [ 168.47555542, -46.81861115 ], [ 168.47555542, -46.81861115 ] ] ], [ [ [ 168.47027588, -46.81555557 ], [ 168.47309875, -46.817276 ], [ 168.46833801, -46.8172226 ], [ 168.47027588, -46.81555557 ], [ 168.47027588, -46.81555557 ] ] ], [ [ [ 168.237503049999987, -46.81416702 ], [ 168.24082947, -46.81916809 ], [ 168.236404420000014, -46.81502151 ], [ 168.237503049999987, -46.81416702 ], [ 168.237503049999987, -46.81416702 ] ] ], [ [ [ 168.50500488, -46.80027771 ], [ 168.50889587, -46.80389023 ], [ 168.50138855, -46.80638885 ], [ 168.50500488, -46.80027771 ], [ 168.50500488, -46.80027771 ] ] ], [ [ [ 168.55778503, -46.7863884 ], [ 168.55888367, -46.78749847 ], [ 168.55499268, -46.7891655 ], [ 168.55778503, -46.7863884 ], [ 168.55778503, -46.7863884 ] ] ], [ [ [ 168.46583557, -46.76694489 ], [ 168.46722412, -46.76833344 ], [ 168.46388245, -46.76861191 ], [ 168.46583557, -46.76694489 ], [ 168.46583557, -46.76694489 ] ] ], [ [ [ 168.421661379999989, -46.76527786 ], [ 168.42694092, -46.77166748 ], [ 168.421112060000013, -46.77027893 ], [ 168.421661379999989, -46.76527786 ], [ 168.421661379999989, -46.76527786 ] ] ], [ [ [ 168.57417297, -46.76361084 ], [ 168.581115720000014, -46.77222061 ], [ 168.56944275, -46.77361298 ], [ 168.56582642, -46.76833344 ], [ 168.57417297, -46.76361084 ], [ 168.57417297, -46.76361084 ] ] ], [ [ [ 168.553894039999989, -46.75138855 ], [ 168.556732180000012, -46.75255203 ], [ 168.55528259, -46.75416565 ], [ 168.553894039999989, -46.75138855 ], [ 168.553894039999989, -46.75138855 ] ] ], [ [ [ 167.59277344, -46.75111008 ], [ 167.59693909, -46.75388718 ], [ 167.591445920000012, -46.75240707 ], [ 167.59277344, -46.75111008 ], [ 167.59277344, -46.75111008 ] ] ], [ [ [ 167.61425781, -46.74930954 ], [ 167.62246704, -46.75688934 ], [ 167.63952637, -46.75125885 ], [ 167.6459198, -46.76494598 ], [ 167.66221619, -46.76361084 ], [ 167.66383362, -46.78093719 ], [ 167.641387939999987, -46.79694366 ], [ 167.63851929, -46.79301453 ], [ 167.62083435, -46.79583359 ], [ 167.61193848, -46.77527618 ], [ 167.59837341, -46.76741028 ], [ 167.60305786, -46.75500107 ], [ 167.61425781, -46.74930954 ], [ 167.61425781, -46.74930954 ] ] ], [ [ [ 168.59832764, -46.7508316 ], [ 168.59584045, -46.7508316 ], [ 168.5955658, -46.74856567 ], [ 168.59832764, -46.7508316 ], [ 168.59832764, -46.7508316 ] ] ], [ [ [ 168.53277588, -46.73527908 ], [ 168.54556274, -46.75416565 ], [ 168.53778076, -46.76694489 ], [ 168.53944397, -46.77222061 ], [ 168.526855469999987, -46.77709961 ], [ 168.514999390000014, -46.78861237 ], [ 168.51194763, -46.79972076 ], [ 168.50444031, -46.79472351 ], [ 168.50944519, -46.78555679 ], [ 168.50721741000001, -46.77277756 ], [ 168.49806213, -46.77916718 ], [ 168.485839840000011, -46.77750015 ], [ 168.482223510000011, -46.78111267 ], [ 168.47084045, -46.77194595 ], [ 168.47499084, -46.76647568 ], [ 168.488891599999988, -46.77305603 ], [ 168.50027466, -46.76916504 ], [ 168.49082947, -46.76722336 ], [ 168.49555969, -46.76166534 ], [ 168.478881840000014, -46.7547226 ], [ 168.49278259, -46.7527771 ], [ 168.50083923, -46.76027679 ], [ 168.52833557, -46.74638748 ], [ 168.52555847, -46.73722076 ], [ 168.53277588, -46.73527908 ], [ 168.53277588, -46.73527908 ] ] ], [ [ [ 167.72413635, -46.70757294 ], [ 167.71789551, -46.70693588 ], [ 167.722442629999989, -46.7058754 ], [ 167.72413635, -46.70757294 ], [ 167.72413635, -46.70757294 ] ] ], [ [ [ 167.71615601, -46.70071793 ], [ 167.71983337, -46.70267487 ], [ 167.71177673, -46.70674133 ], [ 167.71615601, -46.70071793 ], [ 167.71615601, -46.70071793 ] ] ], [ [ [ 167.70817566, -46.69832993 ], [ 167.705154420000014, -46.69745255 ], [ 167.707778929999989, -46.69610977 ], [ 167.70817566, -46.69832993 ], [ 167.70817566, -46.69832993 ] ] ], [ [ [ 167.8694458, -46.68361282 ], [ 167.882064820000011, -46.69060898 ], [ 167.89916992, -46.69499969 ], [ 167.90306091, -46.69916534 ], [ 167.92524719, -46.69953537 ], [ 167.936721799999987, -46.71021271 ], [ 167.94374084, -46.70782852 ], [ 167.95936584, -46.72072601 ], [ 167.977493290000012, -46.72091675 ], [ 167.979858400000012, -46.74587631 ], [ 167.98478699, -46.76029587 ], [ 167.9919281, -46.77083206 ], [ 168.00500488, -46.77444458 ], [ 167.99916077, -46.7808342 ], [ 168.00305176, -46.78861237 ], [ 168.020278929999989, -46.80166626 ], [ 168.03334045, -46.79944611 ], [ 168.034729, -46.81361008 ], [ 168.05497742, -46.82240295 ], [ 168.064392090000013, -46.82227325 ], [ 168.08166504, -46.83166504 ], [ 168.0874939, -46.82944489 ], [ 168.09368896, -46.8387146 ], [ 168.08055115, -46.84166718 ], [ 168.082229610000013, -46.85416794 ], [ 168.08917236, -46.85638809 ], [ 168.09750366, -46.85138702 ], [ 168.112503049999987, -46.86111069 ], [ 168.12361145, -46.86277771 ], [ 168.12638855, -46.85490799 ], [ 168.139160159999989, -46.86166763 ], [ 168.14555359, -46.86972046 ], [ 168.12611389, -46.8758316 ], [ 168.13043213, -46.88153839 ], [ 168.14971924, -46.87749863 ], [ 168.14582825, -46.88916779 ], [ 168.13305664, -46.89055634 ], [ 168.12861633, -46.89805603 ], [ 168.140274049999988, -46.90000153 ], [ 168.15611267, -46.89389038 ], [ 168.16444397, -46.89583206 ], [ 168.1444397, -46.90250015 ], [ 168.145004269999987, -46.90888977 ], [ 168.13305664, -46.91027832 ], [ 168.12249756, -46.9038887 ], [ 168.107772829999988, -46.90361023 ], [ 168.09249878, -46.90833282 ], [ 168.07000732, -46.90055466 ], [ 168.06694031, -46.90750122 ], [ 168.05194092, -46.9058342 ], [ 168.04194641, -46.90888977 ], [ 168.06259155, -46.91882706 ], [ 168.043884279999986, -46.91972351 ], [ 168.03555298, -46.91305542 ], [ 168.0249939, -46.91361237 ], [ 168.012222290000011, -46.90277863 ], [ 168.02456665, -46.90365601 ], [ 168.0319519, -46.89749908 ], [ 168.01832581, -46.89333344 ], [ 168.012771609999987, -46.88666534 ], [ 168.01705933, -46.88053513 ], [ 168.0080719, -46.87617874 ], [ 168.00889587, -46.8702774 ], [ 167.991287230000012, -46.87130356 ], [ 168.00332642, -46.8741684 ], [ 167.99667358, -46.88611221 ], [ 168.002975459999988, -46.8952446 ], [ 167.99243164, -46.89085388 ], [ 167.97833252, -46.89222336 ], [ 167.97805786, -46.89916611 ], [ 167.9694519, -46.90000153 ], [ 167.966888430000012, -46.90829086 ], [ 167.9788208, -46.92956543 ], [ 167.97250366, -46.9347229 ], [ 167.96333313, -46.93333435 ], [ 167.95036316, -46.93907928 ], [ 167.94006348, -46.95204163 ], [ 167.91671753, -46.96558762 ], [ 167.91627502, -46.97104645 ], [ 167.93496704, -46.96521378 ], [ 167.942306519999988, -46.95900345 ], [ 167.96333313, -46.95360947 ], [ 167.96888733, -46.94083405 ], [ 167.982482909999987, -46.93995667 ], [ 167.986114500000014, -46.93000031 ], [ 168.013305659999986, -46.92422485 ], [ 168.02806091, -46.93916702 ], [ 168.02278137, -46.95083237 ], [ 168.03250122, -46.94666672 ], [ 168.06222534, -46.94638824 ], [ 168.07305908, -46.95500183 ], [ 168.08805847, -46.95472336 ], [ 168.09805298, -46.95999908 ], [ 168.113632200000012, -46.9595108 ], [ 168.118896479999989, -46.95583344 ], [ 168.13000488, -46.95777893 ], [ 168.11778259, -46.96944427 ], [ 168.09388733, -46.97333145 ], [ 168.08857727, -46.97872162 ], [ 168.07333374000001, -46.98361206 ], [ 168.076385499999986, -46.99083328 ], [ 168.09648132, -46.98810959 ], [ 168.12405396, -46.99253082 ], [ 168.13555908, -46.98138809 ], [ 168.142227170000012, -46.98277664 ], [ 168.142501829999986, -46.96944427 ], [ 168.15943909, -46.96749878 ], [ 168.15460205, -46.97341537 ], [ 168.17378235000001, -46.97116852 ], [ 168.16667175, -46.95888901 ], [ 168.172225950000012, -46.95500183 ], [ 168.172500609999986, -46.92805481 ], [ 168.1875, -46.92889023 ], [ 168.19296265, -46.939785 ], [ 168.18278503, -46.93916702 ], [ 168.173889159999987, -46.95305634 ], [ 168.184631349999989, -46.95792007 ], [ 168.177505489999987, -46.9738884 ], [ 168.19111633, -46.97972107 ], [ 168.19517517, -46.98671722 ], [ 168.208618159999986, -46.9944458 ], [ 168.21633911, -46.99338531 ], [ 168.21020508, -47.00444794 ], [ 168.202774049999988, -47.00805664 ], [ 168.21417236, -47.01722336 ], [ 168.228607180000012, -47.01361084 ], [ 168.22589111, -47.02105713 ], [ 168.208618159999986, -47.02722168 ], [ 168.20423889, -47.03230286 ], [ 168.21861267, -47.03499985 ], [ 168.20916748, -47.03944397 ], [ 168.20056152, -47.0569458 ], [ 168.211395259999989, -47.06222153 ], [ 168.20832825, -47.0672226 ], [ 168.19416809, -47.06194305 ], [ 168.173889159999987, -47.04916763 ], [ 168.168609620000012, -47.06611252 ], [ 168.17416382, -47.07472229 ], [ 168.186203, -47.08189011 ], [ 168.206390379999988, -47.08194351 ], [ 168.21665955, -47.09500122 ], [ 168.198608400000012, -47.0988884 ], [ 168.19139099, -47.09111023 ], [ 168.19430542, -47.08590317 ], [ 168.17971802, -47.08750153 ], [ 168.166107180000012, -47.08333206 ], [ 168.14555359, -47.08361053 ], [ 168.143615720000014, -47.09222412 ], [ 168.1555481, -47.09944534 ], [ 168.15750122, -47.10777664 ], [ 168.15083313, -47.10722351 ], [ 168.15306091, -47.11666489 ], [ 168.14303589, -47.11813736 ], [ 168.139999390000014, -47.11000061 ], [ 168.13444519, -47.11166763 ], [ 168.111114500000014, -47.09999847 ], [ 168.103607180000012, -47.10527802 ], [ 168.118896479999989, -47.10610962 ], [ 168.12388611, -47.11444473 ], [ 168.13528442, -47.11916733 ], [ 168.12333679, -47.12527847 ], [ 168.10533142, -47.11591721 ], [ 168.08416748, -47.11277771 ], [ 168.07417297, -47.10527802 ], [ 168.06433105, -47.11180878 ], [ 168.06083679, -47.12333298 ], [ 168.05166626, -47.12111282 ], [ 168.040771479999989, -47.1126976 ], [ 168.04724121000001, -47.12662125 ], [ 168.03305054, -47.13000107 ], [ 168.0194397, -47.12666702 ], [ 168.01228333, -47.11881256 ], [ 168.00305176, -47.12250137 ], [ 167.99357605, -47.11655807 ], [ 167.9972229, -47.125 ], [ 167.984725950000012, -47.12916565 ], [ 167.9813385, -47.13531113 ], [ 167.97389221, -47.13277817 ], [ 167.96194458, -47.13995361 ], [ 167.94932556, -47.12861633 ], [ 167.9319458, -47.14333344 ], [ 167.92778015, -47.1530571 ], [ 167.912307739999989, -47.15124893 ], [ 167.90222168, -47.16194534 ], [ 167.90333557, -47.16666794 ], [ 167.89054871, -47.16805649 ], [ 167.882171629999988, -47.17573166 ], [ 167.87028503, -47.16972351 ], [ 167.86465454, -47.18160248 ], [ 167.84492493, -47.18038177 ], [ 167.83528137, -47.18972397 ], [ 167.81277466, -47.1922226 ], [ 167.79444885, -47.18777847 ], [ 167.78889465, -47.18111038 ], [ 167.78009033, -47.18519974 ], [ 167.7583313, -47.17166519 ], [ 167.74543762, -47.17858124 ], [ 167.72673035, -47.18347549 ], [ 167.71723938, -47.18043137 ], [ 167.71665955, -47.16666794 ], [ 167.69833374000001, -47.15139008 ], [ 167.694564820000011, -47.16605377 ], [ 167.67912292, -47.17075729 ], [ 167.66862488000001, -47.16984558 ], [ 167.675308230000013, -47.17617416 ], [ 167.67410278, -47.19470215 ], [ 167.65293884, -47.20441055 ], [ 167.643615720000014, -47.20472336 ], [ 167.63143921, -47.21306229 ], [ 167.623550419999987, -47.21004868 ], [ 167.61569214, -47.21461487 ], [ 167.60629272, -47.2117424 ], [ 167.59835815, -47.21701431 ], [ 167.61143494, -47.222229 ], [ 167.6030426, -47.22868729 ], [ 167.58427429, -47.22891617 ], [ 167.57794189, -47.23715591 ], [ 167.56710815, -47.23744965 ], [ 167.55911255, -47.22936249 ], [ 167.5556488, -47.23286438 ], [ 167.56462097, -47.24188995 ], [ 167.58357239, -47.23940277 ], [ 167.59854126, -47.23478317 ], [ 167.62249756, -47.23749924 ], [ 167.63864136, -47.23433685 ], [ 167.63018799, -47.23085403 ], [ 167.63879395, -47.22163773 ], [ 167.65118408, -47.22171783 ], [ 167.66278076, -47.23027802 ], [ 167.64619446, -47.24502182 ], [ 167.65499878, -47.24333191 ], [ 167.65357971, -47.25409317 ], [ 167.64880371000001, -47.25341415 ], [ 167.645446779999986, -47.2638092 ], [ 167.63322449, -47.26722336 ], [ 167.6181488, -47.26717377 ], [ 167.61131287, -47.27199173 ], [ 167.60929871, -47.25519943 ], [ 167.61709595, -47.24802017 ], [ 167.591720579999986, -47.25019073 ], [ 167.57974243000001, -47.25682068 ], [ 167.58888245, -47.26216507 ], [ 167.56916809, -47.27222061 ], [ 167.572494510000013, -47.27916718 ], [ 167.56054688, -47.27734375 ], [ 167.534729, -47.28694534 ], [ 167.522399900000011, -47.28713226 ], [ 167.51522827, -47.28279114 ], [ 167.49537659, -47.28644943 ], [ 167.49012756, -47.28367996 ], [ 167.491394039999989, -47.27361298 ], [ 167.485839840000011, -47.27083206 ], [ 167.48020935, -47.27859497 ], [ 167.466308590000011, -47.28299332 ], [ 167.45477295, -47.27807617 ], [ 167.453750609999986, -47.26850891 ], [ 167.44665527, -47.26686478 ], [ 167.44813538, -47.25811005 ], [ 167.460021970000014, -47.25376892 ], [ 167.459747310000012, -47.23517609 ], [ 167.46662903, -47.23220825 ], [ 167.46583557, -47.21694565 ], [ 167.48944092, -47.20912552 ], [ 167.490005489999987, -47.20194626 ], [ 167.50419617, -47.20249939 ], [ 167.50944519, -47.19805527 ], [ 167.51826477, -47.20245743 ], [ 167.521972659999989, -47.18923187 ], [ 167.537460329999988, -47.18405151 ], [ 167.544998170000014, -47.17651749 ], [ 167.56668091, -47.17695618 ], [ 167.57307434, -47.16711426 ], [ 167.57524109, -47.15363693 ], [ 167.572067260000011, -47.14870071 ], [ 167.56040955, -47.16164398 ], [ 167.56082153, -47.15127182 ], [ 167.57260132, -47.14303589 ], [ 167.5725708, -47.12996292 ], [ 167.577774049999988, -47.11777878 ], [ 167.58805847, -47.11444473 ], [ 167.578582759999989, -47.11088943 ], [ 167.56910706, -47.11405182 ], [ 167.55860901, -47.0961113 ], [ 167.55860901, -47.09083176 ], [ 167.578338620000011, -47.08499908 ], [ 167.58305359, -47.07805634 ], [ 167.597320559999986, -47.06959152 ], [ 167.599380489999987, -47.05912018 ], [ 167.60752869, -47.05577087 ], [ 167.62110901, -47.0419426 ], [ 167.65467834, -47.03672791 ], [ 167.69000244, -47.04666519 ], [ 167.70341492, -47.04879761 ], [ 167.71472168, -47.0419426 ], [ 167.70436096, -47.03266525 ], [ 167.69351196, -47.03577805 ], [ 167.69500732, -47.02166748 ], [ 167.6847229, -47.01472092 ], [ 167.69389343, -47.00888824 ], [ 167.69694519, -47.00111008 ], [ 167.6791687, -46.99583435 ], [ 167.68444824, -46.99166489 ], [ 167.683944700000012, -46.97803116 ], [ 167.669723510000011, -46.97888947 ], [ 167.668609620000012, -46.96250153 ], [ 167.6721344, -46.95671082 ], [ 167.66464233, -46.94715118 ], [ 167.68305969, -46.93861008 ], [ 167.6819458, -46.94527817 ], [ 167.67195129000001, -46.95027924 ], [ 167.67832947, -46.96222305 ], [ 167.6875, -46.9663887 ], [ 167.71191406, -46.96440125 ], [ 167.73326111, -46.95730591 ], [ 167.74472046, -46.95008469 ], [ 167.75805664, -46.93694305 ], [ 167.76724243000001, -46.91483307 ], [ 167.76713562, -46.89004135 ], [ 167.76441956, -46.88371277 ], [ 167.74591064, -46.87429428 ], [ 167.75764465, -46.87020493 ], [ 167.757339480000013, -46.86191559 ], [ 167.74850464, -46.85283279 ], [ 167.750930790000012, -46.84819412 ], [ 167.7401123, -46.83939362 ], [ 167.72332764, -46.83055496 ], [ 167.728286739999987, -46.82730484 ], [ 167.727493290000012, -46.81611252 ], [ 167.71543884, -46.80457687 ], [ 167.70944214, -46.80527878 ], [ 167.701660159999989, -46.79704285 ], [ 167.70466614, -46.78926468 ], [ 167.716995239999989, -46.78880692 ], [ 167.718536379999989, -46.78468704 ], [ 167.703338620000011, -46.75388718 ], [ 167.707229610000013, -46.7452774 ], [ 167.719253540000011, -46.74340439 ], [ 167.72540283, -46.72870636 ], [ 167.71833801, -46.71500015 ], [ 167.72505188, -46.71004868 ], [ 167.73901367, -46.7114296 ], [ 167.75471497, -46.69429016 ], [ 167.76187134, -46.69628525 ], [ 167.78781128, -46.6869812 ], [ 167.7938385, -46.69351959 ], [ 167.80723572, -46.69200897 ], [ 167.821365359999987, -46.69499969 ], [ 167.82929993, -46.70406342 ], [ 167.84104919, -46.70240021 ], [ 167.85838318, -46.69348526 ], [ 167.857635499999986, -46.68940735 ], [ 167.8694458, -46.68361282 ], [ 167.8694458, -46.68361282 ] ] ], [ [ [ 168.40834045, -46.64888763 ], [ 168.413604740000011, -46.65416718 ], [ 168.40361023, -46.65027618 ], [ 168.40834045, -46.64888763 ], [ 168.40834045, -46.64888763 ] ] ], [ [ [ 168.32194519, -46.56833267 ], [ 168.31721497, -46.57527924 ], [ 168.31416321, -46.57361221 ], [ 168.32194519, -46.56833267 ], [ 168.32194519, -46.56833267 ] ] ], [ [ [ 166.862243650000011, -46.57062912 ], [ 166.861419680000012, -46.56875992 ], [ 166.86430359, -46.56836319 ], [ 166.862243650000011, -46.57062912 ], [ 166.862243650000011, -46.57062912 ] ] ], [ [ [ 166.900756840000014, -46.56716537 ], [ 166.90722656, -46.57916641 ], [ 166.89074707, -46.57458878 ], [ 166.900756840000014, -46.56716537 ], [ 166.900756840000014, -46.56716537 ] ] ], [ [ [ 168.39193726, -46.56972122 ], [ 168.386108400000012, -46.56944275 ], [ 168.395004269999987, -46.56666565 ], [ 168.39193726, -46.56972122 ], [ 168.39193726, -46.56972122 ] ] ], [ [ [ 168.63221741000001, -46.56583405 ], [ 168.6340332, -46.56831741 ], [ 168.63082886, -46.56666565 ], [ 168.63221741000001, -46.56583405 ], [ 168.63221741000001, -46.56583405 ] ] ], [ [ [ 168.62611389, -46.56499863 ], [ 168.62832642, -46.56777954 ], [ 168.62666321, -46.56888962 ], [ 168.62611389, -46.56499863 ], [ 168.62611389, -46.56499863 ] ] ], [ [ [ 168.31416321, -46.55083466 ], [ 168.31333923, -46.55555725 ], [ 168.30833435, -46.55333328 ], [ 168.31416321, -46.55083466 ], [ 168.31416321, -46.55083466 ] ] ], [ [ [ 168.3500061, -46.54416656 ], [ 168.34666443, -46.54388809 ], [ 168.35098267, -46.54201508 ], [ 168.3500061, -46.54416656 ], [ 168.3500061, -46.54416656 ] ] ], [ [ [ 168.222229, -46.51605225 ], [ 168.21763611, -46.51661301 ], [ 168.21888733, -46.51277924 ], [ 168.222229, -46.51605225 ], [ 168.222229, -46.51605225 ] ] ], [ [ [ 168.35194397, -46.47555542 ], [ 168.356384279999986, -46.4794426 ], [ 168.340271, -46.48166656 ], [ 168.35194397, -46.47555542 ], [ 168.35194397, -46.47555542 ] ] ], [ [ [ 167.846725459999988, -46.45332718 ], [ 167.85397339, -46.4550209 ], [ 167.85083008, -46.46277618 ], [ 167.830001829999986, -46.45527649 ], [ 167.8407135, -46.44977951 ], [ 167.846725459999988, -46.45332718 ], [ 167.846725459999988, -46.45332718 ] ] ], [ [ [ 167.9934845, -46.40502167 ], [ 167.993896479999989, -46.40722275 ], [ 167.987777709999989, -46.40638733 ], [ 167.9934845, -46.40502167 ], [ 167.9934845, -46.40502167 ] ] ], [ [ [ 167.71376038, -46.3376236 ], [ 167.71194458, -46.33750153 ], [ 167.71333313, -46.33527756 ], [ 167.71376038, -46.3376236 ], [ 167.71376038, -46.3376236 ] ] ], [ [ [ 166.798339840000011, -46.22527695 ], [ 166.798614500000014, -46.22777939 ], [ 166.795135499999986, -46.2281456 ], [ 166.798339840000011, -46.22527695 ], [ 166.798339840000011, -46.22527695 ] ] ], [ [ [ 166.61528015, -46.17555618 ], [ 166.61805725, -46.17666626 ], [ 166.61621094, -46.17777252 ], [ 166.61528015, -46.17555618 ], [ 166.61528015, -46.17555618 ] ] ], [ [ [ 166.63082886, -46.09583282 ], [ 166.65750122, -46.10342789 ], [ 166.65361023, -46.11694336 ], [ 166.62722778, -46.13249969 ], [ 166.608612060000013, -46.14110947 ], [ 166.60305786, -46.11166763 ], [ 166.63082886, -46.09583282 ], [ 166.63082886, -46.09583282 ] ] ], [ [ [ 166.66954041, -46.09749222 ], [ 166.666381840000014, -46.10222244 ], [ 166.65757751000001, -46.09677124 ], [ 166.67036438, -46.09057617 ], [ 166.66954041, -46.09749222 ], [ 166.66954041, -46.09749222 ] ] ], [ [ [ 166.68249512, -46.08611298 ], [ 166.68305969, -46.08805466 ], [ 166.67971802, -46.08722305 ], [ 166.68249512, -46.08611298 ], [ 166.68249512, -46.08611298 ] ] ], [ [ [ 166.69332886, -46.08472061 ], [ 166.698883059999986, -46.09194565 ], [ 166.69778442, -46.10555649 ], [ 166.6875, -46.09111023 ], [ 166.69332886, -46.08472061 ], [ 166.69332886, -46.08472061 ] ] ], [ [ [ 166.666381840000014, -46.07888794 ], [ 166.66194153, -46.07972336 ], [ 166.66667175, -46.07638931 ], [ 166.666381840000014, -46.07888794 ], [ 166.666381840000014, -46.07888794 ] ] ], [ [ [ 166.635787959999988, -46.07431412 ], [ 166.633880620000014, -46.0722847 ], [ 166.63627625, -46.0723381 ], [ 166.635787959999988, -46.07431412 ], [ 166.635787959999988, -46.07431412 ] ] ], [ [ [ 166.632324219999987, -46.07287598 ], [ 166.632064820000011, -46.07383728 ], [ 166.62861633, -46.07194519 ], [ 166.632324219999987, -46.07287598 ], [ 166.632324219999987, -46.07287598 ] ] ], [ [ [ 166.68167114, -46.06916809 ], [ 166.68638611, -46.07222366 ], [ 166.671112060000013, -46.07722092 ], [ 166.68167114, -46.06916809 ], [ 166.68167114, -46.06916809 ] ] ], [ [ [ 166.57028198, -46.06916809 ], [ 166.5680542, -46.06833267 ], [ 166.57054138, -46.0679512 ], [ 166.57028198, -46.06916809 ], [ 166.57028198, -46.06916809 ] ] ], [ [ [ 166.69100952, -46.06579208 ], [ 166.692596439999988, -46.06901169 ], [ 166.68977356, -46.06771088 ], [ 166.69100952, -46.06579208 ], [ 166.69100952, -46.06579208 ] ] ], [ [ [ 166.69020081, -46.05329895 ], [ 166.689941409999989, -46.05205917 ], [ 166.69117737, -46.05222702 ], [ 166.69020081, -46.05329895 ], [ 166.69020081, -46.05329895 ] ] ], [ [ [ 166.5194397, -46.0336113 ], [ 166.52101135, -46.03751373 ], [ 166.541107180000012, -46.04444504 ], [ 166.533706669999987, -46.05262375 ], [ 166.534729, -46.0644455 ], [ 166.52333069, -46.06638718 ], [ 166.51055908, -46.05389023 ], [ 166.50500488, -46.05333328 ], [ 166.50582886, -46.04333496 ], [ 166.5194397, -46.0336113 ], [ 166.5194397, -46.0336113 ] ] ], [ [ [ 166.58944702, -46.02722168 ], [ 166.59083557, -46.02944565 ], [ 166.5874939, -46.02833176 ], [ 166.58944702, -46.02722168 ], [ 166.58944702, -46.02722168 ] ] ], [ [ [ 166.53164673, -46.01792145 ], [ 166.549194340000014, -46.02180862 ], [ 166.542770389999987, -46.03388977 ], [ 166.52722168, -46.02833176 ], [ 166.53164673, -46.01792145 ], [ 166.53164673, -46.01792145 ] ] ], [ [ [ 166.54167175, -46.01416779 ], [ 166.546661379999989, -46.01777649 ], [ 166.54083252, -46.01777649 ], [ 166.54167175, -46.01416779 ], [ 166.54167175, -46.01416779 ] ] ], [ [ [ 166.58453369, -45.97979736 ], [ 166.58827209, -45.98167801 ], [ 166.56582642, -46.00749969 ], [ 166.55314636, -46.00800323 ], [ 166.53666687, -46.00444412 ], [ 166.542770389999987, -45.98777771 ], [ 166.56375122, -45.9800148 ], [ 166.58453369, -45.97979736 ], [ 166.58453369, -45.97979736 ] ] ], [ [ [ 166.59356689, -45.9741478 ], [ 166.588104249999986, -45.97911453 ], [ 166.58609009, -45.97402573 ], [ 166.59356689, -45.9741478 ], [ 166.59356689, -45.9741478 ] ] ], [ [ [ 166.64135742, -45.96647644 ], [ 166.65316772, -45.9681282 ], [ 166.64451599, -45.97217941 ], [ 166.64135742, -45.96647644 ], [ 166.64135742, -45.96647644 ] ] ], [ [ [ 166.657302859999987, -45.96671295 ], [ 166.65472412, -45.96646881 ], [ 166.6574707, -45.96556854 ], [ 166.657302859999987, -45.96671295 ], [ 166.657302859999987, -45.96671295 ] ] ], [ [ [ 166.75056458, -45.96154022 ], [ 166.752151489999989, -45.96292877 ], [ 166.74902344, -45.96232986 ], [ 166.75056458, -45.96154022 ], [ 166.75056458, -45.96154022 ] ] ], [ [ [ 166.87332153, -45.95788574 ], [ 166.87123108, -45.96414566 ], [ 166.869201659999987, -45.96133423 ], [ 166.87332153, -45.95788574 ], [ 166.87332153, -45.95788574 ] ] ], [ [ [ 166.49555969, -45.80194473 ], [ 166.4944458, -45.80055618 ], [ 166.49667358, -45.80110931 ], [ 166.49555969, -45.80194473 ], [ 166.49555969, -45.80194473 ] ] ], [ [ [ 166.49864197, -45.80010605 ], [ 166.49694824, -45.79888916 ], [ 166.49833679, -45.79805374 ], [ 166.49864197, -45.80010605 ], [ 166.49864197, -45.80010605 ] ] ], [ [ [ 166.512496950000013, -45.79527664 ], [ 166.512771609999987, -45.79833221 ], [ 166.51028442, -45.79583359 ], [ 166.512496950000013, -45.79527664 ], [ 166.512496950000013, -45.79527664 ] ] ], [ [ [ 166.60131836, -45.79761887 ], [ 166.5993042, -45.79601288 ], [ 166.60435486, -45.79550552 ], [ 166.60131836, -45.79761887 ], [ 166.60131836, -45.79761887 ] ] ], [ [ [ 166.61332703, -45.78416824 ], [ 166.61610413, -45.78610992 ], [ 166.611389159999987, -45.7891655 ], [ 166.61332703, -45.78416824 ], [ 166.61332703, -45.78416824 ] ] ], [ [ [ 166.482223510000011, -45.7761116 ], [ 166.490005489999987, -45.7780571 ], [ 166.4777832, -45.78333282 ], [ 166.482223510000011, -45.7761116 ], [ 166.482223510000011, -45.7761116 ] ] ], [ [ [ 166.5541687, -45.7788887 ], [ 166.55278015, -45.77750015 ], [ 166.55583191, -45.77694321 ], [ 166.5541687, -45.7788887 ], [ 166.5541687, -45.7788887 ] ] ], [ [ [ 166.54753113000001, -45.77689743 ], [ 166.53947449, -45.78109741 ], [ 166.53721619, -45.77722168 ], [ 166.54753113000001, -45.77689743 ], [ 166.54753113000001, -45.77689743 ] ] ], [ [ [ 166.491394039999989, -45.77750015 ], [ 166.49360657, -45.77388763 ], [ 166.49472046, -45.77527618 ], [ 166.491394039999989, -45.77750015 ], [ 166.491394039999989, -45.77750015 ] ] ], [ [ [ 166.47805786, -45.77277756 ], [ 166.48031616, -45.77537155 ], [ 166.47666931, -45.77388763 ], [ 166.47805786, -45.77277756 ], [ 166.47805786, -45.77277756 ] ] ], [ [ [ 166.6000061, -45.77249908 ], [ 166.59132385, -45.78335953 ], [ 166.57041931, -45.78475952 ], [ 166.5809021, -45.7742691 ], [ 166.6000061, -45.77249908 ], [ 166.6000061, -45.77249908 ] ] ], [ [ [ 166.60945129000001, -45.77361298 ], [ 166.607498170000014, -45.77222061 ], [ 166.610000609999986, -45.77222061 ], [ 166.60945129000001, -45.77361298 ], [ 166.60945129000001, -45.77361298 ] ] ], [ [ [ 166.56611633, -45.76833344 ], [ 166.56663513, -45.76916504 ], [ 166.5632019, -45.77013397 ], [ 166.56611633, -45.76833344 ], [ 166.56611633, -45.76833344 ] ] ], [ [ [ 166.53361511, -45.76916504 ], [ 166.52999878, -45.77138901 ], [ 166.52915955, -45.76944351 ], [ 166.53361511, -45.76916504 ], [ 166.53361511, -45.76916504 ] ] ], [ [ [ 166.56666565, -45.76388931 ], [ 166.57299805, -45.76695633 ], [ 166.56304932, -45.76666641 ], [ 166.56666565, -45.76388931 ], [ 166.56666565, -45.76388931 ] ] ], [ [ [ 166.57556152, -45.76305389 ], [ 166.57537842, -45.76599884 ], [ 166.57312012, -45.76583481 ], [ 166.57556152, -45.76305389 ], [ 166.57556152, -45.76305389 ] ] ], [ [ [ 166.546112060000013, -45.76499939 ], [ 166.541381840000014, -45.76861191 ], [ 166.53944397, -45.76638794 ], [ 166.546112060000013, -45.76499939 ], [ 166.546112060000013, -45.76499939 ] ] ], [ [ [ 166.56083679, -45.76250076 ], [ 166.56082153, -45.76523209 ], [ 166.55555725, -45.76472092 ], [ 166.56083679, -45.76250076 ], [ 166.56083679, -45.76250076 ] ] ], [ [ [ 166.607498170000014, -45.75611115 ], [ 166.591873170000014, -45.76185989 ], [ 166.59260559, -45.75899887 ], [ 166.607498170000014, -45.75611115 ], [ 166.607498170000014, -45.75611115 ] ] ], [ [ [ 166.580001829999986, -45.75166702 ], [ 166.57620239, -45.7510643 ], [ 166.57911682, -45.74985123 ], [ 166.580001829999986, -45.75166702 ], [ 166.580001829999986, -45.75166702 ] ] ], [ [ [ 166.508255, -45.74604797 ], [ 166.50721741000001, -45.74492264 ], [ 166.50866699, -45.74492264 ], [ 166.508255, -45.74604797 ], [ 166.508255, -45.74604797 ] ] ], [ [ [ 166.788146970000014, -45.74649048 ], [ 166.78684998, -45.74570084 ], [ 166.78875732, -45.74490356 ], [ 166.788146970000014, -45.74649048 ], [ 166.788146970000014, -45.74649048 ] ] ], [ [ [ 166.77360535, -45.74333191 ], [ 166.77915955, -45.74861145 ], [ 166.76495361, -45.7481575 ], [ 166.74809265, -45.7579689 ], [ 166.71754456, -45.76474762 ], [ 166.70523071, -45.77234268 ], [ 166.69584656, -45.77142715 ], [ 166.68202209, -45.77666473 ], [ 166.66027832, -45.77972412 ], [ 166.65888977, -45.77616882 ], [ 166.64646912, -45.78050995 ], [ 166.63166809, -45.77946472 ], [ 166.61444092, -45.78305435 ], [ 166.61898804, -45.77590179 ], [ 166.6109314, -45.77410507 ], [ 166.634994510000013, -45.76889038 ], [ 166.637771609999987, -45.77194595 ], [ 166.65034485000001, -45.75982285 ], [ 166.67562866, -45.76213455 ], [ 166.71064758, -45.74798965 ], [ 166.74067688, -45.74353027 ], [ 166.75666809, -45.74555588 ], [ 166.77360535, -45.74333191 ], [ 166.77360535, -45.74333191 ] ] ], [ [ [ 166.54060364, -45.74274445 ], [ 166.56277466, -45.74666595 ], [ 166.56655884, -45.75460052 ], [ 166.556564329999986, -45.75931549 ], [ 166.543884279999986, -45.75722122 ], [ 166.52166748, -45.76797104 ], [ 166.527771, -45.77000046 ], [ 166.5194397, -45.7761116 ], [ 166.51333618000001, -45.77027893 ], [ 166.485153200000013, -45.77183533 ], [ 166.48167419, -45.76361084 ], [ 166.4916687, -45.74944305 ], [ 166.50015259, -45.75270844 ], [ 166.517776489999989, -45.75027847 ], [ 166.525039670000012, -45.75297165 ], [ 166.53140259, -45.74522018 ], [ 166.54060364, -45.74274445 ], [ 166.54060364, -45.74274445 ] ] ], [ [ [ 166.566741940000014, -45.74305725 ], [ 166.56555176, -45.74139786 ], [ 166.56700134, -45.74179459 ], [ 166.566741940000014, -45.74305725 ], [ 166.566741940000014, -45.74305725 ] ] ], [ [ [ 166.72639465, -45.74139023 ], [ 166.72444153, -45.74000168 ], [ 166.726104740000011, -45.74000168 ], [ 166.72639465, -45.74139023 ], [ 166.72639465, -45.74139023 ] ] ], [ [ [ 166.5622406, -45.74198532 ], [ 166.56056213, -45.7452774 ], [ 166.55610657, -45.74139023 ], [ 166.5622406, -45.74198532 ], [ 166.5622406, -45.74198532 ] ] ], [ [ [ 166.543884279999986, -45.73972321 ], [ 166.54083252, -45.73860931 ], [ 166.543746950000013, -45.73782349 ], [ 166.543884279999986, -45.73972321 ], [ 166.543884279999986, -45.73972321 ] ] ], [ [ [ 166.52349854, -45.7384758 ], [ 166.514724730000012, -45.74361038 ], [ 166.512771609999987, -45.74000168 ], [ 166.52349854, -45.7384758 ], [ 166.52349854, -45.7384758 ] ] ], [ [ [ 166.53611755, -45.73865891 ], [ 166.53694153, -45.73638916 ], [ 166.53833008, -45.73694611 ], [ 166.53611755, -45.73865891 ], [ 166.53611755, -45.73865891 ] ] ], [ [ [ 166.52166748, -45.73659897 ], [ 166.517776489999989, -45.73555374 ], [ 166.521392819999988, -45.73361206 ], [ 166.52166748, -45.73659897 ], [ 166.52166748, -45.73659897 ] ] ], [ [ [ 166.77360535, -45.73138809 ], [ 166.77528381, -45.73416519 ], [ 166.771392819999988, -45.73305511 ], [ 166.77360535, -45.73138809 ], [ 166.77360535, -45.73138809 ] ] ], [ [ [ 166.581420900000012, -45.72815323 ], [ 166.57130432, -45.7309761 ], [ 166.577804570000012, -45.72600174 ], [ 166.581420900000012, -45.72815323 ], [ 166.581420900000012, -45.72815323 ] ] ], [ [ [ 166.54553223, -45.72595978 ], [ 166.54481506, -45.72410965 ], [ 166.54682922, -45.72472763 ], [ 166.54553223, -45.72595978 ], [ 166.54553223, -45.72595978 ] ] ], [ [ [ 166.8380127, -45.72029114 ], [ 166.85725403, -45.72546768 ], [ 166.87258911, -45.72373581 ], [ 166.88023376000001, -45.727005 ], [ 166.87944031, -45.73472214 ], [ 166.87194824, -45.74036789 ], [ 166.84667969, -45.74801254 ], [ 166.82272339, -45.75157547 ], [ 166.791244510000013, -45.74633026 ], [ 166.787994379999986, -45.73382187 ], [ 166.8059082, -45.72171021 ], [ 166.829727170000012, -45.71837616 ], [ 166.8380127, -45.72029114 ], [ 166.8380127, -45.72029114 ] ] ], [ [ [ 166.53639221, -45.70497131 ], [ 166.5393219, -45.71152115 ], [ 166.52565002, -45.71090317 ], [ 166.53639221, -45.70497131 ], [ 166.53639221, -45.70497131 ] ] ], [ [ [ 166.544998170000014, -45.69916534 ], [ 166.54356384, -45.6975441 ], [ 166.545272829999988, -45.69777679 ], [ 166.544998170000014, -45.69916534 ], [ 166.544998170000014, -45.69916534 ] ] ], [ [ [ 166.55883789, -45.68783951 ], [ 166.55888367, -45.68967819 ], [ 166.55131531, -45.68878937 ], [ 166.55883789, -45.68783951 ], [ 166.55883789, -45.68783951 ] ] ], [ [ [ 166.719070429999988, -45.65515137 ], [ 166.718261719999987, -45.65553284 ], [ 166.7175293, -45.65385818 ], [ 166.719070429999988, -45.65515137 ], [ 166.719070429999988, -45.65515137 ] ] ], [ [ [ 166.86193848, -45.63584137 ], [ 166.85070801, -45.63999557 ], [ 166.8480835, -45.63612747 ], [ 166.86193848, -45.63584137 ], [ 166.86193848, -45.63584137 ] ] ], [ [ [ 166.53361511, -45.63138962 ], [ 166.53138733, -45.63166809 ], [ 166.53250122, -45.62944412 ], [ 166.53361511, -45.63138962 ], [ 166.53361511, -45.63138962 ] ] ], [ [ [ 166.59333801, -45.61111069 ], [ 166.59388733, -45.61305618 ], [ 166.59165955, -45.61194611 ], [ 166.59333801, -45.61111069 ], [ 166.59333801, -45.61111069 ] ] ], [ [ [ 166.65110779, -45.60388947 ], [ 166.64944458, -45.60277939 ], [ 166.65167236, -45.60138702 ], [ 166.65110779, -45.60388947 ], [ 166.65110779, -45.60388947 ] ] ], [ [ [ 166.68083191, -45.59749985 ], [ 166.69015503, -45.60761642 ], [ 166.69694519, -45.60833359 ], [ 166.71376038, -45.62163544 ], [ 166.71330261, -45.63447571 ], [ 166.718246459999989, -45.65709686 ], [ 166.71679688, -45.6677475 ], [ 166.7207489, -45.67618942 ], [ 166.71665955, -45.68317032 ], [ 166.72418213, -45.69829559 ], [ 166.7175293, -45.72577667 ], [ 166.68389893, -45.74881744 ], [ 166.66352844, -45.75244522 ], [ 166.655334470000014, -45.73973083 ], [ 166.64953613, -45.716259 ], [ 166.6493988, -45.73398972 ], [ 166.64219666, -45.74222565 ], [ 166.61485291, -45.75231934 ], [ 166.61436462, -45.74899673 ], [ 166.59584045, -45.75630569 ], [ 166.580307010000013, -45.74568176 ], [ 166.58166504, -45.73194504 ], [ 166.59132385, -45.72471619 ], [ 166.58831787, -45.72127151 ], [ 166.5708313, -45.72015762 ], [ 166.56222534, -45.71166611 ], [ 166.547500609999986, -45.70888901 ], [ 166.56111145, -45.70527649 ], [ 166.576400760000013, -45.70949173 ], [ 166.572067260000011, -45.70120621 ], [ 166.54685974, -45.6990509 ], [ 166.54953003, -45.69174194 ], [ 166.574996950000013, -45.69138718 ], [ 166.55622864, -45.68437576 ], [ 166.552948, -45.66869736 ], [ 166.54269409, -45.68045425 ], [ 166.53117371, -45.68694687 ], [ 166.48699951, -45.71803665 ], [ 166.46833801, -45.73361206 ], [ 166.466445920000012, -45.73122406 ], [ 166.449996950000013, -45.74638748 ], [ 166.44555664, -45.74333191 ], [ 166.4430542, -45.73027802 ], [ 166.451110840000013, -45.71527863 ], [ 166.47528076, -45.70138931 ], [ 166.482772829999988, -45.68861008 ], [ 166.4972229, -45.6827774 ], [ 166.513885499999986, -45.65777588 ], [ 166.51832581, -45.66222382 ], [ 166.5194397, -45.64138794 ], [ 166.53694153, -45.6305542 ], [ 166.542495730000013, -45.62194443 ], [ 166.55471802, -45.63166809 ], [ 166.552505489999987, -45.6483345 ], [ 166.5625, -45.625 ], [ 166.582778929999989, -45.61083221 ], [ 166.59272766, -45.61678696 ], [ 166.59584045, -45.60805511 ], [ 166.608886719999987, -45.60250092 ], [ 166.6222229, -45.61055374 ], [ 166.63209534, -45.61151123 ], [ 166.65472412, -45.60305405 ], [ 166.66055298, -45.59777832 ], [ 166.67105103, -45.60804749 ], [ 166.67179871, -45.60211945 ], [ 166.68083191, -45.59749985 ], [ 166.68083191, -45.59749985 ] ] ], [ [ [ 166.67512512, -45.59365845 ], [ 166.67854309, -45.59666443 ], [ 166.672775269999988, -45.59805679 ], [ 166.67512512, -45.59365845 ], [ 166.67512512, -45.59365845 ] ] ], [ [ [ 166.707519530000013, -45.59311295 ], [ 166.698440549999987, -45.59877396 ], [ 166.69929504000001, -45.5931282 ], [ 166.707519530000013, -45.59311295 ], [ 166.707519530000013, -45.59311295 ] ] ], [ [ [ 166.63667297, -45.59027863 ], [ 166.63833618000001, -45.59277725 ], [ 166.63528442, -45.59277725 ], [ 166.63667297, -45.59027863 ], [ 166.63667297, -45.59027863 ] ] ], [ [ [ 166.65472412, -45.59083176 ], [ 166.65249634, -45.59111023 ], [ 166.65415955, -45.58944321 ], [ 166.65472412, -45.59083176 ], [ 166.65472412, -45.59083176 ] ] ], [ [ [ 166.644729610000013, -45.58889008 ], [ 166.6444397, -45.59305573 ], [ 166.641387939999987, -45.59194565 ], [ 166.644729610000013, -45.58889008 ], [ 166.644729610000013, -45.58889008 ] ] ], [ [ [ 166.766250609999986, -45.59161758 ], [ 166.7631073, -45.58637619 ], [ 166.77256775, -45.58481598 ], [ 166.766250609999986, -45.59161758 ], [ 166.766250609999986, -45.59161758 ] ] ], [ [ [ 166.771392819999988, -45.58166504 ], [ 166.76982117, -45.57984161 ], [ 166.77249146, -45.57712173 ], [ 166.771392819999988, -45.58166504 ], [ 166.771392819999988, -45.58166504 ] ] ], [ [ [ 166.64666748, -45.57027817 ], [ 166.64756775, -45.58576584 ], [ 166.63925171, -45.58639908 ], [ 166.62762451, -45.57860565 ], [ 166.63833618000001, -45.57055664 ], [ 166.64666748, -45.57027817 ], [ 166.64666748, -45.57027817 ] ] ], [ [ [ 166.78390503, -45.57734299 ], [ 166.78852844, -45.56995773 ], [ 166.7999115, -45.56700897 ], [ 166.78390503, -45.57734299 ], [ 166.78390503, -45.57734299 ] ] ], [ [ [ 166.81277466, -45.56499863 ], [ 166.8059082, -45.56771469 ], [ 166.8032074, -45.56526947 ], [ 166.81277466, -45.56499863 ], [ 166.81277466, -45.56499863 ] ] ], [ [ [ 166.81721497, -45.56361008 ], [ 166.81555176, -45.56222153 ], [ 166.81777954, -45.56194305 ], [ 166.81721497, -45.56361008 ], [ 166.81721497, -45.56361008 ] ] ], [ [ [ 167.116394039999989, -45.40750122 ], [ 167.12110901, -45.41222382 ], [ 167.12638855, -45.43055725 ], [ 167.116394039999989, -45.40750122 ], [ 167.116394039999989, -45.40750122 ] ] ], [ [ [ 167.104995730000013, -45.39611053 ], [ 167.10083008, -45.39110947 ], [ 167.103607180000012, -45.39055634 ], [ 167.104995730000013, -45.39611053 ], [ 167.104995730000013, -45.39611053 ] ] ], [ [ [ 167.00694275, -45.30638885 ], [ 167.00721741000001, -45.30861282 ], [ 167.00444031, -45.30749893 ], [ 167.00694275, -45.30638885 ], [ 167.00694275, -45.30638885 ] ] ], [ [ [ 166.913146970000014, -45.29755783 ], [ 166.90696716, -45.29780579 ], [ 166.90820313, -45.29555893 ], [ 166.913146970000014, -45.29755783 ], [ 166.913146970000014, -45.29755783 ] ] ], [ [ [ 166.89320374, -45.27977753 ], [ 166.90621948, -45.28536224 ], [ 166.90805054, -45.28055573 ], [ 166.93945313, -45.29633713 ], [ 166.93522644, -45.29825592 ], [ 166.89480591, -45.29302979 ], [ 166.88352966, -45.28730774 ], [ 166.89320374, -45.27977753 ], [ 166.89320374, -45.27977753 ] ] ], [ [ [ 166.88931274, -45.27655411 ], [ 166.88806152, -45.27527618 ], [ 166.889724730000012, -45.27555466 ], [ 166.88931274, -45.27655411 ], [ 166.88931274, -45.27655411 ] ] ], [ [ [ 166.89482117, -45.27441788 ], [ 166.89321899, -45.27270889 ], [ 166.89595032, -45.27355576 ], [ 166.89482117, -45.27441788 ], [ 166.89482117, -45.27441788 ] ] ], [ [ [ 166.84249878, -45.26972198 ], [ 166.84249878, -45.27194595 ], [ 166.84083557, -45.2705574 ], [ 166.84249878, -45.26972198 ], [ 166.84249878, -45.26972198 ] ] ], [ [ [ 166.8949585, -45.27006149 ], [ 166.89775085, -45.27329254 ], [ 166.8908844, -45.26854324 ], [ 166.8949585, -45.27006149 ], [ 166.8949585, -45.27006149 ] ] ], [ [ [ 166.884979249999986, -45.26839828 ], [ 166.8874054, -45.26902771 ], [ 166.88745117, -45.27487183 ], [ 166.884979249999986, -45.26839828 ], [ 166.884979249999986, -45.26839828 ] ] ], [ [ [ 166.88806152, -45.26666641 ], [ 166.88667297, -45.26583481 ], [ 166.888473510000011, -45.26566315 ], [ 166.88806152, -45.26666641 ], [ 166.88806152, -45.26666641 ] ] ], [ [ [ 166.87472534, -45.2555542 ], [ 166.87457275, -45.25356293 ], [ 166.87638855, -45.25416565 ], [ 166.87472534, -45.2555542 ], [ 166.87472534, -45.2555542 ] ] ], [ [ [ 166.87379456, -45.25109863 ], [ 166.87083435, -45.25111008 ], [ 166.873550419999987, -45.2492485 ], [ 166.87379456, -45.25109863 ], [ 166.87379456, -45.25109863 ] ] ], [ [ [ 166.86494446, -45.25091934 ], [ 166.86305237, -45.25033569 ], [ 166.86372375, -45.24881363 ], [ 166.86494446, -45.25091934 ], [ 166.86494446, -45.25091934 ] ] ], [ [ [ 166.871414179999988, -45.24797058 ], [ 166.86845398, -45.24680328 ], [ 166.86959839, -45.24438477 ], [ 166.871414179999988, -45.24797058 ], [ 166.871414179999988, -45.24797058 ] ] ], [ [ [ 166.964065549999987, -45.15036392 ], [ 166.97084045, -45.1566658 ], [ 166.9659729, -45.17621994 ], [ 166.95343018, -45.18473816 ], [ 166.95007324, -45.20346832 ], [ 166.95536804, -45.21463394 ], [ 166.97041321, -45.23544693 ], [ 166.97541809, -45.24687958 ], [ 166.988067629999989, -45.25834274 ], [ 166.98805237, -45.27500153 ], [ 167.0032196, -45.29830551 ], [ 166.991424560000013, -45.30101776 ], [ 166.97944641, -45.29891205 ], [ 166.97639465, -45.30305481 ], [ 166.96664429, -45.29799652 ], [ 166.94696045, -45.29428482 ], [ 166.9434967, -45.28706741 ], [ 166.90989685, -45.27154922 ], [ 166.906738280000013, -45.26555252 ], [ 166.88996887, -45.25004578 ], [ 166.86721802, -45.24139023 ], [ 166.87416077, -45.23611069 ], [ 166.87611389, -45.2266655 ], [ 166.89573669, -45.21193314 ], [ 166.896118159999986, -45.20416641 ], [ 166.92195129000001, -45.17527771 ], [ 166.94158936, -45.16326904 ], [ 166.94810486, -45.15168762 ], [ 166.96109009, -45.14550781 ], [ 166.964065549999987, -45.15036392 ], [ 166.964065549999987, -45.15036392 ] ] ], [ [ [ 167.13745117, -45.12850571 ], [ 167.138305659999986, -45.12997818 ], [ 167.136383059999986, -45.12937546 ], [ 167.13745117, -45.12850571 ], [ 167.13745117, -45.12850571 ] ] ], [ [ [ 167.20021057, -45.10191345 ], [ 167.20191956, -45.10383987 ], [ 167.19793701, -45.103302 ], [ 167.20021057, -45.10191345 ], [ 167.20021057, -45.10191345 ] ] ], [ [ [ 167.02278137, -45.10083389 ], [ 167.02278137, -45.10361099 ], [ 167.021118159999986, -45.10222244 ], [ 167.02278137, -45.10083389 ], [ 167.02278137, -45.10083389 ] ] ], [ [ [ 167.20239258, -45.0997467 ], [ 167.20410156, -45.10155869 ], [ 167.20159912, -45.10160065 ], [ 167.20239258, -45.0997467 ], [ 167.20239258, -45.0997467 ] ] ], [ [ [ 167.142486569999988, -45.09667206 ], [ 167.14299011, -45.10081482 ], [ 167.139984129999988, -45.09915924 ], [ 167.142486569999988, -45.09667206 ], [ 167.142486569999988, -45.09667206 ] ] ], [ [ [ 167.38522339, -44.98559189 ], [ 167.38490295, -44.98892593 ], [ 167.3837738, -44.98637009 ], [ 167.38522339, -44.98559189 ], [ 167.38522339, -44.98559189 ] ] ], [ [ [ 167.18444824, -44.95444489 ], [ 167.18583679, -44.95722198 ], [ 167.18249512, -44.95583344 ], [ 167.18444824, -44.95444489 ], [ 167.18444824, -44.95444489 ] ] ], [ [ [ 167.632339480000013, -44.64456558 ], [ 167.63348389, -44.64638901 ], [ 167.63008118, -44.64627838 ], [ 167.632339480000013, -44.64456558 ], [ 167.632339480000013, -44.64456558 ] ] ], [ [ [ 167.85714722, -44.45082474 ], [ 167.85697937, -44.45269394 ], [ 167.855270389999987, -44.45194626 ], [ 167.85714722, -44.45082474 ], [ 167.85714722, -44.45082474 ] ] ], [ [ [ 168.24057007, -44.25902176 ], [ 168.24453735, -44.26349258 ], [ 168.25848389, -44.25964355 ], [ 168.26245117, -44.26412201 ], [ 168.276412959999988, -44.26027298 ], [ 168.28736877, -44.26283646 ], [ 168.29930115, -44.27630234 ], [ 168.31427002, -44.28337479 ], [ 168.32824707, -44.27954102 ], [ 168.35021973, -44.28471375 ], [ 168.351242070000012, -44.29564285 ], [ 168.35925293, -44.3046608 ], [ 168.36026001, -44.31559372 ], [ 168.3502655, -44.32392502 ], [ 168.36230469, -44.33747101 ], [ 168.38433838, -44.3427124 ], [ 168.37837219, -44.35556412 ], [ 168.4004364, -44.36084747 ], [ 168.41848755, -44.36161423 ], [ 168.422515870000012, -44.36615753 ], [ 168.4125061, -44.37446594 ], [ 168.41653442, -44.37900925 ], [ 168.4025116, -44.38277817 ], [ 168.39146423, -44.38012314 ], [ 168.392501829999986, -44.39108658 ], [ 168.36444092, -44.39863968 ], [ 168.354415890000013, -44.4069519 ], [ 168.36247253, -44.41601944 ], [ 168.369491579999988, -44.41413116 ], [ 168.37754822, -44.42321014 ], [ 168.367523190000014, -44.43151474 ], [ 168.371551509999989, -44.43605423 ], [ 168.361541749999986, -44.44435883 ], [ 168.36557007, -44.44890213 ], [ 168.35151672, -44.45266724 ], [ 168.359573360000013, -44.46174622 ], [ 168.34654236, -44.47647095 ], [ 168.34054565, -44.48931503 ], [ 168.34860229, -44.49839783 ], [ 168.33755493000001, -44.49573898 ], [ 168.31645203, -44.50138474 ], [ 168.29837036, -44.5006218 ], [ 168.282302859999987, -44.52176285 ], [ 168.26119995, -44.5274086 ], [ 168.26522827, -44.53194427 ], [ 168.25114441, -44.53570175 ], [ 168.24110413, -44.5439949 ], [ 168.25016785, -44.56402588 ], [ 168.24414063, -44.57686234 ], [ 168.2481842, -44.58140182 ], [ 168.23408508, -44.58515167 ], [ 168.231079099999988, -44.59156799 ], [ 168.23913574, -44.6006546 ], [ 168.217987060000013, -44.60627365 ], [ 168.222030640000014, -44.61081696 ], [ 168.20893860000001, -44.62552261 ], [ 168.212982180000012, -44.63006973 ], [ 168.203918460000011, -44.6493187 ], [ 168.19284058, -44.64663696 ], [ 168.2049408, -44.66028595 ], [ 168.19184875, -44.67498779 ], [ 168.20698547, -44.68222427 ], [ 168.19992065, -44.68409348 ], [ 168.18682861, -44.6987915 ], [ 168.17976379000001, -44.70065689 ], [ 168.187850950000012, -44.70976257 ], [ 168.17776489, -44.71804428 ], [ 168.178787230000012, -44.72901917 ], [ 168.19494629, -44.74724197 ], [ 168.209075930000012, -44.74351501 ], [ 168.217163090000014, -44.75262833 ], [ 168.20303345, -44.7563591 ], [ 168.19700623, -44.76919937 ], [ 168.20509338, -44.7783165 ], [ 168.19198608, -44.79302216 ], [ 168.19602966, -44.79758453 ], [ 168.17585754000001, -44.81414795 ], [ 168.18092346, -44.82969284 ], [ 168.141540529999986, -44.83441544 ], [ 168.12944031, -44.86009216 ], [ 168.13752747, -44.86922455 ], [ 168.123397829999988, -44.87292862 ], [ 168.13148499, -44.88206482 ], [ 168.12440491000001, -44.88391495 ], [ 168.139572140000013, -44.8911972 ], [ 168.14059448, -44.90218735 ], [ 168.15274048, -44.91589355 ], [ 168.142639159999987, -44.92416763 ], [ 168.1446991, -44.94615555 ], [ 168.15884399, -44.94244385 ], [ 168.15582275, -44.94887161 ], [ 168.17807007, -44.95429611 ], [ 168.19023132, -44.96800232 ], [ 168.18721008, -44.97443008 ], [ 168.20747375, -44.99727631 ], [ 168.22267151, -45.00455475 ], [ 168.22975159, -45.00269318 ], [ 168.237854, -45.01182938 ], [ 168.238891599999988, -45.02283096 ], [ 168.25408936, -45.03010559 ], [ 168.279373170000014, -45.02907562 ], [ 168.30059814, -45.02347183 ], [ 168.296539309999986, -45.01890182 ], [ 168.3106842, -45.01516724 ], [ 168.32286072, -45.02886963 ], [ 168.30569458, -45.03904343 ], [ 168.3037262, -45.05648041 ], [ 168.31184387, -45.06561661 ], [ 168.30278015, -45.08493042 ], [ 168.267379760000011, -45.0942688 ], [ 168.26435852, -45.10070419 ], [ 168.2724762, -45.10984421 ], [ 168.258316040000011, -45.11357498 ], [ 168.25935364, -45.1245842 ], [ 168.24621582, -45.13932037 ], [ 168.23204041, -45.14304733 ], [ 168.229003909999989, -45.14948273 ], [ 168.24723816, -45.1503334 ], [ 168.255371090000011, -45.15947723 ], [ 168.24525452, -45.16777802 ], [ 168.25640869, -45.17049026 ], [ 168.272644039999989, -45.18878555 ], [ 168.26254272, -45.19709015 ], [ 168.2706604, -45.20623779 ], [ 168.29296875, -45.21165466 ], [ 168.30818176, -45.21893311 ], [ 168.3163147, -45.22808075 ], [ 168.30317688, -45.242836 ], [ 168.32350159, -45.26570511 ], [ 168.31442261, -45.28503799 ], [ 168.31546021, -45.29606247 ], [ 168.33172607, -45.31436157 ], [ 168.336837769999988, -45.32995987 ], [ 168.405792240000011, -45.32868958 ], [ 168.412872310000012, -45.32681656 ], [ 168.44937134, -45.32845306 ], [ 168.474700930000012, -45.32738876 ], [ 168.5566864, -45.31128311 ], [ 168.5526123, -45.30671692 ], [ 168.57383728, -45.30107498 ], [ 168.56976318, -45.29650497 ], [ 168.583923340000013, -45.2927475 ], [ 168.579849239999987, -45.28817749 ], [ 168.63644409, -45.27312851 ], [ 168.63237, -45.26856232 ], [ 168.65357971, -45.26291656 ], [ 168.649505620000014, -45.25835037 ], [ 168.66365051, -45.25458908 ], [ 168.65957642, -45.25002289 ], [ 168.687850950000012, -45.24249268 ], [ 168.69898987, -45.24517441 ], [ 168.692993159999986, -45.25806427 ], [ 168.70928955, -45.2763176 ], [ 168.702224730000012, -45.27820206 ], [ 168.71444702, -45.29188919 ], [ 168.70846558, -45.30478668 ], [ 168.71661377, -45.31391144 ], [ 168.717697140000013, -45.32492447 ], [ 168.710617070000012, -45.32680893 ], [ 168.70463562, -45.33971024 ], [ 168.738082889999987, -45.34774017 ], [ 168.76553345, -45.36866379 ], [ 168.786743159999986, -45.36299515 ], [ 168.79083252, -45.36755753 ], [ 168.78892517, -45.38502121 ], [ 168.79299927, -45.38958359 ], [ 168.7840271, -45.40894318 ], [ 168.79627991000001, -45.42263031 ], [ 168.79437256, -45.44010162 ], [ 168.81559753, -45.43442154 ], [ 168.846069340000014, -45.44887543 ], [ 168.8449707, -45.4378624 ], [ 168.86618042, -45.43217468 ], [ 168.88142395, -45.4393959 ], [ 168.874359129999988, -45.44129562 ], [ 168.879531859999986, -45.45686722 ], [ 168.901840209999989, -45.46219254 ], [ 168.91598511, -45.4583931 ], [ 168.92604065, -45.45003891 ], [ 168.94390869, -45.41131592 ], [ 168.978866579999988, -45.36236191 ], [ 169.03088379, -45.30319214 ], [ 169.08209229, -45.27248001 ], [ 169.08912659, -45.27058411 ], [ 169.113616940000014, -45.29787064 ], [ 169.11585999, -45.31985855 ], [ 169.12698364, -45.32250595 ], [ 169.13514709, -45.33160019 ], [ 169.15036011, -45.33879471 ], [ 169.16854858, -45.33954239 ], [ 169.16966248, -45.35053635 ], [ 169.18193054, -45.36417389 ], [ 169.17897034, -45.37062073 ], [ 169.19940186, -45.39334869 ], [ 169.21348572, -45.38954163 ], [ 169.229843140000014, -45.40772247 ], [ 169.21801758, -45.43351746 ], [ 169.189819340000014, -45.44113541 ], [ 169.17163086, -45.44039917 ], [ 169.17572021, -45.44494629 ], [ 169.16275024, -45.45975494 ], [ 169.15568542, -45.46166229 ], [ 169.160903929999989, -45.47720718 ], [ 169.14312744, -45.51593781 ], [ 169.14723206, -45.52048492 ], [ 169.137207030000013, -45.52885056 ], [ 169.14129639, -45.53339767 ], [ 169.13127136, -45.54176331 ], [ 169.113479610000013, -45.58052063 ], [ 169.11756897, -45.58506775 ], [ 169.103439329999986, -45.58889008 ], [ 169.10754395, -45.59344101 ], [ 169.093399049999988, -45.59726334 ], [ 169.07557678, -45.63604355 ], [ 169.0796814, -45.64059448 ], [ 169.0655365, -45.64442062 ], [ 169.06964111, -45.64897156 ], [ 169.04133606, -45.65662003 ], [ 169.042465209999989, -45.66764069 ], [ 169.03240967, -45.67602158 ], [ 169.03764343, -45.69159698 ], [ 169.03056335, -45.69351196 ], [ 169.009704590000013, -45.73880386 ], [ 169.02088928, -45.74144363 ], [ 169.02201843, -45.75247192 ], [ 169.0194397, -45.79851151 ], [ 169.027664179999988, -45.807621 ], [ 169.038864139999987, -45.81025696 ], [ 169.0440979, -45.82584381 ], [ 169.02693176, -45.83616638 ], [ 169.014999390000014, -45.86208344 ], [ 169.01911926, -45.866642 ], [ 169.062820429999988, -45.8661232 ], [ 169.05871582, -45.86156845 ], [ 169.07289124, -45.85771561 ], [ 169.06878662, -45.85316467 ], [ 169.09118652, -45.85841751 ], [ 169.089355469999987, -45.87592697 ], [ 169.09645081, -45.87399673 ], [ 169.10881042, -45.88765335 ], [ 169.09393311, -45.92005539 ], [ 169.086837769999988, -45.92198563 ], [ 169.10333252, -45.94019318 ], [ 169.11454773, -45.94281387 ], [ 169.10266113, -45.96875 ], [ 169.0884552, -45.9726181 ], [ 169.07539368, -45.98752975 ], [ 169.08065796, -46.00312424 ], [ 169.1137085, -46.03954697 ], [ 169.132049560000013, -46.04022217 ], [ 169.14031982, -46.04932404 ], [ 169.16281128, -46.05454254 ], [ 169.16514587, -46.07662582 ], [ 169.15092468, -46.08050919 ], [ 169.147949219999987, -46.08700562 ], [ 169.15921021, -46.08961105 ], [ 169.15623474, -46.09610367 ], [ 169.174591060000012, -46.09676743 ], [ 169.1686554, -46.10975647 ], [ 169.17694092, -46.11885452 ], [ 169.16685486, -46.12729263 ], [ 169.13838196, -46.13507462 ], [ 169.14071655, -46.15717316 ], [ 169.15496826, -46.15327835 ], [ 169.166229249999986, -46.15587997 ], [ 169.17866516, -46.16952896 ], [ 169.168579099999988, -46.17797852 ], [ 169.18934631, -46.20072174 ], [ 169.19645691, -46.19877243 ], [ 169.2118988, -46.20591736 ], [ 169.20301819, -46.22541428 ], [ 169.19293213, -46.23386765 ], [ 169.205429079999988, -46.247509 ], [ 169.198303220000014, -46.24946213 ], [ 169.19238281, -46.26246643 ], [ 169.20072937, -46.27156448 ], [ 169.194824219999987, -46.28456879 ], [ 169.18475342, -46.29302979 ], [ 169.20146179, -46.31122589 ], [ 169.18844604, -46.32619858 ], [ 169.18130493000001, -46.32815552 ], [ 169.19680786, -46.33529663 ], [ 169.17541504, -46.34117508 ], [ 169.17961121, -46.34572601 ], [ 169.16534424, -46.34964752 ], [ 169.16954041, -46.35419846 ], [ 169.14813232, -46.3600769 ], [ 169.15232849, -46.36463165 ], [ 169.13931274, -46.37962341 ], [ 169.14770508, -46.38873672 ], [ 169.15484619, -46.38677216 ], [ 169.18884277, -46.39454651 ], [ 169.20567322, -46.4127655 ], [ 169.19854736, -46.41473007 ], [ 169.20697021, -46.42384338 ], [ 169.204055790000012, -46.43037033 ], [ 169.18978882, -46.4343071 ], [ 169.19822693, -46.44342804 ], [ 169.18818665, -46.451931 ], [ 169.19241333, -46.45649338 ], [ 169.163864139999987, -46.46438217 ], [ 169.16519165, -46.47549057 ], [ 169.185043330000013, -46.48722839 ], [ 169.17790222, -46.48920441 ], [ 169.18638611, -46.49835205 ], [ 169.20491028, -46.4989624 ], [ 169.21340942, -46.50810623 ], [ 169.22053528, -46.50611496 ], [ 169.233322140000013, -46.51982117 ], [ 169.24757385, -46.51581955 ], [ 169.25611877, -46.52493286 ], [ 169.24897766, -46.52694321 ], [ 169.25039673, -46.53807068 ], [ 169.23327637, -46.54869461 ], [ 169.22758484, -46.56188202 ], [ 169.19476318, -46.56540298 ], [ 169.1990509, -46.56999588 ], [ 169.189086909999986, -46.57865143 ], [ 169.20198059, -46.59238052 ], [ 169.21948242, -46.59360886 ], [ 169.21360779, -46.60285187 ], [ 169.21542358, -46.61766052 ], [ 169.198181150000011, -46.61721802 ], [ 169.190612789999989, -46.65470505 ], [ 169.1756134, -46.65225601 ], [ 169.16947937, -46.6579895 ], [ 169.15805054, -46.6511116 ], [ 169.143890379999988, -46.6511116 ], [ 169.13656616, -46.6472435 ], [ 169.15101624, -46.64579391 ], [ 169.14927673, -46.63497162 ], [ 169.1603241, -46.63082504 ], [ 169.165115359999987, -46.62439728 ], [ 169.156600950000012, -46.62160492 ], [ 169.153808590000011, -46.61436462 ], [ 169.14454651, -46.61516953 ], [ 169.14053345, -46.60760498 ], [ 169.12872314, -46.60488892 ], [ 169.135665890000013, -46.62473679 ], [ 169.141113280000013, -46.63138962 ], [ 169.13250732, -46.63472366 ], [ 169.14193726, -46.64194489 ], [ 169.12887573, -46.6411972 ], [ 169.108627320000011, -46.64750671 ], [ 169.102630620000014, -46.65348434 ], [ 169.10694885, -46.66388702 ], [ 169.0980835, -46.66195297 ], [ 169.07354736, -46.67065811 ], [ 169.0569458, -46.67277908 ], [ 169.0569458, -46.66611099 ], [ 169.047225950000012, -46.66057968 ], [ 169.03277588, -46.66055679 ], [ 169.03543091, -46.64950943 ], [ 169.04194641, -46.64472198 ], [ 169.03877258, -46.63925171 ], [ 169.023910519999987, -46.64039993 ], [ 169.03042603, -46.64452744 ], [ 169.03161621000001, -46.65572357 ], [ 169.02539063, -46.65936661 ], [ 169.02981567, -46.66883087 ], [ 169.022521970000014, -46.67245865 ], [ 169.00166321, -46.67583466 ], [ 168.98936462, -46.66579819 ], [ 168.96833801, -46.67305374 ], [ 168.94833374000001, -46.66249847 ], [ 168.94413757, -46.65713882 ], [ 168.881103520000011, -46.6558342 ], [ 168.84640503, -46.66082764 ], [ 168.84222412, -46.64888763 ], [ 168.829574580000013, -46.64356995 ], [ 168.826110840000013, -46.6241684 ], [ 168.8319397, -46.60944366 ], [ 168.82556152, -46.60333252 ], [ 168.80278015, -46.59249878 ], [ 168.797775269999988, -46.58277893 ], [ 168.80221558, -46.58000183 ], [ 168.78944397, -46.56305695 ], [ 168.78250122, -46.5597229 ], [ 168.77333069, -46.56305695 ], [ 168.77694702, -46.5680542 ], [ 168.74777222, -46.5680542 ], [ 168.751464840000011, -46.57089615 ], [ 168.78971863000001, -46.57527924 ], [ 168.796661379999989, -46.58083344 ], [ 168.7505188, -46.57159424 ], [ 168.71611023, -46.56944275 ], [ 168.68833923, -46.56944275 ], [ 168.6499939, -46.57361221 ], [ 168.59333801, -46.58611298 ], [ 168.59971619, -46.56833267 ], [ 168.6222229, -46.57583237 ], [ 168.63417053, -46.57138824 ], [ 168.65208435, -46.57255936 ], [ 168.673339840000011, -46.56972122 ], [ 168.639160159999989, -46.56861115 ], [ 168.63945007, -46.56277847 ], [ 168.6277771, -46.56083298 ], [ 168.62194824, -46.5644455 ], [ 168.613616940000014, -46.55666733 ], [ 168.603607180000012, -46.55333328 ], [ 168.58854675, -46.55416107 ], [ 168.579727170000012, -46.55805588 ], [ 168.549728390000013, -46.5605545 ], [ 168.58305359, -46.57611084 ], [ 168.583618159999986, -46.58611298 ], [ 168.56361389, -46.58750153 ], [ 168.56666565, -46.59166718 ], [ 168.551116940000014, -46.59805679 ], [ 168.51083374000001, -46.60833359 ], [ 168.491394039999989, -46.61027908 ], [ 168.44111633, -46.60610962 ], [ 168.426391599999988, -46.60666656 ], [ 168.40138245, -46.59666824 ], [ 168.383605960000011, -46.59472275 ], [ 168.37277222, -46.59722137 ], [ 168.37028503, -46.60277939 ], [ 168.361389159999987, -46.60138702 ], [ 168.37666321, -46.58277893 ], [ 168.40472412, -46.58166504 ], [ 168.41583252, -46.57138824 ], [ 168.41583252, -46.58000183 ], [ 168.44166565, -46.58666611 ], [ 168.44778442, -46.58166504 ], [ 168.44139099, -46.57860947 ], [ 168.4291687, -46.58083344 ], [ 168.43388367, -46.57500076 ], [ 168.457229610000013, -46.57805634 ], [ 168.451660159999989, -46.5858345 ], [ 168.46861267, -46.58889008 ], [ 168.47337341, -46.5866127 ], [ 168.49110413, -46.5933342 ], [ 168.52055359, -46.59860992 ], [ 168.52633667, -46.59360886 ], [ 168.515838620000011, -46.58277893 ], [ 168.51554871, -46.57527924 ], [ 168.4944458, -46.57333374 ], [ 168.479995730000013, -46.56499863 ], [ 168.47250366, -46.56638718 ], [ 168.44805908, -46.56083298 ], [ 168.41166687, -46.56027603 ], [ 168.38417053, -46.56777954 ], [ 168.37750244, -46.57416534 ], [ 168.362503049999987, -46.55527878 ], [ 168.3666687, -46.54916763 ], [ 168.35028076, -46.53555679 ], [ 168.34249878, -46.53972244 ], [ 168.333618159999986, -46.55138779 ], [ 168.32417297, -46.54416656 ], [ 168.30166626, -46.54944611 ], [ 168.300277709999989, -46.57055664 ], [ 168.30722046, -46.57527924 ], [ 168.306396479999989, -46.58833313 ], [ 168.31500244, -46.5933342 ], [ 168.33189392, -46.58855438 ], [ 168.354995730000013, -46.60472107 ], [ 168.360275269999988, -46.61194611 ], [ 168.35221863000001, -46.62166595 ], [ 168.336395259999989, -46.62611008 ], [ 168.31555176, -46.61777878 ], [ 168.31889343, -46.61194611 ], [ 168.3097229, -46.59361267 ], [ 168.28416443, -46.59027863 ], [ 168.2722168, -46.57916641 ], [ 168.275741579999988, -46.57104874 ], [ 168.266662599999989, -46.55583191 ], [ 168.24221802, -46.55138779 ], [ 168.22944641, -46.55250168 ], [ 168.23666382, -46.54083252 ], [ 168.22528076, -46.52777863 ], [ 168.22305298, -46.51722336 ], [ 168.232498170000014, -46.51361084 ], [ 168.26306152, -46.51610947 ], [ 168.27055359, -46.51027679 ], [ 168.28833008, -46.51166534 ], [ 168.27583313, -46.53777695 ], [ 168.29693604, -46.5334816 ], [ 168.28639221, -46.52379608 ], [ 168.29333496000001, -46.50860977 ], [ 168.30499268, -46.51194382 ], [ 168.32167053, -46.50860977 ], [ 168.356109620000012, -46.49333191 ], [ 168.36732483, -46.48431396 ], [ 168.3731842, -46.48651886 ], [ 168.37846375, -46.47879028 ], [ 168.36331177, -46.47776031 ], [ 168.353607180000012, -46.46777725 ], [ 168.34805298, -46.47444534 ], [ 168.34527588, -46.46749878 ], [ 168.34916687, -46.4327774 ], [ 168.33996582, -46.42879486 ], [ 168.335311890000014, -46.41953278 ], [ 168.32447815, -46.42375183 ], [ 168.32571411, -46.44521332 ], [ 168.331115720000014, -46.45027924 ], [ 168.322494510000013, -46.45639038 ], [ 168.28916931, -46.45777893 ], [ 168.28166199, -46.46138763 ], [ 168.26805115, -46.45944595 ], [ 168.26506042, -46.45360565 ], [ 168.27194214, -46.44194412 ], [ 168.27194214, -46.43249893 ], [ 168.2624054, -46.45100403 ], [ 168.26445007, -46.46055603 ], [ 168.27305603, -46.46527863 ], [ 168.297775269999988, -46.46583176 ], [ 168.29573059, -46.47100449 ], [ 168.3041687, -46.48500061 ], [ 168.30583191, -46.49499893 ], [ 168.27416992, -46.50055695 ], [ 168.259994510000013, -46.49083328 ], [ 168.25305176, -46.47638702 ], [ 168.236389159999987, -46.45166779 ], [ 168.22277832, -46.42388916 ], [ 168.19805908, -46.39361191 ], [ 168.17056274, -46.36833191 ], [ 168.12705994, -46.34797668 ], [ 168.08888245, -46.33972168 ], [ 168.06388855, -46.34027863 ], [ 168.043609620000012, -46.3461113 ], [ 168.02362061, -46.35762405 ], [ 168.02194214, -46.36777878 ], [ 168.03138733, -46.37361145 ], [ 168.03866577, -46.38439178 ], [ 168.016387939999987, -46.38472366 ], [ 167.99777222, -46.38194275 ], [ 167.991394039999989, -46.3769455 ], [ 167.97666931, -46.37555695 ], [ 167.96722412, -46.36805725 ], [ 167.94445801, -46.36067963 ], [ 167.917770389999987, -46.35722351 ], [ 167.90335083, -46.35824585 ], [ 167.883316040000011, -46.36552048 ], [ 167.87805176, -46.3722229 ], [ 167.887496950000013, -46.38138962 ], [ 167.88471985000001, -46.39222336 ], [ 167.86335754000001, -46.38780212 ], [ 167.85716248, -46.37923813 ], [ 167.84083557, -46.37083435 ], [ 167.82650757, -46.36870193 ], [ 167.81008911, -46.3748703 ], [ 167.803894039999989, -46.38666534 ], [ 167.78361511, -46.39110947 ], [ 167.77261353, -46.38155365 ], [ 167.76327515, -46.3792572 ], [ 167.754669189999987, -46.36791611 ], [ 167.735839840000011, -46.36639023 ], [ 167.7303009, -46.35381317 ], [ 167.73666382, -46.34883118 ], [ 167.724258420000012, -46.34235764 ], [ 167.731384279999986, -46.33611298 ], [ 167.719787599999989, -46.33073044 ], [ 167.71389771, -46.33354187 ], [ 167.68983459, -46.32960892 ], [ 167.686447140000013, -46.32264709 ], [ 167.69100952, -46.31072235 ], [ 167.71272278, -46.30556107 ], [ 167.72949219, -46.29817963 ], [ 167.732498170000014, -46.28472137 ], [ 167.72914124, -46.27574539 ], [ 167.71583557, -46.26166534 ], [ 167.698883059999986, -46.2491684 ], [ 167.65748596, -46.22185898 ], [ 167.64396667, -46.2101326 ], [ 167.62275696, -46.19984055 ], [ 167.61471558, -46.19277954 ], [ 167.592971799999987, -46.18430328 ], [ 167.56864929, -46.17797089 ], [ 167.534240720000014, -46.16310501 ], [ 167.51615906, -46.15756607 ], [ 167.48825073, -46.1522522 ], [ 167.44805908, -46.14888763 ], [ 167.42416382, -46.14944458 ], [ 167.39994812, -46.15403366 ], [ 167.40055847, -46.16277695 ], [ 167.393890379999988, -46.17722321 ], [ 167.376464840000011, -46.18568039 ], [ 167.355270389999987, -46.19194412 ], [ 167.351104740000011, -46.20055389 ], [ 167.36193848, -46.21027756 ], [ 167.36416626, -46.22916794 ], [ 167.360443120000014, -46.23791504 ], [ 167.34552002, -46.24416351 ], [ 167.34333801, -46.25222397 ], [ 167.32502747, -46.25092316 ], [ 167.32041931, -46.25468445 ], [ 167.301528929999989, -46.24765015 ], [ 167.284729, -46.24583435 ], [ 167.25305176, -46.2480545 ], [ 167.21444702, -46.26277924 ], [ 167.20733643, -46.25919342 ], [ 167.18833923, -46.26083374 ], [ 167.15428162, -46.25579071 ], [ 167.1300354, -46.25055313 ], [ 167.105789179999988, -46.2547493 ], [ 167.06639099, -46.24305725 ], [ 167.055603029999986, -46.23827744 ], [ 167.04556274, -46.23888779 ], [ 167.021118159999986, -46.22833252 ], [ 166.982772829999988, -46.23166656 ], [ 166.96556091, -46.22805405 ], [ 166.95555115, -46.22972107 ], [ 166.954315189999988, -46.22359467 ], [ 166.93278503, -46.22444534 ], [ 166.92666626, -46.21694565 ], [ 166.89971924, -46.22027588 ], [ 166.88250732, -46.21888733 ], [ 166.87306213, -46.21027756 ], [ 166.854721070000011, -46.21277618 ], [ 166.8527832, -46.20833206 ], [ 166.84277344, -46.21277618 ], [ 166.82000732, -46.21277618 ], [ 166.80360413, -46.21527863 ], [ 166.789993290000012, -46.22333145 ], [ 166.789993290000012, -46.22777939 ], [ 166.77638245, -46.23333359 ], [ 166.77709961, -46.21926498 ], [ 166.765274049999988, -46.21472168 ], [ 166.74806213, -46.21527863 ], [ 166.74249268, -46.21138763 ], [ 166.72917175, -46.21444321 ], [ 166.71861267, -46.20555496 ], [ 166.69917297, -46.20750046 ], [ 166.69416809, -46.21250153 ], [ 166.669723510000011, -46.21027756 ], [ 166.678894039999989, -46.20249939 ], [ 166.673339840000011, -46.20055389 ], [ 166.667221070000011, -46.2080574 ], [ 166.65750122, -46.20000076 ], [ 166.638885499999986, -46.1930542 ], [ 166.646118159999986, -46.1875 ], [ 166.63694763, -46.17889023 ], [ 166.639724730000012, -46.17388916 ], [ 166.63027954, -46.17222214 ], [ 166.62611389, -46.16083145 ], [ 166.607223510000011, -46.1566658 ], [ 166.61582947, -46.15277863 ], [ 166.61749268, -46.14305496 ], [ 166.62944031, -46.14222336 ], [ 166.65388489, -46.12833405 ], [ 166.67443848, -46.12166595 ], [ 166.68916321, -46.11360931 ], [ 166.69221497, -46.11639023 ], [ 166.708892819999988, -46.11500168 ], [ 166.71556091, -46.10805511 ], [ 166.707778929999989, -46.09999847 ], [ 166.710006709999988, -46.08722305 ], [ 166.72528076, -46.07138824 ], [ 166.7305603, -46.07972336 ], [ 166.732223510000011, -46.09277725 ], [ 166.74028015, -46.0858345 ], [ 166.732772829999988, -46.06833267 ], [ 166.770004269999987, -46.05805588 ], [ 166.772506709999988, -46.04833221 ], [ 166.78111267, -46.04666519 ], [ 166.77749634, -46.0308342 ], [ 166.76954651, -46.02185822 ], [ 166.768753049999987, -46.00646591 ], [ 166.78053284, -45.99823761 ], [ 166.82188416, -45.99301529 ], [ 166.844390870000012, -45.98576355 ], [ 166.87219238, -45.96914673 ], [ 166.87756348, -45.95784378 ], [ 166.894104, -45.94341278 ], [ 166.91598511, -45.93390274 ], [ 166.91667175, -45.92583466 ], [ 166.887649540000012, -45.94179916 ], [ 166.87960815, -45.94856644 ], [ 166.8719635, -45.94727707 ], [ 166.862228390000013, -45.95277786 ], [ 166.85054016, -45.9688797 ], [ 166.83345032, -45.9697876 ], [ 166.817596439999988, -45.97489929 ], [ 166.7808075, -45.97963333 ], [ 166.78767395, -45.98511124 ], [ 166.7769165, -45.99146271 ], [ 166.75489807, -45.99584579 ], [ 166.73880005, -46.01366806 ], [ 166.73880005, -46.02083206 ], [ 166.74833679, -46.02194595 ], [ 166.75389099, -46.0316658 ], [ 166.766662599999989, -46.04083252 ], [ 166.765838620000011, -46.05110931 ], [ 166.75054932, -46.05916595 ], [ 166.738616940000014, -46.05861282 ], [ 166.74528503, -46.05166626 ], [ 166.748413090000014, -46.04034805 ], [ 166.73971558, -46.03861237 ], [ 166.734725950000012, -46.05110931 ], [ 166.72444153, -46.05888748 ], [ 166.72250366, -46.06750107 ], [ 166.71360779, -46.07749939 ], [ 166.70506287, -46.07541275 ], [ 166.70811462, -46.05955887 ], [ 166.699722290000011, -46.05888748 ], [ 166.69778442, -46.05194473 ], [ 166.70666504, -46.04111099 ], [ 166.71472168, -46.03805542 ], [ 166.731109620000012, -46.02249908 ], [ 166.72444153, -46.01805496 ], [ 166.70666504, -46.03333282 ], [ 166.70195007, -46.03416824 ], [ 166.68527222, -46.05305481 ], [ 166.6930542, -46.0605545 ], [ 166.68682861, -46.06138611 ], [ 166.67666626, -46.05416489 ], [ 166.65888977, -46.06305695 ], [ 166.65583801, -46.07389069 ], [ 166.64582825, -46.08333206 ], [ 166.63822937, -46.07688522 ], [ 166.64054871, -46.06888962 ], [ 166.61416626, -46.0597229 ], [ 166.60417175, -46.07472229 ], [ 166.58706665, -46.07938004 ], [ 166.59028625, -46.08765793 ], [ 166.576110840000013, -46.09388733 ], [ 166.56611633, -46.09083176 ], [ 166.56916809, -46.08638763 ], [ 166.56500244, -46.07138824 ], [ 166.582504269999987, -46.0625 ], [ 166.579162599999989, -46.05916595 ], [ 166.58555603, -46.04916763 ], [ 166.58305359, -46.04000092 ], [ 166.59277344, -46.03305435 ], [ 166.60221863000001, -46.05472183 ], [ 166.608306879999986, -46.05342102 ], [ 166.60417175, -46.04055405 ], [ 166.608612060000013, -46.03472137 ], [ 166.60028076, -46.02999878 ], [ 166.604995730000013, -46.01916504 ], [ 166.59832764, -46.01555634 ], [ 166.60806274, -46.01055527 ], [ 166.610000609999986, -46.0 ], [ 166.61851501000001, -45.98809433 ], [ 166.63909912, -45.97813416 ], [ 166.65846252, -45.97631454 ], [ 166.69134521, -45.96843719 ], [ 166.72392273, -45.968853 ], [ 166.74874878, -45.96327209 ], [ 166.76437378, -45.96881104 ], [ 166.76705933, -45.96144485 ], [ 166.75389099, -45.95305634 ], [ 166.77082825, -45.94861221 ], [ 166.764160159999989, -45.94472122 ], [ 166.74212646, -45.94428635 ], [ 166.70567322, -45.95703125 ], [ 166.68365479, -45.95609665 ], [ 166.664276120000011, -45.95083237 ], [ 166.65119934, -45.95134354 ], [ 166.64537048, -45.94051361 ], [ 166.65988159, -45.92154694 ], [ 166.67559814, -45.9131813 ], [ 166.6847229, -45.89694595 ], [ 166.68360901, -45.88833237 ], [ 166.68833923, -45.87638855 ], [ 166.69781494, -45.86569214 ], [ 166.6847229, -45.86972046 ], [ 166.68386841, -45.8758049 ], [ 166.672225950000012, -45.88485336 ], [ 166.670288090000014, -45.89672089 ], [ 166.64706421, -45.91238022 ], [ 166.6159668, -45.9564743 ], [ 166.60255432, -45.96148682 ], [ 166.596054079999988, -45.97047043 ], [ 166.5844574, -45.97473526 ], [ 166.553924560000013, -45.97845459 ], [ 166.53016663, -45.99290466 ], [ 166.51916504, -45.99277878 ], [ 166.49806213, -46.00222397 ], [ 166.48083496000001, -45.99666595 ], [ 166.4694519, -45.99888992 ], [ 166.47138977, -46.01250076 ], [ 166.46028137, -46.00972366 ], [ 166.455276489999989, -46.0 ], [ 166.44908142, -45.99935913 ], [ 166.4458313, -45.98110962 ], [ 166.45452881, -45.97956848 ], [ 166.44721985000001, -45.96749878 ], [ 166.45202637, -45.96198273 ], [ 166.44721985000001, -45.95000076 ], [ 166.450927729999989, -45.94077682 ], [ 166.43861389, -45.91805649 ], [ 166.4291687, -45.91166687 ], [ 166.42582703, -45.90277863 ], [ 166.43400574, -45.89476013 ], [ 166.4319458, -45.87333298 ], [ 166.43852234, -45.86170959 ], [ 166.42961121, -45.85750198 ], [ 166.42971802, -45.84000015 ], [ 166.44166565, -45.83777618 ], [ 166.44952393, -45.8303299 ], [ 166.44555664, -45.8180542 ], [ 166.45437622, -45.8134613 ], [ 166.46083069, -45.81833267 ], [ 166.47555542, -45.8148613 ], [ 166.4750061, -45.8105545 ], [ 166.50389099, -45.79972076 ], [ 166.51603699, -45.80065536 ], [ 166.51930237, -45.79428482 ], [ 166.54556274, -45.79402924 ], [ 166.55664063, -45.79061508 ], [ 166.580001829999986, -45.79138947 ], [ 166.57600403, -45.79687119 ], [ 166.59555054, -45.79444504 ], [ 166.59486389, -45.79842377 ], [ 166.56990051, -45.81642532 ], [ 166.58630371000001, -45.80742264 ], [ 166.59382629000001, -45.80717468 ], [ 166.61451721, -45.79846191 ], [ 166.6222229, -45.79083252 ], [ 166.64019775, -45.78965378 ], [ 166.659942629999989, -45.78388596 ], [ 166.6849823, -45.78049088 ], [ 166.70002747, -45.77593613 ], [ 166.70535278, -45.77819061 ], [ 166.72683716, -45.77153778 ], [ 166.739349370000014, -45.77079773 ], [ 166.75427246000001, -45.76564026 ], [ 166.80441284, -45.75960922 ], [ 166.826385499999986, -45.76166534 ], [ 166.82800293, -45.77100754 ], [ 166.84346008, -45.77471924 ], [ 166.85531616, -45.76700592 ], [ 166.83833313, -45.76972198 ], [ 166.83833313, -45.76251984 ], [ 166.85006714, -45.76020813 ], [ 166.87095642, -45.74505997 ], [ 166.88572693, -45.73748016 ], [ 166.906448360000013, -45.73486328 ], [ 166.93208313, -45.73554611 ], [ 166.950271609999987, -45.72999954 ], [ 166.98005676, -45.71680069 ], [ 166.96989441, -45.71674347 ], [ 166.953887939999987, -45.72221756 ], [ 166.948181150000011, -45.72079086 ], [ 166.956253049999987, -45.71191406 ], [ 166.96080017, -45.6961937 ], [ 166.949569700000012, -45.69667435 ], [ 166.94018555, -45.71081161 ], [ 166.93823242, -45.72294998 ], [ 166.931411739999987, -45.7265892 ], [ 166.92607117, -45.720047 ], [ 166.90090942, -45.72591019 ], [ 166.8989563, -45.72280502 ], [ 166.8755188, -45.71450424 ], [ 166.86325073, -45.71772766 ], [ 166.84475708, -45.71232986 ], [ 166.8381958, -45.70619202 ], [ 166.82015991, -45.70447922 ], [ 166.79954529, -45.71475983 ], [ 166.795425419999987, -45.71363831 ], [ 166.76306152, -45.72358322 ], [ 166.75947571, -45.72254181 ], [ 166.729705810000013, -45.72852325 ], [ 166.72923279, -45.7063446 ], [ 166.73928833, -45.68661499 ], [ 166.737930299999988, -45.67990875 ], [ 166.75149536, -45.66757584 ], [ 166.760269169999987, -45.66748047 ], [ 166.80038452, -45.65806961 ], [ 166.81756592, -45.65629959 ], [ 166.84359741, -45.64725494 ], [ 166.85900879, -45.64386749 ], [ 166.868103029999986, -45.64537811 ], [ 166.88980103, -45.63834763 ], [ 166.9059906, -45.63991547 ], [ 166.91671753, -45.63199615 ], [ 166.93940735000001, -45.63021851 ], [ 166.9677887, -45.60643387 ], [ 166.950683590000011, -45.61153793 ], [ 166.93371582, -45.62442017 ], [ 166.918472290000011, -45.6280632 ], [ 166.90858459, -45.62686157 ], [ 166.88633728, -45.63008881 ], [ 166.86775208, -45.63557434 ], [ 166.85450745, -45.63003922 ], [ 166.841033939999988, -45.63373566 ], [ 166.815979, -45.64469147 ], [ 166.81167603, -45.64397049 ], [ 166.79020691, -45.65245819 ], [ 166.76397705, -45.6575737 ], [ 166.73257446, -45.65982819 ], [ 166.72944641, -45.64222336 ], [ 166.729995730000013, -45.61457825 ], [ 166.72389221, -45.60027695 ], [ 166.72929382, -45.59573364 ], [ 166.741867070000012, -45.5959053 ], [ 166.75906372, -45.59169388 ], [ 166.76785278, -45.59370041 ], [ 166.78633118, -45.57727814 ], [ 166.82492065, -45.56433105 ], [ 166.836135860000013, -45.55887604 ], [ 166.85505676, -45.55949783 ], [ 166.87083435, -45.55194473 ], [ 166.889434810000012, -45.56159973 ], [ 166.92521667, -45.56329727 ], [ 166.9412384, -45.55560303 ], [ 166.9599762, -45.55223465 ], [ 166.987228390000013, -45.56416702 ], [ 166.99610901, -45.55722046 ], [ 166.98260498, -45.56000137 ], [ 166.96983337, -45.5488739 ], [ 166.961135860000013, -45.54637527 ], [ 166.94572449, -45.54874802 ], [ 166.914398190000014, -45.55683899 ], [ 166.893615720000014, -45.55638885 ], [ 166.88195801, -45.54971695 ], [ 166.88366699, -45.53848267 ], [ 166.896240229999989, -45.53269577 ], [ 166.91389465, -45.53111267 ], [ 166.94236755, -45.52559662 ], [ 166.98031616, -45.5067749 ], [ 166.97111511, -45.50055695 ], [ 166.96261597, -45.50851822 ], [ 166.94058228, -45.51263809 ], [ 166.926818849999989, -45.52090454 ], [ 166.90501404, -45.52407837 ], [ 166.884414670000012, -45.52996063 ], [ 166.86834717, -45.52199554 ], [ 166.8740387, -45.5295639 ], [ 166.87150574, -45.54288864 ], [ 166.85083008, -45.54995346 ], [ 166.83999634, -45.54833221 ], [ 166.814819340000014, -45.55461121 ], [ 166.80871582, -45.55271149 ], [ 166.78744507, -45.56188202 ], [ 166.77507019, -45.55926132 ], [ 166.772369379999986, -45.56749725 ], [ 166.750778200000013, -45.57237244 ], [ 166.73445129000001, -45.5802536 ], [ 166.68666077, -45.58361053 ], [ 166.67105103, -45.57450104 ], [ 166.67304993, -45.56361008 ], [ 166.670272829999988, -45.55083466 ], [ 166.67581177, -45.54227829 ], [ 166.67944336, -45.52222061 ], [ 166.68804932, -45.50583267 ], [ 166.69639587, -45.49861145 ], [ 166.71749878, -45.50444412 ], [ 166.72471619, -45.49750137 ], [ 166.71194458, -45.48249817 ], [ 166.71055603, -45.4711113 ], [ 166.71916199, -45.46583176 ], [ 166.72840881, -45.4526329 ], [ 166.72416687, -45.44194412 ], [ 166.7338562, -45.43813324 ], [ 166.738616940000014, -45.42472076 ], [ 166.73194885, -45.42027664 ], [ 166.745300289999989, -45.41518021 ], [ 166.75111389, -45.4011116 ], [ 166.767379760000011, -45.40003967 ], [ 166.77583313, -45.39333344 ], [ 166.80178833, -45.39505005 ], [ 166.829574580000013, -45.40554428 ], [ 166.83537292, -45.41218948 ], [ 166.85256958, -45.42105484 ], [ 166.872817989999987, -45.42095184 ], [ 166.87901306, -45.43546677 ], [ 166.88945007, -45.44037247 ], [ 166.90588379, -45.43199158 ], [ 166.89057922, -45.43650436 ], [ 166.870025629999986, -45.41411209 ], [ 166.872955319999988, -45.40740967 ], [ 166.86703491, -45.39028168 ], [ 166.85946655, -45.38707352 ], [ 166.86521912, -45.40402985 ], [ 166.854431150000011, -45.41426468 ], [ 166.846603390000013, -45.40570831 ], [ 166.82868958, -45.39988708 ], [ 166.827911379999989, -45.39554977 ], [ 166.81056213, -45.39159775 ], [ 166.792495730000013, -45.37833405 ], [ 166.771392819999988, -45.37916565 ], [ 166.769729610000013, -45.37138748 ], [ 166.77667236, -45.3488884 ], [ 166.80499268, -45.31277847 ], [ 166.8152771, -45.30971909 ], [ 166.81777954, -45.30277634 ], [ 166.82997131, -45.30008698 ], [ 166.83332825, -45.28749847 ], [ 166.84416199, -45.27500153 ], [ 166.861114500000014, -45.27972412 ], [ 166.87277222, -45.29087067 ], [ 166.89512634, -45.29913712 ], [ 166.909118650000011, -45.30727768 ], [ 166.9379425, -45.31076431 ], [ 166.94976807, -45.32108307 ], [ 166.928497310000012, -45.32699203 ], [ 166.91558838, -45.33552933 ], [ 166.89476013, -45.34000778 ], [ 166.90756226, -45.34300613 ], [ 166.91964722, -45.33968735 ], [ 166.93341064, -45.33008575 ], [ 166.94917297, -45.3274498 ], [ 166.961730960000011, -45.3203392 ], [ 166.971862789999989, -45.32273483 ], [ 166.98445129000001, -45.33330154 ], [ 167.02868652, -45.35214615 ], [ 167.020004269999987, -45.36055374 ], [ 167.02047729, -45.36644745 ], [ 167.03666687, -45.3544426 ], [ 167.042770389999987, -45.35777664 ], [ 167.06654358, -45.3612175 ], [ 167.09056091, -45.38527679 ], [ 167.09335327, -45.39879227 ], [ 167.10716248, -45.41318512 ], [ 167.1068573, -45.41847229 ], [ 167.11582947, -45.43083191 ], [ 167.11528015, -45.44861221 ], [ 167.109573360000013, -45.4552002 ], [ 167.08213806, -45.46886063 ], [ 167.07273865, -45.47683716 ], [ 167.07546997, -45.48483658 ], [ 167.05770874000001, -45.50493622 ], [ 167.07975769, -45.48871994 ], [ 167.07969666, -45.48031998 ], [ 167.090332030000013, -45.47013474 ], [ 167.11999512, -45.45833206 ], [ 167.122146609999987, -45.44857407 ], [ 167.135131840000014, -45.44285583 ], [ 167.15049744, -45.4548645 ], [ 167.152771, -45.46166611 ], [ 167.16339111, -45.46514511 ], [ 167.149047849999988, -45.4462471 ], [ 167.12934875, -45.43193436 ], [ 167.13250732, -45.41833496 ], [ 167.11471558, -45.39805603 ], [ 167.109176639999987, -45.38716507 ], [ 167.09849548, -45.3809967 ], [ 167.09971619, -45.37638855 ], [ 167.08528137, -45.36584473 ], [ 167.08528137, -45.36111069 ], [ 167.06666565, -45.35027695 ], [ 167.042770389999987, -45.34666824 ], [ 167.00750732, -45.32110977 ], [ 167.00721741000001, -45.31499863 ], [ 167.015274049999988, -45.31222153 ], [ 167.0171814, -45.30317307 ], [ 167.02757263, -45.3018074 ], [ 167.03416443, -45.29305649 ], [ 167.04916382, -45.29083252 ], [ 167.06929016, -45.29294205 ], [ 167.07836914, -45.28929138 ], [ 167.113616940000014, -45.28610992 ], [ 167.12889099, -45.28305435 ], [ 167.14582825, -45.28972244 ], [ 167.14860535, -45.30416489 ], [ 167.17468262, -45.32094955 ], [ 167.18972778, -45.31972122 ], [ 167.184341429999989, -45.31237793 ], [ 167.17259216, -45.31438446 ], [ 167.15602112, -45.30072403 ], [ 167.15611267, -45.28861237 ], [ 167.1434021, -45.27856827 ], [ 167.1472168, -45.27027893 ], [ 167.1555481, -45.26944351 ], [ 167.1703186, -45.25483322 ], [ 167.16416931, -45.24972153 ], [ 167.14439392, -45.2661171 ], [ 167.12495422, -45.26202393 ], [ 167.12028503, -45.2705574 ], [ 167.110275269999988, -45.27694321 ], [ 167.10083008, -45.27500153 ], [ 167.06416321, -45.28245926 ], [ 167.04444885, -45.2816658 ], [ 167.025039670000012, -45.28647232 ], [ 167.011383059999986, -45.28027725 ], [ 167.00250244, -45.26472092 ], [ 167.00639343, -45.2508316 ], [ 167.00111389, -45.24166489 ], [ 166.991439820000011, -45.23694229 ], [ 166.98588562, -45.22650146 ], [ 166.97512817, -45.21796417 ], [ 166.97685242, -45.21243668 ], [ 166.96763611, -45.19170761 ], [ 166.97590637, -45.19077301 ], [ 166.97685242, -45.18120956 ], [ 166.983886719999987, -45.17416763 ], [ 166.983337400000011, -45.1669426 ], [ 166.99327087, -45.16505432 ], [ 166.98747253, -45.15602112 ], [ 166.976104740000011, -45.14749908 ], [ 166.97555542, -45.13722229 ], [ 166.98757935, -45.13148117 ], [ 166.98693848, -45.12749863 ], [ 167.001190189999988, -45.12438583 ], [ 167.01306152, -45.10388947 ], [ 167.01445007, -45.10805511 ], [ 167.03944397, -45.11250687 ], [ 167.05805969, -45.13083267 ], [ 167.06056213, -45.13972092 ], [ 167.080001829999986, -45.16055679 ], [ 167.09222412, -45.16611099 ], [ 167.10333252, -45.1847229 ], [ 167.13194275, -45.17722321 ], [ 167.148895259999989, -45.17638779 ], [ 167.13305664, -45.17050552 ], [ 167.1091156, -45.17777634 ], [ 167.09638977, -45.15722275 ], [ 167.08805847, -45.15416718 ], [ 167.06832886, -45.1269455 ], [ 167.07125854, -45.12464142 ], [ 167.05194092, -45.10722351 ], [ 167.04156494, -45.10305405 ], [ 167.02749634, -45.10361099 ], [ 167.02972412, -45.09527588 ], [ 167.039978029999986, -45.08889389 ], [ 167.043884279999986, -45.07666779 ], [ 167.05805969, -45.06750107 ], [ 167.06039429, -45.06013107 ], [ 167.078887939999987, -45.05083466 ], [ 167.08694458, -45.05166626 ], [ 167.097229, -45.07555389 ], [ 167.10583496000001, -45.07916641 ], [ 167.11166382, -45.09027863 ], [ 167.13130188, -45.10022354 ], [ 167.12916565, -45.10861206 ], [ 167.13583374000001, -45.12250137 ], [ 167.13221741000001, -45.12916565 ], [ 167.139999390000014, -45.13138962 ], [ 167.147506709999988, -45.14333344 ], [ 167.16082764, -45.14444351 ], [ 167.16583252, -45.15139008 ], [ 167.167221070000011, -45.14277649 ], [ 167.14305115, -45.13333511 ], [ 167.14555359, -45.12055588 ], [ 167.138885499999986, -45.10916519 ], [ 167.14718628, -45.09962463 ], [ 167.172225950000012, -45.10305405 ], [ 167.186721799999987, -45.10077286 ], [ 167.2180481, -45.10889053 ], [ 167.19883728, -45.09643555 ], [ 167.16139221, -45.09638977 ], [ 167.15611267, -45.09222412 ], [ 167.13754272, -45.0950737 ], [ 167.12916565, -45.0913887 ], [ 167.11166382, -45.07444382 ], [ 167.09527588, -45.04944611 ], [ 167.09111023, -45.03749847 ], [ 167.103607180000012, -45.02999878 ], [ 167.09194946, -45.02500153 ], [ 167.110565189999988, -45.01937103 ], [ 167.103607180000012, -45.01388931 ], [ 167.1255188, -45.0110321 ], [ 167.13528442, -45.0027771 ], [ 167.13574219, -45.01514053 ], [ 167.145278929999989, -45.01861191 ], [ 167.1680603, -45.02138901 ], [ 167.184356689999987, -45.02074814 ], [ 167.197494510000013, -45.02777863 ], [ 167.21777344, -45.03388977 ], [ 167.24278259, -45.04416656 ], [ 167.25332642, -45.04333496 ], [ 167.2694397, -45.04944611 ], [ 167.293609620000012, -45.04833221 ], [ 167.30221558, -45.05222321 ], [ 167.30749512, -45.04499817 ], [ 167.29789734, -45.04177475 ], [ 167.28778076, -45.04472351 ], [ 167.27194214, -45.03749847 ], [ 167.2555542, -45.03527832 ], [ 167.24667358, -45.03833389 ], [ 167.232772829999988, -45.03527832 ], [ 167.22250366, -45.02527618 ], [ 167.20083618000001, -45.01333237 ], [ 167.186752320000011, -45.01272202 ], [ 167.17790222, -45.007061 ], [ 167.163604740000011, -45.00500107 ], [ 167.146270750000014, -45.00873566 ], [ 167.136108400000012, -44.98611069 ], [ 167.146392819999988, -44.97444534 ], [ 167.16944885, -44.96805573 ], [ 167.17582703, -44.95666504 ], [ 167.1930542, -44.96166611 ], [ 167.19528198, -44.95722198 ], [ 167.1875, -44.95027924 ], [ 167.19917297, -44.94138718 ], [ 167.21166992, -44.92666626 ], [ 167.21916199, -44.92277908 ], [ 167.227493290000012, -44.92722321 ], [ 167.23956299, -44.92740631 ], [ 167.241836549999988, -44.92250824 ], [ 167.23167419, -44.91833496 ], [ 167.222229, -44.91944504 ], [ 167.22694397, -44.90888977 ], [ 167.24305725, -44.90638733 ], [ 167.24278259, -44.89694595 ], [ 167.25332642, -44.89444351 ], [ 167.25805664, -44.88611221 ], [ 167.27082825, -44.8777771 ], [ 167.2694397, -44.86861038 ], [ 167.29916382, -44.86360931 ], [ 167.31944275, -44.85277939 ], [ 167.32583618000001, -44.8441658 ], [ 167.33999634, -44.84444427 ], [ 167.34388733, -44.85638809 ], [ 167.34194946, -44.86444473 ], [ 167.34777832, -44.87638855 ], [ 167.36721802, -44.89110947 ], [ 167.37091064, -44.90597534 ], [ 167.376739500000014, -44.91066742 ], [ 167.37638855, -44.92194366 ], [ 167.36677551, -44.92989731 ], [ 167.36651611, -44.94495392 ], [ 167.36149597, -44.94777679 ], [ 167.37620544, -44.95146179 ], [ 167.39344788, -44.9500351 ], [ 167.40182495, -44.95859909 ], [ 167.40472412, -44.96944427 ], [ 167.3805542, -44.98472214 ], [ 167.38305664, -44.99833298 ], [ 167.40138245, -44.97861099 ], [ 167.41194153, -44.97333145 ], [ 167.422348019999987, -44.97382736 ], [ 167.42582703, -44.98194504 ], [ 167.44166565, -44.98389053 ], [ 167.43417358, -44.97888947 ], [ 167.4347229, -44.97055435 ], [ 167.42443848, -44.9655571 ], [ 167.40258789, -44.94337463 ], [ 167.38415527, -44.93684006 ], [ 167.389999390000014, -44.92610931 ], [ 167.40167236, -44.92935944 ], [ 167.393615720000014, -44.92194366 ], [ 167.392501829999986, -44.9058342 ], [ 167.387222290000011, -44.89972305 ], [ 167.38417053, -44.88305664 ], [ 167.37472534, -44.87555695 ], [ 167.36715698, -44.85725021 ], [ 167.35644531, -44.84527206 ], [ 167.35444641, -44.82500076 ], [ 167.37306213, -44.8172226 ], [ 167.38000488, -44.80805588 ], [ 167.392776489999989, -44.81472397 ], [ 167.39193726, -44.80611038 ], [ 167.40527344, -44.79555511 ], [ 167.416381840000014, -44.79583359 ], [ 167.44833374000001, -44.77388763 ], [ 167.47084045, -44.77249908 ], [ 167.48916626, -44.77666855 ], [ 167.512222290000011, -44.79472351 ], [ 167.5375061, -44.80027771 ], [ 167.53321838, -44.80805206 ], [ 167.516387939999987, -44.81916809 ], [ 167.50444031, -44.8330574 ], [ 167.48916626, -44.8461113 ], [ 167.49110413, -44.86222076 ], [ 167.509994510000013, -44.87527847 ], [ 167.53027344, -44.88166809 ], [ 167.52471924, -44.87250137 ], [ 167.50666809, -44.86333466 ], [ 167.49972534, -44.8544426 ], [ 167.512222290000011, -44.84805679 ], [ 167.519729610000013, -44.8330574 ], [ 167.545837400000011, -44.80722046 ], [ 167.546661379999989, -44.79999924 ], [ 167.52932739, -44.7948494 ], [ 167.52471924, -44.78555679 ], [ 167.506103520000011, -44.76805496 ], [ 167.5055542, -44.75888824 ], [ 167.49417114, -44.75309372 ], [ 167.51916504, -44.73389053 ], [ 167.53027344, -44.72999954 ], [ 167.54333496000001, -44.73666763 ], [ 167.5549469, -44.73852539 ], [ 167.56944275, -44.73611069 ], [ 167.58972168, -44.74111176 ], [ 167.5725708, -44.72187042 ], [ 167.55944824, -44.71583176 ], [ 167.56916809, -44.69499969 ], [ 167.57055664, -44.68638992 ], [ 167.58729553, -44.66854477 ], [ 167.603164670000012, -44.66573334 ], [ 167.613891599999988, -44.65888977 ], [ 167.62445068, -44.6613884 ], [ 167.639724730000012, -44.67111206 ], [ 167.65499878, -44.68638992 ], [ 167.66333008, -44.6847229 ], [ 167.66667175, -44.67722321 ], [ 167.65222168, -44.65833282 ], [ 167.63471985000001, -44.64666748 ], [ 167.63417053, -44.64110947 ], [ 167.64956665, -44.64071655 ], [ 167.6680603, -44.63305664 ], [ 167.677505489999987, -44.62444305 ], [ 167.70787048, -44.60488129 ], [ 167.737777709999989, -44.60388947 ], [ 167.74777222, -44.59194565 ], [ 167.74278259, -44.59083176 ], [ 167.75027466, -44.58000183 ], [ 167.76028442, -44.58111191 ], [ 167.78334045, -44.57194519 ], [ 167.78791809, -44.58618164 ], [ 167.80317688, -44.59117889 ], [ 167.80555725, -44.60277939 ], [ 167.82556152, -44.60499954 ], [ 167.81721497, -44.59944534 ], [ 167.82167053, -44.56972122 ], [ 167.8221283, -44.55041885 ], [ 167.829055790000012, -44.54079819 ], [ 167.828887939999987, -44.51055527 ], [ 167.81582642, -44.4980545 ], [ 167.83860779, -44.48888779 ], [ 167.85694885, -44.46606064 ], [ 167.85856628, -44.45378494 ], [ 167.863891599999988, -44.44499969 ], [ 167.883270259999989, -44.43092728 ], [ 167.889999390000014, -44.42083359 ], [ 167.90614319, -44.41422653 ], [ 167.90872192, -44.40541077 ], [ 167.92195129000001, -44.40277863 ], [ 167.92971802, -44.38999939 ], [ 167.95666504, -44.3797226 ], [ 167.97389221, -44.38555527 ], [ 167.98805237, -44.375 ], [ 168.00067139, -44.35326385 ], [ 167.999099730000012, -44.36158752 ], [ 168.00601196, -44.36971283 ], [ 168.01545715, -44.37123108 ], [ 168.01425171, -44.37918091 ], [ 168.02929688, -44.40123367 ], [ 168.03729248, -44.40808487 ], [ 168.03118896, -44.41884232 ], [ 168.03225708, -44.43580246 ], [ 168.03817749000001, -44.44482422 ], [ 168.049331669999987, -44.45034409 ], [ 168.05358887, -44.46315384 ], [ 168.05328369, -44.47794342 ], [ 168.05732727, -44.51187515 ], [ 168.068603520000011, -44.51861191 ], [ 168.079833979999989, -44.5114212 ], [ 168.0715332, -44.49285126 ], [ 168.07159424, -44.46428299 ], [ 168.06222534, -44.43722153 ], [ 168.055618290000012, -44.43026352 ], [ 168.05722046, -44.41522598 ], [ 168.03443909, -44.38805389 ], [ 168.02024841, -44.38628387 ], [ 168.017227170000012, -44.37166595 ], [ 168.00485229, -44.36623383 ], [ 168.00805664, -44.35138702 ], [ 168.006774900000011, -44.33853912 ], [ 167.99667358, -44.33472061 ], [ 167.99333191, -44.32722092 ], [ 168.01055908, -44.32277679 ], [ 168.01554871, -44.32527924 ], [ 168.05805969, -44.32611084 ], [ 168.07221985000001, -44.33111191 ], [ 168.09138489, -44.33027649 ], [ 168.104721070000011, -44.31499863 ], [ 168.11721802, -44.29027939 ], [ 168.10417175, -44.27916718 ], [ 168.106399540000012, -44.27413177 ], [ 168.11724854, -44.27658844 ], [ 168.12504578, -44.28541183 ], [ 168.135925289999989, -44.28790665 ], [ 168.14987183, -44.2840538 ], [ 168.153793330000013, -44.28849411 ], [ 168.21661377, -44.27118683 ], [ 168.219650269999988, -44.26479721 ], [ 168.24057007, -44.25902176 ], [ 168.24057007, -44.25902176 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.13", "id_1": 13, "name_1": "Taranaki", "hasc_1": "NZ.TK", "population2022": 127300, "areakm2": 8011.9, "density2022": 15.89 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.017501829999986, -39.06027603 ], [ 174.01832581, -39.06138992 ], [ 174.016555790000012, -39.0621109 ], [ 174.017501829999986, -39.06027603 ], [ 174.017501829999986, -39.06027603 ] ] ], [ [ [ 174.019729610000013, -39.05861282 ], [ 174.021118159999986, -39.0597229 ], [ 174.01942444, -39.06063843 ], [ 174.019729610000013, -39.05861282 ], [ 174.019729610000013, -39.05861282 ] ] ], [ [ [ 174.02638245, -39.05166626 ], [ 174.02555847, -39.04999924 ], [ 174.02709961, -39.05005264 ], [ 174.02638245, -39.05166626 ], [ 174.02638245, -39.05166626 ] ] ], [ [ [ 174.01568604, -39.04586411 ], [ 174.01489258, -39.04523468 ], [ 174.016387939999987, -39.04472351 ], [ 174.01568604, -39.04586411 ], [ 174.01568604, -39.04586411 ] ] ], [ [ [ 174.29194641, -38.94610977 ], [ 174.292221070000011, -38.94805527 ], [ 174.2902832, -38.94722366 ], [ 174.29194641, -38.94610977 ], [ 174.29194641, -38.94610977 ] ] ], [ [ [ 174.61305237, -38.70583344 ], [ 174.6257019, -38.72396851 ], [ 174.635940549999987, -38.72636795 ], [ 174.64909363000001, -38.72238922 ], [ 174.66009521, -38.73557663 ], [ 174.67326355, -38.73160553 ], [ 174.69009399, -38.73203278 ], [ 174.69377136, -38.73641586 ], [ 174.7069397, -38.73245621 ], [ 174.727462769999988, -38.73726273 ], [ 174.74430847, -38.73768234 ], [ 174.75164795, -38.74642944 ], [ 174.797805790000012, -38.73258972 ], [ 174.80807495, -38.73498154 ], [ 174.82278442, -38.75244141 ], [ 174.82937622, -38.75046158 ], [ 174.836730960000011, -38.75918579 ], [ 174.83381653, -38.76552582 ], [ 174.844100950000012, -38.76790619 ], [ 174.85145569, -38.77662277 ], [ 174.85806274, -38.77464294 ], [ 174.872024540000012, -38.78137589 ], [ 174.85882568, -38.78533936 ], [ 174.855133059999986, -38.78098297 ], [ 174.82214355, -38.79088974 ], [ 174.82290649, -38.80158997 ], [ 174.81414795, -38.82061386 ], [ 174.79067993000001, -38.82221222 ], [ 174.809082030000013, -38.84399796 ], [ 174.79956055, -38.85232925 ], [ 174.80691528, -38.86103821 ], [ 174.800323490000011, -38.86302948 ], [ 174.8371582, -38.90654373 ], [ 174.85035706, -38.90256119 ], [ 174.84667969, -38.89821243 ], [ 174.8664856, -38.89224625 ], [ 174.87678528, -38.89460373 ], [ 174.88786316, -38.90764618 ], [ 174.8812561, -38.90963745 ], [ 174.88862610000001, -38.91832733 ], [ 174.876190189999988, -38.93299484 ], [ 174.883575439999987, -38.94168854 ], [ 174.87696838, -38.94367981 ], [ 174.890960690000014, -38.95037842 ], [ 174.885131840000014, -38.96305084 ], [ 174.87852478, -38.96504593 ], [ 174.89253235000001, -38.97174072 ], [ 174.88008118, -38.98641205 ], [ 174.887481689999987, -38.99509811 ], [ 174.90071106, -38.99110794 ], [ 174.90440369, -38.99545288 ], [ 174.917633059999986, -38.99146271 ], [ 174.925033570000011, -39.00014496 ], [ 174.91920471, -39.01281738 ], [ 174.92951965, -39.01516342 ], [ 174.9390564, -39.00683212 ], [ 174.935348510000011, -39.002491 ], [ 174.948577879999988, -38.99849701 ], [ 174.958892819999988, -39.00084305 ], [ 174.966308590000011, -39.0095253 ], [ 174.963394169999987, -39.0158577 ], [ 174.974533079999986, -39.02887726 ], [ 174.96791077, -39.03087234 ], [ 174.98275757, -39.0482254 ], [ 174.969512939999987, -39.05222321 ], [ 174.96740723, -39.06923294 ], [ 174.98065186, -39.06523514 ], [ 174.990997310000012, -39.06757736 ], [ 174.99842834, -39.07624817 ], [ 175.01828003, -39.07025146 ], [ 175.05218506, -39.07092285 ], [ 175.046386719999987, -39.08359146 ], [ 175.05381775, -39.09225845 ], [ 175.0604248, -39.09025955 ], [ 175.07901001, -39.11192322 ], [ 175.065765379999988, -39.11592865 ], [ 175.041381840000014, -39.10693359 ], [ 175.03767395, -39.10259628 ], [ 175.02442932, -39.10660172 ], [ 175.018630980000012, -39.11927414 ], [ 175.00538635, -39.12327957 ], [ 175.01281738, -39.13195038 ], [ 174.99586487, -39.1316185 ], [ 175.003295900000012, -39.14028931 ], [ 174.979705810000013, -39.14196014 ], [ 174.99458313, -39.15930557 ], [ 174.96809387, -39.16732025 ], [ 174.95773315, -39.16498566 ], [ 174.954833979999989, -39.17132568 ], [ 174.965179440000014, -39.17366028 ], [ 174.94529724, -39.17967224 ], [ 174.957519530000013, -39.18417358 ], [ 174.949844359999986, -39.19468689 ], [ 174.94320679, -39.19668961 ], [ 174.931579590000013, -39.22206116 ], [ 174.918319700000012, -39.2260704 ], [ 174.92576599, -39.23474503 ], [ 174.9125061, -39.23875809 ], [ 174.90504456, -39.23008347 ], [ 174.899230960000011, -39.24277115 ], [ 174.88224792, -39.24244308 ], [ 174.874801639999987, -39.23376465 ], [ 174.86526489, -39.24211502 ], [ 174.872695920000012, -39.25079346 ], [ 174.86315918, -39.25914764 ], [ 174.86688232, -39.26348495 ], [ 174.853607180000012, -39.26749802 ], [ 174.839050289999989, -39.2992363 ], [ 174.82577515, -39.30325317 ], [ 174.82949829, -39.3075943 ], [ 174.81994629, -39.31594849 ], [ 174.82739258, -39.32462692 ], [ 174.820755, -39.32663727 ], [ 174.82820129000001, -39.33531952 ], [ 174.842285159999989, -39.34198761 ], [ 174.85557556, -39.33796692 ], [ 174.86303711, -39.34664536 ], [ 174.86967468, -39.34463501 ], [ 174.88088989, -39.35765076 ], [ 174.9016571, -39.36230469 ], [ 174.892929079999988, -39.38135147 ], [ 174.88627625, -39.38336563 ], [ 174.88711548, -39.3940506 ], [ 174.87007141, -39.39373398 ], [ 174.896270750000014, -39.4241066 ], [ 174.88961792, -39.42611694 ], [ 174.89710999, -39.43479538 ], [ 174.89045715, -39.43680573 ], [ 174.905456539999989, -39.45415878 ], [ 174.91584778, -39.45648193 ], [ 174.91294861, -39.4628334 ], [ 174.923324580000013, -39.46515656 ], [ 174.938293460000011, -39.48250198 ], [ 174.94866943, -39.48482132 ], [ 174.96192932, -39.48078537 ], [ 174.96940613000001, -39.48945618 ], [ 174.96652222, -39.49580765 ], [ 174.97773743, -39.50881195 ], [ 174.97111511, -39.51082993 ], [ 174.978591920000014, -39.51950073 ], [ 174.9719696, -39.52151871 ], [ 174.99440002, -39.5475235 ], [ 174.99526978, -39.55821609 ], [ 174.98202515, -39.56225967 ], [ 174.98577881, -39.56659317 ], [ 174.97427368000001, -39.59202576 ], [ 174.978027340000011, -39.59636307 ], [ 174.97229004, -39.60908127 ], [ 174.9797821, -39.61775208 ], [ 174.97317505, -39.61977768 ], [ 174.980682370000011, -39.62844849 ], [ 174.97406006, -39.63047409 ], [ 174.98532104, -39.64347839 ], [ 174.97209167, -39.64753342 ], [ 174.98246765, -39.64984131 ], [ 174.98335266, -39.66054153 ], [ 174.98997498, -39.65851212 ], [ 174.9974823, -39.66718292 ], [ 174.97764587, -39.67326736 ], [ 174.98141479, -39.67760086 ], [ 174.95495605, -39.68570328 ], [ 174.95118713, -39.68136597 ], [ 174.931274409999986, -39.68742752 ], [ 174.93884277, -39.69610596 ], [ 174.92555237, -39.70014191 ], [ 174.9264679, -39.71084213 ], [ 174.941619870000011, -39.72821426 ], [ 174.92832947, -39.7322464 ], [ 174.925460820000012, -39.73860168 ], [ 174.93307495, -39.74729156 ], [ 174.919708250000014, -39.75130844 ], [ 174.9158783, -39.74695969 ], [ 174.888885499999986, -39.75491714 ], [ 174.88980103, -39.76560211 ], [ 174.87625122, -39.76953506 ], [ 174.88008118, -39.77389145 ], [ 174.8528595, -39.78165054 ], [ 174.853713989999989, -39.79227448 ], [ 174.84381104, -39.80039597 ], [ 174.82299805, -39.80586243 ], [ 174.80526733, -39.80513382 ], [ 174.795837400000011, -39.82356262 ], [ 174.802810670000014, -39.82175827 ], [ 174.789520259999989, -39.83581543 ], [ 174.78570557, -39.83148956 ], [ 174.779373170000014, -39.8437233 ], [ 174.762207030000013, -39.85339355 ], [ 174.77305603, -39.85594177 ], [ 174.77902222, -39.86208725 ], [ 174.735412599999989, -39.86914062 ], [ 174.71916199, -39.86833191 ], [ 174.70318604, -39.86205673 ], [ 174.68333435, -39.84916687 ], [ 174.65007019, -39.83589935 ], [ 174.603881840000014, -39.82389069 ], [ 174.59555054, -39.82389069 ], [ 174.57746887, -39.8170166 ], [ 174.56111145, -39.81750107 ], [ 174.53555298, -39.80444336 ], [ 174.51060486, -39.78047943 ], [ 174.46611023, -39.76444626 ], [ 174.44778442, -39.75361252 ], [ 174.41757202, -39.7309494 ], [ 174.39562988, -39.70663452 ], [ 174.38694763, -39.70000076 ], [ 174.354995730000013, -39.66117477 ], [ 174.3349762, -39.64667511 ], [ 174.30786133, -39.63366699 ], [ 174.29853821, -39.62673187 ], [ 174.27963257, -39.62005615 ], [ 174.26144409, -39.61820984 ], [ 174.24777222, -39.61194611 ], [ 174.235000609999986, -39.60222244 ], [ 174.19891357, -39.58702087 ], [ 174.16278076, -39.5858345 ], [ 174.14805603, -39.58083344 ], [ 174.13082886, -39.57888794 ], [ 174.105270389999987, -39.57944489 ], [ 174.08430481, -39.57617187 ], [ 174.07867432, -39.57793808 ], [ 174.05204773, -39.56345749 ], [ 174.041107180000012, -39.5597229 ], [ 174.014160159999989, -39.55749893 ], [ 174.00361633, -39.55194473 ], [ 173.987503049999987, -39.55444336 ], [ 173.958618159999986, -39.5391655 ], [ 173.948883059999986, -39.54000092 ], [ 173.941726679999988, -39.52871323 ], [ 173.92411804, -39.51942062 ], [ 173.91113281, -39.51940918 ], [ 173.90028381, -39.50111008 ], [ 173.88278198, -39.48749924 ], [ 173.85667419, -39.4580574 ], [ 173.83163452, -39.44695663 ], [ 173.83082581, -39.44055557 ], [ 173.82028198, -39.43083191 ], [ 173.79673767, -39.41806412 ], [ 173.77940369, -39.38747787 ], [ 173.77101135, -39.36660385 ], [ 173.77258301, -39.35658264 ], [ 173.76928711, -39.33974075 ], [ 173.75935364, -39.32108688 ], [ 173.76014709, -39.31324005 ], [ 173.754653929999989, -39.30379105 ], [ 173.75582886, -39.29583359 ], [ 173.75131226, -39.28197479 ], [ 173.754959109999987, -39.26748657 ], [ 173.77244568, -39.24766541 ], [ 173.77583313, -39.23361206 ], [ 173.77272034, -39.2306633 ], [ 173.777771, -39.2155571 ], [ 173.784378049999987, -39.21047974 ], [ 173.79034424, -39.19300461 ], [ 173.817184450000013, -39.17972183 ], [ 173.82060242, -39.17007446 ], [ 173.83311462, -39.16767502 ], [ 173.84536743000001, -39.15342712 ], [ 173.88317871000001, -39.13434601 ], [ 173.89604187, -39.13205338 ], [ 173.912048340000013, -39.11937332 ], [ 173.94709778, -39.11579514 ], [ 173.968124390000014, -39.10219574 ], [ 173.98103333, -39.09764481 ], [ 173.99110413, -39.08889008 ], [ 174.0027771, -39.0858345 ], [ 174.01832581, -39.06888962 ], [ 174.02416992, -39.05722046 ], [ 174.0402832, -39.06027603 ], [ 174.0625, -39.05500031 ], [ 174.071105960000011, -39.05583191 ], [ 174.09805298, -39.04472351 ], [ 174.103607180000012, -39.03666687 ], [ 174.11917114, -39.0316658 ], [ 174.13417053, -39.02000046 ], [ 174.15621948, -39.01639175 ], [ 174.170822140000013, -39.0064888 ], [ 174.17973328, -38.99571609 ], [ 174.19833374000001, -38.98805618 ], [ 174.229995730000013, -38.98899841 ], [ 174.243240359999987, -38.98302841 ], [ 174.2671814, -38.98713684 ], [ 174.28694153, -38.98583221 ], [ 174.29417419, -38.98249817 ], [ 174.31135559, -38.98254395 ], [ 174.32000732, -38.98845673 ], [ 174.34056091, -38.99388885 ], [ 174.3639679, -38.99269867 ], [ 174.38166809, -38.98694611 ], [ 174.39193726, -38.98888779 ], [ 174.40847778, -38.98189545 ], [ 174.43556213, -38.96250153 ], [ 174.497131349999989, -38.89738464 ], [ 174.50917053, -38.89027786 ], [ 174.514724730000012, -38.89333344 ], [ 174.52278137, -38.88861084 ], [ 174.550018310000013, -38.86570358 ], [ 174.55975342, -38.85511017 ], [ 174.577774049999988, -38.82694626 ], [ 174.580276489999989, -38.81861115 ], [ 174.59472656, -38.81638718 ], [ 174.58444214, -38.8125 ], [ 174.602188109999986, -38.76036453 ], [ 174.608337400000011, -38.73166656 ], [ 174.60949707, -38.71216965 ], [ 174.61305237, -38.70583344 ], [ 174.61305237, -38.70583344 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.14", "id_1": 14, "name_1": "Waikato", "hasc_1": "NZ.WK", "population2022": 513800, "areakm2": 24506.987, "density2022": 20.97 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.80285645, -38.10591125 ], [ 174.80070496, -38.09990311 ], [ 174.80506897, -38.10205841 ], [ 174.80285645, -38.10591125 ], [ 174.80285645, -38.10591125 ] ] ], [ [ [ 174.894851679999988, -38.07537079 ], [ 174.887908939999988, -38.07951355 ], [ 174.87677002, -38.07458878 ], [ 174.88418579, -38.06893539 ], [ 174.894851679999988, -38.07537079 ], [ 174.894851679999988, -38.07537079 ] ] ], [ [ [ 174.56582642, -37.97138977 ], [ 174.56916809, -37.97277832 ], [ 174.56582642, -37.9738884 ], [ 174.56582642, -37.97138977 ], [ 174.56582642, -37.97138977 ] ] ], [ [ [ 174.941741940000014, -37.79050827 ], [ 174.940353390000013, -37.79117966 ], [ 174.9402771, -37.78952408 ], [ 174.941741940000014, -37.79050827 ], [ 174.941741940000014, -37.79050827 ] ] ], [ [ [ 174.909408570000011, -37.76112747 ], [ 174.909408570000011, -37.76278305 ], [ 174.90762329, -37.76259995 ], [ 174.909408570000011, -37.76112747 ], [ 174.909408570000011, -37.76112747 ] ] ], [ [ [ 175.89305115, -37.21722412 ], [ 175.89761353, -37.21912384 ], [ 175.89616394, -37.22082901 ], [ 175.89305115, -37.21722412 ], [ 175.89305115, -37.21722412 ] ] ], [ [ [ 175.892807010000013, -37.21508789 ], [ 175.887496950000013, -37.21472168 ], [ 175.89332581, -37.21259689 ], [ 175.892807010000013, -37.21508789 ], [ 175.892807010000013, -37.21508789 ] ] ], [ [ [ 175.928222659999989, -37.07276535 ], [ 175.92430115, -37.06833649 ], [ 175.929245, -37.07011414 ], [ 175.928222659999989, -37.07276535 ], [ 175.928222659999989, -37.07276535 ] ] ], [ [ [ 175.93789673, -37.06376266 ], [ 175.94111633, -37.0644455 ], [ 175.93916321, -37.06583405 ], [ 175.93789673, -37.06376266 ], [ 175.93789673, -37.06376266 ] ] ], [ [ [ 175.93148804, -37.06750488 ], [ 175.92979431, -37.06557465 ], [ 175.93467712, -37.06389618 ], [ 175.93148804, -37.06750488 ], [ 175.93148804, -37.06750488 ] ] ], [ [ [ 175.94444275, -37.04055405 ], [ 175.956390379999988, -37.04666519 ], [ 175.94670105, -37.05264664 ], [ 175.94639587, -37.06000137 ], [ 175.93444824, -37.04972076 ], [ 175.942337040000012, -37.03727341 ], [ 175.94444275, -37.04055405 ], [ 175.94444275, -37.04055405 ] ] ], [ [ [ 175.90472412, -36.98860931 ], [ 175.909408570000011, -36.99341583 ], [ 175.90182495, -36.99870682 ], [ 175.90472412, -36.98860931 ], [ 175.90472412, -36.98860931 ] ] ], [ [ [ 176.082778929999989, -36.97138977 ], [ 176.08528137, -36.97611237 ], [ 176.076660159999989, -36.97638702 ], [ 176.082778929999989, -36.97138977 ], [ 176.082778929999989, -36.97138977 ] ] ], [ [ [ 176.07583618000001, -36.97027588 ], [ 176.07444763, -36.96666718 ], [ 176.077774049999988, -36.96472168 ], [ 176.07583618000001, -36.97027588 ], [ 176.07583618000001, -36.97027588 ] ] ], [ [ [ 176.0874939, -36.95305634 ], [ 176.076660159999989, -36.96277618 ], [ 176.077774049999988, -36.95611191 ], [ 176.0874939, -36.95305634 ], [ 176.0874939, -36.95305634 ] ] ], [ [ [ 176.0569458, -36.95277786 ], [ 176.060623170000014, -36.95590973 ], [ 176.05667114, -36.95888901 ], [ 176.0569458, -36.95277786 ], [ 176.0569458, -36.95277786 ] ] ], [ [ [ 176.10157776, -36.95228195 ], [ 176.10043335, -36.95506287 ], [ 176.09927368000001, -36.95320892 ], [ 176.10157776, -36.95228195 ], [ 176.10157776, -36.95228195 ] ] ], [ [ [ 176.077499390000014, -36.95083237 ], [ 176.076385499999986, -36.94889069 ], [ 176.078338620000011, -36.94730377 ], [ 176.077499390000014, -36.95083237 ], [ 176.077499390000014, -36.95083237 ] ] ], [ [ [ 176.09832764, -36.94583511 ], [ 176.09846497, -36.9560585 ], [ 176.08972168, -36.95444489 ], [ 176.09832764, -36.94583511 ], [ 176.09832764, -36.94583511 ] ] ], [ [ [ 176.076110840000013, -36.94361115 ], [ 176.077224730000012, -36.94610977 ], [ 176.07553101, -36.94452286 ], [ 176.076110840000013, -36.94361115 ], [ 176.076110840000013, -36.94361115 ] ] ], [ [ [ 175.89077759, -36.86929321 ], [ 175.88877869, -36.86885834 ], [ 175.88938904, -36.86756134 ], [ 175.89077759, -36.86929321 ], [ 175.89077759, -36.86929321 ] ] ], [ [ [ 175.69389343, -36.86444473 ], [ 175.69528198, -36.87611008 ], [ 175.69055176, -36.87361145 ], [ 175.69389343, -36.86444473 ], [ 175.69389343, -36.86444473 ] ] ], [ [ [ 175.40440369, -36.85946274 ], [ 175.40710449, -36.85983276 ], [ 175.40509033, -36.8606987 ], [ 175.40440369, -36.85946274 ], [ 175.40440369, -36.85946274 ] ] ], [ [ [ 175.69413757, -36.84990692 ], [ 175.689514159999987, -36.85336685 ], [ 175.69044495, -36.85089493 ], [ 175.69413757, -36.84990692 ], [ 175.69413757, -36.84990692 ] ] ], [ [ [ 175.42304993, -36.84027863 ], [ 175.42056274, -36.8433342 ], [ 175.416381840000014, -36.84000015 ], [ 175.42304993, -36.84027863 ], [ 175.42304993, -36.84027863 ] ] ], [ [ [ 175.42805481, -36.84111023 ], [ 175.42582703, -36.84111023 ], [ 175.42721558, -36.83889008 ], [ 175.42805481, -36.84111023 ], [ 175.42805481, -36.84111023 ] ] ], [ [ [ 175.82221985000001, -36.82611084 ], [ 175.82278442, -36.83083344 ], [ 175.81611633, -36.83083344 ], [ 175.82221985000001, -36.82611084 ], [ 175.82221985000001, -36.82611084 ] ] ], [ [ [ 175.40943909, -36.82166672 ], [ 175.417221070000011, -36.83027649 ], [ 175.4069519, -36.82527924 ], [ 175.40943909, -36.82166672 ], [ 175.40943909, -36.82166672 ] ] ], [ [ [ 175.802505489999987, -36.8172226 ], [ 175.80332947, -36.82027817 ], [ 175.796386719999987, -36.82055664 ], [ 175.802505489999987, -36.8172226 ], [ 175.802505489999987, -36.8172226 ] ] ], [ [ [ 175.40419006, -36.80565262 ], [ 175.400177, -36.80565262 ], [ 175.40080261, -36.80441666 ], [ 175.40419006, -36.80565262 ], [ 175.40419006, -36.80565262 ] ] ], [ [ [ 175.7719574, -36.80167389 ], [ 175.77026367, -36.80402374 ], [ 175.76980591, -36.80167389 ], [ 175.7719574, -36.80167389 ], [ 175.7719574, -36.80167389 ] ] ], [ [ [ 175.4291687, -36.77444458 ], [ 175.43388367, -36.78388977 ], [ 175.425277709999989, -36.77722168 ], [ 175.4291687, -36.77444458 ], [ 175.4291687, -36.77444458 ] ] ], [ [ [ 175.452774049999988, -36.76750183 ], [ 175.458618159999986, -36.77222061 ], [ 175.452774049999988, -36.78666687 ], [ 175.44277954, -36.79388809 ], [ 175.43110657, -36.79722214 ], [ 175.43222046, -36.78833389 ], [ 175.44082642, -36.78888702 ], [ 175.43833923, -36.78055573 ], [ 175.44917297, -36.77555466 ], [ 175.452774049999988, -36.76750183 ], [ 175.452774049999988, -36.76750183 ] ] ], [ [ [ 175.45195007, -36.75722122 ], [ 175.453887939999987, -36.75916672 ], [ 175.449722290000011, -36.75888824 ], [ 175.45195007, -36.75722122 ], [ 175.45195007, -36.75722122 ] ] ], [ [ [ 175.4180603, -36.75666809 ], [ 175.42056274, -36.77111053 ], [ 175.41333008, -36.76833344 ], [ 175.4180603, -36.75666809 ], [ 175.4180603, -36.75666809 ] ] ], [ [ [ 175.392822270000011, -36.75030899 ], [ 175.39143372, -36.751297 ], [ 175.39019775, -36.75043488 ], [ 175.392822270000011, -36.75030899 ], [ 175.392822270000011, -36.75030899 ] ] ], [ [ [ 175.420272829999988, -36.74972153 ], [ 175.423339840000011, -36.75638962 ], [ 175.418609620000012, -36.75333405 ], [ 175.420272829999988, -36.74972153 ], [ 175.420272829999988, -36.74972153 ] ] ], [ [ [ 175.40557861, -36.74879456 ], [ 175.40342712, -36.74966049 ], [ 175.40357971, -36.74830246 ], [ 175.40557861, -36.74879456 ], [ 175.40557861, -36.74879456 ] ] ], [ [ [ 175.81944275, -36.74361038 ], [ 175.82333374000001, -36.7480545 ], [ 175.818603520000011, -36.74499893 ], [ 175.81944275, -36.74361038 ], [ 175.81944275, -36.74361038 ] ] ], [ [ [ 175.4172821, -36.74002075 ], [ 175.4172821, -36.74175262 ], [ 175.4152832, -36.7407608 ], [ 175.4172821, -36.74002075 ], [ 175.4172821, -36.74002075 ] ] ], [ [ [ 175.40222168, -36.73805618 ], [ 175.4125061, -36.74166489 ], [ 175.39805603, -36.74777603 ], [ 175.40222168, -36.73805618 ], [ 175.40222168, -36.73805618 ] ] ], [ [ [ 175.61401367, -36.73743057 ], [ 175.61801147, -36.73767853 ], [ 175.61585999, -36.73965454 ], [ 175.61401367, -36.73743057 ], [ 175.61401367, -36.73743057 ] ] ], [ [ [ 175.62139893, -36.73792267 ], [ 175.61955261, -36.73866653 ], [ 175.6177063, -36.7352066 ], [ 175.62139893, -36.73792267 ], [ 175.62139893, -36.73792267 ] ] ], [ [ [ 175.61462402, -36.73668671 ], [ 175.61338806, -36.73545074 ], [ 175.61677551, -36.73421478 ], [ 175.61462402, -36.73668671 ], [ 175.61462402, -36.73668671 ] ] ], [ [ [ 175.46362305, -36.73614502 ], [ 175.461547849999988, -36.73596191 ], [ 175.46208191, -36.73410797 ], [ 175.46362305, -36.73614502 ], [ 175.46362305, -36.73614502 ] ] ], [ [ [ 175.83833313, -36.72777939 ], [ 175.84138489, -36.73083496 ], [ 175.835006709999988, -36.73083496 ], [ 175.83833313, -36.72777939 ], [ 175.83833313, -36.72777939 ] ] ], [ [ [ 175.87611389, -36.72166824 ], [ 175.884994510000013, -36.72805405 ], [ 175.886108400000012, -36.73500061 ], [ 175.875, -36.7266655 ], [ 175.87611389, -36.72166824 ], [ 175.87611389, -36.72166824 ] ] ], [ [ [ 175.620178220000014, -36.724823 ], [ 175.61985779, -36.72161102 ], [ 175.62356567, -36.72235107 ], [ 175.620178220000014, -36.724823 ], [ 175.620178220000014, -36.724823 ] ] ], [ [ [ 175.88221741000001, -36.71972275 ], [ 175.88278198, -36.71416855 ], [ 175.88555908, -36.71777725 ], [ 175.88221741000001, -36.71972275 ], [ 175.88221741000001, -36.71972275 ] ] ], [ [ [ 175.81735229, -36.71556091 ], [ 175.816604610000013, -36.71281815 ], [ 175.82006836, -36.71232224 ], [ 175.81735229, -36.71556091 ], [ 175.81735229, -36.71556091 ] ] ], [ [ [ 175.8694458, -36.71138763 ], [ 175.86582947, -36.71027756 ], [ 175.868896479999989, -36.70916748 ], [ 175.8694458, -36.71138763 ], [ 175.8694458, -36.71138763 ] ] ], [ [ [ 175.391113280000013, -36.70416641 ], [ 175.387222290000011, -36.70388794 ], [ 175.39054871, -36.70277786 ], [ 175.391113280000013, -36.70416641 ], [ 175.391113280000013, -36.70416641 ] ] ], [ [ [ 175.388885499999986, -36.69944382 ], [ 175.391662599999989, -36.70111084 ], [ 175.389160159999989, -36.70166779 ], [ 175.388885499999986, -36.69944382 ], [ 175.388885499999986, -36.69944382 ] ] ], [ [ [ 175.86582947, -36.69638824 ], [ 175.868896479999989, -36.69916534 ], [ 175.86166382, -36.69805527 ], [ 175.86582947, -36.69638824 ], [ 175.86582947, -36.69638824 ] ] ], [ [ [ 175.389160159999989, -36.68999863 ], [ 175.39944458, -36.70138931 ], [ 175.39054871, -36.69861221 ], [ 175.389160159999989, -36.68999863 ], [ 175.389160159999989, -36.68999863 ] ] ], [ [ [ 175.61091614, -36.68845749 ], [ 175.609375, -36.6881485 ], [ 175.60975647, -36.68672943 ], [ 175.61091614, -36.68845749 ], [ 175.61091614, -36.68845749 ] ] ], [ [ [ 175.41055298, -36.68388748 ], [ 175.40861511, -36.68249893 ], [ 175.41055298, -36.68111038 ], [ 175.41055298, -36.68388748 ], [ 175.41055298, -36.68388748 ] ] ], [ [ [ 175.39305115, -36.67777634 ], [ 175.39416504, -36.6819458 ], [ 175.388885499999986, -36.67944336 ], [ 175.39305115, -36.67777634 ], [ 175.39305115, -36.67777634 ] ] ], [ [ [ 175.40167236, -36.67416763 ], [ 175.40805054, -36.67861176 ], [ 175.398895259999989, -36.67722321 ], [ 175.40167236, -36.67416763 ], [ 175.40167236, -36.67416763 ] ] ], [ [ [ 175.380950930000012, -36.65877914 ], [ 175.37802124000001, -36.65729523 ], [ 175.37895203, -36.65680313 ], [ 175.380950930000012, -36.65877914 ], [ 175.380950930000012, -36.65877914 ] ] ], [ [ [ 175.85028076, -36.6566658 ], [ 175.84666443, -36.66222382 ], [ 175.84861755, -36.65416718 ], [ 175.85028076, -36.6566658 ], [ 175.85028076, -36.6566658 ] ] ], [ [ [ 175.37388611, -36.6530571 ], [ 175.37388611, -36.66055679 ], [ 175.368896479999989, -36.65888977 ], [ 175.37388611, -36.6530571 ], [ 175.37388611, -36.6530571 ] ] ], [ [ [ 175.369201659999987, -36.65221405 ], [ 175.36857605, -36.65037537 ], [ 175.37104797, -36.65134811 ], [ 175.369201659999987, -36.65221405 ], [ 175.369201659999987, -36.65221405 ] ] ], [ [ [ 175.85083008, -36.64222336 ], [ 175.84777832, -36.64500046 ], [ 175.84666443, -36.64389038 ], [ 175.85083008, -36.64222336 ], [ 175.85083008, -36.64222336 ] ] ], [ [ [ 175.884994510000013, -36.63249969 ], [ 175.890838620000011, -36.63499832 ], [ 175.889999390000014, -36.64861298 ], [ 175.87832642, -36.63388824 ], [ 175.884994510000013, -36.63249969 ], [ 175.884994510000013, -36.63249969 ] ] ], [ [ [ 175.861389159999987, -36.63944626 ], [ 175.857772829999988, -36.63805389 ], [ 175.86332703, -36.63639069 ], [ 175.861389159999987, -36.63944626 ], [ 175.861389159999987, -36.63944626 ] ] ], [ [ [ 175.87693787, -36.62944412 ], [ 175.87889099, -36.63111115 ], [ 175.87750244, -36.63305664 ], [ 175.87693787, -36.62944412 ], [ 175.87693787, -36.62944412 ] ] ], [ [ [ 175.91221619, -36.62361145 ], [ 175.91471863000001, -36.6258316 ], [ 175.91055298, -36.62611008 ], [ 175.91221619, -36.62361145 ], [ 175.91221619, -36.62361145 ] ] ], [ [ [ 175.90527344, -36.62111282 ], [ 175.90861511, -36.62611008 ], [ 175.89944458, -36.62388992 ], [ 175.90527344, -36.62111282 ], [ 175.90527344, -36.62111282 ] ] ], [ [ [ 175.93666077, -36.61500168 ], [ 175.948883059999986, -36.62916565 ], [ 175.92666626, -36.6297226 ], [ 175.92195129000001, -36.61777878 ], [ 175.93666077, -36.61500168 ], [ 175.93666077, -36.61500168 ] ] ], [ [ [ 175.5609436, -36.59630585 ], [ 175.560317989999987, -36.59778595 ], [ 175.55940247, -36.59679794 ], [ 175.5609436, -36.59630585 ], [ 175.5609436, -36.59630585 ] ] ], [ [ [ 175.549728390000013, -36.59500122 ], [ 175.55166626, -36.59666824 ], [ 175.548889159999987, -36.59777832 ], [ 175.549728390000013, -36.59500122 ], [ 175.549728390000013, -36.59500122 ] ] ], [ [ [ 175.78666687, -36.57694626 ], [ 175.78388977, -36.59111023 ], [ 175.79083252, -36.59249878 ], [ 175.801391599999988, -36.60944366 ], [ 175.81222534, -36.61416626 ], [ 175.82362366000001, -36.61409378 ], [ 175.834350590000014, -36.62414551 ], [ 175.83694458, -36.63277817 ], [ 175.823883059999986, -36.64194489 ], [ 175.80722046, -36.63694382 ], [ 175.801116940000014, -36.64138794 ], [ 175.77416992, -36.63388824 ], [ 175.78582764, -36.62805557 ], [ 175.78805542, -36.61166763 ], [ 175.78250122, -36.60361099 ], [ 175.773895259999989, -36.60138702 ], [ 175.766387939999987, -36.60583496 ], [ 175.75, -36.58694458 ], [ 175.76306152, -36.58666611 ], [ 175.78666687, -36.57694626 ], [ 175.78666687, -36.57694626 ] ] ], [ [ [ 175.47193909, -36.4972229 ], [ 175.47444153, -36.4991684 ], [ 175.47193909, -36.49944305 ], [ 175.47193909, -36.4972229 ], [ 175.47193909, -36.4972229 ] ] ], [ [ [ 175.36860657, -36.46694565 ], [ 175.375, -36.4711113 ], [ 175.396118159999986, -36.47555542 ], [ 175.41389465, -36.46888733 ], [ 175.409729, -36.47777939 ], [ 175.416107180000012, -36.48916626 ], [ 175.423889159999987, -36.49222183 ], [ 175.42195129000001, -36.51083374 ], [ 175.4430542, -36.50166702 ], [ 175.45944214, -36.52166748 ], [ 175.47332764, -36.53138733 ], [ 175.47917175, -36.52583313 ], [ 175.472229, -36.52222061 ], [ 175.46861267, -36.51194382 ], [ 175.47416687, -36.50444412 ], [ 175.479995730000013, -36.50972366 ], [ 175.490005489999987, -36.50805664 ], [ 175.50694275, -36.51972198 ], [ 175.516387939999987, -36.53555679 ], [ 175.53611755, -36.54222107 ], [ 175.53361511, -36.55333328 ], [ 175.52055359, -36.55638885 ], [ 175.52999878, -36.56583405 ], [ 175.52360535, -36.56888962 ], [ 175.52861023, -36.57972336 ], [ 175.521118159999986, -36.59277725 ], [ 175.53778076, -36.60472107 ], [ 175.548339840000011, -36.60333252 ], [ 175.5541687, -36.59749985 ], [ 175.56721497, -36.61472321 ], [ 175.57221985000001, -36.61277771 ], [ 175.585006709999988, -36.62749863 ], [ 175.573883059999986, -36.64277649 ], [ 175.57556152, -36.65555573 ], [ 175.58416748, -36.66277695 ], [ 175.577774049999988, -36.67139053 ], [ 175.55667114, -36.66749954 ], [ 175.5541687, -36.67750168 ], [ 175.55917358, -36.6875 ], [ 175.57583618000001, -36.6855545 ], [ 175.579162599999989, -36.67916489 ], [ 175.58999634, -36.68027878 ], [ 175.608886719999987, -36.68861008 ], [ 175.60444641, -36.69416809 ], [ 175.608337400000011, -36.7080574 ], [ 175.62554932, -36.7183342 ], [ 175.61721802, -36.72249985 ], [ 175.611114500000014, -36.73833466 ], [ 175.609725950000012, -36.75444412 ], [ 175.631103520000011, -36.75138855 ], [ 175.636108400000012, -36.75888824 ], [ 175.639999390000014, -36.74277878 ], [ 175.65527344, -36.74555588 ], [ 175.66416931, -36.74277878 ], [ 175.64971924, -36.73805618 ], [ 175.63221741000001, -36.72777939 ], [ 175.63945007, -36.72472382 ], [ 175.677505489999987, -36.72972107 ], [ 175.68527222, -36.72583389 ], [ 175.707229610000013, -36.7266655 ], [ 175.7250061, -36.7219429 ], [ 175.73306274, -36.71027756 ], [ 175.74333191, -36.70360947 ], [ 175.74888611, -36.70833206 ], [ 175.762222290000011, -36.70833206 ], [ 175.7805481, -36.6930542 ], [ 175.792221070000011, -36.69194412 ], [ 175.78889465, -36.70305634 ], [ 175.797775269999988, -36.71722412 ], [ 175.80805969, -36.72138977 ], [ 175.822494510000013, -36.71749878 ], [ 175.82258606, -36.73151779 ], [ 175.827224730000012, -36.73972321 ], [ 175.8152771, -36.74388885 ], [ 175.80888367, -36.73777771 ], [ 175.80444336, -36.74305725 ], [ 175.792495730000013, -36.74166489 ], [ 175.78611755, -36.7491684 ], [ 175.753143310000013, -36.76071167 ], [ 175.74990845, -36.76534653 ], [ 175.74833679, -36.78833389 ], [ 175.741394039999989, -36.79444504 ], [ 175.72471619, -36.79555511 ], [ 175.72250366, -36.80805588 ], [ 175.70666504, -36.80472183 ], [ 175.701385499999986, -36.80805588 ], [ 175.700271609999987, -36.81916809 ], [ 175.70916748, -36.83250046 ], [ 175.707504269999987, -36.83805466 ], [ 175.696105960000011, -36.84555435 ], [ 175.68028259, -36.8405571 ], [ 175.67832947, -36.85083389 ], [ 175.68499756, -36.84666824 ], [ 175.68556213, -36.86194611 ], [ 175.67582703, -36.86861038 ], [ 175.69221497, -36.88083267 ], [ 175.69667053, -36.8777771 ], [ 175.700271609999987, -36.85083389 ], [ 175.70555115, -36.84833145 ], [ 175.71388245, -36.83388901 ], [ 175.71333313, -36.82638931 ], [ 175.72305298, -36.83250046 ], [ 175.73167419, -36.82638931 ], [ 175.732223510000011, -36.83194351 ], [ 175.74499512, -36.83750153 ], [ 175.75805664, -36.83472061 ], [ 175.75805664, -36.82638931 ], [ 175.770004269999987, -36.81944275 ], [ 175.78500366, -36.82249832 ], [ 175.80805969, -36.83916855 ], [ 175.82028198, -36.84166718 ], [ 175.81611633, -36.84638977 ], [ 175.826110840000013, -36.85250092 ], [ 175.828338620000011, -36.86694336 ], [ 175.81694031, -36.87611008 ], [ 175.823883059999986, -36.88861084 ], [ 175.83694458, -36.89194489 ], [ 175.84194946, -36.90999985 ], [ 175.857772829999988, -36.92250061 ], [ 175.852493290000012, -36.9319458 ], [ 175.858612060000013, -36.9383316 ], [ 175.84388733, -36.94777679 ], [ 175.84527588, -36.96722412 ], [ 175.85583496000001, -36.97499847 ], [ 175.8555603, -36.98860931 ], [ 175.86343384, -36.99695969 ], [ 175.87138367, -36.9972229 ], [ 175.86860657, -37.00496292 ], [ 175.857498170000014, -36.99750137 ], [ 175.8433075, -37.0224762 ], [ 175.831558230000013, -37.03800964 ], [ 175.836868290000012, -37.05216599 ], [ 175.84240723, -37.03235626 ], [ 175.849380489999987, -37.03034973 ], [ 175.85635376, -37.0210228 ], [ 175.8553772, -37.01226425 ], [ 175.863891599999988, -37.00694275 ], [ 175.87362671, -37.02740097 ], [ 175.88601685, -37.02975464 ], [ 175.88945007, -37.04138947 ], [ 175.88534546, -37.05002594 ], [ 175.89283752, -37.06581879 ], [ 175.887496950000013, -37.07277679 ], [ 175.88583374000001, -37.08444595 ], [ 175.887222290000011, -37.11027908 ], [ 175.87861633, -37.10722351 ], [ 175.87014771, -37.1123848 ], [ 175.86351013, -37.12433243 ], [ 175.86709595, -37.12643051 ], [ 175.872024540000012, -37.11495209 ], [ 175.89093018, -37.11375046 ], [ 175.8924408, -37.12174225 ], [ 175.88505554, -37.12804794 ], [ 175.879364009999989, -37.14613342 ], [ 175.88465881, -37.15865707 ], [ 175.881622310000012, -37.16703796 ], [ 175.886108400000012, -37.18357849 ], [ 175.8934021, -37.19572067 ], [ 175.88278198, -37.20360947 ], [ 175.8694458, -37.18916702 ], [ 175.86773682, -37.17464447 ], [ 175.86206055, -37.16725922 ], [ 175.85346985000001, -37.17445755 ], [ 175.860839840000011, -37.18138885 ], [ 175.85897827, -37.19238281 ], [ 175.8788147, -37.202034 ], [ 175.87762451, -37.21162796 ], [ 175.88476563, -37.21788406 ], [ 175.87889099, -37.22972107 ], [ 175.8850708, -37.23007202 ], [ 175.895599370000014, -37.2413559 ], [ 175.892669680000012, -37.25259399 ], [ 175.89971924, -37.26694489 ], [ 175.90107727, -37.27845383 ], [ 175.91319275, -37.29150391 ], [ 175.91938782, -37.30796814 ], [ 175.92582703, -37.31083298 ], [ 175.92559814, -37.3196907 ], [ 175.93955994, -37.34192276 ], [ 175.94500732, -37.34555435 ], [ 175.93870544, -37.35953903 ], [ 175.941757200000012, -37.37390137 ], [ 175.92825317, -37.37813568 ], [ 175.9246521, -37.37372589 ], [ 175.914855960000011, -37.38217163 ], [ 175.92871094, -37.38906097 ], [ 175.92201233, -37.39107895 ], [ 175.92033386, -37.40795135 ], [ 175.910369870000011, -37.40530777 ], [ 175.90516663, -37.41771317 ], [ 175.9163208, -37.43091202 ], [ 175.90986633, -37.43274689 ], [ 175.89755249000001, -37.44709015 ], [ 175.88375854, -37.44016266 ], [ 175.88442993000001, -37.45083237 ], [ 175.86172485, -37.46276474 ], [ 175.87252808, -37.47596741 ], [ 175.88569641, -37.47217941 ], [ 175.90370178, -37.49413681 ], [ 175.90072632, -37.50042343 ], [ 175.8737793, -37.49734879 ], [ 175.86062622, -37.50116348 ], [ 175.843246459999989, -37.48987579 ], [ 175.8354187, -37.47035217 ], [ 175.81632996, -37.48681641 ], [ 175.8235321, -37.49562073 ], [ 175.81040955, -37.49946976 ], [ 175.814666749999986, -37.51459885 ], [ 175.82843018, -37.5214653 ], [ 175.82546997, -37.52778625 ], [ 175.836288450000012, -37.54096603 ], [ 175.810760499999986, -37.55941772 ], [ 175.82159424, -37.57258224 ], [ 175.82228088, -37.58328629 ], [ 175.84397888, -37.60952759 ], [ 175.844680790000012, -37.62019348 ], [ 175.83522034, -37.6284256 ], [ 175.846069340000014, -37.64148712 ], [ 175.83953857, -37.64342499 ], [ 175.857635499999986, -37.66514969 ], [ 175.871429440000014, -37.67189026 ], [ 175.864883420000012, -37.67382813 ], [ 175.875762939999987, -37.68683624 ], [ 175.876464840000011, -37.6974411 ], [ 175.890274049999988, -37.70415878 ], [ 175.904800419999987, -37.72146606 ], [ 175.89825439, -37.72341156 ], [ 175.90551758, -37.73206329 ], [ 175.92079163, -37.75994492 ], [ 175.92881775, -37.77917862 ], [ 175.92086792, -37.80861664 ], [ 175.9092865, -37.83374786 ], [ 175.94352722, -37.84515381 ], [ 175.930435179999989, -37.84908295 ], [ 175.93774414, -37.85773087 ], [ 175.93486023, -37.86401749 ], [ 175.948715209999989, -37.87069702 ], [ 175.942169189999987, -37.87266541 ], [ 175.94294739, -37.88327408 ], [ 175.95968628, -37.88366318 ], [ 175.967010499999986, -37.89230728 ], [ 175.97644043, -37.88404846 ], [ 175.96124268, -37.90488815 ], [ 175.97879028, -37.91588211 ], [ 175.9526062, -37.92376328 ], [ 175.94317627, -37.93202209 ], [ 175.95129395, -37.9512825 ], [ 175.958618159999986, -37.95992661 ], [ 175.95573425, -37.96622086 ], [ 175.97250366, -37.9665947 ], [ 175.979843140000014, -37.97523499 ], [ 175.97409058, -37.98781967 ], [ 175.98797607, -37.99448013 ], [ 176.001068120000014, -37.99052811 ], [ 176.02151489, -37.99520493 ], [ 176.036209109999987, -38.0124588 ], [ 176.042755129999989, -38.01047897 ], [ 176.05665588, -38.01712036 ], [ 176.06768799, -38.03004837 ], [ 176.06195068, -38.04264069 ], [ 176.07952881, -38.05358505 ], [ 176.12121582, -38.07348251 ], [ 176.13143921, -38.07580185 ], [ 176.14451599, -38.07182693 ], [ 176.158401489999989, -38.07845306 ], [ 176.17800903, -38.07249069 ], [ 176.191894530000013, -38.07911301 ], [ 176.20661926, -38.09633255 ], [ 176.21315002, -38.09434128 ], [ 176.22052002, -38.10295105 ], [ 176.23072815, -38.10526276 ], [ 176.22503662, -38.11785126 ], [ 176.23809814, -38.11386871 ], [ 176.252838129999986, -38.131073 ], [ 176.246307370000011, -38.13306808 ], [ 176.247161870000014, -38.1436615 ], [ 176.2406311, -38.14565659 ], [ 176.25169373, -38.15855789 ], [ 176.245162959999988, -38.16055298 ], [ 176.256225590000014, -38.17345047 ], [ 176.24969482, -38.17544937 ], [ 176.2681427, -38.19694138 ], [ 176.26615906, -38.21382904 ], [ 176.269851679999988, -38.2181282 ], [ 176.256774900000011, -38.22212219 ], [ 176.26046753, -38.22642136 ], [ 176.284362789999989, -38.27339554 ], [ 176.28521729, -38.28398895 ], [ 176.29829407, -38.27998734 ], [ 176.29545593, -38.2862854 ], [ 176.30569458, -38.28857803 ], [ 176.3028717, -38.2948761 ], [ 176.313964840000011, -38.30776215 ], [ 176.31114197, -38.3140564 ], [ 176.327911379999989, -38.31435013 ], [ 176.3250885, -38.32064438 ], [ 176.34927368000001, -38.32952118 ], [ 176.379119870000011, -38.32580566 ], [ 176.39024353, -38.33868408 ], [ 176.39677429, -38.33668137 ], [ 176.41531372, -38.35814285 ], [ 176.43209839, -38.35842514 ], [ 176.47306824, -38.3675766 ], [ 176.48048401, -38.37615585 ], [ 176.48701477, -38.37415314 ], [ 176.51301575, -38.40418243 ], [ 176.511093140000014, -38.42106247 ], [ 176.50544739, -38.43364716 ], [ 176.50071716, -38.45681 ], [ 176.49507141, -38.46939468 ], [ 176.47906494, -38.51770782 ], [ 176.48651123, -38.52627945 ], [ 176.4874115, -38.53685379 ], [ 176.45661926, -38.53000259 ], [ 176.418396, -38.51457596 ], [ 176.39785767, -38.51000595 ], [ 176.392211909999986, -38.52258301 ], [ 176.36587524, -38.56860733 ], [ 176.32478333, -38.55947495 ], [ 176.310791020000011, -38.55290604 ], [ 176.31361389, -38.5466156 ], [ 176.30618286, -38.53804016 ], [ 176.31272888, -38.53603745 ], [ 176.31840515, -38.52346039 ], [ 176.33061218, -38.5088768 ], [ 176.312026980000013, -38.48743057 ], [ 176.30177307, -38.48514175 ], [ 176.28210449, -38.49114609 ], [ 176.282989500000014, -38.50172806 ], [ 176.250213620000011, -38.51172638 ], [ 176.24737549, -38.51801682 ], [ 176.23425293, -38.52201843 ], [ 176.22396851, -38.5197258 ], [ 176.21084595, -38.5237236 ], [ 176.19685364, -38.51713943 ], [ 176.18373108, -38.52113342 ], [ 176.186569209999988, -38.51484299 ], [ 176.17913818, -38.5062561 ], [ 176.181991579999988, -38.49996185 ], [ 176.16799927, -38.49337006 ], [ 176.16143799, -38.49536896 ], [ 176.15400696, -38.48677826 ], [ 176.156860349999988, -38.48048782 ], [ 176.14942932, -38.47189713 ], [ 176.1559906, -38.46989822 ], [ 176.144851679999988, -38.45701218 ], [ 176.13829041, -38.45900726 ], [ 176.139160159999989, -38.46959686 ], [ 176.12231445, -38.46929169 ], [ 176.11946106, -38.47558594 ], [ 176.08834839, -38.5067482 ], [ 176.085495, -38.51304245 ], [ 176.05834961, -38.5104332 ], [ 176.05262756, -38.5230217 ], [ 176.06378174, -38.53591537 ], [ 176.047775269999988, -38.54620361 ], [ 176.0552063, -38.55479813 ], [ 176.048629760000011, -38.55679321 ], [ 176.05606079, -38.56538773 ], [ 176.07579041, -38.55939484 ], [ 176.08607483, -38.5616951 ], [ 176.10951233, -38.55999756 ], [ 176.1206665, -38.57287598 ], [ 176.12153625, -38.58346558 ], [ 176.141250609999986, -38.57746506 ], [ 176.15153503, -38.57975769 ], [ 176.19729614, -38.6037941 ], [ 176.2104187, -38.59979248 ], [ 176.22444153, -38.60636902 ], [ 176.21130371000001, -38.61037064 ], [ 176.21875, -38.61894989 ], [ 176.21022034, -38.63781738 ], [ 176.17713928, -38.68585587 ], [ 176.26116943, -38.76324844 ], [ 176.24145508, -38.76927948 ], [ 176.219802859999987, -38.79217529 ], [ 176.1166687, -38.76941299 ], [ 176.10243225, -38.80090332 ], [ 176.10990906, -38.80947876 ], [ 176.096740720000014, -38.81349945 ], [ 176.10421753, -38.8220787 ], [ 176.09764099, -38.82408905 ], [ 176.12007141, -38.84981537 ], [ 176.12664795, -38.84780121 ], [ 176.13414001000001, -38.85637665 ], [ 176.11723328, -38.85611343 ], [ 176.132202150000012, -38.8732605 ], [ 176.12934875, -38.87956238 ], [ 176.14343262, -38.88611603 ], [ 176.13684082, -38.88813019 ], [ 176.15931702, -38.91383743 ], [ 176.16589355, -38.91181946 ], [ 176.18838501, -38.93750763 ], [ 176.194976809999986, -38.93548965 ], [ 176.20246887, -38.94404984 ], [ 176.215637210000011, -38.94001007 ], [ 176.22596741000001, -38.94226837 ], [ 176.23822021, -38.92765427 ], [ 176.248550419999987, -38.92991257 ], [ 176.26170349, -38.9258728 ], [ 176.2635498, -38.94701767 ], [ 176.26823425, -38.96186829 ], [ 176.26165771, -38.96389008 ], [ 176.26634216, -38.97873688 ], [ 176.28044128, -38.98526001 ], [ 176.28137207, -38.99583054 ], [ 176.28889465, -39.00437927 ], [ 176.27290344, -39.01472473 ], [ 176.26725769, -39.02732086 ], [ 176.27760315, -39.02957153 ], [ 176.286087040000012, -39.04868698 ], [ 176.28515625, -39.0761261 ], [ 176.26539612, -39.08221054 ], [ 176.2559967, -39.09053802 ], [ 176.23622131, -39.09662628 ], [ 176.24375916, -39.10516739 ], [ 176.22398376000001, -39.11125565 ], [ 176.22116089, -39.11756134 ], [ 176.1882019, -39.12770844 ], [ 176.19197083, -39.1319809 ], [ 176.186309810000012, -39.14458847 ], [ 176.17218018, -39.13807297 ], [ 176.16557312, -39.14010239 ], [ 176.151443480000012, -39.13357925 ], [ 176.14860535, -39.13988495 ], [ 176.089202879999988, -39.1581459 ], [ 176.085433959999989, -39.15386581 ], [ 176.05525208, -39.15769958 ], [ 175.983581539999989, -39.15248871 ], [ 175.98074341, -39.15879822 ], [ 175.96751404, -39.16284943 ], [ 175.97505188, -39.17142487 ], [ 175.969360349999988, -39.1840477 ], [ 175.94952393, -39.19012833 ], [ 175.945755, -39.18584061 ], [ 175.92591858, -39.19191742 ], [ 175.9296875, -39.19620514 ], [ 175.889999390000014, -39.20836258 ], [ 175.901306150000011, -39.22123337 ], [ 175.89845276, -39.22755051 ], [ 175.88522339, -39.23160553 ], [ 175.88897705, -39.23589325 ], [ 175.862518310000013, -39.2440033 ], [ 175.86343384, -39.25461197 ], [ 175.87382507, -39.25687408 ], [ 175.868118290000012, -39.26950836 ], [ 175.85772705, -39.26725006 ], [ 175.844497679999989, -39.27130508 ], [ 175.8359375, -39.29026413 ], [ 175.82646179, -39.2986145 ], [ 175.81321716, -39.30267334 ], [ 175.79620361, -39.30244446 ], [ 175.78868103, -39.29385757 ], [ 175.7754364, -39.29791641 ], [ 175.75752258, -39.28705978 ], [ 175.74803162, -39.29541016 ], [ 175.75180054, -39.29970932 ], [ 175.71025085, -39.29063416 ], [ 175.67338562, -39.29647064 ], [ 175.562973019999987, -39.27570724 ], [ 175.63824463, -39.16007233 ], [ 175.65084839, -39.10720062 ], [ 175.6574707, -39.10518265 ], [ 175.642501829999986, -39.08795929 ], [ 175.62554932, -39.08768463 ], [ 175.628417969999987, -39.08135986 ], [ 175.623809810000012, -39.06642532 ], [ 175.62667847, -39.06010437 ], [ 175.619216920000014, -39.05148697 ], [ 175.6522522, -39.0414238 ], [ 175.64851379000001, -39.037117 ], [ 175.658004760000011, -39.02878189 ], [ 175.653396609999987, -39.01385117 ], [ 175.67523193, -38.99087524 ], [ 175.6913147, -38.98053741 ], [ 175.65081787, -38.98197174 ], [ 175.63674927, -38.97536087 ], [ 175.6103363, -38.98339844 ], [ 175.573577879999988, -38.98913193 ], [ 175.57273865, -38.97850037 ], [ 175.56155396, -38.96556473 ], [ 175.56358337, -38.94861221 ], [ 175.57307434, -38.94028473 ], [ 175.57221985000001, -38.92965317 ], [ 175.59118652, -38.91300583 ], [ 175.57629395, -38.89575195 ], [ 175.569702150000012, -38.89775848 ], [ 175.568847659999989, -38.88712692 ], [ 175.55026245, -38.86555481 ], [ 175.56838989, -38.83828354 ], [ 175.58818054, -38.83227921 ], [ 175.58734131, -38.82165146 ], [ 175.56134033, -38.79144287 ], [ 175.54814148, -38.79544449 ], [ 175.55102539, -38.78912735 ], [ 175.52876282, -38.76322556 ], [ 175.53083801, -38.74627304 ], [ 175.544021609999987, -38.74228287 ], [ 175.54319763, -38.73165131 ], [ 175.5592804, -38.72134399 ], [ 175.570816040000011, -38.69609451 ], [ 175.57740784, -38.69410324 ], [ 175.58319092, -38.68148041 ], [ 175.57948303, -38.67716217 ], [ 175.58895874000001, -38.66885757 ], [ 175.581542969999987, -38.6602211 ], [ 175.588134770000011, -38.65822983 ], [ 175.58073425, -38.64959335 ], [ 175.600509640000013, -38.64361572 ], [ 175.59680176, -38.6393013 ], [ 175.609985349999988, -38.63531494 ], [ 175.618637080000013, -38.61639023 ], [ 175.63182068, -38.6124115 ], [ 175.63389587, -38.59547806 ], [ 175.645431519999988, -38.57025146 ], [ 175.64173889, -38.56593323 ], [ 175.628570559999986, -38.56991196 ], [ 175.61619568, -38.58451462 ], [ 175.58325195, -38.59446335 ], [ 175.57955933, -38.5901413 ], [ 175.57008362, -38.59843826 ], [ 175.56637573, -38.59412003 ], [ 175.5466156, -38.60008621 ], [ 175.53262329, -38.59343338 ], [ 175.50672913, -38.5631752 ], [ 175.45320129000001, -38.56843185 ], [ 175.428924560000013, -38.55942535 ], [ 175.42523193, -38.55509567 ], [ 175.40835571, -38.55473709 ], [ 175.405456539999989, -38.56105423 ], [ 175.388580319999988, -38.56069565 ], [ 175.38278198, -38.57332611 ], [ 175.34321594, -38.58523941 ], [ 175.33872986, -38.57025909 ], [ 175.34532166, -38.56827545 ], [ 175.33055115, -38.55094528 ], [ 175.327651980000013, -38.55726242 ], [ 175.30865479, -38.57386398 ], [ 175.306549069999988, -38.59083557 ], [ 175.31393433, -38.59950256 ], [ 175.30734253, -38.60148621 ], [ 175.28965759, -38.59047318 ], [ 175.27145386, -38.617733 ], [ 175.26776123, -38.61339951 ], [ 175.247970579999986, -38.61935425 ], [ 175.25166321, -38.62369156 ], [ 175.23846436, -38.62765884 ], [ 175.24215698, -38.63199615 ], [ 175.20916748, -38.641922 ], [ 175.20178223, -38.63324738 ], [ 175.19517517, -38.63523102 ], [ 175.18119812, -38.62853622 ], [ 175.16799927, -38.63249969 ], [ 175.157714840000011, -38.63014221 ], [ 175.14451599, -38.63410568 ], [ 175.140838620000011, -38.62976456 ], [ 175.123947140000013, -38.62938309 ], [ 175.0909729, -38.63928223 ], [ 175.08358765, -38.63058853 ], [ 175.08068848, -38.63691711 ], [ 175.060897829999988, -38.64285278 ], [ 175.0645752, -38.64720154 ], [ 175.04478455, -38.65314102 ], [ 175.048477170000012, -38.65748978 ], [ 175.02868652, -38.66342545 ], [ 175.0249939, -38.65907288 ], [ 175.00520325, -38.66500854 ], [ 175.00889587, -38.66936111 ], [ 174.99201965, -38.66896439 ], [ 174.98832703, -38.66461182 ], [ 174.97514343, -38.66856384 ], [ 174.95826721, -38.6681633 ], [ 174.96931458, -38.68122482 ], [ 174.95979309, -38.68953705 ], [ 174.97085571, -38.70259476 ], [ 174.96057129, -38.70022202 ], [ 174.9584198, -38.71723938 ], [ 174.94523621, -38.72119522 ], [ 174.94599915, -38.731884 ], [ 174.93647766, -38.74019623 ], [ 174.94754028, -38.75325394 ], [ 174.92773438, -38.75919724 ], [ 174.924057010000013, -38.75484085 ], [ 174.91085815, -38.75880432 ], [ 174.907165529999986, -38.75444794 ], [ 174.897659299999987, -38.76276398 ], [ 174.8712616, -38.77068329 ], [ 174.86174011, -38.77899933 ], [ 174.85145569, -38.77662277 ], [ 174.844100950000012, -38.76790619 ], [ 174.83381653, -38.76552582 ], [ 174.836730960000011, -38.75918579 ], [ 174.82937622, -38.75046158 ], [ 174.82278442, -38.75244141 ], [ 174.80807495, -38.73498154 ], [ 174.797805790000012, -38.73258972 ], [ 174.75164795, -38.74642944 ], [ 174.74430847, -38.73768234 ], [ 174.727462769999988, -38.73726273 ], [ 174.7069397, -38.73245621 ], [ 174.69377136, -38.73641586 ], [ 174.69009399, -38.73203278 ], [ 174.67326355, -38.73160553 ], [ 174.66009521, -38.73557663 ], [ 174.64909363000001, -38.72238922 ], [ 174.635940549999987, -38.72636795 ], [ 174.6257019, -38.72396851 ], [ 174.61463928, -38.71063614 ], [ 174.62788391, -38.70067596 ], [ 174.638610840000013, -38.71130371 ], [ 174.63276672, -38.69787979 ], [ 174.615295409999987, -38.70281982 ], [ 174.61711121, -38.67178726 ], [ 174.62039185, -38.66397858 ], [ 174.62249756, -38.62111282 ], [ 174.62750244, -38.60388947 ], [ 174.63020325, -38.58110428 ], [ 174.63000488, -38.55611038 ], [ 174.63491821, -38.53163147 ], [ 174.6302948, -38.50524521 ], [ 174.63792419, -38.49091721 ], [ 174.63710022, -38.48004532 ], [ 174.6452179, -38.45615768 ], [ 174.64077759, -38.44960403 ], [ 174.6418457, -38.42910385 ], [ 174.635665890000013, -38.41593552 ], [ 174.63754272, -38.39959335 ], [ 174.634567260000011, -38.38540649 ], [ 174.65461731, -38.38501358 ], [ 174.668884279999986, -38.35916519 ], [ 174.68666077, -38.34388733 ], [ 174.697052, -38.32719421 ], [ 174.70463562, -38.32579422 ], [ 174.71388245, -38.30861282 ], [ 174.71911621000001, -38.3045578 ], [ 174.71194458, -38.29360962 ], [ 174.71638489, -38.27249908 ], [ 174.7124939, -38.26694489 ], [ 174.71278381, -38.2508316 ], [ 174.707229610000013, -38.23138809 ], [ 174.715194700000012, -38.2220459 ], [ 174.710739139999987, -38.21011353 ], [ 174.712646479999989, -38.20089722 ], [ 174.70436096, -38.17280197 ], [ 174.69000244, -38.13555527 ], [ 174.67721558, -38.11416626 ], [ 174.6875, -38.10916519 ], [ 174.69177246000001, -38.11843872 ], [ 174.699996950000013, -38.11666489 ], [ 174.73397827, -38.12435532 ], [ 174.75233459, -38.1128006 ], [ 174.76367188, -38.10161972 ], [ 174.770278929999989, -38.08694458 ], [ 174.77583313, -38.08889008 ], [ 174.77079773, -38.09759521 ], [ 174.769851679999988, -38.11838531 ], [ 174.7746582, -38.11013412 ], [ 174.77883911, -38.12083435 ], [ 174.77874756, -38.13358688 ], [ 174.794036870000014, -38.13082123 ], [ 174.7943573, -38.12282181 ], [ 174.80513, -38.11976624 ], [ 174.810333250000014, -38.13346481 ], [ 174.80818176, -38.14037323 ], [ 174.82298279, -38.13379669 ], [ 174.815948490000011, -38.14717484 ], [ 174.82635498, -38.14169693 ], [ 174.828903200000013, -38.15635681 ], [ 174.8327179, -38.15029907 ], [ 174.83451843, -38.13336563 ], [ 174.8540802, -38.13055038 ], [ 174.8440094, -38.12896347 ], [ 174.83682251, -38.11879349 ], [ 174.835723879999989, -38.1246109 ], [ 174.81944275, -38.12895584 ], [ 174.82939148, -38.11713409 ], [ 174.82775879, -38.10832977 ], [ 174.84114075, -38.10285568 ], [ 174.84988403, -38.10508347 ], [ 174.85919189, -38.09971237 ], [ 174.87388611, -38.11305618 ], [ 174.87055969, -38.12111282 ], [ 174.884689329999986, -38.11446762 ], [ 174.87442017, -38.11483383 ], [ 174.86564636, -38.09860611 ], [ 174.91148376000001, -38.08164215 ], [ 174.89569092, -38.07082748 ], [ 174.890411379999989, -38.05682373 ], [ 174.879547120000012, -38.05361176 ], [ 174.88742065, -38.04888153 ], [ 174.87414551, -38.04894257 ], [ 174.860839840000011, -38.05604553 ], [ 174.85838318, -38.04624939 ], [ 174.853591920000014, -38.05708694 ], [ 174.841445920000012, -38.06000519 ], [ 174.83888245, -38.04222107 ], [ 174.829727170000012, -38.04555511 ], [ 174.828613280000013, -38.06111145 ], [ 174.80929565, -38.07995224 ], [ 174.78388977, -38.08416748 ], [ 174.7805481, -38.08000183 ], [ 174.78027344, -38.05833435 ], [ 174.784729, -38.03749847 ], [ 174.79936218, -38.01816177 ], [ 174.812011719999987, -38.01016617 ], [ 174.82801819, -38.00786972 ], [ 174.823608400000012, -38.01861191 ], [ 174.831832889999987, -38.01646042 ], [ 174.83944702, -38.02305603 ], [ 174.85028076, -38.02222061 ], [ 174.84388733, -38.01666641 ], [ 174.85221863000001, -38.01222229 ], [ 174.85197449, -38.00192261 ], [ 174.87272644, -37.97494507 ], [ 174.87306213, -37.96944427 ], [ 174.88729858, -37.95819855 ], [ 174.877853390000013, -37.9593811 ], [ 174.86972046, -37.94861221 ], [ 174.85055542, -37.95166779 ], [ 174.84681702, -37.94693756 ], [ 174.832504269999987, -37.95666504 ], [ 174.826110840000013, -37.95500183 ], [ 174.8152771, -37.96805573 ], [ 174.821105960000011, -37.97472382 ], [ 174.81777954, -37.98249817 ], [ 174.83416748, -37.98583221 ], [ 174.832229610000013, -37.99277878 ], [ 174.82305908, -37.99499893 ], [ 174.79632568, -38.00748062 ], [ 174.79055786, -38.00236893 ], [ 174.7888031, -37.98641968 ], [ 174.77998352, -37.97743988 ], [ 174.78083801, -37.96389008 ], [ 174.78729248, -37.95423889 ], [ 174.76570129000001, -37.89221954 ], [ 174.75582886, -37.88555527 ], [ 174.763458250000014, -37.87911606 ], [ 174.75627136, -37.86413574 ], [ 174.76695251000001, -37.84289932 ], [ 174.776550289999989, -37.83013535 ], [ 174.791519169999987, -37.82303619 ], [ 174.81167603, -37.82040405 ], [ 174.81852722, -37.82339096 ], [ 174.82893372, -37.81796265 ], [ 174.83610535, -37.80751801 ], [ 174.84388733, -37.80346298 ], [ 174.86610413, -37.81000137 ], [ 174.86801147, -37.79730225 ], [ 174.878005980000012, -37.79430008 ], [ 174.89524841, -37.80117035 ], [ 174.89840698, -37.80993652 ], [ 174.90371704, -37.80174255 ], [ 174.91523743, -37.80332184 ], [ 174.914535519999987, -37.80942154 ], [ 174.92755127, -37.80652618 ], [ 174.91947937, -37.79663849 ], [ 174.93916321, -37.79555511 ], [ 174.94555664, -37.79861069 ], [ 174.948287959999988, -37.80789185 ], [ 174.952667240000011, -37.80295944 ], [ 174.947052, -37.79442596 ], [ 174.96347046, -37.79105759 ], [ 174.96762085, -37.80076599 ], [ 174.972457889999987, -37.79644775 ], [ 174.96905518, -37.78882599 ], [ 174.95083618000001, -37.77972412 ], [ 174.933944700000012, -37.78637314 ], [ 174.93299866000001, -37.79344177 ], [ 174.9239502, -37.79232025 ], [ 174.92605591, -37.78630066 ], [ 174.91516113, -37.78867722 ], [ 174.91171265, -37.77947617 ], [ 174.92721558, -37.77064896 ], [ 174.93229675, -37.77492523 ], [ 174.95181274, -37.77768707 ], [ 174.96221924, -37.77111053 ], [ 174.953887939999987, -37.76747513 ], [ 174.949722290000011, -37.7491684 ], [ 174.94252014, -37.75432968 ], [ 174.93696594, -37.74726105 ], [ 174.9284668, -37.75600815 ], [ 174.92396545, -37.74638367 ], [ 174.917221070000011, -37.74361038 ], [ 174.920272829999988, -37.7527771 ], [ 174.91389465, -37.75995636 ], [ 174.90666199, -37.75888824 ], [ 174.90997314, -37.76638794 ], [ 174.89981079, -37.78037643 ], [ 174.90206909, -37.7899704 ], [ 174.89466858, -37.79050064 ], [ 174.88528442, -37.78277588 ], [ 174.85540771, -37.79853058 ], [ 174.83966064, -37.80024338 ], [ 174.83024597, -37.75647736 ], [ 174.81930542, -37.73400497 ], [ 174.82305908, -37.72000122 ], [ 174.81083679, -37.69722366 ], [ 174.812164309999986, -37.6859169 ], [ 174.794998170000014, -37.65472412 ], [ 174.794723510000011, -37.63583374 ], [ 174.79046631, -37.63247681 ], [ 174.77388, -37.60169983 ], [ 174.769104, -37.58243561 ], [ 174.77160645, -37.57859421 ], [ 174.766387939999987, -37.55583191 ], [ 174.75527954, -37.53138733 ], [ 174.74333191, -37.51777649 ], [ 174.74583435, -37.50388718 ], [ 174.73971558, -37.4980545 ], [ 174.72917175, -37.47777939 ], [ 174.71722412, -37.46277618 ], [ 174.71083069, -37.4430542 ], [ 174.705001829999986, -37.44083405 ], [ 174.699722290000011, -37.41972351 ], [ 174.702224730000012, -37.40277863 ], [ 174.7099762, -37.39452362 ], [ 174.70315552, -37.37917709 ], [ 174.703887939999987, -37.37277603 ], [ 174.71278381, -37.38170624 ], [ 174.71446228, -37.38959885 ], [ 174.740478520000011, -37.38574219 ], [ 174.76170349, -37.36285782 ], [ 174.764160159999989, -37.3544426 ], [ 174.78443909, -37.33250046 ], [ 174.80793762, -37.32234955 ], [ 174.823303220000014, -37.32120895 ], [ 174.82292175, -37.31043625 ], [ 174.849243159999986, -37.302742 ], [ 174.852340700000013, -37.29639435 ], [ 174.84538269, -37.28754807 ], [ 174.85505676, -37.27927399 ], [ 174.85157776, -37.27485275 ], [ 174.86471558, -37.27100372 ], [ 174.89491272, -37.27849197 ], [ 174.91853333, -37.28787994 ], [ 174.92121887, -37.27077866 ], [ 174.927795409999987, -37.26884842 ], [ 174.920806879999986, -37.26001358 ], [ 174.93395996000001, -37.25615692 ], [ 174.937042240000011, -37.24981308 ], [ 174.92308044, -37.23213577 ], [ 174.93621826, -37.22828293 ], [ 174.94320679, -37.23711777 ], [ 174.96992493, -37.24015808 ], [ 174.983078, -37.23629761 ], [ 174.979568480000012, -37.231884 ], [ 175.00192261, -37.20898819 ], [ 174.991851809999986, -37.20650482 ], [ 174.994903560000012, -37.20016098 ], [ 174.980896, -37.18249512 ], [ 174.98396301, -37.17615128 ], [ 174.97695923, -37.16732025 ], [ 174.96690369, -37.16483307 ], [ 174.95294189, -37.14716339 ], [ 174.94332886, -37.15543365 ], [ 174.93942261, -37.14025116 ], [ 174.94554138, -37.12756729 ], [ 174.95864868000001, -37.12372208 ], [ 174.96911621000001, -37.13697052 ], [ 174.982208250000014, -37.13311768 ], [ 174.97915649, -37.13946152 ], [ 175.005371090000011, -37.13175201 ], [ 175.001861569999988, -37.12733841 ], [ 175.01496887, -37.12348175 ], [ 175.01802063, -37.11714172 ], [ 175.01101685, -37.10831833 ], [ 175.02410889, -37.10446548 ], [ 175.02061462, -37.10005188 ], [ 175.023223879999989, -37.08296967 ], [ 175.03630066, -37.07912064 ], [ 175.0328064, -37.07471085 ], [ 175.04588318, -37.07086182 ], [ 175.048477170000012, -37.05379486 ], [ 175.06155396, -37.04994583 ], [ 175.05805969, -37.04554367 ], [ 175.077667240000011, -37.0397644 ], [ 175.08465576, -37.04856491 ], [ 175.08161926, -37.05489349 ], [ 175.09165955, -37.05736542 ], [ 175.10475159, -37.05350113 ], [ 175.11830139, -37.06035995 ], [ 175.12791443, -37.05207825 ], [ 175.151580810000013, -37.06135941 ], [ 175.16073608, -37.04232407 ], [ 175.16027832, -37.03159332 ], [ 175.15328979, -37.02281189 ], [ 175.17288208, -37.01697159 ], [ 175.18638611, -37.02379227 ], [ 175.18336487, -37.03012848 ], [ 175.20687866, -37.03936005 ], [ 175.216308590000011, -37.03106689 ], [ 175.267211909999986, -37.02603531 ], [ 175.27947998, -37.01288223 ], [ 175.28489685, -37.00246811 ], [ 175.29167175, -37.00860977 ], [ 175.28890991, -37.01449585 ], [ 175.303894039999989, -37.05749893 ], [ 175.2980957, -37.06679916 ], [ 175.29916382, -37.07972336 ], [ 175.30805969, -37.08750153 ], [ 175.30166626, -37.09833145 ], [ 175.30360413, -37.10527802 ], [ 175.297225950000012, -37.11555481 ], [ 175.303100590000014, -37.14210129 ], [ 175.30926514, -37.15270615 ], [ 175.31944275, -37.16055679 ], [ 175.32615662, -37.17469025 ], [ 175.33332825, -37.18166733 ], [ 175.32476807, -37.18552399 ], [ 175.343429570000012, -37.20412445 ], [ 175.36880493000001, -37.21257401 ], [ 175.390838620000011, -37.21305466 ], [ 175.41389465, -37.21055603 ], [ 175.423614500000014, -37.20416641 ], [ 175.449722290000011, -37.19833374 ], [ 175.4680481, -37.19166565 ], [ 175.47944641, -37.18416595 ], [ 175.49833679, -37.18361282 ], [ 175.515274049999988, -37.17527771 ], [ 175.518905640000014, -37.16666794 ], [ 175.53919983, -37.17029953 ], [ 175.54425049, -37.16123199 ], [ 175.539520259999989, -37.14123535 ], [ 175.528121950000013, -37.12801743 ], [ 175.52790833, -37.12042999 ], [ 175.515838620000011, -37.11083221 ], [ 175.51419067, -37.09380341 ], [ 175.51811218, -37.07055283 ], [ 175.52412415, -37.06139374 ], [ 175.516113280000013, -37.04333496 ], [ 175.52012634, -37.03899384 ], [ 175.508728029999986, -37.00346375 ], [ 175.49667358, -36.98638916 ], [ 175.49916077, -36.97444534 ], [ 175.4944458, -36.96749878 ], [ 175.46749878, -36.94083405 ], [ 175.4680481, -36.93888855 ], [ 175.43583679, -36.90916824 ], [ 175.4152832, -36.87361145 ], [ 175.40583801, -36.85416794 ], [ 175.421112060000013, -36.84749985 ], [ 175.43583679, -36.85388947 ], [ 175.45063782, -36.85077286 ], [ 175.461395259999989, -36.84027863 ], [ 175.452224730000012, -36.8433342 ], [ 175.44194031, -36.8386116 ], [ 175.43844604, -36.8448143 ], [ 175.42860413, -36.83833313 ], [ 175.42778015, -36.82860947 ], [ 175.43611145, -36.82694626 ], [ 175.4458313, -36.83166504 ], [ 175.457778929999989, -36.83222198 ], [ 175.46028137, -36.82666779 ], [ 175.44194031, -36.82222366 ], [ 175.431396479999989, -36.82444382 ], [ 175.42304993, -36.81888962 ], [ 175.44389343, -36.80916595 ], [ 175.46110535, -36.8069458 ], [ 175.46916199, -36.81027603 ], [ 175.47944641, -36.80194473 ], [ 175.48944092, -36.80666733 ], [ 175.50389099, -36.79666519 ], [ 175.50083923, -36.77999878 ], [ 175.485275269999988, -36.77666855 ], [ 175.49861145, -36.7733345 ], [ 175.47944641, -36.75249863 ], [ 175.45832825, -36.76333237 ], [ 175.47946167, -36.73608017 ], [ 175.47277832, -36.73722076 ], [ 175.456680299999988, -36.72546005 ], [ 175.44805908, -36.73138809 ], [ 175.43611145, -36.72694397 ], [ 175.43804932, -36.71944427 ], [ 175.43083191, -36.71777725 ], [ 175.42832947, -36.70000076 ], [ 175.43110657, -36.68888855 ], [ 175.44694519, -36.66277695 ], [ 175.44555664, -36.64638901 ], [ 175.43695068, -36.63416672 ], [ 175.43695068, -36.62666702 ], [ 175.454727170000012, -36.62888718 ], [ 175.47084045, -36.6222229 ], [ 175.46305847, -36.61388779 ], [ 175.449996950000013, -36.61611176 ], [ 175.43972778, -36.60833359 ], [ 175.43666077, -36.61166763 ], [ 175.41944885, -36.5969429 ], [ 175.417770389999987, -36.59000015 ], [ 175.40527344, -36.58083344 ], [ 175.38806152, -36.57638931 ], [ 175.38139343, -36.56999969 ], [ 175.362777709999989, -36.56499863 ], [ 175.358886719999987, -36.55916595 ], [ 175.34472656, -36.55416489 ], [ 175.34165955, -36.54527664 ], [ 175.33305359, -36.53694534 ], [ 175.326660159999989, -36.52277756 ], [ 175.328887939999987, -36.50944519 ], [ 175.32556152, -36.49000168 ], [ 175.33055115, -36.4794426 ], [ 175.33805847, -36.48416519 ], [ 175.34750366, -36.4794426 ], [ 175.34361267, -36.47166824 ], [ 175.36860657, -36.46694565 ], [ 175.36860657, -36.46694565 ] ] ], [ [ [ 175.40272522, -36.46147156 ], [ 175.40272522, -36.46394348 ], [ 175.399337769999988, -36.46097565 ], [ 175.40272522, -36.46147156 ], [ 175.40272522, -36.46147156 ] ] ], [ [ [ 175.771118159999986, -36.42638779 ], [ 175.77333069, -36.43166733 ], [ 175.7875061, -36.44138718 ], [ 175.76445007, -36.44166565 ], [ 175.75805664, -36.43694305 ], [ 175.771118159999986, -36.42638779 ], [ 175.771118159999986, -36.42638779 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.15", "id_1": 15, "name_1": "Wellington", "hasc_1": "NZ.WG", "population2022": 543500, "areakm2": 8077.827, "density2022": 67.28 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.773223879999989, -41.348526 ], [ 174.77305603, -41.35305405 ], [ 174.77055359, -41.35055542 ], [ 174.773223879999989, -41.348526 ], [ 174.773223879999989, -41.348526 ] ] ], [ [ [ 174.87068176, -41.2958107 ], [ 174.87020874000001, -41.29278564 ], [ 174.87251282, -41.29284286 ], [ 174.87068176, -41.2958107 ], [ 174.87068176, -41.2958107 ] ] ], [ [ [ 174.86784363000001, -41.26046371 ], [ 174.861114500000014, -41.25972366 ], [ 174.86552429, -41.25308228 ], [ 174.86784363000001, -41.26046371 ], [ 174.86784363000001, -41.26046371 ] ] ], [ [ [ 174.78111267, -41.07666779 ], [ 174.78852844, -41.07813644 ], [ 174.78974915, -41.0911026 ], [ 174.7718811, -41.09745026 ], [ 174.77055359, -41.08972168 ], [ 174.78111267, -41.07666779 ], [ 174.78111267, -41.07666779 ] ] ], [ [ [ 176.22465515, -40.90849686 ], [ 176.2334137, -40.89957809 ], [ 176.2280426, -40.90658188 ], [ 176.22465515, -40.90849686 ], [ 176.22465515, -40.90849686 ] ] ], [ [ [ 174.90179443, -40.88867569 ], [ 174.90400696, -40.88909149 ], [ 174.902023320000012, -40.89094925 ], [ 174.90179443, -40.88867569 ], [ 174.90179443, -40.88867569 ] ] ], [ [ [ 174.899887080000013, -40.88819504 ], [ 174.899185179999989, -40.88657761 ], [ 174.901474, -40.88442612 ], [ 174.899887080000013, -40.88819504 ], [ 174.899887080000013, -40.88819504 ] ] ], [ [ [ 174.945770259999989, -40.82215881 ], [ 174.95433044, -40.82952118 ], [ 174.94618225, -40.83194351 ], [ 174.933792110000013, -40.85034561 ], [ 174.93469238, -40.85413361 ], [ 174.917617799999988, -40.86843872 ], [ 174.91169739, -40.87018585 ], [ 174.89874268, -40.88323975 ], [ 174.88543701, -40.88996124 ], [ 174.87504578, -40.88994598 ], [ 174.86778259, -40.88472366 ], [ 174.86860657, -40.8758316 ], [ 174.88389587, -40.86694336 ], [ 174.89054871, -40.85722351 ], [ 174.8999939, -40.85472107 ], [ 174.91471863000001, -40.83805466 ], [ 174.918884279999986, -40.82277679 ], [ 174.93778992, -40.81952286 ], [ 174.945770259999989, -40.82215881 ], [ 174.945770259999989, -40.82215881 ] ] ], [ [ [ 176.10801697, -40.67386627 ], [ 176.13346863000001, -40.68264008 ], [ 176.153533939999988, -40.67651749 ], [ 176.15888977, -40.69146347 ], [ 176.173614500000014, -40.69804001 ], [ 176.1869812, -40.6939621 ], [ 176.19767761, -40.69624329 ], [ 176.20568848, -40.7048912 ], [ 176.21905518, -40.70081711 ], [ 176.247009279999986, -40.73113632 ], [ 176.24835205, -40.74177933 ], [ 176.26567078, -40.74206543 ], [ 176.2736969, -40.75070953 ], [ 176.26176453, -40.76538849 ], [ 176.26979065, -40.79122162 ], [ 176.259674069999988, -40.80427551 ], [ 176.25617981, -40.81715393 ], [ 176.2593689, -40.8232193 ], [ 176.24360657, -40.84638977 ], [ 176.24028015, -40.86249924 ], [ 176.227493290000012, -40.86972046 ], [ 176.219253540000011, -40.89019012 ], [ 176.22084045, -40.8983345 ], [ 176.22833252, -40.90333176 ], [ 176.205276489999989, -40.91472244 ], [ 176.19111633, -40.92583466 ], [ 176.18360901, -40.92722321 ], [ 176.17660522, -40.93543625 ], [ 176.15611267, -40.94722366 ], [ 176.13945007, -40.96611023 ], [ 176.13528442, -40.98389053 ], [ 176.12638855, -41.00500107 ], [ 176.1072998, -41.01586914 ], [ 176.10583496000001, -41.03443527 ], [ 176.097229, -41.04360962 ], [ 176.100921629999988, -41.05773163 ], [ 176.093246459999989, -41.05940247 ], [ 176.08895874000001, -41.07769775 ], [ 176.0776062, -41.08378601 ], [ 176.068603520000011, -41.1044426 ], [ 176.07041931, -41.12187195 ], [ 176.06277466, -41.13277817 ], [ 176.05653381, -41.13207245 ], [ 176.009521479999989, -41.16685867 ], [ 175.99775696, -41.17824173 ], [ 175.9916687, -41.19286346 ], [ 175.991973879999989, -41.20191193 ], [ 175.98497009, -41.2154808 ], [ 175.97380066, -41.22542953 ], [ 175.964340209999989, -41.24482346 ], [ 175.944564820000011, -41.24718857 ], [ 175.9165802, -41.25602341 ], [ 175.896728520000011, -41.2654686 ], [ 175.88215637, -41.27529144 ], [ 175.869049069999988, -41.28831482 ], [ 175.86506653, -41.31267929 ], [ 175.84921265, -41.32427597 ], [ 175.834472659999989, -41.33922577 ], [ 175.83230591, -41.34636307 ], [ 175.820755, -41.34887314 ], [ 175.80867004000001, -41.36261749 ], [ 175.80368042, -41.36203003 ], [ 175.76977539, -41.37142563 ], [ 175.76799011, -41.37914276 ], [ 175.74385071, -41.39175415 ], [ 175.725662230000012, -41.39485931 ], [ 175.70959473, -41.4052887 ], [ 175.690643310000013, -41.40807724 ], [ 175.68373108, -41.41498184 ], [ 175.67564392, -41.41449356 ], [ 175.6590271, -41.43013382 ], [ 175.64953613, -41.44302368 ], [ 175.64416504, -41.44333267 ], [ 175.6353302, -41.45409012 ], [ 175.61470032, -41.46166611 ], [ 175.60507202, -41.47468948 ], [ 175.59403992, -41.47945023 ], [ 175.58598328, -41.48756027 ], [ 175.57743835, -41.48440552 ], [ 175.56668091, -41.492733 ], [ 175.54522705, -41.49782944 ], [ 175.53318787, -41.49745178 ], [ 175.53277588, -41.50833511 ], [ 175.5186615, -41.50498199 ], [ 175.507171629999988, -41.51096725 ], [ 175.49913025, -41.52760315 ], [ 175.48039246, -41.53662872 ], [ 175.46513367, -41.55281448 ], [ 175.45422363, -41.55738449 ], [ 175.4322052, -41.57291031 ], [ 175.421524049999988, -41.56640244 ], [ 175.37831116000001, -41.56936646 ], [ 175.36174011, -41.5763588 ], [ 175.35391235, -41.58883286 ], [ 175.33726501000001, -41.59564209 ], [ 175.322494510000013, -41.60944366 ], [ 175.31044006, -41.60848618 ], [ 175.29730225, -41.61358643 ], [ 175.275299069999988, -41.61259842 ], [ 175.2693634, -41.60712814 ], [ 175.24694824, -41.60257721 ], [ 175.235000609999986, -41.60805511 ], [ 175.231384279999986, -41.59027863 ], [ 175.22149658, -41.56951904 ], [ 175.21803284, -41.54078674 ], [ 175.19416809, -41.52555466 ], [ 175.20706177, -41.50352478 ], [ 175.20787048, -41.47458649 ], [ 175.22166443, -41.45360947 ], [ 175.21556091, -41.43999863 ], [ 175.215316769999987, -41.43025589 ], [ 175.199996950000013, -41.42083359 ], [ 175.17416382, -41.4094429 ], [ 175.14479065, -41.39846039 ], [ 175.142929079999988, -41.39452744 ], [ 175.14785767, -41.37330246 ], [ 175.12138367, -41.37055588 ], [ 175.11328125, -41.37335587 ], [ 175.1075592, -41.38324356 ], [ 175.13323975, -41.39097214 ], [ 175.141098019999987, -41.39635086 ], [ 175.111404420000014, -41.38718033 ], [ 175.07579041, -41.37881088 ], [ 175.042190549999987, -41.37351227 ], [ 175.015426639999987, -41.38999939 ], [ 174.989074710000011, -41.39361191 ], [ 174.98805237, -41.40027618 ], [ 174.95304871, -41.41577148 ], [ 174.942169189999987, -41.42516708 ], [ 174.917770389999987, -41.43972397 ], [ 174.90167236, -41.41860962 ], [ 174.88667297, -41.41277695 ], [ 174.86805725, -41.41055679 ], [ 174.865005489999987, -41.40139008 ], [ 174.87583923, -41.38750076 ], [ 174.86721802, -41.37749863 ], [ 174.856384279999986, -41.37138748 ], [ 174.848159790000011, -41.35820389 ], [ 174.85824585, -41.33595276 ], [ 174.86827087, -41.32769012 ], [ 174.8709259, -41.31871414 ], [ 174.878417969999987, -41.3152504 ], [ 174.892776489999989, -41.29777908 ], [ 174.892501829999986, -41.29222107 ], [ 174.90611267, -41.28111267 ], [ 174.902771, -41.27694321 ], [ 174.91221619, -41.25805664 ], [ 174.8999939, -41.24972153 ], [ 174.898223879999989, -41.23915482 ], [ 174.888748170000014, -41.23181915 ], [ 174.86213684, -41.22491455 ], [ 174.84367371, -41.22934341 ], [ 174.81625366, -41.24756622 ], [ 174.79554749, -41.25755692 ], [ 174.78666687, -41.26722336 ], [ 174.78945923, -41.28112411 ], [ 174.77972412, -41.28722382 ], [ 174.79167175, -41.29111099 ], [ 174.80332947, -41.28540802 ], [ 174.80661011, -41.30037308 ], [ 174.79866028, -41.31214523 ], [ 174.808105469999987, -41.31599808 ], [ 174.824676509999989, -41.28538513 ], [ 174.83335876000001, -41.28879929 ], [ 174.83329773, -41.30759811 ], [ 174.82797241, -41.31433487 ], [ 174.83929443, -41.32645416 ], [ 174.83833313, -41.33361053 ], [ 174.82644653, -41.33276367 ], [ 174.82055664, -41.34638977 ], [ 174.80999756, -41.34277725 ], [ 174.80332947, -41.32833481 ], [ 174.79180908, -41.33290482 ], [ 174.79083252, -41.35055542 ], [ 174.7849884, -41.34259033 ], [ 174.772506709999988, -41.34388733 ], [ 174.767501829999986, -41.35055542 ], [ 174.75111389, -41.35055542 ], [ 174.74472046, -41.3469429 ], [ 174.733612060000013, -41.34916687 ], [ 174.72639465, -41.35861206 ], [ 174.71583557, -41.36388779 ], [ 174.701385499999986, -41.35555649 ], [ 174.696105960000011, -41.34777832 ], [ 174.66305542, -41.33972168 ], [ 174.659729, -41.34305573 ], [ 174.64860535, -41.32638931 ], [ 174.63082886, -41.31611252 ], [ 174.62832642, -41.29472351 ], [ 174.61694336, -41.29639053 ], [ 174.612228390000013, -41.28610992 ], [ 174.61444092, -41.27361298 ], [ 174.62167358, -41.25972366 ], [ 174.646850590000014, -41.23717117 ], [ 174.65083313, -41.24388885 ], [ 174.6577301, -41.23802185 ], [ 174.66194153, -41.24603653 ], [ 174.67443848, -41.23472214 ], [ 174.68916321, -41.23110962 ], [ 174.69139099, -41.22083282 ], [ 174.7052002, -41.21711731 ], [ 174.71333313, -41.21888733 ], [ 174.729599, -41.18606567 ], [ 174.73944092, -41.18000031 ], [ 174.74055481, -41.17055511 ], [ 174.75854492, -41.1677475 ], [ 174.768890379999988, -41.15222168 ], [ 174.78639221, -41.13639069 ], [ 174.7959137, -41.12390137 ], [ 174.80499268, -41.11888885 ], [ 174.802505489999987, -41.11277771 ], [ 174.8125, -41.11166763 ], [ 174.82446289, -41.10512543 ], [ 174.83239746000001, -41.10747528 ], [ 174.8319397, -41.10055542 ], [ 174.84861755, -41.0886116 ], [ 174.861816409999989, -41.09406281 ], [ 174.86291504, -41.10289001 ], [ 174.838119510000013, -41.12212753 ], [ 174.84222412, -41.13111115 ], [ 174.86024475, -41.11437225 ], [ 174.86805725, -41.10361099 ], [ 174.864746090000011, -41.09777832 ], [ 174.86633301, -41.08445358 ], [ 174.85055542, -41.06638718 ], [ 174.83888245, -41.06194305 ], [ 174.84832764, -41.04722214 ], [ 174.862777709999989, -41.04222107 ], [ 174.87028503, -41.02972412 ], [ 174.89884949, -41.02837753 ], [ 174.92805481, -41.0047226 ], [ 174.93943787, -41.0 ], [ 174.958923340000013, -40.97463608 ], [ 174.97164917, -40.94835663 ], [ 174.97779846, -40.91699219 ], [ 174.97680664, -40.90339661 ], [ 174.985275269999988, -40.88138962 ], [ 175.02835083, -40.85774231 ], [ 175.05967712, -40.82636642 ], [ 175.108337400000011, -40.74830627 ], [ 175.117538450000012, -40.73170853 ], [ 175.12507629000001, -40.72503281 ], [ 175.133728029999986, -40.70552826 ], [ 175.16729736, -40.70825958 ], [ 175.168609620000012, -40.71885681 ], [ 175.18592834, -40.71916199 ], [ 175.20452881, -40.73005295 ], [ 175.20581055, -40.74065399 ], [ 175.181854249999986, -40.74236298 ], [ 175.20172119, -40.76387024 ], [ 175.235015870000012, -40.75382614 ], [ 175.25360107, -40.76469803 ], [ 175.26423645, -40.7669754 ], [ 175.284240720000014, -40.76091385 ], [ 175.28692627, -40.75460052 ], [ 175.3069458, -40.74853516 ], [ 175.317596439999988, -40.75080109 ], [ 175.33094788, -40.74674606 ], [ 175.34559631, -40.7532959 ], [ 175.356369019999988, -40.7280159 ], [ 175.36973572, -40.72394562 ], [ 175.377716060000012, -40.73252106 ], [ 175.384399409999986, -40.73048401 ], [ 175.392379760000011, -40.73905945 ], [ 175.405761719999987, -40.73498535 ], [ 175.413742070000012, -40.74356079 ], [ 175.42442322, -40.74580765 ], [ 175.43780518, -40.74172592 ], [ 175.44320679, -40.72907257 ], [ 175.4499054, -40.72703171 ], [ 175.47012329, -40.69334412 ], [ 175.56098938, -40.7261467 ], [ 175.55429077, -40.72819519 ], [ 175.562286379999989, -40.73676682 ], [ 175.57569885, -40.73266983 ], [ 175.59039307, -40.73918915 ], [ 175.59710693, -40.73713684 ], [ 175.60510254, -40.74570847 ], [ 175.61180115, -40.74365616 ], [ 175.61981201, -40.75222778 ], [ 175.63322449, -40.74812317 ], [ 175.629226679999988, -40.74383926 ], [ 175.65335083, -40.74196243 ], [ 175.66148376000001, -40.72293472 ], [ 175.67619324, -40.72945023 ], [ 175.685607909999987, -40.72104645 ], [ 175.693725590000014, -40.70200348 ], [ 175.68972778, -40.69771576 ], [ 175.72055054, -40.69376373 ], [ 175.74868774, -40.69615555 ], [ 175.75669861, -40.70472717 ], [ 175.766113280000013, -40.69631958 ], [ 175.78485107, -40.70711517 ], [ 175.7754364, -40.71552658 ], [ 175.783447270000011, -40.72409821 ], [ 175.79016113, -40.72203445 ], [ 175.775329590000013, -40.74314499 ], [ 175.77934265, -40.74743271 ], [ 175.76591492, -40.75155258 ], [ 175.76451111, -40.76852417 ], [ 175.785949710000011, -40.77297211 ], [ 175.78865051, -40.76663208 ], [ 175.796661379999989, -40.77519608 ], [ 175.814102170000012, -40.77535629 ], [ 175.82621765, -40.76060867 ], [ 175.84094238, -40.76711273 ], [ 175.850372310000012, -40.75870514 ], [ 175.85838318, -40.76726913 ], [ 175.873107909999987, -40.77376938 ], [ 175.88653564, -40.76964188 ], [ 175.91207886, -40.75074387 ], [ 175.93484497, -40.76580048 ], [ 175.945648190000014, -40.74040222 ], [ 175.95637512, -40.74261475 ], [ 175.959075930000012, -40.73626328 ], [ 175.97651672, -40.73640823 ], [ 175.97920227, -40.73005676 ], [ 175.97117615, -40.72149277 ], [ 175.97789001000001, -40.71942139 ], [ 175.99934387, -40.72384644 ], [ 176.0141449, -40.70272446 ], [ 176.024887080000013, -40.70493698 ], [ 176.02218628, -40.71128845 ], [ 176.0436554, -40.7157135 ], [ 176.06109619, -40.71586609 ], [ 176.07450867, -40.7117424 ], [ 176.0852356, -40.71397018 ], [ 176.077194209999988, -40.70539856 ], [ 176.08792114, -40.70762634 ], [ 176.090606689999987, -40.67368698 ], [ 176.104003909999989, -40.66957855 ], [ 176.10801697, -40.67386627 ], [ 176.10801697, -40.67386627 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.16", "id_1": 16, "name_1": "West Coast", "hasc_1": "NZ.WC", "population2022": 32700, "areakm2": 23621.806, "density2022": 1.38 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 168.18888855, -44.17944336 ], [ 168.18804932, -44.1819458 ], [ 168.18638611, -44.18083191 ], [ 168.18888855, -44.17944336 ], [ 168.18888855, -44.17944336 ] ] ], [ [ [ 168.30499268, -44.07944489 ], [ 168.3041687, -44.08277893 ], [ 168.301391599999988, -44.08055496 ], [ 168.30499268, -44.07944489 ], [ 168.30499268, -44.07944489 ] ] ], [ [ [ 168.37640381, -44.02986908 ], [ 168.378433230000013, -44.03125 ], [ 168.37770081, -44.0320015 ], [ 168.37640381, -44.02986908 ], [ 168.37640381, -44.02986908 ] ] ], [ [ [ 168.7906189, -43.98039627 ], [ 168.78924561, -43.97800827 ], [ 168.79118347, -43.97719193 ], [ 168.7906189, -43.98039627 ], [ 168.7906189, -43.98039627 ] ] ], [ [ [ 168.91442871000001, -43.89767838 ], [ 168.916519169999987, -43.89860916 ], [ 168.91322327, -43.89785385 ], [ 168.91442871000001, -43.89767838 ], [ 168.91442871000001, -43.89767838 ] ] ], [ [ [ 168.83999634, -43.87657166 ], [ 168.8374176, -43.87686539 ], [ 168.83660889, -43.87546539 ], [ 168.83999634, -43.87657166 ], [ 168.83999634, -43.87657166 ] ] ], [ [ [ 168.87667847, -43.86341858 ], [ 168.875473019999987, -43.85992432 ], [ 168.87780762, -43.8610878 ], [ 168.87667847, -43.86341858 ], [ 168.87667847, -43.86341858 ] ] ], [ [ [ 168.88708496000001, -43.85765457 ], [ 168.88273621, -43.86248779 ], [ 168.87889099, -43.86166763 ], [ 168.88708496000001, -43.85765457 ], [ 168.88708496000001, -43.85765457 ] ] ], [ [ [ 170.33135986, -43.1031723 ], [ 170.331527709999989, -43.10625839 ], [ 170.327331539999989, -43.10404587 ], [ 170.33135986, -43.1031723 ], [ 170.33135986, -43.1031723 ] ] ], [ [ [ 170.34240723, -43.10206985 ], [ 170.339508059999986, -43.10009003 ], [ 170.34515381, -43.0995636 ], [ 170.34240723, -43.10206985 ], [ 170.34240723, -43.10206985 ] ] ], [ [ [ 170.9928894, -42.73789597 ], [ 170.98968506, -42.7373085 ], [ 170.99023438, -42.73636627 ], [ 170.9928894, -42.73789597 ], [ 170.9928894, -42.73789597 ] ] ], [ [ [ 170.98666382, -42.73361206 ], [ 170.987228390000013, -42.73555374 ], [ 170.98194885, -42.73389053 ], [ 170.98666382, -42.73361206 ], [ 170.98666382, -42.73361206 ] ] ], [ [ [ 170.96777344, -42.72611237 ], [ 170.9803009, -42.72612 ], [ 170.979995730000013, -42.73138809 ], [ 170.96777344, -42.72611237 ], [ 170.96777344, -42.72611237 ] ] ], [ [ [ 170.96083069, -42.72083282 ], [ 170.96055603, -42.72333145 ], [ 170.9569397, -42.72083282 ], [ 170.96083069, -42.72083282 ], [ 170.96083069, -42.72083282 ] ] ], [ [ [ 171.21891785, -42.37594986 ], [ 171.21682739, -42.37548065 ], [ 171.21803284, -42.37459564 ], [ 171.21891785, -42.37594986 ], [ 171.21891785, -42.37594986 ] ] ], [ [ [ 171.26448059, -42.32446289 ], [ 171.2600708, -42.32311249 ], [ 171.26599121000001, -42.32164001 ], [ 171.26448059, -42.32446289 ], [ 171.26448059, -42.32446289 ] ] ], [ [ [ 171.449722290000011, -41.76805496 ], [ 171.453338620000011, -41.76416779 ], [ 171.453887939999987, -41.76638794 ], [ 171.449722290000011, -41.76805496 ], [ 171.449722290000011, -41.76805496 ] ] ], [ [ [ 172.09741211, -41.25501251 ], [ 172.09654236, -41.24890137 ], [ 172.09933472, -41.25050354 ], [ 172.09741211, -41.25501251 ], [ 172.09741211, -41.25501251 ] ] ], [ [ [ 172.25198364, -40.80802155 ], [ 172.242965700000013, -40.82708359 ], [ 172.24676514, -40.83150482 ], [ 172.237091060000012, -40.8398056 ], [ 172.24467468, -40.8486557 ], [ 172.231216429999989, -40.85252762 ], [ 172.228286739999987, -40.85889053 ], [ 172.235839840000011, -40.86775208 ], [ 172.23287964, -40.87412262 ], [ 172.25306702, -40.86831284 ], [ 172.26274109, -40.86000824 ], [ 172.2635498, -40.87081528 ], [ 172.284530640000014, -40.87582016 ], [ 172.292053220000014, -40.88470459 ], [ 172.29284668, -40.89552689 ], [ 172.279373170000014, -40.8993988 ], [ 172.286895750000014, -40.90828705 ], [ 172.29364014, -40.906353 ], [ 172.30493164, -40.91968918 ], [ 172.29820251000001, -40.92162704 ], [ 172.305725099999989, -40.9305191 ], [ 172.31919861, -40.926651 ], [ 172.33050537, -40.93999863 ], [ 172.35070801, -40.93419266 ], [ 172.364990229999989, -40.94115829 ], [ 172.37846375, -40.93729019 ], [ 172.38305664, -40.95258331 ], [ 172.38980103, -40.95064926 ], [ 172.383880620000014, -40.96342468 ], [ 172.36448669, -40.98006439 ], [ 172.35101318, -40.98392868 ], [ 172.34805298, -40.99031448 ], [ 172.33079529, -40.98972321 ], [ 172.321899409999986, -41.00888062 ], [ 172.31219482, -41.01719284 ], [ 172.32731628, -41.03501129 ], [ 172.33784485000001, -41.03753662 ], [ 172.32896423, -41.05669022 ], [ 172.322204590000013, -41.05862045 ], [ 172.32977295, -41.06753159 ], [ 172.343276980000013, -41.06367493 ], [ 172.35380554, -41.06620789 ], [ 172.35298157, -41.0553627 ], [ 172.36352539, -41.05789185 ], [ 172.3694458, -41.04512024 ], [ 172.36566162, -41.04066086 ], [ 172.3821106, -41.0304184 ], [ 172.37831116000001, -41.02595901 ], [ 172.40612793, -41.02908707 ], [ 172.413711549999988, -41.03800964 ], [ 172.44068909, -41.03029251 ], [ 172.44364929, -41.02390289 ], [ 172.4609375, -41.02450562 ], [ 172.48202515, -41.02957535 ], [ 172.49551392, -41.02571487 ], [ 172.50016785, -41.04104614 ], [ 172.49429321, -41.05383301 ], [ 172.487533570000011, -41.05576324 ], [ 172.498962400000011, -41.06916809 ], [ 172.516265870000012, -41.06978607 ], [ 172.52770996000001, -41.08320236 ], [ 172.51802063, -41.0915184 ], [ 172.52566528, -41.10045242 ], [ 172.55360413, -41.10361481 ], [ 172.56515503, -41.11699295 ], [ 172.558380129999989, -41.11891174 ], [ 172.57286072, -41.12590027 ], [ 172.58831787, -41.14369202 ], [ 172.59507751000001, -41.14177704 ], [ 172.6105957, -41.1595459 ], [ 172.62124634, -41.16207123 ], [ 172.62901306, -41.17094421 ], [ 172.62223816, -41.17285538 ], [ 172.63002014, -41.18172073 ], [ 172.623260499999986, -41.1836319 ], [ 172.63883972, -41.20134735 ], [ 172.65914917, -41.19562531 ], [ 172.66305542, -41.20005035 ], [ 172.68336487, -41.19433212 ], [ 172.699005129999989, -41.21203995 ], [ 172.69613647, -41.21837234 ], [ 172.68258667, -41.22217941 ], [ 172.68649292, -41.22660446 ], [ 172.676849370000014, -41.23483658 ], [ 172.663299560000013, -41.23864746 ], [ 172.667221070000011, -41.2430687 ], [ 172.6401062, -41.25069427 ], [ 172.63618469, -41.24627304 ], [ 172.57516479, -41.26345062 ], [ 172.59469604, -41.28552246 ], [ 172.58792114, -41.28743362 ], [ 172.5957489, -41.29625702 ], [ 172.60644531, -41.29875946 ], [ 172.607498170000014, -41.3094902 ], [ 172.59783936, -41.31771088 ], [ 172.59210205, -41.33034515 ], [ 172.599960329999988, -41.3391571 ], [ 172.58638, -41.3429718 ], [ 172.58351135, -41.34928513 ], [ 172.59136963, -41.35809708 ], [ 172.58457947, -41.36000061 ], [ 172.59243774, -41.36880875 ], [ 172.59350586, -41.3795166 ], [ 172.56632996, -41.38712311 ], [ 172.55667114, -41.39532089 ], [ 172.56059265, -41.39971924 ], [ 172.54020691, -41.40541458 ], [ 172.54412842, -41.40980911 ], [ 172.526596070000011, -41.40921021 ], [ 172.52372742, -41.41550064 ], [ 172.495468140000014, -41.41241455 ], [ 172.47399902, -41.40743256 ], [ 172.46615601, -41.39865494 ], [ 172.45254517, -41.40245819 ], [ 172.44966125, -41.408741 ], [ 172.42242432, -41.41633606 ], [ 172.41952515, -41.42261505 ], [ 172.43026733, -41.42510223 ], [ 172.438125609999986, -41.43386841 ], [ 172.42553711, -41.44831085 ], [ 172.433395389999987, -41.45707321 ], [ 172.426574710000011, -41.4589653 ], [ 172.424743650000011, -41.4758873 ], [ 172.3974762, -41.4834404 ], [ 172.387756349999989, -41.49159241 ], [ 172.37411499000001, -41.49536514 ], [ 172.361526489999989, -41.50976944 ], [ 172.347869870000011, -41.51353836 ], [ 172.34498596, -41.51979446 ], [ 172.3528595, -41.52854156 ], [ 172.34709167, -41.54105377 ], [ 172.3520813, -41.55606461 ], [ 172.331604, -41.56170654 ], [ 172.339492799999988, -41.57046509 ], [ 172.332672120000012, -41.57234955 ], [ 172.344497679999989, -41.585495 ], [ 172.33874512, -41.59802628 ], [ 172.329040529999986, -41.60617447 ], [ 172.33299255, -41.61056137 ], [ 172.29885864, -41.6199646 ], [ 172.302810670000014, -41.62435532 ], [ 172.29705811, -41.63689423 ], [ 172.271560670000014, -41.62748718 ], [ 172.251068120000014, -41.63312149 ], [ 172.24136353, -41.6412735 ], [ 172.24926758, -41.65005875 ], [ 172.2424469, -41.65193939 ], [ 172.25823975, -41.66952133 ], [ 172.25248718, -41.68207932 ], [ 172.26435852, -41.69527817 ], [ 172.254653929999989, -41.70344925 ], [ 172.24278259, -41.69024658 ], [ 172.22912598, -41.6940155 ], [ 172.22122192, -41.68521118 ], [ 172.214385990000011, -41.68709183 ], [ 172.22229004, -41.69589615 ], [ 172.20466614, -41.69526291 ], [ 172.20071411, -41.69085693 ], [ 172.1870575, -41.69462204 ], [ 172.17733765, -41.70278931 ], [ 172.155761719999987, -41.69773483 ], [ 172.15682983, -41.70843124 ], [ 172.12947083, -41.71595383 ], [ 172.133438109999986, -41.72036743 ], [ 172.11975098, -41.72412872 ], [ 172.116867070000012, -41.73042297 ], [ 172.131622310000012, -41.73736954 ], [ 172.12190247, -41.74555206 ], [ 172.122970579999986, -41.75626755 ], [ 172.10929871, -41.76003647 ], [ 172.09957886, -41.76822662 ], [ 172.107498170000014, -41.77706528 ], [ 172.100646970000014, -41.77895355 ], [ 172.10856628, -41.78779602 ], [ 172.12225342, -41.78401947 ], [ 172.12011719, -41.86739349 ], [ 172.10931396, -41.86486816 ], [ 172.09671021, -41.8794136 ], [ 172.09780884, -41.89016724 ], [ 172.0841217, -41.89396667 ], [ 172.073303220000014, -41.89143753 ], [ 172.07041931, -41.89776611 ], [ 172.08630371000001, -41.91548538 ], [ 172.0834198, -41.92182159 ], [ 172.06973267, -41.92562485 ], [ 172.07369995, -41.93005753 ], [ 172.06001282, -41.93386459 ], [ 172.0639801, -41.93829727 ], [ 172.054245, -41.94654083 ], [ 172.06219482, -41.95540237 ], [ 172.07301331, -41.9579277 ], [ 172.08602905, -41.98199081 ], [ 172.0763092, -41.990242 ], [ 172.08822632, -42.00353622 ], [ 172.13150024, -42.0135994 ], [ 172.124649049999988, -42.01551056 ], [ 172.125747679999989, -42.02628326 ], [ 172.118911739999987, -42.02819824 ], [ 172.12001038, -42.03897095 ], [ 172.110290529999986, -42.04723358 ], [ 172.1421051, -42.08266449 ], [ 172.135253909999989, -42.08458328 ], [ 172.14718628, -42.09786606 ], [ 172.17565918, -42.10095215 ], [ 172.18934631, -42.09710693 ], [ 172.19332886, -42.10153198 ], [ 172.21385193, -42.09576416 ], [ 172.22975159, -42.11345673 ], [ 172.22291565, -42.11537933 ], [ 172.234848019999987, -42.12865067 ], [ 172.24565125, -42.13114548 ], [ 172.25933838, -42.12729645 ], [ 172.25646973, -42.1336441 ], [ 172.26441956, -42.14248657 ], [ 172.26156616, -42.14883423 ], [ 172.28207397, -42.14305496 ], [ 172.32420349, -42.14226151 ], [ 172.349807739999989, -42.15166092 ], [ 172.34693909, -42.15800858 ], [ 172.358871459999989, -42.17126083 ], [ 172.34918213, -42.17953491 ], [ 172.35714722, -42.18837357 ], [ 172.35031128, -42.19029999 ], [ 172.35826111, -42.19913864 ], [ 172.35142517, -42.20106888 ], [ 172.3633728, -42.21432495 ], [ 172.356536870000014, -42.21625519 ], [ 172.357666020000011, -42.22702408 ], [ 172.34399414, -42.23089218 ], [ 172.371856689999987, -42.26182556 ], [ 172.36216736, -42.2701149 ], [ 172.37013245, -42.27895355 ], [ 172.38378906, -42.27507782 ], [ 172.39175415, -42.28391266 ], [ 172.40257263, -42.28639221 ], [ 172.41053772, -42.29522705 ], [ 172.42817688, -42.29576874 ], [ 172.44296265, -42.3026619 ], [ 172.45661926, -42.29878616 ], [ 172.44866943, -42.28995514 ], [ 172.46232605, -42.28608322 ], [ 172.46118164, -42.27531433 ], [ 172.474838260000013, -42.27144623 ], [ 172.4788208, -42.27585983 ], [ 172.488494870000011, -42.26757431 ], [ 172.496444700000012, -42.27640152 ], [ 172.4839325, -42.29103851 ], [ 172.48791504, -42.29545212 ], [ 172.474258420000012, -42.29932404 ], [ 172.47142029, -42.30567932 ], [ 172.47937012, -42.31450653 ], [ 172.458892819999988, -42.32032394 ], [ 172.46287537, -42.32474136 ], [ 172.45718384, -42.33745193 ], [ 172.4594574, -42.35900116 ], [ 172.456604, -42.36536026 ], [ 172.43611145, -42.37119293 ], [ 172.44009399, -42.37561035 ], [ 172.42643738000001, -42.37949753 ], [ 172.41163635, -42.37260818 ], [ 172.35696411, -42.38816452 ], [ 172.36094666, -42.39258575 ], [ 172.34729004, -42.39648056 ], [ 172.35127258, -42.40090179 ], [ 172.33760071, -42.40479279 ], [ 172.341583250000014, -42.40921402 ], [ 172.314239500000014, -42.41700745 ], [ 172.30567932, -42.43612289 ], [ 172.29598999000001, -42.44444656 ], [ 172.275466920000014, -42.45029831 ], [ 172.27148438, -42.44587326 ], [ 172.24411011, -42.45367813 ], [ 172.248107909999987, -42.45810699 ], [ 172.23954773, -42.47724533 ], [ 172.21902466, -42.48310852 ], [ 172.223007200000012, -42.48753357 ], [ 172.20932007, -42.49144363 ], [ 172.18992615, -42.50812149 ], [ 172.19790649, -42.51697922 ], [ 172.1882019, -42.52531815 ], [ 172.18934631, -42.53613281 ], [ 172.17564392, -42.54004669 ], [ 172.172790529999986, -42.5464325 ], [ 172.13169861, -42.55817795 ], [ 172.12026978, -42.5837326 ], [ 172.11054993, -42.59207916 ], [ 172.11854553, -42.6009407 ], [ 172.104843140000014, -42.6048584 ], [ 172.11283875, -42.61371994 ], [ 172.057983400000012, -42.62939453 ], [ 172.0539856, -42.62496185 ], [ 172.04428101, -42.63331604 ], [ 172.02941895, -42.62641144 ], [ 172.00198364, -42.63425064 ], [ 171.98426819, -42.63373947 ], [ 171.9894104, -42.64899826 ], [ 171.96481323, -42.65044785 ], [ 171.96882629000001, -42.65488052 ], [ 171.934509279999986, -42.6646843 ], [ 171.93850708, -42.66911697 ], [ 171.928771970000014, -42.67747498 ], [ 171.91442871000001, -42.70944595 ], [ 171.89382935, -42.71533203 ], [ 171.89608765, -42.73698807 ], [ 171.89035034, -42.74977875 ], [ 171.88633728, -42.74534607 ], [ 171.865722659999989, -42.75123596 ], [ 171.86972046, -42.75566864 ], [ 171.855972290000011, -42.75959778 ], [ 171.85710144, -42.77042389 ], [ 171.80207825, -42.78614044 ], [ 171.79808044, -42.78171158 ], [ 171.77055359, -42.78956985 ], [ 171.76480103, -42.80236816 ], [ 171.772811890000014, -42.81122971 ], [ 171.76304626000001, -42.81959534 ], [ 171.773941040000011, -42.82205963 ], [ 171.76817322, -42.83485413 ], [ 171.77218628, -42.8392868 ], [ 171.74465942, -42.8471489 ], [ 171.74865723, -42.85158157 ], [ 171.738891599999988, -42.8599472 ], [ 171.749786379999989, -42.8624115 ], [ 171.75779724, -42.87127304 ], [ 171.74403381, -42.87520599 ], [ 171.74803162, -42.87963867 ], [ 171.73426819, -42.88357162 ], [ 171.73828125, -42.8880043 ], [ 171.71762085, -42.89390182 ], [ 171.72163391, -42.8983345 ], [ 171.700973510000011, -42.90423584 ], [ 171.70384216, -42.89783859 ], [ 171.69294739, -42.8953743 ], [ 171.68493652, -42.88651657 ], [ 171.674041749999986, -42.88405228 ], [ 171.67115784, -42.89044952 ], [ 171.62294006, -42.90423203 ], [ 171.6149292, -42.89537048 ], [ 171.60113525, -42.89930725 ], [ 171.59713745, -42.89487839 ], [ 171.55577087, -42.90668106 ], [ 171.55175781, -42.9022522 ], [ 171.524185179999989, -42.91011429 ], [ 171.512146, -42.8968277 ], [ 171.494338989999989, -42.89633179 ], [ 171.48857117, -42.90911484 ], [ 171.47476196, -42.91304016 ], [ 171.45983887, -42.906147 ], [ 171.45695496, -42.91254044 ], [ 171.443145750000014, -42.91646194 ], [ 171.44026184, -42.92285156 ], [ 171.448287959999988, -42.93170547 ], [ 171.42758179, -42.93758392 ], [ 171.43159485000001, -42.94201279 ], [ 171.41778564, -42.94593048 ], [ 171.42179871, -42.95035553 ], [ 171.40109253, -42.95623016 ], [ 171.406860349999988, -42.94346237 ], [ 171.389038090000014, -42.94294739 ], [ 171.374099730000012, -42.93605042 ], [ 171.350494379999986, -42.94829559 ], [ 171.33554077, -42.94139099 ], [ 171.314819340000014, -42.94724274 ], [ 171.309021, -42.95999908 ], [ 171.31994629, -42.96247864 ], [ 171.28538513, -42.97222137 ], [ 171.289398190000014, -42.97665024 ], [ 171.26864624000001, -42.98249435 ], [ 171.25883484, -42.99081802 ], [ 171.26286316, -42.99524689 ], [ 171.24209595, -43.00108719 ], [ 171.25013733, -43.00994492 ], [ 171.243225099999989, -43.01189041 ], [ 171.25126648, -43.02074814 ], [ 171.244354249999986, -43.02269745 ], [ 171.25239563, -43.03155518 ], [ 171.23855591, -43.03544617 ], [ 171.24258423, -43.03987503 ], [ 171.228744510000013, -43.04376984 ], [ 171.22584534, -43.05014801 ], [ 171.233886719999987, -43.05900192 ], [ 171.23100281, -43.0653801 ], [ 171.203323360000013, -43.07316589 ], [ 171.19526672, -43.06431198 ], [ 171.181427, -43.06820679 ], [ 171.185455319999988, -43.07263184 ], [ 171.15776062, -43.08042526 ], [ 171.147933959999989, -43.08874512 ], [ 171.13989258, -43.0798912 ], [ 171.11911011, -43.08573532 ], [ 171.11621094, -43.09210968 ], [ 171.12426758, -43.10096741 ], [ 171.10752869, -43.11123657 ], [ 171.09947205, -43.10238266 ], [ 171.08158875, -43.1018486 ], [ 171.089645389999987, -43.11070633 ], [ 171.068862919999987, -43.11655045 ], [ 171.07691956, -43.12540436 ], [ 171.07403564, -43.13178253 ], [ 171.04632568, -43.13957214 ], [ 171.043426509999989, -43.14595032 ], [ 171.05955505, -43.16365814 ], [ 171.0249176, -43.17340088 ], [ 171.02316284, -43.19057846 ], [ 171.0092926, -43.19447327 ], [ 170.9994812, -43.20279694 ], [ 171.000610349999988, -43.21360016 ], [ 170.98675537, -43.21749878 ], [ 170.99079895, -43.22192383 ], [ 170.96307373, -43.22971725 ], [ 170.94805908, -43.22281647 ], [ 170.95385742, -43.21006393 ], [ 170.93884277, -43.20315933 ], [ 170.9359436, -43.20953369 ], [ 170.91514587, -43.21538162 ], [ 170.91629028, -43.22618484 ], [ 170.90242004000001, -43.23008347 ], [ 170.906463620000011, -43.23450851 ], [ 170.89257813, -43.23840714 ], [ 170.8966217, -43.24283218 ], [ 170.87582397, -43.24868011 ], [ 170.870025629999986, -43.26143265 ], [ 170.875213620000011, -43.27666092 ], [ 170.8405304, -43.28640747 ], [ 170.83648682, -43.28198242 ], [ 170.8266449, -43.29030609 ], [ 170.827804570000012, -43.3011055 ], [ 170.806991579999988, -43.30694962 ], [ 170.798904420000014, -43.29809952 ], [ 170.79600525, -43.30447388 ], [ 170.76826477, -43.31225967 ], [ 170.758453370000012, -43.32057571 ], [ 170.73648071, -43.31561661 ], [ 170.71569824, -43.32144928 ], [ 170.704711909999986, -43.31896973 ], [ 170.720916749999986, -43.33666229 ], [ 170.7180481, -43.34302902 ], [ 170.69726563, -43.34885406 ], [ 170.6862793, -43.34637451 ], [ 170.67242432, -43.35025787 ], [ 170.67648315, -43.35467911 ], [ 170.66262817, -43.35855865 ], [ 170.66668701, -43.36297989 ], [ 170.6459198, -43.3687973 ], [ 170.65403748, -43.37764359 ], [ 170.66096497, -43.37570572 ], [ 170.65237427, -43.39478683 ], [ 170.63853455, -43.39866257 ], [ 170.64259338, -43.4030838 ], [ 170.62875366, -43.40695572 ], [ 170.6328125, -43.41137695 ], [ 170.61897278, -43.41524887 ], [ 170.61732483, -43.43238449 ], [ 170.60350037, -43.43625259 ], [ 170.59944153, -43.43183136 ], [ 170.585617070000012, -43.43569565 ], [ 170.58035278, -43.42049789 ], [ 170.55961609, -43.42629242 ], [ 170.548629760000011, -43.42380524 ], [ 170.53645325, -43.41053772 ], [ 170.51977539, -43.42075348 ], [ 170.52384949, -43.42517471 ], [ 170.475524900000011, -43.43867111 ], [ 170.462951659999987, -43.45328903 ], [ 170.46418762, -43.46405411 ], [ 170.450408939999988, -43.46790314 ], [ 170.432556150000011, -43.4673233 ], [ 170.4269104, -43.48001099 ], [ 170.413146970000014, -43.48384857 ], [ 170.40750122, -43.49653244 ], [ 170.35939026, -43.50996017 ], [ 170.35127258, -43.50110626 ], [ 170.34440613000001, -43.50302124 ], [ 170.332244870000011, -43.48973846 ], [ 170.31851196, -43.49356461 ], [ 170.3157196, -43.49990463 ], [ 170.21992493, -43.52661514 ], [ 170.221191409999989, -43.53739929 ], [ 170.207519530000013, -43.5412178 ], [ 170.208770750000014, -43.55200577 ], [ 170.192306519999988, -43.56217957 ], [ 170.178634640000013, -43.56599808 ], [ 170.174591060000012, -43.56155777 ], [ 170.160903929999989, -43.56537628 ], [ 170.162170409999987, -43.57617569 ], [ 170.14848328, -43.57999802 ], [ 170.1497345, -43.59080505 ], [ 170.132019039999989, -43.59018326 ], [ 170.09783936, -43.5997467 ], [ 170.095047, -43.60610962 ], [ 170.107177729999989, -43.61946106 ], [ 170.09753418, -43.62773895 ], [ 170.10966492, -43.64109802 ], [ 170.10003662, -43.64938354 ], [ 170.1040802, -43.6538353 ], [ 170.09848022, -43.6665802 ], [ 170.07797241, -43.67233658 ], [ 170.08201599, -43.67679214 ], [ 170.04098511, -43.68831253 ], [ 170.03259277, -43.70745087 ], [ 170.040664670000012, -43.71637344 ], [ 170.03382874, -43.71829605 ], [ 170.041915890000013, -43.72721863 ], [ 170.02137756, -43.73297501 ], [ 170.02542114, -43.7374382 ], [ 170.01574707, -43.74572754 ], [ 170.01171875, -43.74126816 ], [ 169.98429871, -43.74891281 ], [ 169.99639893, -43.76228714 ], [ 169.99356079, -43.76865387 ], [ 169.979843140000014, -43.77246857 ], [ 169.98789978, -43.78138351 ], [ 169.98506165, -43.78774643 ], [ 169.9438324, -43.79915619 ], [ 169.94786072, -43.80361557 ], [ 169.906585690000014, -43.81499481 ], [ 169.91177368000001, -43.83026886 ], [ 169.90890503, -43.83662415 ], [ 169.89512634, -43.84040833 ], [ 169.88020325, -43.83337402 ], [ 169.86758423, -43.84796524 ], [ 169.85379028, -43.85173798 ], [ 169.852066040000011, -43.8689003 ], [ 169.81066895, -43.88019943 ], [ 169.81181335, -43.8910141 ], [ 169.78419495, -43.89852905 ], [ 169.778411870000014, -43.91122055 ], [ 169.77151489, -43.91309738 ], [ 169.7766571, -43.92838287 ], [ 169.75994873, -43.93848419 ], [ 169.757049560000013, -43.94482803 ], [ 169.73631287, -43.9504509 ], [ 169.73744202, -43.96126938 ], [ 169.7166748, -43.96688461 ], [ 169.708633420000012, -43.95793533 ], [ 169.69769287, -43.95532608 ], [ 169.67692566, -43.96092987 ], [ 169.672912599999989, -43.95645523 ], [ 169.64520264, -43.96391296 ], [ 169.63023376000001, -43.95682144 ], [ 169.60945129000001, -43.96240234 ], [ 169.60542297, -43.95792389 ], [ 169.59558105, -43.96611786 ], [ 169.60362244, -43.97507858 ], [ 169.59378052, -43.98327637 ], [ 169.609878540000011, -44.00120544 ], [ 169.594207759999989, -44.02209091 ], [ 169.59532166, -44.03292084 ], [ 169.58143616000001, -44.03663635 ], [ 169.57740784, -44.03215027 ], [ 169.53575134, -44.04327774 ], [ 169.53977966, -44.04776764 ], [ 169.52990723, -44.05596542 ], [ 169.51602173, -44.05967331 ], [ 169.51197815, -44.0551796 ], [ 169.49807739, -44.05888367 ], [ 169.494049069999988, -44.05438995 ], [ 169.47317505, -44.05994415 ], [ 169.47721863000001, -44.06444168 ], [ 169.46330261, -44.06814575 ], [ 169.46148682, -44.08535767 ], [ 169.4475708, -44.08906555 ], [ 169.44464111, -44.09542847 ], [ 169.416778560000012, -44.10284424 ], [ 169.420822140000013, -44.10735321 ], [ 169.3999176, -44.11291885 ], [ 169.40396118000001, -44.11743164 ], [ 169.390014650000012, -44.12114334 ], [ 169.38192749000001, -44.11211395 ], [ 169.37495422, -44.1139679 ], [ 169.366851809999986, -44.10493851 ], [ 169.348846439999988, -44.10412598 ], [ 169.35179138, -44.09775925 ], [ 169.339645389999987, -44.08420944 ], [ 169.34257507, -44.07784653 ], [ 169.326400760000013, -44.05978394 ], [ 169.29844666, -44.0671463 ], [ 169.306549069999988, -44.07618713 ], [ 169.29257202, -44.07986832 ], [ 169.28781128, -44.10349655 ], [ 169.2668457, -44.10903168 ], [ 169.26280212, -44.10450363 ], [ 169.24182129, -44.11003113 ], [ 169.21679688, -44.11102676 ], [ 169.187698360000013, -44.10747528 ], [ 169.18363953, -44.10293198 ], [ 169.16964722, -44.10660934 ], [ 169.16152954, -44.09752274 ], [ 169.16447449, -44.09114456 ], [ 169.15229797, -44.07750702 ], [ 169.149353029999986, -44.08388519 ], [ 169.08633423, -44.1003685 ], [ 169.08746338, -44.11131287 ], [ 169.076400760000013, -44.10858917 ], [ 169.041366579999988, -44.11774445 ], [ 169.037307739999989, -44.11317825 ], [ 169.02330017, -44.11684418 ], [ 169.02035522, -44.12324142 ], [ 169.02848816, -44.13237 ], [ 168.98646545, -44.14338303 ], [ 168.98352051, -44.14978409 ], [ 168.999786379999989, -44.16804123 ], [ 168.978759770000011, -44.1735611 ], [ 168.96882629000001, -44.18180847 ], [ 168.97694397, -44.19093323 ], [ 168.969940189999988, -44.19277954 ], [ 168.97805786, -44.20190048 ], [ 168.964050289999989, -44.20558929 ], [ 168.95298767, -44.20286942 ], [ 168.91796875, -44.21209335 ], [ 168.9150238, -44.21850586 ], [ 168.903945920000012, -44.21578598 ], [ 168.88293457, -44.22132492 ], [ 168.881103520000011, -44.23871613 ], [ 168.8600769, -44.24426651 ], [ 168.86524963, -44.25980759 ], [ 168.86340332, -44.27719498 ], [ 168.853439329999986, -44.28546143 ], [ 168.85159302, -44.30285263 ], [ 168.85565186, -44.30741501 ], [ 168.84567261, -44.31568146 ], [ 168.84677124000001, -44.32665634 ], [ 168.83976746, -44.32851028 ], [ 168.847869870000011, -44.33763123 ], [ 168.84196472, -44.35046005 ], [ 168.82794189, -44.35417175 ], [ 168.83198547, -44.35873032 ], [ 168.8109436, -44.36429977 ], [ 168.81500244, -44.36885834 ], [ 168.800979610000013, -44.37257385 ], [ 168.7950592, -44.38540649 ], [ 168.759979249999986, -44.3946991 ], [ 168.75, -44.40297318 ], [ 168.75512695, -44.41851044 ], [ 168.748107909999987, -44.42037201 ], [ 168.71086121, -44.40771103 ], [ 168.698715209999989, -44.39403152 ], [ 168.67063904, -44.401474 ], [ 168.67468262, -44.40603256 ], [ 168.664703370000012, -44.41431427 ], [ 168.64364624000001, -44.41989899 ], [ 168.63769531, -44.43274307 ], [ 168.602600099999989, -44.44205856 ], [ 168.59663391, -44.45490265 ], [ 168.57450867, -44.44951248 ], [ 168.51831055, -44.46443558 ], [ 168.512344359999986, -44.47728348 ], [ 168.491271970000014, -44.48288727 ], [ 168.481262210000011, -44.49117661 ], [ 168.46720886, -44.49491501 ], [ 168.46316528, -44.49036026 ], [ 168.42802429, -44.4997139 ], [ 168.42398071, -44.49516296 ], [ 168.39585876000001, -44.50265503 ], [ 168.39183044, -44.4981041 ], [ 168.3697052, -44.49276352 ], [ 168.34860229, -44.49839783 ], [ 168.34054565, -44.48931503 ], [ 168.349548340000013, -44.47005081 ], [ 168.359573360000013, -44.46174622 ], [ 168.35151672, -44.45266724 ], [ 168.36557007, -44.44890213 ], [ 168.361541749999986, -44.44435883 ], [ 168.371551509999989, -44.43605423 ], [ 168.367523190000014, -44.43151474 ], [ 168.37754822, -44.42321014 ], [ 168.369491579999988, -44.41413116 ], [ 168.36247253, -44.41601944 ], [ 168.354415890000013, -44.4069519 ], [ 168.36444092, -44.39863968 ], [ 168.392501829999986, -44.39108658 ], [ 168.39146423, -44.38012314 ], [ 168.4025116, -44.38277817 ], [ 168.41653442, -44.37900925 ], [ 168.4125061, -44.37446594 ], [ 168.422515870000012, -44.36615753 ], [ 168.41848755, -44.36161423 ], [ 168.4004364, -44.36084747 ], [ 168.37837219, -44.35556412 ], [ 168.38433838, -44.3427124 ], [ 168.36230469, -44.33747101 ], [ 168.3502655, -44.32392502 ], [ 168.36026001, -44.31559372 ], [ 168.35925293, -44.3046608 ], [ 168.351242070000012, -44.29564285 ], [ 168.35423279, -44.2892189 ], [ 168.32824707, -44.27954102 ], [ 168.31427002, -44.28337479 ], [ 168.29930115, -44.27630234 ], [ 168.28736877, -44.26283646 ], [ 168.276412959999988, -44.26027298 ], [ 168.26245117, -44.26412201 ], [ 168.25848389, -44.25964355 ], [ 168.24453735, -44.26349258 ], [ 168.24057007, -44.25902176 ], [ 168.219650269999988, -44.26479721 ], [ 168.21661377, -44.27118683 ], [ 168.153793330000013, -44.28849411 ], [ 168.14987183, -44.2840538 ], [ 168.135925289999989, -44.28790665 ], [ 168.12504578, -44.28541183 ], [ 168.11724854, -44.27658844 ], [ 168.106399540000012, -44.27413177 ], [ 168.09666443, -44.27666855 ], [ 168.077499390000014, -44.26666641 ], [ 168.06416321, -44.26694489 ], [ 168.05082703, -44.25944519 ], [ 168.06694031, -44.24777603 ], [ 168.081115720000014, -44.24416733 ], [ 168.10139465, -44.24416733 ], [ 168.13166809, -44.22527695 ], [ 168.14860535, -44.21222305 ], [ 168.15222168, -44.20277786 ], [ 168.169998170000014, -44.1930542 ], [ 168.18611145, -44.1883316 ], [ 168.21722412, -44.16916656 ], [ 168.22639465, -44.15833282 ], [ 168.24583435, -44.15694427 ], [ 168.264572140000013, -44.13863754 ], [ 168.264724730000012, -44.125 ], [ 168.27194214, -44.11360931 ], [ 168.28527832, -44.1016655 ], [ 168.31138611, -44.09166718 ], [ 168.32417297, -44.08472061 ], [ 168.326660159999989, -44.07694626 ], [ 168.32055664, -44.07138824 ], [ 168.3276825, -44.06121826 ], [ 168.326660159999989, -44.04972076 ], [ 168.35583496000001, -44.03055573 ], [ 168.366394039999989, -44.03111267 ], [ 168.36833191, -44.00860977 ], [ 168.389175419999987, -44.00239944 ], [ 168.41833496000001, -44.00333405 ], [ 168.44139099, -44.00860977 ], [ 168.47444153, -44.00361252 ], [ 168.47694397, -44.00583267 ], [ 168.518615720000014, -44.0 ], [ 168.52999878, -43.99027634 ], [ 168.547225950000012, -43.99305725 ], [ 168.56916809, -43.97222137 ], [ 168.58444214, -43.9683342 ], [ 168.59611511, -43.97166824 ], [ 168.58944702, -43.96416855 ], [ 168.605270389999987, -43.96500015 ], [ 168.61610413, -43.95750046 ], [ 168.62583923, -43.95722198 ], [ 168.61444092, -43.97305679 ], [ 168.62971497, -43.98888779 ], [ 168.6444397, -43.9944458 ], [ 168.6680603, -43.99611282 ], [ 168.66833496000001, -44.00361252 ], [ 168.68249512, -43.99611282 ], [ 168.71110535, -43.99333191 ], [ 168.78427124000001, -43.97777176 ], [ 168.795959470000014, -43.98900604 ], [ 168.7940979, -43.97468567 ], [ 168.827774049999988, -43.95972061 ], [ 168.84889221, -43.94527817 ], [ 168.88583374000001, -43.90805435 ], [ 168.887496950000013, -43.91055679 ], [ 168.903945920000012, -43.90280151 ], [ 168.91694641, -43.89972305 ], [ 168.91389465, -43.89500046 ], [ 168.8999939, -43.9038887 ], [ 168.888610840000013, -43.9058342 ], [ 168.93083191, -43.88694382 ], [ 168.957229610000013, -43.88138962 ], [ 168.978881840000014, -43.87277603 ], [ 169.021392819999988, -43.84638977 ], [ 169.02999878, -43.8358345 ], [ 169.0375061, -43.83444595 ], [ 169.09138489, -43.80389023 ], [ 169.12306213, -43.7788887 ], [ 169.16244507, -43.74389648 ], [ 169.19512939, -43.73051453 ], [ 169.20832825, -43.72000122 ], [ 169.21972656, -43.71722412 ], [ 169.25222778, -43.69889069 ], [ 169.261383059999986, -43.69889069 ], [ 169.267501829999986, -43.6930542 ], [ 169.273773190000014, -43.69575882 ], [ 169.29194641, -43.68861008 ], [ 169.30778503, -43.67805481 ], [ 169.34249878, -43.67139053 ], [ 169.35678101, -43.6634407 ], [ 169.36805725, -43.64389038 ], [ 169.39582825, -43.63388824 ], [ 169.40611267, -43.63409424 ], [ 169.42721558, -43.6230545 ], [ 169.4347229, -43.63388824 ], [ 169.4553833, -43.62359619 ], [ 169.48739624000001, -43.62126541 ], [ 169.49473572, -43.6269455 ], [ 169.51196289, -43.62246704 ], [ 169.53459167, -43.60815048 ], [ 169.546386719999987, -43.59833145 ], [ 169.55343628, -43.58570862 ], [ 169.559082030000013, -43.58658218 ], [ 169.56309509, -43.6000061 ], [ 169.57032776, -43.60261917 ], [ 169.58770752, -43.6012001 ], [ 169.60444641, -43.5941658 ], [ 169.62025452, -43.58320618 ], [ 169.64805603, -43.55333328 ], [ 169.672225950000012, -43.55583191 ], [ 169.6875, -43.54833221 ], [ 169.70443726, -43.53055573 ], [ 169.71722412, -43.51416779 ], [ 169.72639465, -43.49499893 ], [ 169.74638367, -43.47972107 ], [ 169.774200439999987, -43.44545364 ], [ 169.782974239999987, -43.44062424 ], [ 169.793289179999988, -43.42083359 ], [ 169.80589294, -43.4206543 ], [ 169.82305908, -43.41055679 ], [ 169.84222412, -43.39500046 ], [ 169.87373352, -43.3962059 ], [ 169.891662599999989, -43.39083481 ], [ 169.91555786, -43.39027786 ], [ 169.93861389, -43.38166809 ], [ 169.980270389999987, -43.35833359 ], [ 170.00778198, -43.33283615 ], [ 170.01306152, -43.33156204 ], [ 170.03286743000001, -43.3062439 ], [ 170.043319700000012, -43.2976265 ], [ 170.04956055, -43.28371811 ], [ 170.06721497, -43.28198242 ], [ 170.082519530000013, -43.27426529 ], [ 170.11445618, -43.25098038 ], [ 170.130615229999989, -43.23275757 ], [ 170.15065002, -43.2248764 ], [ 170.16952515, -43.21486282 ], [ 170.18649292, -43.19966507 ], [ 170.21150208, -43.1709404 ], [ 170.227615359999987, -43.14463425 ], [ 170.237777709999989, -43.14222336 ], [ 170.2444458, -43.13138962 ], [ 170.261383059999986, -43.11351776 ], [ 170.2598114, -43.1078949 ], [ 170.28599548, -43.10840988 ], [ 170.30648804, -43.10538101 ], [ 170.34664917, -43.09473038 ], [ 170.34999084, -43.09679413 ], [ 170.32414246, -43.1029129 ], [ 170.331390379999988, -43.11020279 ], [ 170.3467865, -43.10495377 ], [ 170.38713074, -43.10905075 ], [ 170.385253909999989, -43.08855438 ], [ 170.36024475, -43.0888443 ], [ 170.38806152, -43.06555557 ], [ 170.4058075, -43.04392624 ], [ 170.41929626000001, -43.03673172 ], [ 170.457382200000012, -43.02295303 ], [ 170.483612060000013, -43.02028275 ], [ 170.49160767, -43.01508713 ], [ 170.51646423, -43.0186615 ], [ 170.54685974, -43.00930023 ], [ 170.56838989, -43.0055809 ], [ 170.63027954, -42.97694397 ], [ 170.65028381, -42.96138763 ], [ 170.65916443, -42.96277618 ], [ 170.668884279999986, -42.95249939 ], [ 170.68833923, -42.94250107 ], [ 170.72389221, -42.92833328 ], [ 170.75500488, -42.90499878 ], [ 170.78222656, -42.89250183 ], [ 170.81639099, -42.86805725 ], [ 170.84165955, -42.84305573 ], [ 170.856109620000012, -42.83472061 ], [ 170.87832642, -42.81111145 ], [ 170.897506709999988, -42.77944565 ], [ 170.9375, -42.73611069 ], [ 170.94528198, -42.72499847 ], [ 170.97332764, -42.73083496 ], [ 170.99121094, -42.73952484 ], [ 171.004364009999989, -42.75379944 ], [ 170.99328613, -42.73748398 ], [ 170.98083496000001, -42.72555542 ], [ 170.96665955, -42.72444534 ], [ 170.96110535, -42.71666718 ], [ 170.9916687, -42.6922226 ], [ 170.997833250000014, -42.68301773 ], [ 171.02749634, -42.65899658 ], [ 171.04458618000001, -42.65387726 ], [ 171.06991577, -42.6303978 ], [ 171.086135860000013, -42.61273956 ], [ 171.099807739999989, -42.59268188 ], [ 171.108886719999987, -42.58333206 ], [ 171.124069209999988, -42.56070328 ], [ 171.137496950000013, -42.54972076 ], [ 171.15802002, -42.52155685 ], [ 171.181442260000011, -42.47700119 ], [ 171.18998718, -42.45320129 ], [ 171.19000244, -42.43916702 ], [ 171.19673157, -42.44099426 ], [ 171.20800781, -42.41976547 ], [ 171.214385990000011, -42.39811707 ], [ 171.21617126000001, -42.38152695 ], [ 171.23377991000001, -42.37909317 ], [ 171.24249268, -42.37138748 ], [ 171.25125122, -42.35004425 ], [ 171.254379269999987, -42.34957123 ], [ 171.26603699, -42.32386017 ], [ 171.2819519, -42.3097229 ], [ 171.29272461, -42.2779808 ], [ 171.30271912, -42.27172852 ], [ 171.30610657, -42.26277542 ], [ 171.31195068, -42.22750092 ], [ 171.313110349999988, -42.20250702 ], [ 171.3182373, -42.1748085 ], [ 171.319381709999988, -42.15641403 ], [ 171.327621459999989, -42.13454056 ], [ 171.328765870000012, -42.11795425 ], [ 171.33244324, -42.11188889 ], [ 171.33990479, -42.08286285 ], [ 171.35015869, -42.08080673 ], [ 171.359573360000013, -42.07126999 ], [ 171.36975098, -42.03416443 ], [ 171.38586426, -42.02852249 ], [ 171.393341060000012, -42.01745224 ], [ 171.39666748, -41.99555588 ], [ 171.40499878, -41.98611069 ], [ 171.40083313, -41.98249817 ], [ 171.40734863, -41.96690369 ], [ 171.40916443, -41.95055389 ], [ 171.41416931, -41.93916702 ], [ 171.4125061, -41.9327774 ], [ 171.417770389999987, -41.91611099 ], [ 171.4375, -41.89500046 ], [ 171.443603520000011, -41.89611053 ], [ 171.456115720000014, -41.88583374 ], [ 171.46028137, -41.85722351 ], [ 171.45944214, -41.81916809 ], [ 171.46388245, -41.82305527 ], [ 171.461395259999989, -41.83472061 ], [ 171.46417236, -41.84194565 ], [ 171.46583557, -41.82694626 ], [ 171.47138977, -41.81999969 ], [ 171.465271, -41.81833267 ], [ 171.45832825, -41.80611038 ], [ 171.4569397, -41.77527618 ], [ 171.46055603, -41.77027893 ], [ 171.455001829999986, -41.76361084 ], [ 171.46333313, -41.75527954 ], [ 171.46055603, -41.75111008 ], [ 171.46833801, -41.7444458 ], [ 171.47305298, -41.74888992 ], [ 171.486389159999987, -41.74499893 ], [ 171.50305176, -41.7452774 ], [ 171.52749634, -41.75249863 ], [ 171.551116940000014, -41.74888992 ], [ 171.57055664, -41.74000168 ], [ 171.58972168, -41.72694397 ], [ 171.604995730000013, -41.73416519 ], [ 171.62944031, -41.73860931 ], [ 171.65472412, -41.73972321 ], [ 171.62167358, -41.74694443 ], [ 171.65194702, -41.74333191 ], [ 171.675003049999987, -41.73888779 ], [ 171.676116940000014, -41.73611069 ], [ 171.71333313, -41.72027588 ], [ 171.740005489999987, -41.69861221 ], [ 171.78555298, -41.66944504 ], [ 171.8097229, -41.65888977 ], [ 171.82333374000001, -41.65083313 ], [ 171.85166931, -41.63000107 ], [ 171.88471985000001, -41.59638977 ], [ 171.897506709999988, -41.57749939 ], [ 171.91221619, -41.56277847 ], [ 171.94639587, -41.50444412 ], [ 171.957778929999989, -41.49305725 ], [ 171.98666382, -41.44638824 ], [ 172.011108400000012, -41.42972183 ], [ 172.02528381, -41.41373444 ], [ 172.03111267, -41.41277695 ], [ 172.04164124, -41.39833832 ], [ 172.05444336, -41.39027786 ], [ 172.05860901, -41.39194489 ], [ 172.06916809, -41.37472153 ], [ 172.08416748, -41.32527924 ], [ 172.09222412, -41.27416611 ], [ 172.097152709999989, -41.27803421 ], [ 172.09460449, -41.28782654 ], [ 172.10144043, -41.28325653 ], [ 172.1068573, -41.2705574 ], [ 172.10287476, -41.25952148 ], [ 172.09364319, -41.26444626 ], [ 172.097457889999987, -41.25643539 ], [ 172.10708618000001, -41.25596237 ], [ 172.09602356, -41.24634933 ], [ 172.10028076, -41.21444321 ], [ 172.1078186, -41.20490265 ], [ 172.102066040000011, -41.20373154 ], [ 172.10348511, -41.15718842 ], [ 172.099960329999988, -41.09702682 ], [ 172.10452271, -41.09416962 ], [ 172.10166931, -41.07110977 ], [ 172.105270389999987, -41.06555557 ], [ 172.1055603, -41.04055405 ], [ 172.110839840000011, -41.0363884 ], [ 172.107772829999988, -41.01861191 ], [ 172.110000609999986, -41.0027771 ], [ 172.10221863000001, -40.98527908 ], [ 172.10417175, -40.97527695 ], [ 172.1000061, -40.96138763 ], [ 172.09518433, -40.91485596 ], [ 172.10139465, -40.90416718 ], [ 172.09805298, -40.8983345 ], [ 172.111114500000014, -40.8805542 ], [ 172.12861633, -40.87388992 ], [ 172.13471985000001, -40.85972214 ], [ 172.13082886, -40.84916687 ], [ 172.140838620000011, -40.84749985 ], [ 172.15583801, -40.83250046 ], [ 172.15750122, -40.82611084 ], [ 172.17443848, -40.81416702 ], [ 172.17721558, -40.80916595 ], [ 172.19833374000001, -40.79360962 ], [ 172.207229610000013, -40.79055405 ], [ 172.21711731, -40.77483368 ], [ 172.241683959999989, -40.80555725 ], [ 172.25198364, -40.80802155 ], [ 172.25198364, -40.80802155 ] ] ] ] } } -] -} diff --git a/examples/data/origdata/rivers.geojson b/examples/data/origdata/rivers.geojson deleted file mode 100644 index 3ec3df4..0000000 --- a/examples/data/origdata/rivers.geojson +++ /dev/null @@ -1,116 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "rivers_discharge", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } -] -} diff --git a/examples/data/origdata/rivers_yukon.geojson b/examples/data/origdata/rivers_yukon.geojson deleted file mode 100644 index 50e0d04..0000000 --- a/examples/data/origdata/rivers_yukon.geojson +++ /dev/null @@ -1,17 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "rivers_yukon", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "scalerank": 6, "name": "Tanana", "rivernum": 238, "length": 886499.813 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -142.021850585937329, 62.026556707806627 ], [ -142.038256835937119, 62.045233465619049 ], [ -142.056640625000313, 62.061346746869091 ], [ -142.078735351562557, 62.07147858280662 ], [ -142.087329101562148, 62.078558660931598 ], [ -142.090820312500171, 62.091742254681655 ], [ -142.087768554687642, 62.184198309369123 ], [ -142.084838867187756, 62.201117254681591 ], [ -142.076464843749818, 62.215594793744145 ], [ -142.060302734375085, 62.227655340619037 ], [ -141.951049804687159, 62.26403229374408 ], [ -141.863525390625, 62.279242254681492 ], [ -141.834472656249943, 62.289740301556641 ], [ -141.803027343750017, 62.311346746869198 ], [ -141.772583007812415, 62.319891668744113 ], [ -141.764697265625017, 62.325995184369269 ], [ -141.762695312499744, 62.334344793744066 ], [ -141.765795898437432, 62.355658270306492 ], [ -141.763305664062273, 62.366888739056634 ], [ -141.756591796875171, 62.375433660931549 ], [ -141.748339843750159, 62.380682684369127 ], [ -141.73930664062496, 62.384955145306641 ], [ -141.730102539062671, 62.390692449994155 ], [ -141.655639648437301, 62.458685614056442 ], [ -141.624389648437443, 62.477606512494035 ], [ -141.460986328125273, 62.534491278119141 ], [ -141.440600585937403, 62.544134832806733 ], [ -141.424853515625074, 62.558124090618946 ], [ -141.411547851562318, 62.595892645306449 ], [ -141.379882812499943, 62.623602606244305 ], [ -141.371386718750244, 62.643573309369117 ], [ -141.381762695312716, 62.686297918744145 ], [ -141.412646484375188, 62.709173895306606 ], [ -141.450439453124886, 62.726825262494039 ], [ -141.481249999999704, 62.753363348431513 ], [ -141.476562499999943, 62.77472565311907 ], [ -141.489868164062614, 62.799676824994052 ], [ -141.511645507812489, 62.820428778119222 ], [ -141.532153320312773, 62.82916901249407 ], [ -141.649658203125028, 62.846063543744101 ], [ -141.673022460937261, 62.855780340619084 ], [ -141.668505859375131, 62.867987371869134 ], [ -141.600756835937545, 62.907660223431677 ], [ -141.604785156250216, 62.921502996869215 ], [ -141.632080078125085, 62.934930731244151 ], [ -141.742553710937415, 62.965033270306691 ], [ -141.770385742187557, 62.977899481244059 ], [ -141.790454101562602, 63.010077215619042 ], [ -141.809863281249875, 63.025213934369205 ], [ -141.851196289062443, 63.047552801556613 ], [ -141.951586914062545, 63.063983465618968 ], [ -141.977832031250045, 63.078631903119216 ], [ -141.997436523437671, 63.093207098431634 ], [ -142.070312499999943, 63.12335846561917 ], [ -142.112915039062528, 63.152704168744137 ], [ -142.136767578125045, 63.165716864056556 ], [ -142.274707031250131, 63.187567449994084 ], [ -142.309863281249903, 63.184759832806677 ], [ -142.321826171874903, 63.179632879681662 ], [ -142.331591796874932, 63.172967840619144 ], [ -142.34233398437496, 63.167303778119084 ], [ -142.357666015624915, 63.164911199994137 ], [ -142.374194335937517, 63.168036199994106 ], [ -142.404052734375, 63.181708074994098 ], [ -142.431030273437244, 63.187445379681726 ], [ -142.441210937500045, 63.193915106244098 ], [ -142.457275390624915, 63.209002996869067 ], [ -142.469897460937318, 63.216571356244188 ], [ -142.577441406249989, 63.23798248905662 ], [ -142.605468749999858, 63.247919012494201 ], [ -142.628588867187375, 63.263934637494089 ], [ -142.648486328125074, 63.282416082806591 ], [ -142.656250000000256, 63.292914129681563 ], [ -142.659301757812671, 63.304877020306556 ], [ -142.663940429687528, 63.31293366093162 ], [ -142.686206054687347, 63.323065496869148 ], [ -142.694091796875085, 63.328802801556634 ], [ -142.697265624999943, 63.337909246869124 ], [ -142.697387695312642, 63.355414129681535 ], [ -142.700927734374972, 63.362909246869151 ], [ -142.712329101562375, 63.370917059369198 ], [ -142.726562499999943, 63.374701239056684 ], [ -142.740771484375188, 63.373480535931513 ], [ -142.766406249999875, 63.357733465619177 ], [ -142.783984374999875, 63.355243231244131 ], [ -142.838671875000102, 63.358343817181499 ], [ -142.85009765625, 63.362616278119077 ], [ -142.872192382812472, 63.375921942181684 ], [ -142.894213867187489, 63.383856512494106 ], [ -142.960375976562574, 63.397650457806627 ], [ -142.960375976562574, 63.403876043744106 ], [ -142.943481445312472, 63.418646551556627 ], [ -142.964843749999886, 63.429950262494167 ], [ -143.001220703124943, 63.436835028119077 ], [ -143.02922363281229, 63.438666082806712 ], [ -143.05986328124996, 63.433124090619152 ], [ -143.117187499999858, 63.415228582806691 ], [ -143.14934082031246, 63.411322332806613 ], [ -143.291308593750131, 63.414252020306577 ], [ -143.310424804687216, 63.411322332806613 ], [ -143.367114257812489, 63.385199285931684 ], [ -143.396118164062329, 63.38007233280667 ], [ -143.451538085937528, 63.406073309369127 ], [ -143.564257812500102, 63.411322332806556 ], [ -143.599169921874932, 63.417669989056684 ], [ -143.632568359375028, 63.418158270306598 ], [ -143.682177734375102, 63.405829168744098 ], [ -143.759521484374972, 63.397650457806627 ], [ -143.772631835937574, 63.401483465619073 ], [ -143.780078125000074, 63.41051666874408 ], [ -143.790209960937517, 63.431219793744091 ], [ -143.829028320312545, 63.46039459843157 ], [ -143.838745117187699, 63.475775457806527 ], [ -143.827758789062415, 63.496649481244205 ], [ -143.815795898437557, 63.506170965619148 ], [ -143.788574218750085, 63.523016668744106 ], [ -143.775927734375017, 63.534247137494191 ], [ -143.791503906250114, 63.567254949994059 ], [ -143.797656250000188, 63.575213934369089 ], [ -143.809082031249915, 63.58107330936916 ], [ -143.836425781250085, 63.58644440311906 ], [ -143.848559570312375, 63.59254791874416 ], [ -143.85625, 63.602167059369137 ], [ -143.857299804687642, 63.610126043744025 ], [ -143.857226562500045, 63.617865301556577 ], [ -143.861938476562557, 63.626727606244067 ], [ -143.871826171875171, 63.634711004681563 ], [ -143.906909179687375, 63.650897528119145 ], [ -143.935058593750171, 63.670770574994094 ], [ -143.995166015624818, 63.696893621869116 ], [ -144.040820312500102, 63.702337957806584 ], [ -144.140307617187545, 63.726019598431606 ], [ -144.181689453125216, 63.729925848431535 ], [ -144.541381835937642, 63.725116278119089 ], [ -144.599121093750028, 63.739569403119098 ], [ -144.74418945312496, 63.804754949994212 ], [ -144.758471679687432, 63.813495184369138 ], [ -144.773974609375017, 63.825384832806627 ], [ -144.777954101562528, 63.838568426556591 ], [ -144.762255859375131, 63.873480535931556 ], [ -144.763476562500045, 63.891131903119017 ], [ -144.780566406250045, 63.901800848431591 ], [ -144.807373046874801, 63.902899481244205 ], [ -144.859057617187375, 63.897333074994208 ], [ -144.914306640625057, 63.945746160931506 ], [ -144.899536132812642, 63.961615301556549 ], [ -144.848803710937659, 64.004095770306662 ], [ -144.856079101562329, 64.016864324994117 ], [ -144.962084960937489, 64.041937567181705 ], [ -145.010498046874943, 64.062445379681648 ], [ -145.062426757812716, 64.073065496869035 ], [ -145.090502929687545, 64.084588934369108 ], [ -145.110400390624903, 64.084344793744222 ], [ -145.1298828125, 64.079901434369134 ], [ -145.143310546874858, 64.072333074994205 ], [ -145.158691406249886, 64.066278387494094 ], [ -145.361987304687318, 64.082464910931705 ], [ -145.429809570312585, 64.099798895306577 ], [ -145.607055664062358, 64.171087957806733 ], [ -145.671508789062329, 64.186053778119174 ], [ -145.736694335937528, 64.191522528119108 ], [ -145.768481445312233, 64.186224676556691 ], [ -145.825976562500131, 64.163202215619094 ], [ -145.856811523437727, 64.158026434369091 ], [ -145.888427734374716, 64.161688543744148 ], [ -146.0601806640625, 64.215692449994179 ], [ -146.111132812499903, 64.24640534061912 ], [ -146.144287109374943, 64.248163153119208 ], [ -146.209643554687773, 64.239935614056549 ], [ -146.241748046874733, 64.245135809369216 ], [ -146.302490234374829, 64.268670965619194 ], [ -146.449023437500102, 64.284686590619145 ], [ -146.490234374999943, 64.281512762494032 ], [ -146.585375976562318, 64.257342840619131 ], [ -146.655395507812415, 64.253485418744148 ], [ -146.672241210937329, 64.256219793744222 ], [ -146.685424804687557, 64.264105535931449 ], [ -146.714648437499619, 64.294940496869174 ], [ -146.723632812499858, 64.301385809369251 ], [ -146.755981445312415, 64.310809637494103 ], [ -146.827197265625017, 64.315790106244123 ], [ -146.860473632812671, 64.325873114056577 ], [ -147.020874023437358, 64.425653387494165 ], [ -147.031494140625199, 64.442328192181492 ], [ -147.025317382812347, 64.458514715619103 ], [ -147.000292968749989, 64.487005926556691 ], [ -146.997314453124858, 64.507440496869123 ], [ -147.021728515624943, 64.546087957806648 ], [ -147.068481445312329, 64.571478582806634 ], [ -147.16862792968783, 64.61046784061908 ], [ -147.188281249999733, 64.624701239056691 ], [ -147.233813476562574, 64.675360418744049 ], [ -147.255249023437187, 64.689227606244231 ], [ -147.522338867187528, 64.775091864056634 ], [ -147.846435546874858, 64.805731512494248 ], [ -147.935791015624716, 64.802313543744148 ], [ -147.950561523437472, 64.799090887494046 ], [ -147.990405273437375, 64.781195379681648 ], [ -148.01806640625, 64.757342840619131 ], [ -148.028564453125199, 64.753851629681577 ], [ -148.096484374999818, 64.745624090619259 ], [ -148.162963867187301, 64.725897528119177 ], [ -148.237915039062671, 64.690497137494077 ], [ -148.329956054687585, 64.671942449994148 ], [ -148.422729492187443, 64.671942449994091 ], [ -148.621459960937699, 64.643915106244094 ], [ -148.645922851562574, 64.631781317181648 ], [ -148.655810546874875, 64.606756903119177 ], [ -148.700073242187699, 64.585223699994046 ], [ -149.104541015624989, 64.575751043744063 ], [ -149.115478515625, 64.577997137494165 ], [ -149.130175781249932, 64.583856512494151 ], [ -149.143066406250085, 64.591669012494179 ], [ -149.148608398437318, 64.59992096561912 ], [ -149.144653320312585, 64.610663153118992 ], [ -149.135302734375045, 64.614935614056549 ], [ -149.124194335937261, 64.617792059369165 ], [ -149.115112304687727, 64.624139715619094 ], [ -149.108935546875159, 64.636297918744191 ], [ -149.111328125000114, 64.641913153119091 ], [ -149.117187499999829, 64.647162176556719 ], [ -149.121337890625057, 64.658270574994077 ], [ -149.120043945312659, 64.670721746869063 ], [ -149.116748046875017, 64.680731512494191 ], [ -149.116748046875017, 64.690741278119049 ], [ -149.125048828125102, 64.702948309369091 ], [ -149.131762695312432, 64.720233465619174 ], [ -149.1170654296875, 64.757391668744091 ], [ -149.121337890624744, 64.781195379681648 ], [ -149.115112304687386, 64.788641668744276 ], [ -149.130126953124801, 64.792303778119177 ], [ -149.146289062499875, 64.794256903119049 ], [ -149.160522460937557, 64.798529364056535 ], [ -149.169726562500045, 64.809149481244191 ], [ -149.153979492187403, 64.811297918744188 ], [ -149.146289062500216, 64.817010809369037 ], [ -149.135620117187557, 64.835809637494009 ], [ -149.117675781250114, 64.860296942181606 ], [ -149.115112304687386, 64.867132879681648 ], [ -149.128173828125, 64.878045965619108 ], [ -149.190234374999875, 64.905707098431563 ], [ -149.210693359374943, 64.912176824994134 ], [ -149.248583984374733, 64.914007879681662 ], [ -149.399414062500227, 64.901678778119077 ], [ -149.491210937499858, 64.877386785931591 ], [ -149.509643554687585, 64.875995184369046 ], [ -149.522705078124858, 64.879169012494117 ], [ -149.575488281250045, 64.904413153119009 ], [ -149.595019531249989, 64.908148504681677 ], [ -149.611694335937415, 64.901629949994174 ], [ -149.645507812499858, 64.864691473431535 ], [ -149.666137695312642, 64.849432684369077 ], [ -149.690478515625188, 64.843207098431563 ], [ -149.703857421875, 64.84572174686916 ], [ -149.734741210937386, 64.855829168744137 ], [ -149.752563476562187, 64.857538153119222 ], [ -149.785083007812204, 64.854437567181677 ], [ -149.800585937499875, 64.849188543744191 ], [ -149.816406250000057, 64.823358465619108 ], [ -149.838012695312756, 64.808172918744077 ], [ -149.882250976562545, 64.788641668744233 ], [ -149.920214843749875, 64.783148504681762 ], [ -150.038256835937347, 64.796454168744162 ], [ -150.073657226562602, 64.806268621869066 ], [ -150.098999023437443, 64.819281317181634 ], [ -150.139526367187472, 64.820086981244145 ], [ -150.156005859375057, 64.822772528119046 ], [ -150.166674804687403, 64.829413153119049 ], [ -150.181323242187517, 64.844183660931563 ], [ -150.190722656250159, 64.850116278118918 ], [ -150.208374023437841, 64.856146551556535 ], [ -150.295776367187273, 64.86769440311916 ], [ -150.321166992187557, 64.878851629681677 ], [ -150.342895507812585, 64.896112371869108 ], [ -150.375244140624858, 64.936102606244134 ], [ -150.392382812500131, 64.95160553593162 ], [ -150.414672851562642, 64.962591864056535 ], [ -150.565478515624818, 64.979315496869162 ], [ -150.77324218749979, 64.972967840619233 ], [ -150.789599609375045, 64.975116278119131 ], [ -150.824023437500074, 64.984491278119194 ], [ -150.841845703124847, 64.986639715619162 ], [ -150.998779296874744, 64.971014715619205 ], [ -151.188720703125284, 64.907538153119035 ], [ -151.239746093749886, 64.904730535931662 ], [ -151.25444335937479, 64.898627020306677 ], [ -151.282153320312517, 64.881048895306719 ], [ -151.297485351562443, 64.877386785931563 ], [ -151.3642578125, 64.875921942181535 ], [ -151.393603515624704, 64.881659246869191 ], [ -151.424072265624659, 64.898504949994177 ], [ -151.446948242187375, 64.918231512494216 ], [ -151.458178710937517, 64.925165106244208 ], [ -151.487597656249761, 64.931952215619148 ], [ -151.500976562499858, 64.937567449994162 ], [ -151.506591796875227, 64.949408270306535 ], [ -151.505249023437415, 64.954291082806634 ], [ -151.503833007812347, 64.964960028119151 ], [ -151.506274414062744, 64.97553131718152 ], [ -151.516528320312347, 64.980414129681691 ], [ -151.550659179687585, 64.984198309369091 ], [ -151.567431640624932, 64.990423895306662 ], [ -151.574877929687148, 65.000921942181691 ], [ -151.561157226562472, 65.016424871869063 ], [ -151.53740234374979, 65.032171942181748 ], [ -151.531542968749761, 65.044378973431719 ], [ -151.571459960937204, 65.04933502811916 ], [ -151.596801757812386, 65.039740301556733 ], [ -151.613891601562557, 65.019842840619162 ], [ -151.632983398437347, 65.002508856244148 ], [ -151.664306640624886, 65.000921942181634 ], [ -151.690478515625216, 65.014227606244091 ], [ -151.690966796874847, 65.030780340619174 ], [ -151.679687499999915, 65.049432684369251 ], [ -151.670458984375017, 65.069159246869177 ], [ -151.678588867187671, 65.098944403119063 ], [ -151.70830078125033, 65.113544012493989 ], [ -151.746704101562159, 65.115423895306634 ], [ -151.780932617187318, 65.107001043744191 ], [ -151.808105468749972, 65.104681707806662 ], [ -151.835083007812784, 65.116327215619066 ], [ -151.883422851562642, 65.148309637494066 ], [ -151.920092773437233, 65.159784246869179 ], [ -152.047851562500227, 65.16535065311912 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 6, "name": "Koyukuk", "rivernum": 240, "length": 861921.058 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -150.821411132812841, 68.042914129681506 ], [ -150.8187255859375, 68.030633856244066 ], [ -150.822021484375142, 68.026678778119134 ], [ -150.828491210937443, 68.024115301556705 ], [ -150.835009765624903, 68.016180731244162 ], [ -150.836303710937614, 68.00849030155652 ], [ -150.835083007812102, 67.992499090619205 ], [ -150.838134765624773, 67.985174871869106 ], [ -150.858154296875, 67.96198151249402 ], [ -150.864062499999818, 67.948553778119205 ], [ -150.863330078124903, 67.932684637494191 ], [ -150.859130859374886, 67.927020574994103 ], [ -150.8531494140625, 67.923041082806577 ], [ -150.848510742187329, 67.918085028119251 ], [ -150.848315429687489, 67.909125067181577 ], [ -150.857592773437517, 67.898504949994106 ], [ -150.873168945312699, 67.890326239056606 ], [ -150.887329101562244, 67.877752996869191 ], [ -150.892456054687358, 67.853876043744137 ], [ -150.888061523437472, 67.82807037968162 ], [ -150.8973388671875, 67.808954168744222 ], [ -150.915161132812585, 67.794208074994202 ], [ -150.950317382812216, 67.771258856244145 ], [ -150.987060546875313, 67.736029364056506 ], [ -151.010498046874829, 67.721063543744151 ], [ -151.020507812499773, 67.711615301556677 ], [ -151.025439453125045, 67.698602606244151 ], [ -151.023193359374829, 67.691717840619177 ], [ -151.017138671874932, 67.684271551556662 ], [ -151.0103759765625, 67.679315496869165 ], [ -151.005737304687671, 67.680438543744046 ], [ -151.0230712890625, 67.65900299686912 ], [ -151.026171874999989, 67.653143621869106 ], [ -151.024658203125, 67.645575262494134 ], [ -151.020019531250171, 67.639520574994137 ], [ -151.015136718749687, 67.635077215619219 ], [ -151.013183593749886, 67.632635809369248 ], [ -151.021118164062386, 67.621771551556606 ], [ -151.0325927734375, 67.611273504681577 ], [ -151.039428710937443, 67.600897528119162 ], [ -151.033618164062517, 67.590399481244106 ], [ -151.037158203125131, 67.587420965618946 ], [ -151.043627929687773, 67.580340887493975 ], [ -151.047290039062403, 67.577337957806606 ], [ -151.038623046874648, 67.557806707806662 ], [ -151.024414062500028, 67.54689362186906 ], [ -150.985229492187216, 67.529608465619262 ], [ -150.936889648437301, 67.496771551556705 ], [ -150.917602539062671, 67.488641668743966 ], [ -150.844360351562443, 67.471210028119117 ], [ -150.821411132812216, 67.461297918744208 ], [ -150.807177734374847, 67.448065496869233 ], [ -150.784106445312602, 67.414911199994165 ], [ -150.767382812499761, 67.406073309369191 ], [ -150.769042968749773, 67.387225653119202 ], [ -150.757739257812432, 67.375677801556634 ], [ -150.741015625000188, 67.365741278118975 ], [ -150.726562499999943, 67.351825262494117 ], [ -150.723754882812557, 67.344916082806634 ], [ -150.723388671874943, 67.340106512494245 ], [ -150.721972656249875, 67.335638739056591 ], [ -150.716186523437671, 67.329950262494009 ], [ -150.706958007812489, 67.325873114056705 ], [ -150.699218749999829, 67.324823309369179 ], [ -150.693652343749875, 67.321844793744162 ], [ -150.690917968750028, 67.311639715619094 ], [ -150.692553710937659, 67.303168035931606 ], [ -150.697387695312671, 67.295038153119108 ], [ -150.709521484375188, 67.281439520306634 ], [ -150.754443359375102, 67.246161199994134 ], [ -150.767749023437688, 67.232684637494074 ], [ -150.777587890624858, 67.224872137494145 ], [ -150.801269531249687, 67.214374090619202 ], [ -150.810180664062727, 67.206561590618961 ], [ -150.813891601562489, 67.19537994999402 ], [ -150.809375, 67.174994207806691 ], [ -150.810424804687386, 67.163519598431662 ], [ -150.822802734374875, 67.149920965619145 ], [ -150.842285156249687, 67.145941473431648 ], [ -150.881591796875171, 67.145868231244108 ], [ -150.906176757812688, 67.136419989056535 ], [ -150.972827148437631, 67.089374090619074 ], [ -150.999072265625159, 67.080755926556591 ], [ -151.081469726562148, 67.070257879681733 ], [ -151.095629882812602, 67.065863348431577 ], [ -151.129882812499858, 67.049823309369245 ], [ -151.147753906250102, 67.044256903119077 ], [ -151.162524414062517, 67.042425848431549 ], [ -151.197802734375102, 67.042987371869145 ], [ -151.248413085937301, 67.039911199994194 ], [ -151.318237304687557, 67.020575262494134 ], [ -151.426757812500057, 67.003485418744077 ], [ -151.451342773437574, 66.99457428593162 ], [ -151.437744140624886, 66.981512762494191 ], [ -151.454711914062415, 66.972528387494222 ], [ -151.494506835937528, 66.961249090619148 ], [ -151.530200195312545, 66.945086981244089 ], [ -151.542968750000057, 66.94110748905662 ], [ -151.581713867187432, 66.939960028119202 ], [ -151.613769531249886, 66.933124090619074 ], [ -151.659960937499818, 66.916571356244191 ], [ -151.691088867187489, 66.896356512494179 ], [ -151.677905273437545, 66.878485418744063 ], [ -151.708251953124886, 66.864203192181662 ], [ -151.715258789062602, 66.848651434369089 ], [ -151.707080078124818, 66.829169012494191 ], [ -151.684497070312545, 66.790472723431506 ], [ -151.682739257812273, 66.785663153119259 ], [ -151.707153320312671, 66.740668035931463 ], [ -151.711425781249886, 66.727655340619251 ], [ -151.713427734374818, 66.713251043744151 ], [ -151.713671875000102, 66.702215887494077 ], [ -151.716357421874818, 66.691961981244162 ], [ -151.725708007812386, 66.679877020306634 ], [ -151.736572265624886, 66.67206452030662 ], [ -151.793139648437347, 66.644476629681733 ], [ -151.853027343749886, 66.627386785931634 ], [ -151.869433593749932, 66.626776434369191 ], [ -151.885742187500085, 66.630389715619046 ], [ -151.903247070312659, 66.638251043744134 ], [ -151.912280273437403, 66.616522528119106 ], [ -151.918872070312659, 66.604999090619032 ], [ -151.924975585937716, 66.597967840619063 ], [ -151.938720703125114, 66.592718817181577 ], [ -151.959155273437744, 66.589544989056591 ], [ -151.977661132812642, 66.591327215619131 ], [ -151.985766601562602, 66.601385809369063 ], [ -151.995654296874875, 66.606512762494077 ], [ -152.070117187499989, 66.594745184369174 ], [ -152.079272460937688, 66.58703034061908 ], [ -152.0863037109375, 66.577826239056648 ], [ -152.095019531249704, 66.570013739056648 ], [ -152.121704101562386, 66.556659246869245 ], [ -152.136108398437216, 66.551874090619151 ], [ -152.150268554687386, 66.550116278119191 ], [ -152.163378906250102, 66.553338934369037 ], [ -152.18840332031246, 66.566961981244205 ], [ -152.205493164062318, 66.570013739056549 ], [ -152.239135742187273, 66.564398504681634 ], [ -152.312670898437631, 66.542840887494094 ], [ -152.348876953125284, 66.542743231244032 ], [ -152.353271484375171, 66.545233465619006 ], [ -152.363159179687472, 66.55634186405662 ], [ -152.397338867187528, 66.563788153119077 ], [ -152.455981445312432, 66.568719793744137 ], [ -152.468994140624915, 66.573431707806748 ], [ -152.48088378906246, 66.581366278119134 ], [ -152.489550781249875, 66.579217840619165 ], [ -152.499072265625216, 66.573358465619037 ], [ -152.538378906250045, 66.564764715619006 ], [ -152.547851562499915, 66.563788153119219 ], [ -152.555834960937517, 66.565619207806677 ], [ -152.568725585937671, 66.574042059369134 ], [ -152.575439453124972, 66.576849676556563 ], [ -152.620288085937659, 66.580682684369037 ], [ -152.64453125, 66.580023504681648 ], [ -152.664184570312557, 66.576849676556648 ], [ -152.664794921875171, 66.574237371869117 ], [ -152.667651367187659, 66.56793854374412 ], [ -152.672167968750188, 66.560980535931577 ], [ -152.677856445312784, 66.556341864056563 ], [ -152.756396484374932, 66.543646551556719 ], [ -152.792773437500074, 66.515082098431591 ], [ -152.822192382812602, 66.508563543744117 ], [ -152.858203124999818, 66.506781317181634 ], [ -152.890063476562744, 66.501654364056421 ], [ -153.003710937500045, 66.462420965619103 ], [ -153.020507812500142, 66.460150457806506 ], [ -153.039843749999903, 66.463202215619077 ], [ -153.0767822265625, 66.474798895306577 ], [ -153.096850585937489, 66.474432684369162 ], [ -153.108081054687318, 66.470282293744148 ], [ -153.130664062500244, 66.458197332806506 ], [ -153.143969726562517, 66.453924871869049 ], [ -153.1680908203125, 66.451532293744108 ], [ -153.284545898437784, 66.45392487186902 ], [ -153.290209960937659, 66.451776434369009 ], [ -153.299121093750045, 66.442401434369145 ], [ -153.315356445312688, 66.436102606244106 ], [ -153.311645507812273, 66.426214910931677 ], [ -153.303833007812443, 66.414618231244191 ], [ -153.301635742187671, 66.405536199994046 ], [ -153.312377929687528, 66.39679596561912 ], [ -153.329956054687358, 66.389715887494219 ], [ -153.348681640624818, 66.385443426556648 ], [ -153.36308593749996, 66.385077215619035 ], [ -153.368823242187375, 66.388495184369191 ], [ -153.378417968750199, 66.401483465619094 ], [ -153.384204101562375, 66.405536199994074 ], [ -153.403808593749858, 66.408636785931705 ], [ -153.408984375000074, 66.410956121869049 ], [ -153.418994140625045, 66.41669342655662 ], [ -153.424365234375131, 66.41857330936908 ], [ -153.434814453124886, 66.419452215619103 ], [ -153.445239257812574, 66.418475653119103 ], [ -153.487475585937432, 66.407416082806478 ], [ -153.555957031250188, 66.399603582806549 ], [ -153.611328124999858, 66.382757879681719 ], [ -153.673339843749943, 66.369256903119151 ], [ -153.811035156250028, 66.330438543744194 ], [ -153.913745117187261, 66.295599676556719 ], [ -154.000781250000045, 66.277899481244035 ], [ -154.038378906249761, 66.275213934369248 ], [ -154.063110351562301, 66.270697332806634 ], [ -154.060961914062659, 66.259833074994106 ], [ -154.050219726562489, 66.246405340619205 ], [ -154.048950195312443, 66.234198309369091 ], [ -154.095336914062557, 66.239569403119134 ], [ -154.115600585937415, 66.239325262494134 ], [ -154.103564453125159, 66.22736237186912 ], [ -154.123168945312273, 66.209833074994179 ], [ -154.152099609374886, 66.190863348431705 ], [ -154.173828124999915, 66.16950104374412 ], [ -154.171875000000114, 66.144842840619077 ], [ -154.192382812499943, 66.14069244999429 ], [ -154.211718750000017, 66.132025457806719 ], [ -154.247607421874875, 66.111346746869145 ], [ -154.242358398437432, 66.106268621869063 ], [ -154.233276367187585, 66.090204168744094 ], [ -154.244799804687517, 66.081244207806719 ], [ -154.274047851562273, 66.049383856244134 ], [ -154.278320312499829, 66.042425848431705 ], [ -154.274584960937659, 66.039252020306662 ], [ -154.281249999999858, 66.03217194218162 ], [ -154.29248046875, 66.025091864056606 ], [ -154.302539062500045, 66.021918035931762 ], [ -154.311401367187329, 66.018011785931719 ], [ -154.318481445312244, 66.008563543744174 ], [ -154.329516601562204, 65.987811590619188 ], [ -154.347094726562659, 65.967474676556591 ], [ -154.362475585937375, 65.959833074994222 ], [ -154.446826171874761, 65.960516668744262 ], [ -154.453002929687642, 65.956805731244103 ], [ -154.456347656250102, 65.94542877811908 ], [ -154.464770507812545, 65.938592840619123 ], [ -154.476000976562347, 65.934833074994074 ], [ -154.487792968749943, 65.932562567181691 ], [ -154.482299804687528, 65.929706121869089 ], [ -154.471728515625102, 65.922308660931535 ], [ -154.466064453125256, 65.919549871869066 ], [ -154.485351562500199, 65.917743231244032 ], [ -154.513232421874733, 65.918646551556634 ], [ -154.538330078125256, 65.915594793743978 ], [ -154.55498046874996, 65.892840887494074 ], [ -154.590209960937443, 65.864325262494162 ], [ -154.647583007812358, 65.842474676556606 ], [ -154.675463867187545, 65.825213934369089 ], [ -154.721557617187528, 65.805975653119063 ], [ -154.7467041015625, 65.800238348431719 ], [ -154.765551757812659, 65.791205145306606 ], [ -154.774902343749858, 65.789129949994134 ], [ -154.785815429687204, 65.792352606244123 ], [ -154.788452148437727, 65.799920965619009 ], [ -154.789477539062432, 65.80878327030662 ], [ -154.795654296875, 65.815863348431648 ], [ -154.820190429687727, 65.821112371869106 ], [ -154.941894531250142, 65.813251043744117 ], [ -154.998168945312528, 65.802850653119208 ], [ -155.028442382812329, 65.802264715619032 ], [ -155.062866210937358, 65.806952215619205 ], [ -155.060791015624886, 65.812811590619162 ], [ -155.040893554687358, 65.822088934369134 ], [ -155.021606445312699, 65.836981512494035 ], [ -155.149096679687347, 65.882196356244108 ], [ -155.159057617187472, 65.881366278119046 ], [ -155.175537109375057, 65.875677801556719 ], [ -155.196948242187261, 65.872381903119233 ], [ -155.218310546874989, 65.872748114056648 ], [ -155.234497070312472, 65.877948309369145 ], [ -155.22514648437496, 65.882513739056705 ], [ -155.217407226562301, 65.888495184369162 ], [ -155.211303710937273, 65.895941473431662 ], [ -155.207153320312727, 65.905218817181591 ], [ -155.268310546874886, 65.897772528119134 ], [ -155.289111328124818, 65.898382879681634 ], [ -155.275317382812602, 65.914325262494131 ], [ -155.233203125000074, 65.930365301556606 ], [ -155.22021484375, 65.946844793744177 ], [ -155.241625976562517, 65.949725653119145 ], [ -155.265380859374886, 65.945086981244216 ], [ -155.326708984374847, 65.917547918744262 ], [ -155.3411865234375, 65.91327545780662 ], [ -155.357104492187602, 65.911737371869094 ], [ -155.378466796874704, 65.912127996869231 ], [ -155.423510742187574, 65.903143621869035 ], [ -155.446411132812358, 65.90187409061916 ], [ -155.453613281249915, 65.912127996869131 ], [ -155.440917968749943, 65.923456121869052 ], [ -155.371630859375074, 65.94684479374412 ], [ -155.3914794921875, 65.957953192181648 ], [ -155.426269531250142, 65.994012762494037 ], [ -155.455126953124903, 66.009393621869137 ], [ -155.485034179687403, 66.012640692181677 ], [ -155.573657226562347, 66.003485418744162 ], [ -155.61979980468746, 65.985174871869191 ], [ -155.645385742187273, 65.980975653119188 ], [ -155.672412109374875, 65.979510809369131 ], [ -155.683837890624858, 65.982123114056634 ], [ -155.696582031249989, 65.990912176556591 ], [ -155.708496093750227, 65.996356512494145 ], [ -155.722216796874932, 65.995550848431662 ], [ -155.73442382812496, 65.990008856244131 ], [ -155.741577148437727, 65.980975653119032 ], [ -155.711108398437432, 65.96918366093162 ], [ -155.7, 65.966669012494165 ], [ -155.719042968750244, 65.963495184369009 ], [ -155.746997070312318, 65.965887762494177 ], [ -155.769287109374801, 65.973089910931662 ], [ -155.771972656250171, 65.984393621869032 ], [ -155.757617187500159, 65.999335028119091 ], [ -155.752441406249915, 66.006048895306634 ], [ -155.758789062499915, 66.007757879681577 ], [ -155.778808593749801, 66.007635809369191 ], [ -155.823974609375, 65.999042059369074 ], [ -155.850756835937631, 65.997088934369145 ], [ -155.854541015624903, 66.004584051556634 ], [ -155.855517578124818, 66.016180731244191 ], [ -155.876464843749801, 66.02387116093162 ], [ -155.919433593750227, 66.029413153119023 ], [ -155.927172851562545, 66.027606512494145 ], [ -155.953857421874886, 66.015082098431634 ], [ -155.994799804687688, 66.007635809369049 ], [ -156.0142822265625, 66.001239324994188 ], [ -156.025683593749761, 65.999090887494148 ], [ -156.035766601562244, 66.001483465619131 ], [ -156.038012695312148, 66.006537176556691 ], [ -156.034423828125028, 66.012640692181591 ], [ -156.0299072265625, 66.018255926556634 ], [ -156.029589843749989, 66.021918035931648 ], [ -156.047973632812585, 66.030462957806677 ], [ -156.058032226562347, 66.025824285931606 ], [ -156.065600585937517, 66.014032293744066 ], [ -156.076782226562528, 66.001483465619103 ], [ -156.093798828124875, 65.991815496869137 ], [ -156.11186523437496, 65.987738348431648 ], [ -156.128051757812443, 65.992010809369177 ], [ -156.139453125000017, 66.007635809368978 ], [ -156.137622070312545, 66.02387116093162 ], [ -156.157519531250102, 66.028021551556634 ], [ -156.18205566406283, 66.019476629681506 ], [ -156.194091796875114, 65.997748114056662 ], [ -156.204956054687614, 65.990545965619148 ], [ -156.260131835937443, 66.004022528119066 ], [ -156.282836914062386, 66.001483465619074 ], [ -156.257202148437415, 65.972284246869236 ], [ -156.223754882812614, 65.960760809369049 ], [ -156.145629882812585, 65.960516668744106 ], [ -156.164916992187528, 65.945672918744052 ], [ -156.2281494140625, 65.94428131718162 ], [ -156.252075195312301, 65.935980535931705 ], [ -156.267382812499818, 65.921454168744162 ], [ -156.286254882812329, 65.908563543744094 ], [ -156.306762695312187, 65.904364324994205 ], [ -156.347167968750227, 65.92584869999412 ], [ -156.3726806640625, 65.927997137494216 ], [ -156.388232421874989, 65.919623114056606 ], [ -156.378417968750227, 65.898382879681492 ], [ -156.357788085937756, 65.88764069218152 ], [ -156.305297851562329, 65.881170965619205 ], [ -156.282836914062386, 65.87111237186916 ], [ -156.297729492187443, 65.866815496869123 ], [ -156.344238281250171, 65.864325262494049 ], [ -156.356616210937659, 65.860907293744091 ], [ -156.352783203124943, 65.853094793744077 ], [ -156.337451171874704, 65.840033270306677 ], [ -156.343017578125, 65.828973699994108 ], [ -156.382128906249648, 65.785760809369279 ], [ -156.40283203125, 65.775824285931506 ], [ -156.42338867187496, 65.778265692181662 ], [ -156.444628906249704, 65.783563543744265 ], [ -156.467773437499773, 65.782342840619208 ], [ -156.536059570312347, 65.748236395306691 ], [ -156.53007812499996, 65.737616278119049 ], [ -156.536743164062784, 65.729925848431535 ], [ -156.54570312499996, 65.723456121869091 ], [ -156.546630859375085, 65.716864324994134 ], [ -156.530517578125114, 65.707220770306634 ], [ -156.509936523437432, 65.704413153119077 ], [ -156.428588867187585, 65.70502350468152 ], [ -156.409838867187375, 65.70026276249412 ], [ -156.409423828124943, 65.689569403119194 ], [ -156.4232177734375, 65.681659246869032 ], [ -156.458496093750085, 65.675165106244009 ], [ -156.484252929687671, 65.66310455936906 ], [ -156.519458007812432, 65.654730535931719 ], [ -156.529223632812403, 65.645209051556705 ], [ -156.524096679687602, 65.633563543744046 ], [ -156.504272460937557, 65.634833074994148 ], [ -156.468066406250216, 65.645209051556648 ], [ -156.42802734374979, 65.640936590619191 ], [ -156.352221679687489, 65.622137762494219 ], [ -156.310107421874932, 65.617938543744202 ], [ -156.330371093750131, 65.607245184368992 ], [ -156.35258789062479, 65.605585028119222 ], [ -156.375781249999676, 65.606708074994188 ], [ -156.398852539062233, 65.604193426556677 ], [ -156.414916992187671, 65.598822332806634 ], [ -156.425170898437614, 65.592401434369137 ], [ -156.425708007812375, 65.585150457806606 ], [ -156.412524414062432, 65.576922918744231 ], [ -156.402026367187204, 65.574896551556606 ], [ -156.364746093750028, 65.576922918744174 ], [ -156.353271484375227, 65.575384832806549 ], [ -156.350585937499886, 65.571722723431648 ], [ -156.351611328124875, 65.567010809369123 ], [ -156.351123046874932, 65.562616278119165 ], [ -156.351318359375114, 65.556708074994049 ], [ -156.354980468750057, 65.549676824994052 ], [ -156.355957031249943, 65.543890692181492 ], [ -156.340747070312688, 65.539422918743995 ], [ -156.336059570312415, 65.534295965619179 ], [ -156.330615234375102, 65.521673895306549 ], [ -156.351318359374773, 65.522162176556662 ], [ -156.373706054687517, 65.51923248905662 ], [ -156.391601562500171, 65.511542059369106 ], [ -156.398852539062545, 65.498065496869245 ], [ -156.39306640625, 65.480096746869151 ], [ -156.378100585937432, 65.471307684369123 ], [ -156.337451171875045, 65.467059637494131 ], [ -156.354492187500114, 65.454291082806648 ], [ -156.387011718749818, 65.44586823124412 ], [ -156.447021484374972, 65.439764715619219 ], [ -156.464355468750114, 65.440375067181549 ], [ -156.472290039062614, 65.44281647343162 ], [ -156.484863281249972, 65.456488348431648 ], [ -156.498217773437347, 65.463934637494091 ], [ -156.511401367187318, 65.46430084843162 ], [ -156.539794921875142, 65.459588934369123 ], [ -156.642138671874761, 65.458758856244202 ], [ -156.659594726562261, 65.467059637494131 ], [ -156.650805664062489, 65.483343817181606 ], [ -156.631835937499716, 65.494208074994162 ], [ -156.624999999999801, 65.501776434369191 ], [ -156.652758789062318, 65.508002020306648 ], [ -156.676196289062489, 65.506415106244205 ], [ -156.699267578125045, 65.501288153119106 ], [ -156.722094726562602, 65.500189520306549 ], [ -156.745239257812386, 65.511102606244094 ], [ -156.758593750000102, 65.521307684369205 ], [ -156.761645507812432, 65.527289129681705 ], [ -156.762622070312659, 65.538397528119091 ], [ -156.767211914062699, 65.546405340619145 ], [ -156.778002929687688, 65.550799871868989 ], [ -156.790405273437244, 65.554071356244179 ], [ -156.799853515624704, 65.558905340619191 ], [ -156.818774414062688, 65.56422760624406 ], [ -156.876220703124829, 65.555609442181691 ], [ -156.899780273437329, 65.555194403119145 ], [ -156.950732421874733, 65.564520574994191 ], [ -156.973876953125114, 65.563421942181591 ], [ -156.968066406249875, 65.548944403119194 ], [ -156.968066406250216, 65.541522528119103 ], [ -156.982421874999886, 65.542181707806705 ], [ -157.010009765624972, 65.548456121868995 ], [ -157.022705078124972, 65.548944403119194 ], [ -157.037524414062204, 65.544061590619208 ], [ -157.038452148437614, 65.537225653119023 ], [ -157.029833984374989, 65.531122137494251 ], [ -156.999877929687386, 65.524042059369123 ], [ -157.013183593749943, 65.513861395306719 ], [ -157.082080078124818, 65.485419012494177 ], [ -157.108154296875227, 65.47882721561902 ], [ -157.162963867187443, 65.473895574994074 ], [ -157.167163085937432, 65.472967840619248 ], [ -157.175659179687415, 65.468622137494094 ], [ -157.180346679687375, 65.46705963749416 ], [ -157.191040039062443, 65.465643621869063 ], [ -157.214477539062301, 65.467059637494131 ], [ -157.257983398437148, 65.478387762494194 ], [ -157.269409179687472, 65.477313543744046 ], [ -157.324951171874943, 65.462518621869179 ], [ -157.495654296875273, 65.487494207806506 ], [ -157.535693359375045, 65.479559637494106 ], [ -157.550219726562489, 65.480731512494202 ], [ -157.558227539062528, 65.485174871869148 ], [ -157.566088867187489, 65.492059637494123 ], [ -157.576538085937585, 65.498358465618978 ], [ -157.591845703125102, 65.501166082806606 ], [ -157.607421874999972, 65.497821356244103 ], [ -157.609057617187602, 65.48993561405652 ], [ -157.605468750000171, 65.480780340619077 ], [ -157.605517578124989, 65.47389557499416 ], [ -157.61662597656246, 65.466376043744205 ], [ -157.630737304687187, 65.461615301556719 ], [ -157.645874023437273, 65.459418035931691 ], [ -157.660083007812517, 65.459588934369123 ], [ -157.651538085937773, 65.438788153119077 ], [ -157.659106445312318, 65.429877020306606 ], [ -157.674804687500171, 65.42475006718152 ], [ -157.6905517578125, 65.415228582806662 ], [ -157.692553710937432, 65.399725653118978 ], [ -157.670898437499915, 65.393085028119032 ], [ -157.642871093750017, 65.38991119999416 ], [ -157.6259765625, 65.385077215619049 ], [ -157.642944335937557, 65.362127996869134 ], [ -157.648681640624943, 65.339129949994245 ], [ -157.641406249999847, 65.318475653119151 ], [ -157.619140625000057, 65.302557684369063 ], [ -157.636840820312216, 65.296258856244222 ], [ -157.653930664062699, 65.297919012494077 ], [ -157.670703124999761, 65.301825262494219 ], [ -157.687426757812631, 65.302557684369063 ], [ -157.707446289062517, 65.29547760624412 ], [ -157.711547851562273, 65.286444403119276 ], [ -157.702758789062528, 65.278631903119134 ], [ -157.656738281250085, 65.272406317181733 ], [ -157.623217773437773, 65.264105535931463 ], [ -157.598803710937688, 65.251044012494063 ], [ -157.598681640625045, 65.233661199994202 ], [ -157.612182617187472, 65.225848699994174 ], [ -157.645874023437557, 65.221136785931591 ], [ -157.660083007812517, 65.213812567181719 ], [ -157.669726562499847, 65.203802801556634 ], [ -157.668945312499801, 65.200628973431819 ], [ -157.661132812499943, 65.197821356244177 ], [ -157.649584960937631, 65.189276434369049 ], [ -157.647143554687574, 65.172064520306719 ], [ -157.6669921875, 65.110126043744131 ], [ -157.663134765624875, 65.088812567181705 ], [ -157.653198242187472, 65.064081121869123 ], [ -157.639038085937301, 65.043573309369208 ], [ -157.622558593750057, 65.035028387494052 ], [ -157.596118164062318, 65.041083074994106 ], [ -157.554003906250102, 65.071234442181549 ], [ -157.529785156250199, 65.082831121869106 ], [ -157.502807617187415, 65.087469793744106 ], [ -157.46123046874996, 65.090106512494074 ], [ -157.423022460937318, 65.084784246869219 ], [ -157.40625, 65.065741278119134 ], [ -157.389453125000216, 65.052850653119151 ], [ -157.359130859374972, 65.039618231244205 ], [ -157.345703124999716, 65.028338934369131 ], [ -157.379565429687261, 65.021429754681662 ], [ -157.445922851562443, 65.029071356244145 ], [ -157.484057617187517, 65.020624090619094 ], [ -157.536621093750142, 65.027606512494103 ], [ -157.549682617187756, 65.02472565311912 ], [ -157.564086914062557, 65.017108465619074 ], [ -157.575195312500057, 65.006366278119046 ], [ -157.578173828124903, 64.99408600468162 ], [ -157.569335937500028, 64.984320379681535 ], [ -157.532397460937403, 64.973749090619194 ], [ -157.51611328125, 64.966815496869089 ], [ -157.536914062499932, 64.961297918744108 ], [ -157.557128906249972, 64.953143621869131 ], [ -157.549609374999932, 64.950799871869194 ], [ -157.529785156250199, 64.939471746868989 ], [ -157.551757812500227, 64.925360418744077 ], [ -157.639648437499915, 64.904730535931606 ], [ -157.709960937500114, 64.874774481244103 ], [ -157.739794921875074, 64.866815496869137 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 8, "name": null, "rivernum": 648, "length": 156950.062 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -135.073168945312347, 60.93727448124416 ], [ -135.069018554687204, 60.946844793744035 ], [ -135.073486328125114, 60.95770905155662 ], [ -135.074511718749989, 60.967645574994087 ], [ -135.074707031249943, 60.981317449994165 ], [ -135.076904296875313, 60.997333074994145 ], [ -135.077197265625102, 61.016058660931606 ], [ -135.09423828125, 61.051776434369053 ], [ -135.124389648437557, 61.093085028119134 ], [ -135.155078124999847, 61.14459869999402 ], [ -135.216552734374858, 61.258807684369103 ], [ -135.243530273437671, 61.321478582806591 ], [ -135.242114257812375, 61.369891668744117 ], [ -135.234985351562443, 61.393133856244013 ] ], [ [ -134.915527343749687, 61.567889715619046 ], [ -134.946899414062273, 61.570135809369177 ], [ -135.061694335937602, 61.596747137494134 ], [ -135.090136718750244, 61.599066473431627 ], [ -135.117065429687557, 61.594110418744158 ], [ -135.139404296875, 61.577948309369212 ], [ -135.145922851562489, 61.568060614056826 ], [ -135.150390625000028, 61.556830145306648 ], [ -135.152514648437602, 61.545282293744258 ], [ -135.152148437500102, 61.534051824994229 ], [ -135.136230468749744, 61.489081121869049 ], [ -135.150268554687614, 61.48676178593152 ], [ -135.163940429687528, 61.482440496869017 ], [ -135.176635742187671, 61.476385809369049 ], [ -135.188037109375131, 61.469061590619098 ], [ -135.19279785156246, 61.464471746869215 ], [ -135.203417968750074, 61.449652410931449 ], [ -135.222045898437443, 61.43231842655667 ], [ -135.226684570312614, 61.425116278119013 ], [ -135.234301757812489, 61.403387762494134 ], [ -135.234863281250028, 61.393500067181748 ] ], [ [ -135.073242187499886, 60.937274481244245 ], [ -135.073168945312347, 60.93727448124416 ] ], [ [ -135.073168945312347, 60.93727448124416 ], [ -135.114746093750171, 60.91303131718157 ], [ -135.128417968749886, 60.902533270306456 ], [ -135.145141601562671, 60.872748114056648 ], [ -135.152636718749932, 60.868353582806606 ], [ -135.165527343750171, 60.863714910931584 ], [ -135.167724609375057, 60.852850653119027 ], [ -135.162597656249943, 60.831122137494063 ], [ -135.149536132812557, 60.810174871869194 ], [ -135.119799804687659, 60.796454168744184 ], [ -135.06633300781283, 60.779608465619198 ], [ -135.061401367187386, 60.774530340619116 ], [ -135.054736328124903, 60.765887762493961 ], [ -135.048999023437517, 60.756366278118982 ], [ -135.046508789062528, 60.748602606244198 ], [ -135.047045898437744, 60.726019598431584 ], [ -135.044189453125, 60.71564362186917 ], [ -135.035937499999932, 60.711371160931712 ], [ -135.030517578124915, 60.706903387494265 ], [ -135.027880859375273, 60.684930731244179 ], [ -135.025390624999915, 60.676581121869042 ], [ -135.017456054687386, 60.669989324994035 ], [ -134.984423828124875, 60.656683660931627 ], [ -134.949145507812432, 60.632147528118963 ], [ -134.936328125000131, 60.628729559369113 ], [ -134.884814453125131, 60.636737371869216 ], [ -134.799487304687574, 60.638251043743999 ], [ -134.687915039062261, 60.607123114056556 ], [ -134.630859374999716, 60.577826239056606 ], [ -134.610473632812614, 60.573358465619165 ], [ -134.567016601562528, 60.571478582806627 ], [ -134.545581054687204, 60.567328192181549 ], [ -134.507250976562801, 60.549139715619155 ], [ -134.494995117187614, 60.546820379681606 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": 785600.565 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 8, "name": "Pelly", "rivernum": 756, "length": 476107.014 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -130.80644531249996, 62.21478912968152 ], [ -130.809692382812671, 62.20958893436908 ], [ -130.817797851562631, 62.200799871869137 ], [ -130.821044921875171, 62.195819403119145 ], [ -130.824218750000028, 62.182318426556726 ], [ -130.823730468749773, 62.154242254681627 ], [ -130.82719726562479, 62.140936590619162 ], [ -130.834960937499972, 62.128924871869209 ], [ -130.862841796874875, 62.096747137493992 ], [ -130.876098632812557, 62.072943426556556 ], [ -130.90324707031246, 62.042792059369056 ], [ -130.922656249999676, 62.026068426556655 ], [ -130.945483398437375, 62.016302801556712 ], [ -131.028002929687517, 61.995379949993904 ], [ -131.061328124999818, 61.982684637494025 ], [ -131.080810546874829, 61.972772528119172 ], [ -131.098388671874886, 61.961127020306805 ], [ -131.113037109374829, 61.936102606244226 ], [ -131.105883789062517, 61.908075262494087 ], [ -131.08293457031246, 61.884637762494009 ], [ -131.049975585937403, 61.872992254681634 ], [ -131.053710937499886, 61.864569403119127 ], [ -131.059619140625017, 61.858343817181506 ], [ -131.067675781249818, 61.85431549686907 ], [ -131.07731933593729, 61.852484442181606 ], [ -131.072070312500216, 61.850775457806641 ], [ -131.062426757812545, 61.846307684369023 ], [ -131.05681152343746, 61.845038153119098 ], [ -131.087695312499932, 61.816961981244113 ], [ -131.098388671875142, 61.810248114056662 ], [ -131.113525390625114, 61.806708074993914 ], [ -131.128344726562716, 61.805926824994096 ], [ -131.142626953124875, 61.803290106244035 ], [ -131.1561279296875, 61.793817449994052 ], [ -131.167236328124886, 61.790545965619224 ], [ -131.200122070312403, 61.787860418744089 ], [ -131.215454101562472, 61.772479559369188 ], [ -131.234497070312358, 61.76727936405652 ], [ -131.371582031250256, 61.756708074994151 ], [ -131.396362304687472, 61.746039129681805 ], [ -131.424121093750159, 61.739374090619194 ], [ -131.536621093750028, 61.763128973431762 ], [ -131.624438476562261, 61.762884832806677 ], [ -131.642211914062329, 61.765204168744226 ], [ -131.656127929687273, 61.773065496869108 ], [ -131.666430664062688, 61.776312567181634 ], [ -131.732226562499761, 61.786078192181584 ], [ -131.883837890625045, 61.829535223431577 ], [ -131.956225585937489, 61.834247137494138 ], [ -131.988330078124932, 61.840765692181783 ], [ -132.017211914062671, 61.851336981244145 ], [ -132.065600585937261, 61.878485418744063 ], [ -132.075122070312773, 61.87933991093162 ], [ -132.091552734375057, 61.879217840619262 ], [ -132.155395507812614, 61.868963934369035 ], [ -132.170043945312301, 61.87299225468152 ], [ -132.178344726562159, 61.880072332806527 ], [ -132.194580078125057, 61.891180731244084 ], [ -132.204467773437386, 61.899969793744262 ], [ -132.215332031250114, 61.90441315311913 ], [ -132.244067382812545, 61.90228912968167 ], [ -132.256030273437688, 61.903021551556499 ], [ -132.267333984374972, 61.908636785931655 ], [ -132.273803710937557, 61.915350653119134 ], [ -132.283325195312358, 61.930365301556598 ], [ -132.28276367187496, 61.932074285931648 ], [ -132.283129882812574, 61.93756744999402 ], [ -132.285156249999687, 61.944769598431584 ], [ -132.289550781250085, 61.951483465619155 ], [ -132.296557617187517, 61.955267645306648 ], [ -132.315844726562375, 61.959051824994191 ], [ -132.355712890624744, 61.973016668744144 ], [ -132.454638671875074, 61.992450262494174 ], [ -132.489746093750085, 62.009344793743999 ], [ -132.503051757812472, 62.012884832806691 ], [ -132.516601562499659, 62.011908270306549 ], [ -132.531665039062631, 62.008490301556648 ], [ -132.546875, 62.008172918744137 ], [ -132.582690429687545, 62.03009674686912 ], [ -132.783813476562273, 62.073187567181613 ], [ -132.83037109374996, 62.098749090619151 ], [ -133.030029296874886, 62.15753815311912 ], [ -133.141162109375074, 62.171210028119141 ], [ -133.190307617187358, 62.18585846561907 ], [ -133.242309570312557, 62.191034246869016 ], [ -133.277832031250057, 62.208929754681769 ], [ -133.358398437500085, 62.21918366093157 ], [ -133.392138671875045, 62.228045965619174 ], [ -133.484985351562671, 62.268670965619215 ], [ -133.60539550781246, 62.286981512494108 ], [ -133.620288085937631, 62.297479559369137 ], [ -133.631713867187443, 62.310248114056868 ], [ -133.658203125, 62.322381903119272 ], [ -133.687792968750074, 62.331488348431499 ], [ -133.734912109375131, 62.340155340619091 ], [ -133.790087890624932, 62.360614324994103 ], [ -133.818286132812318, 62.362372137494205 ], [ -133.819384765625045, 62.375799871869049 ], [ -133.832031249999829, 62.386737371869089 ], [ -133.849853515625, 62.393915106244194 ], [ -133.866699218750057, 62.396502996869096 ], [ -133.859252929687244, 62.396502996869124 ], [ -133.917358398437443, 62.399115301556662 ], [ -133.934985351562659, 62.40392487186908 ], [ -133.973510742187557, 62.427801824994084 ], [ -133.985839843749943, 62.431219793743956 ], [ -134.062792968750074, 62.436786199994188 ], [ -134.101074218749915, 62.446893621869137 ], [ -134.132983398437318, 62.46478912968157 ], [ -134.126342773437557, 62.466083074994252 ], [ -134.113085937499818, 62.472235418744226 ], [ -134.17265625000033, 62.505389715619174 ], [ -134.21000976562496, 62.520941473431563 ], [ -134.27490234375, 62.535956121869141 ], [ -134.338012695312273, 62.573553778119184 ], [ -134.373779296874829, 62.582098699994155 ], [ -134.381396484375045, 62.583807684369127 ], [ -134.385375976562585, 62.587836004681613 ], [ -134.388476562500188, 62.592352606244191 ], [ -134.393676757812358, 62.595770574994148 ], [ -134.427783203125017, 62.602606512494219 ], [ -134.487963867187744, 62.624774481244138 ], [ -134.602416992187273, 62.638373114056677 ], [ -134.650146484375114, 62.650018621869165 ], [ -134.674804687500171, 62.670843817181677 ], [ -134.660156249999829, 62.670282293744229 ], [ -134.620239257812386, 62.678290106244219 ], [ -134.654296875000227, 62.71417877811912 ], [ -134.66862792968746, 62.725458074994222 ], [ -134.686328124999875, 62.731268621869134 ], [ -134.711474609375074, 62.736590887494067 ], [ -134.734008789062671, 62.744208074994241 ], [ -134.743701171875102, 62.756537176556506 ], [ -134.753540039062329, 62.754022528119087 ], [ -134.800048828124773, 62.752386785931513 ], [ -134.81572265624996, 62.756537176556648 ], [ -134.840332031250085, 62.768133856244006 ], [ -134.861206054687216, 62.763788153119087 ], [ -134.880786132812602, 62.753192449993911 ], [ -134.901367187499773, 62.745917059369063 ], [ -134.91313476562496, 62.747259832806527 ], [ -134.929858398437318, 62.757196356244023 ], [ -134.938891601562545, 62.759588934368999 ], [ -134.951586914062659, 62.756537176556506 ], [ -134.958544921875131, 62.749627996869009 ], [ -134.96354980468783, 62.742621160931655 ], [ -134.970263671874761, 62.739081121869084 ], [ -134.982055664062301, 62.740008856244089 ], [ -134.989184570312688, 62.744012762494172 ], [ -135.000366210937614, 62.756537176556648 ], [ -135.009643554687614, 62.763202215618996 ], [ -135.01884765624979, 62.76622955936908 ], [ -135.123583984374932, 62.773871160931691 ], [ -135.165283203125199, 62.772528387494134 ], [ -135.181762695312528, 62.76837799686912 ], [ -135.18132324218729, 62.759588934369113 ], [ -135.195434570312443, 62.756366278119131 ], [ -135.206665039062358, 62.760809637494312 ], [ -135.217285156250085, 62.768133856244035 ], [ -135.229736328124915, 62.773871160931577 ], [ -135.338671874999932, 62.781317449994226 ], [ -135.346435546874659, 62.780096746869141 ], [ -135.351684570312472, 62.775946356244184 ], [ -135.355395507812858, 62.763544012494151 ], [ -135.360034179687659, 62.759588934369084 ], [ -135.378784179687386, 62.75763580936929 ], [ -135.546997070312386, 62.78595612186907 ], [ -135.586596679687545, 62.786932684369042 ], [ -135.636962890624972, 62.779364324994148 ], [ -135.654296875000057, 62.780096746869233 ], [ -135.671557617187233, 62.784979559369098 ], [ -135.704760742187347, 62.798407293744241 ], [ -135.758837890624847, 62.808172918744155 ], [ -135.829223632812415, 62.839178778119127 ], [ -135.864062499999761, 62.846258856244141 ], [ -135.881274414062659, 62.847430731244032 ], [ -135.892700195312415, 62.851385809369035 ], [ -135.901782226562602, 62.858661199994145 ], [ -135.911865234375085, 62.869501043744094 ], [ -135.923217773437671, 62.879169012494032 ], [ -135.935913085937727, 62.884466864056705 ], [ -135.950927734375, 62.886542059369205 ], [ -136.020190429687574, 62.879828192181549 ], [ -136.038500976562347, 62.880316473431577 ], [ -136.09331054687496, 62.892401434369127 ], [ -136.14531249999979, 62.894110418744006 ], [ -136.173217773437671, 62.89081452030652 ], [ -136.197070312500017, 62.878729559369134 ], [ -136.216601562499989, 62.852411199994194 ], [ -136.212768554687358, 62.848407293744202 ], [ -136.207519531250284, 62.838495184369151 ], [ -136.202929687500216, 62.831903387494108 ], [ -136.234130859374716, 62.823993231244124 ], [ -136.268798828124829, 62.824237371869096 ], [ -136.303027343750244, 62.830194403119116 ], [ -136.358203125000188, 62.846454168744117 ], [ -136.387329101562585, 62.850604559369053 ], [ -136.418579101562528, 62.850897528119098 ], [ -136.45, 62.846258856244077 ], [ -136.408447265625057, 62.831903387494222 ], [ -136.429614257812545, 62.816229559369077 ], [ -136.462890625000284, 62.813299871869198 ], [ -136.486132812500244, 62.823187567181556 ], [ -136.477294921875, 62.846258856244077 ], [ -136.496142578124903, 62.852411199994194 ], [ -136.517456054687671, 62.852118231244035 ], [ -136.553027343750102, 62.846258856244077 ], [ -136.590258789062688, 62.846258856244141 ], [ -136.599731445312443, 62.844794012493999 ], [ -136.608447265625159, 62.84240143436908 ], [ -136.617553710937386, 62.841986395306591 ], [ -136.628173828124773, 62.846258856244141 ], [ -136.625659179687318, 62.849676824994155 ], [ -136.621264648437432, 62.858661199994231 ], [ -136.722656250000028, 62.865838934369279 ], [ -136.809082031250085, 62.876654364056613 ], [ -136.817919921875188, 62.881293035931598 ], [ -136.827026367187614, 62.879461981244191 ], [ -136.835742187499818, 62.875311590619091 ], [ -136.843798828124875, 62.872870184369098 ], [ -136.881103515624801, 62.871405340619098 ], [ -136.918017578125216, 62.873309637494167 ], [ -136.985156250000244, 62.86737702030667 ], [ -137.143237304687659, 62.861200262494144 ], [ -137.168749999999847, 62.855536199994198 ], [ -137.178344726562301, 62.858099676556662 ], [ -137.246215820312443, 62.841571356244188 ], [ -137.298144531250045, 62.843377996869194 ], [ -137.322680664062659, 62.838202215619013 ], [ -137.341186523437614, 62.822284246869188 ], [ -137.319946289062472, 62.801947332806584 ], [ -137.312060546875102, 62.789911199994165 ], [ -137.316894531249829, 62.771112371869101 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 7, "name": "White", "rivernum": 617, "length": 111630.551 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -140.005249023437614, 62.619256903119165 ], [ -140.017626953125216, 62.639105535931535 ], [ -140.032153320312602, 62.656317449994162 ], [ -140.043383789062545, 62.666205145306606 ], [ -140.045410156250199, 62.680682684369103 ], [ -140.040405273437557, 62.702460028119006 ], [ -140.033251953124818, 62.723407293744074 ], [ -140.029223632812574, 62.744647528119046 ], [ -140.035205078124903, 62.762567449994179 ], [ -140.045214843750244, 62.778436590619165 ], [ -140.055346679687403, 62.838568426556805 ], [ -140.071899414062472, 62.853949285931677 ], [ -140.079394531249761, 62.860223699994087 ], [ -140.087524414062472, 62.86554596561929 ], [ -140.09941406249996, 62.87184479374428 ], [ -140.110717773437244, 62.87897369999402 ], [ -140.119750976562671, 62.887713934369096 ], [ -140.130664062500045, 62.894403387494201 ], [ -140.143969726562119, 62.89508698124412 ], [ -140.157153320312375, 62.894964910931563 ], [ -140.168872070312631, 62.90045807499402 ], [ -140.178955078124972, 62.908563543744279 ], [ -140.184375000000159, 62.92145416874417 ], [ -140.186279296875142, 62.935614324994042 ], [ -140.203247070312102, 62.958758856244103 ], [ -140.225219726562472, 62.978387762494059 ], [ -140.247924804687329, 62.988836981244155 ], [ -140.268481445312602, 63.001532293744127 ], [ -140.270019531249829, 63.03639557499416 ], [ -140.283325195312329, 63.065741278119212 ], [ -140.298510742187318, 63.069598699994067 ], [ -140.312670898437176, 63.075628973431627 ], [ -140.318237304687301, 63.086859442181478 ], [ -140.320239257812489, 63.09955475468162 ], [ -140.32854003906229, 63.11054108280662 ], [ -140.340625000000188, 63.117938543744053 ], [ -140.348388671874943, 63.127508856244162 ], [ -140.352099609375045, 63.139471746868956 ], [ -140.359130859374829, 63.150018621869144 ], [ -140.343994140625199, 63.170038153119208 ], [ -140.319946289062784, 63.186102606244056 ], [ -140.279663085937813, 63.204461981244172 ], [ -140.231933593750028, 63.222113348431634 ], [ -140.195922851562244, 63.238055731244103 ], [ -140.136718749999829, 63.242499090619198 ], [ -140.109790039062602, 63.244574285931606 ], [ -140.08366699218746, 63.239325262494205 ], [ -140.058032226562574, 63.230975653119067 ], [ -140.031542968750131, 63.232977606244219 ], [ -140.011767578125159, 63.238055731244074 ], [ -139.956713867187375, 63.231805731244123 ], [ -139.878833007812631, 63.24701569218157 ], [ -139.848071289062347, 63.246893621868985 ], [ -139.823657226562545, 63.242059637493952 ], [ -139.800903320312699, 63.232733465619248 ], [ -139.7750244140625, 63.220160223431613 ], [ -139.747436523437329, 63.211493231244077 ], [ -139.707641601562273, 63.207391668744137 ], [ -139.668261718749875, 63.211053778119236 ], [ -139.580615234374761, 63.206317449994074 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": 559564.559 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 3, "name": "Teslin", "rivernum": 61, "length": 374323.753 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -134.913330078124915, 61.569696356244222 ], [ -134.885302734375273, 61.552191473431606 ], [ -134.783081054687585, 61.506610418744266 ], [ -134.765795898437318, 61.502460028119053 ], [ -134.730639648437318, 61.499872137494151 ], [ -134.703369140625085, 61.505072332806414 ], [ -134.689501953125216, 61.505438543744091 ], [ -134.67790527343746, 61.499335028118992 ], [ -134.686767578124915, 61.477899481244066 ], [ -134.67583007812496, 61.462225653119063 ], [ -134.657958984374801, 61.447943426556684 ], [ -134.645874023437585, 61.430731512494056 ], [ -134.646362304687472, 61.420721746869141 ], [ -134.655932617187347, 61.38104889530652 ], [ -134.6527099609375, 61.333514715618961 ], [ -134.636035156250188, 61.302362371869165 ], [ -134.605712890624829, 61.281268621869039 ], [ -134.561645507812386, 61.263788153119066 ], [ -134.510375976562528, 61.253851629681662 ], [ -134.496093750000085, 61.24791901249408 ], [ -134.378417968749829, 61.18024323124407 ], [ -134.361376953125017, 61.167596746869208 ], [ -134.348266601562756, 61.139764715619165 ], [ -134.335083007812585, 61.133661199993924 ], [ -134.320239257812631, 61.130316473431563 ], [ -134.30949707031229, 61.125604559369123 ], [ -134.298266601562489, 61.115106512494208 ], [ -134.288940429687244, 61.108172918744188 ], [ -134.264526367187671, 61.094305731244212 ], [ -134.261523437500216, 61.091131903119106 ], [ -134.260253906250057, 61.087176824994131 ], [ -134.259643554687642, 61.083514715619167 ], [ -134.258300781250341, 61.081244207806577 ], [ -134.251831054687642, 61.079046942181698 ], [ -134.236450195312699, 61.075873114056648 ], [ -134.231005859374847, 61.073797918744184 ], [ -134.079101562500171, 60.966424871869144 ], [ -133.986450195312585, 60.896918035931442 ], [ -133.897094726562585, 60.843939520306584 ], [ -133.797534179687602, 60.785907293743961 ], [ -133.703173828125159, 60.748480535931606 ], [ -133.688110351562329, 60.739569403118992 ], [ -133.637817382812415, 60.70148346561912 ], [ -133.597656250000114, 60.680047918744023 ], [ -133.56396484375, 60.649237371869177 ], [ -133.543627929687432, 60.636249090619224 ], [ -133.420336914062347, 60.578387762494117 ], [ -133.374560546874648, 60.545282293744094 ], [ -133.289111328124733, 60.467401434369108 ], [ -133.244873046874716, 60.448553778119113 ], [ -133.227343750000102, 60.44086334843157 ], [ -133.205200195312642, 60.428534246869077 ], [ -133.144409179687301, 60.38112213749416 ], [ -132.964965820312528, 60.26691315311917 ], [ -132.914111328124989, 60.229071356244155 ], [ -132.865527343749989, 60.200140692181819 ], [ -132.79973144531246, 60.180731512494255 ], [ -132.739501953125142, 60.160101629681577 ], [ -132.698852539062585, 60.135516668744131 ], [ -132.654956054687659, 60.114129949994073 ], [ -132.603808593749847, 60.095819403118981 ], [ -132.55705566406246, 60.074090887494215 ], [ -132.438403320312233, 60.025165106244025 ], [ -132.405273437499829, 59.993597723431655 ], [ -132.345214843749744, 59.911932684369113 ], [ -132.318286132812489, 59.869452215619283 ], [ -132.232299804687329, 59.792303778119091 ], [ -132.169799804687386, 59.664178778119279 ], [ -132.149169921874801, 59.629169012494053 ], [ -132.128173828124915, 59.617743231244212 ], [ -132.095385742187432, 59.607123114056485 ], [ -132.079272460937545, 59.592596746869226 ], [ -132.072509765624773, 59.57904694218162 ], [ -132.070556640625, 59.562762762494117 ], [ -132.078662109374761, 59.513251043744148 ], [ -132.077563476562517, 59.501410223431563 ], [ -132.064013671875045, 59.464618231244117 ], [ -132.056884765624829, 59.453802801556634 ], [ -132.031249999999744, 59.436395574994059 ], [ -131.98784179687479, 59.394598699994091 ], [ -131.972900390625, 59.388617254681613 ], [ -131.968554687500074, 59.385443426556563 ], [ -131.970629882812716, 59.37836334843167 ], [ -131.977294921874886, 59.371356512494053 ], [ -131.995898437499989, 59.364203192181591 ], [ -131.996459960937472, 59.354999090619039 ], [ -131.991992187500188, 59.344598699994187 ], [ -131.986572265625114, 59.337103582806719 ], [ -131.973632812499972, 59.326849676556776 ], [ -131.970336914062472, 59.321112371869063 ], [ -131.967407226562614, 59.291083074993999 ], [ -131.964355468749858, 59.282416082806606 ], [ -131.959277343749989, 59.278753973431591 ], [ -131.944995117187489, 59.272333074993952 ], [ -131.921875, 59.244208074994155 ], [ -131.911181640624847, 59.237860418744084 ], [ -131.897583007812244, 59.233172918744053 ], [ -131.853149414062358, 59.20368073124412 ], [ -131.842651367187386, 59.185565496869124 ], [ -131.836181640624886, 59.162665106244255 ], [ -131.827075195312489, 59.143085028119181 ], [ -131.808471679687528, 59.134784246869025 ], [ -131.68864746093729, 59.134784246869117 ], [ -131.627124023437489, 59.121893621869226 ], [ -131.513427734375114, 59.079046942181549 ], [ -131.454638671874761, 59.066522528119101 ], [ -131.264892578125057, 59.072381903119116 ], [ -131.208251953124858, 59.086981512494027 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 7, "name": "Donjek", "rivernum": 596, "length": 205578.27 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.0067138671875, 61.414496160931542 ], [ -139.033203125000227, 61.422674871869077 ], [ -139.060180664062358, 61.428338934369172 ], [ -139.08447265625, 61.442450262494226 ], [ -139.107910156250142, 61.45827057499411 ], [ -139.137744140624875, 61.464544989056641 ], [ -139.159179687500085, 61.476922918744123 ], [ -139.181152343750142, 61.50499909061908 ], [ -139.20390624999979, 61.51911041874417 ], [ -139.25895996093746, 61.539374090619113 ], [ -139.303271484374847, 61.556952215619006 ], [ -139.319335937499972, 61.578876043744188 ], [ -139.339038085937432, 61.596795965619002 ], [ -139.361083984374915, 61.609198309369127 ], [ -139.375488281249829, 61.63014557499411 ], [ -139.390747070312131, 61.688495184369096 ], [ -139.410327148437432, 61.729681707806648 ], [ -139.444628906250102, 61.751654364056563 ], [ -139.469116210937699, 61.784002996869148 ], [ -139.476318359374972, 61.802801824994091 ], [ -139.484912109374818, 61.81513092655662 ], [ -139.499389648437585, 61.835956121869131 ], [ -139.506591796875142, 61.854681707806741 ], [ -139.523974609375017, 61.881952215619073 ], [ -139.548632812500188, 61.902362371869039 ], [ -139.584887695312688, 61.907171942181598 ], [ -139.622070312500028, 61.905877996869037 ], [ -139.678100585937216, 61.899481512494091 ], [ -139.727587890625045, 61.893182684369158 ], [ -139.782519531249847, 61.917987371868968 ], [ -139.803833007812301, 61.922919012494091 ], [ -139.817016601562784, 61.934881903119113 ], [ -139.833496093750171, 61.942572332806506 ], [ -139.849536132812375, 61.947699285931606 ], [ -139.861132812499875, 61.959491278119316 ], [ -139.87724609374979, 61.972479559369013 ], [ -139.875048828124875, 61.991644598431776 ], [ -139.862670898437642, 62.007513739056733 ], [ -139.873339843750074, 62.022162176556783 ], [ -139.890429687499989, 62.033221746869117 ], [ -139.894531250000028, 62.050409246869222 ], [ -139.874267578124858, 62.068963934369144 ], [ -139.853393554687472, 62.085882879681527 ], [ -139.874560546874932, 62.102484442181535 ], [ -139.912475585937614, 62.108905340619202 ], [ -139.920410156250114, 62.13312409061907 ], [ -139.918457031250085, 62.158954168744216 ], [ -139.901245117187756, 62.179510809369148 ], [ -139.877001953125188, 62.191913153119209 ], [ -139.839648437500045, 62.23341705936916 ], [ -139.798388671874989, 62.247626043744191 ], [ -139.74418945312479, 62.265692449994056 ], [ -139.687133789062557, 62.273944403119167 ], [ -139.624755859375, 62.288763739056613 ], [ -139.561889648437671, 62.300848699994162 ], [ -139.501147460937574, 62.304803778119201 ], [ -139.47021484375, 62.31000397343167 ], [ -139.443481445312642, 62.320990301556499 ], [ -139.4375, 62.357855535931627 ], [ -139.452929687499818, 62.377508856243992 ], [ -139.467407226562443, 62.393377996869091 ], [ -139.494799804687233, 62.43532135624416 ], [ -139.491870117187517, 62.483221746869219 ], [ -139.481982421874676, 62.504950262494106 ], [ -139.483398437500085, 62.56159088749407 ], [ -139.511401367187489, 62.589667059369198 ], [ -139.547485351562614, 62.609686590619198 ], [ -139.591479492187375, 62.609686590619255 ], [ -139.643554687500028, 62.58966705936902 ], [ -139.707568359374847, 62.565619207806648 ], [ -139.75390625, 62.557440496868963 ], [ -139.789428710937614, 62.561712957806542 ], [ -139.81298828125, 62.571966864056833 ], [ -139.83183593749996, 62.589544989056606 ], [ -139.849291992187489, 62.608099676556705 ], [ -139.869628906249915, 62.621600653119266 ], [ -139.8992919921875, 62.620062567181442 ], [ -139.928955078125199, 62.612860418744134 ], [ -139.991748046875188, 62.613641668744179 ], [ -140.005249023437614, 62.619256903119165 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 3, "name": "Yukon", "rivernum": 53, "length": 2772086.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.766357421874886, 61.628729559369134 ], [ -164.779467773437631, 61.637079168743981 ], [ -164.813354492187585, 61.653631903119233 ], [ -164.868164062500114, 61.661688543744098 ], [ -164.890795898437517, 61.66803619999417 ], [ -164.903491210937489, 61.677118231243988 ], [ -164.892260742187659, 61.698358465619044 ], [ -164.80961914062479, 61.73078034061929 ], [ -164.786791992187545, 61.746039129681691 ], [ -164.792895507812545, 61.748846746869127 ], [ -164.807299804687659, 61.759711004681535 ], [ -164.690356445312403, 61.760199285931648 ], [ -164.628955078124932, 61.774969793744141 ], [ -164.590014648437716, 61.774847723431584 ], [ -164.561157226562642, 61.767157293744134 ], [ -164.564257812500102, 61.749090887494063 ], [ -164.587402343750171, 61.748602606243978 ], [ -164.625000000000199, 61.753485418743999 ], [ -164.653491210937659, 61.751971746869096 ], [ -164.648974609375131, 61.73236725468167 ], [ -164.625048828124989, 61.721991278119255 ], [ -164.592089843749847, 61.723895574994145 ], [ -164.4697265625, 61.747748114056542 ], [ -164.454394531250102, 61.755926824994106 ], [ -164.444458007812358, 61.764105535931726 ], [ -164.422729492187642, 61.775751043744101 ], [ -164.413134765624818, 61.783563543744137 ], [ -164.392993164062602, 61.795526434369016 ], [ -164.363940429687659, 61.801825262493985 ], [ -164.333740234375085, 61.800604559369155 ], [ -164.310424804687244, 61.790106512494184 ], [ -164.296435546875159, 61.781073309369035 ], [ -164.282153320312375, 61.777850653119231 ], [ -164.267578124999773, 61.778192449994208 ], [ -164.230834960937671, 61.784784246869016 ], [ -164.226733398437545, 61.790228582806513 ], [ -164.226928710937415, 61.797430731244226 ], [ -164.218261718750313, 61.807440496868999 ], [ -164.203857421875171, 61.812616278119059 ], [ -164.171630859374943, 61.812323309369155 ], [ -164.156176757812716, 61.814960028119017 ], [ -164.146728515624915, 61.820746160931606 ], [ -164.132617187499875, 61.835711981244131 ], [ -164.122070312500171, 61.841620184368992 ], [ -164.12236328124996, 61.856268621869063 ], [ -164.108642578124943, 61.872748114056662 ], [ -164.089477539062329, 61.887518621869212 ], [ -164.073608398437642, 61.896844793744116 ], [ -164.05126953125, 61.907049871869106 ], [ -164.038818359375, 61.910174871869103 ], [ -164.026416015625102, 61.909857489056712 ], [ -164.020385742187614, 61.905951239056577 ], [ -164.008300781250227, 61.89025299686908 ], [ -163.999145507812557, 61.883172918743981 ], [ -164.002441406250199, 61.877704168744074 ], [ -164.001513671875102, 61.871112371869039 ], [ -163.997607421874847, 61.863641668744151 ], [ -163.99169921875, 61.855829168744116 ], [ -163.997607421875159, 61.854315496869042 ], [ -164.006884765624875, 61.849920965619084 ], [ -164.012817382812756, 61.848456121869027 ], [ -163.989306640625045, 61.831854559369106 ], [ -163.947314453125159, 61.824774481244148 ], [ -163.907153320312432, 61.828680731244198 ], [ -163.889282226562528, 61.845038153119212 ], [ -163.882861328125017, 61.860541082806613 ], [ -163.867968750000244, 61.859442449994056 ], [ -163.850830078124943, 61.84943268436917 ], [ -163.837768554687329, 61.838495184369101 ], [ -163.836962890625188, 61.826776434369016 ], [ -163.853637695312614, 61.818426824994056 ], [ -163.889282226562528, 61.807440496869027 ], [ -163.827514648437415, 61.807440496869198 ], [ -163.815356445312489, 61.805243231244205 ], [ -163.793334960937671, 61.795477606243999 ], [ -163.782836914062472, 61.793158270306677 ], [ -163.767504882812574, 61.792181707806563 ], [ -163.756640625000045, 61.789252020306485 ], [ -163.738452148437659, 61.780145574994116 ], [ -163.741259765625017, 61.778753973431598 ], [ -163.7431640625, 61.773993231244141 ], [ -163.741943359375114, 61.768866278119098 ], [ -163.735351562499829, 61.766546942181776 ], [ -163.704345703124801, 61.766546942181691 ], [ -163.704345703124801, 61.773309637494251 ], [ -163.709765625000017, 61.776483465619094 ], [ -163.712646484374915, 61.779730535931542 ], [ -163.71484375, 61.783148504681591 ], [ -163.717944335937489, 61.786981512494123 ], [ -163.663330078125114, 61.781610418744137 ], [ -163.652465820312614, 61.783563543744052 ], [ -163.648193359374773, 61.792352606244172 ], [ -163.646289062500074, 61.813544012494091 ], [ -163.642871093750102, 61.821112371869106 ], [ -163.613574218750216, 61.832782293744025 ], [ -163.577685546875017, 61.829217840619187 ], [ -163.511889648437659, 61.814960028119074 ], [ -163.441772460937301, 61.813788153119184 ], [ -163.404711914062659, 61.81842682499402 ], [ -163.378784179687614, 61.831659246869151 ], [ -163.366943359375199, 61.834540106244006 ], [ -163.329516601562318, 61.827020574994194 ], [ -163.313281250000045, 61.827948309369056 ], [ -163.303027343750102, 61.83385651249403 ], [ -163.288134765625045, 61.848993231244101 ], [ -163.279785156249801, 61.855829168744172 ], [ -163.279785156250114, 61.862127996869162 ], [ -163.298999023437233, 61.869501043744222 ], [ -163.278320312499943, 61.875677801556598 ], [ -163.239550781250159, 61.878436590618989 ], [ -163.224536132812432, 61.889422918744103 ], [ -163.217651367187386, 61.904730535931662 ], [ -163.2196044921875, 61.917181707806577 ], [ -163.227416992187671, 61.927801824994162 ], [ -163.276367187500142, 61.96576569218162 ], [ -163.286010742187443, 61.978778387494238 ], [ -163.299926757812329, 62.021551824994283 ], [ -163.309375000000102, 62.043963934369145 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.208911132812602, 65.178412176556677 ], [ -152.262988281250216, 65.171087957806549 ], [ -152.348876953125284, 65.151727606244023 ], [ -152.376391601562545, 65.141302801556591 ], [ -152.42351074218783, 65.115301824994049 ], [ -152.451953125000188, 65.110126043744046 ], [ -152.485351562499858, 65.114447332806705 ], [ -152.575439453124972, 65.144891668744023 ], [ -152.653491210937489, 65.145770574994103 ], [ -152.69475097656246, 65.151239324994179 ], [ -152.712646484375114, 65.168817449994066 ], [ -152.716479492187176, 65.176874090619251 ], [ -152.743334960937659, 65.196405340619108 ], [ -152.760131835937415, 65.205511785931691 ], [ -152.78129882812496, 65.20624420780662 ], [ -152.822509765625114, 65.200140692181606 ], [ -152.910644531249801, 65.200140692181634 ], [ -152.962573242187403, 65.181341864056719 ], [ -152.980151367187545, 65.178412176556492 ], [ -153.082397460937557, 65.186542059369131 ], [ -153.19951171874996, 65.148065496869179 ], [ -153.212280273437472, 65.13434479374412 ], [ -153.226000976562489, 65.109686590619091 ], [ -153.258666992187244, 65.102972723431762 ], [ -153.482910156250114, 65.117010809369049 ], [ -153.497607421875045, 65.120184637494035 ], [ -153.53142089843746, 65.134295965619103 ], [ -153.548706054687472, 65.137469793744089 ], [ -153.564453124999829, 65.135077215619205 ], [ -153.610766601562375, 65.117010809369191 ], [ -153.685839843750102, 65.103949285931577 ], [ -153.727343750000017, 65.085565496869236 ], [ -153.754516601562671, 65.080682684369108 ], [ -153.780566406250045, 65.071356512494148 ], [ -153.839843749999972, 65.067450262494063 ], [ -153.999023437500085, 65.035223699994177 ], [ -154.151367187499943, 64.994086004681677 ], [ -154.313403320312261, 64.922796942181691 ], [ -154.370483398437727, 64.918329168744108 ], [ -154.38688964843746, 64.922308660931662 ], [ -154.416748046875142, 64.934759832806662 ], [ -154.432543945312261, 64.939471746869103 ], [ -154.448413085937574, 64.94020416874416 ], [ -154.545166015624886, 64.923846746869089 ], [ -154.578857421874972, 64.935077215619089 ], [ -154.669726562500131, 64.939813543744023 ], [ -154.821411132812614, 64.908710028119131 ], [ -154.934936523437557, 64.89569733280662 ], [ -155.022338867187642, 64.87892487186916 ], [ -155.098681640624989, 64.877069403119165 ], [ -155.193164062499676, 64.860467840619208 ], [ -155.282836914062671, 64.832391668744137 ], [ -155.381469726562557, 64.789618231244148 ], [ -155.491870117187659, 64.750360418744066 ], [ -155.546020507812784, 64.74713776249412 ], [ -155.720458984374659, 64.767523504681762 ], [ -155.793872070312659, 64.760687567181648 ], [ -155.937060546875131, 64.724920965619063 ], [ -156.007861328124989, 64.719745184369089 ], [ -156.172973632812671, 64.725897528119148 ], [ -156.206225585937602, 64.72243073124406 ], [ -156.328295898437688, 64.68305084843162 ], [ -156.414916992187386, 64.665301824994245 ], [ -156.486938476562415, 64.67677643436906 ], [ -156.550048828125057, 64.66681549686902 ], [ -156.622558593749716, 64.663104559369273 ], [ -156.694335937499773, 64.643988348431691 ], [ -156.772875976562545, 64.64398834843152 ], [ -156.782885742187517, 64.653387762494233 ], [ -156.776782226562489, 64.674676824994137 ], [ -156.755175781249761, 64.712909246869202 ], [ -156.787475585937557, 64.728045965619188 ], [ -156.828369140624886, 64.740252996869145 ], [ -156.870483398437443, 64.744818426556662 ], [ -156.937548828125102, 64.729681707806634 ], [ -156.971191406250057, 64.735126043744046 ], [ -157.001464843749886, 64.749090887494177 ], [ -157.022705078124972, 64.767523504681677 ], [ -157.027514648437261, 64.778143621869233 ], [ -157.028686523437642, 64.787909246869006 ], [ -157.031982421874972, 64.797967840619123 ], [ -157.043139648437261, 64.809149481244248 ], [ -157.057495117187614, 64.814886785931634 ], [ -157.1148681640625, 64.822772528119103 ], [ -157.242846679687744, 64.80333893436908 ], [ -157.28337402343746, 64.809149481244248 ], [ -157.310424804687472, 64.819159246869162 ], [ -157.33366699218746, 64.82521393436906 ], [ -157.35734863281229, 64.823993231244131 ], [ -157.385791015624932, 64.812567449994177 ], [ -157.416381835937557, 64.806341864056634 ], [ -157.445239257812318, 64.816278387494151 ], [ -157.49565429687496, 64.850116278119202 ], [ -157.530883789062443, 64.862372137494106 ], [ -157.716552734375085, 64.865668035931563 ], [ -157.796630859374943, 64.87518952030662 ], [ -157.868090820312489, 64.868426824994117 ], [ -157.890747070312614, 64.864447332806591 ], [ -157.913378906250017, 64.857538153119094 ], [ -157.932373046874886, 64.835882879681577 ], [ -157.962524414062671, 64.801385809369023 ], [ -157.983276367187472, 64.782782293744162 ], [ -158.051513671875227, 64.744989324994094 ], [ -158.133789062500171, 64.707391668744137 ], [ -158.1484375, 64.696161199993981 ], [ -158.16557617187496, 64.686102606244106 ], [ -158.252685546874943, 64.671747137494222 ], [ -158.277148437499818, 64.660419012494188 ], [ -158.294067382812557, 64.64069244999412 ], [ -158.3165283203125, 64.598993231244108 ], [ -158.330981445312432, 64.579217840619066 ], [ -158.347656249999858, 64.564642645306648 ], [ -158.367236328125244, 64.55683014530662 ], [ -158.409106445312148, 64.549627996869191 ], [ -158.428955078124915, 64.541815496869091 ], [ -158.437255859375028, 64.535272528119165 ], [ -158.468261718749773, 64.499579168744205 ], [ -158.483886718750085, 64.464862371869145 ], [ -158.504394531249915, 64.441278387494179 ], [ -158.529785156249886, 64.427313543744177 ], [ -158.587524414062443, 64.407660223431762 ], [ -158.608520507812557, 64.397333074994123 ], [ -158.640063476562659, 64.377069403119066 ], [ -158.694458007812443, 64.360785223431705 ], [ -158.706225585937659, 64.354803778119134 ], [ -158.714648437500102, 64.345770574994049 ], [ -158.717944335937716, 64.332586981243963 ], [ -158.715869140624989, 64.32062409061912 ], [ -158.689257812500102, 64.270941473431577 ], [ -158.683349609374943, 64.262884832806719 ], [ -158.674609374999989, 64.255072332806677 ], [ -158.658813476562244, 64.244501043744194 ], [ -158.651245117187358, 64.237909246869151 ], [ -158.647583007812727, 64.230829168744037 ], [ -158.633544921874886, 64.21283600468179 ], [ -158.634033203125171, 64.195624090619106 ], [ -158.643554687499829, 64.17872955936916 ], [ -158.740283203125045, 64.058710028119151 ], [ -158.744555664062602, 64.050726629681563 ], [ -158.751025390624903, 64.03209869999408 ], [ -158.764331054687489, 64.017157293744191 ], [ -158.786743164062642, 64.008075262494131 ], [ -158.881958007812557, 63.985296942181627 ], [ -158.929003906250045, 63.968036199994188 ], [ -158.937182617187517, 63.955096746869131 ], [ -158.9515380859375, 63.945990301556762 ], [ -159.009692382812489, 63.924872137494084 ], [ -159.023193359374943, 63.916205145306613 ], [ -159.029541015624915, 63.906439520306662 ], [ -159.155444335937716, 63.876092840619094 ], [ -159.185839843750159, 63.872919012493959 ], [ -159.195117187499847, 63.870306707806563 ], [ -159.209643554687631, 63.857367254681684 ], [ -159.210620117187517, 63.839178778119148 ], [ -159.207446289062545, 63.81891510624417 ], [ -159.209155273437659, 63.80023834843152 ], [ -159.213183593749932, 63.792181707806655 ], [ -159.218383789062273, 63.785101629681762 ], [ -159.224731445312557, 63.779413153119094 ], [ -159.231982421875273, 63.775506903119073 ], [ -159.29631347656246, 63.763251043744091 ], [ -159.316333007812318, 63.756293035931641 ], [ -159.334399414062432, 63.745965887494066 ], [ -159.349731445312671, 63.731024481244091 ], [ -159.359130859375, 63.714960028119123 ], [ -159.374072265625188, 63.663641668744042 ], [ -159.381347656249972, 63.64918854374406 ], [ -159.391235351562585, 63.63690827030667 ], [ -159.444506835937716, 63.59516022343152 ], [ -159.467211914062659, 63.584662176556549 ], [ -159.472949218750045, 63.578485418744116 ], [ -159.476245117187375, 63.57147858280662 ], [ -159.482104492187432, 63.547870184369074 ], [ -159.494384765625, 63.522821356244208 ], [ -159.496459960937443, 63.514276434369116 ], [ -159.480883789062545, 63.489520574994174 ], [ -159.447558593750074, 63.464422918744091 ], [ -159.422656250000045, 63.437689520306606 ], [ -159.432495117187557, 63.408075262494116 ], [ -159.448852539062472, 63.399286199994137 ], [ -159.510668945312403, 63.388251043744177 ], [ -159.600146484374932, 63.354608465619052 ], [ -159.606494140625216, 63.350213934369009 ], [ -159.612109374999989, 63.341009832806748 ], [ -159.611987304687347, 63.332342840619297 ], [ -159.610034179687545, 63.323553778119205 ], [ -159.610351562500028, 63.314032293744148 ], [ -159.621582031249858, 63.30219147343162 ], [ -159.642333984374659, 63.294623114056613 ], [ -159.682666015625159, 63.285345770306641 ], [ -159.698608398437358, 63.276800848431662 ], [ -159.71135253906246, 63.264960028119248 ], [ -159.720996093749761, 63.250360418744222 ], [ -159.727465820312744, 63.233417059369032 ], [ -159.729052734374932, 63.214911199994155 ], [ -159.725878906250244, 63.181415106243968 ], [ -159.732348632812545, 63.16412994999412 ], [ -159.752734374999761, 63.136297918744219 ], [ -159.761035156249875, 63.121210028119194 ], [ -159.764404296875057, 63.105340887494094 ], [ -159.760375976562472, 63.07721588749412 ], [ -159.761474609375028, 63.067987371869023 ], [ -159.766284179687318, 63.059100653119181 ], [ -159.773852539062517, 63.051532293744032 ], [ -159.782836914062727, 63.045355535931591 ], [ -159.791870117187472, 63.040716864056662 ], [ -159.8125, 63.034002996869148 ], [ -159.903198242187671, 63.017401434369113 ], [ -159.949584960937727, 63.000189520306542 ], [ -159.97246093749979, 62.986835028119231 ], [ -160.003955078125102, 62.962347723431527 ], [ -160.029711914062716, 62.933417059368992 ], [ -160.046801757812261, 62.899676824994181 ], [ -160.052416992187318, 62.860296942181655 ], [ -160.061157226562273, 62.856390692181783 ], [ -160.066943359375102, 62.85053131718157 ], [ -160.070361328125074, 62.842962957806478 ], [ -160.071948242187261, 62.833612371869222 ], [ -160.070605468750045, 62.82213776249408 ], [ -160.061083984374733, 62.80329010624417 ], [ -160.058398437500017, 62.793329168744179 ], [ -160.063842773437642, 62.775824285931598 ], [ -160.090454101562472, 62.74596588749408 ], [ -160.095385742187432, 62.727850653119141 ], [ -160.132739257812773, 62.726825262493982 ], [ -160.144409179687443, 62.722919012494167 ], [ -160.153808593750085, 62.716327215618982 ], [ -160.16264648437496, 62.707464910931492 ], [ -160.170214843749818, 62.697528387494145 ], [ -160.176074218749875, 62.687518621869117 ], [ -160.179565429687386, 62.678534246869155 ], [ -160.181274414062528, 62.669378973431627 ], [ -160.181079101562347, 62.659857489056705 ], [ -160.178833007812443, 62.650018621869194 ], [ -160.164306640624972, 62.613299871869117 ], [ -160.163696289062386, 62.606073309369137 ], [ -160.173144531249847, 62.558368231244089 ], [ -160.17041015625, 62.548651434369162 ], [ -160.159594726562318, 62.539740301556712 ], [ -160.129516601562329, 62.523065496869101 ], [ -160.120849609374915, 62.516131903119089 ], [ -160.116699218750028, 62.510565496869233 ], [ -160.110644531249818, 62.497870184369212 ], [ -160.107177734374716, 62.492621160931698 ], [ -160.103442382812574, 62.489520574993989 ], [ -160.0775146484375, 62.475775457806513 ], [ -160.053222656250085, 62.466742254681591 ], [ -160.035766601562614, 62.457709051556677 ], [ -160.020922851562659, 62.44574616093162 ], [ -160.017089843749943, 62.440863348431662 ], [ -160.008349609374989, 62.424627996869006 ], [ -159.995117187500227, 62.410419012493968 ], [ -159.991625976562432, 62.404486395306648 ], [ -159.98674316406229, 62.39332916874416 ], [ -159.967333984374989, 62.368426824994053 ], [ -159.963623046874943, 62.358587957806627 ], [ -159.962939453125131, 62.320868231244084 ], [ -159.964160156249989, 62.313421942181606 ], [ -159.971118164062261, 62.293475653119252 ], [ -159.972656249999972, 62.286566473431535 ], [ -159.966308593749972, 62.262152410931741 ], [ -159.945556640625171, 62.249945379681598 ], [ -159.786181640624875, 62.23615143436917 ], [ -159.751513671874875, 62.227411199994066 ], [ -159.724121093749972, 62.205438543744236 ], [ -159.722705078124932, 62.174823309369081 ], [ -159.7381591796875, 62.142645574994219 ], [ -159.761401367187489, 62.116327215619101 ], [ -159.801684570312545, 62.09337799686908 ], [ -159.846362304687489, 62.084588934369187 ], [ -159.960937499999886, 62.077508856244179 ], [ -159.982104492187432, 62.071966864056563 ], [ -160.001879882812659, 62.063055731244084 ], [ -160.019409179687358, 62.049994207806677 ], [ -160.030932617187261, 62.036200262494155 ], [ -160.057177734374818, 61.98932526249417 ], [ -160.086108398437432, 61.959344793744123 ], [ -160.123168945312358, 61.942987371869222 ], [ -160.164306640624972, 61.935614324994056 ], [ -160.405322265624932, 61.922430731244091 ], [ -160.528320312500057, 61.921820379681449 ], [ -160.61186523437533, 61.935419012494016 ], [ -160.714892578125102, 61.942450262494148 ], [ -160.953906250000102, 61.937689520306549 ], [ -160.974487304687443, 61.93385651249401 ], [ -161.053759765624847, 61.905877996869179 ], [ -161.124511718750227, 61.88996002811912 ], [ -161.143188476562557, 61.881048895306641 ], [ -161.152880859375017, 61.878363348431677 ], [ -161.191894531250057, 61.877704168744074 ], [ -161.292041015624932, 61.853045965619117 ], [ -161.316577148437659, 61.84308502811907 ], [ -161.345141601562631, 61.825506903119091 ], [ -161.359252929687329, 61.805926824994096 ], [ -161.340209960937358, 61.789862371869184 ], [ -161.3389892578125, 61.784491278119084 ], [ -161.327197265624875, 61.77101471561916 ], [ -161.319580078124886, 61.757586981244231 ], [ -161.319140625000045, 61.743524481244187 ], [ -161.328662109375045, 61.728461004681677 ], [ -161.393432617187727, 61.671747137493917 ], [ -161.428271484375159, 61.649237371869106 ], [ -161.467578124999989, 61.641913153119184 ], [ -161.551391601562329, 61.636493231244181 ], [ -161.632324218749744, 61.620428778119155 ], [ -161.722705078124932, 61.620965887494108 ], [ -161.803588867187557, 61.608099676556598 ], [ -161.8231201171875, 61.602240301556527 ], [ -161.825561523437585, 61.601019598431563 ], [ -161.876879882812602, 61.576044012494087 ], [ -161.914306640624858, 61.565008856244042 ], [ -161.9520263671875, 61.567328192181535 ], [ -161.975219726562699, 61.586127020306542 ], [ -161.969360351562671, 61.624579168744056 ], [ -161.96147460937496, 61.6404483093689 ], [ -161.956665039062358, 61.655462957806677 ], [ -161.957519531249943, 61.670233465619162 ], [ -161.96660156249979, 61.685614324994241 ], [ -162.049926757812472, 61.766546942181634 ], [ -162.120288085937489, 61.819598699994117 ], [ -162.137084960937557, 61.836297918744108 ], [ -162.150512695312472, 61.856561590619229 ], [ -162.16606445312496, 61.892840887494152 ], [ -162.176025390625085, 61.909198309369053 ], [ -162.190795898437557, 61.922723699994023 ], [ -162.209399414062688, 61.931586004681563 ], [ -162.229907226562517, 61.936542059369089 ], [ -162.271655273437773, 61.938421942181549 ], [ -162.384326171874847, 61.919940496869167 ], [ -162.406127929687386, 61.919208074994138 ], [ -162.425219726562489, 61.92492096561913 ], [ -162.437426757812233, 61.941351629681741 ], [ -162.443725585937415, 61.979364324994158 ], [ -162.449877929687545, 61.996405340619262 ], [ -162.464843749999829, 62.009833074994141 ], [ -162.484423828125216, 62.016546942181535 ], [ -162.5057373046875, 62.018011785931478 ], [ -162.527026367187716, 62.015326239056513 ], [ -162.656494140624858, 61.97365143436911 ], [ -162.665332031250045, 61.966742254681726 ], [ -162.671557617187403, 61.957464910931726 ], [ -162.683032226562489, 61.920965887494148 ], [ -162.689990234375102, 61.912176824994027 ], [ -162.702270507812329, 61.906317449994162 ], [ -162.730224609375028, 61.903436590619158 ], [ -162.754077148437318, 61.909247137494155 ], [ -162.775878906249858, 61.92121002811912 ], [ -162.797778320312347, 61.936786199994209 ], [ -162.823852539062443, 61.949774481244248 ], [ -162.851562499999829, 61.953436590619091 ], [ -162.879443359375017, 61.948675848431691 ], [ -162.906176757812517, 61.936590887494077 ], [ -162.94938964843729, 61.91090729374416 ], [ -162.972412109375028, 61.902411199994084 ], [ -162.998535156249943, 61.899847723431677 ], [ -163.063354492187386, 61.911932684369262 ], [ -163.130249023437642, 61.916034246869032 ], [ -163.154711914062517, 61.922137762494017 ], [ -163.176513671875057, 61.93053619999403 ], [ -163.195922851562358, 61.942694403119205 ], [ -163.235961914062443, 61.984930731244091 ], [ -163.241699218750142, 61.994647528119081 ], [ -163.250610351562557, 62.019794012494152 ], [ -163.257006835937347, 62.030633856244194 ], [ -163.268188476562671, 62.03917877811908 ], [ -163.286303710937545, 62.044623114056577 ], [ -163.344531249999733, 62.045477606244134 ], [ -163.406372070312386, 62.057391668744167 ], [ -163.469360351562386, 62.082294012494103 ], [ -163.482788085937585, 62.084662176556641 ], [ -163.494506835937699, 62.084344793743988 ], [ -163.556323242187602, 62.075751043744077 ], [ -163.698779296874847, 62.086200262494181 ], [ -163.849291992187233, 62.097479559369106 ], [ -163.879077148437716, 62.108172918744089 ], [ -163.905200195312631, 62.127948309368982 ], [ -163.964892578124989, 62.184271551556662 ], [ -163.974365234374858, 62.196405340619144 ], [ -163.977709960937602, 62.209906317181535 ], [ -163.9713134765625, 62.224627996869067 ], [ -163.957934570312403, 62.237616278119191 ], [ -163.943969726562699, 62.248553778119003 ], [ -163.931445312499847, 62.26076080936911 ], [ -163.92253417968746, 62.27770416874413 ], [ -163.910034179687329, 62.312445379681634 ], [ -163.900390625, 62.32643463749411 ], [ -163.869555664062432, 62.351629949994084 ], [ -163.858764648437756, 62.363544012494124 ], [ -163.852905273437386, 62.378045965619123 ], [ -163.853198242187489, 62.434198309369023 ], [ -163.850463867187329, 62.455926824994286 ], [ -163.851562500000171, 62.462836004681662 ], [ -163.86137695312496, 62.475946356244087 ], [ -163.909106445312233, 62.504217840619226 ], [ -163.920825195312631, 62.518133856244098 ], [ -163.9375, 62.549676824994208 ], [ -163.948413085937716, 62.563836981244023 ], [ -163.966235351562489, 62.576434637494124 ], [ -164.028491210937574, 62.600165106244077 ], [ -164.057910156250102, 62.621283270306584 ], [ -164.106689453124829, 62.675726629681662 ], [ -164.135253906250114, 62.698309637494049 ], [ -164.156176757812375, 62.707342840619049 ], [ -164.178100585937557, 62.712347723431506 ], [ -164.387084960937443, 62.730902410931577 ], [ -164.452807617187602, 62.748407293744073 ], [ -164.481689453125057, 62.745306707806648 ] ], [ [ -152.047851562500227, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.020556640624932, 65.172723699994179 ], [ -151.945117187499903, 65.209784246869148 ], [ -151.919970703124932, 65.216180731244151 ], [ -151.765014648437528, 65.233832098431634 ], [ -151.738891601562301, 65.243768621869066 ], [ -151.713378906250341, 65.249701239056506 ], [ -151.689257812500017, 65.244940496869191 ], [ -151.665283203125085, 65.236151434369106 ], [ -151.640014648437443, 65.230096746869194 ], [ -151.509155273437329, 65.231952215619216 ], [ -151.488647460937813, 65.235174871869077 ], [ -151.46831054687479, 65.242059637494165 ], [ -151.453002929687585, 65.249139715619108 ], [ -151.438842773437443, 65.258124090619219 ], [ -151.426147460937443, 65.270086981244219 ], [ -151.420410156250057, 65.272894598431648 ], [ -151.407031249999932, 65.276239324994208 ], [ -151.367919921874943, 65.279974676556535 ], [ -151.356127929687347, 65.284125067181563 ], [ -151.334228515625171, 65.297796942181606 ], [ -151.322436523437261, 65.302679754681677 ], [ -151.310302734375057, 65.304999090619063 ], [ -151.298388671875102, 65.305487371869035 ], [ -151.286743164062557, 65.304022528119148 ], [ -151.27495117187496, 65.300409246869179 ], [ -151.254272460937329, 65.290790106244145 ], [ -151.243896484375085, 65.287420965619077 ], [ -151.230957031249829, 65.286078192181634 ], [ -151.185546874999943, 65.291205145306748 ], [ -151.150317382812801, 65.305194403119046 ], [ -151.081054687499716, 65.348822332806705 ], [ -151.039550781249773, 65.368768621869165 ], [ -150.921435546875074, 65.405096746869077 ], [ -150.802368164062244, 65.439032293744162 ], [ -150.738403320312358, 65.461493231244191 ], [ -150.668383789062545, 65.495379949994074 ], [ -150.660693359374733, 65.497992254681733 ], [ -150.565966796874761, 65.504217840619219 ], [ -150.409838867187602, 65.514520574994009 ], [ -150.309326171875142, 65.515326239056662 ], [ -150.212280273437443, 65.527606512494103 ], [ -150.185229492187432, 65.540838934369063 ], [ -150.177001953125171, 65.562933660931535 ], [ -150.176025390624943, 65.589789129681748 ], [ -150.170776367187187, 65.617499090619262 ], [ -150.141284179687432, 65.654974676556634 ], [ -150.096240234375188, 65.678290106244063 ], [ -150.045410156250114, 65.686712957806662 ], [ -149.998413085937443, 65.679315496869165 ], [ -149.924975585937688, 65.642889715618935 ], [ -149.896362304687244, 65.638373114056677 ], [ -149.874145507812614, 65.640570379681577 ], [ -149.862304687499886, 65.64772369999416 ], [ -149.818041992187375, 65.712591864056677 ], [ -149.801879882812585, 65.755316473431563 ], [ -149.796069335937347, 65.776874090619103 ], [ -149.811401367187585, 65.793719793744089 ], [ -149.844604492187415, 65.790106512494276 ], [ -149.905688476562375, 65.769720770306634 ], [ -150.023193359374829, 65.764593817181648 ], [ -150.089477539062443, 65.774237371869091 ], [ -150.127124023437602, 65.79982330936906 ], [ -150.08598632812496, 65.818622137494103 ], [ -150.030200195312545, 65.833514715619089 ], [ -149.920410156250028, 65.880194403119148 ], [ -149.894287109374829, 65.890326239056691 ], [ -149.878173828124858, 65.900751043744123 ], [ -149.865722656249829, 65.911395574994231 ], [ -149.851440429687329, 65.920184637494145 ], [ -149.829711914062329, 65.924920965619336 ], [ -149.786987304687841, 65.920843817181549 ], [ -149.70361328125, 65.89362213749412 ], [ -149.660693359375045, 65.887518621869106 ], [ -149.623095703124704, 65.893866278119205 ], [ -149.549365234375159, 65.916083074994148 ], [ -149.511108398437443, 65.915228582806591 ], [ -149.434570312499886, 65.885931707806662 ], [ -149.40666503906229, 65.879095770306662 ], [ -149.355151367187432, 65.874579168744049 ], [ -149.300341796874875, 65.879095770306662 ], [ -149.254809570312375, 65.900580145306634 ], [ -149.231201171875085, 65.94684479374412 ], [ -149.236816406249829, 65.970038153119233 ], [ -149.23503417968746, 65.982440496869089 ], [ -149.221240234374932, 65.987811590619103 ], [ -149.205493164062602, 65.98993561405662 ], [ -149.174194335937472, 65.99933502811912 ], [ -149.159179687500028, 66.001483465619074 ], [ -149.145507812500171, 66.005316473431606 ], [ -149.133471679687574, 66.013617254681577 ], [ -149.119873046874886, 66.020819403119148 ], [ -149.101440429687159, 66.021918035931762 ], [ -149.096069335937415, 66.01947662968162 ], [ -149.08732910156246, 66.011004949994131 ], [ -149.080371093750188, 66.00763580936902 ], [ -149.057128906249886, 66.002142645306648 ], [ -149.045410156250114, 66.000921942181591 ], [ -149.032592773437472, 66.001483465619131 ], [ -149.038745117187602, 66.007635809369106 ], [ -149.020996093749716, 66.007440496869208 ], [ -149.005615234375, 66.008978582806591 ], [ -148.993334960937432, 66.015252996869151 ], [ -148.984741210937528, 66.029413153119094 ], [ -149.016601562499829, 66.055926824994103 ], [ -149.020751953125057, 66.069891668744077 ], [ -148.995288085937233, 66.075946356244216 ], [ -148.941650390625114, 66.067499090619179 ], [ -148.916992187500057, 66.066424871869103 ], [ -148.888549804687727, 66.075946356244074 ], [ -148.871826171874829, 66.085760809369177 ], [ -148.846557617187841, 66.097040106243995 ], [ -148.823486328124972, 66.097113348431677 ], [ -148.803027343749932, 66.053729559369216 ], [ -148.779418945312614, 66.049627996869077 ], [ -148.753833007812489, 66.056708074994077 ], [ -148.73771972656283, 66.070379949994077 ], [ -148.736450195312841, 66.082220770306577 ], [ -148.740771484375188, 66.091864324994134 ], [ -148.7427978515625, 66.101752020306691 ], [ -148.734301757812545, 66.114447332806634 ], [ -148.719360351562329, 66.120721746869222 ], [ -148.697192382812489, 66.123651434369179 ], [ -148.612353515624818, 66.125067449994162 ], [ -148.593188476562489, 66.129217840619177 ], [ -148.573242187500142, 66.138617254681535 ], [ -148.562988281249915, 66.146918035931577 ], [ -148.556933593749989, 66.155340887494191 ], [ -148.552172851562517, 66.16400787968152 ], [ -148.545947265624847, 66.172723699994194 ], [ -148.523803710937415, 66.189325262494151 ], [ -148.485839843750085, 66.207538153119145 ], [ -148.442919921874761, 66.217474676556719 ], [ -148.406005859374886, 66.224676824994148 ], [ -148.330322265624915, 66.210711981244231 ], [ -148.292114257812614, 66.221210028119089 ], [ -148.282470703124972, 66.228290106244202 ], [ -148.261645507812631, 66.251581121869094 ], [ -148.245849609374829, 66.259295965619273 ], [ -148.226196289062273, 66.25954010624416 ], [ -148.134033203125028, 66.245794989056591 ], [ -148.113940429687631, 66.24848053593152 ], [ -148.099853515624659, 66.254584051556748 ], [ -148.073852539062727, 66.270086981244049 ], [ -148.059326171875256, 66.275213934369077 ], [ -148.027099609374716, 66.273553778119123 ], [ -147.967211914062517, 66.247577215619131 ], [ -147.936083984374818, 66.241034246869134 ], [ -147.89702148437496, 66.240790106244191 ], [ -147.878466796874932, 66.242865301556691 ], [ -147.861328125000256, 66.24848053593152 ], [ -147.853808593750216, 66.255243231244052 ], [ -147.848193359375131, 66.263983465619106 ], [ -147.84050292968729, 66.271551824994162 ], [ -147.826538085937614, 66.275213934368992 ], [ -147.770678710937347, 66.252313543744179 ], [ -147.738403320312614, 66.24840729374408 ], [ -147.724121093750142, 66.271795965619077 ], [ -147.709716796875, 66.290301824994103 ], [ -147.677172851562261, 66.287713934369108 ], [ -147.620483398437472, 66.268377996869063 ], [ -147.578979492187528, 66.265887762494131 ], [ -147.583618164062386, 66.283270574994191 ], [ -147.620483398437784, 66.32018463749408 ], [ -147.602294921875057, 66.339544989056549 ], [ -147.56059570312496, 66.347113348431577 ], [ -147.483935546875074, 66.350287176556577 ], [ -147.470507812500159, 66.355047918744035 ], [ -147.44255371093746, 66.368597723431634 ], [ -147.429003906250216, 66.371405340619077 ], [ -147.360107421874744, 66.365668035931762 ], [ -147.302490234374858, 66.36212799686912 ], [ -147.230151367187318, 66.356756903119162 ], [ -147.195971679687261, 66.364569403119262 ], [ -147.191040039062642, 66.36786530155652 ], [ -147.186694335937574, 66.372259832806634 ], [ -147.180053710937159, 66.375995184369131 ], [ -147.168627929687489, 66.377630926556577 ], [ -147.14848632812496, 66.376898504681648 ], [ -147.138232421875045, 66.377801824994123 ], [ -147.133837890624847, 66.381293035931662 ], [ -147.132006835937688, 66.395209051556591 ], [ -147.126953125000085, 66.402533270306577 ], [ -147.110278320312659, 66.415716864056563 ], [ -147.094531250000017, 66.421991278119066 ], [ -147.050048828124915, 66.417547918744091 ], [ -147.031494140624886, 66.419208074994188 ], [ -147.022021484375017, 66.42462799686902 ], [ -146.997314453124858, 66.446478582806662 ], [ -146.968749999999886, 66.465887762494134 ], [ -146.943847656249858, 66.473822332806577 ], [ -146.880297851562375, 66.474432684369077 ], [ -146.843798828124932, 66.479437567181591 ], [ -146.791625976562614, 66.502020574994006 ], [ -146.73491210937479, 66.512713934369245 ], [ -146.558105468750057, 66.527655340619134 ], [ -146.391967773437358, 66.546893621869131 ], [ -146.263964843750045, 66.542743231244089 ], [ -146.2489013671875, 66.545477606244035 ], [ -146.202807617187517, 66.563788153119077 ], [ -146.038818359375085, 66.572943426556634 ], [ -145.998657226562358, 66.581561590619089 ], [ -145.966064453124829, 66.601385809369148 ], [ -145.951049804687727, 66.604681707806662 ], [ -145.880053710937403, 66.597967840619148 ], [ -145.840014648437631, 66.609442449994063 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -152.041015624999943, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.832885742187585, 66.610956121869108 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.825439453125057, 66.610956121869108 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.436938476562545, 62.814813543744094 ], [ -138.448242187500028, 62.825751043744106 ], [ -138.461791992187727, 62.833319403119205 ], [ -138.478881835937216, 62.835956121869145 ], [ -138.548095703125114, 62.83473541874401 ], [ -138.563354492187756, 62.837665106244117 ], [ -138.650561523437233, 62.87665436405667 ], [ -138.675708007812574, 62.883807684369195 ], [ -138.706909179687472, 62.888006903119255 ], [ -138.803588867187443, 62.885809637494148 ], [ -138.819458007812614, 62.888861395306698 ], [ -138.864672851562659, 62.902899481244127 ], [ -138.912524414062432, 62.904608465619184 ], [ -139.0205078125, 62.923211981244208 ], [ -139.159057617187273, 62.926825262494063 ], [ -139.176025390624744, 62.931512762494187 ], [ -139.238403320312528, 62.96300690311913 ], [ -139.286914062500017, 62.972723699994113 ], [ -139.362915039062841, 62.986835028119145 ], [ -139.430957031250102, 63.001410223431598 ], [ -139.495776367187489, 63.014422918744188 ], [ -139.515747070312528, 63.026068426556641 ], [ -139.522827148437443, 63.040155340619094 ], [ -139.516479492187329, 63.050653387494123 ], [ -139.506103515624773, 63.060248114056549 ], [ -139.500610351562386, 63.071844793744077 ], [ -139.510253906250114, 63.107245184369042 ], [ -139.533129882812631, 63.134149481244215 ], [ -139.560180664062557, 63.158075262494123 ], [ -139.582568359375045, 63.184759832806648 ], [ -139.580615234374761, 63.206317449994074 ], [ -139.568408203125045, 63.227484442181677 ], [ -139.519165039062671, 63.252386785931698 ], [ -139.463867187499972, 63.270697332806677 ], [ -139.431762695312528, 63.29401276249417 ], [ -139.436279296874858, 63.315545965619187 ], [ -139.459472656250057, 63.333075262494127 ], [ -139.490283203124704, 63.344916082806591 ], [ -139.517993164062375, 63.349237371869158 ], [ -139.526123046874829, 63.35211823124407 ], [ -139.533447265624943, 63.358954168744226 ], [ -139.545043945312443, 63.372870184369049 ], [ -139.555053710937472, 63.37975494999413 ], [ -139.715454101562273, 63.464178778119148 ], [ -139.740234375, 63.500067449994077 ], [ -139.747680664062699, 63.541034246869152 ], [ -139.759082031249903, 63.565936590619145 ], [ -139.761840820312699, 63.600531317181655 ], [ -139.761035156249932, 63.612005926556591 ], [ -139.757324218750199, 63.619891668744081 ], [ -139.755541992187261, 63.628729559369077 ], [ -139.762133789062659, 63.639276434369066 ], [ -139.770751953125028, 63.649603582806606 ], [ -139.774951171875045, 63.657733465619096 ], [ -139.765136718749886, 63.680365301556613 ], [ -139.722583007812403, 63.705023504681748 ], [ -139.712939453124932, 63.722967840619226 ], [ -139.720874023437517, 63.743475653118942 ], [ -139.736450195312585, 63.76027252811911 ], [ -139.747070312499773, 63.776434637494141 ], [ -139.740234374999972, 63.794940496869245 ], [ -139.75297851562496, 63.818304754681641 ], [ -139.753833007812318, 63.831854559369162 ], [ -139.725952148437557, 63.863153387494037 ], [ -139.738085937500045, 63.878436590619167 ], [ -139.737670898437443, 63.89874909061907 ], [ -139.728930664062375, 63.919305731244151 ], [ -139.716308593749943, 63.935174871869165 ], [ -139.711596679687432, 63.944110418744103 ], [ -139.7098388671875, 63.965887762494091 ], [ -139.703002929687642, 63.97614166874412 ], [ -139.689331054687585, 63.985052801556598 ], [ -139.611572265624943, 64.011493231244188 ], [ -139.542480468750057, 64.025580145306606 ], [ -139.507495117187602, 64.027655340619106 ], [ -139.48442382812496, 64.034613348431577 ], [ -139.465820312500171, 64.051459051556478 ], [ -139.454223632812273, 64.071844793744177 ], [ -139.452270507812329, 64.089715887494151 ], [ -139.473315429687602, 64.123895574994123 ], [ -139.4942626953125, 64.144232489056634 ], [ -139.506274414062659, 64.153021551556549 ], [ -139.521118164062557, 64.161444403119091 ], [ -139.543090820312443, 64.170770574994222 ], [ -139.551757812500028, 64.177606512494094 ], [ -139.559741210937602, 64.201678778119103 ], [ -139.570727539062602, 64.207635809369123 ], [ -139.584350585937614, 64.211786199994023 ], [ -139.596850585937375, 64.219427801556662 ], [ -139.600341796874858, 64.226752020306634 ], [ -139.604125976562386, 64.245672918744177 ], [ -139.609863281250057, 64.254217840619063 ], [ -139.625488281250085, 64.261175848431606 ], [ -139.645874023437301, 64.262567449994179 ], [ -139.685595703125216, 64.260443426556492 ], [ -139.760424804687545, 64.26703522343162 ], [ -139.798266601562318, 64.275653387494188 ], [ -139.829589843750028, 64.288397528119063 ], [ -139.853198242187403, 64.310126043744205 ], [ -139.863085937500045, 64.315008856244106 ], [ -139.88041992187496, 64.315301824994179 ], [ -139.911010742187614, 64.304632879681606 ], [ -139.92583007812479, 64.301385809369179 ], [ -139.946166992187415, 64.304144598431606 ], [ -139.952807617187489, 64.312372137494151 ], [ -139.954467773437642, 64.322137762494066 ], [ -139.959960937500114, 64.329364324994131 ], [ -139.976196289062528, 64.332538153119131 ], [ -140.032763671875188, 64.330145574994063 ], [ -140.106079101562528, 64.33209869999412 ], [ -140.168627929687403, 64.339471746869108 ], [ -140.251831054687301, 64.357123114056691 ], [ -140.337939453125159, 64.378534246869037 ], [ -140.447387695312557, 64.390570379681662 ], [ -140.519409179687671, 64.402899481244035 ], [ -140.532763671875131, 64.418036199994091 ], [ -140.521044921875074, 64.445990301556563 ], [ -140.503955078124903, 64.460882879681677 ], [ -140.461425781250171, 64.482245184369091 ], [ -140.442553710937261, 64.496893621869219 ], [ -140.438476562500028, 64.507196356244094 ], [ -140.43999023437479, 64.519720770306719 ], [ -140.446289062500057, 64.530340887494191 ], [ -140.456469726562716, 64.534735418744063 ], [ -140.510058593750045, 64.532245184369074 ], [ -140.521044921874875, 64.527948309369179 ], [ -140.557373046875, 64.516180731244134 ], [ -140.578125, 64.513373114056648 ], [ -140.593383789062386, 64.518011785931662 ], [ -140.605029296874875, 64.530707098431662 ], [ -140.607421874999972, 64.538934637494094 ], [ -140.605346679687699, 64.546991278119037 ], [ -140.603637695312443, 64.558954168744151 ], [ -140.621020507812204, 64.572577215619134 ], [ -140.7044677734375, 64.559686590619066 ], [ -140.733325195312375, 64.569525457806691 ], [ -140.720092773437727, 64.588324285931535 ], [ -140.705371093750045, 64.603949285931549 ], [ -140.701586914062716, 64.617621160931563 ], [ -140.720947265624858, 64.630975653119137 ], [ -140.754028320312642, 64.633319403119089 ], [ -140.820434570312329, 64.616400457806719 ], [ -140.850634765624932, 64.624139715619208 ], [ -140.895019531249801, 64.654852606244191 ], [ -140.898071289062614, 64.66051666874408 ], [ -140.899047851562585, 64.667596746869094 ], [ -140.898437500000171, 64.68219635624412 ], [ -140.904785156250114, 64.687323309369106 ], [ -140.919238281250102, 64.690252996869106 ], [ -141.008300781249943, 64.692450262494091 ], [ -141.0421142578125, 64.704779364056563 ], [ -141.052978515625, 64.706732489056648 ], [ -141.067504882812557, 64.713641668744103 ], [ -141.066406249999886, 64.729681707806662 ], [ -141.059448242187329, 64.747919012494222 ], [ -141.05668945312479, 64.761297918744177 ], [ -141.086914062500028, 64.780951239056591 ], [ -141.186694335937545, 64.792840887494137 ], [ -141.200073242187472, 64.815936590619145 ], [ -141.181201171874989, 64.837103582806549 ], [ -141.121704101562727, 64.864081121868978 ], [ -141.103881835937671, 64.884222723431535 ], [ -141.153247070312631, 64.894842840619063 ], [ -141.203491210937273, 64.898504949994177 ], [ -141.208129882812386, 64.904901434369179 ], [ -141.203906250000074, 64.919134832806648 ], [ -141.193286132812432, 64.939471746869188 ], [ -141.188964843749773, 64.945672918744123 ], [ -141.1826171875, 64.952337957806648 ], [ -141.181518554687671, 64.95778229374406 ], [ -141.192993164062528, 64.959979559369103 ], [ -141.217529296874886, 64.960809637494222 ], [ -141.229858398437301, 64.95997955936916 ], [ -141.259936523437432, 64.951239324994177 ], [ -141.302783203125159, 64.945257879681577 ], [ -141.319580078125199, 64.93605377811906 ], [ -141.335693359374915, 64.92975494999412 ], [ -141.356372070312347, 64.932318426556705 ], [ -141.375122070312329, 64.940985418744177 ], [ -141.385058593750074, 64.953143621869074 ], [ -141.383471679687261, 64.967840887494162 ], [ -141.373779296875171, 64.97833893436902 ], [ -141.362915039062699, 64.987372137494077 ], [ -141.3577880859375, 64.997503973431606 ], [ -141.358447265624903, 65.010614324994151 ], [ -141.360473632812273, 65.022040106244162 ], [ -141.363891601562329, 65.032049871869191 ], [ -141.368579101562545, 65.040716864056549 ], [ -141.376464843750142, 65.05055573124406 ], [ -141.386352539062671, 65.059393621869063 ], [ -141.411621093749943, 65.076190496869145 ], [ -141.407275390625159, 65.092718817181577 ], [ -141.416430664062631, 65.101141668744063 ], [ -141.432421875000102, 65.104266668744003 ], [ -141.4716796875, 65.107440496869117 ], [ -141.515307617187688, 65.120868231244017 ], [ -141.578613281250142, 65.15094635624402 ], [ -141.594848632812386, 65.15368073124408 ], [ -141.617919921874915, 65.152899481244148 ], [ -141.625244140625114, 65.153753973431563 ], [ -141.632568359374829, 65.156561590619148 ], [ -141.646411132812631, 65.16491119999408 ], [ -141.653564453124943, 65.168036199994205 ], [ -141.689453125000227, 65.17872955936906 ], [ -141.744677734374818, 65.204046942181748 ], [ -141.774902343749886, 65.214056707806662 ], [ -141.805175781249773, 65.215521551556634 ], [ -141.866577148437699, 65.20844147343162 ], [ -141.884521484374972, 65.210809637494123 ], [ -141.898437499999829, 65.219671942181677 ], [ -141.923950195312273, 65.243280340619179 ], [ -141.970263671875159, 65.26532623905652 ], [ -141.984252929687614, 65.275824285931577 ], [ -141.991992187499932, 65.287176824994106 ], [ -142.004516601562358, 65.313348699994108 ], [ -142.012451171875142, 65.321893621869066 ], [ -142.041381835937301, 65.330145574994134 ], [ -142.051757812500028, 65.33131744999406 ], [ -142.083300781250216, 65.33014557499402 ], [ -142.191894531249858, 65.347772528119194 ], [ -142.239428710937545, 65.349139715619074 ], [ -142.323242187499744, 65.344256903119174 ], [ -142.40739746093746, 65.354022528119174 ], [ -142.451220703124903, 65.347723699994148 ], [ -142.465454101562329, 65.348578192181762 ], [ -142.481860351562375, 65.355536199994191 ], [ -142.511230468750114, 65.37897369999412 ], [ -142.526733398437415, 65.38873932499412 ], [ -142.553393554687489, 65.398456121869103 ], [ -142.583056640625159, 65.404730535931577 ], [ -142.613208007812574, 65.406439520306577 ], [ -142.641284179687403, 65.402460028119222 ], [ -142.662646484374932, 65.394720770306691 ], [ -142.725463867187614, 65.363959051556549 ], [ -142.743164062500227, 65.358465887494035 ], [ -142.779663085937671, 65.352606512494077 ], [ -142.8299560546875, 65.350043035931606 ], [ -142.953979492187358, 65.374042059369174 ], [ -143.031054687499989, 65.381219793744108 ], [ -143.099975585937557, 65.378119207806591 ], [ -143.165283203125142, 65.384588934369106 ], [ -143.265625000000171, 65.380438543744006 ], [ -143.287646484374818, 65.382342840619145 ], [ -143.311035156249886, 65.380438543744177 ], [ -143.354248046875085, 65.364276434369117 ], [ -143.376586914062528, 65.361444403119094 ], [ -143.430053710937699, 65.369330145306563 ], [ -143.506103515625028, 65.394598699994134 ], [ -143.529541015625, 65.405585028119134 ], [ -143.557666015624761, 65.428827215619151 ], [ -143.56767578124979, 65.432318426556705 ], [ -143.585937499999886, 65.434515692181648 ], [ -143.621826171874858, 65.444354559369188 ], [ -143.659667968750057, 65.448602606244094 ], [ -143.666015625000171, 65.454291082806591 ], [ -143.667846679687614, 65.46295807499412 ], [ -143.712329101562517, 65.530877996869137 ], [ -143.711059570312472, 65.541522528119131 ], [ -143.737963867187432, 65.547479559369037 ], [ -143.810717773437375, 65.589960028119151 ], [ -143.848559570312688, 65.597723699993963 ], [ -143.978930664062659, 65.589960028119123 ], [ -143.991748046875159, 65.59210846561912 ], [ -144.002001953124932, 65.597601629681662 ], [ -144.021362304687443, 65.612127996869191 ], [ -144.064379882812631, 65.62946198124402 ], [ -144.078295898437688, 65.636981512494046 ], [ -144.090502929687545, 65.647162176556506 ], [ -144.116259765625216, 65.676532293744046 ], [ -144.123706054687489, 65.690204168744103 ], [ -144.118774414062273, 65.723211981244148 ], [ -144.089038085937744, 65.750799871869049 ], [ -144.018481445312489, 65.789862371869134 ], [ -144.018310546874943, 65.798041082806648 ], [ -144.0216064453125, 65.804877020306591 ], [ -144.025927734374875, 65.811395574994151 ], [ -144.028808593750028, 65.818719793744052 ], [ -144.027343750000085, 65.82970612186908 ], [ -144.020751953125142, 65.836127020306549 ], [ -144.012133789062347, 65.841180731244222 ], [ -144.004443359375017, 65.84826080936908 ], [ -144.000854492187329, 65.857196356244145 ], [ -144.001586914062358, 65.865668035931719 ], [ -144.005371093750057, 65.87384674686912 ], [ -144.022583007812301, 65.89545319218162 ], [ -144.063964843749915, 65.932562567181691 ], [ -144.159301757812557, 65.962958074994134 ], [ -144.173828124999972, 65.97760651249412 ], [ -144.172729492187585, 65.986639715619162 ], [ -144.168017578124903, 66.001581121869137 ], [ -144.166992187499886, 66.011346746869108 ], [ -144.175219726562602, 66.019159246869052 ], [ -144.194091796875057, 66.024359442181492 ], [ -144.303710937499829, 66.036200262494106 ], [ -144.342211914062659, 66.046210028119077 ], [ -144.358764648437443, 66.06666901249416 ], [ -144.366137695312602, 66.087591864056591 ], [ -144.38420410156246, 66.103705145306634 ], [ -144.427661132812403, 66.124335028119162 ], [ -144.492431640625057, 66.137958074994074 ], [ -144.524047851562244, 66.149359442181705 ], [ -144.53752441406246, 66.169378973431648 ], [ -144.542651367187375, 66.181097723431733 ], [ -144.555224609375244, 66.18488190311902 ], [ -144.570727539062602, 66.185809637494032 ], [ -144.58500976562479, 66.189520574994219 ], [ -144.653125, 66.221795965619123 ], [ -144.660400390624886, 66.227362371869205 ], [ -144.662768554687659, 66.230658270306662 ], [ -144.665649414062443, 66.237811590619103 ], [ -144.667846679687301, 66.241034246869162 ], [ -144.685302734374829, 66.258734442181648 ], [ -144.696777343749972, 66.265643621869131 ], [ -144.723315429687574, 66.270331121869049 ], [ -144.733642578125142, 66.275653387493989 ], [ -144.752929687500114, 66.292596746869009 ], [ -144.765747070312301, 66.300482489056677 ], [ -144.811279296874886, 66.30934479374416 ], [ -144.829711914062443, 66.32350494999416 ], [ -144.86333007812479, 66.363153387494137 ], [ -144.892382812499989, 66.375506903119103 ], [ -144.892700195312614, 66.384833074994006 ], [ -144.886962890625114, 66.402411199994106 ], [ -144.894824218750159, 66.411737371869037 ], [ -144.913085937499943, 66.415716864056677 ], [ -144.947802734374989, 66.419208074994074 ], [ -144.987182617187642, 66.436224676556421 ], [ -145.060180664062642, 66.44891998905662 ], [ -145.103027343749915, 66.471747137494177 ], [ -145.165942382812517, 66.485052801556634 ], [ -145.194824218750142, 66.494940496869077 ], [ -145.233276367187329, 66.510858465619179 ], [ -145.277343750000199, 66.534979559369006 ], [ -145.290454101562574, 66.546454168744063 ], [ -145.301074218749847, 66.56642487186916 ], [ -145.326904296874829, 66.578558660931733 ], [ -145.358569335937716, 66.584051824994077 ], [ -145.452880859374886, 66.581561590619202 ], [ -145.510498046875199, 66.57970612186908 ], [ -145.5347900390625, 66.582879949994094 ], [ -145.62028808593729, 66.592718817181662 ], [ -145.720825195312273, 66.607611395306691 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -138.432421875000102, 62.811224676556471 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.413134765625131, 62.801288153119216 ], [ -138.4256591796875, 62.806341864056719 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.412646484375074, 62.803656317181577 ], [ -138.401709573301076, 62.800728094671811 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.394409179687699, 62.79877350468162 ], [ -138.376098632812557, 62.796820379681655 ], [ -138.356201171875171, 62.797430731244013 ], [ -138.201538085937386, 62.827167059369231 ], [ -138.147753906249932, 62.829706121869201 ], [ -138.038134765625045, 62.821234442181563 ], [ -137.941455078125102, 62.814569403119037 ], [ -137.878344726562347, 62.802997137494067 ], [ -137.847583007812403, 62.801947332806698 ], [ -137.817138671874943, 62.805780340619208 ], [ -137.754077148437602, 62.824969793744181 ], [ -137.721679687499773, 62.828973699994172 ], [ -137.633959960937204, 62.827215887494134 ], [ -137.574633789062489, 62.814813543744009 ], [ -137.554443359374943, 62.815130926556634 ], [ -137.518798828125028, 62.821405340619194 ], [ -137.499560546874648, 62.822284246869039 ], [ -137.484545898437318, 62.818548895306456 ], [ -137.454711914062301, 62.804315496869208 ], [ -137.350512695312631, 62.773871160931691 ], [ -137.326293945312784, 62.773797918744123 ], [ -137.30827636718746, 62.767523504681648 ], [ -137.294116210937318, 62.739081121869084 ], [ -137.275268554687443, 62.723407293744131 ], [ -137.242236328125074, 62.706415106244044 ], [ -137.206665039062528, 62.695624090619226 ], [ -137.138598632812574, 62.685565496869152 ], [ -137.071582031249875, 62.657342840619201 ], [ -137.026977539062244, 62.648309637494116 ], [ -136.978808593749733, 62.629217840619233 ], [ -136.903686523437528, 62.609442449993914 ], [ -136.876513671874847, 62.598895574994152 ], [ -136.852587890625216, 62.58466217655662 ], [ -136.804565429687472, 62.545843817181783 ], [ -136.755908203125131, 62.506537176556634 ], [ -136.742309570312386, 62.499579168744035 ], [ -136.738769531250284, 62.496771551556655 ], [ -136.739062500000131, 62.49054596561912 ], [ -136.740283203124704, 62.483514715619066 ], [ -136.739184570312204, 62.478461004681506 ], [ -136.732836914062631, 62.473407293744145 ], [ -136.673583984375057, 62.450384832806492 ], [ -136.663452148437813, 62.444891668744127 ], [ -136.621704101562699, 62.412616278119138 ], [ -136.598193359374818, 62.401068426556655 ], [ -136.548999023437545, 62.39472077030667 ], [ -136.532836914062614, 62.390008856244002 ], [ -136.505859375000171, 62.376654364056606 ], [ -136.504272460937585, 62.374139715619243 ], [ -136.503588867187375, 62.370184637494184 ], [ -136.502368164062688, 62.365838934369236 ], [ -136.498950195312602, 62.362372137493971 ], [ -136.490405273437432, 62.358417059369081 ], [ -136.48271484374996, 62.356561590619265 ], [ -136.464233398437472, 62.355536199994162 ], [ -136.453247070312671, 62.356952215619138 ], [ -136.444213867187443, 62.360052801556535 ], [ -136.434985351562688, 62.361835028119039 ], [ -136.423583984375, 62.358954168744098 ], [ -136.404711914062489, 62.350531317181677 ], [ -136.399658203125, 62.349310614056478 ], [ -136.393603515625131, 62.344989324994032 ], [ -136.38139648437496, 62.325751043744184 ], [ -136.375781249999818, 62.32140534061913 ], [ -136.341796875000199, 62.31471588749411 ], [ -136.350634765625244, 62.299505926556755 ], [ -136.389770507812614, 62.27301666874407 ], [ -136.383911132812415, 62.266376043744096 ], [ -136.355346679687642, 62.249139715619208 ], [ -136.344726562499773, 62.245672918744084 ], [ -136.341113281250102, 62.241400457806741 ], [ -136.345458984375, 62.231634832806733 ], [ -136.355590820312756, 62.214960028119158 ], [ -136.355834960937557, 62.193060614056641 ], [ -136.359008789062585, 62.177679754681506 ], [ -136.369018554687329, 62.166620184369172 ], [ -136.389770507812557, 62.157538153119091 ], [ -136.370898437500273, 62.151678778119106 ], [ -136.331787109374801, 62.145770574994103 ], [ -136.313720703125171, 62.139520574994044 ], [ -136.304931640625, 62.13202545780657 ], [ -136.288696289062557, 62.112982489056655 ], [ -136.279589843750131, 62.109149481243975 ], [ -136.266845703125057, 62.112250067181542 ], [ -136.261596679687642, 62.119330145306719 ], [ -136.257739257812688, 62.126410223431527 ], [ -136.248901367187614, 62.129584051556549 ], [ -136.232421874999972, 62.129217840619198 ], [ -136.222778320312443, 62.127142645306584 ], [ -136.215869140625159, 62.122088934369224 ], [ -136.207885742187784, 62.112860418744127 ], [ -136.1966552734375, 62.107440496869266 ], [ -136.182299804687318, 62.109198309369049 ], [ -136.156372070312329, 62.119696356244191 ], [ -136.147875976562204, 62.118670965619117 ], [ -136.134814453125188, 62.099676824994134 ], [ -136.121948242187216, 62.094842840619101 ], [ -136.057055664062688, 62.094842840619073 ], [ -136.041137695312443, 62.091742254681684 ], [ -136.023120117187432, 62.078070379681577 ], [ -136.004394531250142, 62.073016668744188 ], [ -135.991577148437443, 62.063910223431613 ], [ -135.98503417968746, 62.061346746869091 ], [ -135.957763671874858, 62.06134674686912 ], [ -135.952880859374829, 62.062323309369148 ], [ -135.937548828125074, 62.067645574994117 ], [ -135.929809570312699, 62.068182684369098 ], [ -135.929199218749716, 62.065375067181634 ], [ -135.920825195312432, 62.051629949994016 ], [ -135.916796874999989, 62.047674871869184 ], [ -135.887451171875142, 62.037713934369201 ], [ -135.810961914062318, 62.024359442181634 ], [ -135.779589843749818, 62.02655670780657 ], [ -135.706787109375, 62.057318426556513 ], [ -135.676562500000102, 62.061346746869177 ], [ -135.614746093749886, 62.062860418744101 ], [ -135.567919921874818, 62.05683014530657 ], [ -135.560546874999886, 62.053900457806613 ], [ -135.55961914062496, 62.050360418744319 ], [ -135.561279296874972, 62.037787176556478 ], [ -135.560546874999829, 62.034002996869191 ], [ -135.504809570312602, 62.006170965619212 ], [ -135.4415283203125, 61.992132879681549 ], [ -135.313476562500398, 61.978778387494152 ], [ -135.285815429687716, 61.971014715619049 ], [ -135.232299804687642, 61.948675848431662 ], [ -135.204223632812585, 61.944037176556506 ], [ -135.145996093749829, 61.946600653119283 ], [ -135.128540039062273, 61.944037176556591 ], [ -135.123779296875057, 61.934588934369039 ], [ -135.119384765624915, 61.927923895306606 ], [ -135.114257812499773, 61.924139715619113 ], [ -135.106494140625301, 61.924017645306613 ], [ -135.094409179687602, 61.929022528119155 ], [ -135.087524414062671, 61.930365301556684 ], [ -135.014648437500227, 61.932806707806648 ], [ -134.990527343749932, 61.930438543744025 ], [ -134.972412109374943, 61.924017645306499 ], [ -134.952270507812756, 61.911444403119148 ], [ -134.935961914062318, 61.89496491093152 ], [ -134.928833007812642, 61.876654364056769 ], [ -134.940722656249818, 61.853045965619089 ], [ -134.965698242187244, 61.841669012494151 ], [ -134.984008789062443, 61.827582098431641 ], [ -134.976318359374915, 61.795721746869226 ], [ -134.954516601562318, 61.766913153119219 ], [ -134.877368164062432, 61.689642645306463 ], [ -134.855224609374972, 61.648553778119037 ], [ -134.864746093749801, 61.625848699994158 ], [ -134.890136718750114, 61.604559637493935 ], [ -134.915527343749687, 61.567889715619046 ] ], [ [ -138.398193359374801, 62.80055573124401 ], [ -138.401709573301076, 62.800728094671811 ] ] ] } } -] -} diff --git a/examples/data/origdata/us-state-capitals.geojson b/examples/data/origdata/us-state-capitals.geojson deleted file mode 100644 index baefc08..0000000 --- a/examples/data/origdata/us-state-capitals.geojson +++ /dev/null @@ -1,57 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "us-state-capitals", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, -{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, -{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, -{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, -{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, -{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, -{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, -{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, -{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, -{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": 467610.0 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, -{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": 50008.0 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, -{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, -{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, -{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, -{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, -{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, -{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, -{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, -{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": 191972.0 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, -{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, -{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": 119883.0 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, -{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": 193187.0 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, -{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, -{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, -{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, -{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, -{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, -{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, -{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, -{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, -{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, -{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, -{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, -{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, -{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, -{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, -{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, -{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, -{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, -{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, -{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, -{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, -{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, -{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, -{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, -{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, -{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, -{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } -] -} diff --git a/examples/data/origdata/us-states.geojson b/examples/data/origdata/us-states.geojson deleted file mode 100644 index a229aa0..0000000 --- a/examples/data/origdata/us-states.geojson +++ /dev/null @@ -1,58 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "us-states", -"features": [ -{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, -{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, -{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, -{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, -{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, -{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, -{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, -{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, -{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, -{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, -{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, -{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, -{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, -{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, -{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, -{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, -{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, -{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, -{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, -{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, -{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, -{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, -{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, -{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, -{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, -{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, -{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, -{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, -{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, -{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, -{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, -{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, -{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, -{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, -{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, -{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, -{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, -{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, -{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, -{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } -] -} diff --git a/examples/data/points_gas.geojson b/examples/data/points_gas.geojson index 0b31f89..5dfa2d2 100644 --- a/examples/data/points_gas.geojson +++ b/examples/data/points_gas.geojson @@ -2,97 +2,97 @@ "type": "FeatureCollection", "name": "points_gas", "features": [ -{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO", "random": 167.25 }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, -{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": null, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille", "random": 70.116 }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, -{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC", "random": 27.214 }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, -{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI", "random": 183.668 }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, -{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI", "random": 187.13 }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, -{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE", "random": 171.639 }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, -{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": null, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total", "random": 83.772 }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, -{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE", "random": 58.454 }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, -{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": null, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)", "random": 10.663 }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, -{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE", "random": 116.907 }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, -{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia", "random": 144.413 }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, -{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE", "random": 14.386 }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, -{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": null, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS", "random": 163.292 }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, -{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA", "random": 39.404 }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, -{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne", "random": 171.194 }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, -{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI", "random": 177.388 }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, -{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS", "random": 62.515 }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, -{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS", "random": 45.136 }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, -{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA", "random": 169.228 }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, -{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI", "random": 107.308 }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA", "random": 122.717 }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, -{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": null, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique", "random": 196.891 }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, -{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI", "random": 88.823 }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, -{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS", "random": 104.21 }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, -{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti", "random": 167.605 }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, -{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade", "random": 137.431 }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, -{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS", "random": 135.052 }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, -{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles", "random": 33.639 }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, -{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL", "random": 135.529 }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, -{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": null, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA", "random": 197.637 }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, -{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto", "random": 180.783 }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, -{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines", "random": 187.914 }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS", "random": 167.112 }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, -{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": null, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES", "random": 173.713 }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, -{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA", "random": 122.96 }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, -{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi", "random": 91.231 }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, -{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL", "random": 29.082 }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, -{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO", "random": 14.667 }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, -{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL", "random": 106.538 }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, -{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José", "random": 163.73 }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, -{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS", "random": 24.453 }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, -{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres", "random": 82.133 }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, -{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS", "random": 112.336 }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, -{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": null, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO", "random": 88.062 }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, -{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE", "random": 117.055 }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, -{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT", "random": 104.102 }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, -{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse", "random": 83.37 }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, -{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA", "random": 166.936 }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, -{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO", "random": 117.176 }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, -{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc", "random": 195.249 }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, -{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia", "random": 154.351 }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, -{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée", "random": 154.165 }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, -{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA", "random": 34.07 }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, -{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI", "random": 121.578 }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, -{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA", "random": 106.4 }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, -{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL", "random": 48.732 }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, -{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES", "random": 48.276 }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, -{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI", "random": 75.456 }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, -{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD", "random": 158.749 }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, -{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN", "random": 192.858 }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, -{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS", "random": 57.346 }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, -{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST", "random": 197.858 }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, -{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": null, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL", "random": 150.61 }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, -{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES", "random": 34.291 }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, -{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM", "random": 110.832 }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, -{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ", "random": 11.917 }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, -{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques", "random": 22.995 }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, -{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI", "random": 111.82 }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, -{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE", "random": 163.84 }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, -{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI", "random": 162.204 }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, -{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE", "random": 132.828 }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, -{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI", "random": 130.099 }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES", "random": 101.294 }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, -{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE", "random": 129.018 }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, -{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA", "random": 56.879 }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, -{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE", "random": 176.101 }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, -{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": null, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO", "random": 164.773 }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, -{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël", "random": 117.793 }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, -{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS", "random": 142.762 }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, -{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION", "random": 25.906 }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, -{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2", "random": 93.187 }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, -{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": null, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare", "random": 88.919 }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, -{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO", "random": 21.802 }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, -{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI", "random": 191.802 }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, -{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal", "random": 46.643 }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, -{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH", "random": 191.087 }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, -{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI", "random": 113.896 }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, -{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": null, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari", "random": 108.416 }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, -{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": null, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA", "random": 51.388 }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, -{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André", "random": 182.804 }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, -{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA", "random": 24.984 }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, -{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution", "random": 166.568 }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } +{ "type": "Feature", "properties": { "id": "20167006", "cp": "20167", "pop": "R", "address": "RN 194", "city": "MEZZAVIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98", "GPLc", "E85", "GPLc", "SP98", "E10" ], "update": "2022-02-16T12:41:13+01:00", "price_gazole": 1.831, "price_sp95": 1.91, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Lavage manuel", "Vente de pétrole lampant", "Bornes électriques", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "RELAIS ACQUALONGA ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.77496168155, 41.951990699900001 ] } }, +{ "type": "Feature", "properties": { "id": "20600005", "cp": "20600", "pop": "R", "address": "Avenue de la Libération", "city": "BASTIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2021-02-01T11:26:16+01:00", "price_gazole": 1.43, "price_sp95": 1.53, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Restauration à emporter", "Toilettes publiques", "Bar", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)", "Lavage automatique", "Lavage manuel", "Vente de pétrole lampant" ], "brand": "VITO", "name": "M. BARTOLI Camille" }, "geometry": { "type": "Point", "coordinates": [ 9.44404, 42.68138 ] } }, +{ "type": "Feature", "properties": { "id": "20250006", "cp": "20250", "pop": "R", "address": "FAUBOURG SAINT ANTOINE", "city": "CORTE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "SP98", "E85", "E10", "GPLc" ], "update": "2020-08-23T12:42:01+02:00", "price_gazole": 1.38, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "SARL PADC" }, "geometry": { "type": "Point", "coordinates": [ 9.15212, 42.30111 ] } }, +{ "type": "Feature", "properties": { "id": "20137003", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "SP98" ], "update": "2020-06-16T15:05:48+02:00", "price_gazole": 1.37, "price_sp95": 1.46, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Boutique non alimentaire", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Piste poids lourds", "Lavage manuel" ], "brand": "Total", "name": "SARL Ets CUCCHI" }, "geometry": { "type": "Point", "coordinates": [ 9.27903, 41.59484 ] } }, +{ "type": "Feature", "properties": { "id": "20220004", "cp": "20220", "pop": "R", "address": "9, Place Paoli", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "GPLc", "E85", "SP98", "E10" ], "update": "2020-03-13T09:16:58+01:00", "price_gazole": 1.46, "price_sp95": 1.56, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Carburant additivé", "Boutique alimentaire", "Boutique non alimentaire", "Vente de gaz domestique (Butane, Propane)", "Relais colis", "Vente de pétrole lampant", "Vente d'additifs carburants" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS PASQUALE PAOLI" }, "geometry": { "type": "Point", "coordinates": [ 8.93806, 42.63469 ] } }, +{ "type": "Feature", "properties": { "id": "20218006", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-10-07T09:46:44+02:00", "price_gazole": 1.864, "price_sp95": 0.001622, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "SARL LE RELAIS DU SAN PEDRONE" }, "geometry": { "type": "Point", "coordinates": [ 9.207259614570001, 42.460062362099997 ] } }, +{ "type": "Feature", "properties": { "id": "20230006", "cp": "20230", "pop": "R", "address": "RN 198", "city": "SAN-NICOLAO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-03T08:00:04+02:00", "price_gazole": 1.785, "price_sp95": 0.001935, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "Station Total" }, "geometry": { "type": "Point", "coordinates": [ 9.492706617030001, 42.368092870600002 ] } }, +{ "type": "Feature", "properties": { "id": "20260002", "cp": "20260", "pop": "R", "address": "Station TOTAL - relais de la balagne", "city": "CALVI", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:05:00+02:00", "price_gazole": 1.81, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL d'Exploitation du Relais de BALAGNE" }, "geometry": { "type": "Point", "coordinates": [ 8.75541, 42.56429 ] } }, +{ "type": "Feature", "properties": { "id": "20620002", "cp": "20620", "pop": "R", "address": "Route de Rutali", "city": "BIGUGLIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-06-12T16:21:36+02:00", "price_gazole": 1.81, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION D'ORTALE N°4 ( ESSO)" }, "geometry": { "type": "Point", "coordinates": [ 9.43703941237, 42.593599668099998 ] } }, +{ "type": "Feature", "properties": { "id": "20270001", "cp": "20270", "pop": "R", "address": "ROUTE N 198", "city": "ALÉRIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "E10" ], "update": "2023-06-30T11:36:35+02:00", "price_gazole": 1.72, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage manuel", "Services réparation", "entretien" ], "brand": "VITO", "name": "STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 9.51366606313, 42.114768875899998 ] } }, +{ "type": "Feature", "properties": { "id": "20090004", "cp": "20000", "pop": "R", "address": "avenue napoleon III", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-22T16:06:45+02:00", "price_gazole": 1.798, "price_sp95": 0.001953, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp la madunuccia" }, "geometry": { "type": "Point", "coordinates": [ 8.73421, 41.92471 ] } }, +{ "type": "Feature", "properties": { "id": "20118001", "cp": "20118", "pop": "R", "address": "Résidence de la Plage - RD 81", "city": "SAGONE", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-13T07:19:40+02:00", "price_gazole": 1.74, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL RELAIS DU PONT DE SAGONE" }, "geometry": { "type": "Point", "coordinates": [ 8.691546940589999, 42.116640453 ] } }, +{ "type": "Feature", "properties": { "id": "20235001", "cp": "20235", "pop": "R", "address": "Ponte Novu", "city": "CASTELLO-DI-ROSTINO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85" ], "update": "2023-06-12T06:29:35+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL GATT ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.28306, 42.4882 ] } }, +{ "type": "Feature", "properties": { "id": "20250002", "cp": "20250", "pop": "R", "address": "Avenue de la République", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-05-25T14:33:20+02:00", "price_gazole": 1.81, "price_sp95": 0.00199, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL DE L ORTA" }, "geometry": { "type": "Point", "coordinates": [ 9.15173144133, 42.313507046200002 ] } }, +{ "type": "Feature", "properties": { "id": "20147001", "cp": "20147", "pop": "R", "address": "Trajinu", "city": "SERRIERA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "E10", "GPLc" ], "update": "2023-07-02T23:41:33+02:00", "price_gazole": 1.799, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Station de gonflage", "Carburant additivé", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "Mme bertolani evelyne" }, "geometry": { "type": "Point", "coordinates": [ 8.70022653959, 42.289300739200002 ] } }, +{ "type": "Feature", "properties": { "id": "20240004", "cp": "20240", "pop": "R", "address": "1680 avenue du 9 Septembre - Lotissement Feminiccia - RN 198", "city": "GHISONACCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-04T11:31:49+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Esso", "name": "ESSO SERVICES BENASSI" }, "geometry": { "type": "Point", "coordinates": [ 9.411276343080001, 42.0223511652 ] } }, +{ "type": "Feature", "properties": { "id": "20250001", "cp": "20250", "pop": "R", "address": "RT 20", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T10:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "PANCRAZI JL ET FILS SAS" }, "geometry": { "type": "Point", "coordinates": [ 9.157517895590001, 42.301790177100003 ] } }, +{ "type": "Feature", "properties": { "id": "20167002", "cp": "20167", "pop": "R", "address": "T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "SP98", "E10" ], "update": "2023-03-31T11:05:30+02:00", "price_gazole": 1.81, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": 0.001285, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL PIETRI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.828400426849999, 42.024258382200003 ] } }, +{ "type": "Feature", "properties": { "id": "20214001", "cp": "20214", "pop": "R", "address": "RUE U FONDU", "city": "CALENZANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-07T09:59:52+02:00", "price_gazole": 1.9, "price_sp95": 0.001685, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Automate CB 24", "24" ], "brand": "Esso", "name": "STATION SERVICE ESSO CALENZANA" }, "geometry": { "type": "Point", "coordinates": [ 8.8526, 42.50753 ] } }, +{ "type": "Feature", "properties": { "id": "20100005", "cp": "20100", "pop": "R", "address": "Ld bellagamba", "city": "SARTENE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T20:12:51+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CANGIONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20160001", "cp": "20160", "pop": "R", "address": "Cours Joseph Colonna", "city": "VICO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Lundi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mardi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Mercredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Samedi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "12.30", "ouvert": 1, "ouverture": "08.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:31:59+02:00", "price_gazole": 1.818, "price_sp95": 0.001984, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis" ], "brand": "Esso", "name": "FIESCHI SANDRA" }, "geometry": { "type": "Point", "coordinates": [ 8.797846859250001, 42.166730055899997 ] } }, +{ "type": "Feature", "properties": { "id": "20217005", "cp": "20217", "pop": "R", "address": "Route de Patrimonio", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "08.00" }, "Vendredi": { "fermeture": "19.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T14:07:39+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "VITO", "name": "Relais Dominique" }, "geometry": { "type": "Point", "coordinates": [ 9.312588117940001, 42.684345134499999 ] } }, +{ "type": "Feature", "properties": { "id": "20290002", "cp": "20290", "pop": "R", "address": "Casamozza - RN 193", "city": "LUCCIANA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL MARCELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.4407, 42.5249 ] } }, +{ "type": "Feature", "properties": { "id": "20600007", "cp": "20600", "pop": "R", "address": "AVENUE SAPIERO CORSU", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-05T08:25:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de pétrole lampant", "Station de gonflage", "Aire de camping-cars", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Wifi" ], "brand": "Esso", "name": "SARL FERRANDI FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44432898552, 42.676894207899998 ] } }, +{ "type": "Feature", "properties": { "id": "20167003", "cp": "20090", "pop": "R", "address": "mezzavia centre rn 194", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T09:32:52+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "Station bp martinetti" }, "geometry": { "type": "Point", "coordinates": [ 8.78151349424, 41.952637362 ] } }, +{ "type": "Feature", "properties": { "id": "20167005", "cp": "20090", "pop": "R", "address": "RD 31 lieu dit Manicola Vecchia", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:41:26+02:00", "price_gazole": 1.74, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Station BP Martinetti La Rocade" }, "geometry": { "type": "Point", "coordinates": [ 8.779977099470001, 41.950907620499997 ] } }, +{ "type": "Feature", "properties": { "id": "20218004", "cp": "20218", "pop": "R", "address": "R.T 30", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T07:04:54+02:00", "price_gazole": 1.759, "price_sp95": 0.001919, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets SARL MARIANI et FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.20502, 42.46346 ] } }, +{ "type": "Feature", "properties": { "id": "20111001", "cp": "20111", "pop": "R", "address": "Tiuccia", "city": "CASAGLIONE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-27T07:58:47+02:00", "price_gazole": 1.739, "price_sp95": 0.0019, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "BP Tiuccia Automobiles" }, "geometry": { "type": "Point", "coordinates": [ 8.74148, 42.06219 ] } }, +{ "type": "Feature", "properties": { "id": "20156001", "cp": "20156", "pop": "R", "address": "PORTO POLLO", "city": "SERRA-DI-FERRO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T08:28:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Services réparation", "entretien" ], "brand": "VITO", "name": "BARTOLI SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.7926, 41.70911 ] } }, +{ "type": "Feature", "properties": { "id": "20218007", "cp": "20218", "pop": "R", "address": "RT20", "city": "PONTE LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-23T15:54:55+02:00", "price_gazole": 1.75, "price_sp95": 0.001885, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "STATION COGNETTI-VITA" }, "geometry": { "type": "Point", "coordinates": [ 9.299765360329999, 42.435187623899999 ] } }, +{ "type": "Feature", "properties": { "id": "20090007", "cp": "20090", "pop": "R", "address": "Route Campo Dell'Oro Col d'Aspretto", "city": "AJACCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Lundi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mardi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Mercredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:01:47+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "BP", "name": "Bp aspretto" }, "geometry": { "type": "Point", "coordinates": [ 8.75917, 41.92973 ] } }, +{ "type": "Feature", "properties": { "id": "20166006", "cp": "20166", "pop": "R", "address": "Les Marines de Porticcio - Commune de Grosseto-Prugna", "city": "PORTICCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T18:05:28+02:00", "price_gazole": 1.78, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": null, "brand": "Total", "name": "Station TOTAL Les Marines" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20600006", "cp": "20600", "pop": "R", "address": "L'Arinella - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-05T06:32:33+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL BRUNINI ET FILS" }, "geometry": { "type": "Point", "coordinates": [ 9.44388780227, 42.673269190399999 ] } }, +{ "type": "Feature", "properties": { "id": "20215001", "cp": "20215", "pop": "R", "address": "ARENA", "city": "VESCOVATO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-28T07:24:48+02:00", "price_gazole": 1.77, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "AUTOMOBILES BARTHES" }, "geometry": { "type": "Point", "coordinates": [ 9.4663, 42.49999 ] } }, +{ "type": "Feature", "properties": { "id": "20137007", "cp": "20137", "pop": "R", "address": "Station TOTAL - Quartier La Poretta", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T06:46:49+02:00", "price_gazole": 1.81, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL BEL OMBRA" }, "geometry": { "type": "Point", "coordinates": [ 9.27646075639, 41.601865292500001 ] } }, +{ "type": "Feature", "properties": { "id": "20167004", "cp": "20167", "pop": "R", "address": "Route de Sagone", "city": "ALATA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-06T08:17:16+02:00", "price_gazole": 1.741, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Station BP Rossi" }, "geometry": { "type": "Point", "coordinates": [ 8.7816576932, 41.964970673499998 ] } }, +{ "type": "Feature", "properties": { "id": "20200002", "cp": "20600", "pop": "R", "address": "Avenue Sampiero Corso - RN 193", "city": "BASTIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T14:32:25+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "CAMPOMETA KYRN SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44529, 42.70322 ] } }, +{ "type": "Feature", "properties": { "id": "20000006", "cp": "20000", "pop": "R", "address": "Aspretto", "city": "AJACCIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:36:45+02:00", "price_gazole": 1.741, "price_sp95": 0.001895, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "RELAIS CECCALDI - ESSO" }, "geometry": { "type": "Point", "coordinates": [ 8.76753227717, 41.928510533699999 ] } }, +{ "type": "Feature", "properties": { "id": "20000007", "cp": "20000", "pop": "R", "address": "65 COURS LUCIEN BONAPARTE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-28T07:10:25+02:00", "price_gazole": 1.756, "price_sp95": 0.001896, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL FABIANI STATION TOTAL" }, "geometry": { "type": "Point", "coordinates": [ 8.72151667262, 41.910786187200003 ] } }, +{ "type": "Feature", "properties": { "id": "20166002", "cp": "20166", "pop": "R", "address": "Station TOTAL - Relais du Rupione", "city": "PIETROSELLA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "13.30", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-07-01T13:07:21+02:00", "price_gazole": 1.78, "price_sp95": 0.00192, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. MELO NUNES José" }, "geometry": { "type": "Point", "coordinates": [ 8.77867524915, 41.834934021700001 ] } }, +{ "type": "Feature", "properties": { "id": "20189001", "cp": "20000", "pop": "R", "address": "La Rocade Finosello", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "SP98", "GPLc", "E10" ], "update": "2023-06-26T13:00:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "SARL PAOLETTI PRODUITS PETROLIERS" }, "geometry": { "type": "Point", "coordinates": [ 8.752502765599999, 41.9427905963 ] } }, +{ "type": "Feature", "properties": { "id": "20145001", "cp": "20145", "pop": "R", "address": "RN 198 - Solenzara", "city": "SARI-SOLENZARA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "GPLc", "SP98", "E10", "E85" ], "update": "2023-06-10T06:50:23+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL Relais de la Côte des Nacres" }, "geometry": { "type": "Point", "coordinates": [ 9.39994, 41.84921 ] } }, +{ "type": "Feature", "properties": { "id": "20260001", "cp": "20260", "pop": "R", "address": "RN 197 LIEU-DIT LES PADULES", "city": "CALVI", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95", "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-05-02T05:59:03+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": 0.00124, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SARL ESPACE CARS" }, "geometry": { "type": "Point", "coordinates": [ 8.75935469725, 42.571801184900004 ] } }, +{ "type": "Feature", "properties": { "id": "20600009", "cp": "20600", "pop": "R", "address": "AVENUE DE LA LIBERATION", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-29T09:47:36+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "Esso", "name": "SARL STATION DU PRADO" }, "geometry": { "type": "Point", "coordinates": [ 9.44447, 42.68297 ] } }, +{ "type": "Feature", "properties": { "id": "20600010", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T15:23:28+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP LA ROCADE" }, "geometry": { "type": "Point", "coordinates": [ 9.44136, 42.65687 ] } }, +{ "type": "Feature", "properties": { "id": "20166004", "cp": "20166", "pop": "R", "address": "CTRE COMMERCIAL BENISTA", "city": "GROSSETO-PRUGNA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:18:42+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "RELAIS BENISTA CARBURANT" }, "geometry": { "type": "Point", "coordinates": [ 8.8077, 41.8873 ] } }, +{ "type": "Feature", "properties": { "id": "20130002", "cp": "20130", "pop": "R", "address": "Rue de la République", "city": "CARGESE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Lundi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mardi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Mercredi": { "fermeture": "00.01", "ouvert": 1, "ouverture": "00.00" }, "Samedi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Vendredi": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-31T19:22:28+02:00", "price_gazole": 1.802, "price_sp95": 0.001986, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Automate CB 24", "24" ], "brand": "Total", "name": "Station Total Cargèse" }, "geometry": { "type": "Point", "coordinates": [ 8.59528, 42.13438 ] } }, +{ "type": "Feature", "properties": { "id": "20224001", "cp": "20224", "pop": "R", "address": "Station TOTAL", "city": "CALACUCCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-24T01:05:44+02:00", "price_gazole": 1.84, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Station de gonflage", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL ACQUAVIVA" }, "geometry": { "type": "Point", "coordinates": [ 9.00872, 42.33399 ] } }, +{ "type": "Feature", "properties": { "id": "20240001", "cp": "20240", "pop": "R", "address": "520 Avenue du 9 Septembre", "city": "GHISONACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-07-03T14:38:18+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "SODIPP SARL VITO" }, "geometry": { "type": "Point", "coordinates": [ 9.403970867569999, 42.013511447900001 ] } }, +{ "type": "Feature", "properties": { "id": "20290009", "cp": "20290", "pop": "R", "address": "RN:193/T10 Crucetta", "city": "LUCCIANA", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-24T12:41:11+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Restauration à emporter", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Sarl agc" }, "geometry": { "type": "Point", "coordinates": [ 9.4417556995, 42.549805193899999 ] } }, +{ "type": "Feature", "properties": { "id": "20620004", "cp": "20620", "pop": "R", "address": "Lot Arbuceta Rond Point Ceppe", "city": "BIGUGLIA", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-01-04T10:22:18+01:00", "price_gazole": 2.02, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL Relais de Biguglia" }, "geometry": { "type": "Point", "coordinates": [ 9.42864, 42.62683 ] } }, +{ "type": "Feature", "properties": { "id": "20131002", "cp": "20131", "pop": "R", "address": "Station TOTAL - RN 196", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-09T08:49:07+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "EURL TOMASI Marie-Josée" }, "geometry": { "type": "Point", "coordinates": [ 9.05559393687, 41.491854902500002 ] } }, +{ "type": "Feature", "properties": { "id": "20250003", "cp": "20250", "pop": "R", "address": "RN 193 - lieu dit Pentone", "city": "CORTE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85" ], "update": "2023-07-04T08:45:52+02:00", "price_gazole": 1.82, "price_sp95": 0.00197, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "STATION BP RELAIS DE SANTA MARIA" }, "geometry": { "type": "Point", "coordinates": [ 9.1589, 42.31719 ] } }, +{ "type": "Feature", "properties": { "id": "20600004", "cp": "20600", "pop": "R", "address": "Rond Point de Furiani", "city": "FURIANI", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-07-05T11:41:55+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL CIAVALDINI STRABONI" }, "geometry": { "type": "Point", "coordinates": [ 9.43007, 42.66306 ] } }, +{ "type": "Feature", "properties": { "id": "20000002", "cp": "20090", "pop": "R", "address": "Route du Bord de Mer", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-30T13:10:00+02:00", "price_gazole": 1.808, "price_sp95": 0.001949, "price_sp98": null, "price_gplc": 0.001283, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "LUIGI SA" }, "geometry": { "type": "Point", "coordinates": [ 8.74403, 41.93336 ] } }, +{ "type": "Feature", "properties": { "id": "20090001", "cp": "20090", "pop": "R", "address": "Boulevard Louis Campi", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole" ], "shortage": null, "update": "2023-06-09T09:54:35+02:00", "price_gazole": 1.798, "price_sp95": 0.001951, "price_sp98": null, "price_gplc": null, "price_e10": 0.001995, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "U STRETTU SARL" }, "geometry": { "type": "Point", "coordinates": [ 8.75484, 41.94385 ] } }, +{ "type": "Feature", "properties": { "id": "20113002", "cp": "20113", "pop": "R", "address": "Arconchello", "city": "OLMETO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "05.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-30T22:29:10+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS BARACCI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 8.91523718879, 41.7160918951 ] } }, +{ "type": "Feature", "properties": { "id": "20140001", "cp": "20140", "pop": "R", "address": "RTE N 196", "city": "PETRETO-BICCHISANO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10" ], "update": "2023-06-30T18:34:50+02:00", "price_gazole": 1.798, "price_sp95": 0.001948, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "STATION VITO SANTONI" }, "geometry": { "type": "Point", "coordinates": [ 8.97933, 41.78547 ] } }, +{ "type": "Feature", "properties": { "id": "20090011", "cp": "20090", "pop": "R", "address": "BODICCIONE", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-27T12:24:01+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "U-STRETTU NORD" }, "geometry": { "type": "Point", "coordinates": [ 8.74775, 41.93484 ] } }, +{ "type": "Feature", "properties": { "id": "20217001", "cp": "20217", "pop": "R", "address": "Route Calvi", "city": "SAINT-FLORENT", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-05-19T07:31:15+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "DOMARCHI MARC ET SEBASTIEN" }, "geometry": { "type": "Point", "coordinates": [ 9.29715968034, 42.673213581399999 ] } }, +{ "type": "Feature", "properties": { "id": "20290008", "cp": "20290", "pop": "R", "address": "CASAMOZZA", "city": "LUCCIANA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "A LA ROUE DE SECOURS" }, "geometry": { "type": "Point", "coordinates": [ 9.41753214413, 42.546654713300001 ] } }, +{ "type": "Feature", "properties": { "id": "20100003", "cp": "20100", "pop": "R", "address": "ZI RIZZANESE", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "SP98" ], "update": "2023-06-29T16:25:59+02:00", "price_gazole": 1.82, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "SARL GAST" }, "geometry": { "type": "Point", "coordinates": [ 8.97262, 41.62058 ] } }, +{ "type": "Feature", "properties": { "id": "20600002", "cp": "20600", "pop": "R", "address": "556 Avenue de la Libération", "city": "BASTIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T06:00:00+02:00", "price_gazole": 1.72, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique non alimentaire", "Station de gonflage", "Lavage automatique", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants" ], "brand": "VITO", "name": "U NIOLU SARL" }, "geometry": { "type": "Point", "coordinates": [ 9.44377, 42.68091 ] } }, +{ "type": "Feature", "properties": { "id": "20137004", "cp": "20137", "pop": "R", "address": "Station TOTAL La Trinité - RN 198 - Pitrera", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-05T09:17:15+02:00", "price_gazole": 1.795, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Restauration sur place", "Bar", "Vente de fioul domestique", "Vente de pétrole lampant", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL AUTO SERVICES" }, "geometry": { "type": "Point", "coordinates": [ 9.27892619218, 41.594950269400002 ] } }, +{ "type": "Feature", "properties": { "id": "20217004", "cp": "20217", "pop": "R", "address": "Centre Ville", "city": "SAINT-FLORENT", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "01.00", "ouvert": 0, "ouverture": "01.00" }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-20T14:02:46+02:00", "price_gazole": 1.8, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24" ], "brand": "BP", "name": "ETS ORSINI JM" }, "geometry": { "type": "Point", "coordinates": [ 9.3025576871, 42.680586999900001 ] } }, +{ "type": "Feature", "properties": { "id": "20240002", "cp": "20240", "pop": "R", "address": "Station TOTAL - BP 35 - RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-07-01T06:19:22+02:00", "price_gazole": 1.74, "price_sp95": 0.00188, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SAS MARTINEZ" }, "geometry": { "type": "Point", "coordinates": [ 9.40926, 42.02113 ] } }, +{ "type": "Feature", "properties": { "id": "20240003", "cp": "20240", "pop": "R", "address": "TRAVO", "city": "VENTISERI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "SP98", "E10" ], "update": "2023-07-06T07:01:36+02:00", "price_gazole": 1.76, "price_sp95": 0.00191, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Automate CB 24", "24" ], "brand": "Total", "name": "M. CORSINI Jacques" }, "geometry": { "type": "Point", "coordinates": [ 9.3895, 41.91716 ] } }, +{ "type": "Feature", "properties": { "id": "20240005", "cp": "20240", "pop": "R", "address": "RN 198", "city": "GHISONACCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98" ], "update": "2023-06-15T10:02:37+02:00", "price_gazole": 1.78, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Location de véhicule", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "BP", "name": "STATION BP BIANCARELLI" }, "geometry": { "type": "Point", "coordinates": [ 9.40606, 42.01703 ] } }, +{ "type": "Feature", "properties": { "id": "20218001", "cp": "20218", "pop": "R", "address": "RT 20", "city": "PONTE-LECCIA", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T20:26:43+02:00", "price_gazole": 1.719, "price_sp95": 0.001879, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "STATION ANTONIOTTI SERGE" }, "geometry": { "type": "Point", "coordinates": [ 9.20902434756, 42.466991152299997 ] } }, +{ "type": "Feature", "properties": { "id": "20260005", "cp": "20260", "pop": "R", "address": "Avenue Christophe Colomb", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "08.00" }, "Jeudi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "22.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2022-09-22T11:05:33+02:00", "price_gazole": 1.79, "price_sp95": 0.00166, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "BP", "name": "Eurl SEFICAR-Station BP ASTOLFI" }, "geometry": { "type": "Point", "coordinates": [ 8.76306, 42.55365 ] } }, +{ "type": "Feature", "properties": { "id": "20218008", "cp": "20218", "pop": "R", "address": "rond point de ponte leccia", "city": "PONTE-LECCIA", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-05T05:52:55+02:00", "price_gazole": 1.739, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel" ], "brand": "VITO", "name": "Sarl BRULE" }, "geometry": { "type": "Point", "coordinates": [ 9.20667, 42.46274 ] } }, +{ "type": "Feature", "properties": { "id": "20220001", "cp": "20220", "pop": "R", "address": "36 Avenue Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-29T07:47:31+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION GRAZIANI" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20538001", "cp": "20137", "pop": "R", "address": "RTE N 198", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-19T20:30:00+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station VITO BALESI AUTOMOBILES" }, "geometry": { "type": "Point", "coordinates": [ 9.276645765330001, 41.604279918400003 ] } }, +{ "type": "Feature", "properties": { "id": "20129001", "cp": "20129", "pop": "R", "address": "SUARALTA", "city": "BASTELICACCIA", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "GPLc", "SP98", "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T09:32:09+02:00", "price_gazole": 1.749, "price_sp95": 0.001899, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "FOLACCI STATION SERVICE" }, "geometry": { "type": "Point", "coordinates": [ 8.824872882659999, 41.923536440299998 ] } }, +{ "type": "Feature", "properties": { "id": "20220002", "cp": "20220", "pop": "R", "address": "29, Ave Pdt Paul Doumer", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.30", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.45", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-07-04T11:53:20+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Laverie", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "Indépendant sans enseigne", "name": "DYNES - RELAIS DE LA PIETRA" }, "geometry": { "type": "Point", "coordinates": [ 8.94527992854, 42.631953607600003 ] } }, +{ "type": "Feature", "properties": { "id": "20220003", "cp": "20220", "pop": "R", "address": "AVENUE PAUL DOUMER", "city": "L'ÎLE-ROUSSE", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-09T09:42:23+02:00", "price_gazole": 1.799, "price_sp95": 0.001969, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Esso", "name": "SARL ESSO ILE ROUSSE" }, "geometry": { "type": "Point", "coordinates": [ 8.94075, 42.63248 ] } }, +{ "type": "Feature", "properties": { "id": "20290003", "cp": "20290", "pop": "R", "address": "Lieu-dit Revinco - RN 193", "city": "BORGO", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-06-09T21:00:00+02:00", "price_gazole": 1.77, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": 0.00125, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS DE BORGO" }, "geometry": { "type": "Point", "coordinates": [ 9.44075, 42.56756 ] } }, +{ "type": "Feature", "properties": { "id": "20100001", "cp": "20100", "pop": "R", "address": "Place Saint Damien", "city": "SARTÈNE", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-06T19:51:25+02:00", "price_gazole": 1.8, "price_sp95": 0.00195, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "M. DIGIACOMI Ange-Noël" }, "geometry": { "type": "Point", "coordinates": [ 8.968240607489999, 41.619081336900003 ] } }, +{ "type": "Feature", "properties": { "id": "20110003", "cp": "20110", "pop": "R", "address": "San Giuseppu", "city": "PROPRIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "SP95" ], "shortage": [ "E10", "SP98", "E85", "GPLc" ], "update": "2023-07-05T18:01:32+02:00", "price_gazole": 1.78, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Douches", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "DAB (Distributeur automatique de billets)" ], "brand": "Esso", "name": "ESSO SERVICE DIGIACOMI & FILS" }, "geometry": { "type": "Point", "coordinates": [ 8.91306, 41.67076 ] } }, +{ "type": "Feature", "properties": { "id": "20137006", "cp": "20137", "pop": "R", "address": "route de bastia", "city": "PORTO-VECCHIO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "GPLc" ], "shortage": [ "E85", "E10", "SP98" ], "update": "2023-06-24T07:27:34+02:00", "price_gazole": 1.82, "price_sp95": 0.001985, "price_sp98": null, "price_gplc": 0.00122, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Aire de camping-cars", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL VULCO TEAM DISTRIBUTION" }, "geometry": { "type": "Point", "coordinates": [ 9.27623, 41.60109 ] } }, +{ "type": "Feature", "properties": { "id": "20167008", "cp": "20167", "pop": "R", "address": "Gare de Mezzana - Lieu-dit 'Saint Pierre, T20", "city": "SARROLA-CARCOPINO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-29T14:58:51+02:00", "price_gazole": 1.758, "price_sp95": 0.001898, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Laverie", "Boutique alimentaire", "Boutique non alimentaire", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Vente de gaz domestique (Butane, Propane)" ], "brand": "VITO", "name": "Relais U culombu 2" }, "geometry": { "type": "Point", "coordinates": [ 8.84469299783, 42.030352853700002 ] } }, +{ "type": "Feature", "properties": { "id": "20230008", "cp": "20230", "pop": "R", "address": "Rn 198 Alistro", "city": "SAN-GIULIANO", "automate_24_24": "Oui", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "ouvert": 1 }, "Lundi": { "ouvert": 1 }, "Mardi": { "ouvert": 1 }, "Mercredi": { "ouvert": 1 }, "Samedi": { "ouvert": 1 }, "Vendredi": { "ouvert": 1 } }, "fuel": [ "SP95" ], "shortage": null, "update": "2023-05-16T19:08:18+02:00", "price_gazole": 1.73, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station du Phare" }, "geometry": { "type": "Point", "coordinates": [ 9.4890725134, 42.314264859 ] } }, +{ "type": "Feature", "properties": { "id": "20243001", "cp": "20243", "pop": "R", "address": "Lieu-Dit Migliacciaro", "city": "PRUNELLI-DI-FIUMORBO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E10", "E85", "SP98" ], "update": "2023-07-06T09:57:08+02:00", "price_gazole": 1.74, "price_sp95": 0.00189, "price_sp98": null, "price_gplc": 0.00135, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL RELAIS AUTO DU FIUMORBO" }, "geometry": { "type": "Point", "coordinates": [ 9.40286, 41.998685775699997 ] } }, +{ "type": "Feature", "properties": { "id": "20170001", "cp": "20170", "pop": "R", "address": "Allée des Chênes", "city": "LEVIE", "automate_24_24": null, "timetable": null, "fuel": [ "SP95" ], "shortage": null, "update": "2023-06-07T09:35:53+02:00", "price_gazole": 1.82, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique non alimentaire", "Vente de fioul domestique", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "SARL CESARI" }, "geometry": { "type": "Point", "coordinates": [ 9.123308927929999, 41.703794374799998 ] } }, +{ "type": "Feature", "properties": { "id": "20260003", "cp": "20260", "pop": "R", "address": "Lieu dit Alzeta", "city": "CALVI", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 1 }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "07.00" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-21T20:16:13+02:00", "price_gazole": 1.845, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Relais colis", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Vente de pétrole lampant", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Bornes électriques", "Vente d'additifs carburants", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "M. ACQUAVIVA Jean-Pascal" }, "geometry": { "type": "Point", "coordinates": [ 8.79695908093, 42.559095700599997 ] } }, +{ "type": "Feature", "properties": { "id": "20090002", "cp": "20090", "pop": "R", "address": "Quartier St Joseph", "city": "AJACCIO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-07-04T20:42:45+02:00", "price_gazole": 1.768, "price_sp95": 0.001924, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "DAB (Distributeur automatique de billets)" ], "brand": "Total", "name": "SARL STATION ST JOSEPH" }, "geometry": { "type": "Point", "coordinates": [ 8.75493220371, 41.933319733700003 ] } }, +{ "type": "Feature", "properties": { "id": "20131001", "cp": "20131", "pop": "R", "address": "RTE N 196 LANCCIATO PADULELLI", "city": "PIANOTTOLI-CALDARELLO", "automate_24_24": null, "timetable": null, "fuel": [ "E10" ], "shortage": [ "E85", "GPLc", "SP98", "SP95" ], "update": "2023-06-15T13:21:35+02:00", "price_gazole": 1.82, "price_sp95": null, "price_sp98": null, "price_gplc": null, "price_e10": 0.00199, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire" ], "brand": "VITO", "name": "GARAGE QUILICHINI" }, "geometry": { "type": "Point", "coordinates": [ 9.05520465753, 41.491825740800003 ] } }, +{ "type": "Feature", "properties": { "id": "20600003", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "GPLc", "E10", "SP98" ], "update": "2023-06-27T06:00:00+02:00", "price_gazole": 1.8, "price_sp95": 0.00194, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Wifi", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "BP", "name": "Ets Marcel Ferrari" }, "geometry": { "type": "Point", "coordinates": [ 9.41588, 42.65848 ] } }, +{ "type": "Feature", "properties": { "id": "20600011", "cp": "20600", "pop": "R", "address": "RN 193", "city": "FURIANI", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Jeudi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Lundi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mardi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Mercredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Samedi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" }, "Vendredi": { "fermeture": "20.00", "ouvert": 1, "ouverture": "06.00" } }, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85", "E10", "SP98", "GPLc" ], "update": "2023-07-05T14:01:32+02:00", "price_gazole": 1.81, "price_sp95": 0.00196, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Location de véhicule", "Lavage automatique", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "SARL CAMPOMETA" }, "geometry": { "type": "Point", "coordinates": [ 9.43957413547, 42.653136187400001 ] } }, +{ "type": "Feature", "properties": { "id": "20113001", "cp": "20113", "pop": "R", "address": "Marinca - RD 157", "city": "OLMETO", "automate_24_24": null, "timetable": null, "fuel": [ "Gazole", "SP95" ], "shortage": [ "E85" ], "update": "2023-07-01T14:31:41+02:00", "price_gazole": 1.79, "price_sp95": 0.00193, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Bar", "Vente de fioul domestique", "Station de gonflage", "Piste poids lourds", "Lavage manuel", "Services réparation", "entretien", "Vente de gaz domestique (Butane, Propane)" ], "brand": "Total", "name": "M. LEONETTI André" }, "geometry": { "type": "Point", "coordinates": [ 8.8967, 41.69741 ] } }, +{ "type": "Feature", "properties": { "id": "20137005", "cp": "20137", "pop": "R", "address": "Route de Bonifacio", "city": "PORTO-VECCHIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "ouvert": 0 }, "Jeudi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "13.03", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "19.30", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole" ], "shortage": [ "E85", "GPLc" ], "update": "2023-06-19T20:00:21+02:00", "price_gazole": 1.83, "price_sp95": 0.00198, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Toilettes publiques", "Boutique alimentaire", "Boutique non alimentaire", "Restauration à emporter", "Restauration sur place", "Vente de fioul domestique", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage automatique", "Lavage manuel", "Espace bébé", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24" ], "brand": "Total", "name": "SARL RELAIS DE PALOMBAGGIA" }, "geometry": { "type": "Point", "coordinates": [ 9.27518, 41.57885 ] } }, +{ "type": "Feature", "properties": { "id": "20166005", "cp": "20166", "pop": "R", "address": "Veta Porticcio", "city": "PORTICCIO", "automate_24_24": "Non", "timetable": { "Dimanche": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Jeudi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Lundi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mardi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Mercredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Samedi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" }, "Vendredi": { "fermeture": "21.00", "ouvert": 1, "ouverture": "06.30" } }, "fuel": [ "Gazole", "SP95" ], "shortage": null, "update": "2023-06-28T20:30:00+02:00", "price_gazole": 1.759, "price_sp95": 0.001909, "price_sp98": null, "price_gplc": null, "price_e10": null, "price_e85": null, "services": [ "Boutique alimentaire", "Boutique non alimentaire", "Vente de pétrole lampant", "Station de gonflage", "Carburant additivé", "Piste poids lourds", "Lavage manuel", "Vente de gaz domestique (Butane, Propane)", "Vente d'additifs carburants", "Automate CB 24", "24", "DAB (Distributeur automatique de billets)" ], "brand": "VITO", "name": "Station Vito - Veta Distribution" }, "geometry": { "type": "Point", "coordinates": [ 8.809023549739999, 41.896302423100003 ] } } ] } diff --git a/examples/data/points_lux_pop_osm.geojson b/examples/data/points_lux_pop_osm.geojson index b602899..cca1d99 100644 --- a/examples/data/points_lux_pop_osm.geojson +++ b/examples/data/points_lux_pop_osm.geojson @@ -3,476 +3,476 @@ "name": "points_lux_pop_osm", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795, "random": 67.352 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047, "random": 16.535 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104, "random": 66.016 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026, "random": 38.341 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, -{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273, "random": 13.94 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": null, "random": 35.356 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": null, "random": 14.302 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": null, "random": 93.649 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": null, "random": 126.337 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": null, "random": 64.5 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": null, "random": 6.176 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": null, "random": 17.693 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608, "random": 162.068 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 112.023 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, -{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 116.511 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, -{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085, "random": 162.665 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377, "random": 199.088 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, -{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626, "random": 172.86 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, -{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888, "random": 188.813 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": null, "random": 163.889 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 169.377 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694, "random": 155.478 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, -{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136, "random": 54.4 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, -{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513, "random": 197.88 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206, "random": 162.879 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, -{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 61.742 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617, "random": 155.977 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, -{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405, "random": 30.117 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": null, "random": 110.814 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": null, "random": 105.649 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595, "random": 132.535 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, -{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435, "random": 34.068 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049, "random": 40.05 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291, "random": 169.171 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801, "random": 44.309 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405, "random": 159.006 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, -{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834, "random": 79.406 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755, "random": 185.803 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15, "random": 133.128 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215, "random": 197.332 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, -{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108, "random": 134.189 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230, "random": 97.628 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206, "random": 185.72 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64, "random": 36.433 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56, "random": 148.473 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472, "random": 98.114 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293, "random": 135.656 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628, "random": 156.922 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122, "random": 63.304 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763, "random": 176.375 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732, "random": 191.401 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, -{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203, "random": 148.99 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, -{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669, "random": 31.665 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, -{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": null, "random": 101.306 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": null, "random": 153.443 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 195.294 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": null, "random": 16.906 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": null, "random": 130.811 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206, "random": 185.531 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68, "random": 166.895 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260, "random": 157.349 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60, "random": 68.998 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361, "random": 24.768 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, -{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207, "random": 104.151 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242, "random": 156.658 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769, "random": 27.017 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347, "random": 111.077 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953, "random": 185.718 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365, "random": 98.093 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605, "random": 79.351 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": null, "random": 184.64 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 68.356 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, -{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": null, "random": 156.681 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016, "random": 14.793 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, -{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444, "random": 94.953 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724, "random": 138.984 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127, "random": 68.218 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383, "random": 112.231 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356, "random": 193.939 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842, "random": 24.027 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299, "random": 168.286 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490, "random": 67.612 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427, "random": 67.86 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484, "random": 29.48 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663, "random": 18.88 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208, "random": 94.344 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652, "random": 55.204 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653, "random": 193.754 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809, "random": 50.861 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410, "random": 81.602 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, -{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295, "random": 99.812 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022, "random": 174.046 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455, "random": 167.523 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604, "random": 133.105 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, -{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683, "random": 107.247 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615, "random": 139.302 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449, "random": 37.865 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788, "random": 174.575 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979, "random": 176.563 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162, "random": 45.838 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668, "random": 69.429 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542, "random": 126.987 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302, "random": 11.922 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599, "random": 104.388 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827, "random": 183.7 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29, "random": 155.763 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110, "random": 11.429 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144, "random": 170.776 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92, "random": 60.895 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127, "random": 70.629 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168, "random": 32.852 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227, "random": 196.772 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857, "random": 42.209 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533, "random": 10.775 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424, "random": 143.421 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225, "random": 138.98 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136, "random": 156.982 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252, "random": 18.339 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113, "random": 97.534 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431, "random": 130.289 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111, "random": 191.688 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813, "random": 73.178 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382, "random": 163.784 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985, "random": 194.901 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842, "random": 61.501 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412, "random": 11.624 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410, "random": 30.483 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461, "random": 50.115 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392, "random": 34.63 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501, "random": 163.953 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582, "random": 114.106 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414, "random": 74.324 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211, "random": 114.154 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507, "random": 43.423 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430, "random": 6.398 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306, "random": 91.014 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155, "random": 25.212 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033, "random": 44.657 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882, "random": 51.543 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581, "random": 41.0 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702, "random": 91.785 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099, "random": 117.746 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565, "random": 5.962 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682, "random": 125.783 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045, "random": 184.685 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97, "random": 16.64 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100, "random": 26.693 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252, "random": 95.482 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569, "random": 89.101 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595, "random": 35.987 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771, "random": 187.726 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478, "random": 10.634 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120, "random": 5.803 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427, "random": 49.055 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289, "random": 179.059 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106, "random": 168.141 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559, "random": 50.904 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667, "random": 155.861 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324, "random": 124.299 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673, "random": 35.499 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525, "random": 182.35 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426, "random": 183.635 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, -{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069, "random": 191.026 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320, "random": 22.208 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157, "random": 40.362 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": null, "random": 142.225 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": null, "random": 39.621 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817, "random": 8.621 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501, "random": 145.924 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, -{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332, "random": 137.002 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554, "random": 30.773 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537, "random": 145.894 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187, "random": 89.824 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646, "random": 126.712 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933, "random": 111.823 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925, "random": 138.987 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250, "random": 78.34 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446, "random": 169.848 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500, "random": 58.921 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936, "random": 86.965 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828, "random": 70.004 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701, "random": 105.725 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226, "random": 17.693 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243, "random": 16.11 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011, "random": 7.809 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499, "random": 196.616 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245, "random": 26.18 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189, "random": 108.517 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375, "random": 8.784 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538, "random": 59.286 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460, "random": 172.61 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120, "random": 115.852 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99, "random": 12.221 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87, "random": 72.656 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40, "random": 29.733 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92, "random": 62.482 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63, "random": 114.54 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16, "random": 85.037 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152, "random": 45.629 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304, "random": 164.57 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211, "random": 69.492 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519, "random": 134.134 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591, "random": 11.136 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293, "random": 188.326 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122, "random": 157.819 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991, "random": 82.951 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378, "random": 54.7 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296, "random": 30.678 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121, "random": 183.678 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23, "random": 29.313 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1, "random": 124.808 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118, "random": 117.172 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222, "random": 102.899 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102, "random": 71.493 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252, "random": 61.807 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31, "random": 31.946 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395, "random": 187.831 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521, "random": 30.62 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158, "random": 77.54 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424, "random": 15.469 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252, "random": 31.747 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522, "random": 107.456 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151, "random": 72.138 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149, "random": 32.265 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361, "random": 178.588 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286, "random": 160.989 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68, "random": 166.478 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384, "random": 25.898 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128, "random": 48.007 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161, "random": 156.874 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168, "random": 127.65 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345, "random": 18.931 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309, "random": 159.807 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88, "random": 108.571 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442, "random": 49.708 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, -{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157, "random": 199.597 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633, "random": 92.687 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": null, "random": 37.171 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259, "random": 129.257 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": null, "random": 193.703 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336, "random": 74.78 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142, "random": 182.553 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247, "random": 166.145 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255, "random": 55.932 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508, "random": 132.232 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224, "random": 191.066 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201, "random": 122.314 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529, "random": 82.716 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008, "random": 95.734 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51, "random": 39.065 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604, "random": 6.001 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969, "random": 162.884 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107, "random": 199.209 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, -{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28, "random": 187.401 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296, "random": 102.55 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958, "random": 10.26 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265, "random": 114.494 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549, "random": 34.715 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080, "random": 96.097 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626, "random": 193.064 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": null, "random": 99.703 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": null, "random": 142.21 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, -{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": null, "random": 59.677 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388, "random": 119.246 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800, "random": 49.65 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129, "random": 163.693 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276, "random": 110.112 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": null, "random": 20.351 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": null, "random": 186.185 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": null, "random": 41.611 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113, "random": 94.748 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79, "random": 112.201 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425, "random": 127.169 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60, "random": 137.533 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, -{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69, "random": 88.549 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370, "random": 100.737 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90, "random": 36.977 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": null, "random": 115.387 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, -{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": null, "random": 109.228 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795, "random": 141.337 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": null, "random": 47.876 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": null, "random": 181.931 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, -{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269, "random": 16.389 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167, "random": 129.298 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, -{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432, "random": 16.754 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170, "random": 140.366 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, -{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490, "random": 62.241 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, -{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": null, "random": 187.238 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102, "random": 69.65 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309, "random": 77.429 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818, "random": 87.431 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232, "random": 141.448 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, -{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": null, "random": 112.923 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": null, "random": 76.941 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": null, "random": 179.294 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": null, "random": 45.342 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, -{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118, "random": 9.585 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": null, "random": 61.111 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115, "random": 195.953 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109, "random": 5.185 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287, "random": 147.139 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466, "random": 109.905 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326, "random": 118.505 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97, "random": 199.517 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55, "random": 6.288 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416, "random": 106.304 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113, "random": 122.834 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220, "random": 72.521 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537, "random": 154.669 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698, "random": 46.738 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": null, "random": 156.395 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": null, "random": 65.104 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": null, "random": 13.385 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": null, "random": 11.935 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, -{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475, "random": 50.296 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149, "random": 64.065 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652, "random": 119.182 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172, "random": 11.689 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123, "random": 192.917 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301, "random": 138.5 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, -{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186, "random": 195.095 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197, "random": 10.698 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135, "random": 176.246 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84, "random": 163.455 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293, "random": 128.807 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80, "random": 167.873 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233, "random": 116.186 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23, "random": 138.959 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, -{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105, "random": 43.609 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166, "random": 51.106 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335, "random": 156.995 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431, "random": 183.836 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179, "random": 191.134 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212, "random": 141.178 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, -{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51, "random": 94.794 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78, "random": 189.448 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263, "random": 25.82 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": null, "random": 74.04 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": null, "random": 135.382 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": null, "random": 66.051 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, -{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": null, "random": 92.169 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313, "random": 86.076 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": null, "random": 29.135 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, -{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84, "random": 141.201 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": null, "random": 74.142 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227, "random": 112.727 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195, "random": 109.475 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, -{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370, "random": 25.111 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, -{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799, "random": 37.339 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, -{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134, "random": 158.158 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, -{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123, "random": 144.766 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29, "random": 54.038 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250, "random": 49.626 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, -{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580, "random": 153.715 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": null, "random": 136.963 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, -{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": null, "random": 52.561 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406, "random": 183.216 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85, "random": 137.072 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83, "random": 88.769 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105, "random": 57.933 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, -{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826, "random": 53.042 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320, "random": 47.49 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63, "random": 95.95 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, -{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153, "random": 13.756 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396, "random": 33.651 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236, "random": 42.565 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, -{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474, "random": 142.712 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46, "random": 169.458 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152, "random": 32.027 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, -{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325, "random": 6.762 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245, "random": 9.837 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109, "random": 101.156 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401, "random": 195.387 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130, "random": 98.4 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129, "random": 194.584 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102, "random": 81.417 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48, "random": 122.128 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322, "random": 126.993 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, -{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288, "random": 146.636 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, -{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298, "random": 57.063 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122, "random": 42.284 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15, "random": 33.525 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42, "random": 130.218 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153, "random": 113.461 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, -{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216, "random": 188.047 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, -{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781, "random": 13.231 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, -{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105, "random": 106.638 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, -{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133, "random": 39.676 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, -{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192, "random": 125.019 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135, "random": 182.086 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429, "random": 85.473 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258, "random": 47.933 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, -{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380, "random": 139.706 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, -{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245, "random": 163.787 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200, "random": 108.289 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321, "random": 191.686 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, -{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467, "random": 168.507 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, -{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36, "random": 116.099 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": null, "random": 54.147 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, -{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": null, "random": 98.852 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, -{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279, "random": 31.909 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231, "random": 112.414 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, -{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499, "random": 150.656 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, -{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588, "random": 13.91 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, -{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350, "random": 39.494 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, -{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360, "random": 51.642 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, -{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": null, "random": 175.368 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553, "random": 64.831 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, -{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415, "random": 45.576 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270, "random": 22.236 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130, "random": 195.411 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92, "random": 123.093 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, -{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393, "random": 109.951 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, -{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673, "random": 146.918 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, -{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83, "random": 141.062 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397, "random": 95.077 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": null, "random": 10.601 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109, "random": 84.492 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307, "random": 79.077 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283, "random": 170.09 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501, "random": 7.001 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": null, "random": 142.281 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": null, "random": 11.778 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53, "random": 136.112 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118, "random": 97.612 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354, "random": 195.967 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231, "random": 140.482 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850, "random": 181.389 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 144.469 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": null, "random": 169.401 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125, "random": 104.609 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68, "random": 94.037 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95, "random": 150.101 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799, "random": 156.097 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500, "random": 158.734 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425, "random": 99.809 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885, "random": 148.197 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609, "random": 34.43 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138, "random": 98.723 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215, "random": 176.891 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134, "random": 125.322 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286, "random": 162.032 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354, "random": 150.776 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218, "random": 198.577 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847, "random": 54.149 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, -{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34, "random": 54.005 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347, "random": 143.613 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152, "random": 99.342 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": null, "random": 191.342 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32, "random": 192.08 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298, "random": 99.375 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115, "random": 185.245 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436, "random": 85.811 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244, "random": 36.9 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": null, "random": 169.099 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89, "random": 85.182 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, -{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94, "random": 61.709 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": null, "random": 49.642 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, -{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739, "random": 175.474 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25, "random": 117.166 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": null, "random": 126.181 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45, "random": 144.206 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, -{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669, "random": 153.663 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211, "random": 26.534 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, -{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423, "random": 17.922 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61, "random": 95.707 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46, "random": 34.266 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634, "random": 55.414 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295, "random": 184.379 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, -{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995, "random": 69.136 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, -{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245, "random": 91.542 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } +{ "type": "Feature", "properties": { "osm_id": "52932305", "name": "Ettelbruck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ettelbrück\",\"name:lb\"=>\"Ettelbréck\",\"name:lt\"=>\"Etelbriukas\",\"name:ru\"=>\"Эттельбрюк\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7795 }, "geometry": { "type": "Point", "coordinates": [ 6.0984659, 49.8470016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52938674", "name": "Diekirch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:als\"=>\"Dikrech\",\"name:be\"=>\"Дзікірх\",\"name:bg\"=>\"Дикирх\",\"name:fa\"=>\"دیکیرش\",\"name:lb\"=>\"Dikrech\",\"name:lt\"=>\"Dykirchas\",\"name:ru\"=>\"Дикирх\",\"name:sr\"=>\"Дикирх\",\"name:uk\"=>\"Дікірх\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16050\",\"wikipedia\"=>\"lb:Dikrech\"", "population": 7047 }, "geometry": { "type": "Point", "coordinates": [ 6.1600549, 49.8690898 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52939406", "name": "Hosingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Housen\",\"name:lt\"=>\"Hosingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1333496\"", "population": 1104 }, "geometry": { "type": "Point", "coordinates": [ 6.0910943, 50.0143519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52942189", "name": "Schieren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schieren\",\"name:fr\"=>\"Schieren\",\"name:lb\"=>\"Schieren\",\"name:lt\"=>\"Å yrenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969739\",\"wikipedia\"=>\"lb:Schieren\"", "population": 2026 }, "geometry": { "type": "Point", "coordinates": [ 6.096622, 49.8300396 ] } }, +{ "type": "Feature", "properties": { "osm_id": "52943358", "name": "Luxembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "city", "man_made": null, "other_tags": "\"admin_level\"=>\"2\",\"alt_name:la\"=>\"Luxemburgum\",\"capital\"=>\"yes\",\"capital_ISO3166-1\"=>\"yes\",\"name:ace\"=>\"Luksèmburg\",\"name:af\"=>\"Luxemburg\",\"name:als\"=>\"Luxemburg\",\"name:am\"=>\"ሉክሰምበርግ\",\"name:an\"=>\"Luxemburgo\",\"name:ang\"=>\"Letseburg\",\"name:ar\"=>\"لوكسمبورغ\",\"name:arc\"=>\"ܠܘܟܣܡܒܘܪܓ\",\"name:arz\"=>\"لوكسيمبورج\",\"name:ast\"=>\"Luxemburgu\",\"name:az\"=>\"Lüksemburq\",\"name:ba\"=>\"Люксембург\",\"name:bar\"=>\"Luxmburg\",\"name:bat-smg\"=>\"Lioksembōrgs\",\"name:bcl\"=>\"Luhemburgo\",\"name:be\"=>\"Люксембург\",\"name:be-tarask\"=>\"Люксэмбург\",\"name:bg\"=>\"Люксембург\",\"name:bi\"=>\"Luxembourg\",\"name:bn\"=>\"লুক্সেমবুর্গ\",\"name:bo\"=>\"ལུ་སེམ་བའུརག\",\"name:bpy\"=>\"লুক্সেমবুর্গ\",\"name:br\"=>\"Luksembourg\",\"name:bs\"=>\"Luxembourg\",\"name:bxr\"=>\"Люксембург\",\"name:ca\"=>\"Ciutat de Luxemburg\",\"name:cdo\"=>\"Lù-sÄ•ng-bō̤\",\"name:ce\"=>\"Люксембург\",\"name:ceb\"=>\"Luksemburgo\",\"name:ckb\"=>\"لوکسەمبورگ\",\"name:co\"=>\"Lussemburgu\",\"name:crh\"=>\"Lüksemburg\",\"name:cs\"=>\"Lucemburk\",\"name:csb\"=>\"Luksembùrg\",\"name:cu\"=>\"Люѯємбоургъ\",\"name:cv\"=>\"Люксембург\",\"name:cy\"=>\"Dinas Lwcsembwrg\",\"name:da\"=>\"Luxembourg\",\"name:de\"=>\"Luxemburg\",\"name:diq\"=>\"Luksemburg\",\"name:dsb\"=>\"Luxemburgska\",\"name:ee\"=>\"Luxembourg\",\"name:el\"=>\"Λουξεμβούργο\",\"name:eml\"=>\"Lussembûrgh\",\"name:en\"=>\"Luxembourg\",\"name:eo\"=>\"Luksemburgo\",\"name:es\"=>\"Luxemburgo\",\"name:et\"=>\"Luxembourg\",\"name:eu\"=>\"Luxenburgo\",\"name:ext\"=>\"Lussembulgu\",\"name:fa\"=>\"لوکزامبورگ\",\"name:fi\"=>\"Luxemburg\",\"name:fo\"=>\"Luksemburg\",\"name:fr\"=>\"Luxembourg\",\"name:frp\"=>\"Luxembôrg\",\"name:frr\"=>\"Luxemborj\",\"name:fur\"=>\"Lussemburc\",\"name:fy\"=>\"Lúksemboarch\",\"name:ga\"=>\"Lucsamburg\",\"name:gag\"=>\"Lüksemburg\",\"name:gd\"=>\"Lucsamburg\",\"name:gl\"=>\"Luxemburgo\",\"name:gn\"=>\"Luxemburgo\",\"name:gu\"=>\"લક્ઝેમ્બર્ગ\",\"name:gv\"=>\"Lucsemburg\",\"name:hak\"=>\"Lù-sêm-pó\",\"name:haw\"=>\"Lukemapuka\",\"name:he\"=>\"לוקסמבורג\",\"name:hi\"=>\"लक्ज़मबर्ग\",\"name:hif\"=>\"Luxembourg\",\"name:hr\"=>\"Luksemburg\",\"name:hsb\"=>\"Luxemburgska\",\"name:ht\"=>\"Liksanbou\",\"name:hu\"=>\"Luxembourg\",\"name:hy\"=>\"Ô¼ÕµÕ¸Ö‚Ö„Õ½Õ¥Õ´Õ¢Õ¸Ö‚Ö€Õ£\",\"name:ia\"=>\"Luxemburg\",\"name:id\"=>\"Luksemburg\",\"name:ie\"=>\"Luxemburgia\",\"name:ilo\"=>\"Luxembourg\",\"name:io\"=>\"Luxemburgia\",\"name:is\"=>\"Lúxemborg\",\"name:it\"=>\"Lussemburgo\",\"name:ja\"=>\"ルクセンブルク\",\"name:jbo\"=>\"lEtsyburg\",\"name:jv\"=>\"Luksemburg\",\"name:ka\"=>\"ლუქსემბურგი\",\"name:kaa\"=>\"Lyuksemburg\",\"name:kab\"=>\"Luxembourg\",\"name:kbd\"=>\"Луксембург\",\"name:kg\"=>\"Luxembourg\",\"name:kk\"=>\"Люксембург\",\"name:kl\"=>\"Luxembourg\",\"name:kn\"=>\"ಲುಕ್ಸೆಂಬೂರ್ಗ್\",\"name:ko\"=>\"룩셈부르크\",\"name:koi\"=>\"Лецебург\",\"name:krc\"=>\"Люксембург\",\"name:ksh\"=>\"Luxemburg\",\"name:ku\"=>\"Lûksembûrg\",\"name:kv\"=>\"Люксембург\",\"name:kw\"=>\"Lushaborg\",\"name:ky\"=>\"Люксембург\",\"name:la\"=>\"Luxemburgum\",\"name:lad\"=>\"Luksemburgo\",\"name:lb\"=>\"Lëtzebuerg\",\"name:lez\"=>\"Люксембург\",\"name:li\"=>\"Luxembörg\",\"name:lij\"=>\"Luxemburgo\",\"name:lmo\"=>\"Lüssemburgh\",\"name:ln\"=>\"Luksamburg\",\"name:lt\"=>\"Liuksemburgas\",\"name:ltg\"=>\"Luksemburga\",\"name:lv\"=>\"Luksemburga\",\"name:lzh\"=>\"盧森堡\",\"name:mdf\"=>\"Люксембур\",\"name:mg\"=>\"Loksemborga\",\"name:mhr\"=>\"Люксембург\",\"name:mi\"=>\"Rakapuō\",\"name:mk\"=>\"Луксембург\",\"name:ml\"=>\"ലക്സംബർഗ്\",\"name:mn\"=>\"Люксембург\",\"name:mr\"=>\"लक्झेंबर्ग\",\"name:ms\"=>\"Bandar Luxembourg\",\"name:mt\"=>\"Lussemburgu\",\"name:my\"=>\"လူဇင်ဘတ်နိုင်ငံ\",\"name:mzn\"=>\"لوکزامبورگ\",\"name:na\"=>\"Ruketemburg\",\"name:nah\"=>\"Luxemburgo\",\"name:nan\"=>\"Luxembourg\",\"name:nds\"=>\"Luxemborg\",\"name:nds-nl\"=>\"Luxemburg\",\"name:ne\"=>\"लक्जेम्बर्ग\",\"name:new\"=>\"लक्जेम्बर्ग\",\"name:nl\"=>\"Luxemburg\",\"name:nn\"=>\"Luxembourg by\",\"name:no\"=>\"Luxembourg\",\"name:nov\"=>\"Luxembourg\",\"name:nrm\"=>\"Luxembourg\",\"name:nv\"=>\"LátsÄ™booʼ\",\"name:oc\"=>\"Luxemborg\",\"name:or\"=>\"ଲକ୍ସମବର୍ଗ\",\"name:os\"=>\"Люксембург\",\"name:pa\"=>\"ਲਕਸਮਬਰਗ\",\"name:pam\"=>\"Luxemburgo\",\"name:pap\"=>\"Luxembourg\",\"name:pcd\"=>\"Lussimbourk\",\"name:pdc\"=>\"Luxemburg\",\"name:pfl\"=>\"Lugsebursch\",\"name:pih\"=>\"Luksemborg\",\"name:pl\"=>\"Luksemburg\",\"name:pms\"=>\"Lussemborgh\",\"name:pnb\"=>\"لکسمبرگ\",\"name:pnt\"=>\"Λουξεμβούργο\",\"name:ps\"=>\"لوګزامبورګ\",\"name:pt\"=>\"Luxemburgo\",\"name:qu\"=>\"Luksimbur\",\"name:rm\"=>\"Luxemburg\",\"name:rmy\"=>\"Luksemburgo\",\"name:ro\"=>\"Luxemburg\",\"name:roa-tara\"=>\"Lussemburghe\",\"name:ru\"=>\"Люксембург\",\"name:rue\"=>\"Луксембурьско\",\"name:rw\"=>\"Lugizamburu\",\"name:sa\"=>\"लक्सम्बर्ग\",\"name:sah\"=>\"Лүксембург\",\"name:sc\"=>\"Lussemburgu\",\"name:scn\"=>\"Lussimburgu\",\"name:sco\"=>\"Luxembourg\",\"name:se\"=>\"Luxemburg\",\"name:sh\"=>\"Luksemburg\",\"name:simple\"=>\"Luxembourg City\",\"name:sk\"=>\"Luxemburg\",\"name:sl\"=>\"Luksemburg\",\"name:so\"=>\"Luksemburg\",\"name:sq\"=>\"Luksemburgu\",\"name:sr\"=>\"Луксембург\",\"name:srn\"=>\"Luksemburgkondre\",\"name:ss\"=>\"Lusembogu\",\"name:stq\"=>\"Luxembuurich\",\"name:su\"=>\"Luksemburg\",\"name:sv\"=>\"Luxemburg\",\"name:sw\"=>\"Luxemburg\",\"name:szl\"=>\"Luksymburg\",\"name:ta\"=>\"லக்சம்பர்க்\",\"name:tet\"=>\"Luxemburgu\",\"name:tg\"=>\"Люксембург\",\"name:th\"=>\"ลักเซมเบิร์ก\",\"name:tk\"=>\"Lýuksemburg\",\"name:tl\"=>\"Lungsod ng Luxembourg\",\"name:tr\"=>\"Lüksemburg\",\"name:tt\"=>\"Люксембург\",\"name:udm\"=>\"Люксембург\",\"name:ug\"=>\"ليۇكسېمبۇرگ شەھىرى\",\"name:uk\"=>\"Люксембург\",\"name:ur\"=>\"لکسمبرگ\",\"name:uz\"=>\"Luksemburg\",\"name:vec\"=>\"Lusenburgo\",\"name:vep\"=>\"Lüksemburg\",\"name:vi\"=>\"Luxembourg\",\"name:vls\"=>\"Luxemburg\",\"name:vo\"=>\"Luxämburgän\",\"name:vro\"=>\"Luxembourg\",\"name:wa\"=>\"Lussimbork veye\",\"name:war\"=>\"Luxemburgo\",\"name:wo\"=>\"Luksambuur\",\"name:wuu\"=>\"卢森堡\",\"name:xal\"=>\"Лүксин Балһсна Нутг\",\"name:xmf\"=>\"ლუქსემბურგი\",\"name:yi\"=>\"לוקסעמבורג\",\"name:yo\"=>\"Luxembourg\",\"name:yue\"=>\"盧森堡\",\"name:zea\"=>\"Luxemburg\",\"name:zh\"=>\"卢森堡 / 盧森堡\",\"name:zh-Hans\"=>\"卢森堡\",\"name:zh-Hant\"=>\"盧森堡\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1842\",\"wikipedia\"=>\"lb:Lëtzebuerg (Stad)\"", "population": 122273 }, "geometry": { "type": "Point", "coordinates": [ 6.129799, 49.6112768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844393", "name": "Senningerberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sennengerbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.niederanven.lu/\",\"wikidata\"=>\"Q2234520\",\"wikipedia\"=>\"lb:Sennengerbierg\"", "population": 1708 }, "geometry": { "type": "Point", "coordinates": [ 6.2262751, 49.649554 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844424", "name": "Senningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Senneng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2552134\"", "population": 660 }, "geometry": { "type": "Point", "coordinates": [ 6.239363, 49.6461134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844493", "name": "Niederanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:be\"=>\"Нідэранвэн\",\"name:bg\"=>\"Нидеранвен\",\"name:fa\"=>\"نیدرآنون\",\"name:lb\"=>\"Nidderaanwen\",\"name:lt\"=>\"Nyderanvenas\",\"name:ru\"=>\"Нідеранвен\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985402\",\"wikipedia\"=>\"lb:Gemeng Nidderaanwen\"", "population": 1450 }, "geometry": { "type": "Point", "coordinates": [ 6.2552342, 49.6512224 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844619", "name": "Oberanven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ueweraanwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1900195\"", "population": 757 }, "geometry": { "type": "Point", "coordinates": [ 6.2447955, 49.6573221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844650", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2301509\"", "population": 486 }, "geometry": { "type": "Point", "coordinates": [ 6.2333394, 49.6580055 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844675", "name": "Rameldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rammeldingen\",\"name:fr\"=>\"Rameldange\",\"name:lb\"=>\"Rammeldang\",\"name:lt\"=>\"Rameldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2392751\"", "population": 853 }, "geometry": { "type": "Point", "coordinates": [ 6.2305663, 49.6640315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "60844733", "name": "Ernster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q618072\",\"wikipedia\"=>\"lb:Iernster\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.2468762, 49.6803532 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61101176", "name": "Sandweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sandweiler\",\"name:fr\"=>\"Sandweiler\",\"name:lb\"=>\"Sandweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917065\",\"wikipedia\"=>\"lb:Sandweiler\"", "population": 3608 }, "geometry": { "type": "Point", "coordinates": [ 6.2173651, 49.616081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "61753841", "name": "Mersch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mersch\",\"name:fr\"=>\"Mersch\",\"name:lb\"=>\"Miersch\",\"name:lt\"=>\"MerÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 4804 }, "geometry": { "type": "Point", "coordinates": [ 6.1066591, 49.7506746 ] } }, +{ "type": "Feature", "properties": { "osm_id": "63068708", "name": "Walferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walferdingen\",\"name:fr\"=>\"Walferdange\",\"name:lb\"=>\"Walfer\",\"name:lt\"=>\"Valferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1306387, 49.6584806 ] } }, +{ "type": "Feature", "properties": { "osm_id": "64802907", "name": "Bridel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briddel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2584585\"", "population": 3085 }, "geometry": { "type": "Point", "coordinates": [ 6.0811313, 49.6571427 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69621992", "name": "Itzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Itzig\",\"name:fr\"=>\"Itzig\",\"name:lb\"=>\"Izeg\",\"name:lt\"=>\"IciÅ¡as\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3058880\"", "population": 2377 }, "geometry": { "type": "Point", "coordinates": [ 6.1723065, 49.5869326 ] } }, +{ "type": "Feature", "properties": { "osm_id": "69622002", "name": "Howald", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Houwald\",\"name:lb\"=>\"Houwald\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2776327\"", "population": 5626 }, "geometry": { "type": "Point", "coordinates": [ 6.1443593, 49.582147 ] } }, +{ "type": "Feature", "properties": { "osm_id": "71644004", "name": "Strassen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Stroossen\",\"name:fr\"=>\"Strassen\",\"name:lb\"=>\"Stroossen\",\"name:lt\"=>\"Å trasenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9888 }, "geometry": { "type": "Point", "coordinates": [ 6.0721393, 49.6196726 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73801208", "name": "Junglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Lënster\",\"name:lb\"=>\"Jonglënster\",\"name:uk\"=>\"Юнглінстер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017404\",\"wikipedia\"=>\"lb:Gemeng Jonglënster\"", "population": 3512 }, "geometry": { "type": "Point", "coordinates": [ 6.2522878, 49.7118482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "73802549", "name": "Larochette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Fiels\",\"name:de\"=>\"Fels\",\"name:fr\"=>\"Larochette\",\"name:lb\"=>\"An der Fiels\",\"name:lt\"=>\"LaroÅ¡etas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1702 }, "geometry": { "type": "Point", "coordinates": [ 6.2189134, 49.7869673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "88914744", "name": "Schengen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schengen\",\"name:lt\"=>\"Å engenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q183841\",\"wikipedia\"=>\"lb:Gemeng Schengen\"", "population": 694 }, "geometry": { "type": "Point", "coordinates": [ 6.3659008, 49.4716 ] } }, +{ "type": "Feature", "properties": { "osm_id": "95782558", "name": "Wasserbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wasserbillig\",\"name:lb\"=>\"Waasserbëlleg\",\"name:lt\"=>\"Vaserbiligas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026497\",\"wikipedia\"=>\"lb:Waasserbëlleg\"", "population": 3136 }, "geometry": { "type": "Point", "coordinates": [ 6.5013499, 49.7143407 ] } }, +{ "type": "Feature", "properties": { "osm_id": "108353083", "name": "Mamer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Mamer\",\"name:fr\"=>\"Mamer\",\"name:lb\"=>\"Mamer\",\"name:lt\"=>\"Mameris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 7513 }, "geometry": { "type": "Point", "coordinates": [ 6.0229288, 49.6266028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130103746", "name": "Rombach-Martelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Roumicht\",\"name:de\"=>\"Rombach-Martelingen\",\"name:fr\"=>\"Rombach-Martelange\",\"name:lb\"=>\"Rombech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2129480\",\"wikipedia\"=>\"lb:Rombech\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.7419097, 49.8341173 ] } }, +{ "type": "Feature", "properties": { "osm_id": "130933138", "name": "Steinsel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steesel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2437 }, "geometry": { "type": "Point", "coordinates": [ 6.1244736, 49.677469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "132015841", "name": "Echternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eechternoach\",\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:als\"=>\"Iechternach\",\"name:be\"=>\"Эхтэрнах\",\"name:bg\"=>\"Ехтернах\",\"name:ja\"=>\"エヒタナハ\",\"name:ka\"=>\"ეხტერნახი\",\"name:lb\"=>\"Iechternach\",\"name:lt\"=>\"Echternachas\",\"name:ru\"=>\"Эхтернах\",\"name:sr\"=>\"Ехтернах\",\"name:uk\"=>\"Ехтернах\",\"name:wa\"=>\"Echternak\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q204317\",\"wikipedia\"=>\"lb:Iechternach\"", "population": 5617 }, "geometry": { "type": "Point", "coordinates": [ 6.4214859, 49.8120961 ] } }, +{ "type": "Feature", "properties": { "osm_id": "180650109", "name": "Wiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:lb\"=>\"Wolz\",\"name:lt\"=>\"Vilcas\",\"name:ru\"=>\"Вильц\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 5405 }, "geometry": { "type": "Point", "coordinates": [ 5.9321021, 49.9666914 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181298684", "name": "Neuhaeusgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Neuhäusgen\",\"name:fr\"=>\"Neuhaeusgen\",\"name:lb\"=>\"Neihaischen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2112848\",\"wikipedia\"=>\"lb:Neihaischen\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.2396728, 49.6235312 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181301843", "name": "Munsbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Minsbech\",\"name:de\"=>\"Münsbach\",\"name:fr\"=>\"Munsbach\",\"name:lb\"=>\"Mënsbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2884742\",\"wikimedia_commons\"=>\"Category:Munsbach\",\"wikipedia\"=>\"lb:Mënsbech\"", "population": 736 }, "geometry": { "type": "Point", "coordinates": [ 6.2672692, 49.6319031 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181302419", "name": "Contern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 6.2262883, 49.5858294 ] } }, +{ "type": "Feature", "properties": { "osm_id": "181549758", "name": "Ermsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iermsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q122913\",\"wikipedia\"=>\"lb:Iermsdref\"", "population": 435 }, "geometry": { "type": "Point", "coordinates": [ 6.2214025, 49.8288206 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203125341", "name": "Bettembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Beetebuerg\",\"name:de\"=>\"Bettemburg\",\"name:fr\"=>\"Bettembourg\",\"name:lb\"=>\"Beetebuerg\",\"name:lt\"=>\"BetembÅ«ras\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 9049 }, "geometry": { "type": "Point", "coordinates": [ 6.0966536, 49.5173351 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203133645", "name": "Dudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Düdelingen\",\"name:fr\"=>\"Dudelange\",\"name:lb\"=>\"Diddeleng\",\"name:lt\"=>\"Diudelanžas\",\"name:ru\"=>\"Дюделанж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969331\",\"wikipedia\"=>\"lb:Diddeleng\"", "population": 21291 }, "geometry": { "type": "Point", "coordinates": [ 6.0847792, 49.4786477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203135674", "name": "Peppange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Peppingen\",\"name:fr\"=>\"Peppange\",\"name:lb\"=>\"Peppeng\",\"name:lt\"=>\"Pepanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2718955\",\"wikipedia\"=>\"lb:Peppeng\"", "population": 801 }, "geometry": { "type": "Point", "coordinates": [ 6.1324772, 49.524866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203136349", "name": "Livange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Livingen\",\"name:fr\"=>\"Livange\",\"name:lb\"=>\"Léiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769810\",\"wikipedia\"=>\"lb:Léiweng\"", "population": 405 }, "geometry": { "type": "Point", "coordinates": [ 6.1206081, 49.5307092 ] } }, +{ "type": "Feature", "properties": { "osm_id": "203138318", "name": "Hellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hellingen\",\"name:lb\"=>\"Helleng\",\"name:lt\"=>\"Helanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026535\",\"wikipedia\"=>\"lb:Helleng\"", "population": 834 }, "geometry": { "type": "Point", "coordinates": [ 6.1479566, 49.509256 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240026204", "name": "Wellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"website\"=>\"https://www.wellen-mosel.de/\",\"wikidata\"=>\"Q636208\",\"wikipedia\"=>\"de:Wellen (Mosel)\"", "population": 755 }, "geometry": { "type": "Point", "coordinates": [ 6.4334568, 49.6692928 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240035175", "name": "Keppeshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"wikidata\"=>\"Q553450\",\"wikipedia\"=>\"de:Keppeshausen\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.1706825, 49.9636659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "240084415", "name": "Dasburg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Doosber\",\"name:lt\"=>\"Dasburgas\",\"name:zh\"=>\"达斯堡\",\"population:date\"=>\"2019-12-31\",\"source:population\"=>\"https://www.bitburg-pruem.de/cms/landkreis/karte/gemeindeliste\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1326288, 50.048301 ] } }, +{ "type": "Feature", "properties": { "osm_id": "245781315", "name": "Landscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Laaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q769214\",\"wikipedia\"=>\"lb:Laaschent\"", "population": 108 }, "geometry": { "type": "Point", "coordinates": [ 6.1274064, 49.9245457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771849", "name": "Munshausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Munzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764235\",\"wikipedia\"=>\"lb:Munzen\"", "population": 230 }, "geometry": { "type": "Point", "coordinates": [ 6.0373049, 50.0330344 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771873", "name": "Drauffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Draufelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1850641\",\"wikipedia\"=>\"lb:Draufelt\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 6.0057723, 50.0169268 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246771917", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buckels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908319\",\"wikipedia\"=>\"lb:Buckels\"", "population": 64 }, "geometry": { "type": "Point", "coordinates": [ 6.0513055, 50.0118077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "246772275", "name": "Siebenaler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siwwenaler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2801334\",\"wikipedia\"=>\"lb:Siwwenaler\"", "population": 56 }, "geometry": { "type": "Point", "coordinates": [ 6.0261269, 50.010087 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247183179", "name": "Stegen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steeën\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1923887\",\"wikipedia\"=>\"lb:Steeën\"", "population": 472 }, "geometry": { "type": "Point", "coordinates": [ 6.1704715, 49.8294011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247368754", "name": "Schifflange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Schifflingen\",\"name:fr\"=>\"Schifflange\",\"name:lb\"=>\"Schëffleng\",\"name:lt\"=>\"Å iflanžas\",\"name:uk\"=>\"Шиффланж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://schifflange.lu/\",\"wikidata\"=>\"Q669155\",\"wikipedia\"=>\"lb:Schëffleng\"", "population": 11293 }, "geometry": { "type": "Point", "coordinates": [ 6.0118175, 49.5062732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748812", "name": "Heinerscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hengescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763696\",\"wikipedia\"=>\"lb:Hengescht\"", "population": 628 }, "geometry": { "type": "Point", "coordinates": [ 6.087004, 50.0943633 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247748935", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3073008\",\"wikipedia\"=>\"lb:Fëschbech (Hengescht)\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.0671393, 50.0739703 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247749078", "name": "Marnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Maarnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016114\",\"wikipedia\"=>\"lb:Maarnech\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.0621006, 50.0535944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247989176", "name": "Remich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Réimech\",\"name:lt\"=>\"RÄ—michas\",\"name:ru\"=>\"Ремих\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3732 }, "geometry": { "type": "Point", "coordinates": [ 6.3676062, 49.5442267 ] } }, +{ "type": "Feature", "properties": { "osm_id": "247995541", "name": "Mondorf-les-Bains", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Bad Mondorf\",\"name:lb\"=>\"Munneref\",\"name:lt\"=>\"Mondorf le Benas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917128\",\"wikipedia\"=>\"lb:Munneref\"", "population": 4203 }, "geometry": { "type": "Point", "coordinates": [ 6.2814238, 49.5071747 ] } }, +{ "type": "Feature", "properties": { "osm_id": "253126803", "name": "Steinheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Steenem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016073\",\"wikipedia\"=>\"lb:Steenem\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 6.4756659, 49.8182577 ] } }, +{ "type": "Feature", "properties": { "osm_id": "256680135", "name": "Roodt-sur-Syre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Roodt/Syre\",\"name:lb\"=>\"Rued-Sir\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q946442\",\"wikipedia\"=>\"lb:Rued-Sir\"", "population": 2055 }, "geometry": { "type": "Point", "coordinates": [ 6.3020341, 49.6655564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258414816", "name": "Bofferdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bofferdingen\",\"name:lb\"=>\"Boufer\",\"name:lt\"=>\"Boferdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908603\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.140782, 49.6885664 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258683049", "name": "Lintgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëntgen\",\"name:lt\"=>\"Lintgenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2401 }, "geometry": { "type": "Point", "coordinates": [ 6.1278945, 49.7223176 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258694922", "name": "Gosseldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gosseldingen\",\"name:lb\"=>\"Gousseldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026539\",\"wikipedia\"=>\"lb:Gousseldeng\"", "population": 649 }, "geometry": { "type": "Point", "coordinates": [ 6.1154456, 49.7241218 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258705861", "name": "Prettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pretten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3402763\",\"wikipedia\"=>\"lb:Pretten\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1195552, 49.7170162 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258714607", "name": "Greisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gräisch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019917\"", "population": 206 }, "geometry": { "type": "Point", "coordinates": [ 5.9882445, 49.7101093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258725534", "name": "Bour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1874731\",\"wikipedia\"=>\"lb:Buer (Helperknapp)\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 6.0172013, 49.7002782 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258726262", "name": "Roodt-sur-Eisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Simmer\",\"name:de\"=>\"Roodt-Eisch\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2651976\",\"wikipedia\"=>\"lb:Rued (Simmer)\"", "population": 260 }, "geometry": { "type": "Point", "coordinates": [ 6.0015455, 49.6926363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258748158", "name": "Ansembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ansebuerg\",\"name:de\"=>\"Ansemburg\",\"name:en\"=>\"Ansembourg\",\"name:fr\"=>\"Ansembourg\",\"name:lb\"=>\"Aansebuerg\",\"name:lt\"=>\"Ansemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q645669\",\"wikimedia_commons\"=>\"Category:Ansembourg\",\"wikipedia\"=>\"lb:Aansebuerg\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.0397258, 49.7019441 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258802376", "name": "Septfontaines", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Simmern\",\"name:fr\"=>\"Septfontaines\",\"name:lb\"=>\"Simmer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917095\",\"wikipedia\"=>\"lb:Simmer\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.9665551, 49.7007895 ] } }, +{ "type": "Feature", "properties": { "osm_id": "258806958", "name": "Dondelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dondelingen\",\"name:fr\"=>\"Dondelange\",\"name:lb\"=>\"Dondel\",\"name:lt\"=>\"Dondelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2331788\",\"wikimedia_commons\"=>\"Category:Dondelange\",\"wikipedia\"=>\"lb:Dondel\"", "population": 207 }, "geometry": { "type": "Point", "coordinates": [ 6.0310397, 49.6888582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259023029", "name": "Schoenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schönfels\",\"name:lb\"=>\"Schëndels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193764\"", "population": 242 }, "geometry": { "type": "Point", "coordinates": [ 6.0904384, 49.7185866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033249", "name": "Keispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Keispelt\",\"name:fr\"=>\"Keispelt\",\"name:lb\"=>\"Keespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1863909\",\"wikimedia_commons\"=>\"Category:Keispelt\",\"wikipedia\"=>\"lb:Keespelt\"", "population": 769 }, "geometry": { "type": "Point", "coordinates": [ 6.0683638, 49.6943078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259033261", "name": "Meispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Meispelt\",\"name:fr\"=>\"Meispelt\",\"name:lb\"=>\"Meespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2249640\",\"wikimedia_commons\"=>\"Category:Meispelt\",\"wikipedia\"=>\"lb:Meespelt\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.0553641, 49.6905684 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259041507", "name": "Kopstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koplescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 953 }, "geometry": { "type": "Point", "coordinates": [ 6.0731924, 49.6645077 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259411644", "name": "Kehlen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kielen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2365 }, "geometry": { "type": "Point", "coordinates": [ 6.0357089, 49.6675477 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259681000", "name": "Holzem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holzem\",\"name:lt\"=>\"Holcemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 605 }, "geometry": { "type": "Point", "coordinates": [ 5.9911426, 49.615754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777251", "name": "Blaschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Blascheid\",\"name:lb\"=>\"Blaaschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906167\",\"wikipedia\"=>\"en:Blaschette\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 6.1677816, 49.7019674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "259777322", "name": "Lorentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Luerenzweiler\",\"name:lt\"=>\"Lorencveileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1342 }, "geometry": { "type": "Point", "coordinates": [ 6.1440065, 49.7011902 ] } }, +{ "type": "Feature", "properties": { "osm_id": "260396055", "name": "Hunsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hünsdorf\",\"name:lb\"=>\"Hënsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2458292\",\"wikipedia\"=>\"lb:Hënsdref\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 6.1303632, 49.696364 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262401352", "name": "Reckange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen\",\"name:lb\"=>\"Recken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2387290\"", "population": 1016 }, "geometry": { "type": "Point", "coordinates": [ 6.0810682, 49.7489257 ] } }, +{ "type": "Feature", "properties": { "osm_id": "262406578", "name": "Warken", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waarken\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1828890\"", "population": 1444 }, "geometry": { "type": "Point", "coordinates": [ 6.0901686, 49.8594777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264252024", "name": "Remerschen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Riemëschen\",\"name:lb\"=>\"Rëmerschen\",\"name:lt\"=>\"RemerÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1441935\",\"wikipedia\"=>\"lb:Rëmerschen\"", "population": 724 }, "geometry": { "type": "Point", "coordinates": [ 6.3518205, 49.4885953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264502271", "name": "Hoesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Héischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2462144\",\"wikipedia\"=>\"lb:Héischdref\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 6.2567988, 49.8825932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264505611", "name": "Bettel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëttel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q520311\",\"wikipedia\"=>\"lb:Bëttel\"", "population": 383 }, "geometry": { "type": "Point", "coordinates": [ 6.2265645, 49.917164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599556", "name": "Ellange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ellingen\",\"name:lb\"=>\"Elleng\",\"name:lt\"=>\"Elanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620021\",\"wikipedia\"=>\"lb:Elleng\"", "population": 356 }, "geometry": { "type": "Point", "coordinates": [ 6.2977065, 49.5210112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599638", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:fr\"=>\"Elvange\",\"name:lb\"=>\"Elveng\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051810\",\"wikipedia\"=>\"lb:Elveng\"", "population": 842 }, "geometry": { "type": "Point", "coordinates": [ 6.3155651, 49.505652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599652", "name": "Burmerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Boermereng\",\"name:de\"=>\"Bürmeringen\",\"name:lb\"=>\"Biermereng\",\"name:lt\"=>\"Burmeranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401963\",\"wikipedia\"=>\"lb:Biermereng\"", "population": 299 }, "geometry": { "type": "Point", "coordinates": [ 6.3209572, 49.4855145 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599713", "name": "Wintrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintringen\",\"name:lb\"=>\"Wëntreng\",\"name:lt\"=>\"Vintranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q587103\",\"wikipedia\"=>\"lb:Wëntreng\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3512706, 49.5014547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599742", "name": "Schwebsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schwebsingen\",\"name:lb\"=>\"Schwéidsbeng\",\"name:lt\"=>\"Å vebsanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1895827\",\"wikipedia\"=>\"lb:Schwéidsbeng\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 6.3561931, 49.5108072 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599761", "name": "Filsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fëlschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1819383\",\"wikipedia\"=>\"lb:Fëlschdref\"", "population": 484 }, "geometry": { "type": "Point", "coordinates": [ 6.2475073, 49.5346286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599762", "name": "Bous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bus\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101849\",\"wikipedia\"=>\"lb:Bous\"", "population": 663 }, "geometry": { "type": "Point", "coordinates": [ 6.3312468, 49.5557996 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599763", "name": "Assel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Aassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2694867\",\"wikipedia\"=>\"lb:Aassel\"", "population": 208 }, "geometry": { "type": "Point", "coordinates": [ 6.3140326, 49.5546656 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599775", "name": "Dalheim", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Dalheim\",\"name:fr\"=>\"Dalheim\",\"name:la\"=>\"Ricciacum\",\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1652 }, "geometry": { "type": "Point", "coordinates": [ 6.2601063, 49.5433592 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599777", "name": "Aspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uespelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q642351\",\"wikipedia\"=>\"lb:Uespelt\"", "population": 1653 }, "geometry": { "type": "Point", "coordinates": [ 6.2251304, 49.5219947 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599789", "name": "Oetrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ötringen\",\"name:lb\"=>\"Éiter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q629079\"", "population": 809 }, "geometry": { "type": "Point", "coordinates": [ 6.2600198, 49.6000724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264599809", "name": "Moutfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Mutfort\",\"name:lb\"=>\"Mutfert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104959\"", "population": 1410 }, "geometry": { "type": "Point", "coordinates": [ 6.2597756, 49.5860644 ] } }, +{ "type": "Feature", "properties": { "osm_id": "264697181", "name": "Untereisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eesbech\",\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach as Eisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763462\",\"wikipedia\"=>\"lb:Eesbech\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.1449799, 50.000321 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265466889", "name": "Differdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"loc_name\"=>\"Déifferdang\",\"name:de\"=>\"Differdingen\",\"name:lb\"=>\"Déifferdeng\",\"name:lt\"=>\"Diferdanžas\",\"name:ru\"=>\"Дифферданж\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4844168\",\"wikipedia\"=>\"lb:Déifferdeng\"", "population": 15022 }, "geometry": { "type": "Point", "coordinates": [ 5.889242, 49.5208469 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721067", "name": "Pétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Petingen\",\"name:lb\"=>\"Péiténg\",\"name:lt\"=>\"Petanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q29105819\",\"wikipedia\"=>\"lb:Péiteng\"", "population": 9455 }, "geometry": { "type": "Point", "coordinates": [ 5.8776052, 49.5566918 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721093", "name": "Linger", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:lb\"=>\"Lénger\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2404602\",\"wikipedia\"=>\"lb:Lénger\"", "population": 604 }, "geometry": { "type": "Point", "coordinates": [ 5.8858425, 49.5648801 ] } }, +{ "type": "Feature", "properties": { "osm_id": "265721999", "name": "Bascharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederkerschen\",\"name:lb\"=>\"Nidderkäerjeng\",\"name:lt\"=>\"BaÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q947942\",\"wikipedia\"=>\"lb:Nidderkäerjeng\"", "population": 5683 }, "geometry": { "type": "Point", "coordinates": [ 5.912845, 49.5712686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012269", "name": "Belvaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Beles\",\"name:lb\"=>\"Bieles\",\"name:lt\"=>\"Belvo\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2895177\"", "population": 7615 }, "geometry": { "type": "Point", "coordinates": [ 5.9354153, 49.5128101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266012929", "name": "Lasauvage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilden\",\"name:fr\"=>\"Lasauvage\",\"name:lb\"=>\"Zowaasch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016078\",\"wikimedia_commons\"=>\"Category:Lasauvage\",\"wikipedia\"=>\"lb:Zowaasch\"", "population": 449 }, "geometry": { "type": "Point", "coordinates": [ 5.8358283, 49.5221314 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266014538", "name": "Sanem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sassenheim\",\"name:lb\"=>\"Suessem\",\"name:lt\"=>\"Sanemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969734\",\"wikipedia\"=>\"lb:Suessem\"", "population": 2788 }, "geometry": { "type": "Point", "coordinates": [ 5.9272714, 49.5476008 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266178028", "name": "Clemency", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Küntzig\",\"name:lb\"=>\"Kënzeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1369887\",\"wikipedia\"=>\"lb:Kënzeg\"", "population": 1979 }, "geometry": { "type": "Point", "coordinates": [ 5.8749722, 49.5977737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266200751", "name": "Soleuvre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Zolwer\",\"name:fr\"=>\"Soleuvre\",\"name:lb\"=>\"Zolwer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q219089\",\"wikipedia\"=>\"lb:Zolwer\"", "population": 6162 }, "geometry": { "type": "Point", "coordinates": [ 5.9410195, 49.5207381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201026", "name": "Boulaide", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Boulaide\",\"name:lb\"=>\"Bauschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39150099\",\"wikipedia\"=>\"lb:Bauschelt\"", "population": 668 }, "geometry": { "type": "Point", "coordinates": [ 5.8151538, 49.8869853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201034", "name": "Bigonville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bondorf\",\"name:fr\"=>\"Bigonville\",\"name:lb\"=>\"Bungeref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2521755\",\"wikipedia\"=>\"lb:Bungeref\"", "population": 542 }, "geometry": { "type": "Point", "coordinates": [ 5.7923719, 49.8498408 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201601", "name": "Rodange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodingen\",\"name:lb\"=>\"Réiden op der Kor\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1444135\"", "population": 7302 }, "geometry": { "type": "Point", "coordinates": [ 5.839409, 49.5446067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266201994", "name": "Heiderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heischent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763691\",\"wikipedia\"=>\"lb:Heischent\"", "population": 599 }, "geometry": { "type": "Point", "coordinates": [ 5.9774229, 49.886851 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202111", "name": "Eschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eschduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1899845\",\"wikipedia\"=>\"lb:Eschduerf\"", "population": 827 }, "geometry": { "type": "Point", "coordinates": [ 5.9348124, 49.884479 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202167", "name": "Lultzhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëlz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1962114\",\"wikipedia\"=>\"lb:Lëlz\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 5.8898706, 49.9087765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202219", "name": "Bonnal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bounel\",\"name:lb\"=>\"Bommel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2910203\"", "population": 110 }, "geometry": { "type": "Point", "coordinates": [ 5.8883753, 49.902328 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202239", "name": "Insenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ënsber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301316\",\"wikipedia\"=>\"lb:Ënsber\"", "population": 144 }, "geometry": { "type": "Point", "coordinates": [ 5.8837911, 49.8993724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202246", "name": "Liefrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Liefringen\",\"name:fr\"=>\"Liefrange\",\"name:lb\"=>\"Léifreg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.8763585, 49.9101126 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266202968", "name": "Grass", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grass\",\"name:lt\"=>\"Grasas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2118550\",\"wikipedia\"=>\"lb:Grass\"", "population": 127 }, "geometry": { "type": "Point", "coordinates": [ 5.8923953, 49.6306221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203232", "name": "Koetschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Kötscheid\",\"name:lb\"=>\"Kietscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112420\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.839242, 49.8384624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203665", "name": "Holtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holz\",\"name:lt\"=>\"Holcas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463642\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.7903298, 49.8062237 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203688", "name": "Perlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Perl\",\"name:fr\"=>\"Perlé\",\"name:lb\"=>\"Pärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2936219\"", "population": 857 }, "geometry": { "type": "Point", "coordinates": [ 5.7651071, 49.8092862 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266203943", "name": "Rambrouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rambruch\",\"name:fr\"=>\"Rambrouch\",\"name:lb\"=>\"Rammerech\",\"name:lt\"=>\"RambruÅ¡as\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 533 }, "geometry": { "type": "Point", "coordinates": [ 5.8494252, 49.8298505 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204016", "name": "Hostert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hueschtert\",\"name:lt\"=>\"Hostertas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3141034\",\"wikipedia\"=>\"lb:Hueschtert (Rammerech)\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8657938, 49.8101761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266204157", "name": "Bissen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Biissen\",\"name:lb\"=>\"Biissen\",\"name:lt\"=>\"Bisenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 3225 }, "geometry": { "type": "Point", "coordinates": [ 6.0662981, 49.7891516 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266206805", "name": "Calmus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2934337\"", "population": 136 }, "geometry": { "type": "Point", "coordinates": [ 5.9634329, 49.724936 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207294", "name": "Schweich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweech\",\"name:lt\"=>\"Å vaichas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2371301\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9266907, 49.7229383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207838", "name": "Elvange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Elvingen\",\"name:lb\"=>\"Ielwen\",\"name:lt\"=>\"Elvanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3051799\",\"wikipedia\"=>\"lb:Ielwen\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 5.917439, 49.7247398 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266207857", "name": "Oberpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerpallen\",\"name:lt\"=>\"Oberpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634362\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 5.8408299, 49.7311188 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208348", "name": "Colpach-Bas", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niedercolpach\",\"name:fr\"=>\"Colpach-Bas\",\"name:lb\"=>\"Nidderkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210214\"", "population": 111 }, "geometry": { "type": "Point", "coordinates": [ 5.8257055, 49.7575046 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266208508", "name": "Beckerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:lb\"=>\"Biekerech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5136397\",\"wikipedia\"=>\"lb:Biekerech\"", "population": 813 }, "geometry": { "type": "Point", "coordinates": [ 5.8830092, 49.7307067 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266209187", "name": "Hovelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hovelingen\",\"name:fr\"=>\"Hovelange\",\"name:lb\"=>\"Huewel\",\"name:lt\"=>\"Hovelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2125441\"", "population": 382 }, "geometry": { "type": "Point", "coordinates": [ 5.9065268, 49.7217004 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212024", "name": "Ehlerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ehleringen\",\"name:fr\"=>\"Ehlerange\",\"name:lb\"=>\"Éilereng\",\"name:lt\"=>\"Eileranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1854815\",\"wikipedia\"=>\"lb:Éilereng\"", "population": 985 }, "geometry": { "type": "Point", "coordinates": [ 5.9645461, 49.5233302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212134", "name": "Mondercange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Monnerich\",\"name:fr\"=>\"Mondercange\",\"name:lb\"=>\"Monnerech\",\"name:lt\"=>\"Monderkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q39057559\",\"wikipedia\"=>\"lb:Monnerech\"", "population": 3842 }, "geometry": { "type": "Point", "coordinates": [ 5.9870253, 49.5320813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266212169", "name": "Limpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Lampech\",\"name:lb\"=>\"Lampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109618\",\"wikipedia\"=>\"lb:Lampech\"", "population": 412 }, "geometry": { "type": "Point", "coordinates": [ 5.980019, 49.5581701 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325416", "name": "Arsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Arsdorf\",\"name:fr\"=>\"Arsdorf\",\"name:lb\"=>\"Ueschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674796\",\"wikimedia_commons\"=>\"Category:Arsdorf\",\"wikipedia\"=>\"lb:Ueschdref\"", "population": 410 }, "geometry": { "type": "Point", "coordinates": [ 5.8427926, 49.8602932 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325463", "name": "Redange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:de\"=>\"Redingen-am-Attert\",\"alt_name:fr\"=>\"Redange-sur-Attert\",\"alt_name:lb\"=>\"Réiden-Atert\",\"name:de\"=>\"Redingen\",\"name:fr\"=>\"Redange\",\"name:lb\"=>\"Réiden\",\"name:lt\"=>\"Redanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764501\",\"wikipedia\"=>\"lb:Réiden op der Atert\"", "population": 1461 }, "geometry": { "type": "Point", "coordinates": [ 5.8914033, 49.7650714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325464", "name": "Ospern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Osper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1813658\",\"wikipedia\"=>\"lb:Osper\"", "population": 392 }, "geometry": { "type": "Point", "coordinates": [ 5.9029086, 49.7832892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325492", "name": "Ell", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ell\",\"name:lt\"=>\"Elas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763472\",\"wikipedia\"=>\"lb:Ell (Lëtzebuerg)\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 5.854027, 49.7628457 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325516", "name": "Noerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Noerdingen\",\"name:fr\"=>\"Noerdange\",\"name:lb\"=>\"Näerden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2479477\"", "population": 582 }, "geometry": { "type": "Point", "coordinates": [ 5.9241757, 49.7418119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325569", "name": "Bettborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bieberech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q22284\",\"wikipedia\"=>\"lb:Bieberech\"", "population": 414 }, "geometry": { "type": "Point", "coordinates": [ 5.9393932, 49.7949702 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325570", "name": "Rippweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112439\",\"wikipedia\"=>\"lb:Rippweiler\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 5.9556113, 49.7504327 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325597", "name": "Saeul", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Sëll\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 507 }, "geometry": { "type": "Point", "coordinates": [ 5.9854867, 49.7277779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266325614", "name": "Niederpallen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderpallen\",\"name:lt\"=>\"Nyderpalenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026530\",\"wikipedia\"=>\"lb:Nidderpallen\"", "population": 430 }, "geometry": { "type": "Point", "coordinates": [ 5.9116659, 49.7544254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266396217", "name": "Kahler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Koler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q568868\",\"wikipedia\"=>\"lb:Koler\"", "population": 306 }, "geometry": { "type": "Point", "coordinates": [ 5.917651, 49.6315445 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266397969", "name": "Abweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Abweiler\",\"name:fr\"=>\"Abweiler\",\"name:lb\"=>\"Obeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2751368\",\"wikipedia\"=>\"lb:Obeler\"", "population": 155 }, "geometry": { "type": "Point", "coordinates": [ 6.080064, 49.532978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266570549", "name": "Dippach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dippech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q426998\",\"wikipedia\"=>\"lb:Gemeng Dippech\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 5.9814794, 49.587507 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582815", "name": "Ehnen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Éinen\",\"name:lt\"=>\"Einenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016123\"", "population": 882 }, "geometry": { "type": "Point", "coordinates": [ 6.3866958, 49.6020397 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266582830", "name": "Canach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kanech\",\"name:lt\"=>\"Kanachas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2804045\"", "population": 1581 }, "geometry": { "type": "Point", "coordinates": [ 6.3215061, 49.6078937 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266681785", "name": "Leudelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Leideleng (Leudelingen)\",\"name:de\"=>\"Leudelingen\",\"name:lb\"=>\"Leideleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917072\",\"wikipedia\"=>\"lb:Leideleng\"", "population": 2702 }, "geometry": { "type": "Point", "coordinates": [ 6.0673211, 49.5660842 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689158", "name": "Pontpierre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Steinbrücken\",\"name:fr\"=>\"Pontpierre\",\"name:lb\"=>\"Steebrécken\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016106\"", "population": 1099 }, "geometry": { "type": "Point", "coordinates": [ 6.0294737, 49.5344949 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689161", "name": "Bergem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biergem\",\"name:lt\"=>\"Beržemas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q819508\",\"wikipedia\"=>\"lb:Biergem\"", "population": 1565 }, "geometry": { "type": "Point", "coordinates": [ 6.0402541, 49.5266724 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689162", "name": "Huncherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüncheringen\",\"name:lb\"=>\"Hënchereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2023075\",\"wikipedia\"=>\"lb:Hënchereng\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.0633888, 49.5169484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689163", "name": "Noertzange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtzingen\",\"name:lb\"=>\"Näerzeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2644202\",\"wikipedia\"=>\"lb:Näerzeng\"", "population": 1045 }, "geometry": { "type": "Point", "coordinates": [ 6.0531258, 49.5086667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689422", "name": "Wickrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wickringen\",\"name:fr\"=>\"Wickrange\",\"name:lb\"=>\"Wickreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026543\",\"wikipedia\"=>\"lb:Wickreng\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.0198557, 49.5423438 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689457", "name": "Reckange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reckingen/Mess\",\"name:lb\"=>\"Recken op der Mess\",\"name:lt\"=>\"Rekanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1100 }, "geometry": { "type": "Point", "coordinates": [ 6.0093091, 49.5611874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689736", "name": "Bettange-sur-Mess", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bettingen-Mess\",\"name:fr\"=>\"Bettange-sur-Mess\",\"name:lb\"=>\"Betten op der Mess\",\"name:lt\"=>\"Betanžas prie Meso\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2900171\",\"wikipedia\"=>\"lb:Betteng op der Mess\"", "population": 1252 }, "geometry": { "type": "Point", "coordinates": [ 5.9842427, 49.5750478 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689774", "name": "Sprinkange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Sprinkingen\",\"name:fr\"=>\"Sprinkange\",\"name:lb\"=>\"Sprénkeng\",\"name:lt\"=>\"Sprinkanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2319938\",\"wikipedia\"=>\"lb:Sprénkeng\"", "population": 569 }, "geometry": { "type": "Point", "coordinates": [ 5.9649706, 49.5798472 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689775", "name": "Schouweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schuweiler\",\"name:fr\"=>\"Schouweiler\",\"name:lb\"=>\"Schuller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609947\"", "population": 1595 }, "geometry": { "type": "Point", "coordinates": [ 5.9573114, 49.5807667 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689777", "name": "Hautcharage", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberkerschen\",\"name:lb\"=>\"Uewerkäerjeng\",\"name:lt\"=>\"HoÅ¡aražas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2675610\",\"wikipedia\"=>\"lb:Uewerkäerjeng\"", "population": 1771 }, "geometry": { "type": "Point", "coordinates": [ 5.9098031, 49.5758993 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689780", "name": "Dahlem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duelem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858014\",\"wikipedia\"=>\"lb:Duelem (Garnech)\"", "population": 478 }, "geometry": { "type": "Point", "coordinates": [ 5.9461806, 49.5978119 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689784", "name": "Hivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hivingen\",\"name:fr\"=>\"Hivange\",\"name:lb\"=>\"Héiweng\",\"name:lt\"=>\"Hivanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026524\",\"wikipedia\"=>\"lb:Héiweng\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 5.9299356, 49.60564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689786", "name": "Fingig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féngeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2415890\",\"wikipedia\"=>\"lb:Féngeg\"", "population": 427 }, "geometry": { "type": "Point", "coordinates": [ 5.900194, 49.602859 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266689790", "name": "Garnich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Garnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985388\",\"wikipedia\"=>\"lb:Garnech\"", "population": 1289 }, "geometry": { "type": "Point", "coordinates": [ 5.9506057, 49.6141671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690049", "name": "Kleinbettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Klengbetten\",\"name:lt\"=>\"Kleinbetingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2019553\"", "population": 1106 }, "geometry": { "type": "Point", "coordinates": [ 5.9154984, 49.6446539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690146", "name": "Hagen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hoen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q644082\",\"wikipedia\"=>\"lb:Hoen\"", "population": 1559 }, "geometry": { "type": "Point", "coordinates": [ 5.9310772, 49.6491861 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690162", "name": "Steinfort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stengefort\",\"name:lt\"=>\"Å teinfortas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.steinfort.lu/\",\"wikidata\"=>\"Q3917008\",\"wikipedia\"=>\"lb:Stengefort\"", "population": 2667 }, "geometry": { "type": "Point", "coordinates": [ 5.914723, 49.6597539 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690312", "name": "Koerich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Käerch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1324 }, "geometry": { "type": "Point", "coordinates": [ 5.949443, 49.6697542 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690451", "name": "Goeblange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Göblingen\",\"name:fr\"=>\"Goeblange\",\"name:lb\"=>\"Giewel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2383961\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 5.9644045, 49.6696674 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690587", "name": "Goetzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Götzingen\",\"name:fr\"=>\"Goetzingen\",\"name:lb\"=>\"Gëtzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2620951\"", "population": 525 }, "geometry": { "type": "Point", "coordinates": [ 5.9812219, 49.6598447 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266690737", "name": "Olm", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ollem\",\"name:lt\"=>\"Olmas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2674976\"", "population": 1426 }, "geometry": { "type": "Point", "coordinates": [ 5.9993613, 49.6570286 ] } }, +{ "type": "Feature", "properties": { "osm_id": "266691257", "name": "Eischen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Eischen\",\"name:fr\"=>\"Eischen\",\"name:lb\"=>\"Äischen\",\"name:lt\"=>\"EiÅ¡enas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1311018\",\"wikipedia\"=>\"lb:Äischen\"", "population": 2069 }, "geometry": { "type": "Point", "coordinates": [ 5.8767201, 49.6831417 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038552", "name": "Colpach-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Obercolpach\",\"name:fr\"=>\"Colpach-Haut\",\"name:lb\"=>\"Uewerkolpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2984485\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 5.8197833, 49.7673876 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267038555", "name": "Petit-Nobressart", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Klein-Elcherot\",\"name:fr\"=>\"Petit-Nobressart\",\"name:lb\"=>\"Kleng-Elchert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246448\",\"wikipedia\"=>\"lb:Kleng Elchert\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 5.8104519, 49.7791588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550059", "name": "Helmdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmdingen\",\"name:lb\"=>\"Hielem\",\"name:lt\"=>\"Helmdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2083907\"", "population": 682 }, "geometry": { "type": "Point", "coordinates": [ 6.1416258, 49.6926081 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267550150", "name": "Heisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1601313\"", "population": 1867 }, "geometry": { "type": "Point", "coordinates": [ 6.1409392, 49.6689165 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267741768", "name": "Lamadelaine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rollingen\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2217356\"", "population": 2817 }, "geometry": { "type": "Point", "coordinates": [ 5.8550303, 49.5484042 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742365", "name": "Foetz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Féiz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016081\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.0118671, 49.5219642 ] } }, +{ "type": "Feature", "properties": { "osm_id": "267742953", "name": "Roedgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Riedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2284667\",\"wikipedia\"=>\"lb:Riedgen\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.034698, 49.5741994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268010912", "name": "Ehlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Ehlange-sur-Mess\",\"alt_name:lb\"=>\"Éileng op der Mess\",\"name:de\"=>\"Ehlingen\",\"name:fr\"=>\"Ehlange-sur-Mess\",\"name:lb\"=>\"Ehleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q286909\"", "population": 554 }, "geometry": { "type": "Point", "coordinates": [ 6.0156756, 49.5481442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268012630", "name": "Kayl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Käl\",\"loc_name\"=>\"Käl\",\"name:de\"=>\"Kayl\",\"name:fr\"=>\"Kayl\",\"name:lb\"=>\"Keel\",\"name:lt\"=>\"Kelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103477\",\"wikipedia\"=>\"lb:Keel\"", "population": 5537 }, "geometry": { "type": "Point", "coordinates": [ 6.041472, 49.4861302 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268102894", "name": "Reichlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Reichlingen\",\"name:fr\"=>\"Reichlange\",\"name:lb\"=>\"Räichel\",\"name:lt\"=>\"Raichlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112404\",\"wikipedia\"=>\"lb:Räichel\"", "population": 187 }, "geometry": { "type": "Point", "coordinates": [ 5.9269974, 49.7730254 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621544", "name": "Wellenstein", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wellesteen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 646 }, "geometry": { "type": "Point", "coordinates": [ 6.342525, 49.5248352 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621605", "name": "Stadtbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Briedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017400\",\"wikipedia\"=>\"lb:Gemeng Stadbriedemes\"", "population": 933 }, "geometry": { "type": "Point", "coordinates": [ 6.3634808, 49.5650843 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268621704", "name": "Greiveldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Greiweldingen\",\"name:fr\"=>\"Greiveldange\",\"name:lb\"=>\"Greiweldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1827640\",\"wikipedia\"=>\"lb:Greiweldeng\"", "population": 925 }, "geometry": { "type": "Point", "coordinates": [ 6.3595781, 49.5860848 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622467", "name": "Ahn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ahn\",\"name:fr\"=>\"Ahn\",\"name:lb\"=>\"Ohn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2827709\",\"wikipedia\"=>\"lb:Ohn\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.421059, 49.6275608 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622484", "name": "Niederdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderdonwen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2624283\",\"wikipedia\"=>\"lb:Nidderdonwen\"", "population": 446 }, "geometry": { "type": "Point", "coordinates": [ 6.4025808, 49.6334648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622740", "name": "Machtum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Meechtem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112459\",\"wikipedia\"=>\"lb:Meechtem\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.4353938, 49.6590681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622788", "name": "Grevenmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Maacher\",\"name:de\"=>\"Grevenmacher\",\"name:lb\"=>\"Gréiwemaacher\",\"name:lt\"=>\"GrÄ—venmacheris\",\"name:ru\"=>\"Гревенмахер\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q4132923\",\"wikipedia\"=>\"lb:Gréiwemaacher\"", "population": 4936 }, "geometry": { "type": "Point", "coordinates": [ 6.4430979, 49.679313 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622853", "name": "Biwer", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwer\",\"name:lt\"=>\"Biveris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101748\",\"wikipedia\"=>\"lb:Biwer\"", "population": 828 }, "geometry": { "type": "Point", "coordinates": [ 6.3729847, 49.7058978 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622887", "name": "Manternach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Manternach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969457\",\"wikipedia\"=>\"lb:Manternach\"", "population": 701 }, "geometry": { "type": "Point", "coordinates": [ 6.4243373, 49.7071605 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268622929", "name": "Münschecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Munschecker\",\"name:lb\"=>\"Mënjecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2201147\",\"wikipedia\"=>\"lb:Mënjecker\"", "population": 226 }, "geometry": { "type": "Point", "coordinates": [ 6.4414163, 49.699166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623453", "name": "Lellig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lelleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026546\",\"wikipedia\"=>\"lb:Lelleg\"", "population": 243 }, "geometry": { "type": "Point", "coordinates": [ 6.4347807, 49.7205332 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623460", "name": "Berbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berburg\",\"name:lb\"=>\"Bäerbuerg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896919\",\"wikipedia\"=>\"lb:Bäerbuerg\"", "population": 1011 }, "geometry": { "type": "Point", "coordinates": [ 6.3930416, 49.7342731 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623562", "name": "Mertert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäertert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1499 }, "geometry": { "type": "Point", "coordinates": [ 6.4815968, 49.7002005 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623739", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623740", "name": "Herborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hierber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2055272\",\"wikipedia\"=>\"lb:Hierber\"", "population": 189 }, "geometry": { "type": "Point", "coordinates": [ 6.4280311, 49.7475118 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623771", "name": "Consdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3929823\",\"wikipedia\"=>\"lb:Konsdref\"", "population": 1375 }, "geometry": { "type": "Point", "coordinates": [ 6.3382466, 49.7798323 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623828", "name": "Scheidgen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2690761\",\"wikipedia\"=>\"lb:Scheedgen\"", "population": 538 }, "geometry": { "type": "Point", "coordinates": [ 6.3602739, 49.7805908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623832", "name": "Osweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uesweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257694\",\"wikipedia\"=>\"lb:Uesweller\"", "population": 460 }, "geometry": { "type": "Point", "coordinates": [ 6.440125, 49.7857994 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268623847", "name": "Dickweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dickweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2292318\",\"wikipedia\"=>\"lb:Dickweiler\"", "population": 120 }, "geometry": { "type": "Point", "coordinates": [ 6.4721211, 49.7837121 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268625028", "name": "Pissange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Piisseng\",\"name:de\"=>\"Pissingen\",\"name:fr\"=>\"Pissange\",\"name:lb\"=>\"Pisseng\",\"name:lt\"=>\"Pisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246600\",\"wikipedia\"=>\"lb:Pisseng\"", "population": 99 }, "geometry": { "type": "Point", "coordinates": [ 6.0002642, 49.5484564 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808354", "name": "Kehmen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kiemen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3194670\",\"wikipedia\"=>\"lb:Kiemen\"", "population": 87 }, "geometry": { "type": "Point", "coordinates": [ 6.036158, 49.9000432 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808386", "name": "Scheidel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Scheedel\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3475310\",\"wikipedia\"=>\"lb:Scheedel\"", "population": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.0439392, 49.8929057 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808486", "name": "Tadler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Toodler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q921353\",\"wikipedia\"=>\"lb:Toodler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9935001, 49.9106016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808487", "name": "Ringel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réngel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3432224\",\"wikipedia\"=>\"lb:Réngel\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.0105804, 49.9158523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808529", "name": "Dirbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dierbech\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3029321\",\"wikipedia\"=>\"lb:Dierbech\"", "population": 16 }, "geometry": { "type": "Point", "coordinates": [ 6.0362438, 49.9202735 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808550", "name": "Schlindermanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schlënnermanescht\",\"name:lt\"=>\"Å lindermanderÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2196577\",\"wikipedia\"=>\"lb:Schlënnermanescht\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0614598, 49.9323297 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808700", "name": "Lipperscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëpschent;Lëpscht\",\"name:lt\"=>\"LiperÅ¡aidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2388862\",\"wikipedia\"=>\"lb:Lëpschent\"", "population": 304 }, "geometry": { "type": "Point", "coordinates": [ 6.0852531, 49.9172892 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808882", "name": "Welscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Welschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2784034\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.0655768, 49.8869484 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268808937", "name": "Burden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biirden\",\"name:de\"=>\"Bürden\",\"name:fr\"=>\"Burden\",\"name:lb\"=>\"Bierden\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2735581\",\"wikipedia\"=>\"lb:Bierden\"", "population": 519 }, "geometry": { "type": "Point", "coordinates": [ 6.0974931, 49.8822678 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809076", "name": "Niederfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderfeelen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112408\",\"wikipedia\"=>\"lb:Nidderfeelen\"", "population": 1591 }, "geometry": { "type": "Point", "coordinates": [ 6.0457528, 49.8554676 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809151", "name": "Mertzig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mäerzeg\",\"name:lt\"=>\"Mercigas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q685611\",\"wikipedia\"=>\"lb:Mäerzeg\"", "population": 2293 }, "geometry": { "type": "Point", "coordinates": [ 6.0041083, 49.8309168 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809152", "name": "Buschrodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschrued\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2564415\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 5.9341053, 49.8260698 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809195", "name": "Grosbous", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Groussbus\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102873\",\"wikipedia\"=>\"lb:Groussbus\"", "population": 991 }, "geometry": { "type": "Point", "coordinates": [ 5.9644035, 49.8275648 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809202", "name": "Wahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wal\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917051\",\"wikipedia\"=>\"lb:Wal (Réiden)\"", "population": 378 }, "geometry": { "type": "Point", "coordinates": [ 5.9054353, 49.8356744 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809354", "name": "Grevels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2373856\",\"wikipedia\"=>\"lb:Gréiwels\"", "population": 296 }, "geometry": { "type": "Point", "coordinates": [ 5.9136079, 49.8514998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809360", "name": "Heispelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129560\",\"wikipedia\"=>\"lb:Heeschpelt\"", "population": 121 }, "geometry": { "type": "Point", "coordinates": [ 5.8790841, 49.8564149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809415", "name": "Brattert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Brattert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2924105\",\"wikipedia\"=>\"lb:Brattert\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 5.9020286, 49.8548857 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809426", "name": "Rindschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Randschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13104720\",\"wikipedia\"=>\"lb:Randschelt\"", "population": 1 }, "geometry": { "type": "Point", "coordinates": [ 5.8997753, 49.8493729 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809505", "name": "Kuborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kéiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 5.900803, 49.8695713 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809541", "name": "Neunhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Ningsen\",\"name:de\"=>\"Neunhausen\",\"name:fr\"=>\"Neunhausen\",\"name:lb\"=>\"Néngsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764306\",\"wikipedia\"=>\"lb:Néngsen\"", "population": 222 }, "geometry": { "type": "Point", "coordinates": [ 5.8862118, 49.8765964 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809580", "name": "Dellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dellen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q733655\",\"wikipedia\"=>\"lb:Dellen\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9598545, 49.8582292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809620", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mëtscheed\",\"name:lt\"=>\"MerÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246505\",\"wikipedia\"=>\"lb:Mëtscheed\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.9716901, 49.8711374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809654", "name": "Eschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Escheid\",\"name:lb\"=>\"Éischent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1825120\",\"wikipedia\"=>\"lb:Eschent\"", "population": 31 }, "geometry": { "type": "Point", "coordinates": [ 5.8872417, 49.8228029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809655", "name": "Folschette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Folscheid\",\"name:fr\"=>\"Folschette\",\"name:lb\"=>\"Foulscht\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3075132\",\"wikipedia\"=>\"lb:Foulscht\"", "population": 395 }, "geometry": { "type": "Point", "coordinates": [ 5.8735947, 49.8137761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268809944", "name": "Pratz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Proz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246634\",\"wikipedia\"=>\"lb:Proz\"", "population": 521 }, "geometry": { "type": "Point", "coordinates": [ 5.9371695, 49.8023544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268810064", "name": "Michelbouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Michelbuch\",\"name:fr\"=>\"Michelbouch\",\"name:lb\"=>\"Méchelbuch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246619\",\"wikipedia\"=>\"lb:Méchelbuch\"", "population": 158 }, "geometry": { "type": "Point", "coordinates": [ 6.0190477, 49.8186815 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975514", "name": "Baschleiden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baschelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2104320\",\"wikipedia\"=>\"lb:Baschelt\"", "population": 424 }, "geometry": { "type": "Point", "coordinates": [ 5.8187084, 49.8994395 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975519", "name": "Surré", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Syr\",\"name:fr\"=>\"Surré\",\"name:lb\"=>\"Sir\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2210416\"", "population": 252 }, "geometry": { "type": "Point", "coordinates": [ 5.7789604, 49.9020779 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975551", "name": "Harlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Harlingen\",\"name:fr\"=>\"Harlange\",\"name:lb\"=>\"Harel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q667210\"", "population": 522 }, "geometry": { "type": "Point", "coordinates": [ 5.7876377, 49.9313844 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975599", "name": "Bavigne", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwen\",\"name:fr\"=>\"Bavigne\",\"name:lb\"=>\"Béiwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q972183\"", "population": 151 }, "geometry": { "type": "Point", "coordinates": [ 5.8480567, 49.9210375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268975875", "name": "Watrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Walter\",\"name:fr\"=>\"Watrange\",\"name:lb\"=>\"Walter\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2661239\",\"wikipedia\"=>\"lb:Walter\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 5.7865338, 49.943722 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976669", "name": "Tarchamps", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Tarchamps\",\"name:lb\"=>\"Iischpelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2445562\",\"wikipedia\"=>\"lb:Eeschpelt\"", "population": 361 }, "geometry": { "type": "Point", "coordinates": [ 5.7947753, 49.9502968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976738", "name": "Kaundorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kauneref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1982041\",\"wikipedia\"=>\"lb:Kauneref\"", "population": 286 }, "geometry": { "type": "Point", "coordinates": [ 5.9012876, 49.9201383 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976833", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q332592\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8725301, 49.9229571 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268976989", "name": "Nothum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noutem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2172208\",\"wikipedia\"=>\"lb:Noutem (Stauséigemeng)\"", "population": 384 }, "geometry": { "type": "Point", "coordinates": [ 5.882023, 49.9404562 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977017", "name": "Berlé", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Berl\",\"name:lb\"=>\"Bärel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2171239\",\"wikipedia\"=>\"lb:Bärel\"", "population": 128 }, "geometry": { "type": "Point", "coordinates": [ 5.8569906, 49.9521537 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977035", "name": "Roullingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rullingen\",\"name:fr\"=>\"Roullingen\",\"name:lb\"=>\"Rulljen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3443366\",\"wikipedia\"=>\"lb:Rulljen\"", "population": 161 }, "geometry": { "type": "Point", "coordinates": [ 5.923396, 49.9547712 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977134", "name": "Büderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Büderscheid\",\"name:fr\"=>\"Buderscheid\",\"name:lb\"=>\"Bidscht\",\"official_name\"=>\"Buederscheid\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/buederscheid.html\",\"wikidata\"=>\"Q919671\",\"wikimedia_commons\"=>\"Category:Buderscheid\",\"wikipedia\"=>\"en:Buderscheid\"", "population": 168 }, "geometry": { "type": "Point", "coordinates": [ 5.9366771, 49.9345 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977209", "name": "Dahl", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Dol\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1880583\"", "population": 345 }, "geometry": { "type": "Point", "coordinates": [ 5.974212, 49.9350122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977287", "name": "Goesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Goesdorf\",\"name:fr\"=>\"Goesdorf\",\"name:lb\"=>\"Géisdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917674\",\"wikipedia\"=>\"lb:Géisdref\"", "population": 309 }, "geometry": { "type": "Point", "coordinates": [ 5.9668241, 49.9206113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977296", "name": "Bockholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boukels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://goesdorf.lu/bockholtz.html\",\"wikidata\"=>\"Q2908318\",\"wikipedia\"=>\"lb:Boukels (Géisdref)\"", "population": 88 }, "geometry": { "type": "Point", "coordinates": [ 5.9961209, 49.9230106 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977303", "name": "Nocher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2317193\"", "population": 442 }, "geometry": { "type": "Point", "coordinates": [ 5.9785252, 49.9462442 ] } }, +{ "type": "Feature", "properties": { "osm_id": "268977402", "name": "Kautenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kautebaach\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2077064\",\"wikipedia\"=>\"lb:Kautebaach\"", "population": 157 }, "geometry": { "type": "Point", "coordinates": [ 6.0180937, 49.9528348 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269127500", "name": "Fentange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fentingen\",\"name:lb\"=>\"Fenteng\",\"name:lt\"=>\"Fentanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2056162\",\"wikipedia\"=>\"lb:Fenteng\"", "population": 2633 }, "geometry": { "type": "Point", "coordinates": [ 6.1516345, 49.5673921 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269168427", "name": "Gonderange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gonderingen\",\"name:lb\"=>\"Gonnereng\",\"name:lt\"=>\"Gonderanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2574685\",\"wikipedia\"=>\"lb:Gonnereng\"", "population": 1785 }, "geometry": { "type": "Point", "coordinates": [ 6.2443508, 49.692659 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269243288", "name": "Frisange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Frisingen\",\"name:lb\"=>\"Fréiseng\",\"name:lt\"=>\"Frisanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763556\",\"wikipedia\"=>\"lb:Fréiseng\"", "population": 2259 }, "geometry": { "type": "Point", "coordinates": [ 6.1903089, 49.5144142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "269338298", "name": "Graulinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"loc_name\"=>\"Um Groeknapp\",\"name:lb\"=>\"Grolënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3115727\",\"wikipedia\"=>\"lb:Grolënster\"", "population": 140 }, "geometry": { "type": "Point", "coordinates": [ 6.287662, 49.7400083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154612", "name": "Roodt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Ell\",\"name:lb\"=>\"Rued\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634958\",\"wikipedia\"=>\"lb:Rued (Ell)\"", "population": 336 }, "geometry": { "type": "Point", "coordinates": [ 5.8217518, 49.7942406 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154625", "name": "Lannen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lannen\",\"name:lt\"=>\"Lanenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112467\",\"wikipedia\"=>\"lb:Lannen (Réiden op der Atert)\"", "population": 142 }, "geometry": { "type": "Point", "coordinates": [ 5.8381975, 49.788523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270154648", "name": "Nagem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nojem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2234839\",\"wikipedia\"=>\"lb:Nojem\"", "population": 247 }, "geometry": { "type": "Point", "coordinates": [ 5.8561339, 49.7866325 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157403", "name": "Reimberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rëmmereg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998454\",\"wikipedia\"=>\"lb:Rëmmereg\"", "population": 255 }, "geometry": { "type": "Point", "coordinates": [ 5.9520428, 49.7959582 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157535", "name": "Platen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Platen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2299179\"", "population": 508 }, "geometry": { "type": "Point", "coordinates": [ 5.935136, 49.7932083 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157581", "name": "Schandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1993686\",\"wikipedia\"=>\"lb:Schandel\"", "population": 224 }, "geometry": { "type": "Point", "coordinates": [ 5.9748723, 49.7919689 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270157920", "name": "Vichten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Viichten\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917097\",\"wikipedia\"=>\"lb:Viichten\"", "population": 1201 }, "geometry": { "type": "Point", "coordinates": [ 5.9963314, 49.8025509 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158950", "name": "Everlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Everlingen\",\"name:fr\"=>\"Everlange\",\"name:lb\"=>\"Iewerleng\",\"name:lt\"=>\"Everlanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2183322\",\"wikipedia\"=>\"lb:Iewerleng\"", "population": 529 }, "geometry": { "type": "Point", "coordinates": [ 5.954446, 49.7748444 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270158951", "name": "Useldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Useldingen\",\"name:fr\"=>\"Useldange\",\"name:lb\"=>\"Useldeng\",\"name:lt\"=>\"Useldanžas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917067\",\"wikipedia\"=>\"lb:Useldeng\"", "population": 1008 }, "geometry": { "type": "Point", "coordinates": [ 5.9815427, 49.7696681 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270160416", "name": "Kapweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kapwëller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2287035\",\"wikipedia\"=>\"lb:Kapweiler\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 5.9705857, 49.7397514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558512", "name": "Rumelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümelingen\",\"name:lb\"=>\"Rëmeleng\",\"name:lt\"=>\"Riumelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.rumelange.lu/\",\"wikidata\"=>\"Q914847\",\"wikipedia\"=>\"lb:Gemeng Rëmeleng\"", "population": 5604 }, "geometry": { "type": "Point", "coordinates": [ 6.0307171, 49.461113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270558572", "name": "Tétange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tetingen\",\"name:fr\"=>\"Tétange\",\"name:lb\"=>\"Téiteng\",\"name:lt\"=>\"Tetanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1903325\"", "population": 3969 }, "geometry": { "type": "Point", "coordinates": [ 6.0401965, 49.4728607 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793728", "name": "Levelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Levelingen\",\"name:fr\"=>\"Levelange\",\"name:lb\"=>\"Liewel\",\"name:lt\"=>\"Levelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2304658\"", "population": 107 }, "geometry": { "type": "Point", "coordinates": [ 5.8556572, 49.7388886 ] } }, +{ "type": "Feature", "properties": { "osm_id": "270793738", "name": "Huttange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"LU\",\"name:de\"=>\"Hüttingen\",\"name:fr\"=>\"Huttange\",\"name:lb\"=>\"Hitten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q939782\",\"wikipedia\"=>\"lb:Hitten\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 5.8977509, 49.7357544 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326034", "name": "Berchem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierchem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2896946\"", "population": 1296 }, "geometry": { "type": "Point", "coordinates": [ 6.1295194, 49.5398315 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326052", "name": "Bivange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bivingen\",\"name:fr\"=>\"Bivange\",\"name:lb\"=>\"Béiweng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q879165\"", "population": 958 }, "geometry": { "type": "Point", "coordinates": [ 6.1335439, 49.5455084 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326069", "name": "Roeser", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Réiser\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1265 }, "geometry": { "type": "Point", "coordinates": [ 6.1471163, 49.5423193 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326114", "name": "Crauthem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Krautem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2702474\"", "population": 1549 }, "geometry": { "type": "Point", "coordinates": [ 6.1456556, 49.536796 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326180", "name": "Weiler-la-Tour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weiler zum Turm\",\"name:fr\"=>\"Weiler-la-Tour\",\"name:lb\"=>\"Weiler zum Tuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917070\",\"wikipedia\"=>\"lb:Weiler zum Tuer\"", "population": 1080 }, "geometry": { "type": "Point", "coordinates": [ 6.1995573, 49.5416974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271326241", "name": "Hassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q959340\"", "population": 626 }, "geometry": { "type": "Point", "coordinates": [ 6.2065685, 49.5515468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271915556", "name": "Bourglinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"An der Buerg\",\"name:de\"=>\"Burglinster\",\"name:lb\"=>\"Buerglënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q848606\",\"wikipedia\"=>\"lb:Buerglënster\"", "population": 763 }, "geometry": { "type": "Point", "coordinates": [ 6.2175255, 49.7031723 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271916344", "name": "Imbringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aangber\",\"name:lb\"=>\"Amber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2060643\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.1931571, 49.7000235 ] } }, +{ "type": "Feature", "properties": { "osm_id": "271917848", "name": "Eisenborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eesebur\",\"name:lb\"=>\"Eesebuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3049504\",\"wikipedia\"=>\"lb:Eesebuer\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 6.1845239, 49.6912214 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272479479", "name": "Fennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fenningen\",\"name:lb\"=>\"Fenneng\",\"name:lt\"=>\"Fenanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2627033\",\"wikipedia\"=>\"lb:Fenneng\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.0771412, 49.5187583 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272481192", "name": "Altwies", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Altwis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q613576\",\"wikipedia\"=>\"lb:Altwis\"", "population": 800 }, "geometry": { "type": "Point", "coordinates": [ 6.2564471, 49.5106707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272482217", "name": "Émerange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Emeringen\",\"name:lb\"=>\"Éimereng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 6.2907534, 49.4866576 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739354", "name": "Altrier", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Altréier\",\"name:lb\"=>\"Schanz (op der)\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1985712\",\"wikipedia\"=>\"lb:Altréier\"", "population": 276 }, "geometry": { "type": "Point", "coordinates": [ 6.3275859, 49.7510661 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739570", "name": "Rippig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rippeg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2680402\",\"wikipedia\"=>\"lb:Rippeg\"", "population": 143 }, "geometry": { "type": "Point", "coordinates": [ 6.3183782, 49.739953 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272739941", "name": "Colbette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kolwent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103623\",\"wikipedia\"=>\"lb:Kolwent\"", "population": 28 }, "geometry": { "type": "Point", "coordinates": [ 6.3005843, 49.7676517 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740121", "name": "Beidweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beidler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q814666\",\"wikipedia\"=>\"lb:Beidler\"", "population": 240 }, "geometry": { "type": "Point", "coordinates": [ 6.3021683, 49.7282221 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740251", "name": "Hemstal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hemstel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2873689\",\"wikipedia\"=>\"lb:Hemstel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.3348459, 49.7398122 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740326", "name": "Zittig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Zëtteg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2474718\",\"wikipedia\"=>\"lb:Zëtteg\"", "population": 79 }, "geometry": { "type": "Point", "coordinates": [ 6.3439722, 49.745113 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740525", "name": "Bech", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101684\",\"wikipedia\"=>\"lb:Bech\"", "population": 425 }, "geometry": { "type": "Point", "coordinates": [ 6.3626568, 49.7520112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272740647", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Biwer\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2926291\",\"wikipedia\"=>\"lb:Bruch (Biwer)\"", "population": 60 }, "geometry": { "type": "Point", "coordinates": [ 6.3402616, 49.7283208 ] } }, +{ "type": "Feature", "properties": { "osm_id": "272741061", "name": "Boudler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Budler\",\"name:lb\"=>\"Buddeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 69 }, "geometry": { "type": "Point", "coordinates": [ 6.3542075, 49.7225215 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273182047", "name": "Berdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bäerdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101856\",\"wikipedia\"=>\"lb:Bäerdref\"", "population": 1370 }, "geometry": { "type": "Point", "coordinates": [ 6.35096, 49.822329 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273184819", "name": "Grundhof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grondhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q787438\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.3304612, 49.8352307 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185824", "name": "Waldbillig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbëlleg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969783\",\"wikipedia\"=>\"lb:Waldbëlleg\"", "population": 551 }, "geometry": { "type": "Point", "coordinates": [ 6.2865589, 49.7952998 ] } }, +{ "type": "Feature", "properties": { "osm_id": "273185844", "name": "Christnach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Chrëschtnech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2668864\",\"wikipedia\"=>\"lb:Chrëschtnech\"", "population": 752 }, "geometry": { "type": "Point", "coordinates": [ 6.2739808, 49.7890058 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275607660", "name": "Capellen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Capellen\",\"name:fr\"=>\"Capellen\",\"name:lb\"=>\"Capellen\",\"name:lt\"=>\"Kapelenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1795 }, "geometry": { "type": "Point", "coordinates": [ 5.9876235, 49.6453476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275701010", "name": "Cruchten", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kruuchten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q283425\",\"wikipedia\"=>\"lb:Kruuchten\"", "population": 656 }, "geometry": { "type": "Point", "coordinates": [ 6.1312383, 49.7996586 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275703355", "name": "Schrondweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schrondweiler\",\"name:lt\"=>\"Å rondvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q646658\",\"wikipedia\"=>\"lb:Schrondweiler\"", "population": 388 }, "geometry": { "type": "Point", "coordinates": [ 6.1556417, 49.805821 ] } }, +{ "type": "Feature", "properties": { "osm_id": "275806259", "name": "Wilwerwiltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wëlwerwolz\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q278454\",\"wikipedia\"=>\"lb:Wëlwerwolz\"", "population": 269 }, "geometry": { "type": "Point", "coordinates": [ 6.0002581, 49.9876952 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276033178", "name": "Alzingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alzeng\",\"name:lt\"=>\"Alcingenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q144260\",\"wikipedia\"=>\"lb:Alzeng\"", "population": 2167 }, "geometry": { "type": "Point", "coordinates": [ 6.1650753, 49.5677751 ] } }, +{ "type": "Feature", "properties": { "osm_id": "276120172", "name": "Bertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Bartreng\",\"name:de\"=>\"Bartringen\",\"name:lb\"=>\"Bartreng\",\"name:lt\"=>\"Bertranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 8432 }, "geometry": { "type": "Point", "coordinates": [ 6.0501598, 49.6106029 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279550179", "name": "Neidhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Näidsen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2559183\",\"wikipedia\"=>\"lb:Näidsen\"", "population": 170 }, "geometry": { "type": "Point", "coordinates": [ 6.0655924, 50.0285451 ] } }, +{ "type": "Feature", "properties": { "osm_id": "279895589", "name": "Wolwelange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wolwelingen\",\"name:fr\"=>\"Wolwelange\",\"name:lb\"=>\"Wolwen\",\"name:lt\"=>\"Volvelanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517590\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 5.7638754, 49.8278112 ] } }, +{ "type": "Feature", "properties": { "osm_id": "280666677", "name": "Altlinster", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Allënster\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2737180\"", "population": 150 }, "geometry": { "type": "Point", "coordinates": [ 6.216248, 49.721522 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286851457", "name": "Gilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gilsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026517\",\"wikipedia\"=>\"lb:Gilsdref\"", "population": 1102 }, "geometry": { "type": "Point", "coordinates": [ 6.1823104, 49.8664616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855018", "name": "Bettendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bettenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101717\",\"wikipedia\"=>\"lb:Bettenduerf\"", "population": 1309 }, "geometry": { "type": "Point", "coordinates": [ 6.2171675, 49.8756671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286855291", "name": "Reisdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reisduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 818 }, "geometry": { "type": "Point", "coordinates": [ 6.2658927, 49.8673199 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286856408", "name": "Eppeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eppelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2514438\",\"wikipedia\"=>\"lb:Eppelduerf\"", "population": 232 }, "geometry": { "type": "Point", "coordinates": [ 6.2478059, 49.8457757 ] } }, +{ "type": "Feature", "properties": { "osm_id": "286859109", "name": "Haller", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2313751\",\"wikipedia\"=>\"lb:Haler\"", "population": 417 }, "geometry": { "type": "Point", "coordinates": [ 6.2827266, 49.8197535 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049808", "name": "Blumenthal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Blummendall\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101759\",\"wikipedia\"=>\"lb:Blummendall\"", "population": 66 }, "geometry": { "type": "Point", "coordinates": [ 6.2661051, 49.7445728 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287049854", "name": "Reuland", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiland\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246473\",\"wikipedia\"=>\"lb:Reiland\"", "population": 350 }, "geometry": { "type": "Point", "coordinates": [ 6.2615784, 49.7525547 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287050451", "name": "Godbrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Godbringen\",\"name:lb\"=>\"Guedber\",\"name:lt\"=>\"Godbranžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1888973\"", "population": 608 }, "geometry": { "type": "Point", "coordinates": [ 6.2305532, 49.7348105 ] } }, +{ "type": "Feature", "properties": { "osm_id": "287963077", "name": "Nospelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nouspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3041356\"", "population": 1118 }, "geometry": { "type": "Point", "coordinates": [ 6.0079507, 49.6745371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289182356", "name": "Rodenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rodenburg\",\"name:lb\"=>\"Roudemer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2649967\"", "population": 181 }, "geometry": { "type": "Point", "coordinates": [ 6.2904101, 49.6868765 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289185602", "name": "Bigelbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bigelbaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1998591\",\"wikipedia\"=>\"lb:Bigelbaach\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.2867287, 49.8603403 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289374984", "name": "Lellingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lelingenas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2175548\",\"wikipedia\"=>\"lb:Lellgen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 6.0137961, 49.9831719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289375762", "name": "Pintsch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pënsch\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2658248\",\"wikipedia\"=>\"lb:Pënsch\"", "population": 287 }, "geometry": { "type": "Point", "coordinates": [ 6.011206, 49.9936497 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289378126", "name": "Wahlhausen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelessen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246443\",\"wikipedia\"=>\"lb:Wuelessen\"", "population": 466 }, "geometry": { "type": "Point", "coordinates": [ 6.1253081, 49.9848271 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379217", "name": "Brandenbourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Brandenburg\",\"name:lb\"=>\"Branebuerg\",\"name:lt\"=>\"Brandenburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q545028\",\"wikipedia\"=>\"lb:Branebuerg\"", "population": 326 }, "geometry": { "type": "Point", "coordinates": [ 6.1389134, 49.9111152 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379578", "name": "Longsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Longsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2862480\",\"wikipedia\"=>\"lb:Longsdref\"", "population": 97 }, "geometry": { "type": "Point", "coordinates": [ 6.2061514, 49.8969614 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379933", "name": "Walsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waalsdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2085199\",\"wikipedia\"=>\"lb:Waalsdref\"", "population": 55 }, "geometry": { "type": "Point", "coordinates": [ 6.1725916, 49.925288 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289379989", "name": "Fouhren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fuhren\",\"name:lb\"=>\"Furen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q746740\",\"wikipedia\"=>\"lb:Furen\"", "population": 416 }, "geometry": { "type": "Point", "coordinates": [ 6.1951192, 49.9137955 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289380672", "name": "Tandel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Tandel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917111\",\"wikipedia\"=>\"lb:Tandel\"", "population": 113 }, "geometry": { "type": "Point", "coordinates": [ 6.1824934, 49.8974652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669426", "name": "Welfrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Welfringen\",\"name:fr\"=>\"Welfrange\",\"name:lb\"=>\"Welfreng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112427\",\"wikipedia\"=>\"lb:Welfreng\"", "population": 220 }, "geometry": { "type": "Point", "coordinates": [ 6.285526, 49.5399853 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289669929", "name": "Waldbredimus", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Waldbriedemes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 537 }, "geometry": { "type": "Point", "coordinates": [ 6.287091, 49.5572304 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289852568", "name": "Syren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Siren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2592380\"", "population": 698 }, "geometry": { "type": "Point", "coordinates": [ 6.2195943, 49.563559 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857087", "name": "Moesdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112476\",\"wikipedia\"=>\"lb:Miesdref\"", "population": 328 }, "geometry": { "type": "Point", "coordinates": [ 6.1148399, 49.7685931 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857091", "name": "Pettingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pëtten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q652899\",\"wikipedia\"=>\"lb:Pëtten\"", "population": 246 }, "geometry": { "type": "Point", "coordinates": [ 6.1071883, 49.7703854 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289857854", "name": "Medernach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Miedernach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q979888\"", "population": 1460 }, "geometry": { "type": "Point", "coordinates": [ 6.2147878, 49.8090012 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289858179", "name": "Heffingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hiefenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103029\",\"wikipedia\"=>\"lb:Hiefenech\"", "population": 1154 }, "geometry": { "type": "Point", "coordinates": [ 6.2405201, 49.7707883 ] } }, +{ "type": "Feature", "properties": { "osm_id": "289929073", "name": "Eselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeselbur\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2980663\",\"wikipedia\"=>\"lb:Eeselbur\"", "population": 475 }, "geometry": { "type": "Point", "coordinates": [ 6.0015233, 50.0624375 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076529", "name": "Rolling", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rolling\",\"name:fr\"=>\"Rolling\",\"name:lb\"=>\"Rolleng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1957428\",\"wikipedia\"=>\"lb:Rolleng (Bous)\"", "population": 149 }, "geometry": { "type": "Point", "coordinates": [ 6.3167592, 49.5503714 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290076703", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:fr\"=>\"Erpeldange\",\"name:lb\"=>\"Ierpeldeng\",\"name:lt\"=>\"Erpeldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057428\"", "population": 652 }, "geometry": { "type": "Point", "coordinates": [ 6.3273928, 49.5455492 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595707", "name": "Winseler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wanseler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985385\",\"wikipedia\"=>\"fr:Winseler\"", "population": 172 }, "geometry": { "type": "Point", "coordinates": [ 5.8899696, 49.9669968 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290595992", "name": "Merkholtz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierkels\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016090\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9803842, 49.9622044 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290596154", "name": "Consthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Konstem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1128237\"", "population": 301 }, "geometry": { "type": "Point", "coordinates": [ 6.0525454, 49.9739101 ] } }, +{ "type": "Feature", "properties": { "osm_id": "290961902", "name": "Enscherange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Enscheringen\",\"name:fr\"=>\"Enscherange\",\"name:lb\"=>\"Äischer\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1977353\",\"wikipedia\"=>\"lb:Äischer\"", "population": 186 }, "geometry": { "type": "Point", "coordinates": [ 5.9895173, 49.9989181 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291280714", "name": "Stolzembourg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Stolzemburg\",\"name:lb\"=>\"Stolzebuerg\",\"name:lt\"=>\"Stolcemburgas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016587\",\"wikipedia\"=>\"lb:Stolzebuerg\"", "population": 197 }, "geometry": { "type": "Point", "coordinates": [ 6.1674898, 49.9657021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291286417", "name": "Putscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Pëtschent\",\"name:de\"=>\"Pütscheid\",\"name:lb\"=>\"Pëtscht\",\"name:lt\"=>\"PutÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486535\",\"wikipedia\"=>\"lb:Pëtscht\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 6.1412236, 49.9593737 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291287941", "name": "Nachtmanderscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nuechtmanescht\",\"name:lt\"=>\"NachtmanderÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2206498\",\"wikipedia\"=>\"lb:Nuechtmanescht\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.1282738, 49.9476946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291568753", "name": "Holzthum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holztem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2030737\",\"wikipedia\"=>\"lb:Holztem\"", "population": 293 }, "geometry": { "type": "Point", "coordinates": [ 6.0734226, 49.9850142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291588999", "name": "Roder", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rueder\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016176\",\"wikipedia\"=>\"lb:Rueder\"", "population": 80 }, "geometry": { "type": "Point", "coordinates": [ 6.0827797, 50.0554624 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291685768", "name": "Weicherdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Weicherdingen\",\"name:fr\"=>\"Weicherdange\",\"name:lb\"=>\"Wäicherdang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2662275\",\"wikipedia\"=>\"lb:Wäicherdang\"", "population": 233 }, "geometry": { "type": "Point", "coordinates": [ 5.9875001, 50.0379777 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686270", "name": "Mecher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mecher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3303848\",\"wikipedia\"=>\"lb:Mecher (Klierf)\"", "population": 23 }, "geometry": { "type": "Point", "coordinates": [ 6.0159035, 50.0403174 ] } }, +{ "type": "Feature", "properties": { "osm_id": "291686556", "name": "Dorscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Duerscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1922224\",\"wikipedia\"=>\"lb:Duerscht\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.0730046, 50.036388 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879793", "name": "Drinklange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Drinklingen\",\"name:lb\"=>\"Drénkelt\",\"name:lt\"=>\"Drinklanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3039480\"", "population": 166 }, "geometry": { "type": "Point", "coordinates": [ 6.0173885, 50.1331371 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879794", "name": "Wilwerdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wilwerdingen\",\"name:lb\"=>\"Wilwerdang\",\"name:lt\"=>\"Vilverdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2123050\",\"wikipedia\"=>\"lb:Wilwerdang\"", "population": 335 }, "geometry": { "type": "Point", "coordinates": [ 6.0227585, 50.1394707 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879795", "name": "Huldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Huldingen\",\"name:fr\"=>\"Huldange\",\"name:lb\"=>\"Huldang\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1636270\",\"wikipedia\"=>\"lb:Huldang\"", "population": 431 }, "geometry": { "type": "Point", "coordinates": [ 6.014087, 50.1637143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879796", "name": "Basbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Niederbesslingen\",\"name:fr\"=>\"Basbellain\",\"name:lb\"=>\"Kierchen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2753449\",\"wikipedia\"=>\"lb:Kierchen\"", "population": 179 }, "geometry": { "type": "Point", "coordinates": [ 5.9844215, 50.1451768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879797", "name": "Hautbellain", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberbesslingen\",\"name:lb\"=>\"Beesslek\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2520134\",\"wikipedia\"=>\"lb:Beesslek\"", "population": 212 }, "geometry": { "type": "Point", "coordinates": [ 5.9773143, 50.1559422 ] } }, +{ "type": "Feature", "properties": { "osm_id": "292879798", "name": "Goedange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Gödingen\",\"name:lb\"=>\"Géidgen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1852114\",\"wikipedia\"=>\"lb:Géidgen\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0125711, 50.148149 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293597630", "name": "Alscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Alschent\",\"name:lt\"=>\"AlÅ¡eidas\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2285597\",\"wikipedia\"=>\"lb:Alschent\"", "population": 78 }, "geometry": { "type": "Point", "coordinates": [ 6.0071631, 49.9699596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "293602051", "name": "Gralingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Grooljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2686503\",\"wikipedia\"=>\"lb:Grooljen\"", "population": 263 }, "geometry": { "type": "Point", "coordinates": [ 6.0997258, 49.9364665 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294934496", "name": "Angelsberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Angsber\",\"alt_name_1:lb\"=>\"Angsbreg\",\"name:de\"=>\"Angelsberg\",\"name:fr\"=>\"Angelsberg\",\"name:lb\"=>\"Angelsbierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2223005\",\"wikimedia_commons\"=>\"Category:Angelsberg_(Luxembourg)\",\"wikipedia\"=>\"lb:Angelsbierg\"", "population": 480 }, "geometry": { "type": "Point", "coordinates": [ 6.1620138, 49.7648732 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294935849", "name": "Beringen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biereng\",\"name:lt\"=>\"Beringenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897170\",\"wikipedia\"=>\"lb:Biereng\"", "population": 1033 }, "geometry": { "type": "Point", "coordinates": [ 6.1162028, 49.7604285 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936324", "name": "Schoos", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schous\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2537178\",\"wikipedia\"=>\"lb:Schous\"", "population": 332 }, "geometry": { "type": "Point", "coordinates": [ 6.1690343, 49.7506504 ] } }, +{ "type": "Feature", "properties": { "osm_id": "294936623", "name": "Ernzen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Iernzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1953115\"", "population": 509 }, "geometry": { "type": "Point", "coordinates": [ 6.221686, 49.7719523 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295245064", "name": "Hupperdange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüpperdingen\",\"name:lb\"=>\"Hëpperdang\",\"name:lt\"=>\"Huperdanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q661632\",\"wikipedia\"=>\"lb:Hëpperdang\"", "population": 313 }, "geometry": { "type": "Point", "coordinates": [ 6.0568365, 50.0959489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "295943063", "name": "Helmsange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Helmsingen\",\"name:fr\"=>\"Helmsange\",\"name:lb\"=>\"Helsem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2572503\"", "population": 2947 }, "geometry": { "type": "Point", "coordinates": [ 6.1370064, 49.6626463 ] } }, +{ "type": "Feature", "properties": { "osm_id": "298332914", "name": "Hersberg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Heeschbrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102974\",\"wikipedia\"=>\"lb:Heeschbrech\"", "population": 84 }, "geometry": { "type": "Point", "coordinates": [ 6.3282435, 49.7571514 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299101099", "name": "Mensdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Menster\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2938664\",\"wikipedia\"=>\"lb:Mensder\"", "population": 957 }, "geometry": { "type": "Point", "coordinates": [ 6.3028809, 49.6550468 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416383", "name": "Wincrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Wintger\",\"name:fr\"=>\"Wincrange\",\"name:lb\"=>\"Wëntger\",\"population:date\"=>\"2020-12-31\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 227 }, "geometry": { "type": "Point", "coordinates": [ 5.9149576, 50.0534489 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299416629", "name": "Hamiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heisdorf\",\"name:lb\"=>\"Heesdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2513485\",\"wikipedia\"=>\"lb:Heesdref\"", "population": 195 }, "geometry": { "type": "Point", "coordinates": [ 5.9025332, 50.0457411 ] } }, +{ "type": "Feature", "properties": { "osm_id": "299536016", "name": "Derenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Däärbech\",\"name:lb\"=>\"Déierbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q546228\",\"wikipedia\"=>\"lb:Déierbech\"", "population": 370 }, "geometry": { "type": "Point", "coordinates": [ 5.887628, 50.0138393 ] } }, +{ "type": "Feature", "properties": { "osm_id": "303255349", "name": "Troisvierges", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"name:de\"=>\"Ulflingen\",\"name:lb\"=>\"Ëlwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1799 }, "geometry": { "type": "Point", "coordinates": [ 6.0020737, 50.1212652 ] } }, +{ "type": "Feature", "properties": { "osm_id": "304013874", "name": "Schwebach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schweebech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246446\",\"wikipedia\"=>\"lb:Schweebech\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 5.9718663, 49.7457142 ] } }, +{ "type": "Feature", "properties": { "osm_id": "305954075", "name": "Biwisch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Biwisch\",\"name:de\"=>\"Biwisch\",\"name:fr\"=>\"Biwisch\",\"name:lb\"=>\"Biwesch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2160212\",\"wikimedia_commons\"=>\"Category:Biwisch\",\"wikipedia\"=>\"lb:Biwesch\"", "population": 123 }, "geometry": { "type": "Point", "coordinates": [ 5.9780272, 50.1176471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306247527", "name": "Wolper", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wuelper\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105443\",\"wikipedia\"=>\"lb:Wuelper\"", "population": 29 }, "geometry": { "type": "Point", "coordinates": [ 6.353606, 49.7642229 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306394375", "name": "Binsfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bënzelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q640141\",\"wikipedia\"=>\"lb:Bënzelt\"", "population": 250 }, "geometry": { "type": "Point", "coordinates": [ 6.0372194, 50.1172636 ] } }, +{ "type": "Feature", "properties": { "osm_id": "306487193", "name": "Beaufort", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Befort\",\"name:lb\"=>\"Beefort\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16762558\",\"wikipedia\"=>\"lb:Beefort\"", "population": 2580 }, "geometry": { "type": "Point", "coordinates": [ 6.2898933, 49.8350416 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307148166", "name": "Olingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ouljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2609731\"", "population": 490 }, "geometry": { "type": "Point", "coordinates": [ 6.3158164, 49.6807764 ] } }, +{ "type": "Feature", "properties": { "osm_id": "307451466", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Eeschler\",\"name:lb\"=>\"Eescheler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1016242\",\"wikipedia\"=>\"lb:Eescheler\"", "population": 203 }, "geometry": { "type": "Point", "coordinates": [ 6.3099919, 49.7164002 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308830736", "name": "Moersdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Miesdrëf\",\"name:lb\"=>\"Méischdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2325885\",\"wikipedia\"=>\"lb:Méischdref\"", "population": 406 }, "geometry": { "type": "Point", "coordinates": [ 6.5012604, 49.7450372 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308832831", "name": "Givenich", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giwenech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q188069\",\"wikipedia\"=>\"lb:Giwenech\"", "population": 85 }, "geometry": { "type": "Point", "coordinates": [ 6.4791126, 49.7475613 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837128", "name": "Hinkel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Hénkel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2365494\",\"wikipedia\"=>\"lb:Hénkel\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.5149128, 49.7834439 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308837132", "name": "Girst", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Giischt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q609734\",\"wikipedia\"=>\"lb:Giischt\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.4988273, 49.7736506 ] } }, +{ "type": "Feature", "properties": { "osm_id": "308841241", "name": "Rosport", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rosport\",\"name:lb\"=>\"Rouspert\",\"name:lt\"=>\"Rosportas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917001\",\"wikipedia\"=>\"lb:Rouspert\"", "population": 826 }, "geometry": { "type": "Point", "coordinates": [ 6.5014359, 49.8047635 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224139", "name": "Lieler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Léiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2280255\",\"wikipedia\"=>\"lb:Léiler\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1090378, 50.1249085 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310224434", "name": "Kalborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kaalber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3192136\",\"wikipedia\"=>\"lb:Kaalber\"", "population": 63 }, "geometry": { "type": "Point", "coordinates": [ 6.1121588, 50.1026695 ] } }, +{ "type": "Feature", "properties": { "osm_id": "310990249", "name": "Urspelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uerspelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443753\",\"wikipedia\"=>\"lb:Ischpelt\"", "population": 153 }, "geometry": { "type": "Point", "coordinates": [ 6.0463143, 50.0750761 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311138672", "name": "Doncols", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Donkols\",\"name:fr\"=>\"Doncols\",\"name:lb\"=>\"Donkels\",\"name:wa\"=>\"Doncô\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2323581\",\"wikipedia\"=>\"lb:Donkels\"", "population": 396 }, "geometry": { "type": "Point", "coordinates": [ 5.8427834, 49.9734048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311141705", "name": "Niederwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Nidderwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246515\",\"wikipedia\"=>\"lb:Nidderwampech\"", "population": 236 }, "geometry": { "type": "Point", "coordinates": [ 5.8408837, 50.0098866 ] } }, +{ "type": "Feature", "properties": { "osm_id": "311528456", "name": "Hoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschent\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1401816\"", "population": 474 }, "geometry": { "type": "Point", "coordinates": [ 6.0813652, 49.9492448 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312942499", "name": "Breidfeld", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Breedelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1837613\",\"wikipedia\"=>\"lb:Breedelt\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 6.0621855, 50.1233975 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949024", "name": "Beiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beeler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 6.0889894, 50.1627588 ] } }, +{ "type": "Feature", "properties": { "osm_id": "312949026", "name": "Weiswampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wäiswampich\",\"name:de\"=>\"Weiswampach\",\"name:fr\"=>\"Weiswampach\",\"name:lb\"=>\"Wäiswampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917108\",\"wikipedia\"=>\"lb:Wäiswampach\"", "population": 1325 }, "geometry": { "type": "Point", "coordinates": [ 6.0753153, 50.139719 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117723", "name": "Oberwampach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerwampech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691679\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 5.8600036, 50.0147471 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117843", "name": "Allerborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Allerborn\",\"name:fr\"=>\"Allerborn\",\"name:lb\"=>\"Allerbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2837941\",\"wikimedia_commons\"=>\"Category:Allerborn\",\"wikipedia\"=>\"lb:Allerbuer\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.8701521, 50.0356425 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313117981", "name": "Boxhorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Boxer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2131071\",\"wikipedia\"=>\"lb:Boxer\"", "population": 401 }, "geometry": { "type": "Point", "coordinates": [ 5.9913797, 50.0824172 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118095", "name": "Lullange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Lullingen\",\"name:fr\"=>\"Lullange\",\"name:lb\"=>\"Lëllgen\",\"name:lt\"=>\"Lulanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1858106\",\"wikipedia\"=>\"lb:Lëllgen\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9410604, 50.0582011 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118096", "name": "Doennange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Dönningen\",\"name:fr\"=>\"Doennange\",\"name:lb\"=>\"Diänjen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2606309\",\"wikipedia\"=>\"lb:Diänjen\"", "population": 129 }, "geometry": { "type": "Point", "coordinates": [ 5.9549219, 50.0614381 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313118271", "name": "Selscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Selschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2669445\",\"wikipedia\"=>\"lb:Selschent\"", "population": 102 }, "geometry": { "type": "Point", "coordinates": [ 5.9471163, 50.0175305 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120629", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16765028\",\"wikipedia\"=>\"lb:Weiler (Wëntger)\"", "population": 48 }, "geometry": { "type": "Point", "coordinates": [ 5.9442009, 50.1032718 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313120681", "name": "Hoffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houfelt\",\"name:lt\"=>\"Hofeltas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1969566\",\"wikipedia\"=>\"lb:Houfelt\"", "population": 322 }, "geometry": { "type": "Point", "coordinates": [ 5.9207491, 50.0993086 ] } }, +{ "type": "Feature", "properties": { "osm_id": "313201420", "name": "Boevange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bögen\",\"name:fr\"=>\"Boevange\",\"name:lb\"=>\"Béigen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2908595\",\"wikipedia\"=>\"lb:Béigen\"", "population": 288 }, "geometry": { "type": "Point", "coordinates": [ 5.929826, 50.048016 ] } }, +{ "type": "Feature", "properties": { "osm_id": "314916379", "name": "Betzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Betzder\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3507938, 49.68738 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315038263", "name": "Bivels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Biwels\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q301573\"", "population": 122 }, "geometry": { "type": "Point", "coordinates": [ 6.1915901, 49.9587943 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315226656", "name": "Boursdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Buerschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2121740\",\"wikipedia\"=>\"lb:Buerschdref\"", "population": 15 }, "geometry": { "type": "Point", "coordinates": [ 6.4779772, 49.764649 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315554575", "name": "Geyershof", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Geyershof\",\"name:lb\"=>\"Geieschhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102752\",\"wikipedia\"=>\"lb:Geieschhaff (Bech)\"", "population": 42 }, "geometry": { "type": "Point", "coordinates": [ 6.3867954, 49.7657889 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315616694", "name": "Erpeldange-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen an der Sauer\",\"name:fr\"=>\"Erpeldange-sur-Sûre\",\"name:lb\"=>\"Ierpeldeng op der Sauer\",\"name:lt\"=>\"Erpeldanžas prie Zauerio\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1153 }, "geometry": { "type": "Point", "coordinates": [ 6.114372, 49.8628748 ] } }, +{ "type": "Feature", "properties": { "osm_id": "315977321", "name": "Wallendorf-Pont", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Wallenduerfer-Bréck\",\"name:de\"=>\"Wallendorferbrück\",\"name:lb\"=>\"Wuelenduerfer Bréck\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2084576\",\"wikipedia\"=>\"lb:Wallenduerfer-Bréck\"", "population": 216 }, "geometry": { "type": "Point", "coordinates": [ 6.2903665, 49.8742048 ] } }, +{ "type": "Feature", "properties": { "osm_id": "325629808", "name": "Hesperange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hesperingen\",\"name:fr\"=>\"Hesperange\",\"name:lb\"=>\"Hesper\",\"name:lt\"=>\"Hesperanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 2781 }, "geometry": { "type": "Point", "coordinates": [ 6.1615727, 49.5729552 ] } }, +{ "type": "Feature", "properties": { "osm_id": "326847707", "name": "Seltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Selz\",\"name:de\"=>\"Seltz\",\"name:fr\"=>\"Seltz\",\"name:lb\"=>\"Selz\",\"name:lt\"=>\"Selcas\",\"note:population\"=>\"Tandel might count its ~18 inhabitants in Bettendorf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16764777\",\"wikipedia\"=>\"lb:Selz\"", "population": 105 }, "geometry": { "type": "Point", "coordinates": [ 6.1888331, 49.8800933 ] } }, +{ "type": "Feature", "properties": { "osm_id": "333076959", "name": "Pommerloch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Pommerlach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 133 }, "geometry": { "type": "Point", "coordinates": [ 5.8606531, 49.959534 ] } }, +{ "type": "Feature", "properties": { "osm_id": "334795814", "name": "Hachiville", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:fr\"=>\"Hachiville\",\"name:lb\"=>\"Helzen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2906411\",\"wikipedia\"=>\"lb:Helzen\"", "population": 192 }, "geometry": { "type": "Point", "coordinates": [ 5.9231694, 50.107473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335117824", "name": "Stockem", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Stackem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2480852\",\"wikipedia\"=>\"lb:Stackem\"", "population": 135 }, "geometry": { "type": "Point", "coordinates": [ 5.9568503, 50.0781566 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335118372", "name": "Asselborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Aasselburren\",\"name:de\"=>\"Asselborn\",\"name:fr\"=>\"Asselborn\",\"name:lb\"=>\"Aasselbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2029793\",\"wikimedia_commons\"=>\"Category:Asselborn\",\"wikipedia\"=>\"lb:Aasselbuer\"", "population": 429 }, "geometry": { "type": "Point", "coordinates": [ 5.9721893, 50.0974663 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335645792", "name": "Brachtenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bruechtebaach\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q896630\"", "population": 258 }, "geometry": { "type": "Point", "coordinates": [ 5.9107547, 50.0203164 ] } }, +{ "type": "Feature", "properties": { "osm_id": "335673579", "name": "Eschweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Eeschweller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q986394\"", "population": 380 }, "geometry": { "type": "Point", "coordinates": [ 5.9482244, 49.9965829 ] } }, +{ "type": "Feature", "properties": { "osm_id": "348643605", "name": "Dillingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Déiljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026551\",\"wikipedia\"=>\"lb:Déiljen\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.3196036, 49.8529402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "369957204", "name": "Troine", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trotten\",\"name:lb\"=>\"Tratten\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246493\",\"wikipedia\"=>\"lb:Tratten\"", "population": 200 }, "geometry": { "type": "Point", "coordinates": [ 5.882146, 50.0638245 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767266", "name": "Michelau", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méchela\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"https://www.bourscheid.lu/fr/Pages/Michelau.aspx\",\"wikidata\"=>\"Q2708173\"", "population": 321 }, "geometry": { "type": "Point", "coordinates": [ 6.0903111, 49.8995874 ] } }, +{ "type": "Feature", "properties": { "osm_id": "370767993", "name": "Bourscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Burschent\",\"name:de\"=>\"Burscheid\",\"name:fr\"=>\"Bourscheid\",\"name:lb\"=>\"Buerschent\",\"name:lt\"=>\"BurÅ¡eidas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20969287\",\"wikipedia\"=>\"lb:Buerschent\"", "population": 467 }, "geometry": { "type": "Point", "coordinates": [ 6.0645251, 49.9099274 ] } }, +{ "type": "Feature", "properties": { "osm_id": "393949744", "name": "Crendal", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Kréindel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2347948\",\"wikipedia\"=>\"lb:Kréindel\"", "population": 36 }, "geometry": { "type": "Point", "coordinates": [ 5.8974779, 50.0568945 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412120465", "name": "Rollingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rollengen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2640199\"", "population": 2126 }, "geometry": { "type": "Point", "coordinates": [ 6.1136685, 49.7412519 ] } }, +{ "type": "Feature", "properties": { "osm_id": "412121200", "name": "Essingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Essen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2075481\",\"wikipedia\"=>\"lb:Essen\"", "population": 21 }, "geometry": { "type": "Point", "coordinates": [ 6.1156809, 49.7788958 ] } }, +{ "type": "Feature", "properties": { "osm_id": "414038212", "name": "Metzdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"postal_code\"=>\"54308\",\"wikidata\"=>\"Q18411620\",\"wikipedia\"=>\"de:Metzdorf (Langsur)\"", "population": 279 }, "geometry": { "type": "Point", "coordinates": [ 6.5017945, 49.7480626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "448174457", "name": "Oberdonven", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Uewerdonwen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2385037\",\"wikipedia\"=>\"lb:Uewerdonwen\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.3999397, 49.6505368 ] } }, +{ "type": "Feature", "properties": { "osm_id": "451584847", "name": "Gostingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gouschteng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3111462\",\"wikipedia\"=>\"lb:Gouschteng\"", "population": 499 }, "geometry": { "type": "Point", "coordinates": [ 6.3540451, 49.6213981 ] } }, +{ "type": "Feature", "properties": { "osm_id": "465612813", "name": "Oberkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Obercorn\",\"name:de\"=>\"Oberkorn\",\"name:fr\"=>\"Oberkorn\",\"name:lb\"=>\"Uewerkuer\",\"name:lt\"=>\"Oberkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2010019\",\"wikipedia\"=>\"lb:Uewerkuer\"", "population": 4588 }, "geometry": { "type": "Point", "coordinates": [ 5.8947993, 49.5135907 ] } }, +{ "type": "Feature", "properties": { "osm_id": "466169828", "name": "Niederkorn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Niedercorn\",\"name:de\"=>\"Niederkorn\",\"name:fr\"=>\"Niederkorn\",\"name:lb\"=>\"Nidderkuer\",\"name:lt\"=>\"Nyderkornas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q751569\",\"wikipedia\"=>\"lb:Nidderkuer\"", "population": 7350 }, "geometry": { "type": "Point", "coordinates": [ 5.8899436, 49.5366182 ] } }, +{ "type": "Feature", "properties": { "osm_id": "472318728", "name": "Noertrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Nörtringen\",\"name:fr\"=>\"Noertrange\",\"name:lb\"=>\"Näertrech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2586273\",\"wikipedia\"=>\"lb:Näertrech\"", "population": 360 }, "geometry": { "type": "Point", "coordinates": [ 5.9094527, 49.979292 ] } }, +{ "type": "Feature", "properties": { "osm_id": "676227397", "name": "Oberglabach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name\"=>\"Glabach\",\"alt_name:de\"=>\"Glabach\",\"alt_name:lb\"=>\"Glabech\",\"name:lb\"=>\"Uewerglabech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13105339\",\"wikipedia\"=>\"lb:Uewerglabech\"", "population": 27 }, "geometry": { "type": "Point", "coordinates": [ 6.1492319, 49.7848259 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425268", "name": "Flaxweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Flaxweiler\",\"name:fr\"=>\"Flaxweiler\",\"name:lb\"=>\"Fluessweiler\",\"name:lt\"=>\"Flaksvaileris\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16763539\",\"wikipedia\"=>\"lb:Fluessweiler\"", "population": 553 }, "geometry": { "type": "Point", "coordinates": [ 6.341955, 49.6663359 ] } }, +{ "type": "Feature", "properties": { "osm_id": "803425277", "name": "Beyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Beyren\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q97254698\",\"wikipedia\"=>\"lb:Beyren\"", "population": 415 }, "geometry": { "type": "Point", "coordinates": [ 6.3358677, 49.6306673 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804737264", "name": "Hoscheid-Dickt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Houschter-Déckt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q5907215\",\"wikipedia\"=>\"lb:Houschter-Déckt\"", "population": 270 }, "geometry": { "type": "Point", "coordinates": [ 6.0905533, 49.9719134 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815918", "name": "Deiffelt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Déilwënt\",\"name:lb\"=>\"Deewelt\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3247752\"", "population": 130 }, "geometry": { "type": "Point", "coordinates": [ 5.9626492, 50.0650166 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804815920", "name": "Lentzweiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lenzweiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3229535\",\"wikipedia\"=>\"lb:Lenzweiler\"", "population": 92 }, "geometry": { "type": "Point", "coordinates": [ 5.9752596, 50.0694924 ] } }, +{ "type": "Feature", "properties": { "osm_id": "804852086", "name": "Esch-sur-Sûre", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Esch-Sauer\",\"name:lb\"=>\"Esch-Sauer\",\"name:lt\"=>\"EÅ¡as prie Zauerio\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 393 }, "geometry": { "type": "Point", "coordinates": [ 5.9351159, 49.9112543 ] } }, +{ "type": "Feature", "properties": { "osm_id": "861478763", "name": "Bech-Kleinmacher", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bech-Maacher\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2893442\"", "population": 673 }, "geometry": { "type": "Point", "coordinates": [ 6.3541214, 49.5317776 ] } }, +{ "type": "Feature", "properties": { "osm_id": "870803526", "name": "Holler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Holler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q494042\",\"wikipedia\"=>\"lb:Holler\"", "population": 83 }, "geometry": { "type": "Point", "coordinates": [ 6.0474938, 50.1226686 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1039313860", "name": "Born", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bour\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2314501\",\"wikipedia\"=>\"lb:Bur (Mompech)\"", "population": 397 }, "geometry": { "type": "Point", "coordinates": [ 6.5127637, 49.7596482 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1067335350", "name": "Nommern", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Noumer\",\"name:lt\"=>\"Nomernas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917021\",\"wikipedia\"=>\"lb:Noumer\"", "population": 320 }, "geometry": { "type": "Point", "coordinates": [ 6.1737271, 49.7938754 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069755603", "name": "Rumlange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Rümlingen\",\"name:fr\"=>\"Rumlange\",\"name:lb\"=>\"Rëmeljen\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246491\",\"wikipedia\"=>\"lb:Rëmeljen\"", "population": 109 }, "geometry": { "type": "Point", "coordinates": [ 5.9737823, 50.0797473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1069839501", "name": "Reuler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Reiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2691811\",\"wikipedia\"=>\"lb:Reiler\"", "population": 307 }, "geometry": { "type": "Point", "coordinates": [ 6.0362606, 50.0586563 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1073974504", "name": "Knaphoscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Knapphouschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q634854\"", "population": 283 }, "geometry": { "type": "Point", "coordinates": [ 5.9629051, 50.0119363 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1262276641", "name": "Moestroff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Möstroff\",\"name:fr\"=>\"Moestroff\",\"name:lb\"=>\"Méischtref\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2238050\"", "population": 501 }, "geometry": { "type": "Point", "coordinates": [ 6.2377274, 49.8677927 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1353922114", "name": "Fischbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Fischbach\",\"name:fr\"=>\"Fischbach\",\"name:lb\"=>\"Fëschbech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q20966342\",\"wikipedia\"=>\"lb:Fëschbech (Miersch)\"", "population": 364 }, "geometry": { "type": "Point", "coordinates": [ 6.1866614, 49.7462374 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1373181475", "name": "Mullendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Müllendorf\",\"name:lb\"=>\"Mëlleref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2180001\"", "population": 1139 }, "geometry": { "type": "Point", "coordinates": [ 6.12554, 49.6812881 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392080848", "name": "Sassel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Saassel\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2004484\",\"wikipedia\"=>\"lb:Saassel\"", "population": 53 }, "geometry": { "type": "Point", "coordinates": [ 5.9949473, 50.0996616 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086277", "name": "Roedt", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Ried\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 118 }, "geometry": { "type": "Point", "coordinates": [ 6.2847078, 49.5699 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392086671", "name": "Trintange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Trintingen\",\"name:fr\"=>\"Trintange\",\"name:lb\"=>\"Trënteng\",\"name:lt\"=>\"Trintanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3112451\",\"wikipedia\"=>\"lb:Trënteng\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.280436, 49.5714197 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1392087151", "name": "Ersange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ersingen\",\"name:fr\"=>\"Ersange\",\"name:lb\"=>\"Ierseng\",\"name:lt\"=>\"Ersanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057497\"", "population": 231 }, "geometry": { "type": "Point", "coordinates": [ 6.2756939, 49.5763872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912911", "name": "Schrassig", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schraasseg\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1026554\"", "population": 850 }, "geometry": { "type": "Point", "coordinates": [ 6.2558038, 49.6107061 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912912", "name": "Schuttrange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Schüttringen\",\"name:lb\"=>\"Schëtter\",\"name:lt\"=>\"Å utranžas\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1673 }, "geometry": { "type": "Point", "coordinates": [ 6.2714312, 49.6226683 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1397912914", "name": "Uebersyren", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Ãœbersyren\",\"name:lb\"=>\"Iwwersiren\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2195042\"", "population": 776 }, "geometry": { "type": "Point", "coordinates": [ 6.2770155, 49.6318394 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1398696333", "name": "Medingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Méideng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2351743\"", "population": 125 }, "geometry": { "type": "Point", "coordinates": [ 6.2486902, 49.5750028 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1400923528", "name": "Sonlez", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Soller\",\"name:lb\"=>\"Soller\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3109434\"", "population": 68 }, "geometry": { "type": "Point", "coordinates": [ 5.8236598, 49.9642414 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1401393745", "name": "Grümelscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:fr\"=>\"Grumelscheid\",\"loc_name:lb\"=>\"Grëmelischt\",\"name:de\"=>\"Grümelscheid\",\"name:fr\"=>\"Grummelscheid\",\"name:lb\"=>\"Grëmmelescht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2257631\",\"wikipedia\"=>\"lb:Grëmmelescht\"", "population": 95 }, "geometry": { "type": "Point", "coordinates": [ 5.8723935, 49.9852827 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1569147752", "name": "Ingeldorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Angelduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2350374\"", "population": 799 }, "geometry": { "type": "Point", "coordinates": [ 6.1340641, 49.8532419 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583124458", "name": "Buschdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bëschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1017315\",\"wikipedia\"=>\"lb:Bëschdref\"", "population": 500 }, "geometry": { "type": "Point", "coordinates": [ 6.0065355, 49.7509296 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1583666963", "name": "Clervaux", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Cliärref\",\"capital\"=>\"6\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Clerf\",\"name:fr\"=>\"Clervaux\",\"name:lb\"=>\"Klierf\",\"name:lt\"=>\"Klervas\",\"name:ru\"=>\"Клерво\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q836075\"", "population": 1425 }, "geometry": { "type": "Point", "coordinates": [ 6.0275511, 50.0547912 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1588770106", "name": "Boevange-sur-Attert", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Böwingen/Attert\",\"name:fr\"=>\"Boevange-sur-Attert\",\"name:lb\"=>\"Béiwen/Atert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13101858\",\"wikipedia\"=>\"lb:Béiwen-Atert\"", "population": 885 }, "geometry": { "type": "Point", "coordinates": [ 6.0127253, 49.7757093 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614807043", "name": "Bastendorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Baastenduerf\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2887692\",\"wikimedia_commons\"=>\"Category:Bastendorf\",\"wikipedia\"=>\"lb:Baastenduerf\"", "population": 609 }, "geometry": { "type": "Point", "coordinates": [ 6.1642081, 49.8907959 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614814315", "name": "Vianden", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:continent\"=>\"Europe\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Vianden\",\"name:lb\"=>\"Veianen\",\"name:lt\"=>\"Viandenas\",\"name:ru\"=>\"Вианден\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"website\"=>\"http://www.vianden-info.lu\",\"website:en\"=>\"http://www.vianden-info.lu/en/\",\"wikidata\"=>\"Q20969217\",\"wikipedia\"=>\"lb:Veianen\"", "population": 2138 }, "geometry": { "type": "Point", "coordinates": [ 6.2066715, 49.9336976 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838325", "name": "Merscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mierschent\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3306641\",\"wikipedia\"=>\"lb:Mierschent\"", "population": 215 }, "geometry": { "type": "Point", "coordinates": [ 6.1051045, 49.954078 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1614838543", "name": "Weiler", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"is_in:municipality\"=>\"Putscheid\",\"name:lb\"=>\"Weiler\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q299759\",\"wikipedia\"=>\"lb:Weiler\"", "population": 134 }, "geometry": { "type": "Point", "coordinates": [ 6.1231458, 49.9624908 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615314820", "name": "Tuntange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Tüntingen\",\"name:fr\"=>\"Tuntange\",\"name:lb\"=>\"Tënten\",\"name:lt\"=>\"Tiuntanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q985472\"", "population": 1286 }, "geometry": { "type": "Point", "coordinates": [ 6.0137438, 49.7156626 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1615318346", "name": "Hollenfels", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Huelmes\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3092783\",\"wikipedia\"=>\"lb:Huelmes\"", "population": 354 }, "geometry": { "type": "Point", "coordinates": [ 6.0483652, 49.7128161 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1628731564", "name": "Esch-sur-Alzette", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "town", "man_made": null, "other_tags": "\"contact:website\"=>\"www.esch.lu\",\"is_in:country\"=>\"Luxembourg\",\"name:de\"=>\"Esch an der Alzette\",\"name:fr\"=>\"Esch-sur-Alzette\",\"name:lb\"=>\"Esch-Uelzecht\",\"name:lt\"=>\"EÅ¡as prie Alzeto\",\"name:ru\"=>\"Эш-сюр-Альзетт\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q16010\",\"wikipedia\"=>\"lb:Esch-Uelzecht\"", "population": 36218 }, "geometry": { "type": "Point", "coordinates": [ 5.9850306, 49.4959628 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1660673617", "name": "Brouch", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bruch\",\"name:lb\"=>\"Bruch\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q991918\"", "population": 847 }, "geometry": { "type": "Point", "coordinates": [ 6.0210028, 49.7353096 ] } }, +{ "type": "Feature", "properties": { "osm_id": "1679621149", "name": "Flebour", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Fléiber\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 34 }, "geometry": { "type": "Point", "coordinates": [ 5.8117781, 49.8983476 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2000506807", "name": "Wormeldange-Haut", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Oberwormeldingen\",\"name:fr\"=>\"Wormeldange-Haut\",\"name:lb\"=>\"Uewerwuermeldeng\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1978246\"", "population": 347 }, "geometry": { "type": "Point", "coordinates": [ 6.4007367, 49.6097402 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2323501115", "name": "Bilsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Bëls(ch)dref\",\"name:lb\"=>\"Bilschdref\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2193302\",\"wikipedia\"=>\"lb:Bilschdref\"", "population": 152 }, "geometry": { "type": "Point", "coordinates": [ 5.8246298, 49.8565541 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2376906989", "name": "Savelborn", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Savelborn\",\"name:fr\"=>\"Savelborn\",\"name:lb\"=>\"Suewelbuer\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3474520\",\"wikimedia_commons\"=>\"Category:Savelborn\",\"wikipedia\"=>\"lb:Suewelbuer\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.2535045, 49.8117915 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2378280049", "name": "Hierheck", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13103023\",\"wikipedia\"=>\"lb:Hierheck\"", "population": 32 }, "geometry": { "type": "Point", "coordinates": [ 5.9294678, 49.8721473 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2469204002", "name": "Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Bierg\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2897040\"", "population": 298 }, "geometry": { "type": "Point", "coordinates": [ 6.3586902, 49.6826832 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2539578268", "name": "Leithum", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Leetem\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2517573\",\"wikipedia\"=>\"lb:Leetem\"", "population": 115 }, "geometry": { "type": "Point", "coordinates": [ 6.1083913, 50.1604741 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2598100299", "name": "Lenningen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Lennéng\",\"name:lt\"=>\"Leningenas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3917061\"", "population": 436 }, "geometry": { "type": "Point", "coordinates": [ 6.3667908, 49.602187 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2799198224", "name": "Grevenknapp", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Gréiweknapp\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1546119\",\"wikipedia\"=>\"lb:Gréiweknapp\"", "population": 244 }, "geometry": { "type": "Point", "coordinates": [ 6.0327059, 49.7623596 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805917163", "name": "Roost", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Rouscht\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 51 }, "geometry": { "type": "Point", "coordinates": [ 6.0960274, 49.7868872 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2805943924", "name": "Hëttermillen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Hüttermühle\",\"name:lb\"=>\"Hëttermillen\",\"official_name\"=>\"Huettermuehle\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 89 }, "geometry": { "type": "Point", "coordinates": [ 6.3713317, 49.5872804 ] } }, +{ "type": "Feature", "properties": { "osm_id": "2907661401", "name": "Wandhaff", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Windhof\",\"name:en\"=>\"Windhof\",\"name:lb\"=>\"Wandhaff\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246729\"", "population": 94 }, "geometry": { "type": "Point", "coordinates": [ 5.9578187, 49.6471021 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3300221255", "name": "Bereldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Bereldingen\",\"name:lb\"=>\"Bäreldeng\",\"name:lt\"=>\"Bereldanžas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q818991\"", "population": 4444 }, "geometry": { "type": "Point", "coordinates": [ 6.1215966, 49.6552606 ] } }, +{ "type": "Feature", "properties": { "osm_id": "3425202622", "name": "Hobscheid", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:en\"=>\"Hobscheid\",\"name:fr\"=>\"Hobscheid\",\"name:lb\"=>\"Habscht\",\"name:lt\"=>\"HobÅ¡eidas\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q13102943\",\"wikipedia\"=>\"lb:Habscht\"", "population": 1739 }, "geometry": { "type": "Point", "coordinates": [ 5.9139276, 49.687813 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5090487164", "name": "Hagelsdorf", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Haastert\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q933478\"", "population": 25 }, "geometry": { "type": "Point", "coordinates": [ 6.3642576, 49.6925865 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226188582", "name": "Findel", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Findel\",\"name:fr\"=>\"Findel\",\"name:lt\"=>\"Findelis\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2463132\",\"wikipedia\"=>\"lb:Findel\"", "population": 90 }, "geometry": { "type": "Point", "coordinates": [ 6.1976957, 49.6262974 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5226744169", "name": "Schimpach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Schëmpech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 45 }, "geometry": { "type": "Point", "coordinates": [ 5.848252, 50.0096768 ] } }, +{ "type": "Feature", "properties": { "osm_id": "5509570914", "name": "Weidingen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"alt_name:lb\"=>\"Weidéngen\",\"name:lb\"=>\"Wegdichen\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3246512\",\"wikipedia\"=>\"lb:Wegdichen\"", "population": 669 }, "geometry": { "type": "Point", "coordinates": [ 5.940063, 49.9718117 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6076161263", "name": "Wecker", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Wecker\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2320701\",\"wikipedia\"=>\"lb:Wecker (Biwer)\"", "population": 211 }, "geometry": { "type": "Point", "coordinates": [ 6.3878176, 49.6956944 ] } }, +{ "type": "Feature", "properties": { "osm_id": "6173360081", "name": "Erpeldange", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Erpeldingen\",\"name:lb\"=>\"Ierpeldeng\",\"population:date\"=>\"2020-09-30\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3057429\"", "population": 423 }, "geometry": { "type": "Point", "coordinates": [ 5.9477465, 49.9781688 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296701", "name": "Heiderscheidergrund", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:de\"=>\"Heiderscheidergrund\",\"name:fr\"=>\"Fond de Heiderscheid\",\"name:lb\"=>\"Heischtergronn\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q3129397\",\"wikipedia\"=>\"lb:Heischtergronn\"", "population": 61 }, "geometry": { "type": "Point", "coordinates": [ 5.9605894, 49.9059946 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296702", "name": "Eltz", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Elz\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q1866646\",\"wikipedia\"=>\"lb:Elz\"", "population": 46 }, "geometry": { "type": "Point", "coordinates": [ 5.8952347, 49.7793671 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296709", "name": "Oberfeulen", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q2443388\",\"wikipedia\"=>\"lb:Uewerfeelen\"", "population": 634 }, "geometry": { "type": "Point", "coordinates": [ 6.0337063, 49.8477461 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296710", "name": "Eisenbach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"note:population\"=>\"Counts both Untereisenbach and Obereisenbach in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 295 }, "geometry": { "type": "Point", "coordinates": [ 6.146208, 50.0049255 ] } }, +{ "type": "Feature", "properties": { "osm_id": "7215296711", "name": "Colmar-Berg", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"commune\"=>\"Colmar-Berg\",\"name:de\"=>\"Colmar-Berg\",\"name:fr\"=>\"Colmar-Berg\",\"name:lb\"=>\"Colmer-Bierg\",\"note:population\"=>\"Counts both Colmar and Berg in RNPP\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\"", "population": 1995 }, "geometry": { "type": "Point", "coordinates": [ 6.0910235, 49.811143 ] } }, +{ "type": "Feature", "properties": { "osm_id": "10688012159", "name": "Mompach", "barrier": null, "highway": null, "ref": null, "address": null, "is_in": null, "place": "village", "man_made": null, "other_tags": "\"name:lb\"=>\"Mompech\",\"population:date\"=>\"2020-01-03\",\"source:population\"=>\"https://data.public.lu/fr/datasets/population-par-localite-population-per-locality\",\"wikidata\"=>\"Q47486604\",\"wikipedia\"=>\"lb:Mompech\"", "population": 245 }, "geometry": { "type": "Point", "coordinates": [ 6.4644926, 49.7520823 ] } } ] } diff --git a/examples/data/polygons_hatch_eu_lifeexp_2018.geojson b/examples/data/polygons_hatch_eu_lifeexp_2018.geojson index eeede69..72ebc9d 100644 --- a/examples/data/polygons_hatch_eu_lifeexp_2018.geojson +++ b/examples/data/polygons_hatch_eu_lifeexp_2018.geojson @@ -3,339 +3,339 @@ "name": "polygons_hatch_eu_lifeexp_2018", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7, "random": 169.914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331, "random": 35.93 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666, "random": 128.051 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9, "random": 162.537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8, "random": 189.486 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669, "random": 119.448 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666, "random": 118.279 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9, "random": 39.912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6, "random": 44.293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326, "random": 85.969 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329, "random": 14.013 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0, "random": 62.475 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666, "random": 34.293 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337, "random": 113.903 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3, "random": 12.68 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654, "random": 124.45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6, "random": 110.372 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": null, "random": 152.389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663, "random": 47.18 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": null, "random": 68.145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": null, "random": 32.02 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": null, "random": 199.617 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7, "random": 60.524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669, "random": 35.892 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334, "random": 163.831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337, "random": 123.904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5, "random": 154.381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663, "random": 173.014 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5, "random": 64.88 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1, "random": 57.333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669, "random": 21.295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null, "random": 125.804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null, "random": 128.291 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null, "random": 26.395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669, "random": 152.221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669, "random": 127.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331, "random": 165.687 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677, "random": 93.696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671, "random": 173.105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2, "random": 77.561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329, "random": 160.337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654, "random": 24.057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663, "random": 81.381 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329, "random": 31.914 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7, "random": 131.676 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666, "random": 27.562 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6, "random": 144.125 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663, "random": 50.687 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654, "random": 114.431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337, "random": 143.368 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7, "random": 158.073 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666, "random": 124.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329, "random": 81.812 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654, "random": 131.316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677, "random": 64.233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0, "random": 107.305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1, "random": 57.646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666, "random": 166.124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334, "random": 183.943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654, "random": 85.458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334, "random": 112.661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2, "random": 133.251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4, "random": 194.74 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334, "random": 105.333 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7, "random": 154.161 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0, "random": 5.263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334, "random": 154.815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334, "random": 77.166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329, "random": 43.809 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334, "random": 107.42 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334, "random": 111.394 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0, "random": 82.309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3, "random": 196.783 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3, "random": 175.539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671, "random": 32.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2, "random": 46.919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5, "random": 25.28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7, "random": 30.078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1, "random": 170.982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337, "random": 191.966 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334, "random": 74.638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0, "random": 155.783 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6, "random": 82.623 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1, "random": 177.917 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8, "random": 85.933 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7, "random": 94.282 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669, "random": 102.272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9, "random": 101.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7, "random": 36.64 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5, "random": 136.067 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669, "random": 82.583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7, "random": 24.167 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329, "random": 69.091 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2, "random": 119.997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669, "random": 58.964 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666, "random": 89.675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6, "random": 168.66 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663, "random": 36.057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323, "random": 102.623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337, "random": 105.079 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8, "random": 143.488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674, "random": 94.788 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7, "random": 172.953 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654, "random": 15.623 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9, "random": 83.317 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986, "random": 34.593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654, "random": 67.745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4, "random": 157.659 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331, "random": 83.017 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3, "random": 188.882 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": null, "random": 47.764 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334, "random": 176.616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334, "random": 151.571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669, "random": 65.775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": null, "random": 113.009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": null, "random": 143.635 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": null, "random": 50.605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": null, "random": 119.816 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331, "random": 18.261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346, "random": 166.083 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334, "random": 68.766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669, "random": 33.126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4, "random": 21.461 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3, "random": 42.205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331, "random": 175.71 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4, "random": 74.082 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1, "random": 103.352 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666, "random": 83.534 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329, "random": 175.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329, "random": 12.79 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343, "random": 159.423 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4, "random": 54.825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669, "random": 150.414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671, "random": 146.394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334, "random": 155.012 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4, "random": 162.726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334, "random": 53.269 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9, "random": 142.649 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6, "random": 147.971 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666, "random": 44.822 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9, "random": 7.589 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4, "random": 50.614 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329, "random": 110.014 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326, "random": 85.832 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666, "random": 129.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669, "random": 51.755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329, "random": 184.025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6, "random": 54.542 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663, "random": 73.391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334, "random": 10.762 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": null, "random": 196.681 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6, "random": 62.768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7, "random": 170.251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8, "random": 106.994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9, "random": 163.249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666, "random": 198.082 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331, "random": 108.874 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334, "random": 52.442 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666, "random": 195.619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331, "random": 86.959 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334, "random": 97.366 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6, "random": 90.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326, "random": 128.049 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5, "random": 132.998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677, "random": 138.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3, "random": 148.645 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334, "random": 139.356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null, "random": 63.353 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669, "random": 118.223 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null, "random": 45.447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654, "random": 7.871 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334, "random": 176.002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334, "random": 69.962 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7, "random": 166.614 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7, "random": 7.465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323, "random": 190.432 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null, "random": 114.59 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666, "random": 194.826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329, "random": 145.443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666, "random": 43.75 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671, "random": 65.404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334, "random": 73.846 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6, "random": 77.122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": null, "random": 164.734 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": null, "random": 69.147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3, "random": 61.363 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671, "random": 9.847 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666, "random": 144.458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4, "random": 96.61 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9, "random": 157.853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677, "random": 57.377 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3, "random": 164.389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343, "random": 109.677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677, "random": 193.53 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663, "random": 140.696 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0, "random": 110.688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666, "random": 76.455 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326, "random": 153.177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8, "random": 6.499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": null, "random": 76.625 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2, "random": 55.323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677, "random": 158.343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329, "random": 86.629 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8, "random": 96.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334, "random": 144.745 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346, "random": 48.85 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2, "random": 9.926 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674, "random": 128.11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666, "random": 178.336 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6, "random": 111.264 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4, "random": 74.556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666, "random": 196.148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337, "random": 156.662 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669, "random": 33.969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9, "random": 185.638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669, "random": 174.114 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3, "random": 68.773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343, "random": 64.651 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677, "random": 176.657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1, "random": 75.36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2, "random": 43.922 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334, "random": 61.894 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337, "random": 136.383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6, "random": 139.536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666, "random": 128.593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331, "random": 166.443 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666, "random": 196.033 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671, "random": 147.589 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654, "random": 18.408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2, "random": 92.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323, "random": 139.301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2, "random": 8.586 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329, "random": 78.343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666, "random": 62.477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329, "random": 164.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4, "random": 34.173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334, "random": 73.208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669, "random": 15.283 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674, "random": 109.206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9, "random": 24.555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674, "random": 96.727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1, "random": 77.45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666, "random": 71.658 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1, "random": 139.765 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2, "random": 44.908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3, "random": 130.156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329, "random": 66.968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0, "random": 5.947 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5, "random": 83.74 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666, "random": 95.789 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334, "random": 150.873 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9, "random": 61.673 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666, "random": 20.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1, "random": 180.752 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346, "random": 32.104 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329, "random": 85.148 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4, "random": 112.831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null, "random": 85.199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8, "random": 69.983 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9, "random": 192.528 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663, "random": 168.319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331, "random": 65.003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666, "random": 106.789 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666, "random": 16.405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331, "random": 146.908 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666, "random": 48.454 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666, "random": 79.923 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671, "random": 153.931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2, "random": 48.494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323, "random": 33.247 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337, "random": 163.813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323, "random": 66.567 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346, "random": 163.237 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6, "random": 163.181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8, "random": 76.998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334, "random": 43.713 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7, "random": 34.78 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334, "random": 31.778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7, "random": 6.93 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671, "random": 135.935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2, "random": 145.129 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3, "random": 99.579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4, "random": 104.658 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666, "random": 62.539 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666, "random": 38.246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0, "random": 50.122 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331, "random": 25.384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329, "random": 176.777 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666, "random": 170.972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329, "random": 10.713 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326, "random": 134.836 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666, "random": 156.604 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666, "random": 46.498 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346, "random": 44.247 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7, "random": 191.512 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2, "random": 44.357 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663, "random": 51.789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7, "random": 81.556 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5, "random": 136.756 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326, "random": 88.078 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326, "random": 106.439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329, "random": 46.671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677, "random": 177.243 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671, "random": 42.763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329, "random": 29.514 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674, "random": 161.631 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334, "random": 24.276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323, "random": 20.448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346, "random": 186.648 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669, "random": 159.657 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666, "random": 115.065 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9, "random": 30.218 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2, "random": 198.086 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3, "random": 47.922 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666, "random": 148.946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8, "random": 35.257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7, "random": 134.798 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0, "random": 131.506 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343, "random": 17.542 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671, "random": 93.403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666, "random": 100.703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671, "random": 116.862 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9, "random": 25.976 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5, "random": 97.157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677, "random": 163.546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null, "random": 132.04 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null, "random": 123.734 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null, "random": 186.942 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null, "random": 36.69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null, "random": 154.891 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7, "random": 101.274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0, "random": 67.704 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666, "random": 93.215 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null, "random": 177.175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } +{ "type": "Feature", "properties": { "id": "DE50", "NUTS_ID": "DE50", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Bremen", "geo": "DE50", "time_2018_MEAN": 79.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.91583, 53.01102 ], [ 8.71142, 53.04463 ], [ 8.6549, 53.10886 ], [ 8.61556, 53.16321 ], [ 8.48533, 53.22712 ], [ 8.98419, 53.12607 ], [ 8.9596, 53.1117 ], [ 8.96868, 53.04485 ], [ 8.91583, 53.01102 ] ] ], [ [ [ 8.49265, 53.47242 ], [ 8.5549, 53.52513 ], [ 8.49735, 53.58905 ], [ 8.52041, 53.6062 ], [ 8.63666, 53.59812 ], [ 8.64546, 53.52133 ], [ 8.60933, 53.49019 ], [ 8.49265, 53.47242 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE60", "NUTS_ID": "DE60", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hamburg", "geo": "DE60", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.23668, 53.49635 ], [ 10.30795, 53.4332 ], [ 10.2045, 53.39675 ], [ 10.05909, 53.45534 ], [ 9.98419, 53.42269 ], [ 9.8626, 53.43964 ], [ 9.76886, 53.50528 ], [ 9.76626, 53.54682 ], [ 9.7301, 53.55758 ], [ 9.76283, 53.60761 ], [ 9.8626, 53.60746 ], [ 9.94538, 53.65293 ], [ 10.07143, 53.69702 ], [ 10.15226, 53.7118 ], [ 10.18964, 53.61027 ], [ 10.16603, 53.55111 ], [ 10.23668, 53.49635 ] ] ], [ [ [ 8.52965, 53.91954 ], [ 8.50238, 53.89361 ], [ 8.4637, 53.90046 ], [ 8.50193, 53.95466 ], [ 8.52965, 53.91954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE71", "NUTS_ID": "DE71", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Darmstadt", "geo": "DE71", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.04243, 50.49799 ], [ 9.10679, 50.43799 ], [ 9.24615, 50.45692 ], [ 9.28674, 50.4373 ], [ 9.32674, 50.4515 ], [ 9.37342, 50.38986 ], [ 9.47911, 50.44069 ], [ 9.54451, 50.3889 ], [ 9.73291, 50.35615 ], [ 9.73276, 50.30439 ], [ 9.62315, 50.22904 ], [ 9.50981, 50.23381 ], [ 9.50854, 50.10636 ], [ 9.40498, 50.08773 ], [ 9.35943, 50.12903 ], [ 9.22451, 50.14568 ], [ 9.15724, 50.11524 ], [ 9.03266, 50.11147 ], [ 8.99056, 50.06712 ], [ 8.97817, 50.04735 ], [ 9.02897, 50.0294 ], [ 9.01609, 49.99134 ], [ 9.05008, 49.86631 ], [ 9.03608, 49.8465 ], [ 9.11961, 49.78829 ], [ 9.14073, 49.73841 ], [ 9.07717, 49.62027 ], [ 9.10301, 49.57746 ], [ 9.12235, 49.51849 ], [ 9.08328, 49.52583 ], [ 8.93188, 49.47064 ], [ 8.88338, 49.41548 ], [ 8.81904, 49.40438 ], [ 8.83863, 49.47066 ], [ 8.89936, 49.48455 ], [ 8.89957, 49.50366 ], [ 8.724, 49.53045 ], [ 8.65499, 49.61775 ], [ 8.60449, 49.60679 ], [ 8.61203, 49.54906 ], [ 8.58138, 49.51978 ], [ 8.42244, 49.58339 ], [ 8.41477, 49.59505 ], [ 8.36336, 49.68552 ], [ 8.44638, 49.7308 ], [ 8.44837, 49.73366 ], [ 8.45711, 49.75617 ], [ 8.40006, 49.80367 ], [ 8.34303, 49.94051 ], [ 8.28825, 49.99513 ], [ 8.24413, 50.02535 ], [ 8.19004, 50.0353 ], [ 8.17514, 50.03426 ], [ 7.90815, 49.97491 ], [ 7.78659, 50.04735 ], [ 7.774, 50.06654 ], [ 7.91809, 50.12672 ], [ 7.89455, 50.18002 ], [ 7.91236, 50.20041 ], [ 8.02773, 50.22247 ], [ 8.03783, 50.26057 ], [ 8.12191, 50.27722 ], [ 8.2785, 50.26921 ], [ 8.35456, 50.29423 ], [ 8.35618, 50.36835 ], [ 8.46722, 50.41505 ], [ 8.51414, 50.39935 ], [ 8.57754, 50.41502 ], [ 8.64768, 50.4789 ], [ 8.91231, 50.43012 ], [ 9.04243, 50.49799 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE72", "NUTS_ID": "DE72", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Gießen", "geo": "DE72", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.9746, 50.9383 ], [ 9.11167, 50.91238 ], [ 9.14887, 50.83664 ], [ 9.39307, 50.78106 ], [ 9.44106, 50.79564 ], [ 9.50323, 50.7434 ], [ 9.57768, 50.75785 ], [ 9.61146, 50.73548 ], [ 9.63846, 50.67845 ], [ 9.62577, 50.6204 ], [ 9.48488, 50.62909 ], [ 9.4373, 50.49028 ], [ 9.47911, 50.44069 ], [ 9.37342, 50.38986 ], [ 9.32674, 50.4515 ], [ 9.28674, 50.4373 ], [ 9.24615, 50.45692 ], [ 9.10679, 50.43799 ], [ 9.04243, 50.49799 ], [ 8.91231, 50.43012 ], [ 8.64768, 50.4789 ], [ 8.57754, 50.41502 ], [ 8.51414, 50.39935 ], [ 8.46722, 50.41505 ], [ 8.35618, 50.36835 ], [ 8.35456, 50.29423 ], [ 8.2785, 50.26921 ], [ 8.12191, 50.27722 ], [ 8.05454, 50.37231 ], [ 7.97156, 50.40622 ], [ 7.99936, 50.52279 ], [ 8.04171, 50.5499 ], [ 8.11737, 50.54301 ], [ 8.15159, 50.59937 ], [ 8.12578, 50.68581 ], [ 8.15699, 50.73037 ], [ 8.15445, 50.80528 ], [ 8.25925, 50.8711 ], [ 8.3555, 50.862 ], [ 8.47789, 50.96905 ], [ 8.58928, 50.95241 ], [ 8.68916, 50.99192 ], [ 8.9746, 50.9383 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE73", "NUTS_ID": "DE73", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Kassel", "geo": "DE73", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.68533, 51.58202 ], [ 9.67238, 51.5684 ], [ 9.64303, 51.58189 ], [ 9.62972, 51.58213 ], [ 9.62856, 51.5682 ], [ 9.64776, 51.55251 ], [ 9.60736, 51.51295 ], [ 9.63243, 51.42097 ], [ 9.55729, 51.35138 ], [ 9.56803, 51.34 ], [ 9.7323, 51.29523 ], [ 9.76536, 51.32096 ], [ 9.72438, 51.36169 ], [ 9.79975, 51.40066 ], [ 9.89816, 51.4132 ], [ 9.92834, 51.3753 ], [ 9.95493, 51.30432 ], [ 10.20694, 51.19065 ], [ 10.21001, 51.14408 ], [ 10.14656, 51.1362 ], [ 10.15582, 51.05963 ], [ 10.20218, 51.01201 ], [ 10.18235, 50.99849 ], [ 10.02156, 50.99295 ], [ 9.98991, 50.9233 ], [ 10.0171, 50.87603 ], [ 9.92618, 50.76739 ], [ 9.89996, 50.64992 ], [ 9.94368, 50.63634 ], [ 10.01691, 50.66832 ], [ 10.07756, 50.63762 ], [ 10.04611, 50.60897 ], [ 10.04134, 50.51647 ], [ 9.95493, 50.42369 ], [ 9.93566, 50.41961 ], [ 9.86753, 50.40222 ], [ 9.77446, 50.42127 ], [ 9.73291, 50.35615 ], [ 9.54451, 50.3889 ], [ 9.47911, 50.44069 ], [ 9.4373, 50.49028 ], [ 9.48488, 50.62909 ], [ 9.62577, 50.6204 ], [ 9.63846, 50.67845 ], [ 9.61146, 50.73548 ], [ 9.57768, 50.75785 ], [ 9.50323, 50.7434 ], [ 9.44106, 50.79564 ], [ 9.39307, 50.78106 ], [ 9.14887, 50.83664 ], [ 9.11167, 50.91238 ], [ 8.9746, 50.9383 ], [ 8.68916, 50.99192 ], [ 8.58928, 50.95241 ], [ 8.47789, 50.96905 ], [ 8.52778, 51.01607 ], [ 8.51534, 51.08024 ], [ 8.54909, 51.10187 ], [ 8.67266, 51.10266 ], [ 8.75279, 51.18889 ], [ 8.7196, 51.26435 ], [ 8.59026, 51.2575 ], [ 8.5671, 51.27815 ], [ 8.58325, 51.30214 ], [ 8.69915, 51.37232 ], [ 8.93129, 51.39628 ], [ 8.94019, 51.42677 ], [ 8.90313, 51.47932 ], [ 8.97065, 51.50677 ], [ 9.06897, 51.4961 ], [ 9.09933, 51.45218 ], [ 9.15541, 51.44267 ], [ 9.3, 51.51811 ], [ 9.35177, 51.61231 ], [ 9.44046, 51.65039 ], [ 9.61493, 51.63075 ], [ 9.68533, 51.58202 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE80", "NUTS_ID": "DE80", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mecklenburg-Vorpommern", "geo": "DE80", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.3194, 54.19351 ], [ 13.47216, 54.10467 ], [ 13.81375, 54.1666 ], [ 13.91104, 54.0678 ], [ 13.89568, 54.02944 ], [ 13.80544, 54.00944 ], [ 13.89692, 53.89774 ], [ 13.92091, 53.911 ], [ 13.92312, 53.97654 ], [ 14.02235, 53.97462 ], [ 14.03356, 54.02841 ], [ 14.2263, 53.92865 ], [ 14.21308, 53.86648 ], [ 14.04577, 53.86649 ], [ 13.93884, 53.82047 ], [ 14.05776, 53.75699 ], [ 14.22266, 53.7441 ], [ 14.26754, 53.69781 ], [ 14.41216, 53.32964 ], [ 14.37164, 53.3124 ], [ 14.2235, 53.26103 ], [ 14.14539, 53.26946 ], [ 14.16665, 53.3124 ], [ 14.22238, 53.36515 ], [ 14.23352, 53.41656 ], [ 13.93081, 53.42751 ], [ 13.79932, 53.53974 ], [ 13.79514, 53.48336 ], [ 13.71007, 53.47906 ], [ 13.56139, 53.3959 ], [ 13.50018, 53.3124 ], [ 13.40103, 53.26032 ], [ 13.29253, 53.26938 ], [ 13.2414, 53.2324 ], [ 13.13895, 53.24522 ], [ 12.98468, 53.16499 ], [ 12.65448, 53.24306 ], [ 12.45787, 53.2568 ], [ 12.33175, 53.31801 ], [ 12.3251, 53.3213 ], [ 12.05913, 53.35495 ], [ 12.01513, 53.3124 ], [ 11.8222, 53.23347 ], [ 11.609, 53.22752 ], [ 11.51056, 53.13092 ], [ 11.26573, 53.12198 ], [ 11.17186, 53.15664 ], [ 10.96579, 53.33036 ], [ 10.82622, 53.31593 ], [ 10.69901, 53.36277 ], [ 10.59505, 53.36393 ], [ 10.63928, 53.44817 ], [ 10.78623, 53.50213 ], [ 10.83477, 53.56714 ], [ 10.901, 53.57473 ], [ 10.95192, 53.64762 ], [ 10.92546, 53.68873 ], [ 10.77023, 53.74937 ], [ 10.76296, 53.81115 ], [ 10.76306, 53.862 ], [ 10.90366, 53.95682 ], [ 11.1577, 54.0138 ], [ 11.26748, 53.93825 ], [ 11.337, 53.94967 ], [ 11.44455, 53.91429 ], [ 11.47617, 53.95733 ], [ 11.39892, 53.97093 ], [ 11.38819, 53.99562 ], [ 11.56178, 54.02809 ], [ 11.68657, 54.14521 ], [ 11.99909, 54.17475 ], [ 12.12912, 54.18569 ], [ 12.20107, 54.2447 ], [ 12.28553, 54.27495 ], [ 12.357, 54.3178 ], [ 12.41688, 54.29475 ], [ 12.46927, 54.31675 ], [ 12.50348, 54.36005 ], [ 12.49564, 54.41702 ], [ 12.55675, 54.45431 ], [ 12.797, 54.37293 ], [ 12.86837, 54.42454 ], [ 12.9849, 54.42039 ], [ 13.13311, 54.30788 ], [ 13.09956, 54.2944 ], [ 13.11574, 54.27346 ], [ 13.15571, 54.26299 ], [ 13.21568, 54.24586 ], [ 13.2842, 54.23634 ], [ 13.308, 54.20208 ], [ 13.3194, 54.19351 ] ], [ [ 10.95359, 53.89843 ], [ 10.9514, 53.92402 ], [ 10.90523, 53.92877 ], [ 10.88366, 53.90003 ], [ 10.89671, 53.88801 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 13.37058, 54.55525 ], [ 13.4925, 54.45599 ], [ 13.52184, 54.47582 ], [ 13.50132, 54.55308 ], [ 13.63672, 54.55013 ], [ 13.60766, 54.44732 ], [ 13.70065, 54.33412 ], [ 13.49059, 54.32356 ], [ 13.34167, 54.24025 ], [ 13.31371, 54.24015 ], [ 13.26707, 54.25442 ], [ 13.20806, 54.2706 ], [ 13.18617, 54.30392 ], [ 13.13958, 54.31857 ], [ 13.18542, 54.39429 ], [ 13.16719, 54.50195 ], [ 13.29499, 54.65181 ], [ 13.38221, 54.64687 ], [ 13.4006, 54.59162 ], [ 13.37058, 54.55525 ] ] ], [ [ [ 13.11828, 54.58215 ], [ 13.12957, 54.52894 ], [ 13.07274, 54.52941 ], [ 13.09168, 54.57366 ], [ 13.11828, 54.58215 ] ] ], [ [ [ 11.58958, 54.08055 ], [ 11.53952, 54.05075 ], [ 11.51732, 54.07485 ], [ 11.56783, 54.10882 ], [ 11.58958, 54.08055 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE91", "NUTS_ID": "DE91", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Braunschweig", "geo": "DE91", "time_2018_MEAN": 80.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.75931, 52.79583 ], [ 10.91084, 52.62672 ], [ 10.96423, 52.61782 ], [ 10.95267, 52.55533 ], [ 11.00878, 52.49675 ], [ 10.93454, 52.47179 ], [ 11.06359, 52.36831 ], [ 11.01204, 52.33457 ], [ 11.0672, 52.23403 ], [ 11.02377, 52.19557 ], [ 11.05107, 52.15579 ], [ 10.96456, 52.10123 ], [ 10.96441, 52.05664 ], [ 10.80149, 52.048 ], [ 10.67428, 52.04506 ], [ 10.56123, 52.00407 ], [ 10.63911, 51.90068 ], [ 10.58455, 51.83917 ], [ 10.59032, 51.78536 ], [ 10.70137, 51.64219 ], [ 10.67728, 51.63838 ], [ 10.64271, 51.56707 ], [ 10.48855, 51.57478 ], [ 10.38816, 51.57968 ], [ 10.28585, 51.49328 ], [ 9.92834, 51.3753 ], [ 9.89816, 51.4132 ], [ 9.79975, 51.40066 ], [ 9.72438, 51.36169 ], [ 9.76536, 51.32096 ], [ 9.7323, 51.29523 ], [ 9.56803, 51.34 ], [ 9.55729, 51.35138 ], [ 9.63243, 51.42097 ], [ 9.60736, 51.51295 ], [ 9.64776, 51.55251 ], [ 9.62856, 51.5682 ], [ 9.62972, 51.58213 ], [ 9.64303, 51.58189 ], [ 9.67238, 51.5684 ], [ 9.68533, 51.58202 ], [ 9.61493, 51.63075 ], [ 9.44046, 51.65039 ], [ 9.41732, 51.64727 ], [ 9.45803, 51.70285 ], [ 9.71402, 51.87165 ], [ 9.89425, 51.90615 ], [ 9.95493, 51.90611 ], [ 10.01652, 51.94126 ], [ 10.06553, 51.92736 ], [ 10.0917, 51.95353 ], [ 10.18191, 51.96038 ], [ 10.20469, 52.00699 ], [ 10.18467, 52.14869 ], [ 10.23401, 52.1702 ], [ 10.25748, 52.18302 ], [ 10.19086, 52.23029 ], [ 10.01038, 52.2339 ], [ 10.03447, 52.28377 ], [ 10.13397, 52.34571 ], [ 10.15531, 52.39322 ], [ 10.29191, 52.4479 ], [ 10.27374, 52.51064 ], [ 10.40082, 52.58132 ], [ 10.37445, 52.72135 ], [ 10.43955, 52.81169 ], [ 10.54411, 52.82753 ], [ 10.66143, 52.77493 ], [ 10.75931, 52.79583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG41", "NUTS_ID": "BG41", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югозападен", "geo": "BG41", "time_2018_MEAN": 75.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.41277, 43.16052 ], [ 23.45265, 43.15147 ], [ 23.47235, 43.147 ], [ 23.46459, 43.09389 ], [ 23.55868, 43.00331 ], [ 23.63198, 43.05245 ], [ 23.70049, 43.03474 ], [ 23.77035, 43.06574 ], [ 23.94512, 43.03679 ], [ 23.9715, 43.06225 ], [ 24.03516, 43.05253 ], [ 24.07894, 42.95433 ], [ 24.16346, 42.91746 ], [ 24.16307, 42.77646 ], [ 24.38593, 42.74995 ], [ 24.36865, 42.67517 ], [ 24.47216, 42.59415 ], [ 24.42101, 42.55306 ], [ 24.2321, 42.62177 ], [ 24.05317, 42.55809 ], [ 23.91373, 42.53788 ], [ 23.92101, 42.49843 ], [ 24.00873, 42.4695 ], [ 24.03317, 42.46145 ], [ 24.03574, 42.42043 ], [ 24.02043, 42.40816 ], [ 23.96159, 42.36101 ], [ 23.96532, 42.29048 ], [ 23.89497, 42.27902 ], [ 23.77226, 42.18119 ], [ 23.81099, 42.04111 ], [ 23.76382, 41.9863 ], [ 23.7604, 41.93799 ], [ 23.79992, 41.83205 ], [ 24.07455, 41.6727 ], [ 24.09881, 41.64476 ], [ 24.05974, 41.52211 ], [ 24.05372, 41.46003 ], [ 23.91143, 41.46726 ], [ 23.67453, 41.39176 ], [ 23.62422, 41.37573 ], [ 23.49636, 41.40399 ], [ 23.34654, 41.37369 ], [ 23.29336, 41.39755 ], [ 23.18868, 41.32396 ], [ 22.92759, 41.33854 ], [ 22.95963, 41.36542 ], [ 22.96833, 41.51984 ], [ 22.95437, 41.63029 ], [ 23.02582, 41.72294 ], [ 22.87485, 41.93799 ], [ 22.86721, 42.0222 ], [ 22.77433, 42.04534 ], [ 22.70356, 42.06297 ], [ 22.67088, 42.07111 ], [ 22.51041, 42.15516 ], [ 22.36021, 42.31116 ], [ 22.45382, 42.34697 ], [ 22.54295, 42.4695 ], [ 22.52769, 42.51538 ], [ 22.45687, 42.57308 ], [ 22.46147, 42.64849 ], [ 22.49163, 42.73997 ], [ 22.44282, 42.82546 ], [ 22.51551, 42.86854 ], [ 22.7484, 42.88979 ], [ 22.77433, 42.94108 ], [ 22.79371, 42.97941 ], [ 22.97577, 43.11428 ], [ 22.99017, 43.15147 ], [ 23.00621, 43.19288 ], [ 23.09779, 43.15147 ], [ 23.18568, 43.11173 ], [ 23.25146, 43.12586 ], [ 23.37062, 43.15147 ], [ 23.41277, 43.16052 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG42", "NUTS_ID": "BG42", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Южен централен", "geo": "BG42", "time_2018_MEAN": 75.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.0072, 42.73762 ], [ 25.01641, 42.55024 ], [ 25.03132, 42.53788 ], [ 25.07353, 42.50287 ], [ 25.17396, 42.49596 ], [ 25.16872, 42.4695 ], [ 25.17527, 42.42379 ], [ 25.13628, 42.38395 ], [ 25.13864, 42.29278 ], [ 25.09774, 42.20275 ], [ 25.14878, 42.17072 ], [ 25.26065, 42.16481 ], [ 25.34806, 42.11438 ], [ 25.43067, 42.09816 ], [ 25.47823, 42.1642 ], [ 25.61263, 42.19016 ], [ 25.62783, 42.13538 ], [ 25.69446, 42.13161 ], [ 25.75589, 42.06767 ], [ 25.87863, 42.11844 ], [ 25.9757, 42.09246 ], [ 26.05986, 42.02488 ], [ 26.12118, 42.04206 ], [ 26.14788, 42.04954 ], [ 26.13732, 42.14221 ], [ 26.19273, 42.20813 ], [ 26.49774, 42.14708 ], [ 26.51872, 41.99489 ], [ 26.56154, 41.92627 ], [ 26.57545, 41.89257 ], [ 26.53687, 41.83075 ], [ 26.36234, 41.80764 ], [ 26.33509, 41.7516 ], [ 26.35788, 41.7111 ], [ 26.17216, 41.74349 ], [ 26.12118, 41.72434 ], [ 26.08108, 41.70927 ], [ 26.0786, 41.64853 ], [ 26.12118, 41.62791 ], [ 26.1683, 41.55696 ], [ 26.17923, 41.44132 ], [ 26.12118, 41.35929 ], [ 25.94863, 41.32034 ], [ 25.90644, 41.30757 ], [ 25.82184, 41.33944 ], [ 25.70213, 41.30023 ], [ 25.56745, 41.31354 ], [ 25.31289, 41.23907 ], [ 25.2247, 41.26463 ], [ 25.17938, 41.31019 ], [ 24.91486, 41.40115 ], [ 24.83247, 41.39627 ], [ 24.78396, 41.36019 ], [ 24.72345, 41.41046 ], [ 24.61762, 41.43229 ], [ 24.52761, 41.56138 ], [ 24.31921, 41.5198 ], [ 24.26019, 41.56598 ], [ 24.1771, 41.52479 ], [ 24.1432, 41.53683 ], [ 24.05974, 41.52211 ], [ 24.09881, 41.64476 ], [ 24.07455, 41.6727 ], [ 23.79992, 41.83205 ], [ 23.7604, 41.93799 ], [ 23.76382, 41.9863 ], [ 23.81099, 42.04111 ], [ 23.77226, 42.18119 ], [ 23.89497, 42.27902 ], [ 23.96532, 42.29048 ], [ 23.96159, 42.36101 ], [ 24.02043, 42.40816 ], [ 24.03574, 42.42043 ], [ 24.03317, 42.46145 ], [ 24.00873, 42.4695 ], [ 23.92101, 42.49843 ], [ 23.91373, 42.53788 ], [ 24.05317, 42.55809 ], [ 24.2321, 42.62177 ], [ 24.42101, 42.55306 ], [ 24.47216, 42.59415 ], [ 24.36865, 42.67517 ], [ 24.38593, 42.74995 ], [ 24.53192, 42.79233 ], [ 24.73947, 42.71265 ], [ 25.0072, 42.73762 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH01", "NUTS_ID": "CH01", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Région lémanique", "geo": "CH01", "time_2018_MEAN": 84.133333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.86623, 46.90929 ], [ 6.89621, 46.92533 ], [ 6.98783, 46.843 ], [ 6.92377, 46.7276 ], [ 6.8045, 46.63935 ], [ 6.81046, 46.59413 ], [ 6.87164, 46.56132 ], [ 6.83033, 46.51154 ], [ 6.93893, 46.50229 ], [ 6.99824, 46.44519 ], [ 7.23702, 46.5538 ], [ 7.20371, 46.42871 ], [ 7.22146, 46.32921 ], [ 7.28454, 46.3608 ], [ 7.51806, 46.37692 ], [ 7.63174, 46.43729 ], [ 7.7197, 46.42122 ], [ 7.93123, 46.49677 ], [ 8.01922, 46.55706 ], [ 8.25943, 46.53181 ], [ 8.34583, 46.57027 ], [ 8.41041, 46.65302 ], [ 8.41851, 46.56586 ], [ 8.47767, 46.5276 ], [ 8.39953, 46.48872 ], [ 8.38472, 46.45216 ], [ 8.30658, 46.41642 ], [ 8.27454, 46.35598 ], [ 8.09795, 46.27001 ], [ 8.15515, 46.19505 ], [ 8.14674, 46.14788 ], [ 8.03742, 46.09342 ], [ 7.99579, 46.00621 ], [ 7.90438, 45.98572 ], [ 7.87714, 45.92695 ], [ 7.86408, 45.91675 ], [ 7.56217, 45.97837 ], [ 7.39666, 45.9043 ], [ 7.29524, 45.91494 ], [ 7.18689, 45.86716 ], [ 7.11099, 45.86991 ], [ 7.04489, 45.92241 ], [ 6.95033, 46.04663 ], [ 6.88469, 46.05452 ], [ 6.88923, 46.11852 ], [ 6.80079, 46.15554 ], [ 6.85389, 46.2745 ], [ 6.78149, 46.34892 ], [ 6.82106, 46.42715 ], [ 6.52195, 46.45384 ], [ 6.31752, 46.39395 ], [ 6.21955, 46.31188 ], [ 6.29119, 46.25099 ], [ 6.28163, 46.22401 ], [ 6.14443, 46.14734 ], [ 5.95607, 46.1321 ], [ 5.98219, 46.2067 ], [ 6.11163, 46.25402 ], [ 6.12561, 46.31723 ], [ 6.15625, 46.37094 ], [ 6.064, 46.41623 ], [ 6.13811, 46.55767 ], [ 6.13895, 46.5943 ], [ 6.4358, 46.76705 ], [ 6.46001, 46.85155 ], [ 6.70705, 46.92867 ], [ 6.78005, 46.85264 ], [ 6.75637, 46.81924 ], [ 6.86461, 46.73496 ], [ 6.91991, 46.85386 ], [ 6.86623, 46.90929 ] ], [ [ 6.73051, 46.72908 ], [ 6.75806, 46.70336 ], [ 6.79728, 46.73591 ], [ 6.77607, 46.76563 ], [ 6.73051, 46.72908 ] ] ], [ [ [ 6.9279, 46.95317 ], [ 7.00229, 46.98672 ], [ 7.03997, 46.97988 ], [ 7.05185, 46.97711 ], [ 7.07667, 46.90985 ], [ 7.04579, 46.86573 ], [ 6.9279, 46.95317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT32", "NUTS_ID": "AT32", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Salzburg", "geo": "AT32", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.30382, 48.00782 ], [ 13.33794, 47.97002 ], [ 13.29022, 47.93448 ], [ 13.29969, 47.84092 ], [ 13.436, 47.79824 ], [ 13.45861, 47.73909 ], [ 13.52901, 47.70501 ], [ 13.48763, 47.55548 ], [ 13.51636, 47.49678 ], [ 13.58558, 47.47399 ], [ 13.56942, 47.41799 ], [ 13.59008, 47.3546 ], [ 13.60684, 47.2833 ], [ 13.69698, 47.26548 ], [ 13.80894, 47.28637 ], [ 13.86437, 47.25169 ], [ 13.95985, 47.14206 ], [ 13.89946, 47.10541 ], [ 13.85492, 46.99796 ], [ 13.78513, 46.94405 ], [ 13.67774, 47.03759 ], [ 13.35458, 47.0973 ], [ 13.06383, 47.01926 ], [ 12.80836, 47.0976 ], [ 12.71185, 47.12716 ], [ 12.65608, 47.0997 ], [ 12.47178, 47.15403 ], [ 12.37884, 47.13954 ], [ 12.24075, 47.06917 ], [ 12.13601, 47.08067 ], [ 12.08745, 47.17663 ], [ 12.10061, 47.29047 ], [ 12.38845, 47.31612 ], [ 12.48685, 47.3546 ], [ 12.68736, 47.48051 ], [ 12.64104, 47.54078 ], [ 12.65153, 47.57668 ], [ 12.57503, 47.63232 ], [ 12.61397, 47.67111 ], [ 12.6958, 47.68222 ], [ 12.79017, 47.63067 ], [ 12.80383, 47.55905 ], [ 12.91903, 47.49477 ], [ 13.00844, 47.47168 ], [ 13.04606, 47.5205 ], [ 13.08378, 47.66872 ], [ 13.02804, 47.71399 ], [ 12.91804, 47.72201 ], [ 12.99537, 47.85542 ], [ 12.93888, 47.93604 ], [ 12.87579, 47.96261 ], [ 12.86018, 47.99664 ], [ 13.02518, 48.0349 ], [ 13.16695, 47.97338 ], [ 13.30382, 48.00782 ] ] ], [ [ [ 13.47818, 47.78506 ], [ 13.5379, 47.80777 ], [ 13.55123, 47.76757 ], [ 13.49354, 47.76316 ], [ 13.47818, 47.78506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT33", "NUTS_ID": "AT33", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Tirol", "geo": "AT33", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.69064, 46.65697 ], [ 12.47792, 46.67984 ], [ 12.29266, 46.78916 ], [ 12.27495, 46.8741 ], [ 12.15636, 46.91635 ], [ 12.1319, 47.00865 ], [ 12.24075, 47.06917 ], [ 12.37884, 47.13954 ], [ 12.47178, 47.15403 ], [ 12.65608, 47.0997 ], [ 12.74205, 47.03283 ], [ 12.73888, 46.97603 ], [ 12.80836, 46.92238 ], [ 12.83458, 46.90771 ], [ 12.8496, 46.86088 ], [ 12.96092, 46.78993 ], [ 12.93394, 46.76911 ], [ 12.80836, 46.7554 ], [ 12.72276, 46.73248 ], [ 12.69064, 46.65697 ] ] ], [ [ [ 12.33805, 47.69709 ], [ 12.42904, 47.68912 ], [ 12.50472, 47.62962 ], [ 12.57503, 47.63232 ], [ 12.65153, 47.57668 ], [ 12.64104, 47.54078 ], [ 12.68736, 47.48051 ], [ 12.48685, 47.3546 ], [ 12.38845, 47.31612 ], [ 12.10061, 47.29047 ], [ 12.08745, 47.17663 ], [ 12.13601, 47.08067 ], [ 11.75081, 46.97573 ], [ 11.6272, 47.0133 ], [ 11.5463, 46.98942 ], [ 11.48163, 47.00312 ], [ 11.41125, 46.97053 ], [ 11.32835, 46.99025 ], [ 11.16428, 46.96572 ], [ 11.0059, 46.76885 ], [ 10.81161, 46.78206 ], [ 10.66523, 46.86903 ], [ 10.46965, 46.85491 ], [ 10.47849, 46.93559 ], [ 10.37632, 46.99474 ], [ 10.24561, 46.92156 ], [ 10.21878, 46.86756 ], [ 10.14497, 46.85101 ], [ 10.1076, 46.92095 ], [ 10.14634, 46.99006 ], [ 10.14256, 47.08569 ], [ 10.21279, 47.15728 ], [ 10.17835, 47.27011 ], [ 10.31008, 47.30182 ], [ 10.38325, 47.3546 ], [ 10.46831, 47.43701 ], [ 10.44031, 47.50839 ], [ 10.45444, 47.5558 ], [ 10.55315, 47.5372 ], [ 10.63704, 47.56468 ], [ 10.78738, 47.51978 ], [ 10.8862, 47.53685 ], [ 10.88427, 47.48404 ], [ 10.95779, 47.44936 ], [ 10.9912, 47.39613 ], [ 11.0165, 47.39637 ], [ 11.20839, 47.43053 ], [ 11.26506, 47.40418 ], [ 11.33283, 47.44425 ], [ 11.42143, 47.44485 ], [ 11.39562, 47.47201 ], [ 11.41022, 47.49532 ], [ 11.55857, 47.51511 ], [ 11.63288, 47.59245 ], [ 11.82889, 47.58556 ], [ 12.06066, 47.61874 ], [ 12.1946, 47.61679 ], [ 12.17222, 47.69503 ], [ 12.22836, 47.72096 ], [ 12.25335, 47.72412 ], [ 12.26407, 47.68489 ], [ 12.33805, 47.69709 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT34", "NUTS_ID": "AT34", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Vorarlberg", "geo": "AT34", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.96781, 47.54624 ], [ 9.99953, 47.48302 ], [ 10.08401, 47.44765 ], [ 10.10207, 47.3666 ], [ 10.19751, 47.3843 ], [ 10.21751, 47.3546 ], [ 10.17835, 47.27011 ], [ 10.21279, 47.15728 ], [ 10.14256, 47.08569 ], [ 10.14634, 46.99006 ], [ 10.1076, 46.92095 ], [ 10.14497, 46.85101 ], [ 10.08792, 46.84912 ], [ 9.95493, 46.9149 ], [ 9.88113, 46.94158 ], [ 9.87096, 47.01375 ], [ 9.60708, 47.06077 ], [ 9.62058, 47.15165 ], [ 9.53075, 47.27058 ], [ 9.60942, 47.3546 ], [ 9.6534, 47.37581 ], [ 9.65132, 47.42942 ], [ 9.57831, 47.48207 ], [ 9.55872, 47.54189 ], [ 9.6965, 47.53136 ], [ 9.79363, 47.58277 ], [ 9.85961, 47.53945 ], [ 9.96781, 47.54624 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE10", "NUTS_ID": "BE10", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Région de Bruxelles-Capitale/ Brussels Hoofdstedelijk Gewest", "geo": "BE10", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678, 50.82038 ], [ 4.48048, 50.79426 ], [ 4.3714, 50.76825 ], [ 4.25838, 50.82243 ], [ 4.30776, 50.89042 ], [ 4.40144, 50.90615 ], [ 4.47678, 50.82038 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE23", "NUTS_ID": "BE23", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Oost-Vlaanderen", "geo": "BE23", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.30783, 51.12503 ], [ 4.17579, 51.10121 ], [ 4.20069, 51.04434 ], [ 4.241, 51.03687 ], [ 4.14715, 50.9694 ], [ 4.15659, 50.92929 ], [ 4.13688, 50.91943 ], [ 4.10521, 50.92945 ], [ 4.05937, 50.79689 ], [ 3.89574, 50.73294 ], [ 3.81539, 50.75072 ], [ 3.77568, 50.74789 ], [ 3.71925, 50.77502 ], [ 3.62924, 50.72643 ], [ 3.54127, 50.7337 ], [ 3.46031, 50.7659 ], [ 3.51332, 50.80824 ], [ 3.46675, 50.9021 ], [ 3.41982, 50.91093 ], [ 3.44883, 50.94026 ], [ 3.43976, 51.02595 ], [ 3.33131, 51.09887 ], [ 3.41093, 51.15989 ], [ 3.38066, 51.2743 ], [ 3.50028, 51.24675 ], [ 3.53431, 51.28951 ], [ 3.60175, 51.30057 ], [ 3.85634, 51.21106 ], [ 3.97767, 51.22513 ], [ 4.10521, 51.2654 ], [ 4.16576, 51.29273 ], [ 4.21595, 51.33309 ], [ 4.23482, 51.34825 ], [ 4.24205, 51.35397 ], [ 4.3067, 51.27683 ], [ 4.32724, 51.1699 ], [ 4.30783, 51.12503 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE24", "NUTS_ID": "BE24", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Vlaams-Brabant", "geo": "BE24", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.78932, 51.03893 ], [ 4.82928, 51.01502 ], [ 4.98157, 51.03489 ], [ 5.12116, 51.02008 ], [ 5.0637, 50.94088 ], [ 5.16805, 50.8863 ], [ 5.10348, 50.70906 ], [ 5.01957, 50.75076 ], [ 4.75884, 50.80252 ], [ 4.66342, 50.78849 ], [ 4.62844, 50.74957 ], [ 4.59727, 50.76353 ], [ 4.27263, 50.69617 ], [ 4.10521, 50.70755 ], [ 3.93948, 50.69116 ], [ 3.89574, 50.73294 ], [ 4.05937, 50.79689 ], [ 4.10521, 50.92945 ], [ 4.13688, 50.91943 ], [ 4.15659, 50.92929 ], [ 4.14715, 50.9694 ], [ 4.241, 51.03687 ], [ 4.52866, 50.99226 ], [ 4.78932, 51.03893 ] ], [ [ 4.48048, 50.79426 ], [ 4.47678, 50.82038 ], [ 4.40144, 50.90615 ], [ 4.30776, 50.89042 ], [ 4.25838, 50.82243 ], [ 4.3714, 50.76825 ], [ 4.48048, 50.79426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE25", "NUTS_ID": "BE25", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. West-Vlaanderen", "geo": "BE25", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.46031, 50.7659 ], [ 3.32412, 50.72231 ], [ 3.29672, 50.75089 ], [ 3.19538, 50.75535 ], [ 3.177, 50.75616 ], [ 3.09848, 50.77902 ], [ 3.01871, 50.77353 ], [ 3.00188, 50.80518 ], [ 2.95437, 50.79748 ], [ 2.9417, 50.769 ], [ 2.85298, 50.75048 ], [ 2.86328, 50.70834 ], [ 2.70669, 50.80993 ], [ 2.63614, 50.8208 ], [ 2.60704, 50.91269 ], [ 2.62262, 50.95661 ], [ 2.54601, 51.08938 ], [ 2.60463, 51.1101 ], [ 2.65103, 51.12915 ], [ 2.67929, 51.13612 ], [ 2.70377, 51.14483 ], [ 2.74905, 51.16177 ], [ 3.11069, 51.31226 ], [ 3.19538, 51.35502 ], [ 3.36579, 51.36984 ], [ 3.38066, 51.2743 ], [ 3.41093, 51.15989 ], [ 3.33131, 51.09887 ], [ 3.43976, 51.02595 ], [ 3.44883, 50.94026 ], [ 3.41982, 50.91093 ], [ 3.46675, 50.9021 ], [ 3.51332, 50.80824 ], [ 3.46031, 50.7659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE31", "NUTS_ID": "BE31", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Brabant Wallon", "geo": "BE31", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.01957, 50.75076 ], [ 4.98334, 50.64224 ], [ 4.67189, 50.59673 ], [ 4.57754, 50.54229 ], [ 4.50059, 50.53087 ], [ 4.24722, 50.59612 ], [ 4.18122, 50.6445 ], [ 4.10763, 50.64529 ], [ 4.10642, 50.67629 ], [ 4.10521, 50.70755 ], [ 4.27263, 50.69617 ], [ 4.59727, 50.76353 ], [ 4.62844, 50.74957 ], [ 4.66342, 50.78849 ], [ 4.75884, 50.80252 ], [ 5.01957, 50.75076 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE32", "NUTS_ID": "BE32", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Hainaut", "geo": "BE32", "time_2018_MEAN": 79.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.81539, 50.75072 ], [ 3.89574, 50.73294 ], [ 3.93948, 50.69116 ], [ 4.10521, 50.70755 ], [ 4.10642, 50.67629 ], [ 4.10763, 50.64529 ], [ 4.18122, 50.6445 ], [ 4.24722, 50.59612 ], [ 4.50059, 50.53087 ], [ 4.57754, 50.54229 ], [ 4.60754, 50.41193 ], [ 4.58866, 50.32132 ], [ 4.47499, 50.32761 ], [ 4.33141, 50.25791 ], [ 4.3849, 50.21875 ], [ 4.37828, 50.14748 ], [ 4.43249, 49.94162 ], [ 4.23313, 49.95783 ], [ 4.14085, 49.97876 ], [ 4.20853, 50.07879 ], [ 4.1488, 50.15056 ], [ 4.19819, 50.25005 ], [ 4.05543, 50.34076 ], [ 4.02777, 50.35833 ], [ 3.89407, 50.33254 ], [ 3.77023, 50.35043 ], [ 3.70789, 50.32237 ], [ 3.6667, 50.35575 ], [ 3.65551, 50.46174 ], [ 3.61508, 50.4904 ], [ 3.524, 50.49748 ], [ 3.49098, 50.52716 ], [ 3.38581, 50.49503 ], [ 3.3033, 50.52242 ], [ 3.24529, 50.71301 ], [ 3.19538, 50.75535 ], [ 3.29672, 50.75089 ], [ 3.32412, 50.72231 ], [ 3.46031, 50.7659 ], [ 3.54127, 50.7337 ], [ 3.62924, 50.72643 ], [ 3.71925, 50.77502 ], [ 3.77568, 50.74789 ], [ 3.81539, 50.75072 ] ] ], [ [ [ 3.01871, 50.77353 ], [ 2.9081, 50.70174 ], [ 2.86328, 50.70834 ], [ 2.85298, 50.75048 ], [ 2.9417, 50.769 ], [ 2.95437, 50.79748 ], [ 3.00188, 50.80518 ], [ 3.01871, 50.77353 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE33", "NUTS_ID": "BE33", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Liège", "geo": "BE33", "time_2018_MEAN": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.81905, 50.71456 ], [ 5.88712, 50.71853 ], [ 5.89207, 50.75524 ], [ 6.021, 50.7543 ], [ 6.11859, 50.71241 ], [ 6.18382, 50.63843 ], [ 6.25606, 50.6221 ], [ 6.18931, 50.56609 ], [ 6.1922, 50.52106 ], [ 6.31556, 50.49704 ], [ 6.36778, 50.44517 ], [ 6.3547, 50.3791 ], [ 6.40503, 50.32331 ], [ 6.3148, 50.31306 ], [ 6.19327, 50.2405 ], [ 6.13766, 50.12995 ], [ 6.0249, 50.18278 ], [ 6.01187, 50.29127 ], [ 5.9802, 50.32985 ], [ 5.87552, 50.3412 ], [ 5.83692, 50.26917 ], [ 5.72155, 50.26199 ], [ 5.7129, 50.35121 ], [ 5.67584, 50.36851 ], [ 5.42508, 50.41885 ], [ 5.39324, 50.37936 ], [ 5.30295, 50.37396 ], [ 5.22126, 50.4173 ], [ 5.20283, 50.46638 ], [ 5.06329, 50.53657 ], [ 5.0285, 50.58882 ], [ 4.98334, 50.64224 ], [ 5.01957, 50.75076 ], [ 5.10348, 50.70906 ], [ 5.23691, 50.72727 ], [ 5.37712, 50.74548 ], [ 5.43169, 50.7198 ], [ 5.68762, 50.81192 ], [ 5.682, 50.75745 ], [ 5.76994, 50.74665 ], [ 5.81905, 50.71456 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE34", "NUTS_ID": "BE34", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Luxembourg (BE)", "geo": "BE34", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.72155, 50.26199 ], [ 5.83692, 50.26917 ], [ 5.87552, 50.3412 ], [ 5.9802, 50.32985 ], [ 6.01187, 50.29127 ], [ 6.0249, 50.18278 ], [ 5.90124, 50.10846 ], [ 5.86883, 50.04735 ], [ 5.77586, 49.94787 ], [ 5.74632, 49.85359 ], [ 5.75895, 49.8017 ], [ 5.87145, 49.71509 ], [ 5.89907, 49.65741 ], [ 5.86082, 49.57352 ], [ 5.81812, 49.54631 ], [ 5.73456, 49.54569 ], [ 5.47088, 49.49724 ], [ 5.39351, 49.61711 ], [ 5.31995, 49.62128 ], [ 5.29062, 49.67985 ], [ 5.15374, 49.71793 ], [ 4.96943, 49.80183 ], [ 5.09723, 49.93039 ], [ 5.08415, 49.96753 ], [ 5.00204, 50.00292 ], [ 5.02807, 50.04735 ], [ 5.08131, 50.09139 ], [ 5.26306, 50.10849 ], [ 5.24631, 50.21716 ], [ 5.38369, 50.28763 ], [ 5.39324, 50.37936 ], [ 5.42508, 50.41885 ], [ 5.67584, 50.36851 ], [ 5.7129, 50.35121 ], [ 5.72155, 50.26199 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE35", "NUTS_ID": "BE35", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Namur", "geo": "BE35", "time_2018_MEAN": 79.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.22126, 50.4173 ], [ 5.30295, 50.37396 ], [ 5.39324, 50.37936 ], [ 5.38369, 50.28763 ], [ 5.24631, 50.21716 ], [ 5.26306, 50.10849 ], [ 5.08131, 50.09139 ], [ 5.02807, 50.04735 ], [ 5.00204, 50.00292 ], [ 5.08415, 49.96753 ], [ 5.09723, 49.93039 ], [ 4.96943, 49.80183 ], [ 4.86443, 49.81149 ], [ 4.8786, 49.91255 ], [ 4.8017, 49.96533 ], [ 4.83577, 50.04735 ], [ 4.86907, 50.14438 ], [ 4.7967, 50.14868 ], [ 4.69739, 50.08504 ], [ 4.69521, 50.04735 ], [ 4.67766, 49.99628 ], [ 4.43249, 49.94162 ], [ 4.37828, 50.14748 ], [ 4.3849, 50.21875 ], [ 4.33141, 50.25791 ], [ 4.47499, 50.32761 ], [ 4.58866, 50.32132 ], [ 4.60754, 50.41193 ], [ 4.57754, 50.54229 ], [ 4.67189, 50.59673 ], [ 4.98334, 50.64224 ], [ 5.0285, 50.58882 ], [ 5.06329, 50.53657 ], [ 5.20283, 50.46638 ], [ 5.22126, 50.4173 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG31", "NUTS_ID": "BG31", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северозападен", "geo": "BG31", "time_2018_MEAN": 73.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.99717, 43.80787 ], [ 23.25146, 43.83394 ], [ 23.4231, 43.85153 ], [ 23.63039, 43.79105 ], [ 23.73015, 43.8029 ], [ 24.11204, 43.69995 ], [ 24.32352, 43.69769 ], [ 24.50009, 43.75939 ], [ 24.65478, 43.72359 ], [ 24.73627, 43.69212 ], [ 24.99397, 43.72322 ], [ 25.29637, 43.65542 ], [ 25.21648, 43.63648 ], [ 25.20985, 43.56397 ], [ 25.20425, 43.50269 ], [ 25.13436, 43.44608 ], [ 25.1997, 43.42987 ], [ 25.23975, 43.35387 ], [ 25.17995, 43.30146 ], [ 25.14043, 43.26683 ], [ 25.0766, 43.17778 ], [ 24.97323, 43.18297 ], [ 24.95605, 43.15147 ], [ 24.92662, 43.09751 ], [ 24.92961, 43.04119 ], [ 24.87526, 42.98536 ], [ 24.89092, 42.89663 ], [ 24.96362, 42.86635 ], [ 25.01454, 42.74802 ], [ 25.0072, 42.73762 ], [ 24.73947, 42.71265 ], [ 24.53192, 42.79233 ], [ 24.38593, 42.74995 ], [ 24.16307, 42.77646 ], [ 24.16346, 42.91746 ], [ 24.07894, 42.95433 ], [ 24.03516, 43.05253 ], [ 23.9715, 43.06225 ], [ 23.94512, 43.03679 ], [ 23.77035, 43.06574 ], [ 23.70049, 43.03474 ], [ 23.63198, 43.05245 ], [ 23.55868, 43.00331 ], [ 23.46459, 43.09389 ], [ 23.47235, 43.147 ], [ 23.45265, 43.15147 ], [ 23.41277, 43.16052 ], [ 23.37062, 43.15147 ], [ 23.25146, 43.12586 ], [ 23.18568, 43.11173 ], [ 23.09779, 43.15147 ], [ 23.00621, 43.19288 ], [ 22.89973, 43.22768 ], [ 22.82903, 43.30146 ], [ 22.74745, 43.38661 ], [ 22.66698, 43.40275 ], [ 22.52976, 43.48583 ], [ 22.5049, 43.56397 ], [ 22.47953, 43.64368 ], [ 22.41106, 43.7019 ], [ 22.36596, 43.80644 ], [ 22.41729, 43.99973 ], [ 22.53615, 44.04551 ], [ 22.61118, 44.06715 ], [ 22.62779, 44.17021 ], [ 22.67516, 44.21566 ], [ 22.96637, 44.09829 ], [ 23.02449, 44.08049 ], [ 23.03395, 44.04493 ], [ 22.89195, 43.98291 ], [ 22.84725, 43.87791 ], [ 22.88712, 43.83429 ], [ 22.99717, 43.80787 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG32", "NUTS_ID": "BG32", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Северен централен", "geo": "BG32", "time_2018_MEAN": 74.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.98734 ], [ 27.61543, 43.90494 ], [ 27.54221, 43.90175 ], [ 27.51217, 43.84891 ], [ 27.44258, 43.86146 ], [ 27.28162, 43.79342 ], [ 27.20758, 43.72844 ], [ 27.21954, 43.66462 ], [ 27.08381, 43.70818 ], [ 27.00189, 43.69687 ], [ 27.01615, 43.65499 ], [ 26.83898, 43.56397 ], [ 26.8139, 43.55108 ], [ 26.81404, 43.50556 ], [ 26.73911, 43.45293 ], [ 26.73044, 43.4101 ], [ 26.68147, 43.3978 ], [ 26.63684, 43.33324 ], [ 26.50628, 43.34894 ], [ 26.45986, 43.43614 ], [ 26.37842, 43.44257 ], [ 26.36071, 43.49179 ], [ 26.28059, 43.53997 ], [ 26.24374, 43.5495 ], [ 26.18898, 43.51739 ], [ 26.05607, 43.51318 ], [ 26.01804, 43.44092 ], [ 25.94379, 43.3858 ], [ 25.95983, 43.36955 ], [ 26.00935, 43.36076 ], [ 26.00459, 43.31875 ], [ 26.07384, 43.28632 ], [ 26.10372, 43.19122 ], [ 26.07128, 43.15147 ], [ 26.06013, 43.09098 ], [ 26.11549, 43.02665 ], [ 26.08872, 42.98064 ], [ 26.12118, 42.96889 ], [ 26.16741, 42.95216 ], [ 26.15497, 42.91214 ], [ 26.12118, 42.89622 ], [ 26.07255, 42.87331 ], [ 26.03112, 42.81458 ], [ 25.83749, 42.77723 ], [ 25.6801, 42.80299 ], [ 25.61496, 42.78681 ], [ 25.59529, 42.75918 ], [ 25.46194, 42.76266 ], [ 25.39868, 42.73586 ], [ 25.18578, 42.78358 ], [ 25.01454, 42.74802 ], [ 24.96362, 42.86635 ], [ 24.89092, 42.89663 ], [ 24.87526, 42.98536 ], [ 24.92961, 43.04119 ], [ 24.92662, 43.09751 ], [ 24.95605, 43.15147 ], [ 24.97323, 43.18297 ], [ 25.0766, 43.17778 ], [ 25.14043, 43.26683 ], [ 25.17995, 43.30146 ], [ 25.23975, 43.35387 ], [ 25.1997, 43.42987 ], [ 25.13436, 43.44608 ], [ 25.20425, 43.50269 ], [ 25.20985, 43.56397 ], [ 25.21648, 43.63648 ], [ 25.29637, 43.65542 ], [ 25.39146, 43.62289 ], [ 25.54454, 43.64285 ], [ 25.6722, 43.68815 ], [ 25.7745, 43.70965 ], [ 26.11174, 43.96881 ], [ 26.35818, 44.03716 ], [ 26.38182, 44.03861 ], [ 26.76556, 44.08169 ], [ 26.92203, 44.13692 ], [ 27.27134, 44.12634 ], [ 27.29543, 44.08083 ], [ 27.40286, 44.01879 ], [ 27.59703, 44.01502 ], [ 27.64782, 44.039 ], [ 27.69541, 43.98734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG33", "NUTS_ID": "BG33", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Североизточен", "geo": "BG33", "time_2018_MEAN": 74.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.57888, 43.73874 ], [ 28.59518, 43.56397 ], [ 28.59893, 43.52373 ], [ 28.47339, 43.38119 ], [ 28.31619, 43.41507 ], [ 28.15149, 43.40109 ], [ 28.06018, 43.31644 ], [ 28.01338, 43.24073 ], [ 27.93434, 43.1879 ], [ 27.92895, 43.15147 ], [ 27.88262, 42.83841 ], [ 27.78894, 42.83269 ], [ 27.63688, 42.89391 ], [ 27.41043, 42.89345 ], [ 27.26227, 42.97936 ], [ 27.09443, 42.95391 ], [ 27.02016, 42.93235 ], [ 26.81029, 42.94519 ], [ 26.73373, 42.9049 ], [ 26.58999, 42.92012 ], [ 26.5622, 42.94841 ], [ 26.57773, 42.9857 ], [ 26.32563, 43.03425 ], [ 26.16741, 42.95216 ], [ 26.12118, 42.96889 ], [ 26.08872, 42.98064 ], [ 26.11549, 43.02665 ], [ 26.06013, 43.09098 ], [ 26.07128, 43.15147 ], [ 26.10372, 43.19122 ], [ 26.07384, 43.28632 ], [ 26.00459, 43.31875 ], [ 26.00935, 43.36076 ], [ 25.95983, 43.36955 ], [ 25.94379, 43.3858 ], [ 26.01804, 43.44092 ], [ 26.05607, 43.51318 ], [ 26.18898, 43.51739 ], [ 26.24374, 43.5495 ], [ 26.28059, 43.53997 ], [ 26.36071, 43.49179 ], [ 26.37842, 43.44257 ], [ 26.45986, 43.43614 ], [ 26.50628, 43.34894 ], [ 26.63684, 43.33324 ], [ 26.68147, 43.3978 ], [ 26.73044, 43.4101 ], [ 26.73911, 43.45293 ], [ 26.81404, 43.50556 ], [ 26.8139, 43.55108 ], [ 26.83898, 43.56397 ], [ 27.01615, 43.65499 ], [ 27.00189, 43.69687 ], [ 27.08381, 43.70818 ], [ 27.21954, 43.66462 ], [ 27.20758, 43.72844 ], [ 27.28162, 43.79342 ], [ 27.44258, 43.86146 ], [ 27.51217, 43.84891 ], [ 27.54221, 43.90175 ], [ 27.61543, 43.90494 ], [ 27.69541, 43.98734 ], [ 27.75621, 43.96178 ], [ 27.92206, 43.99855 ], [ 28.00271, 43.84322 ], [ 28.22073, 43.76396 ], [ 28.57888, 43.73874 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BG34", "NUTS_ID": "BG34", "LEVL_CODE": 2, "CNTR_CODE": "BG", "NUTS_NAME": "Югоизточен", "geo": "BG34", "time_2018_MEAN": 74.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.58999, 42.92012 ], [ 26.73373, 42.9049 ], [ 26.81029, 42.94519 ], [ 27.02016, 42.93235 ], [ 27.09443, 42.95391 ], [ 27.26227, 42.97936 ], [ 27.41043, 42.89345 ], [ 27.63688, 42.89391 ], [ 27.78894, 42.83269 ], [ 27.88262, 42.83841 ], [ 27.8574, 42.72511 ], [ 27.69639, 42.65606 ], [ 27.52993, 42.5393 ], [ 27.48634, 42.4695 ], [ 27.50608, 42.44491 ], [ 27.62925, 42.44272 ], [ 27.69839, 42.40816 ], [ 27.72735, 42.34671 ], [ 27.78295, 42.32146 ], [ 27.76391, 42.27779 ], [ 27.79118, 42.22268 ], [ 27.96289, 42.0848 ], [ 28.03551, 41.98308 ], [ 27.86572, 41.99724 ], [ 27.80524, 41.96009 ], [ 27.70161, 41.96852 ], [ 27.55376, 41.92126 ], [ 27.28493, 42.09117 ], [ 27.1656, 42.07099 ], [ 27.05965, 42.08834 ], [ 26.94923, 42.00021 ], [ 26.73755, 41.96113 ], [ 26.62746, 41.9723 ], [ 26.57541, 41.93799 ], [ 26.56154, 41.92627 ], [ 26.51872, 41.99489 ], [ 26.49774, 42.14708 ], [ 26.19273, 42.20813 ], [ 26.13732, 42.14221 ], [ 26.14788, 42.04954 ], [ 26.12118, 42.04206 ], [ 26.05986, 42.02488 ], [ 25.9757, 42.09246 ], [ 25.87863, 42.11844 ], [ 25.75589, 42.06767 ], [ 25.69446, 42.13161 ], [ 25.62783, 42.13538 ], [ 25.61263, 42.19016 ], [ 25.47823, 42.1642 ], [ 25.43067, 42.09816 ], [ 25.34806, 42.11438 ], [ 25.26065, 42.16481 ], [ 25.14878, 42.17072 ], [ 25.09774, 42.20275 ], [ 25.13864, 42.29278 ], [ 25.13628, 42.38395 ], [ 25.17527, 42.42379 ], [ 25.16872, 42.4695 ], [ 25.17396, 42.49596 ], [ 25.07353, 42.50287 ], [ 25.03132, 42.53788 ], [ 25.01641, 42.55024 ], [ 25.0072, 42.73762 ], [ 25.01454, 42.74802 ], [ 25.18578, 42.78358 ], [ 25.39868, 42.73586 ], [ 25.46194, 42.76266 ], [ 25.59529, 42.75918 ], [ 25.61496, 42.78681 ], [ 25.6801, 42.80299 ], [ 25.83749, 42.77723 ], [ 26.03112, 42.81458 ], [ 26.07255, 42.87331 ], [ 26.12118, 42.89622 ], [ 26.15497, 42.91214 ], [ 26.16741, 42.95216 ], [ 26.32563, 43.03425 ], [ 26.57773, 42.9857 ], [ 26.5622, 42.94841 ], [ 26.58999, 42.92012 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE92", "NUTS_ID": "DE92", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Hannover", "geo": "DE92", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.116, 52.89695 ], [ 9.17732, 52.88322 ], [ 9.21436, 52.82056 ], [ 9.30044, 52.80362 ], [ 9.3256, 52.76771 ], [ 9.34755, 52.72678 ], [ 9.48196, 52.72052 ], [ 9.53466, 52.66007 ], [ 9.58767, 52.66711 ], [ 9.67583, 52.60366 ], [ 9.73462, 52.6383 ], [ 9.95493, 52.59048 ], [ 9.99913, 52.54041 ], [ 10.13487, 52.50538 ], [ 10.27374, 52.51064 ], [ 10.29191, 52.4479 ], [ 10.15531, 52.39322 ], [ 10.13397, 52.34571 ], [ 10.03447, 52.28377 ], [ 10.01038, 52.2339 ], [ 10.19086, 52.23029 ], [ 10.25748, 52.18302 ], [ 10.23401, 52.1702 ], [ 10.18467, 52.14869 ], [ 10.20469, 52.00699 ], [ 10.18191, 51.96038 ], [ 10.0917, 51.95353 ], [ 10.06553, 51.92736 ], [ 10.01652, 51.94126 ], [ 9.95493, 51.90611 ], [ 9.89425, 51.90615 ], [ 9.71402, 51.87165 ], [ 9.45803, 51.70285 ], [ 9.41732, 51.64727 ], [ 9.38417, 51.66342 ], [ 9.43305, 51.83727 ], [ 9.32334, 51.85506 ], [ 9.33589, 51.88915 ], [ 9.30889, 51.92272 ], [ 9.25376, 51.96964 ], [ 9.19628, 51.97329 ], [ 9.1556, 52.09783 ], [ 9.12825, 52.13211 ], [ 9.02118, 52.14389 ], [ 8.99363, 52.19018 ], [ 9.03677, 52.19088 ], [ 9.05083, 52.22106 ], [ 8.98341, 52.26816 ], [ 8.99361, 52.31157 ], [ 9.12525, 52.41199 ], [ 9.11128, 52.47795 ], [ 9.06959, 52.4973 ], [ 8.94133, 52.40808 ], [ 8.7449, 52.39407 ], [ 8.70828, 52.42348 ], [ 8.70301, 52.50044 ], [ 8.63995, 52.52496 ], [ 8.49193, 52.50521 ], [ 8.41469, 52.44739 ], [ 8.29721, 52.4565 ], [ 8.30832, 52.49911 ], [ 8.34008, 52.55858 ], [ 8.30417, 52.668 ], [ 8.45812, 52.73746 ], [ 8.45928, 52.80106 ], [ 8.48662, 52.79914 ], [ 8.5302, 52.81169 ], [ 8.62305, 52.85206 ], [ 8.68305, 52.91833 ], [ 8.65716, 53.00899 ], [ 8.71142, 53.04463 ], [ 8.91583, 53.01102 ], [ 8.91705, 52.94678 ], [ 8.95288, 52.89631 ], [ 9.02928, 52.92347 ], [ 9.116, 52.89695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE93", "NUTS_ID": "DE93", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Lüneburg", "geo": "DE93", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.01851, 53.83484 ], [ 9.27273, 53.86766 ], [ 9.48589, 53.70766 ], [ 9.56276, 53.61286 ], [ 9.7301, 53.55758 ], [ 9.76626, 53.54682 ], [ 9.76886, 53.50528 ], [ 9.8626, 53.43964 ], [ 9.98419, 53.42269 ], [ 10.05909, 53.45534 ], [ 10.2045, 53.39675 ], [ 10.30795, 53.4332 ], [ 10.46918, 53.38584 ], [ 10.59505, 53.36393 ], [ 10.69901, 53.36277 ], [ 10.82622, 53.31593 ], [ 10.96579, 53.33036 ], [ 11.17186, 53.15664 ], [ 11.26573, 53.12198 ], [ 11.33618, 53.06189 ], [ 11.45163, 53.07273 ], [ 11.59778, 53.03593 ], [ 11.50981, 52.99303 ], [ 11.50503, 52.94103 ], [ 11.29941, 52.8782 ], [ 11.0428, 52.90917 ], [ 10.93636, 52.85729 ], [ 10.84156, 52.8522 ], [ 10.75931, 52.79583 ], [ 10.66143, 52.77493 ], [ 10.54411, 52.82753 ], [ 10.43955, 52.81169 ], [ 10.37445, 52.72135 ], [ 10.40082, 52.58132 ], [ 10.27374, 52.51064 ], [ 10.13487, 52.50538 ], [ 9.99913, 52.54041 ], [ 9.95493, 52.59048 ], [ 9.73462, 52.6383 ], [ 9.67583, 52.60366 ], [ 9.58767, 52.66711 ], [ 9.53466, 52.66007 ], [ 9.48196, 52.72052 ], [ 9.34755, 52.72678 ], [ 9.3256, 52.76771 ], [ 9.30044, 52.80362 ], [ 9.21436, 52.82056 ], [ 9.17732, 52.88322 ], [ 9.116, 52.89695 ], [ 9.02928, 52.92347 ], [ 8.95288, 52.89631 ], [ 8.91705, 52.94678 ], [ 8.91583, 53.01102 ], [ 8.96868, 53.04485 ], [ 8.9596, 53.1117 ], [ 8.98419, 53.12607 ], [ 8.48533, 53.22712 ], [ 8.49428, 53.3124 ], [ 8.49999, 53.36685 ], [ 8.49265, 53.47242 ], [ 8.60933, 53.49019 ], [ 8.64546, 53.52133 ], [ 8.63666, 53.59812 ], [ 8.52041, 53.6062 ], [ 8.4861, 53.68827 ], [ 8.55313, 53.82059 ], [ 8.60672, 53.87394 ], [ 8.68717, 53.89191 ], [ 8.79258, 53.83597 ], [ 9.01851, 53.83484 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE94", "NUTS_ID": "DE94", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Weser-Ems", "geo": "DE94", "time_2018_MEAN": 80.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.55017, 53.67504 ], [ 7.8099, 53.70766 ], [ 8.00554, 53.70845 ], [ 8.04869, 53.64775 ], [ 8.09129, 53.63811 ], [ 8.14258, 53.59479 ], [ 8.16211, 53.53377 ], [ 8.06133, 53.50596 ], [ 8.08839, 53.45667 ], [ 8.19556, 53.40917 ], [ 8.25838, 53.40555 ], [ 8.30614, 53.45379 ], [ 8.29947, 53.51603 ], [ 8.23678, 53.53774 ], [ 8.29672, 53.60846 ], [ 8.5549, 53.52513 ], [ 8.49265, 53.47242 ], [ 8.49999, 53.36685 ], [ 8.49428, 53.3124 ], [ 8.48533, 53.22712 ], [ 8.61556, 53.16321 ], [ 8.6549, 53.10886 ], [ 8.71142, 53.04463 ], [ 8.65716, 53.00899 ], [ 8.68305, 52.91833 ], [ 8.62305, 52.85206 ], [ 8.5302, 52.81169 ], [ 8.48662, 52.79914 ], [ 8.45928, 52.80106 ], [ 8.45812, 52.73746 ], [ 8.30417, 52.668 ], [ 8.34008, 52.55858 ], [ 8.30832, 52.49911 ], [ 8.29721, 52.4565 ], [ 8.33064, 52.40323 ], [ 8.43712, 52.35826 ], [ 8.46619, 52.26761 ], [ 8.45144, 52.22068 ], [ 8.48855, 52.17629 ], [ 8.41059, 52.11511 ], [ 8.26542, 52.12667 ], [ 8.09645, 52.05714 ], [ 7.96336, 52.04106 ], [ 7.88516, 52.0833 ], [ 8.00194, 52.12396 ], [ 7.99508, 52.16713 ], [ 7.91207, 52.2044 ], [ 7.95647, 52.27249 ], [ 7.96463, 52.32486 ], [ 7.91999, 52.36958 ], [ 7.74599, 52.39098 ], [ 7.67656, 52.45433 ], [ 7.60804, 52.47402 ], [ 7.56493, 52.37971 ], [ 7.31748, 52.28027 ], [ 7.09915, 52.24306 ], [ 7.06569, 52.24137 ], [ 7.03443, 52.29149 ], [ 7.06305, 52.37304 ], [ 6.99588, 52.45441 ], [ 6.92412, 52.44163 ], [ 6.69787, 52.48629 ], [ 6.72977, 52.57415 ], [ 6.70973, 52.62782 ], [ 7.00623, 52.63876 ], [ 7.05342, 52.65717 ], [ 7.07266, 52.81169 ], [ 7.09269, 52.8382 ], [ 7.20108, 52.9855 ], [ 7.20279, 53.11328 ], [ 7.20894, 53.24306 ], [ 7.2643, 53.32553 ], [ 6.99945, 53.35989 ], [ 7.04299, 53.52413 ], [ 7.12271, 53.53362 ], [ 7.1006, 53.57572 ], [ 7.16503, 53.63027 ], [ 7.29288, 53.67823 ], [ 7.55017, 53.67504 ] ] ], [ [ [ 7.78299, 53.78692 ], [ 7.77025, 53.75163 ], [ 7.69678, 53.77322 ], [ 7.70836, 53.7886 ], [ 7.78299, 53.78692 ] ] ], [ [ [ 7.70844, 53.76536 ], [ 7.6839, 53.7408 ], [ 7.65075, 53.75935 ], [ 7.67685, 53.78483 ], [ 7.70844, 53.76536 ] ] ], [ [ [ 7.4986, 53.7195 ], [ 7.44754, 53.71786 ], [ 7.4767, 53.76209 ], [ 7.51875, 53.76362 ], [ 7.4986, 53.7195 ] ] ], [ [ [ 7.28981, 53.70633 ], [ 7.17571, 53.70087 ], [ 7.17, 53.713 ], [ 7.18881, 53.72342 ], [ 7.29169, 53.72462 ], [ 7.28981, 53.70633 ] ] ], [ [ [ 6.86559, 53.66482 ], [ 6.86666, 53.67107 ], [ 6.99885, 53.68286 ], [ 7.10149, 53.68663 ], [ 7.09852, 53.6783 ], [ 6.86559, 53.66482 ] ] ], [ [ [ 6.86641, 53.6451 ], [ 6.9008, 53.65386 ], [ 6.90594, 53.64416 ], [ 6.89139, 53.62546 ], [ 6.87691, 53.62854 ], [ 6.86495, 53.64019 ], [ 6.86641, 53.6451 ] ] ], [ [ [ 6.78364, 53.60864 ], [ 6.71483, 53.55976 ], [ 6.66516, 53.57809 ], [ 6.65495, 53.59595 ], [ 6.75864, 53.61764 ], [ 6.78364, 53.60864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ07", "NUTS_ID": "CZ07", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Morava", "geo": "CZ07", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.91686, 49.53781 ], [ 18.29446, 49.48274 ], [ 18.4036, 49.39675 ], [ 18.39167, 49.34533 ], [ 18.32244, 49.31506 ], [ 18.1657, 49.26554 ], [ 18.06722, 49.04073 ], [ 17.93167, 49.01488 ], [ 17.87783, 48.93252 ], [ 17.7867, 48.92137 ], [ 17.64693, 48.85427 ], [ 17.52516, 48.94953 ], [ 17.39812, 48.97071 ], [ 17.14911, 49.09179 ], [ 17.18084, 49.15473 ], [ 17.14431, 49.22638 ], [ 17.1599, 49.27506 ], [ 17.11644, 49.33075 ], [ 17.03317, 49.3687 ], [ 16.93738, 49.49135 ], [ 16.88862, 49.48026 ], [ 16.90383, 49.42641 ], [ 16.8749, 49.39599 ], [ 16.81199, 49.40748 ], [ 16.79051, 49.52538 ], [ 16.75684, 49.56073 ], [ 16.8042, 49.59881 ], [ 16.8408, 49.70448 ], [ 16.74381, 49.83178 ], [ 16.76048, 49.89539 ], [ 16.7217, 49.98829 ], [ 16.80197, 50.03446 ], [ 16.8182, 50.083 ], [ 16.86327, 50.19812 ], [ 17.01693, 50.23331 ], [ 17.00419, 50.29296 ], [ 16.8726, 50.41217 ], [ 16.90792, 50.44945 ], [ 17.18977, 50.38101 ], [ 17.4296, 50.25451 ], [ 17.418, 50.22094 ], [ 17.25928, 50.15342 ], [ 17.23045, 50.083 ], [ 17.1743, 50.00806 ], [ 17.19139, 49.94902 ], [ 17.15699, 49.89912 ], [ 17.20085, 49.83818 ], [ 17.25284, 49.82305 ], [ 17.35773, 49.85582 ], [ 17.38389, 49.80087 ], [ 17.47643, 49.85943 ], [ 17.51681, 49.78134 ], [ 17.67184, 49.74737 ], [ 17.69855, 49.68062 ], [ 17.91686, 49.53781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ08", "NUTS_ID": "CZ08", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Moravskoslezsko", "geo": "CZ08", "time_2018_MEAN": 77.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.03506, 50.06577 ], [ 18.12744, 49.9972 ], [ 18.20202, 49.98892 ], [ 18.30966, 49.92573 ], [ 18.35167, 49.94177 ], [ 18.57572, 49.91042 ], [ 18.57933, 49.82516 ], [ 18.62536, 49.73257 ], [ 18.80247, 49.66952 ], [ 18.85155, 49.51719 ], [ 18.75187, 49.49317 ], [ 18.56649, 49.50284 ], [ 18.45883, 49.40539 ], [ 18.4036, 49.39675 ], [ 18.29446, 49.48274 ], [ 17.91686, 49.53781 ], [ 17.69855, 49.68062 ], [ 17.67184, 49.74737 ], [ 17.51681, 49.78134 ], [ 17.47643, 49.85943 ], [ 17.38389, 49.80087 ], [ 17.35773, 49.85582 ], [ 17.25284, 49.82305 ], [ 17.20085, 49.83818 ], [ 17.15699, 49.89912 ], [ 17.19139, 49.94902 ], [ 17.1743, 50.00806 ], [ 17.23045, 50.083 ], [ 17.25928, 50.15342 ], [ 17.418, 50.22094 ], [ 17.4296, 50.25451 ], [ 17.61574, 50.27043 ], [ 17.69481, 50.31805 ], [ 17.72671, 50.30974 ], [ 17.75476, 50.21659 ], [ 17.61108, 50.15522 ], [ 17.73943, 50.083 ], [ 17.78328, 50.02598 ], [ 17.88085, 49.97593 ], [ 18.03419, 50.01139 ], [ 18.01448, 50.04538 ], [ 18.03506, 50.06577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL01", "NUTS_ID": "AL01", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Veri", "geo": "AL01", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.82698, 42.4695 ], [ 19.83939, 42.4695 ], [ 20.02705, 42.53788 ], [ 20.0763, 42.55582 ], [ 20.18952, 42.4695 ], [ 20.2593, 42.33421 ], [ 20.36632, 42.30721 ], [ 20.51489, 42.20995 ], [ 20.60809, 41.95911 ], [ 20.59429, 41.87733 ], [ 20.56287, 41.84614 ], [ 20.56671, 41.79952 ], [ 20.52028, 41.72143 ], [ 20.55777, 41.58187 ], [ 20.46581, 41.54561 ], [ 20.55332, 41.40465 ], [ 20.50166, 41.31715 ], [ 20.42524, 41.39119 ], [ 20.23617, 41.34849 ], [ 20.06411, 41.40015 ], [ 19.90835, 41.51193 ], [ 19.87523, 41.45479 ], [ 19.77346, 41.43781 ], [ 19.73889, 41.40615 ], [ 19.68862, 41.45154 ], [ 19.63184, 41.44299 ], [ 19.62964, 41.29306 ], [ 19.58695, 41.26261 ], [ 19.5178, 41.26866 ], [ 19.42977, 41.33076 ], [ 19.42284, 41.3783 ], [ 19.50407, 41.48861 ], [ 19.46993, 41.56868 ], [ 19.55733, 41.57767 ], [ 19.59611, 41.78912 ], [ 19.52007, 41.84031 ], [ 19.37253, 41.84415 ], [ 19.35709, 41.94394 ], [ 19.38545, 42.09437 ], [ 19.30457, 42.19335 ], [ 19.52716, 42.4695 ], [ 19.58344, 42.53788 ], [ 19.6336, 42.59883 ], [ 19.74, 42.64626 ], [ 19.76649, 42.60538 ], [ 19.75862, 42.53788 ], [ 19.76265, 42.51845 ], [ 19.82698, 42.4695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL02", "NUTS_ID": "AL02", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Qender", "geo": "AL02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.90835, 41.51193 ], [ 20.06411, 41.40015 ], [ 20.23617, 41.34849 ], [ 20.42524, 41.39119 ], [ 20.50166, 41.31715 ], [ 20.59775, 41.09203 ], [ 20.58828, 41.02762 ], [ 20.52001, 41.0358 ], [ 20.42657, 40.98957 ], [ 20.39734, 40.93689 ], [ 20.45786, 40.81671 ], [ 20.44561, 40.75853 ], [ 20.29654, 40.72684 ], [ 20.17649, 40.73921 ], [ 19.98324, 40.87008 ], [ 19.82979, 40.86745 ], [ 19.80456, 40.89177 ], [ 19.8055, 40.997 ], [ 19.70677, 41.01096 ], [ 19.67743, 41.05488 ], [ 19.47623, 41.03963 ], [ 19.44248, 41.00053 ], [ 19.44701, 41.14219 ], [ 19.5178, 41.26866 ], [ 19.58695, 41.26261 ], [ 19.62964, 41.29306 ], [ 19.63184, 41.44299 ], [ 19.68862, 41.45154 ], [ 19.73889, 41.40615 ], [ 19.77346, 41.43781 ], [ 19.87523, 41.45479 ], [ 19.90835, 41.51193 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AL03", "NUTS_ID": "AL03", "LEVL_CODE": 2, "CNTR_CODE": "AL", "NUTS_NAME": "Jug", "geo": "AL03", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.83782, 40.92768 ], [ 20.95351, 40.91348 ], [ 20.9802, 40.85566 ], [ 20.9714, 40.76523 ], [ 21.04728, 40.67769 ], [ 21.05607, 40.6167 ], [ 20.94903, 40.47669 ], [ 20.85478, 40.47491 ], [ 20.7973, 40.42612 ], [ 20.7785, 40.34879 ], [ 20.72236, 40.28324 ], [ 20.67749, 40.10778 ], [ 20.61288, 40.07965 ], [ 20.44302, 40.06665 ], [ 20.38677, 40.0011 ], [ 20.32423, 39.98493 ], [ 20.40703, 39.85053 ], [ 20.39131, 39.78848 ], [ 20.30235, 39.81274 ], [ 20.29704, 39.76531 ], [ 20.31578, 39.72734 ], [ 20.27707, 39.70419 ], [ 20.26194, 39.67672 ], [ 20.22922, 39.67903 ], [ 20.21928, 39.64851 ], [ 20.12672, 39.65801 ], [ 20.03121, 39.69679 ], [ 20.00881, 39.69129 ], [ 20.00395, 39.85291 ], [ 19.86226, 40.02615 ], [ 19.5033, 40.20215 ], [ 19.37727, 40.31083 ], [ 19.32843, 40.40045 ], [ 19.36913, 40.40194 ], [ 19.44928, 40.33866 ], [ 19.48206, 40.43048 ], [ 19.31875, 40.64498 ], [ 19.36654, 40.73396 ], [ 19.37508, 40.8287 ], [ 19.46469, 40.96266 ], [ 19.44248, 41.00053 ], [ 19.47623, 41.03963 ], [ 19.67743, 41.05488 ], [ 19.70677, 41.01096 ], [ 19.8055, 40.997 ], [ 19.80456, 40.89177 ], [ 19.82979, 40.86745 ], [ 19.98324, 40.87008 ], [ 20.17649, 40.73921 ], [ 20.29654, 40.72684 ], [ 20.44561, 40.75853 ], [ 20.45786, 40.81671 ], [ 20.39734, 40.93689 ], [ 20.42657, 40.98957 ], [ 20.52001, 41.0358 ], [ 20.58828, 41.02762 ], [ 20.59775, 41.09203 ], [ 20.67219, 41.07449 ], [ 20.73993, 40.91484 ], [ 20.79448, 40.90308 ], [ 20.83782, 40.92768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT11", "NUTS_ID": "AT11", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Burgenland", "geo": "AT11", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.06674, 48.11868 ], [ 17.07721, 48.03778 ], [ 17.1608, 48.00666 ], [ 17.10875, 47.97548 ], [ 17.09478, 47.90293 ], [ 17.03372, 47.86002 ], [ 17.06316, 47.8113 ], [ 17.05736, 47.70774 ], [ 16.90584, 47.68908 ], [ 16.86123, 47.70983 ], [ 16.76995, 47.68283 ], [ 16.7103, 47.73341 ], [ 16.60462, 47.7561 ], [ 16.42154, 47.6653 ], [ 16.65454, 47.61125 ], [ 16.70245, 47.53945 ], [ 16.64622, 47.4466 ], [ 16.47151, 47.40072 ], [ 16.43376, 47.35292 ], [ 16.48128, 47.28522 ], [ 16.43588, 47.1939 ], [ 16.51936, 47.13372 ], [ 16.47441, 47.09291 ], [ 16.49826, 47.06032 ], [ 16.47233, 47.00175 ], [ 16.29523, 46.99785 ], [ 16.11385, 46.86907 ], [ 15.99624, 46.8354 ], [ 16.12955, 47.00831 ], [ 16.09574, 47.076 ], [ 16.10656, 47.16387 ], [ 16.03349, 47.3546 ], [ 16.07881, 47.40106 ], [ 16.17108, 47.42134 ], [ 16.27984, 47.45483 ], [ 16.32834, 47.50908 ], [ 16.32073, 47.57044 ], [ 16.37254, 47.64214 ], [ 16.30895, 47.69775 ], [ 16.29542, 47.74623 ], [ 16.39115, 47.88213 ], [ 16.49177, 47.94041 ], [ 16.58817, 47.89996 ], [ 16.71512, 48.00888 ], [ 16.8786, 48.06623 ], [ 16.97573, 48.04059 ], [ 16.99713, 48.10293 ], [ 17.06674, 48.11868 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT12", "NUTS_ID": "AT12", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Niederösterreich", "geo": "AT12", "time_2018_MEAN": 81.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.54245, 48.9077 ], [ 15.75363, 48.85218 ], [ 15.84752, 48.86067 ], [ 16.07489, 48.75601 ], [ 16.30679, 48.73353 ], [ 16.3945, 48.74438 ], [ 16.47544, 48.80063 ], [ 16.56345, 48.80127 ], [ 16.70843, 48.73429 ], [ 16.88406, 48.7101 ], [ 16.94028, 48.61725 ], [ 16.94978, 48.53579 ], [ 16.85111, 48.43863 ], [ 16.85557, 48.35287 ], [ 16.94619, 48.26142 ], [ 16.9762, 48.17224 ], [ 17.06674, 48.11868 ], [ 16.99713, 48.10293 ], [ 16.97573, 48.04059 ], [ 16.8786, 48.06623 ], [ 16.71512, 48.00888 ], [ 16.58817, 47.89996 ], [ 16.49177, 47.94041 ], [ 16.39115, 47.88213 ], [ 16.29542, 47.74623 ], [ 16.30895, 47.69775 ], [ 16.37254, 47.64214 ], [ 16.32073, 47.57044 ], [ 16.32834, 47.50908 ], [ 16.27984, 47.45483 ], [ 16.17108, 47.42134 ], [ 16.10506, 47.51424 ], [ 16.05093, 47.49539 ], [ 15.84791, 47.56847 ], [ 15.8438, 47.62428 ], [ 15.7617, 47.63438 ], [ 15.60733, 47.74514 ], [ 15.52819, 47.74988 ], [ 15.38246, 47.81687 ], [ 15.21803, 47.7941 ], [ 15.19308, 47.76006 ], [ 15.0881, 47.74082 ], [ 15.00596, 47.74767 ], [ 14.90783, 47.71243 ], [ 14.73855, 47.74743 ], [ 14.71901, 47.84363 ], [ 14.75816, 47.87924 ], [ 14.75076, 47.90375 ], [ 14.49611, 48.00387 ], [ 14.46063, 48.06094 ], [ 14.48054, 48.10551 ], [ 14.47766, 48.18033 ], [ 14.52081, 48.23735 ], [ 14.69025, 48.16156 ], [ 14.95041, 48.22821 ], [ 14.98627, 48.2724 ], [ 14.95026, 48.3333 ], [ 14.96027, 48.37648 ], [ 14.87687, 48.46584 ], [ 14.89532, 48.51252 ], [ 14.69101, 48.5843 ], [ 14.73299, 48.6874 ], [ 14.81749, 48.77233 ], [ 14.96601, 48.77268 ], [ 15.00719, 49.01231 ], [ 15.12428, 48.99643 ], [ 15.19002, 48.95116 ], [ 15.3609, 48.97949 ], [ 15.54245, 48.9077 ] ], [ [ 16.18577, 48.1724 ], [ 16.2886, 48.12464 ], [ 16.40909, 48.12412 ], [ 16.4962, 48.15619 ], [ 16.57804, 48.14331 ], [ 16.54386, 48.18021 ], [ 16.5403, 48.26063 ], [ 16.4125, 48.31733 ], [ 16.20497, 48.24998 ], [ 16.18577, 48.1724 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT13", "NUTS_ID": "AT13", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Wien", "geo": "AT13", "time_2018_MEAN": 80.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.57804, 48.14331 ], [ 16.4962, 48.15619 ], [ 16.40909, 48.12412 ], [ 16.2886, 48.12464 ], [ 16.18577, 48.1724 ], [ 16.20497, 48.24998 ], [ 16.4125, 48.31733 ], [ 16.5403, 48.26063 ], [ 16.54386, 48.18021 ], [ 16.57804, 48.14331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT21", "NUTS_ID": "AT21", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Kärnten", "geo": "AT21", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.35458, 47.0973 ], [ 13.67774, 47.03759 ], [ 13.78513, 46.94405 ], [ 13.85176, 46.91662 ], [ 13.94663, 46.94162 ], [ 14.19136, 47.06648 ], [ 14.39797, 46.9892 ], [ 14.84206, 47.04861 ], [ 14.96104, 46.98041 ], [ 15.015, 46.91406 ], [ 14.98693, 46.79065 ], [ 15.02812, 46.7593 ], [ 15.03204, 46.67591 ], [ 15.06512, 46.65211 ], [ 14.87473, 46.60157 ], [ 14.81318, 46.51518 ], [ 14.72502, 46.49664 ], [ 14.67458, 46.45069 ], [ 14.59738, 46.42752 ], [ 14.56518, 46.37245 ], [ 14.52633, 46.41496 ], [ 14.4345, 46.44294 ], [ 14.16784, 46.44001 ], [ 14.10176, 46.47932 ], [ 13.91492, 46.5165 ], [ 13.71419, 46.5227 ], [ 13.50425, 46.5663 ], [ 13.25679, 46.55307 ], [ 13.14002, 46.59312 ], [ 12.80836, 46.63214 ], [ 12.73139, 46.63429 ], [ 12.69064, 46.65697 ], [ 12.72276, 46.73248 ], [ 12.80836, 46.7554 ], [ 12.93394, 46.76911 ], [ 12.96092, 46.78993 ], [ 12.8496, 46.86088 ], [ 12.83458, 46.90771 ], [ 12.80836, 46.92238 ], [ 12.73888, 46.97603 ], [ 12.74205, 47.03283 ], [ 12.65608, 47.0997 ], [ 12.71185, 47.12716 ], [ 12.80836, 47.0976 ], [ 13.06383, 47.01926 ], [ 13.35458, 47.0973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT22", "NUTS_ID": "AT22", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Steiermark", "geo": "AT22", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.84791, 47.56847 ], [ 16.05093, 47.49539 ], [ 16.10506, 47.51424 ], [ 16.17108, 47.42134 ], [ 16.07881, 47.40106 ], [ 16.03349, 47.3546 ], [ 16.10656, 47.16387 ], [ 16.09574, 47.076 ], [ 16.12955, 47.00831 ], [ 15.99624, 46.8354 ], [ 16.00843, 46.68129 ], [ 15.78642, 46.70747 ], [ 15.64999, 46.70576 ], [ 15.49791, 46.61801 ], [ 15.40198, 46.65355 ], [ 15.06512, 46.65211 ], [ 15.03204, 46.67591 ], [ 15.02812, 46.7593 ], [ 14.98693, 46.79065 ], [ 15.015, 46.91406 ], [ 14.96104, 46.98041 ], [ 14.84206, 47.04861 ], [ 14.39797, 46.9892 ], [ 14.19136, 47.06648 ], [ 13.94663, 46.94162 ], [ 13.85176, 46.91662 ], [ 13.78513, 46.94405 ], [ 13.85492, 46.99796 ], [ 13.89946, 47.10541 ], [ 13.95985, 47.14206 ], [ 13.86437, 47.25169 ], [ 13.80894, 47.28637 ], [ 13.69698, 47.26548 ], [ 13.60684, 47.2833 ], [ 13.59008, 47.3546 ], [ 13.56942, 47.41799 ], [ 13.58558, 47.47399 ], [ 13.72446, 47.47606 ], [ 13.7526, 47.53071 ], [ 13.70075, 47.58761 ], [ 13.70279, 47.63565 ], [ 13.77115, 47.70994 ], [ 14.01066, 47.70051 ], [ 14.06675, 47.62102 ], [ 14.19716, 47.64655 ], [ 14.31582, 47.60953 ], [ 14.55967, 47.71894 ], [ 14.73855, 47.74743 ], [ 14.90783, 47.71243 ], [ 15.00596, 47.74767 ], [ 15.0881, 47.74082 ], [ 15.19308, 47.76006 ], [ 15.21803, 47.7941 ], [ 15.38246, 47.81687 ], [ 15.52819, 47.74988 ], [ 15.60733, 47.74514 ], [ 15.7617, 47.63438 ], [ 15.8438, 47.62428 ], [ 15.84791, 47.56847 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "AT31", "NUTS_ID": "AT31", "LEVL_CODE": 2, "CNTR_CODE": "AT", "NUTS_NAME": "Oberösterreich", "geo": "AT31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.69101, 48.5843 ], [ 14.89532, 48.51252 ], [ 14.87687, 48.46584 ], [ 14.96027, 48.37648 ], [ 14.95026, 48.3333 ], [ 14.98627, 48.2724 ], [ 14.95041, 48.22821 ], [ 14.69025, 48.16156 ], [ 14.52081, 48.23735 ], [ 14.47766, 48.18033 ], [ 14.48054, 48.10551 ], [ 14.46063, 48.06094 ], [ 14.49611, 48.00387 ], [ 14.75076, 47.90375 ], [ 14.75816, 47.87924 ], [ 14.71901, 47.84363 ], [ 14.73855, 47.74743 ], [ 14.55967, 47.71894 ], [ 14.31582, 47.60953 ], [ 14.19716, 47.64655 ], [ 14.06675, 47.62102 ], [ 14.01066, 47.70051 ], [ 13.77115, 47.70994 ], [ 13.70279, 47.63565 ], [ 13.70075, 47.58761 ], [ 13.7526, 47.53071 ], [ 13.72446, 47.47606 ], [ 13.58558, 47.47399 ], [ 13.51636, 47.49678 ], [ 13.48763, 47.55548 ], [ 13.52901, 47.70501 ], [ 13.45861, 47.73909 ], [ 13.436, 47.79824 ], [ 13.29969, 47.84092 ], [ 13.29022, 47.93448 ], [ 13.33794, 47.97002 ], [ 13.30382, 48.00782 ], [ 13.16695, 47.97338 ], [ 13.02518, 48.0349 ], [ 12.86018, 47.99664 ], [ 12.75156, 48.11281 ], [ 12.87572, 48.19709 ], [ 12.94468, 48.20669 ], [ 13.03692, 48.26127 ], [ 13.17704, 48.29439 ], [ 13.27713, 48.3024 ], [ 13.40162, 48.37149 ], [ 13.44987, 48.50526 ], [ 13.43843, 48.54889 ], [ 13.51337, 48.59098 ], [ 13.72709, 48.51302 ], [ 13.81937, 48.61293 ], [ 13.79611, 48.7136 ], [ 13.83951, 48.7716 ], [ 14.00759, 48.7002 ], [ 14.04195, 48.66021 ], [ 14.02562, 48.6367 ], [ 14.09193, 48.59421 ], [ 14.33415, 48.55944 ], [ 14.47196, 48.63605 ], [ 14.69101, 48.5843 ] ], [ [ 13.47818, 47.78506 ], [ 13.49354, 47.76316 ], [ 13.55123, 47.76757 ], [ 13.5379, 47.80777 ], [ 13.47818, 47.78506 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK05", "NUTS_ID": "DK05", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Nordjylland", "geo": "DK05", "time_2018_MEAN": 80.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.09089, 57.26044 ], [ 11.03629, 57.22819 ], [ 11.02692, 57.20253 ], [ 10.96162, 57.2145 ], [ 10.94197, 57.24415 ], [ 10.89403, 57.23727 ], [ 10.86928, 57.25701 ], [ 10.92148, 57.29678 ], [ 11.00807, 57.30617 ], [ 11.03017, 57.31933 ], [ 11.19422, 57.32382 ], [ 11.19504, 57.30597 ], [ 11.09751, 57.29449 ], [ 11.09089, 57.26044 ] ] ], [ [ [ 10.19436, 56.68466 ], [ 10.08924, 56.6171 ], [ 9.8626, 56.55556 ], [ 9.79582, 56.56161 ], [ 9.65679, 56.58641 ], [ 9.64568, 56.62754 ], [ 9.51796, 56.67401 ], [ 9.43816, 56.64181 ], [ 9.36776, 56.65977 ], [ 9.31946, 56.67209 ], [ 9.20724, 56.69841 ], [ 9.18393, 56.88341 ], [ 9.21583, 56.96961 ], [ 9.1209, 57.02451 ], [ 8.66946, 56.92583 ], [ 8.69613, 56.89585 ], [ 8.86185, 56.94085 ], [ 8.8986, 56.92139 ], [ 8.85165, 56.85722 ], [ 8.84626, 56.77609 ], [ 8.73525, 56.69 ], [ 8.65345, 56.68188 ], [ 8.57031, 56.72188 ], [ 8.56104, 56.76733 ], [ 8.62178, 56.80612 ], [ 8.61382, 56.83375 ], [ 8.50511, 56.78967 ], [ 8.49566, 56.70523 ], [ 8.46775, 56.68979 ], [ 8.3633, 56.68953 ], [ 8.24613, 56.78456 ], [ 8.35146, 56.9386 ], [ 8.59727, 57.1079 ], [ 9.37686, 57.17476 ], [ 9.58429, 57.26687 ], [ 9.95732, 57.57478 ], [ 10.22871, 57.6148 ], [ 10.49874, 57.69434 ], [ 10.45501, 57.57543 ], [ 10.52914, 57.43715 ], [ 10.52962, 57.2539 ], [ 10.29295, 56.93543 ], [ 10.29778, 56.7342 ], [ 10.19436, 56.68466 ] ] ], [ [ [ 9.11498, 56.893 ], [ 9.09623, 56.86919 ], [ 9.04128, 56.89294 ], [ 9.09357, 56.92393 ], [ 9.11498, 56.893 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE21", "NUTS_ID": "BE21", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Antwerpen", "geo": "BE21", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.10218, 51.429 ], [ 5.0878, 51.3823 ], [ 5.14481, 51.32092 ], [ 5.2259, 51.30946 ], [ 5.23772, 51.2616 ], [ 5.21944, 51.22582 ], [ 5.26107, 51.14696 ], [ 5.02024, 51.07217 ], [ 4.98157, 51.03489 ], [ 4.82928, 51.01502 ], [ 4.78932, 51.03893 ], [ 4.52866, 50.99226 ], [ 4.241, 51.03687 ], [ 4.20069, 51.04434 ], [ 4.17579, 51.10121 ], [ 4.30783, 51.12503 ], [ 4.32724, 51.1699 ], [ 4.3067, 51.27683 ], [ 4.24205, 51.35397 ], [ 4.24367, 51.37473 ], [ 4.27957, 51.37602 ], [ 4.40594, 51.36516 ], [ 4.38966, 51.44398 ], [ 4.48617, 51.47765 ], [ 4.52789, 51.47565 ], [ 4.54822, 51.42923 ], [ 4.66954, 51.42638 ], [ 4.75993, 51.50246 ], [ 4.82863, 51.48026 ], [ 4.84105, 51.42781 ], [ 4.89939, 51.40589 ], [ 5.04151, 51.47912 ], [ 5.10218, 51.429 ] ], [ [ 4.74644, 51.43823 ], [ 4.7881, 51.39572 ], [ 4.83054, 51.41483 ], [ 4.78188, 51.44543 ], [ 4.74644, 51.43823 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "BE22", "NUTS_ID": "BE22", "LEVL_CODE": 2, "CNTR_CODE": "BE", "NUTS_NAME": "Prov. Limburg (BE)", "geo": "BE22", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.81905, 50.71456 ], [ 5.76994, 50.74665 ], [ 5.682, 50.75745 ], [ 5.77397, 50.77452 ], [ 5.89207, 50.75524 ], [ 5.88712, 50.71853 ], [ 5.81905, 50.71456 ] ] ], [ [ [ 5.68762, 50.81192 ], [ 5.43169, 50.7198 ], [ 5.37712, 50.74548 ], [ 5.23691, 50.72727 ], [ 5.10348, 50.70906 ], [ 5.16805, 50.8863 ], [ 5.0637, 50.94088 ], [ 5.12116, 51.02008 ], [ 4.98157, 51.03489 ], [ 5.02024, 51.07217 ], [ 5.26107, 51.14696 ], [ 5.21944, 51.22582 ], [ 5.23772, 51.2616 ], [ 5.49843, 51.29582 ], [ 5.54768, 51.26882 ], [ 5.56628, 51.22084 ], [ 5.8352, 51.15625 ], [ 5.79827, 51.05985 ], [ 5.76613, 51.00872 ], [ 5.7326, 50.92737 ], [ 5.65381, 50.86561 ], [ 5.68762, 50.81192 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES43", "NUTS_ID": "ES43", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Extremadura", "geo": "ES43", "time_2018_MEAN": 82.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.7376, 40.29416 ], [ -5.5343, 40.19882 ], [ -5.36886, 40.25469 ], [ -5.33602, 40.11586 ], [ -5.36966, 40.08199 ], [ -5.39745, 39.88735 ], [ -5.30138, 39.86945 ], [ -5.29496, 39.76172 ], [ -5.16925, 39.78919 ], [ -5.14467, 39.70114 ], [ -5.19173, 39.58967 ], [ -4.95255, 39.39504 ], [ -4.94078, 39.39516 ], [ -4.86788, 39.37464 ], [ -4.75541, 39.41576 ], [ -4.68773, 39.45034 ], [ -4.68341, 39.39868 ], [ -4.75121, 39.30657 ], [ -4.67532, 39.17854 ], [ -4.80681, 39.19192 ], [ -4.86542, 39.11614 ], [ -4.84461, 39.04849 ], [ -4.95414, 39.04885 ], [ -4.9284, 38.97316 ], [ -4.84684, 38.93684 ], [ -4.84111, 38.90772 ], [ -4.92449, 38.87392 ], [ -4.98344, 38.75409 ], [ -5.047, 38.72913 ], [ -5.1633, 38.70601 ], [ -5.56389, 38.43018 ], [ -5.56922, 38.3364 ], [ -5.52462, 38.22216 ], [ -5.58485, 38.13175 ], [ -5.71318, 38.08705 ], [ -5.73571, 38.11216 ], [ -5.69228, 38.16032 ], [ -5.70644, 38.18611 ], [ -5.8484, 38.16358 ], [ -5.91414, 38.11158 ], [ -5.95843, 38.00203 ], [ -6.09623, 37.98544 ], [ -6.18031, 37.94108 ], [ -6.31125, 37.98571 ], [ -6.3918, 38.05254 ], [ -6.47763, 38.01753 ], [ -6.57055, 38.02926 ], [ -6.62022, 38.08958 ], [ -6.75255, 38.09806 ], [ -6.80667, 38.12589 ], [ -6.8065, 38.17351 ], [ -6.93174, 38.20838 ], [ -7.10795, 38.18812 ], [ -7.30767, 38.44561 ], [ -7.30899, 38.52101 ], [ -7.2551, 38.61585 ], [ -7.2553, 38.71136 ], [ -7.20313, 38.75102 ], [ -7.04933, 38.869 ], [ -6.95998, 39.03072 ], [ -7.01137, 39.10087 ], [ -7.13486, 39.11305 ], [ -7.14807, 39.16975 ], [ -7.2372, 39.21356 ], [ -7.23147, 39.27843 ], [ -7.31274, 39.35386 ], [ -7.30886, 39.45926 ], [ -7.49702, 39.59373 ], [ -7.54293, 39.66281 ], [ -7.34395, 39.64354 ], [ -7.01762, 39.67892 ], [ -6.97474, 39.81308 ], [ -6.9105, 39.87328 ], [ -6.87336, 40.00757 ], [ -7.01875, 40.15868 ], [ -7.01399, 40.21306 ], [ -6.9513, 40.25745 ], [ -6.86514, 40.27069 ], [ -6.77174, 40.24218 ], [ -6.59286, 40.27262 ], [ -6.53513, 40.34072 ], [ -6.22156, 40.48251 ], [ -5.97971, 40.29835 ], [ -5.92499, 40.28829 ], [ -5.81097, 40.34586 ], [ -5.78421, 40.292 ], [ -5.7376, 40.29416 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES51", "NUTS_ID": "ES51", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cataluña", "geo": "ES51", "time_2018_MEAN": 83.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.44257, 42.60367 ], [ 1.44727, 42.46145 ], [ 1.46446, 42.43984 ], [ 1.53865, 42.43672 ], [ 1.60702, 42.46145 ], [ 1.7258, 42.5044 ], [ 1.73101, 42.4924 ], [ 1.917, 42.45094 ], [ 1.96613, 42.40816 ], [ 2.01912, 42.36202 ], [ 2.16646, 42.40399 ], [ 2.26776, 42.42533 ], [ 2.55687, 42.34308 ], [ 2.63217, 42.35249 ], [ 2.70622, 42.40926 ], [ 2.87506, 42.46154 ], [ 3.01351, 42.46688 ], [ 3.17502, 42.43518 ], [ 3.17421, 42.40816 ], [ 3.17947, 42.35945 ], [ 3.30202, 42.31273 ], [ 3.26624, 42.261 ], [ 3.16174, 42.25225 ], [ 3.12062, 42.20701 ], [ 3.12679, 42.14147 ], [ 3.20203, 42.05341 ], [ 3.21364, 41.95023 ], [ 3.19986, 41.90664 ], [ 2.77851, 41.64881 ], [ 2.28082, 41.46314 ], [ 2.16646, 41.35196 ], [ 2.10072, 41.28805 ], [ 1.64532, 41.19562 ], [ 0.97573, 41.03058 ], [ 0.92824, 40.98949 ], [ 0.71169, 40.80213 ], [ 0.86864, 40.72369 ], [ 0.86375, 40.69626 ], [ 0.75927, 40.6427 ], [ 0.60218, 40.61721 ], [ 0.51524, 40.52292 ], [ 0.39558, 40.5998 ], [ 0.29382, 40.62637 ], [ 0.27781, 40.68768 ], [ 0.17079, 40.73284 ], [ 0.26738, 40.82361 ], [ 0.25382, 40.89781 ], [ 0.28333, 40.9792 ], [ 0.22041, 41.07143 ], [ 0.2228, 41.12744 ], [ 0.29668, 41.17056 ], [ 0.38572, 41.27884 ], [ 0.33595, 41.40743 ], [ 0.35545, 41.48061 ], [ 0.44004, 41.55235 ], [ 0.42179, 41.59523 ], [ 0.35796, 41.60707 ], [ 0.33437, 41.67951 ], [ 0.59649, 41.87383 ], [ 0.59959, 41.91336 ], [ 0.56246, 41.93799 ], [ 0.65407, 42.01439 ], [ 0.73598, 42.27477 ], [ 0.74131, 42.38112 ], [ 0.72931, 42.40816 ], [ 0.70566, 42.46145 ], [ 0.75199, 42.5993 ], [ 0.66013, 42.69095 ], [ 0.67172, 42.79422 ], [ 0.67722, 42.84316 ], [ 0.85822, 42.82574 ], [ 0.92824, 42.81048 ], [ 1.00287, 42.79422 ], [ 1.07611, 42.77827 ], [ 1.16477, 42.71501 ], [ 1.25334, 42.71582 ], [ 1.34853, 42.7139 ], [ 1.44257, 42.60367 ] ] ], [ [ [ 1.9929, 42.49231 ], [ 1.99758, 42.43719 ], [ 1.94463, 42.45441 ], [ 1.95371, 42.48633 ], [ 1.9929, 42.49231 ] ] ], [ [ [ 0.69618, 40.57305 ], [ 0.61993, 40.54652 ], [ 0.60021, 40.56184 ], [ 0.68086, 40.60112 ], [ 0.69618, 40.57305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES52", "NUTS_ID": "ES52", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunitat Valenciana", "geo": "ES52", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.17079, 40.73284 ], [ 0.27781, 40.68768 ], [ 0.29382, 40.62637 ], [ 0.39558, 40.5998 ], [ 0.51524, 40.52292 ], [ 0.39044, 40.34134 ], [ 0.19757, 40.17215 ], [ 0.12378, 40.07168 ], [ 0.09692, 40.05608 ], [ 0.04927, 40.02841 ], [ -0.01614, 39.91017 ], [ -0.18847, 39.72195 ], [ -0.3196, 39.49531 ], [ -0.32765, 39.40382 ], [ -0.26797, 39.26762 ], [ -0.19621, 39.05554 ], [ -0.03762, 38.88641 ], [ 0.09692, 38.84073 ], [ 0.17313, 38.81484 ], [ 0.2215, 38.73925 ], [ 0.09692, 38.67638 ], [ -0.02601, 38.61435 ], [ -0.09109, 38.53309 ], [ -0.35061, 38.45489 ], [ -0.41048, 38.36174 ], [ -0.50022, 38.32917 ], [ -0.51612, 38.21007 ], [ -0.62747, 38.14428 ], [ -0.65291, 38.00802 ], [ -0.76214, 37.84701 ], [ -0.90286, 37.92957 ], [ -1.02451, 38.0899 ], [ -1.02971, 38.14015 ], [ -0.97434, 38.27121 ], [ -0.99455, 38.31804 ], [ -1.07249, 38.34845 ], [ -1.08292, 38.38038 ], [ -1.00772, 38.56868 ], [ -1.02687, 38.65551 ], [ -0.93145, 38.68542 ], [ -0.95169, 38.76724 ], [ -0.92888, 38.78384 ], [ -0.95675, 38.9343 ], [ -1.14036, 38.93317 ], [ -1.25788, 39.05125 ], [ -1.1756, 39.26762 ], [ -1.18075, 39.3077 ], [ -1.44125, 39.36471 ], [ -1.50515, 39.41801 ], [ -1.49739, 39.55845 ], [ -1.38581, 39.6765 ], [ -1.27485, 39.69091 ], [ -1.20851, 39.8341 ], [ -1.19654, 39.94295 ], [ -1.14236, 39.97186 ], [ -0.9865, 39.97712 ], [ -0.91504, 39.94085 ], [ -0.88694, 39.86005 ], [ -0.79764, 39.88108 ], [ -0.83772, 39.93001 ], [ -0.82917, 39.97489 ], [ -0.75487, 40.03781 ], [ -0.64002, 40.07142 ], [ -0.54327, 40.23918 ], [ -0.41424, 40.25162 ], [ -0.29042, 40.37193 ], [ -0.3355, 40.44009 ], [ -0.28364, 40.4781 ], [ -0.29471, 40.59377 ], [ -0.3611, 40.61731 ], [ -0.36065, 40.66838 ], [ -0.2549, 40.68447 ], [ -0.1763, 40.78375 ], [ 0.04533, 40.69983 ], [ 0.09692, 40.7134 ], [ 0.17079, 40.73284 ] ] ], [ [ [ -1.16515, 40.01011 ], [ -1.3678, 40.02083 ], [ -1.44883, 40.14536 ], [ -1.34961, 40.13502 ], [ -1.2935, 40.1885 ], [ -1.23776, 40.12156 ], [ -1.14758, 40.10984 ], [ -1.09102, 40.07139 ], [ -1.09588, 40.03643 ], [ -1.16515, 40.01011 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES53", "NUTS_ID": "ES53", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Illes Balears", "geo": "ES53", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.28746, 39.82237 ], [ 4.24593, 39.8161 ], [ 4.03367, 39.91633 ], [ 3.83578, 39.92952 ], [ 3.80273, 40.02083 ], [ 3.84663, 40.05271 ], [ 4.03367, 40.06324 ], [ 4.15182, 40.06132 ], [ 4.26094, 39.9886 ], [ 4.31205, 39.86573 ], [ 4.28746, 39.82237 ] ] ], [ [ [ 3.19538, 39.75764 ], [ 3.25308, 39.73521 ], [ 3.3571, 39.77795 ], [ 3.44631, 39.74306 ], [ 3.45571, 39.68509 ], [ 3.3005, 39.49724 ], [ 3.24078, 39.37652 ], [ 3.19538, 39.34764 ], [ 3.05259, 39.27279 ], [ 2.95298, 39.35213 ], [ 2.77395, 39.38429 ], [ 2.73467, 39.50713 ], [ 2.69156, 39.54369 ], [ 2.5955, 39.53976 ], [ 2.50529, 39.47683 ], [ 2.38453, 39.54171 ], [ 2.36475, 39.57891 ], [ 2.75385, 39.83851 ], [ 2.94372, 39.91024 ], [ 3.09966, 39.92051 ], [ 3.10697, 39.8754 ], [ 3.15269, 39.85613 ], [ 3.14235, 39.79339 ], [ 3.19538, 39.75764 ] ] ], [ [ [ 3.18868, 39.93442 ], [ 3.15404, 39.91607 ], [ 3.11458, 39.93201 ], [ 3.18647, 39.97158 ], [ 3.18868, 39.93442 ] ] ], [ [ [ 2.96683, 39.17102 ], [ 2.96142, 39.12094 ], [ 2.91167, 39.12361 ], [ 2.91911, 39.15773 ], [ 2.96683, 39.17102 ] ] ], [ [ [ 1.54013, 39.11483 ], [ 1.55619, 39.09304 ], [ 1.59193, 39.09532 ], [ 1.58738, 39.06246 ], [ 1.60534, 39.02869 ], [ 1.57748, 38.9907 ], [ 1.53265, 38.98172 ], [ 1.52553, 38.94627 ], [ 1.45636, 38.90343 ], [ 1.42261, 38.90487 ], [ 1.40411, 38.87748 ], [ 1.40393, 38.8356 ], [ 1.37204, 38.83475 ], [ 1.34435, 38.87085 ], [ 1.30282, 38.86367 ], [ 1.27321, 38.87931 ], [ 1.24894, 38.85846 ], [ 1.21545, 38.89939 ], [ 1.23616, 38.93812 ], [ 1.21737, 38.95835 ], [ 1.28942, 38.97303 ], [ 1.29286, 39.02839 ], [ 1.36311, 39.07328 ], [ 1.38071, 39.06569 ], [ 1.42515, 39.09102 ], [ 1.54013, 39.11483 ] ] ], [ [ [ 1.59119, 38.6814 ], [ 1.57025, 38.64387 ], [ 1.51633, 38.66776 ], [ 1.55862, 38.69565 ], [ 1.59119, 38.6814 ] ] ], [ [ [ 1.47017, 38.72221 ], [ 1.49032, 38.67984 ], [ 1.45113, 38.68492 ], [ 1.38841, 38.64363 ], [ 1.38288, 38.6884 ], [ 1.3833, 38.7186 ], [ 1.43723, 38.75113 ], [ 1.47017, 38.72221 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES61", "NUTS_ID": "ES61", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Andalucía", "geo": "ES61", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.26889, 38.34721 ], [ -4.24898, 38.39693 ], [ -3.93519, 38.36888 ], [ -3.76473, 38.41978 ], [ -3.61407, 38.39974 ], [ -3.56501, 38.44578 ], [ -3.45392, 38.40254 ], [ -3.34172, 38.47688 ], [ -3.16975, 38.44653 ], [ -3.14603, 38.44235 ], [ -3.06771, 38.4689 ], [ -3.01034, 38.4285 ], [ -2.95857, 38.46739 ], [ -2.86, 38.46508 ], [ -2.76207, 38.53278 ], [ -2.59162, 38.50331 ], [ -2.56445, 38.41787 ], [ -2.48805, 38.38609 ], [ -2.48187, 38.31392 ], [ -2.44233, 38.26832 ], [ -2.45232, 38.19099 ], [ -2.55127, 38.08412 ], [ -2.3416, 38.02602 ], [ -2.20763, 37.91659 ], [ -2.00551, 37.85908 ], [ -1.99239, 37.66411 ], [ -1.83124, 37.46014 ], [ -1.63003, 37.37518 ], [ -1.67314, 37.35531 ], [ -1.7106, 37.30348 ], [ -1.79997, 37.22383 ], [ -1.82136, 37.17866 ], [ -1.83124, 37.15237 ], [ -1.90823, 36.94751 ], [ -2.03377, 36.83028 ], [ -2.13553, 36.73526 ], [ -2.19624, 36.73127 ], [ -2.35343, 36.83774 ], [ -2.55176, 36.81644 ], [ -2.63589, 36.71405 ], [ -2.71159, 36.68379 ], [ -2.85353, 36.70328 ], [ -2.92159, 36.74389 ], [ -3.12869, 36.75089 ], [ -3.16975, 36.75 ], [ -3.28856, 36.74741 ], [ -3.43694, 36.69596 ], [ -3.61805, 36.74349 ], [ -3.77746, 36.73793 ], [ -4.40674, 36.71398 ], [ -4.51324, 36.59932 ], [ -4.65409, 36.50413 ], [ -4.93539, 36.49614 ], [ -5.17845, 36.40837 ], [ -5.2524, 36.31128 ], [ -5.33922, 36.15203 ], [ -5.35152, 36.15257 ], [ -5.41658, 36.16113 ], [ -5.45587, 36.06942 ], [ -5.59933, 36.01867 ], [ -5.79549, 36.08794 ], [ -5.91477, 36.17522 ], [ -6.03553, 36.19626 ], [ -6.22475, 36.41752 ], [ -6.21004, 36.49931 ], [ -6.24104, 36.56892 ], [ -6.37258, 36.63125 ], [ -6.41955, 36.69036 ], [ -6.42087, 36.74345 ], [ -6.34556, 36.79877 ], [ -6.39415, 36.81341 ], [ -6.46416, 36.92169 ], [ -6.58139, 37.01312 ], [ -6.97083, 37.17866 ], [ -7.03978, 37.20525 ], [ -7.13297, 37.20735 ], [ -7.28722, 37.19977 ], [ -7.35089, 37.17866 ], [ -7.36858, 37.17201 ], [ -7.40192, 37.17483 ], [ -7.45186, 37.42108 ], [ -7.51269, 37.52626 ], [ -7.50095, 37.6033 ], [ -7.4189, 37.74094 ], [ -7.29778, 37.85366 ], [ -7.25054, 37.97914 ], [ -7.1034, 38.03638 ], [ -7.01328, 38.02545 ], [ -6.93174, 38.20838 ], [ -6.8065, 38.17351 ], [ -6.80667, 38.12589 ], [ -6.75255, 38.09806 ], [ -6.62022, 38.08958 ], [ -6.57055, 38.02926 ], [ -6.47763, 38.01753 ], [ -6.3918, 38.05254 ], [ -6.31125, 37.98571 ], [ -6.18031, 37.94108 ], [ -6.09623, 37.98544 ], [ -5.95843, 38.00203 ], [ -5.91414, 38.11158 ], [ -5.8484, 38.16358 ], [ -5.70644, 38.18611 ], [ -5.69228, 38.16032 ], [ -5.73571, 38.11216 ], [ -5.71318, 38.08705 ], [ -5.58485, 38.13175 ], [ -5.52462, 38.22216 ], [ -5.56922, 38.3364 ], [ -5.56389, 38.43018 ], [ -5.1633, 38.70601 ], [ -5.047, 38.72913 ], [ -4.98235, 38.69085 ], [ -4.88583, 38.68103 ], [ -4.84238, 38.61054 ], [ -4.65366, 38.5379 ], [ -4.44706, 38.40523 ], [ -4.26889, 38.34721 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES62", "NUTS_ID": "ES62", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Región de Murcia", "geo": "ES62", "time_2018_MEAN": 82.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.65551 ], [ -1.00772, 38.56868 ], [ -1.08292, 38.38038 ], [ -1.07249, 38.34845 ], [ -0.99455, 38.31804 ], [ -0.97434, 38.27121 ], [ -1.02971, 38.14015 ], [ -1.02451, 38.0899 ], [ -0.90286, 37.92957 ], [ -0.76214, 37.84701 ], [ -0.85187, 37.72004 ], [ -0.81492, 37.67178 ], [ -0.71424, 37.62639 ], [ -0.72541, 37.60947 ], [ -0.91429, 37.56212 ], [ -1.06198, 37.5796 ], [ -1.14689, 37.54467 ], [ -1.21924, 37.57316 ], [ -1.32828, 37.55814 ], [ -1.49632, 37.43266 ], [ -1.63003, 37.37518 ], [ -1.83124, 37.46014 ], [ -1.99239, 37.66411 ], [ -2.00551, 37.85908 ], [ -2.20763, 37.91659 ], [ -2.3416, 38.02602 ], [ -2.20889, 38.20075 ], [ -2.05246, 38.29649 ], [ -2.03377, 38.2964 ], [ -1.92365, 38.29587 ], [ -1.83124, 38.33679 ], [ -1.74005, 38.37716 ], [ -1.67314, 38.32114 ], [ -1.58805, 38.31455 ], [ -1.48816, 38.37491 ], [ -1.49178, 38.54443 ], [ -1.39863, 38.68958 ], [ -1.33165, 38.686 ], [ -1.17237, 38.75047 ], [ -1.02687, 38.65551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES63", "NUTS_ID": "ES63", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Ceuta", "geo": "ES63", "time_2018_MEAN": 81.433333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.33348, 35.88552 ], [ -5.34337, 35.87088 ], [ -5.38194, 35.91302 ], [ -5.36052, 35.91346 ], [ -5.33949, 35.89864 ], [ -5.33348, 35.88552 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES64", "NUTS_ID": "ES64", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Ciudad de Melilla", "geo": "ES64", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.92812, 35.27308 ], [ -2.95061, 35.26987 ], [ -2.97009, 35.28943 ], [ -2.95249, 35.31977 ], [ -2.92812, 35.27308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH02", "NUTS_ID": "CH02", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Espace Mittelland", "geo": "CH02", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.32647, 47.43985 ], [ 7.37568, 47.41408 ], [ 7.43689, 47.37997 ], [ 7.57762, 47.42015 ], [ 7.64907, 47.48421 ], [ 7.6902, 47.45738 ], [ 7.6557, 47.38231 ], [ 7.77331, 47.34522 ], [ 7.92514, 47.40937 ], [ 7.95685, 47.4552 ], [ 8.0163, 47.39492 ], [ 8.01164, 47.3546 ], [ 7.96553, 47.32448 ], [ 7.89839, 47.32946 ], [ 7.82473, 47.26564 ], [ 7.83869, 47.23441 ], [ 7.88222, 47.15793 ], [ 7.87656, 47.04938 ], [ 7.94947, 46.99266 ], [ 7.88091, 46.91831 ], [ 7.87199, 46.85421 ], [ 7.9814, 46.78169 ], [ 8.04909, 46.78801 ], [ 8.2805, 46.75842 ], [ 8.36889, 46.78798 ], [ 8.39523, 46.77154 ], [ 8.44896, 46.76452 ], [ 8.41041, 46.65302 ], [ 8.34583, 46.57027 ], [ 8.25943, 46.53181 ], [ 8.01922, 46.55706 ], [ 7.93123, 46.49677 ], [ 7.7197, 46.42122 ], [ 7.63174, 46.43729 ], [ 7.51806, 46.37692 ], [ 7.28454, 46.3608 ], [ 7.22146, 46.32921 ], [ 7.20371, 46.42871 ], [ 7.23702, 46.5538 ], [ 6.99824, 46.44519 ], [ 6.93893, 46.50229 ], [ 6.83033, 46.51154 ], [ 6.87164, 46.56132 ], [ 6.81046, 46.59413 ], [ 6.8045, 46.63935 ], [ 6.92377, 46.7276 ], [ 6.98783, 46.843 ], [ 6.89621, 46.92533 ], [ 6.86623, 46.90929 ], [ 6.91991, 46.85386 ], [ 6.86461, 46.73496 ], [ 6.75637, 46.81924 ], [ 6.78005, 46.85264 ], [ 6.70705, 46.92867 ], [ 6.46001, 46.85155 ], [ 6.45872, 46.94665 ], [ 6.63738, 47.00693 ], [ 6.85891, 47.16529 ], [ 7.01616, 47.33375 ], [ 6.91511, 47.36798 ], [ 6.93919, 47.4337 ], [ 7.02392, 47.50414 ], [ 7.13035, 47.50304 ], [ 7.1907, 47.44275 ], [ 7.32647, 47.43985 ] ], [ [ 6.9279, 46.95317 ], [ 7.04579, 46.86573 ], [ 7.07667, 46.90985 ], [ 7.05185, 46.97711 ], [ 7.03997, 46.97988 ], [ 7.00229, 46.98672 ], [ 6.9279, 46.95317 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.38089, 47.43189 ], [ 7.42114, 47.44639 ], [ 7.42401, 47.44418 ], [ 7.42717, 47.44382 ], [ 7.43779, 47.44625 ], [ 7.43887, 47.44627 ], [ 7.44163, 47.44696 ], [ 7.44404, 47.44847 ], [ 7.44585, 47.45067 ], [ 7.44688, 47.45332 ], [ 7.44703, 47.45616 ], [ 7.44628, 47.45891 ], [ 7.44502, 47.46172 ], [ 7.51091, 47.50258 ], [ 7.52094, 47.46234 ], [ 7.43147, 47.41425 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 6.73051, 46.72908 ], [ 6.77607, 46.76563 ], [ 6.79728, 46.73591 ], [ 6.75806, 46.70336 ], [ 6.73051, 46.72908 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH03", "NUTS_ID": "CH03", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Nordwestschweiz", "geo": "CH03", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.37568, 47.41408 ], [ 7.43147, 47.41425 ], [ 7.52094, 47.46234 ], [ 7.51091, 47.50258 ], [ 7.55516, 47.56456 ], [ 7.58904, 47.58988 ], [ 7.6341, 47.56111 ], [ 7.71378, 47.5394 ], [ 7.89411, 47.58637 ], [ 7.92276, 47.55494 ], [ 8.03864, 47.55345 ], [ 8.22046, 47.61682 ], [ 8.42643, 47.56755 ], [ 8.36475, 47.49145 ], [ 8.40894, 47.3546 ], [ 8.41072, 47.24804 ], [ 8.41213, 47.14074 ], [ 8.35514, 47.15872 ], [ 8.26694, 47.28089 ], [ 8.19078, 47.22792 ], [ 7.97703, 47.27604 ], [ 7.93658, 47.24292 ], [ 7.83869, 47.23441 ], [ 7.82473, 47.26564 ], [ 7.89839, 47.32946 ], [ 7.96553, 47.32448 ], [ 8.01164, 47.3546 ], [ 8.0163, 47.39492 ], [ 7.95685, 47.4552 ], [ 7.92514, 47.40937 ], [ 7.77331, 47.34522 ], [ 7.6557, 47.38231 ], [ 7.6902, 47.45738 ], [ 7.64907, 47.48421 ], [ 7.57762, 47.42015 ], [ 7.43689, 47.37997 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.37568, 47.41408 ], [ 7.32647, 47.43985 ], [ 7.3374, 47.44088 ], [ 7.35275, 47.43441 ], [ 7.38089, 47.43189 ], [ 7.37568, 47.41408 ] ] ], [ [ [ 7.42114, 47.44639 ], [ 7.44502, 47.46172 ], [ 7.44628, 47.45891 ], [ 7.44703, 47.45616 ], [ 7.44688, 47.45332 ], [ 7.44585, 47.45067 ], [ 7.44404, 47.44847 ], [ 7.44163, 47.44696 ], [ 7.43887, 47.44627 ], [ 7.43779, 47.44625 ], [ 7.42717, 47.44382 ], [ 7.42401, 47.44418 ], [ 7.42114, 47.44639 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH04", "NUTS_ID": "CH04", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zürich", "geo": "CH04", "time_2018_MEAN": 83.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.67046, 47.68486 ], [ 8.77269, 47.64065 ], [ 8.75868, 47.59753 ], [ 8.87308, 47.52559 ], [ 8.94364, 47.37584 ], [ 8.96125, 47.3546 ], [ 8.97379, 47.31788 ], [ 8.92653, 47.26531 ], [ 8.82013, 47.24592 ], [ 8.80778, 47.22056 ], [ 8.7152, 47.20188 ], [ 8.69248, 47.16362 ], [ 8.57712, 47.21523 ], [ 8.44901, 47.21746 ], [ 8.41072, 47.24804 ], [ 8.40894, 47.3546 ], [ 8.36475, 47.49145 ], [ 8.42643, 47.56755 ], [ 8.51855, 47.62564 ], [ 8.56284, 47.59943 ], [ 8.53842, 47.58264 ], [ 8.5541, 47.55717 ], [ 8.5956, 47.60554 ], [ 8.60637, 47.66901 ], [ 8.66335, 47.68589 ], [ 8.67046, 47.68486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH05", "NUTS_ID": "CH05", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ostschweiz", "geo": "CH05", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.87489, 47.65467 ], [ 9.03586, 47.68395 ], [ 9.18219, 47.65589 ], [ 9.37943, 47.62392 ], [ 9.4956, 47.55145 ], [ 9.55872, 47.54189 ], [ 9.57831, 47.48207 ], [ 9.65132, 47.42942 ], [ 9.6534, 47.37581 ], [ 9.60942, 47.3546 ], [ 9.53075, 47.27058 ], [ 9.49274, 47.18428 ], [ 9.51142, 47.10462 ], [ 9.47605, 47.0518 ], [ 9.60708, 47.06077 ], [ 9.87096, 47.01375 ], [ 9.88113, 46.94158 ], [ 9.95493, 46.9149 ], [ 10.08792, 46.84912 ], [ 10.14497, 46.85101 ], [ 10.21878, 46.86756 ], [ 10.24561, 46.92156 ], [ 10.37632, 46.99474 ], [ 10.47849, 46.93559 ], [ 10.46965, 46.85491 ], [ 10.39002, 46.67877 ], [ 10.47875, 46.61244 ], [ 10.4528, 46.53068 ], [ 10.30603, 46.55152 ], [ 10.2317, 46.62825 ], [ 10.10638, 46.60162 ], [ 10.05572, 46.52886 ], [ 10.04583, 46.46002 ], [ 10.15606, 46.40869 ], [ 10.11438, 46.34662 ], [ 10.1666, 46.26722 ], [ 10.14173, 46.23475 ], [ 10.05468, 46.23616 ], [ 9.95493, 46.37855 ], [ 9.61729, 46.29211 ], [ 9.53832, 46.31503 ], [ 9.46774, 46.38015 ], [ 9.456, 46.49558 ], [ 9.41174, 46.47644 ], [ 9.30228, 46.49682 ], [ 9.25929, 46.44643 ], [ 9.29207, 46.32998 ], [ 9.24853, 46.23377 ], [ 9.15938, 46.1696 ], [ 9.09579, 46.21224 ], [ 9.06332, 46.28434 ], [ 9.09793, 46.42067 ], [ 9.02669, 46.51693 ], [ 9.02672, 46.59578 ], [ 8.93377, 46.61836 ], [ 8.84105, 46.56813 ], [ 8.67873, 46.57919 ], [ 8.66171, 46.63739 ], [ 8.68461, 46.6909 ], [ 8.81407, 46.74646 ], [ 8.87717, 46.81312 ], [ 8.94608, 46.87868 ], [ 8.93508, 46.92021 ], [ 8.96169, 46.95605 ], [ 8.90421, 47.02536 ], [ 9.00457, 47.17315 ], [ 8.94111, 47.21317 ], [ 8.80778, 47.22056 ], [ 8.82013, 47.24592 ], [ 8.92653, 47.26531 ], [ 8.97379, 47.31788 ], [ 8.96125, 47.3546 ], [ 8.94364, 47.37584 ], [ 8.87308, 47.52559 ], [ 8.75868, 47.59753 ], [ 8.77269, 47.64065 ], [ 8.67046, 47.68486 ], [ 8.79571, 47.6756 ], [ 8.78152, 47.71253 ], [ 8.81439, 47.72001 ], [ 8.87489, 47.65467 ] ] ], [ [ [ 8.60637, 47.66901 ], [ 8.50282, 47.64896 ], [ 8.42477, 47.67726 ], [ 8.41842, 47.70026 ], [ 8.51012, 47.77619 ], [ 8.61383, 47.80108 ], [ 8.70534, 47.73718 ], [ 8.70673, 47.71025 ], [ 8.66335, 47.68589 ], [ 8.60637, 47.66901 ] ] ], [ [ [ 8.5956, 47.60554 ], [ 8.5541, 47.55717 ], [ 8.53842, 47.58264 ], [ 8.56284, 47.59943 ], [ 8.5956, 47.60554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH06", "NUTS_ID": "CH06", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Zentralschweiz", "geo": "CH06", "time_2018_MEAN": 84.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.41213, 47.14074 ], [ 8.41072, 47.24804 ], [ 8.44901, 47.21746 ], [ 8.57712, 47.21523 ], [ 8.69248, 47.16362 ], [ 8.7152, 47.20188 ], [ 8.80778, 47.22056 ], [ 8.94111, 47.21317 ], [ 9.00457, 47.17315 ], [ 8.90421, 47.02536 ], [ 8.96169, 46.95605 ], [ 8.93508, 46.92021 ], [ 8.94608, 46.87868 ], [ 8.87717, 46.81312 ], [ 8.81407, 46.74646 ], [ 8.68461, 46.6909 ], [ 8.66171, 46.63739 ], [ 8.67873, 46.57919 ], [ 8.54206, 46.58029 ], [ 8.47767, 46.5276 ], [ 8.41851, 46.56586 ], [ 8.41041, 46.65302 ], [ 8.44896, 46.76452 ], [ 8.39523, 46.77154 ], [ 8.36889, 46.78798 ], [ 8.2805, 46.75842 ], [ 8.04909, 46.78801 ], [ 7.9814, 46.78169 ], [ 7.87199, 46.85421 ], [ 7.88091, 46.91831 ], [ 7.94947, 46.99266 ], [ 7.87656, 47.04938 ], [ 7.88222, 47.15793 ], [ 7.83869, 47.23441 ], [ 7.93658, 47.24292 ], [ 7.97703, 47.27604 ], [ 8.19078, 47.22792 ], [ 8.26694, 47.28089 ], [ 8.35514, 47.15872 ], [ 8.41213, 47.14074 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CH07", "NUTS_ID": "CH07", "LEVL_CODE": 2, "CNTR_CODE": "CH", "NUTS_NAME": "Ticino", "geo": "CH07", "time_2018_MEAN": 85.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15938, 46.1696 ], [ 9.01672, 46.03663 ], [ 9.00907, 45.95243 ], [ 9.07547, 45.896 ], [ 9.04023, 45.84071 ], [ 8.91215, 45.83044 ], [ 8.93467, 45.87199 ], [ 8.88749, 45.95363 ], [ 8.79514, 45.99765 ], [ 8.83901, 46.07238 ], [ 8.7454, 46.11219 ], [ 8.71394, 46.09727 ], [ 8.61837, 46.12418 ], [ 8.46507, 46.24314 ], [ 8.43661, 46.29591 ], [ 8.46204, 46.43512 ], [ 8.38472, 46.45216 ], [ 8.39953, 46.48872 ], [ 8.47767, 46.5276 ], [ 8.54206, 46.58029 ], [ 8.67873, 46.57919 ], [ 8.84105, 46.56813 ], [ 8.93377, 46.61836 ], [ 9.02672, 46.59578 ], [ 9.02669, 46.51693 ], [ 9.09793, 46.42067 ], [ 9.06332, 46.28434 ], [ 9.09579, 46.21224 ], [ 9.15938, 46.1696 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CY00", "NUTS_ID": "CY00", "LEVL_CODE": 2, "CNTR_CODE": "CY", "NUTS_NAME": "Κύπρος", "geo": "CY00", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.27423, 35.06608 ], [ 32.29189, 35.09423 ], [ 32.36846, 35.04816 ], [ 32.43115, 35.05077 ], [ 32.5469, 35.16448 ], [ 32.67614, 35.19029 ], [ 32.82719, 35.15094 ], [ 32.88476, 35.17788 ], [ 32.92897, 35.26686 ], [ 32.94101, 35.38939 ], [ 33.33203, 35.34043 ], [ 33.66134, 35.36621 ], [ 33.97127, 35.44866 ], [ 34.21796, 35.56496 ], [ 34.38663, 35.60033 ], [ 34.39352, 35.5841 ], [ 33.93134, 35.27047 ], [ 33.9236, 35.16987 ], [ 34.04057, 35.02608 ], [ 34.0453, 34.98006 ], [ 33.85409, 34.95412 ], [ 33.69347, 34.96193 ], [ 33.5811, 34.81974 ], [ 33.3343, 34.72931 ], [ 33.06636, 34.68046 ], [ 33.022, 34.64693 ], [ 32.98713, 34.57181 ], [ 32.94009, 34.58062 ], [ 32.86627, 34.65791 ], [ 32.70516, 34.6451 ], [ 32.5954, 34.67941 ], [ 32.41203, 34.76606 ], [ 32.32754, 34.88968 ], [ 32.27423, 35.06608 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ01", "NUTS_ID": "CZ01", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Praha", "geo": "CZ01", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.262, 50.05158 ], [ 14.27481, 50.083 ], [ 14.28299, 50.11769 ], [ 14.51121, 50.17339 ], [ 14.70503, 50.083 ], [ 14.64563, 50.00336 ], [ 14.53164, 50.00736 ], [ 14.37188, 49.94542 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ02", "NUTS_ID": "CZ02", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Střední Čechy", "geo": "CZ02", "time_2018_MEAN": 78.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.14677, 50.52294 ], [ 15.12779, 50.48124 ], [ 15.15282, 50.41353 ], [ 15.11942, 50.36125 ], [ 15.22747, 50.29518 ], [ 15.36563, 50.28583 ], [ 15.38861, 50.20299 ], [ 15.37081, 50.15348 ], [ 15.43759, 50.10986 ], [ 15.40727, 50.083 ], [ 15.3885, 50.02915 ], [ 15.52745, 49.95184 ], [ 15.49695, 49.86118 ], [ 15.41449, 49.79887 ], [ 15.22916, 49.74858 ], [ 15.1859, 49.69184 ], [ 15.23441, 49.65258 ], [ 15.23067, 49.62609 ], [ 15.14804, 49.59751 ], [ 14.98845, 49.5998 ], [ 14.93202, 49.5491 ], [ 14.76986, 49.61121 ], [ 14.64062, 49.51788 ], [ 14.25529, 49.56328 ], [ 14.1101, 49.53189 ], [ 14.04414, 49.55621 ], [ 13.93269, 49.50843 ], [ 13.76559, 49.51399 ], [ 13.74946, 49.62046 ], [ 13.83097, 49.70441 ], [ 13.79705, 49.79628 ], [ 13.81628, 49.91586 ], [ 13.65325, 49.99572 ], [ 13.42508, 50.04423 ], [ 13.40793, 50.083 ], [ 13.52259, 50.1812 ], [ 13.66142, 50.22903 ], [ 13.86034, 50.25168 ], [ 14.01044, 50.34225 ], [ 14.24205, 50.33436 ], [ 14.35565, 50.36115 ], [ 14.37167, 50.42273 ], [ 14.46037, 50.45443 ], [ 14.48649, 50.50503 ], [ 14.60668, 50.47891 ], [ 14.69357, 50.49371 ], [ 14.76007, 50.54964 ], [ 14.8223, 50.54563 ], [ 14.92951, 50.60379 ], [ 15.00462, 50.59625 ], [ 15.14677, 50.52294 ] ], [ [ 14.262, 50.05158 ], [ 14.37188, 49.94542 ], [ 14.53164, 50.00736 ], [ 14.64563, 50.00336 ], [ 14.70503, 50.083 ], [ 14.51121, 50.17339 ], [ 14.28299, 50.11769 ], [ 14.27481, 50.083 ], [ 14.262, 50.05158 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ03", "NUTS_ID": "CZ03", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihozápad", "geo": "CZ03", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.76559, 49.51399 ], [ 13.93269, 49.50843 ], [ 14.04414, 49.55621 ], [ 14.1101, 49.53189 ], [ 14.25529, 49.56328 ], [ 14.64062, 49.51788 ], [ 14.76986, 49.61121 ], [ 14.93202, 49.5491 ], [ 14.8968, 49.38533 ], [ 14.92437, 49.31878 ], [ 15.09462, 49.26785 ], [ 15.15001, 49.22261 ], [ 15.33299, 49.21172 ], [ 15.36141, 49.1544 ], [ 15.41354, 49.12951 ], [ 15.56155, 49.12544 ], [ 15.58712, 49.08468 ], [ 15.51707, 49.00026 ], [ 15.58676, 48.94716 ], [ 15.54245, 48.9077 ], [ 15.3609, 48.97949 ], [ 15.19002, 48.95116 ], [ 15.12428, 48.99643 ], [ 15.00719, 49.01231 ], [ 14.96601, 48.77268 ], [ 14.81749, 48.77233 ], [ 14.73299, 48.6874 ], [ 14.69101, 48.5843 ], [ 14.47196, 48.63605 ], [ 14.33415, 48.55944 ], [ 14.09193, 48.59421 ], [ 14.02562, 48.6367 ], [ 14.04195, 48.66021 ], [ 14.00759, 48.7002 ], [ 13.83951, 48.7716 ], [ 13.73596, 48.8768 ], [ 13.67285, 48.8876 ], [ 13.55158, 48.96779 ], [ 13.49318, 48.95058 ], [ 13.41665, 48.98004 ], [ 13.3763, 49.06482 ], [ 13.19894, 49.13117 ], [ 13.17091, 49.17358 ], [ 13.01076, 49.30647 ], [ 12.93187, 49.34404 ], [ 12.79174, 49.34986 ], [ 12.63376, 49.47619 ], [ 12.63599, 49.51865 ], [ 12.59378, 49.54219 ], [ 12.51586, 49.67998 ], [ 12.40152, 49.75837 ], [ 12.46346, 49.78847 ], [ 12.55099, 49.90509 ], [ 12.93067, 49.93196 ], [ 13.08984, 50.0228 ], [ 13.22792, 50.0164 ], [ 13.30137, 50.09964 ], [ 13.40793, 50.083 ], [ 13.42508, 50.04423 ], [ 13.65325, 49.99572 ], [ 13.81628, 49.91586 ], [ 13.79705, 49.79628 ], [ 13.83097, 49.70441 ], [ 13.74946, 49.62046 ], [ 13.76559, 49.51399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ04", "NUTS_ID": "CZ04", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severozápad", "geo": "CZ04", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.31787, 51.0547 ], [ 14.41509, 51.02507 ], [ 14.49122, 51.04353 ], [ 14.58915, 50.98779 ], [ 14.57442, 50.92402 ], [ 14.63815, 50.92261 ], [ 14.6188, 50.8578 ], [ 14.54805, 50.80172 ], [ 14.45854, 50.80059 ], [ 14.35466, 50.66558 ], [ 14.48649, 50.50503 ], [ 14.46037, 50.45443 ], [ 14.37167, 50.42273 ], [ 14.35565, 50.36115 ], [ 14.24205, 50.33436 ], [ 14.01044, 50.34225 ], [ 13.86034, 50.25168 ], [ 13.66142, 50.22903 ], [ 13.52259, 50.1812 ], [ 13.40793, 50.083 ], [ 13.30137, 50.09964 ], [ 13.22792, 50.0164 ], [ 13.08984, 50.0228 ], [ 12.93067, 49.93196 ], [ 12.55099, 49.90509 ], [ 12.49203, 49.9363 ], [ 12.4815, 49.97546 ], [ 12.2608, 50.05816 ], [ 12.26126, 50.083 ], [ 12.20652, 50.11358 ], [ 12.20444, 50.17132 ], [ 12.16068, 50.21985 ], [ 12.11139, 50.24552 ], [ 12.12728, 50.28509 ], [ 12.1009, 50.31803 ], [ 12.17959, 50.31439 ], [ 12.32022, 50.17595 ], [ 12.33896, 50.24545 ], [ 12.40941, 50.32169 ], [ 12.58378, 50.40708 ], [ 12.70309, 50.4061 ], [ 12.82138, 50.45316 ], [ 12.94814, 50.40431 ], [ 13.04352, 50.50481 ], [ 13.18255, 50.50653 ], [ 13.25285, 50.58418 ], [ 13.30723, 50.58188 ], [ 13.3872, 50.63493 ], [ 13.45312, 50.60794 ], [ 13.50185, 50.63364 ], [ 13.54118, 50.70561 ], [ 13.65217, 50.73036 ], [ 13.85298, 50.73153 ], [ 13.98214, 50.81161 ], [ 14.37591, 50.90015 ], [ 14.38816, 50.92519 ], [ 14.26954, 50.99315 ], [ 14.31787, 51.0547 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ05", "NUTS_ID": "CZ05", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Severovýchod", "geo": "CZ05", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.53527, 50.77938 ], [ 15.7617, 50.74314 ], [ 15.81561, 50.74529 ], [ 15.87122, 50.67712 ], [ 15.98312, 50.6816 ], [ 16.02025, 50.60662 ], [ 16.10732, 50.66207 ], [ 16.19205, 50.63259 ], [ 16.24667, 50.66539 ], [ 16.33349, 50.65261 ], [ 16.4246, 50.60144 ], [ 16.38656, 50.52307 ], [ 16.21165, 50.42699 ], [ 16.45108, 50.3063 ], [ 16.54834, 50.22065 ], [ 16.58029, 50.14279 ], [ 16.70579, 50.10279 ], [ 16.86327, 50.19812 ], [ 16.8182, 50.083 ], [ 16.80197, 50.03446 ], [ 16.7217, 49.98829 ], [ 16.76048, 49.89539 ], [ 16.74381, 49.83178 ], [ 16.8408, 49.70448 ], [ 16.8042, 49.59881 ], [ 16.57054, 49.62482 ], [ 16.39363, 49.58061 ], [ 16.22831, 49.66323 ], [ 16.00662, 49.72837 ], [ 15.94651, 49.69343 ], [ 15.89004, 49.69992 ], [ 15.7617, 49.77942 ], [ 15.49695, 49.86118 ], [ 15.52745, 49.95184 ], [ 15.3885, 50.02915 ], [ 15.40727, 50.083 ], [ 15.43759, 50.10986 ], [ 15.37081, 50.15348 ], [ 15.38861, 50.20299 ], [ 15.36563, 50.28583 ], [ 15.22747, 50.29518 ], [ 15.11942, 50.36125 ], [ 15.15282, 50.41353 ], [ 15.12779, 50.48124 ], [ 15.14677, 50.52294 ], [ 15.00462, 50.59625 ], [ 14.92951, 50.60379 ], [ 14.8223, 50.54563 ], [ 14.76007, 50.54964 ], [ 14.69357, 50.49371 ], [ 14.60668, 50.47891 ], [ 14.48649, 50.50503 ], [ 14.35466, 50.66558 ], [ 14.45854, 50.80059 ], [ 14.54805, 50.80172 ], [ 14.6188, 50.8578 ], [ 14.76856, 50.82354 ], [ 14.82336, 50.87055 ], [ 14.98793, 50.87067 ], [ 15.00915, 50.9545 ], [ 14.98234, 50.99426 ], [ 15.01273, 51.01559 ], [ 15.16515, 51.00906 ], [ 15.27289, 50.9679 ], [ 15.28345, 50.89892 ], [ 15.38167, 50.78472 ], [ 15.44958, 50.80368 ], [ 15.53527, 50.77938 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "CZ06", "NUTS_ID": "CZ06", "LEVL_CODE": 2, "CNTR_CODE": "CZ", "NUTS_NAME": "Jihovýchod", "geo": "CZ06", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.39363, 49.58061 ], [ 16.57054, 49.62482 ], [ 16.8042, 49.59881 ], [ 16.75684, 49.56073 ], [ 16.79051, 49.52538 ], [ 16.81199, 49.40748 ], [ 16.8749, 49.39599 ], [ 16.90383, 49.42641 ], [ 16.88862, 49.48026 ], [ 16.93738, 49.49135 ], [ 17.03317, 49.3687 ], [ 17.11644, 49.33075 ], [ 17.1599, 49.27506 ], [ 17.14431, 49.22638 ], [ 17.18084, 49.15473 ], [ 17.14911, 49.09179 ], [ 17.39812, 48.97071 ], [ 17.52516, 48.94953 ], [ 17.64693, 48.85427 ], [ 17.54748, 48.81875 ], [ 17.45377, 48.83915 ], [ 17.39673, 48.81335 ], [ 17.1852, 48.86603 ], [ 17.04025, 48.75678 ], [ 16.94028, 48.61725 ], [ 16.88406, 48.7101 ], [ 16.70843, 48.73429 ], [ 16.56345, 48.80127 ], [ 16.47544, 48.80063 ], [ 16.3945, 48.74438 ], [ 16.30679, 48.73353 ], [ 16.07489, 48.75601 ], [ 15.84752, 48.86067 ], [ 15.75363, 48.85218 ], [ 15.54245, 48.9077 ], [ 15.58676, 48.94716 ], [ 15.51707, 49.00026 ], [ 15.58712, 49.08468 ], [ 15.56155, 49.12544 ], [ 15.41354, 49.12951 ], [ 15.36141, 49.1544 ], [ 15.33299, 49.21172 ], [ 15.15001, 49.22261 ], [ 15.09462, 49.26785 ], [ 14.92437, 49.31878 ], [ 14.8968, 49.38533 ], [ 14.93202, 49.5491 ], [ 14.98845, 49.5998 ], [ 15.14804, 49.59751 ], [ 15.23067, 49.62609 ], [ 15.23441, 49.65258 ], [ 15.1859, 49.69184 ], [ 15.22916, 49.74858 ], [ 15.41449, 49.79887 ], [ 15.49695, 49.86118 ], [ 15.7617, 49.77942 ], [ 15.89004, 49.69992 ], [ 15.94651, 49.69343 ], [ 16.00662, 49.72837 ], [ 16.22831, 49.66323 ], [ 16.39363, 49.58061 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE40", "NUTS_ID": "DE40", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Brandenburg", "geo": "DE40", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.41216, 53.32964 ], [ 14.41851, 53.3124 ], [ 14.43838, 53.25843 ], [ 14.37608, 53.19026 ], [ 14.35522, 53.06748 ], [ 14.14366, 52.96137 ], [ 14.15669, 52.89559 ], [ 14.1393, 52.83339 ], [ 14.22302, 52.81169 ], [ 14.43644, 52.6799 ], [ 14.56506, 52.6245 ], [ 14.62516, 52.57624 ], [ 14.62109, 52.48798 ], [ 14.53436, 52.39501 ], [ 14.60089, 52.27205 ], [ 14.70339, 52.24075 ], [ 14.6854, 52.1239 ], [ 14.75523, 52.07002 ], [ 14.71672, 52.00119 ], [ 14.70106, 51.91786 ], [ 14.59998, 51.82596 ], [ 14.75204, 51.66326 ], [ 14.7592, 51.61396 ], [ 14.72986, 51.58178 ], [ 14.66003, 51.55265 ], [ 14.56367, 51.57376 ], [ 14.44777, 51.54207 ], [ 14.32836, 51.51954 ], [ 14.16332, 51.54104 ], [ 14.10794, 51.51416 ], [ 14.00175, 51.38452 ], [ 13.83531, 51.37679 ], [ 13.69125, 51.37401 ], [ 13.54719, 51.37859 ], [ 13.40816, 51.44277 ], [ 13.26468, 51.39298 ], [ 13.21015, 51.40474 ], [ 13.19302, 51.54223 ], [ 13.14039, 51.6038 ], [ 13.05103, 51.64768 ], [ 13.16444, 51.70612 ], [ 13.15091, 51.85961 ], [ 12.76978, 51.97927 ], [ 12.66408, 52.00687 ], [ 12.5535, 51.98541 ], [ 12.37612, 52.04512 ], [ 12.27672, 52.10402 ], [ 12.22917, 52.16814 ], [ 12.31718, 52.4541 ], [ 12.25936, 52.50711 ], [ 12.17156, 52.50634 ], [ 12.17603, 52.61372 ], [ 12.23414, 52.64766 ], [ 12.21436, 52.76551 ], [ 12.2492, 52.79186 ], [ 12.25129, 52.81169 ], [ 12.21959, 52.86161 ], [ 12.14009, 52.86345 ], [ 12.12681, 52.8902 ], [ 11.86911, 52.9028 ], [ 11.82421, 52.94981 ], [ 11.59778, 53.03593 ], [ 11.45163, 53.07273 ], [ 11.33618, 53.06189 ], [ 11.26573, 53.12198 ], [ 11.51056, 53.13092 ], [ 11.609, 53.22752 ], [ 11.8222, 53.23347 ], [ 12.01513, 53.3124 ], [ 12.05913, 53.35495 ], [ 12.3251, 53.3213 ], [ 12.33175, 53.31801 ], [ 12.45787, 53.2568 ], [ 12.65448, 53.24306 ], [ 12.98468, 53.16499 ], [ 13.13895, 53.24522 ], [ 13.2414, 53.2324 ], [ 13.29253, 53.26938 ], [ 13.40103, 53.26032 ], [ 13.50018, 53.3124 ], [ 13.56139, 53.3959 ], [ 13.71007, 53.47906 ], [ 13.79514, 53.48336 ], [ 13.79932, 53.53974 ], [ 13.93081, 53.42751 ], [ 14.23352, 53.41656 ], [ 14.22238, 53.36515 ], [ 14.16665, 53.3124 ], [ 14.14539, 53.26946 ], [ 14.2235, 53.26103 ], [ 14.37164, 53.3124 ], [ 14.41216, 53.32964 ] ], [ [ 13.1537, 52.50182 ], [ 13.11014, 52.43252 ], [ 13.1659, 52.39428 ], [ 13.2288, 52.41586 ], [ 13.31193, 52.39919 ], [ 13.42099, 52.37625 ], [ 13.44791, 52.41434 ], [ 13.6567, 52.35054 ], [ 13.69974, 52.37788 ], [ 13.73542, 52.43866 ], [ 13.66698, 52.47417 ], [ 13.61083, 52.54424 ], [ 13.51237, 52.5963 ], [ 13.50153, 52.65057 ], [ 13.39854, 52.64819 ], [ 13.33408, 52.62895 ], [ 13.28774, 52.65365 ], [ 13.16426, 52.5989 ], [ 13.12747, 52.52703 ], [ 13.1537, 52.50182 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL53", "NUTS_ID": "EL53", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Μακεδονία", "geo": "EL53", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.82179, 40.69669 ], [ 21.90601, 40.68209 ], [ 21.8876, 40.61676 ], [ 21.93823, 40.49239 ], [ 22.09479, 40.42599 ], [ 22.14009, 40.32396 ], [ 22.18382, 40.30228 ], [ 22.1157, 40.19025 ], [ 22.07547, 40.11751 ], [ 21.89937, 39.96247 ], [ 21.91769, 39.85205 ], [ 21.57168, 39.89234 ], [ 21.51838, 39.89854 ], [ 21.4428, 39.89251 ], [ 21.37755, 39.83508 ], [ 21.2956, 39.85746 ], [ 21.13539, 39.88738 ], [ 21.10115, 39.89377 ], [ 21.06185, 39.97741 ], [ 21.06857, 40.04381 ], [ 20.98053, 40.11332 ], [ 21.00401, 40.15407 ], [ 20.86795, 40.36174 ], [ 20.7785, 40.34879 ], [ 20.7973, 40.42612 ], [ 20.85478, 40.47491 ], [ 20.94903, 40.47669 ], [ 21.05607, 40.6167 ], [ 21.04728, 40.67769 ], [ 20.9714, 40.76523 ], [ 20.9802, 40.85566 ], [ 21.13539, 40.87039 ], [ 21.20943, 40.87741 ], [ 21.25817, 40.85999 ], [ 21.41905, 40.91219 ], [ 21.57168, 40.87608 ], [ 21.68647, 40.92996 ], [ 21.78738, 40.93113 ], [ 21.80408, 40.88637 ], [ 21.71607, 40.85466 ], [ 21.82179, 40.69669 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL54", "NUTS_ID": "EL54", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ήπειρος", "geo": "EL54", "time_2018_MEAN": 83.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.2956, 39.85746 ], [ 21.23506, 39.78768 ], [ 21.22741, 39.71368 ], [ 21.14385, 39.67598 ], [ 21.18388, 39.58363 ], [ 21.18161, 39.50109 ], [ 21.25817, 39.42086 ], [ 21.29173, 39.3695 ], [ 21.39526, 39.34167 ], [ 21.41878, 39.27249 ], [ 21.36127, 39.21549 ], [ 21.37289, 39.17461 ], [ 21.25817, 39.1227 ], [ 21.13539, 39.11901 ], [ 21.10442, 39.08503 ], [ 21.10861, 39.04615 ], [ 21.02773, 39.0098 ], [ 20.91413, 39.06844 ], [ 20.80052, 39.07146 ], [ 20.76131, 39.02192 ], [ 20.78168, 38.98166 ], [ 20.73521, 38.95488 ], [ 20.68994, 39.05966 ], [ 20.47588, 39.2187 ], [ 20.47782, 39.27484 ], [ 20.46425, 39.2731 ], [ 20.34629, 39.28647 ], [ 20.30068, 39.31573 ], [ 20.2276, 39.43247 ], [ 20.24938, 39.50543 ], [ 20.15917, 39.53964 ], [ 20.17035, 39.6255 ], [ 20.00881, 39.69129 ], [ 20.03121, 39.69679 ], [ 20.12672, 39.65801 ], [ 20.21928, 39.64851 ], [ 20.22922, 39.67903 ], [ 20.26194, 39.67672 ], [ 20.27707, 39.70419 ], [ 20.31578, 39.72734 ], [ 20.29704, 39.76531 ], [ 20.30235, 39.81274 ], [ 20.39131, 39.78848 ], [ 20.40703, 39.85053 ], [ 20.32423, 39.98493 ], [ 20.38677, 40.0011 ], [ 20.44302, 40.06665 ], [ 20.61288, 40.07965 ], [ 20.67749, 40.10778 ], [ 20.72236, 40.28324 ], [ 20.7785, 40.34879 ], [ 20.86795, 40.36174 ], [ 21.00401, 40.15407 ], [ 20.98053, 40.11332 ], [ 21.06857, 40.04381 ], [ 21.06185, 39.97741 ], [ 21.10115, 39.89377 ], [ 21.13539, 39.88738 ], [ 21.2956, 39.85746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL61", "NUTS_ID": "EL61", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Θεσσαλία", "geo": "EL61", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.19928, 39.40197 ], [ 24.18249, 39.36192 ], [ 24.13829, 39.38798 ], [ 24.14595, 39.41969 ], [ 24.19928, 39.40197 ] ] ], [ [ [ 24.13608, 39.07599 ], [ 24.09076, 39.03625 ], [ 24.06887, 39.06863 ], [ 24.10435, 39.09777 ], [ 24.13608, 39.07599 ] ] ], [ [ [ 24.096, 39.31232 ], [ 24.06747, 39.29389 ], [ 24.04002, 39.3235 ], [ 24.05188, 39.3527 ], [ 24.09842, 39.34842 ], [ 24.096, 39.31232 ] ] ], [ [ [ 23.96267, 39.27341 ], [ 23.99473, 39.15652 ], [ 23.94678, 39.15742 ], [ 23.92322, 39.18209 ], [ 23.88086, 39.1855 ], [ 23.93449, 39.27341 ], [ 23.96267, 39.27341 ] ] ], [ [ [ 23.72105, 39.14571 ], [ 23.7314, 39.12045 ], [ 23.78134, 39.12987 ], [ 23.76888, 39.09204 ], [ 23.73169, 39.07395 ], [ 23.67453, 39.08408 ], [ 23.65368, 39.09624 ], [ 23.59562, 39.19354 ], [ 23.6166, 39.19485 ], [ 23.67453, 39.16114 ], [ 23.72105, 39.14571 ] ] ], [ [ [ 23.50659, 39.19351 ], [ 23.52547, 39.14646 ], [ 23.47666, 39.16012 ], [ 23.45378, 39.13741 ], [ 23.41344, 39.1378 ], [ 23.39089, 39.15853 ], [ 23.44305, 39.18234 ], [ 23.45912, 39.21069 ], [ 23.50659, 39.19351 ] ] ], [ [ [ 22.66458, 39.97476 ], [ 22.70356, 39.92154 ], [ 22.73539, 39.87809 ], [ 22.77433, 39.84679 ], [ 22.84641, 39.78886 ], [ 22.91591, 39.60294 ], [ 23.0978, 39.48835 ], [ 23.33194, 39.20429 ], [ 23.29147, 39.14463 ], [ 23.09216, 39.09749 ], [ 23.08159, 39.14701 ], [ 23.13748, 39.12496 ], [ 23.19751, 39.17246 ], [ 23.14889, 39.27568 ], [ 22.97915, 39.34293 ], [ 22.83546, 39.27388 ], [ 22.84118, 39.19385 ], [ 22.96899, 39.10065 ], [ 23.01702, 39.00317 ], [ 22.92218, 38.97396 ], [ 22.77433, 39.01655 ], [ 22.70356, 39.03693 ], [ 22.66896, 39.0469 ], [ 22.51814, 39.04726 ], [ 22.49608, 39.07007 ], [ 22.5049, 39.13052 ], [ 22.40613, 39.20781 ], [ 22.25592, 39.27249 ], [ 22.1523, 39.12225 ], [ 22.06544, 39.09518 ], [ 22.04604, 39.05157 ], [ 21.9648, 39.03224 ], [ 21.93851, 39.06508 ], [ 21.84337, 39.14333 ], [ 21.74311, 39.1151 ], [ 21.66839, 39.25099 ], [ 21.57168, 39.23738 ], [ 21.49243, 39.22623 ], [ 21.39638, 39.16474 ], [ 21.37289, 39.17461 ], [ 21.36127, 39.21549 ], [ 21.41878, 39.27249 ], [ 21.39526, 39.34167 ], [ 21.29173, 39.3695 ], [ 21.25817, 39.42086 ], [ 21.18161, 39.50109 ], [ 21.18388, 39.58363 ], [ 21.14385, 39.67598 ], [ 21.22741, 39.71368 ], [ 21.23506, 39.78768 ], [ 21.2956, 39.85746 ], [ 21.37755, 39.83508 ], [ 21.4428, 39.89251 ], [ 21.51838, 39.89854 ], [ 21.57168, 39.89234 ], [ 21.91769, 39.85205 ], [ 21.89937, 39.96247 ], [ 22.07547, 40.11751 ], [ 22.1157, 40.19025 ], [ 22.20435, 40.18296 ], [ 22.2262, 40.11111 ], [ 22.28456, 40.16483 ], [ 22.33096, 40.16899 ], [ 22.36152, 40.13876 ], [ 22.36283, 40.05668 ], [ 22.47475, 40.0166 ], [ 22.52425, 39.95551 ], [ 22.66458, 39.97476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL62", "NUTS_ID": "EL62", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Ιόνια Νησιά", "geo": "EL62", "time_2018_MEAN": 81.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.04317, 38.45952 ], [ 21.00665, 38.45005 ], [ 20.99299, 38.47148 ], [ 21.00807, 38.49969 ], [ 21.03861, 38.50823 ], [ 21.04317, 38.45952 ] ] ], [ [ [ 20.95867, 37.73484 ], [ 20.95205, 37.71878 ], [ 20.88582, 37.72726 ], [ 20.84398, 37.6593 ], [ 20.81134, 37.65875 ], [ 20.62944, 37.83521 ], [ 20.63925, 37.88296 ], [ 20.6954, 37.92171 ], [ 20.75441, 37.85384 ], [ 20.82813, 37.83521 ], [ 20.95867, 37.73484 ] ] ], [ [ [ 20.93496, 38.61353 ], [ 20.87108, 38.60687 ], [ 20.89092, 38.64411 ], [ 20.93924, 38.65604 ], [ 20.93496, 38.61353 ] ] ], [ [ [ 20.62833, 38.32628 ], [ 20.59896, 38.30185 ], [ 20.62659, 38.25927 ], [ 20.66718, 38.27672 ], [ 20.81439, 38.10974 ], [ 20.79425, 38.06391 ], [ 20.70378, 38.06893 ], [ 20.63874, 38.11007 ], [ 20.6066, 38.11677 ], [ 20.56448, 38.09046 ], [ 20.48909, 38.12017 ], [ 20.46876, 38.19138 ], [ 20.47993, 38.20502 ], [ 20.43755, 38.28168 ], [ 20.42121, 38.26777 ], [ 20.43881, 38.225 ], [ 20.43943, 38.16217 ], [ 20.39289, 38.15505 ], [ 20.33726, 38.18853 ], [ 20.35787, 38.225 ], [ 20.35805, 38.26047 ], [ 20.38778, 38.27765 ], [ 20.40269, 38.33485 ], [ 20.44019, 38.35729 ], [ 20.44245, 38.33517 ], [ 20.489, 38.31219 ], [ 20.5338, 38.34157 ], [ 20.54454, 38.42405 ], [ 20.53769, 38.47001 ], [ 20.58208, 38.46512 ], [ 20.59668, 38.40504 ], [ 20.61049, 38.40194 ], [ 20.62833, 38.32628 ] ] ], [ [ [ 20.72448, 38.68576 ], [ 20.72614, 38.65962 ], [ 20.78823, 38.67343 ], [ 20.80409, 38.66493 ], [ 20.75281, 38.63005 ], [ 20.725, 38.63702 ], [ 20.68328, 38.60711 ], [ 20.61649, 38.60178 ], [ 20.59086, 38.6266 ], [ 20.57066, 38.58903 ], [ 20.55011, 38.59274 ], [ 20.55809, 38.68027 ], [ 20.60067, 38.77938 ], [ 20.64875, 38.83123 ], [ 20.69034, 38.85043 ], [ 20.72571, 38.80366 ], [ 20.72063, 38.75135 ], [ 20.75061, 38.69316 ], [ 20.72448, 38.68576 ] ] ], [ [ [ 20.7545, 38.32029 ], [ 20.72152, 38.30103 ], [ 20.69497, 38.3155 ], [ 20.67631, 38.35911 ], [ 20.71644, 38.3682 ], [ 20.72327, 38.39004 ], [ 20.75027, 38.3697 ], [ 20.7545, 38.32029 ] ] ], [ [ [ 20.74465, 38.56967 ], [ 20.70826, 38.52437 ], [ 20.68223, 38.54941 ], [ 20.68945, 38.5829 ], [ 20.74465, 38.56967 ] ] ], [ [ [ 20.68027, 38.37847 ], [ 20.66394, 38.37786 ], [ 20.63817, 38.43696 ], [ 20.61052, 38.46886 ], [ 20.66235, 38.48784 ], [ 20.66778, 38.4628 ], [ 20.71236, 38.43654 ], [ 20.68027, 38.37847 ] ] ], [ [ [ 20.20186, 39.19644 ], [ 20.1645, 39.17812 ], [ 20.12264, 39.23366 ], [ 20.13752, 39.24173 ], [ 20.20186, 39.19644 ] ] ], [ [ [ 19.88327, 39.79963 ], [ 19.94227, 39.78528 ], [ 19.95356, 39.76854 ], [ 19.9294, 39.73498 ], [ 19.8443, 39.70318 ], [ 19.8639, 39.64572 ], [ 19.92501, 39.61878 ], [ 19.91219, 39.55191 ], [ 19.93884, 39.47406 ], [ 19.99667, 39.45914 ], [ 20.03274, 39.43753 ], [ 20.07011, 39.45871 ], [ 20.11992, 39.38159 ], [ 20.11246, 39.36419 ], [ 20.00145, 39.40013 ], [ 19.98451, 39.41416 ], [ 19.91056, 39.43301 ], [ 19.87139, 39.45684 ], [ 19.85175, 39.49597 ], [ 19.84819, 39.54763 ], [ 19.80658, 39.5923 ], [ 19.74392, 39.62518 ], [ 19.72638, 39.67251 ], [ 19.67621, 39.68151 ], [ 19.68224, 39.71312 ], [ 19.65798, 39.71718 ], [ 19.63668, 39.75107 ], [ 19.67373, 39.79353 ], [ 19.79664, 39.79028 ], [ 19.85022, 39.81925 ], [ 19.88327, 39.79963 ] ] ], [ [ [ 19.41895, 39.83293 ], [ 19.38376, 39.82854 ], [ 19.36311, 39.85213 ], [ 19.3753, 39.87777 ], [ 19.42494, 39.85995 ], [ 19.41895, 39.83293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL63", "NUTS_ID": "EL63", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Δυτική Ελλάδα", "geo": "EL63", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.37297, 38.14222 ], [ 22.35859, 38.02647 ], [ 22.31658, 37.99673 ], [ 22.25358, 37.95211 ], [ 22.24677, 37.91881 ], [ 22.23255, 37.88117 ], [ 22.26431, 37.83916 ], [ 22.0398, 37.78788 ], [ 21.92692, 37.82223 ], [ 21.88974, 37.86589 ], [ 21.79969, 37.79401 ], [ 21.79744, 37.60527 ], [ 21.88034, 37.59327 ], [ 21.93201, 37.55244 ], [ 21.98209, 37.51286 ], [ 21.96559, 37.48345 ], [ 21.90166, 37.45687 ], [ 21.87699, 37.39969 ], [ 21.68023, 37.37743 ], [ 21.547, 37.55244 ], [ 21.33079, 37.66405 ], [ 21.26958, 37.78284 ], [ 21.12165, 37.86388 ], [ 21.13944, 37.92585 ], [ 21.26041, 37.98384 ], [ 21.35107, 38.10214 ], [ 21.38014, 38.20532 ], [ 21.57168, 38.16011 ], [ 21.61839, 38.14908 ], [ 21.69476, 38.19166 ], [ 21.76662, 38.2984 ], [ 21.85565, 38.33128 ], [ 21.99403, 38.31567 ], [ 22.20351, 38.18896 ], [ 22.37297, 38.14222 ] ] ], [ [ [ 21.946, 38.784 ], [ 21.99943, 38.76861 ], [ 21.99402, 38.5196 ], [ 21.89219, 38.4645 ], [ 21.85173, 38.37454 ], [ 21.80716, 38.38032 ], [ 21.75682, 38.336 ], [ 21.62508, 38.35225 ], [ 21.57168, 38.33128 ], [ 21.501, 38.30353 ], [ 21.46619, 38.35761 ], [ 21.3464, 38.4023 ], [ 21.25817, 38.32131 ], [ 21.18824, 38.30117 ], [ 21.13539, 38.3247 ], [ 21.08853, 38.50253 ], [ 21.01784, 38.54525 ], [ 20.98889, 38.64794 ], [ 20.91116, 38.69486 ], [ 20.86714, 38.77362 ], [ 20.7693, 38.77454 ], [ 20.74131, 38.82557 ], [ 20.79009, 38.93438 ], [ 20.9499, 38.9414 ], [ 21.05667, 38.88507 ], [ 21.13539, 38.89767 ], [ 21.15483, 38.89156 ], [ 21.15328, 38.98585 ], [ 21.13539, 39.01 ], [ 21.10861, 39.04615 ], [ 21.10442, 39.08503 ], [ 21.13539, 39.11901 ], [ 21.25817, 39.1227 ], [ 21.37289, 39.17461 ], [ 21.39638, 39.16474 ], [ 21.41948, 39.09877 ], [ 21.40089, 39.01604 ], [ 21.48945, 38.9656 ], [ 21.5247, 38.89704 ], [ 21.61278, 38.86513 ], [ 21.56512, 38.80876 ], [ 21.58723, 38.74217 ], [ 21.78679, 38.69459 ], [ 21.91732, 38.74149 ], [ 21.946, 38.784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES70", "NUTS_ID": "ES70", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Canarias", "geo": "ES70", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.46409, 29.12767 ], [ -13.46418, 29.03165 ], [ -13.53215, 28.96831 ], [ -13.72115, 28.90909 ], [ -13.78345, 28.85003 ], [ -13.86817, 28.86419 ], [ -13.8086, 29.03529 ], [ -13.6042, 29.13525 ], [ -13.55695, 29.11651 ], [ -13.5373, 29.12767 ], [ -13.50326, 29.28236 ], [ -13.42555, 29.19402 ], [ -13.46409, 29.12767 ] ] ], [ [ [ -13.47299, 29.40357 ], [ -13.503, 29.37445 ], [ -13.54775, 29.39551 ], [ -13.50039, 29.4287 ], [ -13.47299, 29.40357 ] ] ], [ [ [ -13.91446, 28.25751 ], [ -13.95042, 28.22762 ], [ -13.9851, 28.228 ], [ -14.01127, 28.20788 ], [ -14.12076, 28.19081 ], [ -14.22177, 28.16239 ], [ -14.27492, 28.09689 ], [ -14.33144, 28.04426 ], [ -14.492, 28.07655 ], [ -14.49877, 28.10025 ], [ -14.42665, 28.10264 ], [ -14.37145, 28.11731 ], [ -14.31158, 28.14655 ], [ -14.25019, 28.19135 ], [ -14.21594, 28.2277 ], [ -14.20116, 28.33101 ], [ -14.16423, 28.36853 ], [ -14.14601, 28.43879 ], [ -14.10113, 28.47575 ], [ -14.03347, 28.59642 ], [ -14.03835, 28.61495 ], [ -14.00933, 28.67589 ], [ -14.01558, 28.71601 ], [ -13.97754, 28.73436 ], [ -13.88749, 28.75775 ], [ -13.84247, 28.72712 ], [ -13.8224, 28.59211 ], [ -13.84287, 28.50485 ], [ -13.86654, 28.48109 ], [ -13.84989, 28.42067 ], [ -13.91446, 28.25751 ] ] ], [ [ [ -15.41165, 28.13405 ], [ -15.41521, 28.04658 ], [ -15.36962, 27.99223 ], [ -15.38307, 27.97277 ], [ -15.37453, 27.93684 ], [ -15.39376, 27.88966 ], [ -15.38648, 27.85825 ], [ -15.41479, 27.84552 ], [ -15.44205, 27.80042 ], [ -15.49053, 27.79275 ], [ -15.60025, 27.73604 ], [ -15.65694, 27.75693 ], [ -15.67283, 27.75032 ], [ -15.78757, 27.83606 ], [ -15.8329, 27.91225 ], [ -15.83346, 27.97147 ], [ -15.82077, 28.01365 ], [ -15.79015, 28.01936 ], [ -15.70891, 28.08642 ], [ -15.69679, 28.15053 ], [ -15.63638, 28.17027 ], [ -15.61296, 28.14737 ], [ -15.5254, 28.1536 ], [ -15.46788, 28.12578 ], [ -15.4358, 28.1375 ], [ -15.45701, 28.16166 ], [ -15.42187, 28.19324 ], [ -15.39316, 28.18512 ], [ -15.41165, 28.13405 ] ] ], [ [ [ -16.92326, 28.35183 ], [ -16.82945, 28.39227 ], [ -16.80969, 28.37744 ], [ -16.75097, 28.37158 ], [ -16.67356, 28.40022 ], [ -16.60289, 28.39423 ], [ -16.55405, 28.41826 ], [ -16.52321, 28.4175 ], [ -16.4307, 28.48717 ], [ -16.42064, 28.51728 ], [ -16.38412, 28.54583 ], [ -16.33558, 28.55701 ], [ -16.32033, 28.57746 ], [ -16.2245, 28.5655 ], [ -16.15838, 28.58779 ], [ -16.12086, 28.55491 ], [ -16.12707, 28.53258 ], [ -16.23537, 28.48565 ], [ -16.25007, 28.4557 ], [ -16.36014, 28.37854 ], [ -16.3627, 28.30471 ], [ -16.42418, 28.20545 ], [ -16.42687, 28.15183 ], [ -16.46271, 28.12036 ], [ -16.54065, 28.0316 ], [ -16.59754, 28.0281 ], [ -16.64443, 28.00431 ], [ -16.70703, 28.01087 ], [ -16.71223, 28.04681 ], [ -16.73599, 28.05482 ], [ -16.73821, 28.08783 ], [ -16.77254, 28.11414 ], [ -16.83543, 28.20764 ], [ -16.83813, 28.25732 ], [ -16.88142, 28.3132 ], [ -16.92326, 28.35183 ] ] ], [ [ [ -17.20095, 28.02348 ], [ -17.24554, 28.01994 ], [ -17.31986, 28.05953 ], [ -17.34908, 28.09976 ], [ -17.34707, 28.1474 ], [ -17.3177, 28.20479 ], [ -17.26088, 28.21779 ], [ -17.24275, 28.2024 ], [ -17.19561, 28.19909 ], [ -17.18372, 28.18142 ], [ -17.11839, 28.15162 ], [ -17.09889, 28.09482 ], [ -17.20095, 28.02348 ] ] ], [ [ [ -18.00674, 28.77527 ], [ -17.96631, 28.82651 ], [ -17.92054, 28.85668 ], [ -17.85716, 28.83328 ], [ -17.77799, 28.8388 ], [ -17.7578, 28.78821 ], [ -17.72454, 28.74115 ], [ -17.77023, 28.67604 ], [ -17.75026, 28.62117 ], [ -17.75943, 28.57376 ], [ -17.78716, 28.54221 ], [ -17.83378, 28.45765 ], [ -17.86656, 28.47087 ], [ -17.88005, 28.53722 ], [ -17.96348, 28.66764 ], [ -18.00674, 28.77527 ] ] ], [ [ [ -17.88526, 27.81149 ], [ -17.93442, 27.72869 ], [ -17.95761, 27.72048 ], [ -17.97196, 27.64921 ], [ -17.98959, 27.63964 ], [ -18.0505, 27.69328 ], [ -18.14442, 27.70458 ], [ -18.15839, 27.72494 ], [ -18.14948, 27.75956 ], [ -18.1283, 27.77085 ], [ -18.06811, 27.75365 ], [ -17.99632, 27.79211 ], [ -17.99221, 27.82088 ], [ -17.92381, 27.84807 ], [ -17.88526, 27.81149 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC1", "NUTS_ID": "ITC1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Piemonte", "geo": "ITC1", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7069, 45.55832 ], [ 8.84292, 45.39384 ], [ 8.75342, 45.37621 ], [ 8.69213, 45.29874 ], [ 8.6033, 45.35438 ], [ 8.51356, 45.31328 ], [ 8.5478, 45.16815 ], [ 8.60418, 45.12764 ], [ 8.65979, 45.02683 ], [ 8.89188, 45.04194 ], [ 9.07241, 44.82589 ], [ 9.14776, 44.80551 ], [ 9.20213, 44.75366 ], [ 9.20007, 44.6861 ], [ 9.20398, 44.6554 ], [ 9.203, 44.61348 ], [ 9.13002, 44.58056 ], [ 9.0234, 44.6554 ], [ 8.94945, 44.67475 ], [ 8.92663, 44.67161 ], [ 8.91495, 44.6554 ], [ 8.89434, 44.63598 ], [ 8.90905, 44.56735 ], [ 8.83665, 44.55594 ], [ 8.78522, 44.50727 ], [ 8.71532, 44.57518 ], [ 8.6528, 44.58428 ], [ 8.57618, 44.50921 ], [ 8.41512, 44.50247 ], [ 8.36606, 44.47252 ], [ 8.2616, 44.51942 ], [ 8.25282, 44.52874 ], [ 8.20816, 44.47614 ], [ 8.20851, 44.41426 ], [ 8.07407, 44.30076 ], [ 8.08681, 44.17415 ], [ 7.99475, 44.14294 ], [ 8.01563, 44.11068 ], [ 7.7592, 44.13445 ], [ 7.71424, 44.06151 ], [ 7.66487, 44.17388 ], [ 7.37275, 44.12193 ], [ 7.02497, 44.23278 ], [ 6.88743, 44.36129 ], [ 6.9235, 44.43816 ], [ 6.86256, 44.5287 ], [ 6.93483, 44.58587 ], [ 6.94925, 44.6554 ], [ 6.99338, 44.68578 ], [ 7.06424, 44.68597 ], [ 7.06576, 44.71346 ], [ 7.02833, 44.74476 ], [ 7.00193, 44.8382 ], [ 6.86629, 44.85262 ], [ 6.76112, 44.9048 ], [ 6.7389, 45.00536 ], [ 6.67866, 45.02714 ], [ 6.63005, 45.10986 ], [ 6.7703, 45.15253 ], [ 6.87002, 45.13433 ], [ 6.97771, 45.20763 ], [ 7.11411, 45.24083 ], [ 7.12014, 45.32666 ], [ 7.17523, 45.39722 ], [ 7.10472, 45.46845 ], [ 7.13314, 45.50333 ], [ 7.21574, 45.47561 ], [ 7.4805, 45.57586 ], [ 7.57322, 45.58579 ], [ 7.71038, 45.55185 ], [ 7.89581, 45.59003 ], [ 7.93665, 45.72434 ], [ 7.86851, 45.7958 ], [ 7.86408, 45.91675 ], [ 7.87714, 45.92695 ], [ 7.90438, 45.98572 ], [ 7.99579, 46.00621 ], [ 8.03742, 46.09342 ], [ 8.14674, 46.14788 ], [ 8.15515, 46.19505 ], [ 8.09795, 46.27001 ], [ 8.27454, 46.35598 ], [ 8.30658, 46.41642 ], [ 8.38472, 46.45216 ], [ 8.46204, 46.43512 ], [ 8.43661, 46.29591 ], [ 8.46507, 46.24314 ], [ 8.61837, 46.12418 ], [ 8.71394, 46.09727 ], [ 8.7159, 46.01301 ], [ 8.57974, 45.90285 ], [ 8.59381, 45.82822 ], [ 8.56303, 45.77148 ], [ 8.64423, 45.70871 ], [ 8.7069, 45.55832 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC2", "NUTS_ID": "ITC2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Valle d’Aosta/Vallée d’Aoste", "geo": "ITC2", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86408, 45.91675 ], [ 7.86851, 45.7958 ], [ 7.93665, 45.72434 ], [ 7.89581, 45.59003 ], [ 7.71038, 45.55185 ], [ 7.57322, 45.58579 ], [ 7.4805, 45.57586 ], [ 7.21574, 45.47561 ], [ 7.13314, 45.50333 ], [ 7.10472, 45.46845 ], [ 7.00848, 45.50866 ], [ 6.98836, 45.63863 ], [ 6.84065, 45.69788 ], [ 6.80237, 45.77856 ], [ 6.82762, 45.82875 ], [ 6.97039, 45.86236 ], [ 7.04489, 45.92241 ], [ 7.11099, 45.86991 ], [ 7.18689, 45.86716 ], [ 7.29524, 45.91494 ], [ 7.39666, 45.9043 ], [ 7.56217, 45.97837 ], [ 7.86408, 45.91675 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE11", "NUTS_ID": "DE11", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Stuttgart", "geo": "DE11", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.64874, 49.79148 ], [ 9.63811, 49.70177 ], [ 9.81397, 49.70894 ], [ 9.86067, 49.6147 ], [ 9.83953, 49.56227 ], [ 9.90825, 49.56429 ], [ 9.92211, 49.50029 ], [ 9.95493, 49.48229 ], [ 10.0188, 49.4908 ], [ 10.08372, 49.54356 ], [ 10.11833, 49.47317 ], [ 10.13416, 49.41223 ], [ 10.11197, 49.38491 ], [ 10.14612, 49.28266 ], [ 10.13509, 49.216 ], [ 10.24365, 49.14465 ], [ 10.2307, 49.09679 ], [ 10.25676, 49.05949 ], [ 10.41015, 48.97746 ], [ 10.45376, 48.90438 ], [ 10.42369, 48.7445 ], [ 10.48726, 48.69666 ], [ 10.36297, 48.66722 ], [ 10.27235, 48.69198 ], [ 10.31085, 48.54907 ], [ 10.27825, 48.5161 ], [ 10.23078, 48.51051 ], [ 9.94407, 48.63176 ], [ 9.68557, 48.52813 ], [ 9.58517, 48.53674 ], [ 9.58248, 48.53915 ], [ 9.39251, 48.53643 ], [ 9.15123, 48.60406 ], [ 9.12918, 48.60127 ], [ 8.95868, 48.58352 ], [ 8.84156, 48.50725 ], [ 8.7689, 48.52184 ], [ 8.75884, 48.58816 ], [ 8.85644, 48.70581 ], [ 8.80418, 48.77778 ], [ 8.88347, 48.80206 ], [ 8.88603, 48.8398 ], [ 8.9288, 48.86656 ], [ 8.91296, 48.93047 ], [ 8.93638, 48.95555 ], [ 8.87603, 49.03517 ], [ 8.87779, 49.05848 ], [ 8.88212, 49.10718 ], [ 8.83142, 49.14366 ], [ 8.81823, 49.1945 ], [ 8.87727, 49.18082 ], [ 9.04913, 49.29286 ], [ 9.12769, 49.27665 ], [ 9.17723, 49.32412 ], [ 9.24945, 49.30849 ], [ 9.33421, 49.37742 ], [ 9.44349, 49.36434 ], [ 9.46944, 49.38821 ], [ 9.56855, 49.38056 ], [ 9.60382, 49.42658 ], [ 9.51441, 49.46398 ], [ 9.50859, 49.57841 ], [ 9.53412, 49.63029 ], [ 9.41092, 49.66351 ], [ 9.40409, 49.71459 ], [ 9.35012, 49.71554 ], [ 9.32498, 49.76062 ], [ 9.4715, 49.77973 ], [ 9.64874, 49.79148 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE12", "NUTS_ID": "DE12", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Karlsruhe", "geo": "DE12", "time_2018_MEAN": 81.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.60382, 49.42658 ], [ 9.56855, 49.38056 ], [ 9.46944, 49.38821 ], [ 9.44349, 49.36434 ], [ 9.33421, 49.37742 ], [ 9.24945, 49.30849 ], [ 9.17723, 49.32412 ], [ 9.12769, 49.27665 ], [ 9.04913, 49.29286 ], [ 8.87727, 49.18082 ], [ 8.81823, 49.1945 ], [ 8.83142, 49.14366 ], [ 8.88212, 49.10718 ], [ 8.87779, 49.05848 ], [ 8.87603, 49.03517 ], [ 8.93638, 48.95555 ], [ 8.91296, 48.93047 ], [ 8.9288, 48.86656 ], [ 8.88603, 48.8398 ], [ 8.88347, 48.80206 ], [ 8.80418, 48.77778 ], [ 8.85644, 48.70581 ], [ 8.75884, 48.58816 ], [ 8.7689, 48.52184 ], [ 8.75571, 48.50414 ], [ 8.81457, 48.46532 ], [ 8.77406, 48.41628 ], [ 8.73719, 48.37798 ], [ 8.52011, 48.40176 ], [ 8.45274, 48.30972 ], [ 8.34197, 48.37909 ], [ 8.30399, 48.34909 ], [ 8.24432, 48.39777 ], [ 8.26434, 48.47152 ], [ 8.21905, 48.52404 ], [ 8.22201, 48.60323 ], [ 7.95963, 48.71858 ], [ 8.08964, 48.80897 ], [ 8.16889, 48.92663 ], [ 8.23263, 48.96657 ], [ 8.26128, 48.98092 ], [ 8.27735, 48.98994 ], [ 8.33997, 49.08015 ], [ 8.41307, 49.24982 ], [ 8.46699, 49.28298 ], [ 8.48727, 49.29003 ], [ 8.47092, 49.34071 ], [ 8.49732, 49.41135 ], [ 8.50153, 49.43486 ], [ 8.47251, 49.44351 ], [ 8.42307, 49.54182 ], [ 8.4227, 49.57419 ], [ 8.42244, 49.58339 ], [ 8.58138, 49.51978 ], [ 8.61203, 49.54906 ], [ 8.60449, 49.60679 ], [ 8.65499, 49.61775 ], [ 8.724, 49.53045 ], [ 8.89957, 49.50366 ], [ 8.89936, 49.48455 ], [ 8.83863, 49.47066 ], [ 8.81904, 49.40438 ], [ 8.88338, 49.41548 ], [ 8.93188, 49.47064 ], [ 9.08328, 49.52583 ], [ 9.12235, 49.51849 ], [ 9.10301, 49.57746 ], [ 9.2241, 49.58015 ], [ 9.29593, 49.64494 ], [ 9.41092, 49.66351 ], [ 9.53412, 49.63029 ], [ 9.50859, 49.57841 ], [ 9.51441, 49.46398 ], [ 9.60382, 49.42658 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE13", "NUTS_ID": "DE13", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Freiburg", "geo": "DE13", "time_2018_MEAN": 82.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.30399, 48.34909 ], [ 8.34197, 48.37909 ], [ 8.45274, 48.30972 ], [ 8.52011, 48.40176 ], [ 8.73719, 48.37798 ], [ 8.67388, 48.2949 ], [ 8.75124, 48.15954 ], [ 8.79953, 48.18042 ], [ 8.8905, 48.11141 ], [ 8.95376, 48.10728 ], [ 8.98377, 48.07689 ], [ 8.96665, 48.04586 ], [ 9.01216, 48.00531 ], [ 9.01205, 47.93692 ], [ 9.13501, 47.896 ], [ 9.12858, 47.84682 ], [ 9.04452, 47.79946 ], [ 9.1771, 47.72435 ], [ 9.2063, 47.67728 ], [ 9.18219, 47.65589 ], [ 9.03586, 47.68395 ], [ 8.87489, 47.65467 ], [ 8.81439, 47.72001 ], [ 8.78152, 47.71253 ], [ 8.79571, 47.6756 ], [ 8.67046, 47.68486 ], [ 8.66335, 47.68589 ], [ 8.70673, 47.71025 ], [ 8.70534, 47.73718 ], [ 8.61383, 47.80108 ], [ 8.51012, 47.77619 ], [ 8.41842, 47.70026 ], [ 8.42477, 47.67726 ], [ 8.50282, 47.64896 ], [ 8.60637, 47.66901 ], [ 8.5956, 47.60554 ], [ 8.56284, 47.59943 ], [ 8.51855, 47.62564 ], [ 8.42643, 47.56755 ], [ 8.22046, 47.61682 ], [ 8.03864, 47.55345 ], [ 7.92276, 47.55494 ], [ 7.89411, 47.58637 ], [ 7.71378, 47.5394 ], [ 7.6341, 47.56111 ], [ 7.58904, 47.58988 ], [ 7.5205, 47.6782 ], [ 7.54599, 47.74357 ], [ 7.53824, 47.79282 ], [ 7.61439, 47.97575 ], [ 7.57408, 48.04033 ], [ 7.57729, 48.11565 ], [ 7.57792, 48.12139 ], [ 7.68071, 48.25727 ], [ 7.73613, 48.3358 ], [ 7.81259, 48.599 ], [ 7.94368, 48.70581 ], [ 7.95963, 48.71858 ], [ 8.22201, 48.60323 ], [ 8.21905, 48.52404 ], [ 8.26434, 48.47152 ], [ 8.24432, 48.39777 ], [ 8.30399, 48.34909 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE14", "NUTS_ID": "DE14", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Tübingen", "geo": "DE14", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.94407, 48.63176 ], [ 10.23078, 48.51051 ], [ 10.1339, 48.45487 ], [ 10.03269, 48.4572 ], [ 9.99761, 48.35012 ], [ 10.05785, 48.27958 ], [ 10.09536, 48.16401 ], [ 10.13646, 48.10846 ], [ 10.11495, 47.97626 ], [ 10.10421, 47.97436 ], [ 10.09191, 47.95527 ], [ 10.11014, 47.93715 ], [ 10.1065, 47.85503 ], [ 10.13193, 47.82009 ], [ 10.09185, 47.78568 ], [ 10.12996, 47.68973 ], [ 10.07729, 47.63927 ], [ 10.03718, 47.67869 ], [ 9.95493, 47.65387 ], [ 9.85083, 47.67162 ], [ 9.69215, 47.61042 ], [ 9.55872, 47.54189 ], [ 9.4956, 47.55145 ], [ 9.37943, 47.62392 ], [ 9.18219, 47.65589 ], [ 9.2063, 47.67728 ], [ 9.1771, 47.72435 ], [ 9.04452, 47.79946 ], [ 9.12858, 47.84682 ], [ 9.13501, 47.896 ], [ 9.01205, 47.93692 ], [ 9.01216, 48.00531 ], [ 8.96665, 48.04586 ], [ 8.98377, 48.07689 ], [ 8.95376, 48.10728 ], [ 8.8905, 48.11141 ], [ 8.79953, 48.18042 ], [ 8.75124, 48.15954 ], [ 8.67388, 48.2949 ], [ 8.73719, 48.37798 ], [ 8.77406, 48.41628 ], [ 8.81457, 48.46532 ], [ 8.75571, 48.50414 ], [ 8.7689, 48.52184 ], [ 8.84156, 48.50725 ], [ 8.95868, 48.58352 ], [ 9.12918, 48.60127 ], [ 9.15123, 48.60406 ], [ 9.39251, 48.53643 ], [ 9.58248, 48.53915 ], [ 9.58517, 48.53674 ], [ 9.68557, 48.52813 ], [ 9.94407, 48.63176 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE21", "NUTS_ID": "DE21", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberbayern", "geo": "DE21", "time_2018_MEAN": 82.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.59931, 48.9515 ], [ 11.72559, 48.90096 ], [ 11.71944, 48.78235 ], [ 11.65692, 48.72266 ], [ 11.70674, 48.61665 ], [ 11.91019, 48.58523 ], [ 11.95538, 48.56798 ], [ 12.01712, 48.43068 ], [ 12.15731, 48.41637 ], [ 12.25055, 48.32195 ], [ 12.40037, 48.35977 ], [ 12.48379, 48.42968 ], [ 12.54338, 48.41528 ], [ 12.60729, 48.35363 ], [ 12.81539, 48.31542 ], [ 12.94468, 48.20669 ], [ 12.87572, 48.19709 ], [ 12.75156, 48.11281 ], [ 12.86018, 47.99664 ], [ 12.87579, 47.96261 ], [ 12.93888, 47.93604 ], [ 12.99537, 47.85542 ], [ 12.91804, 47.72201 ], [ 13.02804, 47.71399 ], [ 13.08378, 47.66872 ], [ 13.04606, 47.5205 ], [ 13.00844, 47.47168 ], [ 12.91903, 47.49477 ], [ 12.80383, 47.55905 ], [ 12.79017, 47.63067 ], [ 12.6958, 47.68222 ], [ 12.61397, 47.67111 ], [ 12.57503, 47.63232 ], [ 12.50472, 47.62962 ], [ 12.42904, 47.68912 ], [ 12.33805, 47.69709 ], [ 12.26407, 47.68489 ], [ 12.25335, 47.72412 ], [ 12.22836, 47.72096 ], [ 12.17222, 47.69503 ], [ 12.1946, 47.61679 ], [ 12.06066, 47.61874 ], [ 11.82889, 47.58556 ], [ 11.63288, 47.59245 ], [ 11.55857, 47.51511 ], [ 11.41022, 47.49532 ], [ 11.39562, 47.47201 ], [ 11.42143, 47.44485 ], [ 11.33283, 47.44425 ], [ 11.26506, 47.40418 ], [ 11.20839, 47.43053 ], [ 11.0165, 47.39637 ], [ 10.9912, 47.39613 ], [ 10.95779, 47.44936 ], [ 10.88427, 47.48404 ], [ 10.8862, 47.53685 ], [ 10.88452, 47.57069 ], [ 10.95279, 47.61627 ], [ 10.8961, 47.66072 ], [ 10.7948, 47.66509 ], [ 10.78479, 47.69756 ], [ 10.73572, 47.69734 ], [ 10.76709, 47.84379 ], [ 10.81935, 47.99373 ], [ 10.77879, 48.05214 ], [ 10.80153, 48.10417 ], [ 10.79569, 48.14295 ], [ 10.86307, 48.16464 ], [ 10.90341, 48.23668 ], [ 11.03451, 48.19299 ], [ 11.05797, 48.26192 ], [ 11.11677, 48.26848 ], [ 11.19241, 48.4188 ], [ 11.31168, 48.45227 ], [ 11.29541, 48.47457 ], [ 11.22761, 48.49036 ], [ 11.13574, 48.59638 ], [ 11.02299, 48.62017 ], [ 10.98362, 48.71263 ], [ 10.97843, 48.79066 ], [ 11.00594, 48.82188 ], [ 10.93684, 48.86328 ], [ 11.04921, 48.89925 ], [ 11.07067, 48.94691 ], [ 11.14359, 48.97307 ], [ 11.20136, 49.04655 ], [ 11.32508, 49.00501 ], [ 11.39824, 49.03201 ], [ 11.38571, 49.07886 ], [ 11.53012, 49.06528 ], [ 11.59931, 48.9515 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE22", "NUTS_ID": "DE22", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Niederbayern", "geo": "DE22", "time_2018_MEAN": 81.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.41665, 48.98004 ], [ 13.49318, 48.95058 ], [ 13.55158, 48.96779 ], [ 13.67285, 48.8876 ], [ 13.73596, 48.8768 ], [ 13.83951, 48.7716 ], [ 13.79611, 48.7136 ], [ 13.81937, 48.61293 ], [ 13.72709, 48.51302 ], [ 13.51337, 48.59098 ], [ 13.43843, 48.54889 ], [ 13.44987, 48.50526 ], [ 13.40162, 48.37149 ], [ 13.27713, 48.3024 ], [ 13.17704, 48.29439 ], [ 13.03692, 48.26127 ], [ 12.94468, 48.20669 ], [ 12.81539, 48.31542 ], [ 12.60729, 48.35363 ], [ 12.54338, 48.41528 ], [ 12.48379, 48.42968 ], [ 12.40037, 48.35977 ], [ 12.25055, 48.32195 ], [ 12.15731, 48.41637 ], [ 12.01712, 48.43068 ], [ 11.95538, 48.56798 ], [ 11.91019, 48.58523 ], [ 11.70674, 48.61665 ], [ 11.65692, 48.72266 ], [ 11.71944, 48.78235 ], [ 11.72559, 48.90096 ], [ 11.59931, 48.9515 ], [ 11.61839, 48.99942 ], [ 11.65979, 49.01613 ], [ 11.76892, 48.993 ], [ 11.85982, 49.01682 ], [ 11.92906, 48.95826 ], [ 12.06798, 48.94184 ], [ 12.11911, 48.88279 ], [ 12.0975, 48.77199 ], [ 12.13528, 48.76591 ], [ 12.24695, 48.83371 ], [ 12.41372, 48.86949 ], [ 12.47903, 49.03199 ], [ 12.56873, 49.08867 ], [ 12.7682, 49.11476 ], [ 12.98649, 49.16236 ], [ 13.12575, 49.11842 ], [ 13.17091, 49.17358 ], [ 13.19894, 49.13117 ], [ 13.3763, 49.06482 ], [ 13.41665, 48.98004 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE23", "NUTS_ID": "DE23", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberpfalz", "geo": "DE23", "time_2018_MEAN": 80.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17091, 49.17358 ], [ 13.12575, 49.11842 ], [ 12.98649, 49.16236 ], [ 12.7682, 49.11476 ], [ 12.56873, 49.08867 ], [ 12.47903, 49.03199 ], [ 12.41372, 48.86949 ], [ 12.24695, 48.83371 ], [ 12.13528, 48.76591 ], [ 12.0975, 48.77199 ], [ 12.11911, 48.88279 ], [ 12.06798, 48.94184 ], [ 11.92906, 48.95826 ], [ 11.85982, 49.01682 ], [ 11.76892, 48.993 ], [ 11.65979, 49.01613 ], [ 11.61839, 48.99942 ], [ 11.59931, 48.9515 ], [ 11.53012, 49.06528 ], [ 11.38571, 49.07886 ], [ 11.283, 49.19132 ], [ 11.28866, 49.2513 ], [ 11.20608, 49.28809 ], [ 11.24718, 49.32535 ], [ 11.34483, 49.31108 ], [ 11.46419, 49.41535 ], [ 11.55776, 49.41904 ], [ 11.58564, 49.47122 ], [ 11.54912, 49.54412 ], [ 11.58743, 49.63177 ], [ 11.5588, 49.68872 ], [ 11.58331, 49.74053 ], [ 11.63066, 49.76057 ], [ 11.65225, 49.80189 ], [ 11.85484, 49.84711 ], [ 11.82257, 49.95335 ], [ 11.90369, 49.97902 ], [ 12.1294, 49.98575 ], [ 12.2608, 50.05816 ], [ 12.4815, 49.97546 ], [ 12.49203, 49.9363 ], [ 12.55099, 49.90509 ], [ 12.46346, 49.78847 ], [ 12.40152, 49.75837 ], [ 12.51586, 49.67998 ], [ 12.59378, 49.54219 ], [ 12.63599, 49.51865 ], [ 12.63376, 49.47619 ], [ 12.79174, 49.34986 ], [ 12.93187, 49.34404 ], [ 13.01076, 49.30647 ], [ 13.17091, 49.17358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE24", "NUTS_ID": "DE24", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Oberfranken", "geo": "DE24", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.48157, 50.43162 ], [ 11.52534, 50.38395 ], [ 11.60329, 50.39877 ], [ 11.83701, 50.3974 ], [ 11.91932, 50.42473 ], [ 12.02138, 50.3395 ], [ 12.1009, 50.31803 ], [ 12.12728, 50.28509 ], [ 12.11139, 50.24552 ], [ 12.16068, 50.21985 ], [ 12.20444, 50.17132 ], [ 12.20652, 50.11358 ], [ 12.26126, 50.083 ], [ 12.2608, 50.05816 ], [ 12.1294, 49.98575 ], [ 11.90369, 49.97902 ], [ 11.82257, 49.95335 ], [ 11.85484, 49.84711 ], [ 11.65225, 49.80189 ], [ 11.63066, 49.76057 ], [ 11.58331, 49.74053 ], [ 11.5588, 49.68872 ], [ 11.54539, 49.64704 ], [ 11.4363, 49.62695 ], [ 11.36869, 49.66671 ], [ 11.2803, 49.6043 ], [ 11.10005, 49.59811 ], [ 11.0356, 49.67121 ], [ 10.93364, 49.70989 ], [ 10.92734, 49.76843 ], [ 10.80855, 49.74622 ], [ 10.71719, 49.78099 ], [ 10.65442, 49.72112 ], [ 10.55144, 49.75577 ], [ 10.44896, 49.82218 ], [ 10.4578, 49.86821 ], [ 10.50525, 49.87668 ], [ 10.67288, 49.89091 ], [ 10.86012, 50.09179 ], [ 10.869, 50.13605 ], [ 10.78817, 50.15012 ], [ 10.7292, 50.23001 ], [ 10.81267, 50.26466 ], [ 10.73648, 50.3202 ], [ 10.74028, 50.35929 ], [ 10.94572, 50.38647 ], [ 11.03729, 50.35152 ], [ 11.1207, 50.35826 ], [ 11.18994, 50.27119 ], [ 11.25049, 50.29011 ], [ 11.27682, 50.37124 ], [ 11.26594, 50.47942 ], [ 11.40122, 50.51758 ], [ 11.43091, 50.44101 ], [ 11.48157, 50.43162 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE25", "NUTS_ID": "DE25", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Mittelfranken", "geo": "DE25", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.92734, 49.76843 ], [ 10.93364, 49.70989 ], [ 11.0356, 49.67121 ], [ 11.10005, 49.59811 ], [ 11.2803, 49.6043 ], [ 11.36869, 49.66671 ], [ 11.4363, 49.62695 ], [ 11.54539, 49.64704 ], [ 11.5588, 49.68872 ], [ 11.58743, 49.63177 ], [ 11.54912, 49.54412 ], [ 11.58564, 49.47122 ], [ 11.55776, 49.41904 ], [ 11.46419, 49.41535 ], [ 11.34483, 49.31108 ], [ 11.24718, 49.32535 ], [ 11.20608, 49.28809 ], [ 11.28866, 49.2513 ], [ 11.283, 49.19132 ], [ 11.38571, 49.07886 ], [ 11.39824, 49.03201 ], [ 11.32508, 49.00501 ], [ 11.20136, 49.04655 ], [ 11.14359, 48.97307 ], [ 11.07067, 48.94691 ], [ 11.04921, 48.89925 ], [ 10.93684, 48.86328 ], [ 10.85604, 48.88666 ], [ 10.80261, 48.93852 ], [ 10.68875, 48.91685 ], [ 10.64225, 49.01663 ], [ 10.57237, 49.03165 ], [ 10.41015, 48.97746 ], [ 10.25676, 49.05949 ], [ 10.2307, 49.09679 ], [ 10.24365, 49.14465 ], [ 10.13509, 49.216 ], [ 10.14612, 49.28266 ], [ 10.11197, 49.38491 ], [ 10.13416, 49.41223 ], [ 10.11833, 49.47317 ], [ 10.08372, 49.54356 ], [ 10.07679, 49.58743 ], [ 10.11032, 49.62141 ], [ 10.16542, 49.5983 ], [ 10.22396, 49.62687 ], [ 10.36327, 49.62811 ], [ 10.3824, 49.71886 ], [ 10.55144, 49.75577 ], [ 10.65442, 49.72112 ], [ 10.71719, 49.78099 ], [ 10.80855, 49.74622 ], [ 10.92734, 49.76843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE26", "NUTS_ID": "DE26", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Unterfranken", "geo": "DE26", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.45053, 50.40186 ], [ 10.59076, 50.32912 ], [ 10.61012, 50.22799 ], [ 10.7292, 50.23001 ], [ 10.78817, 50.15012 ], [ 10.869, 50.13605 ], [ 10.86012, 50.09179 ], [ 10.67288, 49.89091 ], [ 10.50525, 49.87668 ], [ 10.4578, 49.86821 ], [ 10.44896, 49.82218 ], [ 10.55144, 49.75577 ], [ 10.3824, 49.71886 ], [ 10.36327, 49.62811 ], [ 10.22396, 49.62687 ], [ 10.16542, 49.5983 ], [ 10.11032, 49.62141 ], [ 10.07679, 49.58743 ], [ 10.08372, 49.54356 ], [ 10.0188, 49.4908 ], [ 9.95493, 49.48229 ], [ 9.92211, 49.50029 ], [ 9.90825, 49.56429 ], [ 9.83953, 49.56227 ], [ 9.86067, 49.6147 ], [ 9.81397, 49.70894 ], [ 9.63811, 49.70177 ], [ 9.64874, 49.79148 ], [ 9.4715, 49.77973 ], [ 9.32498, 49.76062 ], [ 9.35012, 49.71554 ], [ 9.40409, 49.71459 ], [ 9.41092, 49.66351 ], [ 9.29593, 49.64494 ], [ 9.2241, 49.58015 ], [ 9.10301, 49.57746 ], [ 9.07717, 49.62027 ], [ 9.14073, 49.73841 ], [ 9.11961, 49.78829 ], [ 9.03608, 49.8465 ], [ 9.05008, 49.86631 ], [ 9.01609, 49.99134 ], [ 9.02897, 50.0294 ], [ 8.97817, 50.04735 ], [ 8.99056, 50.06712 ], [ 9.03266, 50.11147 ], [ 9.15724, 50.11524 ], [ 9.22451, 50.14568 ], [ 9.35943, 50.12903 ], [ 9.40498, 50.08773 ], [ 9.50854, 50.10636 ], [ 9.50981, 50.23381 ], [ 9.62315, 50.22904 ], [ 9.73276, 50.30439 ], [ 9.73291, 50.35615 ], [ 9.77446, 50.42127 ], [ 9.86753, 50.40222 ], [ 9.93566, 50.41961 ], [ 9.95493, 50.42369 ], [ 10.04134, 50.51647 ], [ 10.10473, 50.55549 ], [ 10.20334, 50.54809 ], [ 10.32859, 50.48859 ], [ 10.39977, 50.40382 ], [ 10.45053, 50.40186 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE27", "NUTS_ID": "DE27", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schwaben", "geo": "DE27", "time_2018_MEAN": 82.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.64225, 49.01663 ], [ 10.68875, 48.91685 ], [ 10.80261, 48.93852 ], [ 10.85604, 48.88666 ], [ 10.93684, 48.86328 ], [ 11.00594, 48.82188 ], [ 10.97843, 48.79066 ], [ 10.98362, 48.71263 ], [ 11.02299, 48.62017 ], [ 11.13574, 48.59638 ], [ 11.22761, 48.49036 ], [ 11.29541, 48.47457 ], [ 11.31168, 48.45227 ], [ 11.19241, 48.4188 ], [ 11.11677, 48.26848 ], [ 11.05797, 48.26192 ], [ 11.03451, 48.19299 ], [ 10.90341, 48.23668 ], [ 10.86307, 48.16464 ], [ 10.79569, 48.14295 ], [ 10.80153, 48.10417 ], [ 10.77879, 48.05214 ], [ 10.81935, 47.99373 ], [ 10.76709, 47.84379 ], [ 10.73572, 47.69734 ], [ 10.78479, 47.69756 ], [ 10.7948, 47.66509 ], [ 10.8961, 47.66072 ], [ 10.95279, 47.61627 ], [ 10.88452, 47.57069 ], [ 10.8862, 47.53685 ], [ 10.78738, 47.51978 ], [ 10.63704, 47.56468 ], [ 10.55315, 47.5372 ], [ 10.45444, 47.5558 ], [ 10.44031, 47.50839 ], [ 10.46831, 47.43701 ], [ 10.38325, 47.3546 ], [ 10.31008, 47.30182 ], [ 10.17835, 47.27011 ], [ 10.21751, 47.3546 ], [ 10.19751, 47.3843 ], [ 10.10207, 47.3666 ], [ 10.08401, 47.44765 ], [ 9.99953, 47.48302 ], [ 9.96781, 47.54624 ], [ 9.85961, 47.53945 ], [ 9.79363, 47.58277 ], [ 9.6965, 47.53136 ], [ 9.55872, 47.54189 ], [ 9.69215, 47.61042 ], [ 9.85083, 47.67162 ], [ 9.95493, 47.65387 ], [ 10.03718, 47.67869 ], [ 10.07729, 47.63927 ], [ 10.12996, 47.68973 ], [ 10.09185, 47.78568 ], [ 10.13193, 47.82009 ], [ 10.1065, 47.85503 ], [ 10.11014, 47.93715 ], [ 10.09191, 47.95527 ], [ 10.10421, 47.97436 ], [ 10.11495, 47.97626 ], [ 10.13646, 48.10846 ], [ 10.09536, 48.16401 ], [ 10.05785, 48.27958 ], [ 9.99761, 48.35012 ], [ 10.03269, 48.4572 ], [ 10.1339, 48.45487 ], [ 10.23078, 48.51051 ], [ 10.27825, 48.5161 ], [ 10.31085, 48.54907 ], [ 10.27235, 48.69198 ], [ 10.36297, 48.66722 ], [ 10.48726, 48.69666 ], [ 10.42369, 48.7445 ], [ 10.45376, 48.90438 ], [ 10.41015, 48.97746 ], [ 10.57237, 49.03165 ], [ 10.64225, 49.01663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DE30", "NUTS_ID": "DE30", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Berlin", "geo": "DE30", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.39854, 52.64819 ], [ 13.50153, 52.65057 ], [ 13.51237, 52.5963 ], [ 13.61083, 52.54424 ], [ 13.66698, 52.47417 ], [ 13.73542, 52.43866 ], [ 13.69974, 52.37788 ], [ 13.6567, 52.35054 ], [ 13.44791, 52.41434 ], [ 13.42099, 52.37625 ], [ 13.31193, 52.39919 ], [ 13.2288, 52.41586 ], [ 13.1659, 52.39428 ], [ 13.11014, 52.43252 ], [ 13.1537, 52.50182 ], [ 13.12747, 52.52703 ], [ 13.16426, 52.5989 ], [ 13.28774, 52.65365 ], [ 13.33408, 52.62895 ], [ 13.39854, 52.64819 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL42", "NUTS_ID": "EL42", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Νότιο Αιγαίο", "geo": "EL42", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.60853, 36.142 ], [ 29.58469, 36.11136 ], [ 29.55394, 36.13053 ], [ 29.56395, 36.16803 ], [ 29.58638, 36.17081 ], [ 29.60853, 36.142 ] ] ], [ [ [ 28.09832, 36.10392 ], [ 28.07111, 36.06122 ], [ 28.0227, 36.07669 ], [ 27.95545, 36.04639 ], [ 27.86291, 35.92921 ], [ 27.79676, 35.89085 ], [ 27.77208, 35.88891 ], [ 27.72071, 35.94145 ], [ 27.75588, 36.01452 ], [ 27.75916, 36.09569 ], [ 27.71316, 36.11336 ], [ 27.69759, 36.15322 ], [ 27.76542, 36.18761 ], [ 27.80642, 36.26946 ], [ 27.85941, 36.2955 ], [ 27.87876, 36.32179 ], [ 27.95986, 36.35278 ], [ 28.05465, 36.3978 ], [ 28.11248, 36.41668 ], [ 28.19444, 36.42567 ], [ 28.21919, 36.45593 ], [ 28.23713, 36.44242 ], [ 28.22761, 36.40311 ], [ 28.24459, 36.38628 ], [ 28.20397, 36.33936 ], [ 28.15164, 36.23166 ], [ 28.13743, 36.18748 ], [ 28.09879, 36.17617 ], [ 28.06955, 36.10628 ], [ 28.09832, 36.10392 ] ] ], [ [ [ 27.86922, 36.60146 ], [ 27.86187, 36.54645 ], [ 27.8311, 36.56609 ], [ 27.79539, 36.56609 ], [ 27.78953, 36.61634 ], [ 27.82418, 36.64385 ], [ 27.86922, 36.60146 ] ] ], [ [ [ 27.61221, 36.25919 ], [ 27.63105, 36.21256 ], [ 27.56317, 36.21551 ], [ 27.55409, 36.2263 ], [ 27.61221, 36.25919 ] ] ], [ [ [ 27.35913, 36.48017 ], [ 27.42597, 36.38906 ], [ 27.39441, 36.37661 ], [ 27.35785, 36.42672 ], [ 27.31999, 36.41376 ], [ 27.29372, 36.43342 ], [ 27.30078, 36.45967 ], [ 27.35913, 36.48017 ] ] ], [ [ [ 27.32713, 36.86252 ], [ 27.10098, 36.76203 ], [ 27.02503, 36.76551 ], [ 26.96345, 36.69183 ], [ 26.92726, 36.70992 ], [ 26.9284, 36.75473 ], [ 27.02503, 36.80698 ], [ 27.13355, 36.87449 ], [ 27.26424, 36.9068 ], [ 27.32711, 36.87897 ], [ 27.32713, 36.86252 ] ] ], [ [ [ 27.17213, 35.45786 ], [ 27.15256, 35.42008 ], [ 27.11265, 35.4238 ], [ 27.08044, 35.44466 ], [ 27.11862, 35.48328 ], [ 27.11109, 35.54703 ], [ 27.07505, 35.57101 ], [ 27.0626, 35.59804 ], [ 27.11943, 35.64449 ], [ 27.11747, 35.66726 ], [ 27.16252, 35.72798 ], [ 27.16489, 35.80113 ], [ 27.21747, 35.82428 ], [ 27.18652, 35.8619 ], [ 27.22328, 35.89093 ], [ 27.23782, 35.88308 ], [ 27.23044, 35.79934 ], [ 27.20981, 35.76337 ], [ 27.21691, 35.72941 ], [ 27.16254, 35.65654 ], [ 27.15131, 35.61284 ], [ 27.20265, 35.57256 ], [ 27.21834, 35.54388 ], [ 27.20891, 35.50861 ], [ 27.24118, 35.49417 ], [ 27.17213, 35.45786 ] ] ], [ [ [ 27.20837, 36.58623 ], [ 27.19127, 36.55855 ], [ 27.13246, 36.56592 ], [ 27.13089, 36.60747 ], [ 27.17679, 36.61992 ], [ 27.20837, 36.58623 ] ] ], [ [ [ 27.15737, 36.91885 ], [ 27.13098, 36.91783 ], [ 27.11151, 36.9485 ], [ 27.12823, 36.96357 ], [ 27.17984, 36.95366 ], [ 27.15737, 36.91885 ] ] ], [ [ [ 27.01969, 36.94725 ], [ 26.95584, 36.92877 ], [ 26.92009, 36.96496 ], [ 26.9301, 37.05759 ], [ 27.03711, 37.0096 ], [ 27.04796, 36.99559 ], [ 27.01969, 36.94725 ] ] ], [ [ [ 27.00447, 37.47947 ], [ 26.98019, 37.44594 ], [ 26.94516, 37.45278 ], [ 26.92594, 37.47474 ], [ 26.97732, 37.48902 ], [ 27.00447, 37.47947 ] ] ], [ [ [ 26.97283, 35.39369 ], [ 26.88175, 35.34293 ], [ 26.84806, 35.3587 ], [ 26.90049, 35.41764 ], [ 26.97673, 35.42879 ], [ 26.97283, 35.39369 ] ] ], [ [ [ 26.88698, 37.10157 ], [ 26.85217, 37.09667 ], [ 26.81488, 37.11855 ], [ 26.81968, 37.1463 ], [ 26.78444, 37.1617 ], [ 26.76592, 37.19119 ], [ 26.82116, 37.20075 ], [ 26.84958, 37.18679 ], [ 26.85338, 37.1617 ], [ 26.88698, 37.10157 ] ] ], [ [ [ 26.78988, 37.30194 ], [ 26.7928, 37.27704 ], [ 26.71628, 37.297 ], [ 26.70864, 37.32002 ], [ 26.72174, 37.32904 ], [ 26.78988, 37.30194 ] ] ], [ [ [ 26.77719, 37.37201 ], [ 26.75235, 37.35134 ], [ 26.70523, 37.37507 ], [ 26.72306, 37.40865 ], [ 26.77719, 37.37201 ] ] ], [ [ [ 26.70305, 36.33583 ], [ 26.66882, 36.31433 ], [ 26.63969, 36.35834 ], [ 26.6894, 36.37069 ], [ 26.70305, 36.33583 ] ] ], [ [ [ 26.5755, 37.27857 ], [ 26.54614, 37.27857 ], [ 26.52993, 37.29432 ], [ 26.53916, 37.35063 ], [ 26.5728, 37.37268 ], [ 26.59162, 37.35825 ], [ 26.56963, 37.32262 ], [ 26.5755, 37.27857 ] ] ], [ [ [ 26.40366, 36.5664 ], [ 26.38959, 36.5664 ], [ 26.39174, 36.63639 ], [ 26.44705, 36.60042 ], [ 26.40366, 36.5664 ] ] ], [ [ [ 26.36771, 36.56685 ], [ 26.35529, 36.51645 ], [ 26.29307, 36.5218 ], [ 26.26936, 36.58319 ], [ 26.29175, 36.59787 ], [ 26.36771, 36.56685 ] ] ], [ [ [ 25.87062, 36.78969 ], [ 25.80166, 36.7668 ], [ 25.74779, 36.78184 ], [ 25.76833, 36.80632 ], [ 25.82695, 36.80788 ], [ 25.86141, 36.8298 ], [ 25.84885, 36.84956 ], [ 25.96188, 36.89423 ], [ 25.97461, 36.9298 ], [ 26.02061, 36.93664 ], [ 26.04724, 36.89977 ], [ 25.97655, 36.87979 ], [ 25.93645, 36.85316 ], [ 25.87062, 36.78969 ] ] ], [ [ [ 25.84619, 37.13029 ], [ 25.83302, 37.07915 ], [ 25.78082, 37.10458 ], [ 25.80786, 37.13098 ], [ 25.84619, 37.13029 ] ] ], [ [ [ 25.82675, 36.35508 ], [ 25.77984, 36.34237 ], [ 25.72605, 36.36585 ], [ 25.76572, 36.40491 ], [ 25.82609, 36.37137 ], [ 25.82675, 36.35508 ] ] ], [ [ [ 25.68053, 36.90443 ], [ 25.66967, 36.87016 ], [ 25.62913, 36.87047 ], [ 25.61906, 36.89326 ], [ 25.64564, 36.91645 ], [ 25.68053, 36.90443 ] ] ], [ [ [ 25.54363, 36.96506 ], [ 25.45155, 36.92574 ], [ 25.41158, 36.96506 ], [ 25.35974, 37.08012 ], [ 25.48171, 37.1617 ], [ 25.51677, 37.18515 ], [ 25.53935, 37.1617 ], [ 25.59609, 37.10276 ], [ 25.54363, 36.96506 ] ] ], [ [ [ 25.54416, 36.86788 ], [ 25.53676, 36.8484 ], [ 25.50237, 36.8564 ], [ 25.4955, 36.87846 ], [ 25.49965, 36.89936 ], [ 25.52531, 36.90916 ], [ 25.54416, 36.86788 ] ] ], [ [ [ 25.48616, 36.36049 ], [ 25.4406, 36.33203 ], [ 25.40997, 36.35532 ], [ 25.43311, 36.39329 ], [ 25.41433, 36.43082 ], [ 25.43735, 36.454 ], [ 25.4873, 36.40503 ], [ 25.48616, 36.36049 ] ] ], [ [ [ 25.48306, 36.8285 ], [ 25.43216, 36.81801 ], [ 25.42688, 36.84634 ], [ 25.47551, 36.87607 ], [ 25.48306, 36.8285 ] ] ], [ [ [ 25.40031, 37.41534 ], [ 25.33308, 37.41161 ], [ 25.32646, 37.46327 ], [ 25.30954, 37.48287 ], [ 25.35549, 37.49697 ], [ 25.46001, 37.4735 ], [ 25.45747, 37.44524 ], [ 25.42472, 37.44141 ], [ 25.40031, 37.41534 ] ] ], [ [ [ 25.43047, 36.47783 ], [ 25.40507, 36.44696 ], [ 25.37403, 36.45633 ], [ 25.34817, 36.41611 ], [ 25.32009, 36.42017 ], [ 25.33765, 36.46503 ], [ 25.36743, 36.48678 ], [ 25.43047, 36.47783 ] ] ], [ [ [ 25.38662, 36.65489 ], [ 25.35644, 36.64561 ], [ 25.25489, 36.73048 ], [ 25.27307, 36.78705 ], [ 25.3066, 36.79205 ], [ 25.33062, 36.75549 ], [ 25.40258, 36.71368 ], [ 25.3838, 36.69515 ], [ 25.38662, 36.65489 ] ] ], [ [ [ 25.2923, 37.14138 ], [ 25.25587, 37.08033 ], [ 25.27497, 37.0632 ], [ 25.23617, 36.99924 ], [ 25.17998, 36.97632 ], [ 25.11869, 36.99509 ], [ 25.09727, 37.03858 ], [ 25.13181, 37.09471 ], [ 25.16636, 37.12567 ], [ 25.21934, 37.14017 ], [ 25.25554, 37.1284 ], [ 25.2658, 37.15851 ], [ 25.2923, 37.14138 ] ] ], [ [ [ 25.23476, 37.53636 ], [ 25.18928, 37.52327 ], [ 25.06072, 37.59343 ], [ 24.97904, 37.6593 ], [ 25.00206, 37.67796 ], [ 25.05041, 37.67733 ], [ 25.07964, 37.64335 ], [ 25.20694, 37.63408 ], [ 25.25423, 37.61023 ], [ 25.23476, 37.53636 ] ] ], [ [ [ 25.25032, 37.42286 ], [ 25.23861, 37.38983 ], [ 25.20186, 37.39737 ], [ 25.20141, 37.41762 ], [ 25.22109, 37.45531 ], [ 25.25032, 37.42286 ] ] ], [ [ [ 25.13207, 36.65731 ], [ 25.06545, 36.64898 ], [ 25.09049, 36.69335 ], [ 25.14149, 36.71938 ], [ 25.17562, 36.70182 ], [ 25.13207, 36.65731 ] ] ], [ [ [ 25.07344, 36.98427 ], [ 25.05742, 36.96473 ], [ 25.01753, 36.97277 ], [ 25.01978, 37.0078 ], [ 25.05492, 37.03883 ], [ 25.08053, 37.0377 ], [ 25.07344, 36.98427 ] ] ], [ [ [ 24.98795, 37.76034 ], [ 24.94837, 37.70024 ], [ 24.69174, 37.91881 ], [ 24.70226, 37.9668 ], [ 24.72113, 37.97401 ], [ 24.77106, 37.99311 ], [ 24.79875, 37.97401 ], [ 24.82379, 37.95674 ], [ 24.83892, 37.91881 ], [ 24.94568, 37.88966 ], [ 24.98795, 37.76034 ] ] ], [ [ [ 24.97224, 37.40116 ], [ 24.94785, 37.38365 ], [ 24.87908, 37.36506 ], [ 24.87944, 37.39632 ], [ 24.85591, 37.39631 ], [ 24.86642, 37.42914 ], [ 24.89836, 37.44792 ], [ 24.8965, 37.49959 ], [ 24.94443, 37.48734 ], [ 24.93722, 37.43294 ], [ 24.97363, 37.43037 ], [ 24.97224, 37.40116 ] ] ], [ [ [ 24.95833, 36.62411 ], [ 24.95495, 36.58546 ], [ 24.91156, 36.59189 ], [ 24.89075, 36.62751 ], [ 24.95833, 36.62411 ] ] ], [ [ [ 24.89322, 36.64718 ], [ 24.86145, 36.61833 ], [ 24.82143, 36.66439 ], [ 24.85468, 36.67992 ], [ 24.89322, 36.64718 ] ] ], [ [ [ 24.72765, 36.91036 ], [ 24.69986, 36.90133 ], [ 24.67247, 36.96506 ], [ 24.65179, 37.01317 ], [ 24.66245, 37.03323 ], [ 24.698, 37.02671 ], [ 24.75194, 36.96506 ], [ 24.76577, 36.94925 ], [ 24.72765, 36.91036 ] ] ], [ [ [ 24.74743, 37.63619 ], [ 24.74732, 37.58932 ], [ 24.68486, 37.6066 ], [ 24.70471, 37.63365 ], [ 24.74743, 37.63619 ] ] ], [ [ [ 24.63998, 36.79474 ], [ 24.65829, 36.74896 ], [ 24.60871, 36.74907 ], [ 24.59345, 36.7833 ], [ 24.63998, 36.79474 ] ] ], [ [ [ 24.55171, 36.77589 ], [ 24.52978, 36.74113 ], [ 24.54497, 36.70358 ], [ 24.5322, 36.67908 ], [ 24.47267, 36.66112 ], [ 24.34276, 36.65478 ], [ 24.32212, 36.66307 ], [ 24.34456, 36.74225 ], [ 24.39763, 36.73484 ], [ 24.39319, 36.71318 ], [ 24.44836, 36.69106 ], [ 24.46921, 36.70717 ], [ 24.43029, 36.72424 ], [ 24.40767, 36.75024 ], [ 24.42397, 36.76043 ], [ 24.47673, 36.74314 ], [ 24.53012, 36.77612 ], [ 24.52078, 36.81899 ], [ 24.55702, 36.84122 ], [ 24.59875, 36.82491 ], [ 24.58508, 36.78977 ], [ 24.55171, 36.77589 ] ] ], [ [ [ 24.53248, 37.12761 ], [ 24.50563, 37.10984 ], [ 24.42379, 37.14233 ], [ 24.43186, 37.1617 ], [ 24.44478, 37.1927 ], [ 24.51121, 37.20709 ], [ 24.53358, 37.19361 ], [ 24.53305, 37.1617 ], [ 24.53248, 37.12761 ] ] ], [ [ [ 24.42834, 37.33548 ], [ 24.39588, 37.30912 ], [ 24.36875, 37.32322 ], [ 24.38557, 37.35769 ], [ 24.39304, 37.41241 ], [ 24.36649, 37.4208 ], [ 24.40071, 37.46171 ], [ 24.43132, 37.46734 ], [ 24.42796, 37.44322 ], [ 24.46826, 37.42512 ], [ 24.4834, 37.40086 ], [ 24.42834, 37.33548 ] ] ], [ [ [ 24.29405, 37.52341 ], [ 24.27645, 37.52096 ], [ 24.27789, 37.55244 ], [ 24.27899, 37.57667 ], [ 24.26328, 37.58316 ], [ 24.29406, 37.65903 ], [ 24.34775, 37.68782 ], [ 24.41092, 37.6554 ], [ 24.38836, 37.60702 ], [ 24.3268, 37.55244 ], [ 24.29405, 37.52341 ] ] ], [ [ [ 24.26854, 36.7966 ], [ 24.24504, 36.75291 ], [ 24.2062, 36.79885 ], [ 24.23384, 36.81805 ], [ 24.26854, 36.7966 ] ] ], [ [ [ 24.162, 37.74578 ], [ 24.13312, 37.68479 ], [ 24.10769, 37.69438 ], [ 24.14632, 37.77158 ], [ 24.162, 37.74578 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LV00", "NUTS_ID": "LV00", "LEVL_CODE": 2, "CNTR_CODE": "LV", "NUTS_NAME": "Latvija", "geo": "LV00", "time_2018_MEAN": 74.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.35158, 57.51824 ], [ 27.54521, 57.53444 ], [ 27.56053, 57.50571 ], [ 27.53256, 57.42555 ], [ 27.69078, 57.37056 ], [ 27.84446, 57.30924 ], [ 27.86696, 57.26889 ], [ 27.81872, 57.15587 ], [ 27.753, 57.1126 ], [ 27.72283, 57.01998 ], [ 27.75656, 56.97277 ], [ 27.68376, 56.90079 ], [ 27.66702, 56.8458 ], [ 27.84347, 56.87197 ], [ 27.90042, 56.83085 ], [ 27.96479, 56.82543 ], [ 27.91293, 56.74681 ], [ 28.00228, 56.67502 ], [ 28.04602, 56.5982 ], [ 28.1272, 56.57106 ], [ 28.10784, 56.51103 ], [ 28.18403, 56.44296 ], [ 28.17525, 56.37618 ], [ 28.22995, 56.29134 ], [ 28.15456, 56.16984 ], [ 27.97939, 56.11573 ], [ 27.80092, 55.99047 ], [ 27.65966, 55.9302 ], [ 27.60268, 55.78954 ], [ 27.25935, 55.79232 ], [ 27.12662, 55.84638 ], [ 26.98302, 55.81559 ], [ 26.8674, 55.71774 ], [ 26.7824, 55.68501 ], [ 26.67288, 55.70483 ], [ 26.63037, 55.68067 ], [ 26.3854, 55.71142 ], [ 26.04615, 55.94411 ], [ 25.86938, 56.00199 ], [ 25.82139, 56.05218 ], [ 25.7078, 56.08319 ], [ 25.67161, 56.13992 ], [ 25.32172, 56.14911 ], [ 25.23632, 56.18454 ], [ 25.09452, 56.192 ], [ 24.89231, 56.442 ], [ 24.63769, 56.37047 ], [ 24.56895, 56.29233 ], [ 24.52648, 56.28193 ], [ 24.43308, 56.26495 ], [ 24.30117, 56.29654 ], [ 24.1518, 56.25335 ], [ 24.00702, 56.32718 ], [ 23.78059, 56.33826 ], [ 23.74509, 56.36947 ], [ 23.54191, 56.33677 ], [ 23.31649, 56.3807 ], [ 23.25146, 56.37337 ], [ 23.19505, 56.36701 ], [ 23.09623, 56.31173 ], [ 23.02939, 56.33786 ], [ 22.98799, 56.40472 ], [ 22.92052, 56.39914 ], [ 22.85599, 56.36817 ], [ 22.63556, 56.36817 ], [ 22.12258, 56.42904 ], [ 22.01105, 56.41398 ], [ 21.97821, 56.38514 ], [ 21.68845, 56.31195 ], [ 21.52487, 56.30272 ], [ 21.24513, 56.16227 ], [ 21.20041, 56.08525 ], [ 21.06424, 56.06914 ], [ 20.9871, 56.22178 ], [ 20.99129, 56.52498 ], [ 21.05263, 56.68608 ], [ 21.06146, 56.8313 ], [ 21.23109, 56.91247 ], [ 21.39741, 57.03729 ], [ 21.41935, 57.27372 ], [ 21.68845, 57.55584 ], [ 22.05212, 57.61721 ], [ 22.57154, 57.75264 ], [ 22.58633, 57.65391 ], [ 22.64524, 57.58176 ], [ 22.96275, 57.40799 ], [ 23.11519, 57.36301 ], [ 23.14689, 57.31626 ], [ 23.25146, 57.10615 ], [ 23.31542, 57.06216 ], [ 23.48429, 57.02941 ], [ 23.6195, 56.96658 ], [ 23.93453, 57.00637 ], [ 24.1192, 57.08629 ], [ 24.34273, 57.19963 ], [ 24.40565, 57.26695 ], [ 24.3649, 57.55292 ], [ 24.37875, 57.62331 ], [ 24.3455, 57.71021 ], [ 24.35282, 57.87656 ], [ 24.43385, 57.873 ], [ 24.52648, 57.94518 ], [ 24.6972, 57.95167 ], [ 24.77973, 57.98626 ], [ 24.83408, 57.97278 ], [ 25.04631, 58.04015 ], [ 25.11444, 58.07492 ], [ 25.19629, 58.0735 ], [ 25.28106, 57.99593 ], [ 25.29966, 58.01775 ], [ 25.27733, 58.06187 ], [ 25.30248, 58.07191 ], [ 25.68561, 57.91188 ], [ 25.75527, 57.91592 ], [ 25.90042, 57.84907 ], [ 26.02687, 57.84835 ], [ 26.04887, 57.83126 ], [ 26.03695, 57.77282 ], [ 26.18933, 57.71701 ], [ 26.27586, 57.60168 ], [ 26.46019, 57.57114 ], [ 26.52428, 57.52152 ], [ 26.91395, 57.62744 ], [ 27.10185, 57.56694 ], [ 27.25935, 57.55015 ], [ 27.35158, 57.51824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ME00", "NUTS_ID": "ME00", "LEVL_CODE": 2, "CNTR_CODE": "ME", "NUTS_NAME": "Црна Гора", "geo": "ME00", "time_2018_MEAN": 76.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.06394, 43.00682 ], [ 20.32958, 42.91149 ], [ 20.35293, 42.83338 ], [ 20.27774, 42.82329 ], [ 20.22048, 42.75377 ], [ 20.08206, 42.77584 ], [ 20.03615, 42.75835 ], [ 20.03006, 42.71185 ], [ 20.10051, 42.65429 ], [ 20.0763, 42.55582 ], [ 20.02705, 42.53788 ], [ 19.83939, 42.4695 ], [ 19.82698, 42.4695 ], [ 19.76265, 42.51845 ], [ 19.75862, 42.53788 ], [ 19.76649, 42.60538 ], [ 19.74, 42.64626 ], [ 19.6336, 42.59883 ], [ 19.58344, 42.53788 ], [ 19.52716, 42.4695 ], [ 19.30457, 42.19335 ], [ 19.38545, 42.09437 ], [ 19.35709, 41.94394 ], [ 19.37253, 41.84415 ], [ 19.30924, 41.88583 ], [ 19.17055, 41.93799 ], [ 19.1392, 42.03604 ], [ 19.06316, 42.12544 ], [ 19.00675, 42.146 ], [ 18.95844, 42.19247 ], [ 18.87248, 42.27515 ], [ 18.75753, 42.28445 ], [ 18.68434, 42.37182 ], [ 18.58965, 42.38491 ], [ 18.57888, 42.40816 ], [ 18.5604, 42.44803 ], [ 18.52471, 42.45125 ], [ 18.52521, 42.42046 ], [ 18.46527, 42.4695 ], [ 18.44661, 42.48476 ], [ 18.4381, 42.5557 ], [ 18.52811, 42.58609 ], [ 18.56026, 42.65769 ], [ 18.55226, 42.71243 ], [ 18.46483, 42.79581 ], [ 18.49396, 42.968 ], [ 18.53977, 43.01789 ], [ 18.64677, 43.04897 ], [ 18.66936, 43.15147 ], [ 18.68119, 43.2051 ], [ 18.76271, 43.29141 ], [ 18.78575, 43.30146 ], [ 18.89305, 43.34829 ], [ 18.9345, 43.33725 ], [ 18.96332, 43.30146 ], [ 18.99224, 43.26556 ], [ 19.03436, 43.28405 ], [ 19.04228, 43.30146 ], [ 19.06241, 43.34569 ], [ 18.94578, 43.4975 ], [ 18.95645, 43.5201 ], [ 19.22407, 43.52754 ], [ 19.24187, 43.47307 ], [ 19.4386, 43.38689 ], [ 19.52065, 43.30146 ], [ 19.65798, 43.18676 ], [ 19.74478, 43.15147 ], [ 19.84225, 43.11184 ], [ 19.95901, 43.09635 ], [ 20.06394, 43.00682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MK00", "NUTS_ID": "MK00", "LEVL_CODE": 2, "CNTR_CODE": "MK", "NUTS_NAME": "Северна Македонија", "geo": "MK00", "time_2018_MEAN": 76.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.36021, 42.31116 ], [ 22.51041, 42.15516 ], [ 22.67088, 42.07111 ], [ 22.70356, 42.06297 ], [ 22.77433, 42.04534 ], [ 22.86721, 42.0222 ], [ 22.87485, 41.93799 ], [ 23.02582, 41.72294 ], [ 22.95437, 41.63029 ], [ 22.96833, 41.51984 ], [ 22.95963, 41.36542 ], [ 22.92759, 41.33854 ], [ 22.87918, 41.34065 ], [ 22.77433, 41.32159 ], [ 22.72368, 41.15111 ], [ 22.70356, 41.15998 ], [ 22.66144, 41.17857 ], [ 22.58923, 41.12407 ], [ 22.33205, 41.12027 ], [ 22.21622, 41.17046 ], [ 22.12769, 41.13118 ], [ 22.05633, 41.15202 ], [ 21.92944, 41.10035 ], [ 21.78738, 40.93113 ], [ 21.68647, 40.92996 ], [ 21.57168, 40.87608 ], [ 21.41905, 40.91219 ], [ 21.25817, 40.85999 ], [ 21.20943, 40.87741 ], [ 21.13539, 40.87039 ], [ 20.9802, 40.85566 ], [ 20.95351, 40.91348 ], [ 20.83782, 40.92768 ], [ 20.79448, 40.90308 ], [ 20.73993, 40.91484 ], [ 20.67219, 41.07449 ], [ 20.59775, 41.09203 ], [ 20.50166, 41.31715 ], [ 20.55332, 41.40465 ], [ 20.46581, 41.54561 ], [ 20.55777, 41.58187 ], [ 20.52028, 41.72143 ], [ 20.56671, 41.79952 ], [ 20.56287, 41.84614 ], [ 20.59429, 41.87733 ], [ 20.71472, 41.86498 ], [ 20.76307, 41.93799 ], [ 20.75374, 42.01335 ], [ 20.78341, 42.07351 ], [ 21.09508, 42.19686 ], [ 21.13539, 42.19124 ], [ 21.16582, 42.18699 ], [ 21.2127, 42.1107 ], [ 21.30673, 42.10933 ], [ 21.36755, 42.22688 ], [ 21.44302, 42.2349 ], [ 21.46798, 42.26551 ], [ 21.58695, 42.26282 ], [ 21.68845, 42.23892 ], [ 21.84632, 42.31632 ], [ 21.90867, 42.30714 ], [ 21.95083, 42.33433 ], [ 22.06287, 42.30028 ], [ 22.27404, 42.36338 ], [ 22.36021, 42.31116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "MT00", "NUTS_ID": "MT00", "LEVL_CODE": 2, "CNTR_CODE": "MT", "NUTS_NAME": "Malta", "geo": "MT00", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.32981, 35.89674 ], [ 14.34307, 35.93395 ], [ 14.33312, 35.98597 ], [ 14.36718, 35.98826 ], [ 14.40338, 35.94963 ], [ 14.42359, 35.95859 ], [ 14.48945, 35.93022 ], [ 14.57369, 35.86784 ], [ 14.56042, 35.82259 ], [ 14.51606, 35.80727 ], [ 14.41732, 35.82891 ], [ 14.33853, 35.8786 ], [ 14.32981, 35.89674 ] ] ], [ [ [ 14.33545, 36.03313 ], [ 14.26177, 36.01248 ], [ 14.18761, 36.03671 ], [ 14.18502, 36.0659 ], [ 14.23477, 36.08205 ], [ 14.30989, 36.05907 ], [ 14.33545, 36.03313 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL11", "NUTS_ID": "NL11", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Groningen", "geo": "NL11", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.87491, 53.40801 ], [ 6.91836, 53.34529 ], [ 6.99302, 53.3124 ], [ 7.0784, 53.29875 ], [ 7.09271, 53.25702 ], [ 7.20894, 53.24306 ], [ 7.20279, 53.11328 ], [ 7.20108, 52.9855 ], [ 7.09269, 52.8382 ], [ 7.02727, 52.8766 ], [ 7.03451, 52.91556 ], [ 6.99005, 52.94678 ], [ 6.9357, 52.99336 ], [ 6.81381, 53.07105 ], [ 6.73033, 53.11727 ], [ 6.6338, 53.11618 ], [ 6.4963, 53.20008 ], [ 6.41198, 53.17655 ], [ 6.31524, 53.09405 ], [ 6.2015, 53.12151 ], [ 6.17682, 53.15945 ], [ 6.28225, 53.3124 ], [ 6.19713, 53.36756 ], [ 6.1913, 53.41094 ], [ 6.31362, 53.40128 ], [ 6.76226, 53.46475 ], [ 6.86023, 53.44672 ], [ 6.87491, 53.40801 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL12", "NUTS_ID": "NL12", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Friesland (NL)", "geo": "NL12", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.36905, 52.92197 ], [ 6.2584, 52.92223 ], [ 6.11981, 52.85427 ], [ 6.03518, 52.82313 ], [ 5.83243, 52.81169 ], [ 5.80564, 52.81169 ], [ 5.78644, 52.81169 ], [ 5.733, 52.84153 ], [ 5.66426, 52.83017 ], [ 5.64036, 52.81169 ], [ 5.37726, 52.7648 ], [ 5.33784, 52.79596 ], [ 5.31789, 52.81169 ], [ 5.23633, 52.88111 ], [ 5.16438, 53.00091 ], [ 5.35274, 53.08711 ], [ 5.41123, 53.15172 ], [ 5.44223, 53.21045 ], [ 5.60113, 53.30358 ], [ 5.63248, 53.3124 ], [ 5.89486, 53.38613 ], [ 6.1913, 53.41094 ], [ 6.19713, 53.36756 ], [ 6.28225, 53.3124 ], [ 6.17682, 53.15945 ], [ 6.2015, 53.12151 ], [ 6.31524, 53.09405 ], [ 6.41657, 52.97625 ], [ 6.36905, 52.92197 ] ] ], [ [ [ 6.2622, 53.47594 ], [ 6.14051, 53.47223 ], [ 6.13096, 53.4804 ], [ 6.1474, 53.50267 ], [ 6.27166, 53.51018 ], [ 6.384, 53.51909 ], [ 6.3953, 53.51195 ], [ 6.2622, 53.47594 ] ] ], [ [ [ 5.6429, 53.4709 ], [ 5.75184, 53.46112 ], [ 5.86641, 53.4654 ], [ 5.96997, 53.46793 ], [ 5.96878, 53.45425 ], [ 5.86837, 53.44655 ], [ 5.80991, 53.43728 ], [ 5.72678, 53.44175 ], [ 5.6429, 53.42388 ], [ 5.60689, 53.448 ], [ 5.6429, 53.4709 ] ] ], [ [ [ 5.38422, 53.40116 ], [ 5.29189, 53.36954 ], [ 5.25824, 53.37176 ], [ 5.16926, 53.34789 ], [ 5.14922, 53.35627 ], [ 5.19619, 53.39542 ], [ 5.39086, 53.4252 ], [ 5.49451, 53.44533 ], [ 5.51703, 53.42891 ], [ 5.44221, 53.40401 ], [ 5.38422, 53.40116 ] ] ], [ [ [ 5.07716, 53.28826 ], [ 5.00147, 53.2643 ], [ 4.98857, 53.28177 ], [ 5.05458, 53.31373 ], [ 5.07716, 53.28826 ] ] ], [ [ [ 4.98409, 53.25412 ], [ 4.92191, 53.21539 ], [ 4.88483, 53.22879 ], [ 4.89054, 53.23829 ], [ 4.97251, 53.27135 ], [ 4.98409, 53.25412 ] ] ], [ [ [ 4.88648, 53.22612 ], [ 4.87697, 53.19698 ], [ 4.83238, 53.20465 ], [ 4.8641, 53.2396 ], [ 4.88648, 53.22612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL64", "NUTS_ID": "EL64", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Στερεά Ελλάδα", "geo": "EL64", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.68638, 38.79188 ], [ 24.68243, 38.77258 ], [ 24.60924, 38.76991 ], [ 24.58713, 38.78858 ], [ 24.55947, 38.77331 ], [ 24.53995, 38.7924 ], [ 24.56642, 38.80772 ], [ 24.56725, 38.83341 ], [ 24.48265, 38.85533 ], [ 24.44482, 38.88763 ], [ 24.46566, 38.9164 ], [ 24.44936, 38.94846 ], [ 24.48965, 38.97746 ], [ 24.57706, 38.92736 ], [ 24.57329, 38.87126 ], [ 24.65762, 38.82991 ], [ 24.68638, 38.79188 ] ] ], [ [ [ 23.01702, 39.00317 ], [ 22.97256, 38.94948 ], [ 22.77433, 38.88091 ], [ 22.61415, 38.89409 ], [ 22.57573, 38.86686 ], [ 22.77433, 38.78869 ], [ 23.03478, 38.74633 ], [ 23.10224, 38.64998 ], [ 23.20086, 38.67013 ], [ 23.31924, 38.63009 ], [ 23.31837, 38.56982 ], [ 23.358, 38.52621 ], [ 23.32829, 38.50122 ], [ 23.57267, 38.48561 ], [ 23.61058, 38.52715 ], [ 23.574, 38.57624 ], [ 23.2001, 38.82443 ], [ 23.0268, 38.86749 ], [ 22.92032, 38.84335 ], [ 22.89248, 38.87048 ], [ 23.13084, 38.9976 ], [ 23.29996, 39.02519 ], [ 23.40294, 38.95768 ], [ 23.47246, 38.84808 ], [ 23.56693, 38.7869 ], [ 23.67453, 38.74794 ], [ 23.86246, 38.6799 ], [ 24.09828, 38.65926 ], [ 24.20334, 38.52615 ], [ 24.1969, 38.39237 ], [ 24.26705, 38.22291 ], [ 24.35638, 38.16604 ], [ 24.56184, 38.1365 ], [ 24.55864, 38.01189 ], [ 24.52744, 37.97401 ], [ 24.50081, 37.95509 ], [ 24.47483, 37.97401 ], [ 24.44365, 37.99673 ], [ 24.40485, 37.99673 ], [ 24.35675, 37.97742 ], [ 24.34384, 37.99673 ], [ 24.29344, 38.07208 ], [ 24.21315, 38.09142 ], [ 24.17626, 38.21975 ], [ 24.14525, 38.26998 ], [ 24.10891, 38.26669 ], [ 24.02679, 38.39639 ], [ 23.67453, 38.40501 ], [ 23.65898, 38.40539 ], [ 23.63625, 38.38713 ], [ 23.65557, 38.35205 ], [ 23.67453, 38.34566 ], [ 23.69042, 38.3403 ], [ 23.67453, 38.31993 ], [ 23.64317, 38.27973 ], [ 23.63449, 38.21134 ], [ 23.61393, 38.16723 ], [ 23.52836, 38.13688 ], [ 23.44767, 38.20469 ], [ 23.38648, 38.21786 ], [ 23.38648, 38.25871 ], [ 23.35532, 38.26338 ], [ 23.30813, 38.24531 ], [ 23.27332, 38.18924 ], [ 23.13593, 38.16977 ], [ 23.01616, 38.2053 ], [ 22.92028, 38.19254 ], [ 22.79353, 38.24084 ], [ 22.77433, 38.28111 ], [ 22.70356, 38.31914 ], [ 22.66318, 38.36623 ], [ 22.60828, 38.35866 ], [ 22.58853, 38.29769 ], [ 22.55874, 38.28946 ], [ 22.5051, 38.37584 ], [ 22.41425, 38.43895 ], [ 22.36616, 38.34372 ], [ 22.23755, 38.35301 ], [ 22.17978, 38.33068 ], [ 22.07159, 38.38618 ], [ 21.94964, 38.40071 ], [ 21.85173, 38.37454 ], [ 21.89219, 38.4645 ], [ 21.99402, 38.5196 ], [ 21.99943, 38.76861 ], [ 21.946, 38.784 ], [ 21.91732, 38.74149 ], [ 21.78679, 38.69459 ], [ 21.58723, 38.74217 ], [ 21.56512, 38.80876 ], [ 21.61278, 38.86513 ], [ 21.5247, 38.89704 ], [ 21.48945, 38.9656 ], [ 21.40089, 39.01604 ], [ 21.41948, 39.09877 ], [ 21.39638, 39.16474 ], [ 21.49243, 39.22623 ], [ 21.57168, 39.23738 ], [ 21.66839, 39.25099 ], [ 21.74311, 39.1151 ], [ 21.84337, 39.14333 ], [ 21.93851, 39.06508 ], [ 21.9648, 39.03224 ], [ 22.04604, 39.05157 ], [ 22.06544, 39.09518 ], [ 22.1523, 39.12225 ], [ 22.25592, 39.27249 ], [ 22.40613, 39.20781 ], [ 22.5049, 39.13052 ], [ 22.49608, 39.07007 ], [ 22.51814, 39.04726 ], [ 22.66896, 39.0469 ], [ 22.70356, 39.03693 ], [ 22.77433, 39.01655 ], [ 22.92218, 38.97396 ], [ 23.01702, 39.00317 ] ] ], [ [ [ 24.27516, 38.03102 ], [ 24.27977, 37.97806 ], [ 24.22686, 37.98453 ], [ 24.25201, 38.0354 ], [ 24.27516, 38.03102 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL65", "NUTS_ID": "EL65", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Πελοπόννησος", "geo": "EL65", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.11753, 38.06065 ], [ 23.12424, 37.99673 ], [ 23.15214, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.01394, 37.90208 ], [ 23.02467, 37.8561 ], [ 23.15899, 37.80409 ], [ 23.12003, 37.72998 ], [ 23.16307, 37.71263 ], [ 23.16482, 37.6276 ], [ 23.20038, 37.59665 ], [ 23.18609, 37.55244 ], [ 23.17975, 37.53282 ], [ 23.32975, 37.47 ], [ 23.44089, 37.45786 ], [ 23.42442, 37.4117 ], [ 23.2826, 37.39305 ], [ 23.15222, 37.31506 ], [ 23.09035, 37.36355 ], [ 23.06767, 37.45817 ], [ 22.93756, 37.51762 ], [ 22.75224, 37.55588 ], [ 22.7716, 37.38946 ], [ 22.91031, 37.1617 ], [ 22.9808, 37.0479 ], [ 23.01394, 36.96506 ], [ 23.07573, 36.81057 ], [ 23.04611, 36.64509 ], [ 23.16301, 36.45135 ], [ 23.10277, 36.45011 ], [ 22.9636, 36.51081 ], [ 22.81587, 36.691 ], [ 22.77433, 36.78337 ], [ 22.70356, 36.8036 ], [ 22.56935, 36.75565 ], [ 22.48568, 36.5776 ], [ 22.49697, 36.46198 ], [ 22.47575, 36.41611 ], [ 22.37306, 36.49461 ], [ 22.35654, 36.68672 ], [ 22.2463, 36.86318 ], [ 22.14446, 36.92083 ], [ 22.13202, 36.96506 ], [ 22.11479, 37.01436 ], [ 22.04234, 37.01861 ], [ 21.95733, 36.98303 ], [ 21.9455, 36.96506 ], [ 21.92784, 36.87671 ], [ 21.94582, 36.79323 ], [ 21.90656, 36.74799 ], [ 21.76159, 36.80527 ], [ 21.69925, 36.75805 ], [ 21.69083, 36.94162 ], [ 21.67437, 36.96506 ], [ 21.57476, 37.10688 ], [ 21.58061, 37.1617 ], [ 21.58271, 37.18136 ], [ 21.68458, 37.30223 ], [ 21.68023, 37.37743 ], [ 21.87699, 37.39969 ], [ 21.90166, 37.45687 ], [ 21.96559, 37.48345 ], [ 21.98209, 37.51286 ], [ 21.93201, 37.55244 ], [ 21.88034, 37.59327 ], [ 21.79744, 37.60527 ], [ 21.79969, 37.79401 ], [ 21.88974, 37.86589 ], [ 21.92692, 37.82223 ], [ 22.0398, 37.78788 ], [ 22.26431, 37.83916 ], [ 22.23255, 37.88117 ], [ 22.24677, 37.91881 ], [ 22.25358, 37.95211 ], [ 22.31658, 37.99673 ], [ 22.35859, 38.02647 ], [ 22.37297, 38.14222 ], [ 22.63354, 38.07452 ], [ 22.86736, 37.94551 ], [ 22.94934, 37.96701 ], [ 22.89605, 38.02393 ], [ 22.91302, 38.05484 ], [ 23.11753, 38.06065 ] ] ], [ [ [ 21.78443, 36.74546 ], [ 21.77875, 36.71097 ], [ 21.75451, 36.71122 ], [ 21.72833, 36.76494 ], [ 21.761, 36.76597 ], [ 21.78443, 36.74546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES11", "NUTS_ID": "ES11", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Galicia", "geo": "ES11", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.69974, 43.73511 ], [ -7.63274, 43.73759 ], [ -7.59977, 43.68438 ], [ -7.54684, 43.7245 ], [ -7.48577, 43.72229 ], [ -7.36161, 43.66827 ], [ -7.27747, 43.59494 ], [ -7.25714, 43.57722 ], [ -7.03184, 43.54447 ], [ -7.06731, 43.47049 ], [ -7.16546, 43.42271 ], [ -7.17171, 43.3963 ], [ -6.95376, 43.14544 ], [ -6.84221, 43.1601 ], [ -6.84193, 43.13208 ], [ -6.97432, 43.02366 ], [ -6.86791, 42.97605 ], [ -6.82417, 42.91501 ], [ -6.85286, 42.8479 ], [ -6.8758, 42.79422 ], [ -7.02318, 42.69464 ], [ -7.07683, 42.50812 ], [ -6.93014, 42.51612 ], [ -6.83746, 42.48801 ], [ -6.8228, 42.42348 ], [ -6.82423, 42.39279 ], [ -6.73663, 42.34173 ], [ -6.78431, 42.25361 ], [ -6.9293, 42.17606 ], [ -7.01977, 42.07514 ], [ -6.96982, 42.03659 ], [ -6.9858, 41.97145 ], [ -7.04739, 41.9513 ], [ -7.16136, 41.98077 ], [ -7.20046, 41.87975 ], [ -7.41816, 41.81815 ], [ -7.46925, 41.86278 ], [ -7.59917, 41.83486 ], [ -7.61572, 41.87497 ], [ -7.70715, 41.90292 ], [ -7.87946, 41.86042 ], [ -7.89843, 41.91935 ], [ -8.05186, 41.82061 ], [ -8.16508, 41.8183 ], [ -8.2074, 41.91949 ], [ -8.08905, 42.03924 ], [ -8.11309, 42.07302 ], [ -8.17948, 42.07894 ], [ -8.199, 42.15442 ], [ -8.35404, 42.08402 ], [ -8.62557, 42.04539 ], [ -8.86319, 41.87207 ], [ -8.87461, 42.08764 ], [ -8.73773, 42.2465 ], [ -8.82427, 42.29003 ], [ -8.75369, 42.39204 ], [ -8.83625, 42.40969 ], [ -8.88779, 42.45932 ], [ -8.83961, 42.49582 ], [ -8.72675, 42.68825 ], [ -9.03425, 42.54027 ], [ -9.06149, 42.61293 ], [ -8.95391, 42.77461 ], [ -9.09821, 42.76374 ], [ -9.10968, 42.79422 ], [ -9.1299, 42.8479 ], [ -9.14998, 42.90124 ], [ -9.2831, 42.94574 ], [ -9.26457, 43.04811 ], [ -9.18935, 43.10692 ], [ -9.18306, 43.13208 ], [ -9.1729, 43.17275 ], [ -8.96792, 43.22607 ], [ -8.97219, 43.27852 ], [ -8.86088, 43.32087 ], [ -8.68014, 43.29808 ], [ -8.44359, 43.36719 ], [ -8.36826, 43.35379 ], [ -8.31108, 43.39087 ], [ -8.22519, 43.34837 ], [ -8.226, 43.40753 ], [ -8.30476, 43.47049 ], [ -8.2738, 43.5502 ], [ -8.20458, 43.59494 ], [ -8.02812, 43.70899 ], [ -7.91709, 43.75056 ], [ -7.88238, 43.74087 ], [ -7.8603, 43.69047 ], [ -7.69974, 43.73511 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES12", "NUTS_ID": "ES12", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Principado de Asturias", "geo": "ES12", "time_2018_MEAN": 82.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.5123, 43.3932 ], [ -4.52912, 43.28908 ], [ -4.69424, 43.26377 ], [ -4.74214, 43.19473 ], [ -4.84104, 43.18071 ], [ -4.91409, 43.23171 ], [ -5.06959, 43.17493 ], [ -5.09622, 43.13208 ], [ -5.11033, 43.10939 ], [ -5.32192, 43.07953 ], [ -5.36813, 43.08723 ], [ -5.52155, 43.02052 ], [ -5.70045, 43.05024 ], [ -5.77154, 42.97613 ], [ -5.81918, 42.9672 ], [ -5.98673, 43.05905 ], [ -6.07388, 43.06791 ], [ -6.11699, 43.0283 ], [ -6.19764, 43.0446 ], [ -6.23984, 43.01882 ], [ -6.36665, 43.05094 ], [ -6.45645, 42.93704 ], [ -6.69188, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.78781, 42.90124 ], [ -6.82417, 42.91501 ], [ -6.86791, 42.97605 ], [ -6.97432, 43.02366 ], [ -6.84193, 43.13208 ], [ -6.84221, 43.1601 ], [ -6.95376, 43.14544 ], [ -7.17171, 43.3963 ], [ -7.16546, 43.42271 ], [ -7.06731, 43.47049 ], [ -7.03184, 43.54447 ], [ -6.92663, 43.57215 ], [ -6.36949, 43.55205 ], [ -6.24141, 43.5855 ], [ -6.11309, 43.55828 ], [ -5.95294, 43.5854 ], [ -5.93657, 43.59494 ], [ -5.84504, 43.6483 ], [ -5.75005, 43.59494 ], [ -5.66814, 43.54892 ], [ -5.32192, 43.5348 ], [ -5.20986, 43.47807 ], [ -5.14759, 43.47049 ], [ -4.5123, 43.3932 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES13", "NUTS_ID": "ES13", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Cantabria", "geo": "ES13", "time_2018_MEAN": 83.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.15334, 43.35322 ], [ -3.16975, 43.32118 ], [ -3.18407, 43.29322 ], [ -3.32259, 43.29562 ], [ -3.43523, 43.23637 ], [ -3.41768, 43.13337 ], [ -3.65166, 43.17067 ], [ -3.69851, 43.13208 ], [ -3.74495, 43.09384 ], [ -3.83249, 43.07127 ], [ -3.94717, 42.99753 ], [ -3.9815, 42.93429 ], [ -3.94078, 42.91252 ], [ -3.85487, 42.93968 ], [ -3.84681, 42.91846 ], [ -3.86866, 42.90124 ], [ -3.85131, 42.8479 ], [ -3.8387, 42.80912 ], [ -3.89837, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.99709, 42.79422 ], [ -3.99678, 42.79726 ], [ -4.00139, 42.82501 ], [ -4.00742, 42.82979 ], [ -4.0177, 42.82188 ], [ -4.01795, 42.80872 ], [ -4.03042, 42.80044 ], [ -4.03113, 42.79422 ], [ -4.04593, 42.76657 ], [ -4.08136, 42.76142 ], [ -4.08408, 42.79422 ], [ -4.08739, 42.83413 ], [ -4.15149, 42.80231 ], [ -4.1527, 42.8479 ], [ -4.21303, 42.87477 ], [ -4.26773, 42.95565 ], [ -4.41555, 43.03273 ], [ -4.73702, 43.02092 ], [ -4.75471, 43.06283 ], [ -4.83851, 43.1141 ], [ -4.83919, 43.13208 ], [ -4.84104, 43.18071 ], [ -4.74214, 43.19473 ], [ -4.69424, 43.26377 ], [ -4.52912, 43.28908 ], [ -4.5123, 43.3932 ], [ -4.19044, 43.40357 ], [ -3.83562, 43.47736 ], [ -3.78124, 43.43631 ], [ -3.57822, 43.50204 ], [ -3.40776, 43.42064 ], [ -3.25904, 43.39798 ], [ -3.15334, 43.35322 ] ] ], [ [ [ -3.24882, 43.25996 ], [ -3.26629, 43.20562 ], [ -3.29699, 43.20666 ], [ -3.3051, 43.25247 ], [ -3.24882, 43.25996 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES21", "NUTS_ID": "ES21", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "País Vasco", "geo": "ES21", "time_2018_MEAN": 84.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.41285, 43.32108 ], [ -2.1657, 43.29251 ], [ -2.03377, 43.32532 ], [ -1.83124, 43.3757 ], [ -1.78598, 43.35048 ], [ -1.7289, 43.29609 ], [ -1.83124, 43.24162 ], [ -1.90205, 43.20393 ], [ -1.9153, 43.13208 ], [ -2.01266, 43.06292 ], [ -2.07418, 42.97802 ], [ -2.25081, 42.89569 ], [ -2.24487, 42.8479 ], [ -2.27305, 42.79422 ], [ -2.30714, 42.72933 ], [ -2.31118, 42.66264 ], [ -2.4223, 42.64837 ], [ -2.46759, 42.60788 ], [ -2.45852, 42.58255 ], [ -2.4085, 42.5774 ], [ -2.42072, 42.48927 ], [ -2.64997, 42.49255 ], [ -2.68685, 42.52546 ], [ -2.69829, 42.59853 ], [ -2.75565, 42.61437 ], [ -2.82132, 42.565 ], [ -2.85812, 42.63817 ], [ -2.9445, 42.71043 ], [ -3.12646, 42.77029 ], [ -3.12931, 42.79422 ], [ -3.13568, 42.8479 ], [ -3.16975, 42.85285 ], [ -3.23517, 42.86236 ], [ -3.2308, 42.9201 ], [ -3.20096, 42.93745 ], [ -3.16975, 42.93307 ], [ -3.03026, 42.9135 ], [ -3.00385, 42.93983 ], [ -3.03699, 42.98219 ], [ -3.08902, 43.00158 ], [ -3.1486, 43.03353 ], [ -3.1637, 43.13208 ], [ -3.1414, 43.16148 ], [ -3.16975, 43.16843 ], [ -3.26399, 43.19152 ], [ -3.41768, 43.13337 ], [ -3.43523, 43.23637 ], [ -3.32259, 43.29562 ], [ -3.18407, 43.29322 ], [ -3.16975, 43.32118 ], [ -3.15334, 43.35322 ], [ -3.02739, 43.33254 ], [ -3.0246, 43.37596 ], [ -2.94353, 43.42866 ], [ -2.76099, 43.44756 ], [ -2.41285, 43.32108 ] ], [ [ -2.85514, 42.74197 ], [ -2.82435, 42.70894 ], [ -2.78382, 42.69901 ], [ -2.76733, 42.6663 ], [ -2.71718, 42.66287 ], [ -2.65828, 42.67211 ], [ -2.6383, 42.65012 ], [ -2.58477, 42.65151 ], [ -2.55027, 42.63885 ], [ -2.5188, 42.64767 ], [ -2.52415, 42.68417 ], [ -2.57915, 42.67058 ], [ -2.6071, 42.69599 ], [ -2.56416, 42.73944 ], [ -2.60286, 42.77023 ], [ -2.64347, 42.76504 ], [ -2.73161, 42.79337 ], [ -2.76951, 42.79422 ], [ -2.83502, 42.79422 ], [ -2.85514, 42.74197 ] ], [ [ -3.24882, 43.25996 ], [ -3.3051, 43.25247 ], [ -3.29699, 43.20666 ], [ -3.26629, 43.20562 ], [ -3.24882, 43.25996 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES22", "NUTS_ID": "ES22", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad Foral de Navarra", "geo": "ES22", "time_2018_MEAN": 84.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.7245, 42.92016 ], [ -0.80796, 42.89492 ], [ -0.86956, 42.79422 ], [ -0.90108, 42.74269 ], [ -1.15289, 42.62548 ], [ -1.27321, 42.52042 ], [ -1.32411, 42.40816 ], [ -1.40349, 42.2331 ], [ -1.38909, 42.1348 ], [ -1.32093, 42.04796 ], [ -1.40679, 41.93218 ], [ -1.53267, 41.91553 ], [ -1.84718, 42.00799 ], [ -1.89454, 42.03563 ], [ -1.88713, 42.0871 ], [ -1.83124, 42.13769 ], [ -1.70392, 42.16779 ], [ -1.72368, 42.20173 ], [ -1.83124, 42.24364 ], [ -1.98894, 42.3581 ], [ -2.03377, 42.35502 ], [ -2.06641, 42.35278 ], [ -2.12531, 42.40816 ], [ -2.42072, 42.48927 ], [ -2.4085, 42.5774 ], [ -2.45852, 42.58255 ], [ -2.46759, 42.60788 ], [ -2.4223, 42.64837 ], [ -2.31118, 42.66264 ], [ -2.30714, 42.72933 ], [ -2.27305, 42.79422 ], [ -2.24487, 42.8479 ], [ -2.25081, 42.89569 ], [ -2.07418, 42.97802 ], [ -2.01266, 43.06292 ], [ -1.9153, 43.13208 ], [ -1.90205, 43.20393 ], [ -1.83124, 43.24162 ], [ -1.7289, 43.29609 ], [ -1.65989, 43.30757 ], [ -1.59355, 43.2653 ], [ -1.51317, 43.28597 ], [ -1.40221, 43.25178 ], [ -1.39198, 43.19513 ], [ -1.42659, 43.13208 ], [ -1.45291, 43.08414 ], [ -1.4197, 43.04686 ], [ -1.36436, 43.04237 ], [ -1.30726, 43.09422 ], [ -1.22553, 43.04078 ], [ -0.94924, 42.9622 ], [ -0.77113, 42.95789 ], [ -0.7245, 42.92016 ] ] ], [ [ [ -1.06799, 42.46707 ], [ -1.05567, 42.43267 ], [ -1.13254, 42.44601 ], [ -1.10291, 42.48518 ], [ -1.06799, 42.46707 ] ] ], [ [ [ -1.14573, 42.40049 ], [ -1.18593, 42.39351 ], [ -1.20377, 42.43111 ], [ -1.13615, 42.43676 ], [ -1.14573, 42.40049 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES23", "NUTS_ID": "ES23", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "La Rioja", "geo": "ES23", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42072, 42.48927 ], [ -2.12531, 42.40816 ], [ -2.06641, 42.35278 ], [ -2.03377, 42.35502 ], [ -1.98894, 42.3581 ], [ -1.83124, 42.24364 ], [ -1.72368, 42.20173 ], [ -1.70392, 42.16779 ], [ -1.83124, 42.13769 ], [ -1.88713, 42.0871 ], [ -1.89454, 42.03563 ], [ -1.84718, 42.00799 ], [ -1.85654, 41.96639 ], [ -1.96477, 41.92379 ], [ -2.03377, 41.94274 ], [ -2.09509, 41.95958 ], [ -2.145, 42.09557 ], [ -2.26046, 42.09665 ], [ -2.32442, 42.14224 ], [ -2.5062, 42.10702 ], [ -2.58778, 42.00242 ], [ -2.74217, 42.01631 ], [ -2.71683, 42.09051 ], [ -2.75075, 42.12179 ], [ -2.82003, 42.03801 ], [ -2.91364, 42.02284 ], [ -2.9465, 42.07574 ], [ -3.03901, 42.10346 ], [ -3.11215, 42.19472 ], [ -3.10352, 42.31771 ], [ -3.07365, 42.36786 ], [ -3.10665, 42.40816 ], [ -3.08333, 42.46028 ], [ -3.09818, 42.55135 ], [ -3.05495, 42.61879 ], [ -2.85812, 42.63817 ], [ -2.82132, 42.565 ], [ -2.75565, 42.61437 ], [ -2.69829, 42.59853 ], [ -2.68685, 42.52546 ], [ -2.64997, 42.49255 ], [ -2.42072, 42.48927 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES24", "NUTS_ID": "ES24", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Aragón", "geo": "ES24", "time_2018_MEAN": 83.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.7245, 42.92016 ], [ -0.55415, 42.7966 ], [ -0.40397, 42.80582 ], [ -0.31334, 42.84936 ], [ -0.21568, 42.79422 ], [ -0.02977, 42.68925 ], [ 0.09692, 42.71574 ], [ 0.17812, 42.73271 ], [ 0.2948, 42.68353 ], [ 0.3604, 42.71691 ], [ 0.47776, 42.70002 ], [ 0.66013, 42.69095 ], [ 0.75199, 42.5993 ], [ 0.70566, 42.46145 ], [ 0.72931, 42.40816 ], [ 0.74131, 42.38112 ], [ 0.73598, 42.27477 ], [ 0.65407, 42.01439 ], [ 0.56246, 41.93799 ], [ 0.59959, 41.91336 ], [ 0.59649, 41.87383 ], [ 0.33437, 41.67951 ], [ 0.35796, 41.60707 ], [ 0.42179, 41.59523 ], [ 0.44004, 41.55235 ], [ 0.35545, 41.48061 ], [ 0.33595, 41.40743 ], [ 0.38572, 41.27884 ], [ 0.29668, 41.17056 ], [ 0.2228, 41.12744 ], [ 0.22041, 41.07143 ], [ 0.28333, 40.9792 ], [ 0.25382, 40.89781 ], [ 0.26738, 40.82361 ], [ 0.17079, 40.73284 ], [ 0.09692, 40.7134 ], [ 0.04533, 40.69983 ], [ -0.1763, 40.78375 ], [ -0.2549, 40.68447 ], [ -0.36065, 40.66838 ], [ -0.3611, 40.61731 ], [ -0.29471, 40.59377 ], [ -0.28364, 40.4781 ], [ -0.3355, 40.44009 ], [ -0.29042, 40.37193 ], [ -0.41424, 40.25162 ], [ -0.54327, 40.23918 ], [ -0.64002, 40.07142 ], [ -0.75487, 40.03781 ], [ -0.82917, 39.97489 ], [ -0.83772, 39.93001 ], [ -0.79764, 39.88108 ], [ -0.88694, 39.86005 ], [ -0.91504, 39.94085 ], [ -0.9865, 39.97712 ], [ -1.14236, 39.97186 ], [ -1.16515, 40.01011 ], [ -1.09588, 40.03643 ], [ -1.09102, 40.07139 ], [ -1.14758, 40.10984 ], [ -1.23776, 40.12156 ], [ -1.2935, 40.1885 ], [ -1.34961, 40.13502 ], [ -1.44883, 40.14536 ], [ -1.44949, 40.18936 ], [ -1.55196, 40.20242 ], [ -1.67314, 40.29855 ], [ -1.70594, 40.29821 ], [ -1.80634, 40.39825 ], [ -1.70208, 40.48854 ], [ -1.67314, 40.59067 ], [ -1.57743, 40.57608 ], [ -1.54166, 40.66325 ], [ -1.54528, 40.80248 ], [ -1.61185, 40.87889 ], [ -1.61743, 40.94374 ], [ -1.67314, 40.98359 ], [ -1.83124, 41.08325 ], [ -1.9601, 41.16447 ], [ -2.03377, 41.1503 ], [ -2.05169, 41.14686 ], [ -2.14519, 41.1966 ], [ -2.16616, 41.32902 ], [ -2.10106, 41.43673 ], [ -2.03377, 41.39676 ], [ -1.96654, 41.42359 ], [ -1.97469, 41.59289 ], [ -1.83124, 41.68308 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.85549 ], [ -1.85654, 41.96639 ], [ -1.84718, 42.00799 ], [ -1.53267, 41.91553 ], [ -1.40679, 41.93218 ], [ -1.32093, 42.04796 ], [ -1.38909, 42.1348 ], [ -1.40349, 42.2331 ], [ -1.32411, 42.40816 ], [ -1.27321, 42.52042 ], [ -1.15289, 42.62548 ], [ -0.90108, 42.74269 ], [ -0.86956, 42.79422 ], [ -0.80796, 42.89492 ], [ -0.7245, 42.92016 ] ], [ [ -1.06799, 42.46707 ], [ -1.10291, 42.48518 ], [ -1.13254, 42.44601 ], [ -1.05567, 42.43267 ], [ -1.06799, 42.46707 ] ], [ [ -1.14573, 42.40049 ], [ -1.13615, 42.43676 ], [ -1.20377, 42.43111 ], [ -1.18593, 42.39351 ], [ -1.14573, 42.40049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES30", "NUTS_ID": "ES30", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Comunidad de Madrid", "geo": "ES30", "time_2018_MEAN": 85.366666666666674 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.06769, 40.15788 ], [ -3.06832, 40.09292 ], [ -3.16142, 40.0649 ], [ -3.34521, 40.06992 ], [ -3.50842, 40.03477 ], [ -3.82335, 39.9 ], [ -3.84934, 39.93132 ], [ -3.65324, 40.0389 ], [ -3.63185, 40.10814 ], [ -4.18638, 40.27954 ], [ -4.30969, 40.23569 ], [ -4.37627, 40.29891 ], [ -4.46186, 40.23597 ], [ -4.57908, 40.2172 ], [ -4.5382, 40.33062 ], [ -4.46177, 40.32482 ], [ -4.42458, 40.3986 ], [ -4.33879, 40.42214 ], [ -4.31503, 40.5469 ], [ -4.2705, 40.59783 ], [ -4.17342, 40.62321 ], [ -4.16029, 40.68985 ], [ -4.07399, 40.78391 ], [ -3.97912, 40.79493 ], [ -3.89935, 40.95828 ], [ -3.78503, 41.00385 ], [ -3.61386, 41.14587 ], [ -3.53957, 41.16499 ], [ -3.43866, 41.08002 ], [ -3.40336, 40.99939 ], [ -3.47847, 40.82446 ], [ -3.45602, 40.69113 ], [ -3.37751, 40.66953 ], [ -3.28172, 40.55043 ], [ -3.20738, 40.51286 ], [ -3.19286, 40.45054 ], [ -3.16975, 40.43068 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.30661 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.25726 ], [ -3.10717, 40.27255 ], [ -3.06769, 40.15788 ] ] ], [ [ [ -4.31934, 40.6476 ], [ -4.32334, 40.65742 ], [ -4.31468, 40.6672 ], [ -4.28823, 40.68061 ], [ -4.27416, 40.67709 ], [ -4.26915, 40.65533 ], [ -4.31934, 40.6476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE05", "NUTS_ID": "IE05", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Southern", "geo": "IE05", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.67408, 52.78129 ], [ -7.57782, 52.81799 ], [ -7.40546, 52.80199 ], [ -7.20386, 52.88873 ], [ -7.09388, 52.82346 ], [ -7.06035, 52.80187 ], [ -6.96563, 52.81388 ], [ -6.93941, 52.88005 ], [ -6.79502, 52.86975 ], [ -6.70677, 52.9149 ], [ -6.52096, 52.87628 ], [ -6.54288, 52.81305 ], [ -6.66275, 52.82707 ], [ -6.70319, 52.78945 ], [ -6.55421, 52.68851 ], [ -6.48675, 52.6992 ], [ -6.35527, 52.79463 ], [ -6.25038, 52.78531 ], [ -6.14452, 52.7377 ], [ -6.21633, 52.6439 ], [ -6.22278, 52.53141 ], [ -6.37206, 52.35999 ], [ -6.43442, 52.33523 ], [ -6.33551, 52.23926 ], [ -6.36936, 52.18655 ], [ -6.56389, 52.18006 ], [ -6.79434, 52.23458 ], [ -6.87303, 52.17147 ], [ -6.95653, 52.22881 ], [ -6.9883, 52.16193 ], [ -7.06417, 52.13718 ], [ -7.36097, 52.1374 ], [ -7.59016, 52.0954 ], [ -7.6136, 52.07907 ], [ -7.58725, 52.03091 ], [ -7.61084, 51.99128 ], [ -7.72818, 51.94963 ], [ -7.84216, 51.95422 ], [ -8.02129, 51.8462 ], [ -8.26254, 51.80993 ], [ -8.40992, 51.71006 ], [ -8.6971, 51.60657 ], [ -9.29753, 51.49698 ], [ -9.65198, 51.5203 ], [ -9.59759, 51.67463 ], [ -9.96911, 51.63729 ], [ -9.99205, 51.6777 ], [ -9.94675, 51.77789 ], [ -10.13292, 51.78934 ], [ -10.33071, 51.86142 ], [ -10.30083, 51.92986 ], [ -10.04865, 52.03794 ], [ -10.01664, 52.08162 ], [ -10.35384, 52.12618 ], [ -10.38743, 52.1576 ], [ -10.36931, 52.19407 ], [ -10.19241, 52.26193 ], [ -9.90727, 52.26559 ], [ -9.79729, 52.4629 ], [ -9.59654, 52.55492 ], [ -9.36519, 52.57212 ], [ -9.65881, 52.66332 ], [ -9.45178, 52.83498 ], [ -9.38678, 52.9968 ], [ -9.31014, 53.07895 ], [ -9.01716, 53.14304 ], [ -9.00768, 53.11075 ], [ -8.94981, 53.08515 ], [ -8.90239, 53.06009 ], [ -8.86723, 52.98026 ], [ -8.78716, 52.9786 ], [ -8.70806, 53.02629 ], [ -8.59027, 53.04188 ], [ -8.48485, 52.9809 ], [ -8.35279, 52.97666 ], [ -8.08146, 53.16688 ], [ -7.92805, 53.09767 ], [ -7.99556, 52.98404 ], [ -7.98714, 52.9448 ], [ -8.03939, 52.92973 ], [ -8.03637, 52.90133 ], [ -7.96811, 52.85964 ], [ -7.82307, 52.96886 ], [ -7.76304, 52.96857 ], [ -7.6851, 52.92412 ], [ -7.72709, 52.86544 ], [ -7.67408, 52.78129 ] ] ], [ [ [ -10.10793, 51.58805 ], [ -10.14035, 51.57741 ], [ -10.16183, 51.60438 ], [ -10.14479, 51.63164 ], [ -10.1118, 51.62474 ], [ -10.10793, 51.58805 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE06", "NUTS_ID": "IE06", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Eastern and Midland", "geo": "IE06", "time_2018_MEAN": 82.466666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -6.2149, 53.63341 ], [ -6.16443, 53.60461 ], [ -6.10641, 53.57378 ], [ -6.08536, 53.52722 ], [ -6.13727, 53.45822 ], [ -6.13356, 53.39375 ], [ -6.20737, 53.33861 ], [ -6.10673, 53.27816 ], [ -6.10277, 53.21077 ], [ -6.04496, 53.11637 ], [ -6.04173, 53.00091 ], [ -6.00994, 52.95371 ], [ -6.13066, 52.8055 ], [ -6.14452, 52.7377 ], [ -6.25038, 52.78531 ], [ -6.35527, 52.79463 ], [ -6.48675, 52.6992 ], [ -6.55421, 52.68851 ], [ -6.70319, 52.78945 ], [ -6.66275, 52.82707 ], [ -6.54288, 52.81305 ], [ -6.52096, 52.87628 ], [ -6.70677, 52.9149 ], [ -6.79502, 52.86975 ], [ -6.93941, 52.88005 ], [ -6.96563, 52.81388 ], [ -7.06035, 52.80187 ], [ -7.09388, 52.82346 ], [ -7.20386, 52.88873 ], [ -7.40546, 52.80199 ], [ -7.57782, 52.81799 ], [ -7.67408, 52.78129 ], [ -7.72709, 52.86544 ], [ -7.6851, 52.92412 ], [ -7.76304, 52.96857 ], [ -7.82307, 52.96886 ], [ -7.96811, 52.85964 ], [ -8.03637, 52.90133 ], [ -8.03939, 52.92973 ], [ -7.98714, 52.9448 ], [ -7.99556, 52.98404 ], [ -7.92805, 53.09767 ], [ -8.08146, 53.16688 ], [ -7.98193, 53.21106 ], [ -8.0442, 53.28946 ], [ -7.9209, 53.37204 ], [ -7.9782, 53.5412 ], [ -8.03357, 53.60461 ], [ -8.02058, 53.65159 ], [ -7.88998, 53.76856 ], [ -7.91877, 53.82149 ], [ -7.7972, 53.81931 ], [ -7.63063, 53.93787 ], [ -7.56678, 53.90354 ], [ -7.56195, 53.86274 ], [ -7.48769, 53.8507 ], [ -7.43634, 53.79137 ], [ -7.34383, 53.79906 ], [ -6.99213, 53.78251 ], [ -6.91261, 53.87591 ], [ -6.68503, 53.91794 ], [ -6.58147, 53.98268 ], [ -6.59499, 54.04467 ], [ -6.26802, 54.10234 ], [ -6.11519, 54.00731 ], [ -6.17012, 53.98268 ], [ -6.19248, 53.98268 ], [ -6.32633, 54.00649 ], [ -6.34752, 53.98268 ], [ -6.35025, 53.90194 ], [ -6.2482, 53.83901 ], [ -6.2149, 53.63341 ] ] ], [ [ [ -6.03007, 53.37785 ], [ -6.07923, 53.35187 ], [ -6.116, 53.38466 ], [ -6.07028, 53.39812 ], [ -6.03007, 53.37785 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IS00", "NUTS_ID": "IS00", "LEVL_CODE": 2, "CNTR_CODE": "IS", "NUTS_NAME": "Ísland", "geo": "IS00", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.0074, 63.83599 ], [ -22.13087, 63.8366 ], [ -22.3454, 63.85118 ], [ -22.70225, 63.8074 ], [ -22.7268, 63.88043 ], [ -22.69795, 63.93337 ], [ -22.73383, 63.98283 ], [ -22.67905, 64.07784 ], [ -22.58121, 64.04165 ], [ -22.52495, 63.98787 ], [ -22.44405, 63.97255 ], [ -22.12551, 64.0406 ], [ -22.02445, 64.05444 ], [ -21.96658, 64.13977 ], [ -21.81689, 64.18594 ], [ -21.85974, 64.2514 ], [ -21.74611, 64.32965 ], [ -21.60229, 64.36858 ], [ -21.37317, 64.38003 ], [ -21.64232, 64.38836 ], [ -21.97832, 64.32958 ], [ -21.98297, 64.42498 ], [ -21.93881, 64.5172 ], [ -22.22778, 64.5098 ], [ -22.33409, 64.59355 ], [ -22.37099, 64.74456 ], [ -22.47206, 64.78954 ], [ -23.29761, 64.81943 ], [ -23.79348, 64.74044 ], [ -23.90828, 64.76997 ], [ -23.98635, 64.84223 ], [ -23.8503, 64.91057 ], [ -23.63572, 64.90419 ], [ -23.38325, 64.95365 ], [ -23.25308, 64.94965 ], [ -23.16612, 64.98314 ], [ -23.07324, 64.95781 ], [ -22.75814, 65.04886 ], [ -22.63035, 65.02711 ], [ -22.43806, 65.06658 ], [ -21.88278, 65.03815 ], [ -21.78259, 65.12842 ], [ -21.75683, 65.15163 ], [ -21.81301, 65.18537 ], [ -22.08325, 65.12842 ], [ -22.14263, 65.12842 ], [ -22.45653, 65.1971 ], [ -22.40931, 65.25012 ], [ -22.16954, 65.3488 ], [ -21.99536, 65.43438 ], [ -22.06425, 65.47986 ], [ -22.27764, 65.4706 ], [ -22.50926, 65.5656 ], [ -22.69999, 65.57874 ], [ -22.78986, 65.55572 ], [ -22.89885, 65.58068 ], [ -23.29017, 65.49546 ], [ -23.84211, 65.42504 ], [ -24.31733, 65.55872 ], [ -24.24855, 65.60925 ], [ -24.00962, 65.59689 ], [ -23.99862, 65.65158 ], [ -24.04293, 65.73681 ], [ -24.01336, 65.76418 ], [ -23.7021, 65.70957 ], [ -23.54008, 65.64951 ], [ -23.47354, 65.6591 ], [ -23.44376, 65.74685 ], [ -23.66314, 65.79094 ], [ -23.79076, 65.87268 ], [ -23.6769, 65.92437 ], [ -23.69912, 66.02623 ], [ -23.47242, 66.15914 ], [ -23.19932, 66.13749 ], [ -22.87346, 66.00256 ], [ -22.68473, 66.00313 ], [ -22.57834, 65.93111 ], [ -22.43676, 65.90779 ], [ -22.42766, 65.9714 ], [ -22.50194, 66.05418 ], [ -22.86846, 66.19354 ], [ -22.799, 66.24391 ], [ -22.65332, 66.2609 ], [ -22.65206, 66.29763 ], [ -22.73968, 66.32896 ], [ -22.98414, 66.32002 ], [ -23.04974, 66.36078 ], [ -23.03327, 66.41217 ], [ -22.95815, 66.44133 ], [ -22.47948, 66.43636 ], [ -22.17028, 66.28389 ], [ -21.91436, 66.22401 ], [ -21.67818, 66.08322 ], [ -21.40601, 65.97805 ], [ -21.33526, 65.8719 ], [ -21.37281, 65.78959 ], [ -21.60281, 65.72454 ], [ -21.62881, 65.69207 ], [ -21.57935, 65.64868 ], [ -21.35639, 65.5652 ], [ -21.18532, 65.3488 ], [ -21.12505, 65.28366 ], [ -21.08931, 65.3488 ], [ -21.06837, 65.38697 ], [ -20.97526, 65.41839 ], [ -20.94442, 65.5111 ], [ -20.87926, 65.57775 ], [ -20.85798, 65.59951 ], [ -20.71334, 65.65413 ], [ -20.54741, 65.61676 ], [ -20.33602, 65.66788 ], [ -20.30345, 65.76414 ], [ -20.39373, 66.00094 ], [ -20.31901, 66.08899 ], [ -20.19544, 66.10957 ], [ -20.10241, 66.09328 ], [ -19.64311, 65.77966 ], [ -19.50998, 65.75424 ], [ -19.40239, 65.81601 ], [ -19.43923, 65.95139 ], [ -19.378, 66.03943 ], [ -18.97923, 66.16045 ], [ -18.79464, 66.1631 ], [ -18.62002, 66.10318 ], [ -18.47525, 65.97866 ], [ -18.25122, 65.86533 ], [ -18.12096, 65.75563 ], [ -18.10829, 65.852 ], [ -18.26538, 66.03653 ], [ -18.28086, 66.09149 ], [ -18.2541, 66.1289 ], [ -17.96315, 66.13415 ], [ -17.65651, 66.01614 ], [ -17.49045, 66.00606 ], [ -17.16445, 66.17851 ], [ -17.03964, 66.18366 ], [ -16.84134, 66.14302 ], [ -16.54937, 66.2049 ], [ -16.47017, 66.28742 ], [ -16.47881, 66.47612 ], [ -16.08948, 66.51521 ], [ -15.78316, 66.40268 ], [ -15.66552, 66.25116 ], [ -15.4608, 66.18907 ], [ -14.93682, 66.32162 ], [ -14.9786, 66.20499 ], [ -15.07217, 66.10558 ], [ -14.97797, 66.04449 ], [ -14.75769, 66.03526 ], [ -14.68369, 66.00301 ], [ -14.66969, 65.92909 ], [ -14.77066, 65.82285 ], [ -14.77756, 65.77001 ], [ -14.40788, 65.76386 ], [ -14.22549, 65.66373 ], [ -13.70172, 65.51683 ], [ -13.66658, 65.43197 ], [ -13.70399, 65.3488 ], [ -13.71958, 65.31415 ], [ -13.60508, 65.12842 ], [ -13.55855, 65.09747 ], [ -13.68227, 65.00748 ], [ -13.83558, 65.00351 ], [ -13.80821, 64.92993 ], [ -13.82417, 64.8536 ], [ -14.08719, 64.71418 ], [ -14.33993, 64.71304 ], [ -14.36989, 64.65687 ], [ -14.52121, 64.56923 ], [ -14.51045, 64.49723 ], [ -14.5461, 64.44072 ], [ -14.72431, 64.39799 ], [ -14.96621, 64.26802 ], [ -15.37789, 64.26777 ], [ -15.9368, 64.13386 ], [ -16.68103, 63.80523 ], [ -17.59925, 63.72585 ], [ -17.74091, 63.67906 ], [ -17.95456, 63.53644 ], [ -18.16549, 63.46997 ], [ -18.69994, 63.40177 ], [ -19.11902, 63.40734 ], [ -19.38448, 63.45313 ], [ -19.77761, 63.52327 ], [ -20.17194, 63.54282 ], [ -20.48084, 63.65844 ], [ -20.68755, 63.73581 ], [ -21.19718, 63.86872 ], [ -21.60761, 63.82825 ], [ -21.79584, 63.85879 ], [ -22.0074, 63.83599 ] ] ], [ [ [ -14.58476, 66.35435 ], [ -14.6503, 66.34156 ], [ -14.66871, 66.36069 ], [ -14.60636, 66.38631 ], [ -14.58476, 66.35435 ] ] ], [ [ [ -17.96977, 66.54089 ], [ -17.99067, 66.52114 ], [ -18.04387, 66.55215 ], [ -18.03147, 66.58179 ], [ -17.96977, 66.54089 ] ] ], [ [ [ -18.34269, 65.99292 ], [ -18.37961, 65.96966 ], [ -18.41528, 65.99149 ], [ -18.39721, 66.02489 ], [ -18.34269, 65.99292 ] ] ], [ [ [ -20.23208, 63.42797 ], [ -20.27992, 63.40755 ], [ -20.30745, 63.43409 ], [ -20.30192, 63.44718 ], [ -20.23635, 63.44608 ], [ -20.23208, 63.42797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC3", "NUTS_ID": "ITC3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Liguria", "geo": "ITC3", "time_2018_MEAN": 82.999999999999986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203, 44.61348 ], [ 9.49336, 44.55586 ], [ 9.49764, 44.5002 ], [ 9.4512, 44.429 ], [ 9.47906, 44.40924 ], [ 9.60346, 44.43127 ], [ 9.68673, 44.36592 ], [ 9.95493, 44.16548 ], [ 10.05908, 44.0974 ], [ 10.01877, 44.04454 ], [ 9.95493, 44.04369 ], [ 9.8533, 44.10253 ], [ 9.82806, 44.09311 ], [ 9.843, 44.05565 ], [ 9.82004, 44.05702 ], [ 9.51134, 44.21668 ], [ 9.27898, 44.33085 ], [ 9.18624, 44.31052 ], [ 9.06034, 44.37887 ], [ 8.75923, 44.42318 ], [ 8.63301, 44.3798 ], [ 8.47334, 44.3022 ], [ 8.40013, 44.1868 ], [ 8.26638, 44.13145 ], [ 8.13535, 43.93894 ], [ 7.95575, 43.85129 ], [ 7.66893, 43.7815 ], [ 7.52983, 43.78401 ], [ 7.5084, 43.86914 ], [ 7.71424, 44.06151 ], [ 7.7592, 44.13445 ], [ 8.01563, 44.11068 ], [ 7.99475, 44.14294 ], [ 8.08681, 44.17415 ], [ 8.07407, 44.30076 ], [ 8.20851, 44.41426 ], [ 8.20816, 44.47614 ], [ 8.25282, 44.52874 ], [ 8.2616, 44.51942 ], [ 8.36606, 44.47252 ], [ 8.41512, 44.50247 ], [ 8.57618, 44.50921 ], [ 8.6528, 44.58428 ], [ 8.71532, 44.57518 ], [ 8.78522, 44.50727 ], [ 8.83665, 44.55594 ], [ 8.90905, 44.56735 ], [ 8.89434, 44.63598 ], [ 8.91495, 44.6554 ], [ 8.92663, 44.67161 ], [ 8.94945, 44.67475 ], [ 9.0234, 44.6554 ], [ 9.13002, 44.58056 ], [ 9.203, 44.61348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI19", "NUTS_ID": "FI19", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Länsi-Suomi", "geo": "FI19", "time_2018_MEAN": 81.966666666666654 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.86695, 63.83819 ], [ 22.87813, 63.78682 ], [ 22.93355, 63.77896 ], [ 22.98905, 63.78802 ], [ 23.01289, 63.79142 ], [ 23.12347, 63.75623 ], [ 23.2241, 63.72492 ], [ 23.25146, 63.7296 ], [ 23.49206, 63.77078 ], [ 23.70674, 63.68824 ], [ 23.69966, 63.66331 ], [ 23.48639, 63.65251 ], [ 23.46759, 63.62864 ], [ 23.6431, 63.52666 ], [ 23.69699, 63.38033 ], [ 23.83061, 63.28845 ], [ 24.05435, 63.25739 ], [ 24.23151, 63.17264 ], [ 24.24254, 63.13608 ], [ 24.35901, 63.11643 ], [ 24.53075, 63.15749 ], [ 24.57128, 63.15345 ], [ 24.7212, 63.14767 ], [ 24.79463, 63.28238 ], [ 24.78883, 63.36538 ], [ 24.90211, 63.42872 ], [ 25.03632, 63.45808 ], [ 25.0942, 63.48251 ], [ 25.151, 63.57521 ], [ 25.25092, 63.60768 ], [ 25.49509, 63.53125 ], [ 25.78545, 63.49946 ], [ 25.91279, 63.43835 ], [ 26.13865, 63.45759 ], [ 26.16305, 63.43471 ], [ 26.08268, 63.35559 ], [ 26.17558, 63.23315 ], [ 26.16623, 63.153 ], [ 26.27381, 63.05623 ], [ 26.23558, 63.02371 ], [ 26.31907, 62.97531 ], [ 26.27477, 62.93602 ], [ 26.13262, 62.95235 ], [ 26.05194, 62.91879 ], [ 26.34415, 62.75679 ], [ 26.44568, 62.78172 ], [ 26.50706, 62.74011 ], [ 26.59286, 62.61765 ], [ 26.48386, 62.51906 ], [ 26.58376, 62.4756 ], [ 26.6322, 62.4539 ], [ 26.70913, 62.45295 ], [ 26.69185, 62.40563 ], [ 26.74718, 62.35952 ], [ 26.68163, 62.33924 ], [ 26.63454, 62.28792 ], [ 26.64197, 62.2245 ], [ 26.52062, 62.25788 ], [ 26.45654, 62.21579 ], [ 26.31625, 62.19569 ], [ 26.23401, 62.12499 ], [ 26.40033, 61.98099 ], [ 26.33908, 61.93662 ], [ 26.3739, 61.81814 ], [ 26.47303, 61.75871 ], [ 26.5275, 61.68535 ], [ 26.50754, 61.63416 ], [ 26.38971, 61.65232 ], [ 26.31504, 61.60845 ], [ 26.2857, 61.64853 ], [ 26.14459, 61.62852 ], [ 26.08617, 61.66559 ], [ 26.06101, 61.72485 ], [ 25.9406, 61.77579 ], [ 25.8769, 61.76551 ], [ 25.8644, 61.79072 ], [ 25.77278, 61.69557 ], [ 25.67592, 61.71319 ], [ 25.51172, 61.6722 ], [ 25.42466, 61.48898 ], [ 24.97047, 61.45071 ], [ 24.88705, 61.44977 ], [ 24.91393, 61.32488 ], [ 24.82118, 61.2795 ], [ 24.56589, 61.2976 ], [ 24.31113, 61.23284 ], [ 24.22281, 61.15347 ], [ 23.8152, 61.06931 ], [ 23.85172, 61.02191 ], [ 23.82025, 60.96774 ], [ 23.72525, 60.99965 ], [ 23.43941, 60.97718 ], [ 23.33435, 61.01206 ], [ 23.25146, 61.0068 ], [ 23.19535, 61.00122 ], [ 23.14483, 61.03161 ], [ 23.01694, 61.02629 ], [ 22.9648, 61.04995 ], [ 22.83492, 61.08817 ], [ 22.77266, 60.9984 ], [ 22.5953, 60.98536 ], [ 22.15426, 60.88714 ], [ 22.00795, 60.91391 ], [ 21.81517, 61.02054 ], [ 21.69357, 61.00532 ], [ 21.62045, 61.03301 ], [ 21.49689, 61.00549 ], [ 21.41993, 61.04744 ], [ 21.46563, 61.09455 ], [ 21.43538, 61.22381 ], [ 21.53645, 61.33201 ], [ 21.48975, 61.41762 ], [ 21.55415, 61.44055 ], [ 21.52734, 61.49184 ], [ 21.58664, 61.51943 ], [ 21.54442, 61.57244 ], [ 21.62712, 61.5886 ], [ 21.50568, 61.77346 ], [ 21.46365, 61.79621 ], [ 21.47458, 61.83596 ], [ 21.42795, 61.91707 ], [ 21.33874, 61.95571 ], [ 21.30955, 62.06994 ], [ 21.37864, 62.21054 ], [ 21.33337, 62.34688 ], [ 21.21293, 62.36771 ], [ 21.14445, 62.50087 ], [ 21.0685, 62.54847 ], [ 21.17972, 62.58902 ], [ 21.09405, 62.66206 ], [ 21.18247, 62.81911 ], [ 21.17498, 62.86305 ], [ 21.38054, 62.89772 ], [ 21.35999, 62.94907 ], [ 21.44395, 62.95353 ], [ 21.49668, 63.05243 ], [ 21.6122, 63.06765 ], [ 21.53638, 63.17769 ], [ 21.57231, 63.25489 ], [ 21.68099, 63.22953 ], [ 21.92302, 63.26388 ], [ 22.02668, 63.37456 ], [ 22.26577, 63.29682 ], [ 22.33846, 63.30617 ], [ 22.34934, 63.35746 ], [ 22.23905, 63.45761 ], [ 22.26089, 63.49486 ], [ 22.36242, 63.58601 ], [ 22.38454, 63.52032 ], [ 22.43945, 63.51346 ], [ 22.53905, 63.65734 ], [ 22.67898, 63.71984 ], [ 22.68186, 63.79057 ], [ 22.60637, 63.76405 ], [ 22.59649, 63.80899 ], [ 22.72881, 63.84396 ], [ 22.75935, 63.88783 ], [ 22.86695, 63.83819 ] ] ], [ [ [ 22.46261, 63.57883 ], [ 22.42417, 63.54898 ], [ 22.39258, 63.59226 ], [ 22.43649, 63.60423 ], [ 22.46261, 63.57883 ] ] ], [ [ [ 21.83699, 63.43933 ], [ 21.80372, 63.4108 ], [ 21.77235, 63.43055 ], [ 21.77151, 63.45328 ], [ 21.80994, 63.46046 ], [ 21.83699, 63.43933 ] ] ], [ [ [ 21.75621, 63.31353 ], [ 21.76657, 63.29341 ], [ 21.75294, 63.27745 ], [ 21.68845, 63.29498 ], [ 21.66245, 63.26301 ], [ 21.63728, 63.2732 ], [ 21.64609, 63.31031 ], [ 21.68845, 63.3254 ], [ 21.75621, 63.31353 ] ] ], [ [ [ 21.75591, 63.46474 ], [ 21.75006, 63.41484 ], [ 21.69675, 63.44216 ], [ 21.71684, 63.47036 ], [ 21.75591, 63.46474 ] ] ], [ [ [ 21.51644, 61.60988 ], [ 21.43912, 61.59642 ], [ 21.4113, 61.62344 ], [ 21.44833, 61.63653 ], [ 21.44626, 61.66285 ], [ 21.51506, 61.65213 ], [ 21.51644, 61.60988 ] ] ], [ [ [ 21.42959, 63.01674 ], [ 21.38107, 62.99466 ], [ 21.35161, 63.03549 ], [ 21.39875, 63.04195 ], [ 21.4162, 63.08397 ], [ 21.4537, 63.06964 ], [ 21.42959, 63.01674 ] ] ], [ [ [ 21.44602, 63.21157 ], [ 21.28883, 63.15823 ], [ 21.16434, 63.19494 ], [ 21.09339, 63.27883 ], [ 21.23813, 63.38917 ], [ 21.28449, 63.36151 ], [ 21.40419, 63.35759 ], [ 21.39273, 63.30555 ], [ 21.43699, 63.26509 ], [ 21.44602, 63.21157 ] ] ], [ [ [ 21.39626, 61.18464 ], [ 21.36393, 61.16889 ], [ 21.33884, 61.1825 ], [ 21.36667, 61.21941 ], [ 21.40629, 61.21136 ], [ 21.39626, 61.18464 ] ] ], [ [ [ 21.21178, 62.94997 ], [ 21.15244, 62.94825 ], [ 21.14065, 62.99164 ], [ 21.19149, 63.02601 ], [ 21.21673, 63.00523 ], [ 21.21178, 62.94997 ] ] ], [ [ [ 21.10174, 62.72157 ], [ 21.07855, 62.6986 ], [ 21.04491, 62.71093 ], [ 21.04142, 62.74189 ], [ 21.08379, 62.74717 ], [ 21.10174, 62.72157 ] ] ], [ [ [ 21.08173, 63.44701 ], [ 21.08581, 63.40026 ], [ 21.028, 63.41601 ], [ 21.03814, 63.44785 ], [ 21.08173, 63.44701 ] ] ], [ [ [ 20.86821, 62.96415 ], [ 20.84352, 62.94721 ], [ 20.79951, 62.99017 ], [ 20.82546, 63.01278 ], [ 20.86821, 62.96415 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1B", "NUTS_ID": "FI1B", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Helsinki-Uusimaa", "geo": "FI1B", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.5516, 60.36655 ], [ 26.52511, 60.33371 ], [ 26.49379, 60.35741 ], [ 26.50374, 60.375 ], [ 26.5516, 60.36655 ] ] ], [ [ [ 26.20836, 60.75799 ], [ 26.29489, 60.74721 ], [ 26.35377, 60.66538 ], [ 26.53287, 60.58728 ], [ 26.53494, 60.55771 ], [ 26.45393, 60.48765 ], [ 26.41986, 60.42615 ], [ 26.36185, 60.40203 ], [ 26.26172, 60.42339 ], [ 26.17572, 60.39097 ], [ 26.05724, 60.40525 ], [ 26.07835, 60.31198 ], [ 25.999, 60.28855 ], [ 25.96269, 60.2892 ], [ 25.92023, 60.34537 ], [ 25.87591, 60.27836 ], [ 25.78524, 60.2579 ], [ 25.63547, 60.317 ], [ 25.62837, 60.2497 ], [ 25.54949, 60.30828 ], [ 25.44682, 60.24456 ], [ 25.25761, 60.24401 ], [ 25.05651, 60.15598 ], [ 24.81567, 60.17434 ], [ 24.65987, 60.114 ], [ 24.47597, 59.99589 ], [ 24.31891, 60.07185 ], [ 24.02639, 60.01074 ], [ 23.92279, 59.94714 ], [ 23.54909, 59.93086 ], [ 23.43656, 59.89983 ], [ 23.3989, 59.86128 ], [ 23.34744, 59.91418 ], [ 23.17233, 59.84021 ], [ 23.06098, 59.83923 ], [ 23.05434, 59.85899 ], [ 23.15471, 59.91677 ], [ 23.09764, 59.98215 ], [ 23.03145, 59.93215 ], [ 22.90098, 59.93985 ], [ 22.90923, 59.97541 ], [ 22.99837, 60.01202 ], [ 23.0296, 60.10084 ], [ 23.14483, 60.10002 ], [ 23.25146, 60.15382 ], [ 23.61856, 60.20141 ], [ 23.63483, 60.27058 ], [ 23.71424, 60.3152 ], [ 23.774, 60.41449 ], [ 23.74955, 60.47542 ], [ 23.87026, 60.52885 ], [ 23.90049, 60.64976 ], [ 24.19242, 60.62244 ], [ 24.28136, 60.58179 ], [ 24.3645, 60.59861 ], [ 24.47033, 60.56071 ], [ 24.5556, 60.57893 ], [ 24.57915, 60.63911 ], [ 24.62518, 60.6603 ], [ 25.08389, 60.67724 ], [ 25.12232, 60.71321 ], [ 25.11097, 60.81858 ], [ 25.20646, 60.82928 ], [ 25.35264, 60.75709 ], [ 25.46255, 60.79119 ], [ 25.53192, 60.70228 ], [ 25.60292, 60.6766 ], [ 25.88351, 60.73314 ], [ 25.95192, 60.70803 ], [ 26.13081, 60.69308 ], [ 26.2017, 60.71642 ], [ 26.20836, 60.75799 ] ] ], [ [ [ 26.48079, 60.38094 ], [ 26.47715, 60.35708 ], [ 26.41534, 60.35886 ], [ 26.40325, 60.37181 ], [ 26.43042, 60.39357 ], [ 26.48079, 60.38094 ] ] ], [ [ [ 26.23629, 60.3349 ], [ 26.22615, 60.30702 ], [ 26.18733, 60.31411 ], [ 26.16811, 60.3429 ], [ 26.2033, 60.35449 ], [ 26.23629, 60.3349 ] ] ], [ [ [ 25.87954, 60.20538 ], [ 25.82614, 60.1931 ], [ 25.79941, 60.19778 ], [ 25.82288, 60.22941 ], [ 25.87212, 60.22795 ], [ 25.87954, 60.20538 ] ] ], [ [ [ 22.8545, 59.97953 ], [ 22.82424, 59.96366 ], [ 22.80405, 60.02602 ], [ 22.8336, 60.03501 ], [ 22.8545, 59.97953 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1C", "NUTS_ID": "FI1C", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Etelä-Suomi", "geo": "FI1C", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.99128, 60.66898 ], [ 27.80357, 60.54862 ], [ 27.74132, 60.56525 ], [ 27.72757, 60.49316 ], [ 27.61014, 60.4757 ], [ 27.49951, 60.50163 ], [ 27.42667, 60.47127 ], [ 27.37912, 60.50433 ], [ 27.1835, 60.53943 ], [ 27.04838, 60.5264 ], [ 26.94774, 60.48657 ], [ 26.91296, 60.4261 ], [ 26.84932, 60.4665 ], [ 26.76375, 60.46735 ], [ 26.61839, 60.41595 ], [ 26.45393, 60.48765 ], [ 26.53494, 60.55771 ], [ 26.53287, 60.58728 ], [ 26.35377, 60.66538 ], [ 26.29489, 60.74721 ], [ 26.20836, 60.75799 ], [ 26.2017, 60.71642 ], [ 26.13081, 60.69308 ], [ 25.95192, 60.70803 ], [ 25.88351, 60.73314 ], [ 25.60292, 60.6766 ], [ 25.53192, 60.70228 ], [ 25.46255, 60.79119 ], [ 25.35264, 60.75709 ], [ 25.20646, 60.82928 ], [ 25.11097, 60.81858 ], [ 25.12232, 60.71321 ], [ 25.08389, 60.67724 ], [ 24.62518, 60.6603 ], [ 24.57915, 60.63911 ], [ 24.5556, 60.57893 ], [ 24.47033, 60.56071 ], [ 24.3645, 60.59861 ], [ 24.28136, 60.58179 ], [ 24.19242, 60.62244 ], [ 23.90049, 60.64976 ], [ 23.87026, 60.52885 ], [ 23.74955, 60.47542 ], [ 23.774, 60.41449 ], [ 23.71424, 60.3152 ], [ 23.63483, 60.27058 ], [ 23.61856, 60.20141 ], [ 23.25146, 60.15382 ], [ 23.14483, 60.10002 ], [ 23.0296, 60.10084 ], [ 22.90481, 60.04721 ], [ 22.85912, 60.13857 ], [ 22.74254, 60.02662 ], [ 22.62856, 59.97986 ], [ 22.5565, 60.01767 ], [ 22.43829, 60.0218 ], [ 22.40086, 60.0642 ], [ 22.45142, 60.17692 ], [ 22.54244, 60.24385 ], [ 22.52196, 60.34686 ], [ 22.4691, 60.32569 ], [ 22.36435, 60.1963 ], [ 22.26762, 60.15081 ], [ 22.13183, 60.2752 ], [ 22.14341, 60.42537 ], [ 22.00359, 60.41944 ], [ 22.00611, 60.32801 ], [ 21.97425, 60.30285 ], [ 21.88399, 60.32059 ], [ 21.76482, 60.50393 ], [ 21.7887, 60.59618 ], [ 21.56662, 60.50245 ], [ 21.30874, 60.5163 ], [ 21.31292, 60.5444 ], [ 21.43682, 60.61167 ], [ 21.35916, 60.72491 ], [ 21.35765, 60.79877 ], [ 21.25233, 60.83971 ], [ 21.2252, 60.88151 ], [ 21.29928, 60.97824 ], [ 21.3626, 60.98956 ], [ 21.36293, 61.0476 ], [ 21.41993, 61.04744 ], [ 21.49689, 61.00549 ], [ 21.62045, 61.03301 ], [ 21.69357, 61.00532 ], [ 21.81517, 61.02054 ], [ 22.00795, 60.91391 ], [ 22.15426, 60.88714 ], [ 22.5953, 60.98536 ], [ 22.77266, 60.9984 ], [ 22.83492, 61.08817 ], [ 22.9648, 61.04995 ], [ 23.01694, 61.02629 ], [ 23.14483, 61.03161 ], [ 23.19535, 61.00122 ], [ 23.25146, 61.0068 ], [ 23.33435, 61.01206 ], [ 23.43941, 60.97718 ], [ 23.72525, 60.99965 ], [ 23.82025, 60.96774 ], [ 23.85172, 61.02191 ], [ 23.8152, 61.06931 ], [ 24.22281, 61.15347 ], [ 24.31113, 61.23284 ], [ 24.56589, 61.2976 ], [ 24.82118, 61.2795 ], [ 24.91393, 61.32488 ], [ 24.88705, 61.44977 ], [ 24.97047, 61.45071 ], [ 25.42466, 61.48898 ], [ 25.51172, 61.6722 ], [ 25.67592, 61.71319 ], [ 25.77278, 61.69557 ], [ 25.8644, 61.79072 ], [ 25.8769, 61.76551 ], [ 25.9406, 61.77579 ], [ 26.06101, 61.72485 ], [ 26.08617, 61.66559 ], [ 26.14459, 61.62852 ], [ 26.2857, 61.64853 ], [ 26.31504, 61.60845 ], [ 26.26028, 61.50809 ], [ 26.27933, 61.47381 ], [ 26.26074, 61.436 ], [ 26.33652, 61.35101 ], [ 26.408, 61.32427 ], [ 26.47285, 61.33551 ], [ 26.51366, 61.27432 ], [ 26.63189, 61.28308 ], [ 26.66569, 61.21154 ], [ 26.85787, 61.27975 ], [ 26.94036, 61.17621 ], [ 27.20582, 61.16247 ], [ 27.36129, 61.19814 ], [ 27.38971, 61.24642 ], [ 27.55413, 61.26555 ], [ 27.63817, 61.3401 ], [ 28.2463, 61.38291 ], [ 28.46373, 61.50423 ], [ 28.67362, 61.47099 ], [ 28.77375, 61.48413 ], [ 28.84913, 61.53238 ], [ 29.24837, 61.56334 ], [ 29.55928, 61.72207 ], [ 30.14397, 61.85224 ], [ 29.71287, 61.56134 ], [ 29.50762, 61.48718 ], [ 29.23684, 61.26921 ], [ 28.84033, 61.12727 ], [ 28.72499, 61.04995 ], [ 28.65522, 60.95692 ], [ 28.51028, 60.94698 ], [ 27.99128, 60.66898 ] ] ], [ [ [ 27.05778, 60.38591 ], [ 27.03618, 60.36991 ], [ 26.993, 60.43469 ], [ 27.03415, 60.46401 ], [ 27.03548, 60.40868 ], [ 27.05778, 60.38591 ] ] ], [ [ [ 26.55828, 60.41178 ], [ 26.54549, 60.37069 ], [ 26.49404, 60.39745 ], [ 26.5036, 60.42416 ], [ 26.55828, 60.41178 ] ] ], [ [ [ 22.48856, 59.9691 ], [ 22.49294, 59.98991 ], [ 22.55362, 59.98446 ], [ 22.52986, 59.93661 ], [ 22.48856, 59.9691 ] ] ], [ [ [ 22.45987, 59.86904 ], [ 22.46756, 59.89181 ], [ 22.5113, 59.89341 ], [ 22.52163, 59.87038 ], [ 22.47907, 59.84331 ], [ 22.45987, 59.86904 ] ] ], [ [ [ 22.42816, 59.92623 ], [ 22.40366, 59.91064 ], [ 22.38568, 59.9495 ], [ 22.42296, 59.97861 ], [ 22.43708, 59.97054 ], [ 22.42816, 59.92623 ] ] ], [ [ [ 22.31941, 59.94805 ], [ 22.32887, 59.96934 ], [ 22.38115, 59.96835 ], [ 22.38496, 59.94875 ], [ 22.33583, 59.92344 ], [ 22.31941, 59.94805 ] ] ], [ [ [ 21.74813, 60.20932 ], [ 21.83379, 60.21277 ], [ 21.95474, 60.23594 ], [ 22.02927, 60.21625 ], [ 22.06395, 60.23973 ], [ 22.12577, 60.1764 ], [ 22.03438, 60.14307 ], [ 21.98636, 60.15804 ], [ 21.98708, 60.10725 ], [ 21.92204, 60.11021 ], [ 21.92471, 60.13328 ], [ 21.96865, 60.15163 ], [ 21.91771, 60.17945 ], [ 21.83379, 60.1389 ], [ 21.78294, 60.13044 ], [ 21.71425, 60.13964 ], [ 21.72314, 60.18049 ], [ 21.74813, 60.20932 ] ] ], [ [ [ 21.66852, 60.42671 ], [ 21.70153, 60.45509 ], [ 21.73443, 60.42319 ], [ 21.6974, 60.39409 ], [ 21.66852, 60.42671 ] ] ], [ [ [ 21.63806, 60.34926 ], [ 21.64491, 60.38405 ], [ 21.70001, 60.37751 ], [ 21.69726, 60.3428 ], [ 21.63806, 60.34926 ] ] ], [ [ [ 21.6497, 60.1197 ], [ 21.55043, 60.11342 ], [ 21.52811, 60.13942 ], [ 21.5582, 60.17454 ], [ 21.59821, 60.18569 ], [ 21.68845, 60.17521 ], [ 21.68845, 60.1585 ], [ 21.6497, 60.1197 ] ] ], [ [ [ 21.60149, 60.43525 ], [ 21.65473, 60.48057 ], [ 21.68081, 60.46282 ], [ 21.64283, 60.42556 ], [ 21.60149, 60.43525 ] ] ], [ [ [ 21.55666, 60.2273 ], [ 21.58203, 60.27868 ], [ 21.61477, 60.25365 ], [ 21.61242, 60.22303 ], [ 21.55666, 60.2273 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.39524, 60.26478 ], [ 21.38187, 60.27584 ], [ 21.38625, 60.28609 ], [ 21.40457, 60.29117 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.41471, 60.27838 ], [ 21.41382, 60.28049 ], [ 21.43624, 60.28961 ], [ 21.44886, 60.26359 ], [ 21.42708, 60.25857 ], [ 21.41471, 60.27838 ] ] ], [ [ [ 21.25016, 60.21607 ], [ 21.32177, 60.23197 ], [ 21.39374, 60.21041 ], [ 21.44846, 60.23975 ], [ 21.44059, 60.19468 ], [ 21.35845, 60.17324 ], [ 21.32177, 60.1915 ], [ 21.26049, 60.19894 ], [ 21.25016, 60.21607 ] ] ], [ [ [ 21.31899, 60.36294 ], [ 21.35124, 60.43914 ], [ 21.37687, 60.41687 ], [ 21.42338, 60.43914 ], [ 21.42174, 60.38399 ], [ 21.31899, 60.36294 ] ] ], [ [ [ 21.33751, 59.79727 ], [ 21.3567, 59.81007 ], [ 21.41828, 59.79488 ], [ 21.40863, 59.76983 ], [ 21.37261, 59.77095 ], [ 21.33751, 59.79727 ] ] ], [ [ [ 21.21808, 60.62429 ], [ 21.30393, 60.66591 ], [ 21.32002, 60.62694 ], [ 21.30393, 60.58336 ], [ 21.22525, 60.59955 ], [ 21.21808, 60.62429 ] ] ], [ [ [ 21.2648, 60.31956 ], [ 21.2889, 60.34622 ], [ 21.3117, 60.32428 ], [ 21.30337, 60.28163 ], [ 21.2768, 60.28347 ], [ 21.2648, 60.31956 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA1", "NUTS_ID": "DEA1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Düsseldorf", "geo": "DEA1", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.16777, 51.9008 ], [ 6.40778, 51.82809 ], [ 6.49021, 51.81138 ], [ 6.83641, 51.73424 ], [ 6.91086, 51.7461 ], [ 6.92843, 51.71492 ], [ 6.90228, 51.63568 ], [ 6.83315, 51.57965 ], [ 6.92841, 51.49796 ], [ 6.99865, 51.5337 ], [ 7.01021, 51.53273 ], [ 7.1042, 51.48127 ], [ 7.13603, 51.42604 ], [ 7.11768, 51.38027 ], [ 7.16729, 51.3129 ], [ 7.25412, 51.30694 ], [ 7.30669, 51.23888 ], [ 7.29581, 51.20539 ], [ 7.26818, 51.14566 ], [ 7.16635, 51.15394 ], [ 7.15255, 51.12306 ], [ 6.99772, 51.11798 ], [ 6.99059, 51.0916 ], [ 6.89805, 51.06489 ], [ 6.85349, 51.08426 ], [ 6.77363, 51.06439 ], [ 6.70449, 51.01914 ], [ 6.58848, 51.02335 ], [ 6.53329, 51.05439 ], [ 6.4805, 51.03418 ], [ 6.45921, 51.04307 ], [ 6.44399, 51.08979 ], [ 6.36991, 51.10041 ], [ 6.29114, 51.17555 ], [ 6.17481, 51.18451 ], [ 6.08934, 51.17902 ], [ 6.07266, 51.24259 ], [ 6.22441, 51.36498 ], [ 6.2042, 51.51872 ], [ 6.10589, 51.60073 ], [ 6.10265, 51.65623 ], [ 5.95319, 51.74785 ], [ 5.97974, 51.77088 ], [ 5.96569, 51.8293 ], [ 6.06133, 51.85875 ], [ 6.15317, 51.846 ], [ 6.16777, 51.9008 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA2", "NUTS_ID": "DEA2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Köln", "geo": "DEA2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.71612, 51.07291 ], [ 7.73083, 51.00061 ], [ 7.7859, 50.93991 ], [ 7.75384, 50.85927 ], [ 7.661, 50.82036 ], [ 7.65962, 50.77917 ], [ 7.44077, 50.71144 ], [ 7.38156, 50.71116 ], [ 7.33547, 50.64371 ], [ 7.2124, 50.6234 ], [ 7.21087, 50.64954 ], [ 7.1952, 50.64272 ], [ 7.14964, 50.60827 ], [ 6.9279, 50.55862 ], [ 6.88241, 50.46473 ], [ 6.77049, 50.4728 ], [ 6.80071, 50.36178 ], [ 6.70217, 50.34774 ], [ 6.5822, 50.37594 ], [ 6.43125, 50.3585 ], [ 6.4253, 50.32301 ], [ 6.40503, 50.32331 ], [ 6.3547, 50.3791 ], [ 6.36778, 50.44517 ], [ 6.31556, 50.49704 ], [ 6.1922, 50.52106 ], [ 6.18931, 50.56609 ], [ 6.25606, 50.6221 ], [ 6.18382, 50.63843 ], [ 6.11859, 50.71241 ], [ 6.021, 50.7543 ], [ 6.01023, 50.80357 ], [ 6.07193, 50.85841 ], [ 6.08695, 50.91313 ], [ 6.03069, 50.93438 ], [ 6.00913, 50.98192 ], [ 5.90981, 50.98644 ], [ 5.87709, 51.0321 ], [ 5.90004, 51.05898 ], [ 5.96334, 51.04808 ], [ 6.17481, 51.18451 ], [ 6.29114, 51.17555 ], [ 6.36991, 51.10041 ], [ 6.44399, 51.08979 ], [ 6.45921, 51.04307 ], [ 6.4805, 51.03418 ], [ 6.53329, 51.05439 ], [ 6.58848, 51.02335 ], [ 6.70449, 51.01914 ], [ 6.77363, 51.06439 ], [ 6.85349, 51.08426 ], [ 6.89805, 51.06489 ], [ 6.99059, 51.0916 ], [ 6.99772, 51.11798 ], [ 7.15255, 51.12306 ], [ 7.16635, 51.15394 ], [ 7.26818, 51.14566 ], [ 7.29581, 51.20539 ], [ 7.30669, 51.23888 ], [ 7.38338, 51.24244 ], [ 7.43334, 51.21441 ], [ 7.43191, 51.18239 ], [ 7.50437, 51.11077 ], [ 7.71612, 51.07291 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA3", "NUTS_ID": "DEA3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Münster", "geo": "DEA3", "time_2018_MEAN": 80.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.88516, 52.0833 ], [ 7.96336, 52.04106 ], [ 8.09645, 52.05714 ], [ 8.08464, 52.01722 ], [ 8.16405, 51.89055 ], [ 8.32014, 51.7257 ], [ 8.23869, 51.66169 ], [ 8.15089, 51.70851 ], [ 7.94453, 51.70058 ], [ 7.84316, 51.73805 ], [ 7.73579, 51.73737 ], [ 7.70189, 51.71238 ], [ 7.54961, 51.69373 ], [ 7.46121, 51.72727 ], [ 7.40955, 51.66458 ], [ 7.45032, 51.63008 ], [ 7.41793, 51.59952 ], [ 7.35361, 51.57703 ], [ 7.35187, 51.53264 ], [ 7.3146, 51.52232 ], [ 7.29359, 51.53226 ], [ 7.24876, 51.56763 ], [ 7.14506, 51.55224 ], [ 7.13956, 51.50616 ], [ 7.1042, 51.48127 ], [ 7.01021, 51.53273 ], [ 6.99865, 51.5337 ], [ 6.92841, 51.49796 ], [ 6.83315, 51.57965 ], [ 6.90228, 51.63568 ], [ 6.92843, 51.71492 ], [ 6.91086, 51.7461 ], [ 6.83641, 51.73424 ], [ 6.49021, 51.81138 ], [ 6.40778, 51.82809 ], [ 6.41882, 51.86126 ], [ 6.76963, 51.92128 ], [ 6.81948, 51.99048 ], [ 6.6953, 52.05082 ], [ 6.76047, 52.11857 ], [ 6.85858, 52.12669 ], [ 6.99169, 52.22224 ], [ 7.06569, 52.24137 ], [ 7.09915, 52.24306 ], [ 7.31748, 52.28027 ], [ 7.56493, 52.37971 ], [ 7.60804, 52.47402 ], [ 7.67656, 52.45433 ], [ 7.74599, 52.39098 ], [ 7.91999, 52.36958 ], [ 7.96463, 52.32486 ], [ 7.95647, 52.27249 ], [ 7.91207, 52.2044 ], [ 7.99508, 52.16713 ], [ 8.00194, 52.12396 ], [ 7.88516, 52.0833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA4", "NUTS_ID": "DEA4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Detmold", "geo": "DEA4", "time_2018_MEAN": 81.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.70301, 52.50044 ], [ 8.70828, 52.42348 ], [ 8.7449, 52.39407 ], [ 8.94133, 52.40808 ], [ 9.06959, 52.4973 ], [ 9.11128, 52.47795 ], [ 9.12525, 52.41199 ], [ 8.99361, 52.31157 ], [ 8.98341, 52.26816 ], [ 9.05083, 52.22106 ], [ 9.03677, 52.19088 ], [ 8.99363, 52.19018 ], [ 9.02118, 52.14389 ], [ 9.12825, 52.13211 ], [ 9.1556, 52.09783 ], [ 9.19628, 51.97329 ], [ 9.25376, 51.96964 ], [ 9.30889, 51.92272 ], [ 9.33589, 51.88915 ], [ 9.32334, 51.85506 ], [ 9.43305, 51.83727 ], [ 9.38417, 51.66342 ], [ 9.41732, 51.64727 ], [ 9.44046, 51.65039 ], [ 9.35177, 51.61231 ], [ 9.3, 51.51811 ], [ 9.15541, 51.44267 ], [ 9.09933, 51.45218 ], [ 9.06897, 51.4961 ], [ 8.97065, 51.50677 ], [ 8.9054, 51.5315 ], [ 8.83099, 51.53816 ], [ 8.82125, 51.48955 ], [ 8.76574, 51.4539 ], [ 8.63353, 51.48132 ], [ 8.54793, 51.46781 ], [ 8.48378, 51.56659 ], [ 8.57252, 51.61635 ], [ 8.57298, 51.64776 ], [ 8.40311, 51.71935 ], [ 8.32014, 51.7257 ], [ 8.16405, 51.89055 ], [ 8.08464, 52.01722 ], [ 8.09645, 52.05714 ], [ 8.26542, 52.12667 ], [ 8.41059, 52.11511 ], [ 8.48855, 52.17629 ], [ 8.45144, 52.22068 ], [ 8.46619, 52.26761 ], [ 8.43712, 52.35826 ], [ 8.33064, 52.40323 ], [ 8.29721, 52.4565 ], [ 8.41469, 52.44739 ], [ 8.49193, 52.50521 ], [ 8.63995, 52.52496 ], [ 8.70301, 52.50044 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEA5", "NUTS_ID": "DEA5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Arnsberg", "geo": "DEA5", "time_2018_MEAN": 79.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.94453, 51.70058 ], [ 8.15089, 51.70851 ], [ 8.23869, 51.66169 ], [ 8.32014, 51.7257 ], [ 8.40311, 51.71935 ], [ 8.57298, 51.64776 ], [ 8.57252, 51.61635 ], [ 8.48378, 51.56659 ], [ 8.54793, 51.46781 ], [ 8.63353, 51.48132 ], [ 8.76574, 51.4539 ], [ 8.82125, 51.48955 ], [ 8.83099, 51.53816 ], [ 8.9054, 51.5315 ], [ 8.97065, 51.50677 ], [ 8.90313, 51.47932 ], [ 8.94019, 51.42677 ], [ 8.93129, 51.39628 ], [ 8.69915, 51.37232 ], [ 8.58325, 51.30214 ], [ 8.5671, 51.27815 ], [ 8.59026, 51.2575 ], [ 8.7196, 51.26435 ], [ 8.75279, 51.18889 ], [ 8.67266, 51.10266 ], [ 8.54909, 51.10187 ], [ 8.51534, 51.08024 ], [ 8.52778, 51.01607 ], [ 8.47789, 50.96905 ], [ 8.3555, 50.862 ], [ 8.25925, 50.8711 ], [ 8.15445, 50.80528 ], [ 8.15699, 50.73037 ], [ 8.12578, 50.68581 ], [ 8.03969, 50.69738 ], [ 7.97336, 50.78337 ], [ 7.96507, 50.83744 ], [ 7.84088, 50.88589 ], [ 7.8515, 50.92583 ], [ 7.7859, 50.93991 ], [ 7.73083, 51.00061 ], [ 7.71612, 51.07291 ], [ 7.50437, 51.11077 ], [ 7.43191, 51.18239 ], [ 7.43334, 51.21441 ], [ 7.38338, 51.24244 ], [ 7.30669, 51.23888 ], [ 7.25412, 51.30694 ], [ 7.16729, 51.3129 ], [ 7.11768, 51.38027 ], [ 7.13603, 51.42604 ], [ 7.1042, 51.48127 ], [ 7.13956, 51.50616 ], [ 7.14506, 51.55224 ], [ 7.24876, 51.56763 ], [ 7.29359, 51.53226 ], [ 7.3146, 51.52232 ], [ 7.35187, 51.53264 ], [ 7.35361, 51.57703 ], [ 7.41793, 51.59952 ], [ 7.45032, 51.63008 ], [ 7.40955, 51.66458 ], [ 7.46121, 51.72727 ], [ 7.54961, 51.69373 ], [ 7.70189, 51.71238 ], [ 7.73579, 51.73737 ], [ 7.84316, 51.73805 ], [ 7.94453, 51.70058 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB1", "NUTS_ID": "DEB1", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Koblenz", "geo": "DEB1", "time_2018_MEAN": 80.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.12578, 50.68581 ], [ 8.15159, 50.59937 ], [ 8.11737, 50.54301 ], [ 8.04171, 50.5499 ], [ 7.99936, 50.52279 ], [ 7.97156, 50.40622 ], [ 8.05454, 50.37231 ], [ 8.12191, 50.27722 ], [ 8.03783, 50.26057 ], [ 8.02773, 50.22247 ], [ 7.91236, 50.20041 ], [ 7.89455, 50.18002 ], [ 7.91809, 50.12672 ], [ 7.774, 50.06654 ], [ 7.76484, 50.08259 ], [ 7.68359, 50.04735 ], [ 7.73463, 49.99869 ], [ 7.89391, 49.92573 ], [ 7.96356, 49.8331 ], [ 7.90544, 49.75226 ], [ 7.76227, 49.74402 ], [ 7.70333, 49.65251 ], [ 7.67284, 49.64548 ], [ 7.65437, 49.69198 ], [ 7.52275, 49.70762 ], [ 7.43892, 49.65888 ], [ 7.42919, 49.60118 ], [ 7.27662, 49.54862 ], [ 7.26392, 49.57426 ], [ 7.02798, 49.63944 ], [ 7.05609, 49.67276 ], [ 7.04431, 49.6893 ], [ 7.24663, 49.84717 ], [ 7.22251, 49.88495 ], [ 7.24252, 49.93987 ], [ 7.20268, 49.96632 ], [ 7.10303, 50.04735 ], [ 6.97902, 50.09791 ], [ 6.96234, 50.20847 ], [ 7.04232, 50.23724 ], [ 7.06878, 50.27979 ], [ 6.98901, 50.30474 ], [ 7.00442, 50.33115 ], [ 6.98434, 50.34889 ], [ 6.90503, 50.31305 ], [ 6.82321, 50.32893 ], [ 6.80071, 50.36178 ], [ 6.77049, 50.4728 ], [ 6.88241, 50.46473 ], [ 6.9279, 50.55862 ], [ 7.14964, 50.60827 ], [ 7.1952, 50.64272 ], [ 7.21087, 50.64954 ], [ 7.2124, 50.6234 ], [ 7.33547, 50.64371 ], [ 7.38156, 50.71116 ], [ 7.44077, 50.71144 ], [ 7.65962, 50.77917 ], [ 7.661, 50.82036 ], [ 7.75384, 50.85927 ], [ 7.7859, 50.93991 ], [ 7.8515, 50.92583 ], [ 7.84088, 50.88589 ], [ 7.96507, 50.83744 ], [ 7.97336, 50.78337 ], [ 8.03969, 50.69738 ], [ 8.12578, 50.68581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB2", "NUTS_ID": "DEB2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Trier", "geo": "DEB2", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.80071, 50.36178 ], [ 6.82321, 50.32893 ], [ 6.90503, 50.31305 ], [ 6.98434, 50.34889 ], [ 7.00442, 50.33115 ], [ 6.98901, 50.30474 ], [ 7.06878, 50.27979 ], [ 7.04232, 50.23724 ], [ 6.96234, 50.20847 ], [ 6.97902, 50.09791 ], [ 7.10303, 50.04735 ], [ 7.20268, 49.96632 ], [ 7.24252, 49.93987 ], [ 7.22251, 49.88495 ], [ 7.24663, 49.84717 ], [ 7.04431, 49.6893 ], [ 7.05609, 49.67276 ], [ 7.02798, 49.63944 ], [ 6.89145, 49.61342 ], [ 6.59236, 49.52804 ], [ 6.38005, 49.5511 ], [ 6.43277, 49.662 ], [ 6.50101, 49.71871 ], [ 6.51109, 49.7828 ], [ 6.47496, 49.82127 ], [ 6.32671, 49.84497 ], [ 6.25336, 49.89093 ], [ 6.12792, 50.04735 ], [ 6.13766, 50.12995 ], [ 6.19327, 50.2405 ], [ 6.3148, 50.31306 ], [ 6.40503, 50.32331 ], [ 6.4253, 50.32301 ], [ 6.43125, 50.3585 ], [ 6.5822, 50.37594 ], [ 6.70217, 50.34774 ], [ 6.80071, 50.36178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEB3", "NUTS_ID": "DEB3", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Rheinhessen-Pfalz", "geo": "DEB3", "time_2018_MEAN": 81.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.17514, 50.03426 ], [ 8.19004, 50.0353 ], [ 8.24413, 50.02535 ], [ 8.28825, 49.99513 ], [ 8.34303, 49.94051 ], [ 8.40006, 49.80367 ], [ 8.45711, 49.75617 ], [ 8.44837, 49.73366 ], [ 8.44638, 49.7308 ], [ 8.36336, 49.68552 ], [ 8.41477, 49.59505 ], [ 8.42244, 49.58339 ], [ 8.4227, 49.57419 ], [ 8.42307, 49.54182 ], [ 8.47251, 49.44351 ], [ 8.50153, 49.43486 ], [ 8.49732, 49.41135 ], [ 8.47092, 49.34071 ], [ 8.48727, 49.29003 ], [ 8.46699, 49.28298 ], [ 8.41307, 49.24982 ], [ 8.33997, 49.08015 ], [ 8.27735, 48.98994 ], [ 8.26128, 48.98092 ], [ 8.23263, 48.96657 ], [ 8.06841, 48.99932 ], [ 7.91065, 49.04516 ], [ 7.63565, 49.05395 ], [ 7.52949, 49.09985 ], [ 7.48078, 49.16346 ], [ 7.36876, 49.16146 ], [ 7.32034, 49.1895 ], [ 7.30236, 49.24138 ], [ 7.39449, 49.31635 ], [ 7.40208, 49.36772 ], [ 7.3959, 49.37205 ], [ 7.2926, 49.40822 ], [ 7.25259, 49.43147 ], [ 7.28837, 49.47054 ], [ 7.27662, 49.54862 ], [ 7.42919, 49.60118 ], [ 7.43892, 49.65888 ], [ 7.52275, 49.70762 ], [ 7.65437, 49.69198 ], [ 7.67284, 49.64548 ], [ 7.70333, 49.65251 ], [ 7.76227, 49.74402 ], [ 7.90544, 49.75226 ], [ 7.96356, 49.8331 ], [ 7.89391, 49.92573 ], [ 7.73463, 49.99869 ], [ 7.68359, 50.04735 ], [ 7.76484, 50.08259 ], [ 7.774, 50.06654 ], [ 7.78659, 50.04735 ], [ 7.90815, 49.97491 ], [ 8.17514, 50.03426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEC0", "NUTS_ID": "DEC0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Saarland", "geo": "DEC0", "time_2018_MEAN": 79.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.27662, 49.54862 ], [ 7.28837, 49.47054 ], [ 7.25259, 49.43147 ], [ 7.2926, 49.40822 ], [ 7.3959, 49.37205 ], [ 7.40208, 49.36772 ], [ 7.39449, 49.31635 ], [ 7.30236, 49.24138 ], [ 7.32034, 49.1895 ], [ 7.36876, 49.16146 ], [ 7.29489, 49.12114 ], [ 7.19244, 49.1181 ], [ 7.10107, 49.156 ], [ 7.05166, 49.12596 ], [ 7.02392, 49.18987 ], [ 6.85871, 49.21081 ], [ 6.81678, 49.15735 ], [ 6.73284, 49.17312 ], [ 6.72347, 49.21883 ], [ 6.58559, 49.33145 ], [ 6.55699, 49.41921 ], [ 6.44957, 49.46867 ], [ 6.36711, 49.46951 ], [ 6.38005, 49.5511 ], [ 6.59236, 49.52804 ], [ 6.89145, 49.61342 ], [ 7.02798, 49.63944 ], [ 7.26392, 49.57426 ], [ 7.27662, 49.54862 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED2", "NUTS_ID": "DED2", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Dresden", "geo": "DED2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.72986, 51.58178 ], [ 14.74085, 51.53022 ], [ 14.95227, 51.46244 ], [ 14.97418, 51.36395 ], [ 15.03355, 51.26941 ], [ 14.99569, 51.12516 ], [ 14.89909, 50.94956 ], [ 14.82336, 50.87055 ], [ 14.76856, 50.82354 ], [ 14.6188, 50.8578 ], [ 14.63815, 50.92261 ], [ 14.57442, 50.92402 ], [ 14.58915, 50.98779 ], [ 14.49122, 51.04353 ], [ 14.41509, 51.02507 ], [ 14.31787, 51.0547 ], [ 14.26954, 50.99315 ], [ 14.38816, 50.92519 ], [ 14.37591, 50.90015 ], [ 13.98214, 50.81161 ], [ 13.85298, 50.73153 ], [ 13.65217, 50.73036 ], [ 13.51538, 50.84166 ], [ 13.42189, 51.0342 ], [ 13.26695, 51.03964 ], [ 13.2485, 51.14803 ], [ 13.19871, 51.23041 ], [ 13.21015, 51.40474 ], [ 13.26468, 51.39298 ], [ 13.40816, 51.44277 ], [ 13.54719, 51.37859 ], [ 13.69125, 51.37401 ], [ 13.83531, 51.37679 ], [ 14.00175, 51.38452 ], [ 14.10794, 51.51416 ], [ 14.16332, 51.54104 ], [ 14.32836, 51.51954 ], [ 14.44777, 51.54207 ], [ 14.56367, 51.57376 ], [ 14.66003, 51.55265 ], [ 14.72986, 51.58178 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED4", "NUTS_ID": "DED4", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Chemnitz", "geo": "DED4", "time_2018_MEAN": 80.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50185, 50.63364 ], [ 13.45312, 50.60794 ], [ 13.3872, 50.63493 ], [ 13.30723, 50.58188 ], [ 13.25285, 50.58418 ], [ 13.18255, 50.50653 ], [ 13.04352, 50.50481 ], [ 12.94814, 50.40431 ], [ 12.82138, 50.45316 ], [ 12.70309, 50.4061 ], [ 12.58378, 50.40708 ], [ 12.40941, 50.32169 ], [ 12.33896, 50.24545 ], [ 12.32022, 50.17595 ], [ 12.17959, 50.31439 ], [ 12.1009, 50.31803 ], [ 12.02138, 50.3395 ], [ 11.91932, 50.42473 ], [ 11.90694, 50.44742 ], [ 11.94625, 50.49647 ], [ 11.88319, 50.53683 ], [ 11.94414, 50.59128 ], [ 12.01046, 50.60492 ], [ 12.05581, 50.55576 ], [ 12.31892, 50.67653 ], [ 12.23849, 50.74289 ], [ 12.2752, 50.77964 ], [ 12.25083, 50.81832 ], [ 12.65287, 50.92368 ], [ 12.61736, 50.98079 ], [ 12.69174, 50.99696 ], [ 12.74514, 51.0992 ], [ 12.87355, 51.10138 ], [ 12.86202, 51.165 ], [ 12.92602, 51.21821 ], [ 13.19871, 51.23041 ], [ 13.2485, 51.14803 ], [ 13.26695, 51.03964 ], [ 13.42189, 51.0342 ], [ 13.51538, 50.84166 ], [ 13.65217, 50.73036 ], [ 13.54118, 50.70561 ], [ 13.50185, 50.63364 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DED5", "NUTS_ID": "DED5", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Leipzig", "geo": "DED5", "time_2018_MEAN": 80.63333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.05103, 51.64768 ], [ 13.14039, 51.6038 ], [ 13.19302, 51.54223 ], [ 13.21015, 51.40474 ], [ 13.19871, 51.23041 ], [ 12.92602, 51.21821 ], [ 12.86202, 51.165 ], [ 12.87355, 51.10138 ], [ 12.74514, 51.0992 ], [ 12.69174, 50.99696 ], [ 12.61736, 50.98079 ], [ 12.55198, 51.00085 ], [ 12.47089, 51.0772 ], [ 12.28355, 51.09192 ], [ 12.20777, 51.13113 ], [ 12.1709, 51.27551 ], [ 12.15855, 51.31441 ], [ 12.19354, 51.33252 ], [ 12.15794, 51.45139 ], [ 12.19894, 51.53132 ], [ 12.58026, 51.62607 ], [ 12.83856, 51.676 ], [ 12.92021, 51.6442 ], [ 13.05103, 51.64768 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEE0", "NUTS_ID": "DEE0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Sachsen-Anhalt", "geo": "DEE0", "time_2018_MEAN": 79.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.12681, 52.8902 ], [ 12.14009, 52.86345 ], [ 12.21959, 52.86161 ], [ 12.25129, 52.81169 ], [ 12.2492, 52.79186 ], [ 12.21436, 52.76551 ], [ 12.23414, 52.64766 ], [ 12.17603, 52.61372 ], [ 12.17156, 52.50634 ], [ 12.25936, 52.50711 ], [ 12.31718, 52.4541 ], [ 12.22917, 52.16814 ], [ 12.27672, 52.10402 ], [ 12.37612, 52.04512 ], [ 12.5535, 51.98541 ], [ 12.66408, 52.00687 ], [ 12.76978, 51.97927 ], [ 13.15091, 51.85961 ], [ 13.16444, 51.70612 ], [ 13.05103, 51.64768 ], [ 12.92021, 51.6442 ], [ 12.83856, 51.676 ], [ 12.58026, 51.62607 ], [ 12.19894, 51.53132 ], [ 12.15794, 51.45139 ], [ 12.19354, 51.33252 ], [ 12.15855, 51.31441 ], [ 12.1709, 51.27551 ], [ 12.20777, 51.13113 ], [ 12.28355, 51.09192 ], [ 12.28207, 51.01877 ], [ 12.22417, 50.94293 ], [ 12.16353, 50.9586 ], [ 12.02102, 50.96912 ], [ 11.88622, 51.04996 ], [ 11.77548, 51.04879 ], [ 11.69694, 51.08749 ], [ 11.48461, 51.10544 ], [ 11.46565, 51.18627 ], [ 11.38177, 51.21505 ], [ 11.38537, 51.24589 ], [ 11.47397, 51.29506 ], [ 11.40577, 51.3422 ], [ 11.38353, 51.38043 ], [ 11.3133, 51.40464 ], [ 10.97811, 51.42688 ], [ 10.89613, 51.57087 ], [ 10.91606, 51.61637 ], [ 10.70137, 51.64219 ], [ 10.59032, 51.78536 ], [ 10.58455, 51.83917 ], [ 10.63911, 51.90068 ], [ 10.56123, 52.00407 ], [ 10.67428, 52.04506 ], [ 10.80149, 52.048 ], [ 10.96441, 52.05664 ], [ 10.96456, 52.10123 ], [ 11.05107, 52.15579 ], [ 11.02377, 52.19557 ], [ 11.0672, 52.23403 ], [ 11.01204, 52.33457 ], [ 11.06359, 52.36831 ], [ 10.93454, 52.47179 ], [ 11.00878, 52.49675 ], [ 10.95267, 52.55533 ], [ 10.96423, 52.61782 ], [ 10.91084, 52.62672 ], [ 10.75931, 52.79583 ], [ 10.84156, 52.8522 ], [ 10.93636, 52.85729 ], [ 11.0428, 52.90917 ], [ 11.29941, 52.8782 ], [ 11.50503, 52.94103 ], [ 11.50981, 52.99303 ], [ 11.59778, 53.03593 ], [ 11.82421, 52.94981 ], [ 11.86911, 52.9028 ], [ 12.12681, 52.8902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEF0", "NUTS_ID": "DEF0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Schleswig-Holstein", "geo": "DEF0", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.42015, 54.83196 ], [ 9.42293, 54.82322 ], [ 9.44265, 54.8047 ], [ 9.49195, 54.82264 ], [ 9.58314, 54.85427 ], [ 9.8626, 54.75358 ], [ 9.91535, 54.78915 ], [ 9.9495, 54.77874 ], [ 10.03117, 54.63657 ], [ 9.93783, 54.48087 ], [ 10.09937, 54.47048 ], [ 10.16852, 54.43284 ], [ 10.17416, 54.34575 ], [ 10.23333, 54.41007 ], [ 10.34737, 54.43177 ], [ 10.71375, 54.30507 ], [ 10.92506, 54.37749 ], [ 11.08283, 54.38556 ], [ 11.08495, 54.43153 ], [ 11.01368, 54.45815 ], [ 11.02531, 54.47447 ], [ 11.06278, 54.52705 ], [ 11.22354, 54.50046 ], [ 11.24602, 54.47447 ], [ 11.30074, 54.41122 ], [ 11.15715, 54.40373 ], [ 11.08899, 54.35348 ], [ 11.08612, 54.20556 ], [ 11.04188, 54.17475 ], [ 10.77995, 54.0767 ], [ 10.76489, 54.0277 ], [ 10.84089, 53.99189 ], [ 10.90366, 53.95682 ], [ 10.76306, 53.862 ], [ 10.76296, 53.81115 ], [ 10.77023, 53.74937 ], [ 10.92546, 53.68873 ], [ 10.95192, 53.64762 ], [ 10.901, 53.57473 ], [ 10.83477, 53.56714 ], [ 10.78623, 53.50213 ], [ 10.63928, 53.44817 ], [ 10.59505, 53.36393 ], [ 10.46918, 53.38584 ], [ 10.30795, 53.4332 ], [ 10.23668, 53.49635 ], [ 10.16603, 53.55111 ], [ 10.18964, 53.61027 ], [ 10.15226, 53.7118 ], [ 10.07143, 53.69702 ], [ 9.94538, 53.65293 ], [ 9.8626, 53.60746 ], [ 9.76283, 53.60761 ], [ 9.7301, 53.55758 ], [ 9.56276, 53.61286 ], [ 9.48589, 53.70766 ], [ 9.27273, 53.86766 ], [ 9.19975, 53.8801 ], [ 8.9635, 53.89917 ], [ 8.83259, 54.02393 ], [ 8.9679, 54.05241 ], [ 8.92908, 54.11974 ], [ 8.85034, 54.132 ], [ 8.80945, 54.18576 ], [ 8.8448, 54.26633 ], [ 8.69159, 54.28927 ], [ 8.64295, 54.32136 ], [ 8.69706, 54.38457 ], [ 8.8721, 54.41672 ], [ 8.93134, 54.46326 ], [ 8.84548, 54.49243 ], [ 8.85151, 54.61055 ], [ 8.65462, 54.80853 ], [ 8.63593, 54.91168 ], [ 9.1131, 54.8736 ], [ 9.22352, 54.85127 ], [ 9.27178, 54.80999 ], [ 9.36776, 54.8242 ], [ 9.42015, 54.83196 ] ] ], [ [ [ 10.95359, 53.89843 ], [ 10.89671, 53.88801 ], [ 10.88366, 53.90003 ], [ 10.90523, 53.92877 ], [ 10.9514, 53.92402 ], [ 10.95359, 53.89843 ] ] ], [ [ [ 8.67121, 54.49484 ], [ 8.62397, 54.48897 ], [ 8.58671, 54.52297 ], [ 8.59829, 54.53432 ], [ 8.6878, 54.55713 ], [ 8.71091, 54.55348 ], [ 8.69683, 54.51601 ], [ 8.67121, 54.49484 ] ] ], [ [ [ 8.56749, 54.68062 ], [ 8.48613, 54.68021 ], [ 8.4023, 54.70038 ], [ 8.39501, 54.71507 ], [ 8.43669, 54.74834 ], [ 8.53493, 54.75574 ], [ 8.58827, 54.7412 ], [ 8.59664, 54.71874 ], [ 8.56749, 54.68062 ] ] ], [ [ [ 8.57712, 54.54495 ], [ 8.54254, 54.54042 ], [ 8.51645, 54.57187 ], [ 8.56658, 54.59625 ], [ 8.57712, 54.54495 ] ] ], [ [ [ 8.38084, 54.89223 ], [ 8.45592, 54.87685 ], [ 8.46425, 54.86327 ], [ 8.41637, 54.84689 ], [ 8.33953, 54.87885 ], [ 8.29741, 54.85007 ], [ 8.28647, 54.85985 ], [ 8.29677, 54.91121 ], [ 8.33709, 54.97305 ], [ 8.36076, 54.95882 ], [ 8.36297, 54.90906 ], [ 8.38084, 54.89223 ] ] ], [ [ [ 8.44125, 55.0171 ], [ 8.36656, 54.9878 ], [ 8.35679, 54.99667 ], [ 8.39805, 55.05428 ], [ 8.43861, 55.04593 ], [ 8.44125, 55.0171 ] ] ], [ [ [ 8.40437, 54.61466 ], [ 8.36686, 54.60607 ], [ 8.28937, 54.66732 ], [ 8.33975, 54.69621 ], [ 8.36315, 54.65061 ], [ 8.40437, 54.61466 ] ] ], [ [ [ 8.32026, 54.7856 ], [ 8.29235, 54.73534 ], [ 8.26265, 54.76116 ], [ 8.2749, 54.79798 ], [ 8.32026, 54.7856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DEG0", "NUTS_ID": "DEG0", "LEVL_CODE": 2, "CNTR_CODE": "DE", "NUTS_NAME": "Thüringen", "geo": "DEG0", "time_2018_MEAN": 80.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.97811, 51.42688 ], [ 11.3133, 51.40464 ], [ 11.38353, 51.38043 ], [ 11.40577, 51.3422 ], [ 11.47397, 51.29506 ], [ 11.38537, 51.24589 ], [ 11.38177, 51.21505 ], [ 11.46565, 51.18627 ], [ 11.48461, 51.10544 ], [ 11.69694, 51.08749 ], [ 11.77548, 51.04879 ], [ 11.88622, 51.04996 ], [ 12.02102, 50.96912 ], [ 12.16353, 50.9586 ], [ 12.22417, 50.94293 ], [ 12.28207, 51.01877 ], [ 12.28355, 51.09192 ], [ 12.47089, 51.0772 ], [ 12.55198, 51.00085 ], [ 12.61736, 50.98079 ], [ 12.65287, 50.92368 ], [ 12.25083, 50.81832 ], [ 12.2752, 50.77964 ], [ 12.23849, 50.74289 ], [ 12.31892, 50.67653 ], [ 12.05581, 50.55576 ], [ 12.01046, 50.60492 ], [ 11.94414, 50.59128 ], [ 11.88319, 50.53683 ], [ 11.94625, 50.49647 ], [ 11.90694, 50.44742 ], [ 11.91932, 50.42473 ], [ 11.83701, 50.3974 ], [ 11.60329, 50.39877 ], [ 11.52534, 50.38395 ], [ 11.48157, 50.43162 ], [ 11.43091, 50.44101 ], [ 11.40122, 50.51758 ], [ 11.26594, 50.47942 ], [ 11.27682, 50.37124 ], [ 11.25049, 50.29011 ], [ 11.18994, 50.27119 ], [ 11.1207, 50.35826 ], [ 11.03729, 50.35152 ], [ 10.94572, 50.38647 ], [ 10.74028, 50.35929 ], [ 10.73648, 50.3202 ], [ 10.81267, 50.26466 ], [ 10.7292, 50.23001 ], [ 10.61012, 50.22799 ], [ 10.59076, 50.32912 ], [ 10.45053, 50.40186 ], [ 10.39977, 50.40382 ], [ 10.32859, 50.48859 ], [ 10.20334, 50.54809 ], [ 10.10473, 50.55549 ], [ 10.04134, 50.51647 ], [ 10.04611, 50.60897 ], [ 10.07756, 50.63762 ], [ 10.01691, 50.66832 ], [ 9.94368, 50.63634 ], [ 9.89996, 50.64992 ], [ 9.92618, 50.76739 ], [ 10.0171, 50.87603 ], [ 9.98991, 50.9233 ], [ 10.02156, 50.99295 ], [ 10.18235, 50.99849 ], [ 10.20218, 51.01201 ], [ 10.15582, 51.05963 ], [ 10.14656, 51.1362 ], [ 10.21001, 51.14408 ], [ 10.20694, 51.19065 ], [ 9.95493, 51.30432 ], [ 9.92834, 51.3753 ], [ 10.28585, 51.49328 ], [ 10.38816, 51.57968 ], [ 10.48855, 51.57478 ], [ 10.64271, 51.56707 ], [ 10.67728, 51.63838 ], [ 10.70137, 51.64219 ], [ 10.91606, 51.61637 ], [ 10.89613, 51.57087 ], [ 10.97811, 51.42688 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK01", "NUTS_ID": "DK01", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Hovedstaden", "geo": "DK01", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.8254, 55.2541 ], [ 14.94371, 55.21017 ], [ 14.97051, 55.21468 ], [ 14.99192, 55.19406 ], [ 15.06231, 55.16131 ], [ 15.15509, 55.13209 ], [ 15.1553, 55.07735 ], [ 15.11263, 55.03843 ], [ 15.12177, 55.01437 ], [ 15.08306, 54.98782 ], [ 14.96314, 55.00379 ], [ 14.88784, 55.03072 ], [ 14.74422, 55.0642 ], [ 14.68317, 55.09785 ], [ 14.70739, 55.12996 ], [ 14.70202, 55.19524 ], [ 14.71281, 55.22452 ], [ 14.77331, 55.29894 ], [ 14.8254, 55.2541 ] ] ], [ [ [ 12.78593, 55.61613 ], [ 12.76382, 55.60492 ], [ 12.73348, 55.63453 ], [ 12.74441, 55.66732 ], [ 12.77766, 55.66813 ], [ 12.78593, 55.61613 ] ] ], [ [ [ 12.58275, 55.80797 ], [ 12.58413, 55.722 ], [ 12.67566, 55.62238 ], [ 12.67157, 55.59089 ], [ 12.57004, 55.56277 ], [ 12.50479, 55.63734 ], [ 12.48011, 55.60549 ], [ 12.36347, 55.59381 ], [ 12.34528, 55.60461 ], [ 12.27757, 55.61979 ], [ 12.21988, 55.61635 ], [ 12.20388, 55.60627 ], [ 12.16411, 55.61384 ], [ 12.15602, 55.67147 ], [ 12.18647, 55.68671 ], [ 12.21469, 55.6897 ], [ 12.25079, 55.70841 ], [ 12.0896, 55.78085 ], [ 12.06498, 55.78084 ], [ 12.0365, 55.73271 ], [ 11.98078, 55.73012 ], [ 11.8753, 55.73766 ], [ 11.87124, 55.79798 ], [ 11.95117, 55.84997 ], [ 11.85705, 55.96867 ], [ 12.05913, 56.04538 ], [ 12.27172, 56.12609 ], [ 12.5175, 56.08645 ], [ 12.60702, 56.0461 ], [ 12.52695, 55.92237 ], [ 12.58275, 55.80797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK02", "NUTS_ID": "DK02", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Sjælland", "geo": "DK02", "time_2018_MEAN": 80.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.25987, 55.06008 ], [ 12.31639, 55.02787 ], [ 12.46273, 55.02308 ], [ 12.52403, 55.00716 ], [ 12.55404, 54.96051 ], [ 12.50958, 54.94349 ], [ 12.38526, 54.96533 ], [ 12.31279, 54.95199 ], [ 12.20781, 54.88238 ], [ 12.14334, 54.88189 ], [ 12.11118, 54.91842 ], [ 12.14796, 54.94358 ], [ 12.14746, 54.96876 ], [ 12.20721, 54.96785 ], [ 12.27032, 54.98547 ], [ 12.28383, 55.01179 ], [ 12.2508, 55.04072 ], [ 12.22979, 55.02051 ], [ 12.18316, 55.04627 ], [ 12.20426, 55.06923 ], [ 12.25987, 55.06008 ] ] ], [ [ [ 11.7794, 55.65903 ], [ 11.8753, 55.73766 ], [ 11.98078, 55.73012 ], [ 11.97924, 55.68729 ], [ 12.05913, 55.66984 ], [ 12.07866, 55.66557 ], [ 12.10855, 55.72773 ], [ 12.0896, 55.78085 ], [ 12.25079, 55.70841 ], [ 12.21469, 55.6897 ], [ 12.18647, 55.68671 ], [ 12.15602, 55.67147 ], [ 12.16411, 55.61384 ], [ 12.20388, 55.60627 ], [ 12.21988, 55.61635 ], [ 12.27757, 55.61979 ], [ 12.34528, 55.60461 ], [ 12.36347, 55.59381 ], [ 12.24237, 55.54392 ], [ 12.20245, 55.47171 ], [ 12.21957, 55.42506 ], [ 12.3818, 55.3726 ], [ 12.41919, 55.3007 ], [ 12.15676, 55.18776 ], [ 12.1503, 55.05941 ], [ 12.11471, 55.00154 ], [ 12.0425, 54.97999 ], [ 11.92579, 55.00357 ], [ 11.79392, 55.06996 ], [ 11.71742, 55.16724 ], [ 11.24739, 55.2374 ], [ 11.14831, 55.34336 ], [ 11.18423, 55.42717 ], [ 11.13656, 55.57319 ], [ 11.01662, 55.70449 ], [ 11.30068, 55.75574 ], [ 11.47576, 55.85819 ], [ 11.53929, 55.9383 ], [ 11.69749, 55.95347 ], [ 11.72493, 55.93254 ], [ 11.69597, 55.807 ], [ 11.7525, 55.74373 ], [ 11.7794, 55.65903 ] ] ], [ [ [ 11.48307, 54.83677 ], [ 11.5336, 54.82992 ], [ 11.65016, 54.86086 ], [ 11.65917, 54.8907 ], [ 11.73916, 54.88358 ], [ 11.75757, 54.94977 ], [ 11.83678, 54.9577 ], [ 12.03003, 54.89548 ], [ 12.05666, 54.90275 ], [ 12.03656, 54.92898 ], [ 12.05913, 54.92943 ], [ 12.12772, 54.86879 ], [ 12.1457, 54.83203 ], [ 12.05913, 54.75398 ], [ 11.97722, 54.68955 ], [ 11.95754, 54.5672 ], [ 11.87763, 54.64909 ], [ 11.89838, 54.71103 ], [ 11.87344, 54.72246 ], [ 11.79799, 54.64603 ], [ 11.6463, 54.66001 ], [ 11.46006, 54.61356 ], [ 11.33222, 54.66128 ], [ 11.00072, 54.76905 ], [ 10.99317, 54.80471 ], [ 11.06672, 54.81272 ], [ 11.05785, 54.86086 ], [ 11.02509, 54.89784 ], [ 11.08104, 54.93821 ], [ 11.22516, 54.95872 ], [ 11.33222, 54.92361 ], [ 11.38016, 54.88628 ], [ 11.46607, 54.86086 ], [ 11.48307, 54.83677 ] ] ], [ [ [ 11.85292, 55.78125 ], [ 11.8386, 55.73664 ], [ 11.78532, 55.77471 ], [ 11.81885, 55.787 ], [ 11.82921, 55.81556 ], [ 11.85292, 55.78125 ] ] ], [ [ [ 11.57531, 54.97242 ], [ 11.53847, 54.94166 ], [ 11.4986, 54.98413 ], [ 11.5531, 54.99203 ], [ 11.57531, 54.97242 ] ] ], [ [ [ 11.44971, 54.94815 ], [ 11.39653, 54.91653 ], [ 11.37611, 54.93401 ], [ 11.40899, 54.97375 ], [ 11.44971, 54.94815 ] ] ], [ [ [ 11.22125, 55.18905 ], [ 11.16677, 55.18905 ], [ 11.162, 55.22602 ], [ 11.17614, 55.24002 ], [ 11.1985, 55.22955 ], [ 11.22125, 55.18905 ] ] ], [ [ [ 11.18029, 55.8887 ], [ 11.16388, 55.85492 ], [ 11.10524, 55.89638 ], [ 11.11809, 55.91337 ], [ 11.18029, 55.8887 ] ] ], [ [ [ 11.17422, 55.15553 ], [ 11.15203, 55.11917 ], [ 11.11162, 55.16671 ], [ 11.15644, 55.18283 ], [ 11.17422, 55.15553 ] ] ], [ [ [ 11.13145, 55.5433 ], [ 11.11653, 55.50188 ], [ 11.06371, 55.50938 ], [ 11.08125, 55.54378 ], [ 11.13145, 55.5433 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK03", "NUTS_ID": "DK03", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Syddanmark", "geo": "DK03", "time_2018_MEAN": 81.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.7974, 54.86077 ], [ 10.69903, 54.73106 ], [ 10.64965, 54.81149 ], [ 10.66587, 54.86077 ], [ 10.70012, 54.88869 ], [ 10.69618, 54.93093 ], [ 10.81675, 55.00525 ], [ 10.91547, 55.11953 ], [ 10.93095, 55.11124 ], [ 10.90582, 55.02081 ], [ 10.7974, 54.86077 ] ] ], [ [ [ 10.49496, 55.54384 ], [ 10.44556, 55.45296 ], [ 10.45612, 55.44009 ], [ 10.59671, 55.48367 ], [ 10.60045, 55.51664 ], [ 10.6279, 55.56546 ], [ 10.62879, 55.5946 ], [ 10.69799, 55.54384 ], [ 10.73795, 55.48681 ], [ 10.67504, 55.44862 ], [ 10.80305, 55.32857 ], [ 10.81043, 55.1986 ], [ 10.75064, 55.08239 ], [ 10.67055, 55.01565 ], [ 10.69439, 55.0 ], [ 10.66765, 54.9525 ], [ 10.63972, 54.98996 ], [ 10.59671, 54.95412 ], [ 10.5411, 54.96601 ], [ 10.52587, 55.02874 ], [ 10.25173, 55.08751 ], [ 10.16323, 55.08558 ], [ 10.17336, 55.03042 ], [ 10.14974, 55.01866 ], [ 10.10944, 55.05899 ], [ 10.1302, 55.07142 ], [ 10.11107, 55.10054 ], [ 10.14557, 55.12841 ], [ 10.13707, 55.15206 ], [ 10.00545, 55.1986 ], [ 9.98675, 55.1986 ], [ 9.90257, 55.2426 ], [ 9.86276, 55.35025 ], [ 9.81448, 55.36236 ], [ 9.82685, 55.39355 ], [ 9.6863, 55.50247 ], [ 9.80823, 55.5486 ], [ 9.86276, 55.51487 ], [ 9.93891, 55.51407 ], [ 10.18467, 55.60724 ], [ 10.321, 55.6146 ], [ 10.49496, 55.54384 ] ] ], [ [ [ 10.30091, 54.91582 ], [ 10.36326, 54.89153 ], [ 10.41719, 54.89965 ], [ 10.444, 54.87521 ], [ 10.49179, 54.88817 ], [ 10.512, 54.8441 ], [ 10.42214, 54.82099 ], [ 10.33876, 54.86064 ], [ 10.2884, 54.90786 ], [ 10.30091, 54.91582 ] ] ], [ [ [ 9.38701, 55.92415 ], [ 9.53107, 55.78785 ], [ 9.66655, 55.75056 ], [ 9.67206, 55.71206 ], [ 9.81307, 55.61538 ], [ 9.67087, 55.5134 ], [ 9.66999, 55.45719 ], [ 9.61521, 55.41033 ], [ 9.65282, 55.29771 ], [ 9.74892, 55.25738 ], [ 9.66608, 55.19102 ], [ 9.52554, 55.15714 ], [ 9.52657, 55.0758 ], [ 9.48842, 55.04052 ], [ 9.67895, 55.0069 ], [ 9.67714, 55.05252 ], [ 9.76904, 55.07377 ], [ 9.964, 54.99951 ], [ 10.05166, 54.88697 ], [ 9.97072, 54.8564 ], [ 9.77759, 54.89946 ], [ 9.72255, 54.8546 ], [ 9.59763, 54.89889 ], [ 9.42015, 54.83196 ], [ 9.36776, 54.8242 ], [ 9.27178, 54.80999 ], [ 9.22352, 54.85127 ], [ 9.1131, 54.8736 ], [ 8.63593, 54.91168 ], [ 8.67453, 55.16086 ], [ 8.63684, 55.38331 ], [ 8.59765, 55.42543 ], [ 8.44918, 55.46726 ], [ 8.28545, 55.5731 ], [ 8.2573, 55.56146 ], [ 8.24912, 55.5052 ], [ 8.10427, 55.5583 ], [ 8.17079, 55.81538 ], [ 8.3996, 55.80219 ], [ 8.48189, 55.77945 ], [ 8.56146, 55.84431 ], [ 8.77775, 55.81075 ], [ 8.87965, 55.89114 ], [ 9.03175, 55.83653 ], [ 9.22707, 55.94835 ], [ 9.36776, 55.92706 ], [ 9.38701, 55.92415 ] ] ], [ [ [ 10.04995, 55.13102 ], [ 10.03012, 55.11725 ], [ 9.97206, 55.1325 ], [ 9.99447, 55.16974 ], [ 10.04995, 55.13102 ] ] ], [ [ [ 9.82739, 55.34136 ], [ 9.83683, 55.29019 ], [ 9.77824, 55.29084 ], [ 9.77902, 55.31286 ], [ 9.82739, 55.34136 ] ] ], [ [ [ 8.57549, 55.26151 ], [ 8.5339, 55.25926 ], [ 8.51993, 55.28117 ], [ 8.54061, 55.29885 ], [ 8.59363, 55.2909 ], [ 8.57549, 55.26151 ] ] ], [ [ [ 8.57032, 55.08475 ], [ 8.5213, 55.06072 ], [ 8.47852, 55.0766 ], [ 8.46359, 55.10708 ], [ 8.48983, 55.1975 ], [ 8.51656, 55.21207 ], [ 8.59269, 55.19205 ], [ 8.55198, 55.14103 ], [ 8.57032, 55.08475 ] ] ], [ [ [ 8.47328, 55.35958 ], [ 8.42773, 55.34804 ], [ 8.36977, 55.42008 ], [ 8.32576, 55.45502 ], [ 8.37134, 55.47204 ], [ 8.40737, 55.46728 ], [ 8.40639, 55.43873 ], [ 8.45237, 55.43479 ], [ 8.46763, 55.40594 ], [ 8.45031, 55.39137 ], [ 8.47328, 55.35958 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "DK04", "NUTS_ID": "DK04", "LEVL_CODE": 2, "CNTR_CODE": "DK", "NUTS_NAME": "Midtjylland", "geo": "DK04", "time_2018_MEAN": 81.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.58162, 56.68964 ], [ 11.54576, 56.68609 ], [ 11.50697, 56.71788 ], [ 11.52602, 56.72736 ], [ 11.60714, 56.73055 ], [ 11.58162, 56.68964 ] ] ], [ [ [ 9.31946, 56.67209 ], [ 9.36776, 56.65977 ], [ 9.43816, 56.64181 ], [ 9.51796, 56.67401 ], [ 9.64568, 56.62754 ], [ 9.65679, 56.58641 ], [ 9.79582, 56.56161 ], [ 9.8626, 56.55556 ], [ 10.08924, 56.6171 ], [ 10.19436, 56.68466 ], [ 10.32623, 56.67639 ], [ 10.36333, 56.5837 ], [ 10.43529, 56.53563 ], [ 10.82758, 56.51651 ], [ 10.92269, 56.45197 ], [ 10.90446, 56.35804 ], [ 10.7098, 56.1649 ], [ 10.61941, 56.21795 ], [ 10.52436, 56.12654 ], [ 10.43055, 56.18237 ], [ 10.46746, 56.22879 ], [ 10.4608, 56.26771 ], [ 10.39349, 56.26778 ], [ 10.24599, 56.16117 ], [ 10.26275, 55.9824 ], [ 10.19914, 55.86703 ], [ 10.0889, 55.83172 ], [ 9.96423, 55.70102 ], [ 9.79295, 55.68001 ], [ 9.67206, 55.71206 ], [ 9.66655, 55.75056 ], [ 9.53107, 55.78785 ], [ 9.38701, 55.92415 ], [ 9.36776, 55.92706 ], [ 9.22707, 55.94835 ], [ 9.03175, 55.83653 ], [ 8.87965, 55.89114 ], [ 8.77775, 55.81075 ], [ 8.56146, 55.84431 ], [ 8.48189, 55.77945 ], [ 8.3996, 55.80219 ], [ 8.17079, 55.81538 ], [ 8.16449, 55.89199 ], [ 8.29719, 55.86551 ], [ 8.36248, 55.93378 ], [ 8.27905, 56.06425 ], [ 8.12086, 56.0894 ], [ 8.13885, 56.30898 ], [ 8.24634, 56.33099 ], [ 8.12417, 56.48008 ], [ 8.13097, 56.5679 ], [ 8.18281, 56.66481 ], [ 8.2967, 56.58121 ], [ 8.5452, 56.56153 ], [ 8.61122, 56.49523 ], [ 8.69678, 56.48229 ], [ 8.74361, 56.54678 ], [ 8.70569, 56.62629 ], [ 9.00647, 56.83627 ], [ 9.15494, 56.71948 ], [ 9.06754, 56.62287 ], [ 9.06575, 56.57864 ], [ 9.1475, 56.62716 ], [ 9.28727, 56.62332 ], [ 9.31946, 56.67209 ] ] ], [ [ [ 10.64305, 55.79716 ], [ 10.6216, 55.76597 ], [ 10.55207, 55.76855 ], [ 10.52507, 55.82214 ], [ 10.52923, 55.85202 ], [ 10.59321, 55.8821 ], [ 10.60315, 55.92949 ], [ 10.64731, 55.91821 ], [ 10.67129, 55.87381 ], [ 10.6455, 55.84398 ], [ 10.64305, 55.79716 ] ] ], [ [ [ 10.56281, 56.00331 ], [ 10.5804, 55.93324 ], [ 10.53624, 55.93495 ], [ 10.51779, 55.97338 ], [ 10.56281, 56.00331 ] ] ], [ [ [ 10.33765, 55.76553 ], [ 10.32461, 55.73613 ], [ 10.27929, 55.7489 ], [ 10.31271, 55.80188 ], [ 10.33765, 55.76553 ] ] ], [ [ [ 8.57893, 56.68728 ], [ 8.59492, 56.66245 ], [ 8.6291, 56.66089 ], [ 8.63642, 56.6248 ], [ 8.59798, 56.63701 ], [ 8.58855, 56.59916 ], [ 8.55461, 56.5979 ], [ 8.53666, 56.57603 ], [ 8.48193, 56.63303 ], [ 8.4249, 56.66726 ], [ 8.46434, 56.68695 ], [ 8.49644, 56.66831 ], [ 8.57893, 56.68728 ] ] ], [ [ [ 8.15962, 56.38703 ], [ 8.12146, 56.35431 ], [ 8.09765, 56.38127 ], [ 8.11795, 56.4191 ], [ 8.15962, 56.38703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES41", "NUTS_ID": "ES41", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla y León", "geo": "ES41", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.73702, 43.02092 ], [ -4.41555, 43.03273 ], [ -4.26773, 42.95565 ], [ -4.21303, 42.87477 ], [ -4.1527, 42.8479 ], [ -4.15149, 42.80231 ], [ -4.08739, 42.83413 ], [ -4.08408, 42.79422 ], [ -4.08136, 42.76142 ], [ -4.04593, 42.76657 ], [ -4.03113, 42.79422 ], [ -4.03042, 42.80044 ], [ -4.01795, 42.80872 ], [ -4.0177, 42.82188 ], [ -4.00742, 42.82979 ], [ -4.00139, 42.82501 ], [ -3.99678, 42.79726 ], [ -3.99709, 42.79422 ], [ -3.99967, 42.76893 ], [ -3.89837, 42.79422 ], [ -3.8387, 42.80912 ], [ -3.85131, 42.8479 ], [ -3.86866, 42.90124 ], [ -3.84681, 42.91846 ], [ -3.85487, 42.93968 ], [ -3.94078, 42.91252 ], [ -3.9815, 42.93429 ], [ -3.94717, 42.99753 ], [ -3.83249, 43.07127 ], [ -3.74495, 43.09384 ], [ -3.69851, 43.13208 ], [ -3.65166, 43.17067 ], [ -3.41768, 43.13337 ], [ -3.26399, 43.19152 ], [ -3.16975, 43.16843 ], [ -3.1414, 43.16148 ], [ -3.1637, 43.13208 ], [ -3.1486, 43.03353 ], [ -3.08902, 43.00158 ], [ -3.03699, 42.98219 ], [ -3.00385, 42.93983 ], [ -3.03026, 42.9135 ], [ -3.16975, 42.93307 ], [ -3.20096, 42.93745 ], [ -3.2308, 42.9201 ], [ -3.23517, 42.86236 ], [ -3.16975, 42.85285 ], [ -3.13568, 42.8479 ], [ -3.12931, 42.79422 ], [ -3.12646, 42.77029 ], [ -2.9445, 42.71043 ], [ -2.85812, 42.63817 ], [ -3.05495, 42.61879 ], [ -3.09818, 42.55135 ], [ -3.08333, 42.46028 ], [ -3.10665, 42.40816 ], [ -3.07365, 42.36786 ], [ -3.10352, 42.31771 ], [ -3.11215, 42.19472 ], [ -3.03901, 42.10346 ], [ -2.9465, 42.07574 ], [ -2.91364, 42.02284 ], [ -2.82003, 42.03801 ], [ -2.75075, 42.12179 ], [ -2.71683, 42.09051 ], [ -2.74217, 42.01631 ], [ -2.58778, 42.00242 ], [ -2.5062, 42.10702 ], [ -2.32442, 42.14224 ], [ -2.26046, 42.09665 ], [ -2.145, 42.09557 ], [ -2.09509, 41.95958 ], [ -2.03377, 41.94274 ], [ -1.96477, 41.92379 ], [ -1.85654, 41.96639 ], [ -1.83124, 41.85549 ], [ -1.79685, 41.7047 ], [ -1.83124, 41.68308 ], [ -1.97469, 41.59289 ], [ -1.96654, 41.42359 ], [ -2.03377, 41.39676 ], [ -2.10106, 41.43673 ], [ -2.16616, 41.32902 ], [ -2.14519, 41.1966 ], [ -2.05169, 41.14686 ], [ -2.0685, 41.08432 ], [ -2.13113, 41.10946 ], [ -2.29404, 41.06237 ], [ -2.42484, 41.06355 ], [ -2.52183, 41.13951 ], [ -2.57735, 41.14963 ], [ -2.60012, 41.21769 ], [ -2.72768, 41.2711 ], [ -2.84076, 41.26861 ], [ -2.8966, 41.32207 ], [ -3.06104, 41.27792 ], [ -3.16975, 41.29748 ], [ -3.20737, 41.30424 ], [ -3.26566, 41.26167 ], [ -3.38613, 41.25381 ], [ -3.53957, 41.16499 ], [ -3.61386, 41.14587 ], [ -3.78503, 41.00385 ], [ -3.89935, 40.95828 ], [ -3.97912, 40.79493 ], [ -4.07399, 40.78391 ], [ -4.16029, 40.68985 ], [ -4.17342, 40.62321 ], [ -4.2705, 40.59783 ], [ -4.31503, 40.5469 ], [ -4.33879, 40.42214 ], [ -4.42458, 40.3986 ], [ -4.46177, 40.32482 ], [ -4.5382, 40.33062 ], [ -4.57908, 40.2172 ], [ -4.6582, 40.20749 ], [ -4.70517, 40.27363 ], [ -4.79379, 40.26759 ], [ -4.97166, 40.12302 ], [ -5.03695, 40.15338 ], [ -5.16903, 40.08846 ], [ -5.33602, 40.11586 ], [ -5.36886, 40.25469 ], [ -5.5343, 40.19882 ], [ -5.7376, 40.29416 ], [ -5.78421, 40.292 ], [ -5.81097, 40.34586 ], [ -5.92499, 40.28829 ], [ -5.97971, 40.29835 ], [ -6.22156, 40.48251 ], [ -6.53513, 40.34072 ], [ -6.59286, 40.27262 ], [ -6.77174, 40.24218 ], [ -6.86514, 40.27069 ], [ -6.78906, 40.35151 ], [ -6.84287, 40.4428 ], [ -6.80122, 40.51946 ], [ -6.83767, 40.58011 ], [ -6.80073, 40.66184 ], [ -6.82593, 40.74961 ], [ -6.80821, 40.85961 ], [ -6.9299, 41.02947 ], [ -6.80946, 41.04751 ], [ -6.68979, 41.20524 ], [ -6.47971, 41.29438 ], [ -6.32521, 41.39405 ], [ -6.20392, 41.58575 ], [ -6.32411, 41.66811 ], [ -6.53391, 41.67859 ], [ -6.56055, 41.74638 ], [ -6.52361, 41.8597 ], [ -6.56046, 41.88794 ], [ -6.57668, 41.9548 ], [ -6.71655, 41.93802 ], [ -6.79603, 41.98686 ], [ -6.83453, 41.94867 ], [ -6.90381, 41.94168 ], [ -6.9858, 41.97145 ], [ -6.96982, 42.03659 ], [ -7.01977, 42.07514 ], [ -6.9293, 42.17606 ], [ -6.78431, 42.25361 ], [ -6.73663, 42.34173 ], [ -6.82423, 42.39279 ], [ -6.8228, 42.42348 ], [ -6.83746, 42.48801 ], [ -6.93014, 42.51612 ], [ -7.07683, 42.50812 ], [ -7.02318, 42.69464 ], [ -6.8758, 42.79422 ], [ -6.85286, 42.8479 ], [ -6.82417, 42.91501 ], [ -6.78781, 42.90124 ], [ -6.76033, 42.89083 ], [ -6.69188, 42.90124 ], [ -6.45645, 42.93704 ], [ -6.36665, 43.05094 ], [ -6.23984, 43.01882 ], [ -6.19764, 43.0446 ], [ -6.11699, 43.0283 ], [ -6.07388, 43.06791 ], [ -5.98673, 43.05905 ], [ -5.81918, 42.9672 ], [ -5.77154, 42.97613 ], [ -5.70045, 43.05024 ], [ -5.52155, 43.02052 ], [ -5.36813, 43.08723 ], [ -5.32192, 43.07953 ], [ -5.11033, 43.10939 ], [ -5.09622, 43.13208 ], [ -5.06959, 43.17493 ], [ -4.91409, 43.23171 ], [ -4.84104, 43.18071 ], [ -4.83919, 43.13208 ], [ -4.83851, 43.1141 ], [ -4.75471, 43.06283 ], [ -4.73702, 43.02092 ] ], [ [ -4.31934, 40.6476 ], [ -4.26915, 40.65533 ], [ -4.27416, 40.67709 ], [ -4.28823, 40.68061 ], [ -4.31468, 40.6672 ], [ -4.32334, 40.65742 ], [ -4.31934, 40.6476 ] ] ], [ [ [ -2.85514, 42.74197 ], [ -2.83502, 42.79422 ], [ -2.76951, 42.79422 ], [ -2.73161, 42.79337 ], [ -2.64347, 42.76504 ], [ -2.60286, 42.77023 ], [ -2.56416, 42.73944 ], [ -2.6071, 42.69599 ], [ -2.57915, 42.67058 ], [ -2.52415, 42.68417 ], [ -2.5188, 42.64767 ], [ -2.55027, 42.63885 ], [ -2.58477, 42.65151 ], [ -2.6383, 42.65012 ], [ -2.65828, 42.67211 ], [ -2.71718, 42.66287 ], [ -2.76733, 42.6663 ], [ -2.78382, 42.69901 ], [ -2.82435, 42.70894 ], [ -2.85514, 42.74197 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ES42", "NUTS_ID": "ES42", "LEVL_CODE": 2, "CNTR_CODE": "ES", "NUTS_NAME": "Castilla-La Mancha", "geo": "ES42", "time_2018_MEAN": 83.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.14686 ], [ -2.03377, 41.1503 ], [ -1.9601, 41.16447 ], [ -1.83124, 41.08325 ], [ -1.67314, 40.98359 ], [ -1.61743, 40.94374 ], [ -1.61185, 40.87889 ], [ -1.54528, 40.80248 ], [ -1.54166, 40.66325 ], [ -1.57743, 40.57608 ], [ -1.67314, 40.59067 ], [ -1.70208, 40.48854 ], [ -1.80634, 40.39825 ], [ -1.70594, 40.29821 ], [ -1.67314, 40.29855 ], [ -1.55196, 40.20242 ], [ -1.44949, 40.18936 ], [ -1.44883, 40.14536 ], [ -1.3678, 40.02083 ], [ -1.16515, 40.01011 ], [ -1.14236, 39.97186 ], [ -1.19654, 39.94295 ], [ -1.20851, 39.8341 ], [ -1.27485, 39.69091 ], [ -1.38581, 39.6765 ], [ -1.49739, 39.55845 ], [ -1.50515, 39.41801 ], [ -1.44125, 39.36471 ], [ -1.18075, 39.3077 ], [ -1.1756, 39.26762 ], [ -1.25788, 39.05125 ], [ -1.14036, 38.93317 ], [ -0.95675, 38.9343 ], [ -0.92888, 38.78384 ], [ -0.95169, 38.76724 ], [ -0.93145, 38.68542 ], [ -1.02687, 38.65551 ], [ -1.17237, 38.75047 ], [ -1.33165, 38.686 ], [ -1.39863, 38.68958 ], [ -1.49178, 38.54443 ], [ -1.48816, 38.37491 ], [ -1.58805, 38.31455 ], [ -1.67314, 38.32114 ], [ -1.74005, 38.37716 ], [ -1.83124, 38.33679 ], [ -1.92365, 38.29587 ], [ -2.03377, 38.2964 ], [ -2.05246, 38.29649 ], [ -2.20889, 38.20075 ], [ -2.3416, 38.02602 ], [ -2.55127, 38.08412 ], [ -2.45232, 38.19099 ], [ -2.44233, 38.26832 ], [ -2.48187, 38.31392 ], [ -2.48805, 38.38609 ], [ -2.56445, 38.41787 ], [ -2.59162, 38.50331 ], [ -2.76207, 38.53278 ], [ -2.86, 38.46508 ], [ -2.95857, 38.46739 ], [ -3.01034, 38.4285 ], [ -3.06771, 38.4689 ], [ -3.14603, 38.44235 ], [ -3.16975, 38.44653 ], [ -3.34172, 38.47688 ], [ -3.45392, 38.40254 ], [ -3.56501, 38.44578 ], [ -3.61407, 38.39974 ], [ -3.76473, 38.41978 ], [ -3.93519, 38.36888 ], [ -4.24898, 38.39693 ], [ -4.26889, 38.34721 ], [ -4.44706, 38.40523 ], [ -4.65366, 38.5379 ], [ -4.84238, 38.61054 ], [ -4.88583, 38.68103 ], [ -4.98235, 38.69085 ], [ -5.047, 38.72913 ], [ -4.98344, 38.75409 ], [ -4.92449, 38.87392 ], [ -4.84111, 38.90772 ], [ -4.84684, 38.93684 ], [ -4.9284, 38.97316 ], [ -4.95414, 39.04885 ], [ -4.84461, 39.04849 ], [ -4.86542, 39.11614 ], [ -4.80681, 39.19192 ], [ -4.67532, 39.17854 ], [ -4.75121, 39.30657 ], [ -4.68341, 39.39868 ], [ -4.68773, 39.45034 ], [ -4.75541, 39.41576 ], [ -4.86788, 39.37464 ], [ -4.94078, 39.39516 ], [ -4.95255, 39.39504 ], [ -5.19173, 39.58967 ], [ -5.14467, 39.70114 ], [ -5.16925, 39.78919 ], [ -5.29496, 39.76172 ], [ -5.30138, 39.86945 ], [ -5.39745, 39.88735 ], [ -5.36966, 40.08199 ], [ -5.33602, 40.11586 ], [ -5.16903, 40.08846 ], [ -5.03695, 40.15338 ], [ -4.97166, 40.12302 ], [ -4.79379, 40.26759 ], [ -4.70517, 40.27363 ], [ -4.6582, 40.20749 ], [ -4.57908, 40.2172 ], [ -4.46186, 40.23597 ], [ -4.37627, 40.29891 ], [ -4.30969, 40.23569 ], [ -4.18638, 40.27954 ], [ -3.63185, 40.10814 ], [ -3.65324, 40.0389 ], [ -3.84934, 39.93132 ], [ -3.82335, 39.9 ], [ -3.50842, 40.03477 ], [ -3.34521, 40.06992 ], [ -3.16142, 40.0649 ], [ -3.06832, 40.09292 ], [ -3.06769, 40.15788 ], [ -3.10717, 40.27255 ], [ -3.16975, 40.25726 ], [ -3.18726, 40.25298 ], [ -3.16975, 40.30661 ], [ -3.13811, 40.4035 ], [ -3.16975, 40.43068 ], [ -3.19286, 40.45054 ], [ -3.20738, 40.51286 ], [ -3.28172, 40.55043 ], [ -3.37751, 40.66953 ], [ -3.45602, 40.69113 ], [ -3.47847, 40.82446 ], [ -3.40336, 40.99939 ], [ -3.43866, 41.08002 ], [ -3.53957, 41.16499 ], [ -3.38613, 41.25381 ], [ -3.26566, 41.26167 ], [ -3.20737, 41.30424 ], [ -3.16975, 41.29748 ], [ -3.06104, 41.27792 ], [ -2.8966, 41.32207 ], [ -2.84076, 41.26861 ], [ -2.72768, 41.2711 ], [ -2.60012, 41.21769 ], [ -2.57735, 41.14963 ], [ -2.52183, 41.13951 ], [ -2.42484, 41.06355 ], [ -2.29404, 41.06237 ], [ -2.13113, 41.10946 ], [ -2.0685, 41.08432 ], [ -2.05169, 41.14686 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU23", "NUTS_ID": "HU23", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Dunántúl", "geo": "HU23", "time_2018_MEAN": 75.833333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.2109, 46.77816 ], [ 18.30005, 46.80741 ], [ 18.47182, 46.74247 ], [ 18.55366, 46.77608 ], [ 18.65522, 46.69256 ], [ 18.87451, 46.84797 ], [ 18.9251, 46.85717 ], [ 18.99621, 46.69266 ], [ 18.86935, 46.61157 ], [ 18.91652, 46.47741 ], [ 18.88976, 46.38613 ], [ 18.91574, 46.28933 ], [ 18.8729, 46.25923 ], [ 18.80229, 46.10876 ], [ 18.74206, 46.04323 ], [ 18.85623, 46.02302 ], [ 18.82131, 45.91438 ], [ 18.78288, 45.88688 ], [ 18.66868, 45.912 ], [ 18.56828, 45.80272 ], [ 18.42819, 45.74082 ], [ 17.91209, 45.79078 ], [ 17.86848, 45.77672 ], [ 17.6515, 45.84784 ], [ 17.5789, 45.92833 ], [ 17.37695, 45.93786 ], [ 17.29433, 45.98854 ], [ 17.1624, 46.1623 ], [ 16.95796, 46.23601 ], [ 16.87604, 46.3206 ], [ 17.01702, 46.31294 ], [ 17.0512, 46.34489 ], [ 17.0481, 46.40671 ], [ 17.18016, 46.43438 ], [ 17.22152, 46.51749 ], [ 17.22678, 46.66692 ], [ 17.28091, 46.72908 ], [ 17.41907, 46.75066 ], [ 17.65559, 46.80878 ], [ 18.09597, 46.97774 ], [ 18.20525, 46.97163 ], [ 18.18353, 46.94229 ], [ 18.2109, 46.77816 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU31", "NUTS_ID": "HU31", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Magyarország", "geo": "HU31", "time_2018_MEAN": 74.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.12108, 48.37831 ], [ 22.07122, 48.30792 ], [ 21.68845, 48.19364 ], [ 21.57159, 48.20416 ], [ 21.44721, 48.16878 ], [ 21.42287, 48.1293 ], [ 21.45146, 48.07587 ], [ 21.43391, 48.0495 ], [ 21.34974, 48.02426 ], [ 21.25656, 48.04777 ], [ 21.12743, 48.03726 ], [ 21.0941, 48.00106 ], [ 21.12218, 47.96183 ], [ 21.04212, 47.76117 ], [ 20.82797, 47.65902 ], [ 20.7717, 47.65448 ], [ 20.64939, 47.54807 ], [ 20.40357, 47.42583 ], [ 20.31374, 47.46394 ], [ 20.28821, 47.53401 ], [ 20.20674, 47.59844 ], [ 20.0592, 47.56871 ], [ 19.98491, 47.66612 ], [ 19.88262, 47.65873 ], [ 19.82376, 47.60272 ], [ 19.7471, 47.61635 ], [ 19.66633, 47.58855 ], [ 19.57094, 47.7349 ], [ 19.47273, 47.69946 ], [ 19.42045, 47.81351 ], [ 19.07866, 47.84925 ], [ 18.95629, 47.93733 ], [ 18.99761, 48.00841 ], [ 18.92839, 48.05683 ], [ 19.01432, 48.07774 ], [ 19.23374, 48.05827 ], [ 19.47152, 48.10195 ], [ 19.52575, 48.19602 ], [ 19.636, 48.24457 ], [ 19.92298, 48.13628 ], [ 20.05188, 48.1677 ], [ 20.15053, 48.2462 ], [ 20.31993, 48.27716 ], [ 20.46394, 48.46397 ], [ 20.52175, 48.53194 ], [ 20.73632, 48.57229 ], [ 20.81338, 48.5776 ], [ 21.12728, 48.50654 ], [ 21.44771, 48.57221 ], [ 21.59888, 48.50403 ], [ 21.69172, 48.38976 ], [ 21.78804, 48.34456 ], [ 22.00241, 48.38502 ], [ 22.12108, 48.37831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU32", "NUTS_ID": "HU32", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Észak-Alföld", "geo": "HU32", "time_2018_MEAN": 75.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.89627, 47.95412 ], [ 22.66343, 47.78645 ], [ 22.56411, 47.77359 ], [ 22.47244, 47.80565 ], [ 22.42029, 47.74652 ], [ 22.32067, 47.75548 ], [ 22.22288, 47.6782 ], [ 22.18084, 47.60009 ], [ 22.12832, 47.59809 ], [ 22.02145, 47.50959 ], [ 22.01973, 47.39266 ], [ 21.92931, 47.35728 ], [ 21.79545, 47.12063 ], [ 21.68845, 47.05395 ], [ 21.65896, 47.02213 ], [ 21.49536, 46.94693 ], [ 21.28502, 47.00046 ], [ 21.23567, 47.04392 ], [ 21.2973, 47.09997 ], [ 21.29484, 47.14358 ], [ 20.9921, 47.23229 ], [ 20.86638, 47.15255 ], [ 20.81338, 47.04711 ], [ 20.71851, 47.03387 ], [ 20.69358, 46.91769 ], [ 20.45467, 46.89405 ], [ 20.41561, 46.85684 ], [ 20.42427, 46.80347 ], [ 20.31891, 46.76594 ], [ 20.2355, 46.79334 ], [ 20.17161, 46.76168 ], [ 20.06116, 46.80639 ], [ 20.13869, 46.92147 ], [ 20.09469, 47.00741 ], [ 20.05534, 47.12097 ], [ 20.08833, 47.19597 ], [ 19.9997, 47.25475 ], [ 20.00781, 47.30601 ], [ 19.97873, 47.3546 ], [ 19.76516, 47.48115 ], [ 19.75286, 47.53084 ], [ 19.67324, 47.53639 ], [ 19.66633, 47.58855 ], [ 19.7471, 47.61635 ], [ 19.82376, 47.60272 ], [ 19.88262, 47.65873 ], [ 19.98491, 47.66612 ], [ 20.0592, 47.56871 ], [ 20.20674, 47.59844 ], [ 20.28821, 47.53401 ], [ 20.31374, 47.46394 ], [ 20.40357, 47.42583 ], [ 20.64939, 47.54807 ], [ 20.7717, 47.65448 ], [ 20.82797, 47.65902 ], [ 21.04212, 47.76117 ], [ 21.12218, 47.96183 ], [ 21.0941, 48.00106 ], [ 21.12743, 48.03726 ], [ 21.25656, 48.04777 ], [ 21.34974, 48.02426 ], [ 21.43391, 48.0495 ], [ 21.45146, 48.07587 ], [ 21.42287, 48.1293 ], [ 21.44721, 48.16878 ], [ 21.57159, 48.20416 ], [ 21.68845, 48.19364 ], [ 22.07122, 48.30792 ], [ 22.12108, 48.37831 ], [ 22.15531, 48.4034 ], [ 22.24829, 48.41203 ], [ 22.36416, 48.25532 ], [ 22.50061, 48.23972 ], [ 22.60777, 48.10681 ], [ 22.82094, 48.11025 ], [ 22.87085, 48.04215 ], [ 22.84942, 47.991 ], [ 22.89627, 47.95412 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU33", "NUTS_ID": "HU33", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Dél-Alföld", "geo": "HU33", "time_2018_MEAN": 76.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.65896, 47.02213 ], [ 21.66779, 46.97842 ], [ 21.60249, 46.87488 ], [ 21.52975, 46.83471 ], [ 21.49564, 46.7749 ], [ 21.51815, 46.71554 ], [ 21.44611, 46.68946 ], [ 21.4414, 46.65147 ], [ 21.32011, 46.61596 ], [ 21.2678, 46.5088 ], [ 21.30365, 46.42682 ], [ 21.21505, 46.40207 ], [ 21.17352, 46.31269 ], [ 21.08608, 46.25618 ], [ 20.81338, 46.27351 ], [ 20.7756, 46.27591 ], [ 20.7053, 46.16094 ], [ 20.62693, 46.13544 ], [ 20.51112, 46.18404 ], [ 20.45706, 46.1504 ], [ 20.34893, 46.1653 ], [ 20.2643, 46.12637 ], [ 19.98639, 46.17605 ], [ 19.86539, 46.15033 ], [ 19.7978, 46.13588 ], [ 19.6981, 46.18793 ], [ 19.5463, 46.16584 ], [ 19.42385, 46.05338 ], [ 19.29955, 46.02092 ], [ 19.30271, 45.99155 ], [ 19.16578, 45.99713 ], [ 19.11113, 46.03499 ], [ 19.06536, 45.96689 ], [ 18.88973, 45.92118 ], [ 18.82131, 45.91438 ], [ 18.85623, 46.02302 ], [ 18.74206, 46.04323 ], [ 18.80229, 46.10876 ], [ 18.8729, 46.25923 ], [ 18.91574, 46.28933 ], [ 18.88976, 46.38613 ], [ 18.91652, 46.47741 ], [ 18.86935, 46.61157 ], [ 18.99621, 46.69266 ], [ 18.9251, 46.85717 ], [ 18.96028, 46.92108 ], [ 18.96591, 47.02896 ], [ 18.98946, 47.05346 ], [ 19.07146, 47.04323 ], [ 19.25999, 47.12682 ], [ 19.33568, 47.09746 ], [ 19.30534, 47.03773 ], [ 19.32622, 47.02029 ], [ 19.47149, 47.06311 ], [ 19.51192, 47.11129 ], [ 19.58603, 47.11232 ], [ 19.66755, 47.01221 ], [ 19.78868, 46.95067 ], [ 19.8825, 46.98967 ], [ 19.96938, 46.9681 ], [ 20.03034, 47.00697 ], [ 20.09469, 47.00741 ], [ 20.13869, 46.92147 ], [ 20.06116, 46.80639 ], [ 20.17161, 46.76168 ], [ 20.2355, 46.79334 ], [ 20.31891, 46.76594 ], [ 20.42427, 46.80347 ], [ 20.41561, 46.85684 ], [ 20.45467, 46.89405 ], [ 20.69358, 46.91769 ], [ 20.71851, 47.03387 ], [ 20.81338, 47.04711 ], [ 20.86638, 47.15255 ], [ 20.9921, 47.23229 ], [ 21.29484, 47.14358 ], [ 21.2973, 47.09997 ], [ 21.23567, 47.04392 ], [ 21.28502, 47.00046 ], [ 21.49536, 46.94693 ], [ 21.65896, 47.02213 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "IE04", "NUTS_ID": "IE04", "LEVL_CODE": 2, "CNTR_CODE": "IE", "NUTS_NAME": "Northern and Western", "geo": "IE04", "time_2018_MEAN": 82.63333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.25607, 55.06703 ], [ -7.34292, 55.05048 ], [ -7.39675, 55.01234 ], [ -7.41529, 54.94866 ], [ -7.44754, 54.93485 ], [ -7.45244, 54.86459 ], [ -7.55987, 54.75172 ], [ -7.7432, 54.71002 ], [ -7.83777, 54.72874 ], [ -7.90049, 54.67949 ], [ -7.84827, 54.64031 ], [ -7.74138, 54.61668 ], [ -7.70341, 54.60829 ], [ -7.85966, 54.5362 ], [ -7.9992, 54.53968 ], [ -8.02844, 54.52343 ], [ -8.14906, 54.45643 ], [ -8.06309, 54.37568 ], [ -8.02844, 54.35778 ], [ -7.8716, 54.27671 ], [ -7.82836, 54.21034 ], [ -7.70258, 54.20113 ], [ -7.60039, 54.15159 ], [ -7.55403, 54.13392 ], [ -7.36036, 54.12444 ], [ -7.26877, 54.15159 ], [ -7.21675, 54.21034 ], [ -7.15119, 54.23281 ], [ -7.19845, 54.29889 ], [ -7.18851, 54.33768 ], [ -7.01804, 54.41617 ], [ -6.86423, 54.33017 ], [ -6.79896, 54.21549 ], [ -6.77645, 54.21034 ], [ -6.64391, 54.18002 ], [ -6.64719, 54.15159 ], [ -6.65652, 54.07065 ], [ -6.59499, 54.04467 ], [ -6.58147, 53.98268 ], [ -6.68503, 53.91794 ], [ -6.91261, 53.87591 ], [ -6.99213, 53.78251 ], [ -7.34383, 53.79906 ], [ -7.43634, 53.79137 ], [ -7.48769, 53.8507 ], [ -7.56195, 53.86274 ], [ -7.56678, 53.90354 ], [ -7.63063, 53.93787 ], [ -7.7972, 53.81931 ], [ -7.91877, 53.82149 ], [ -7.88998, 53.76856 ], [ -8.02058, 53.65159 ], [ -8.03357, 53.60461 ], [ -7.9782, 53.5412 ], [ -7.9209, 53.37204 ], [ -8.0442, 53.28946 ], [ -7.98193, 53.21106 ], [ -8.08146, 53.16688 ], [ -8.35279, 52.97666 ], [ -8.48485, 52.9809 ], [ -8.59027, 53.04188 ], [ -8.70806, 53.02629 ], [ -8.78716, 52.9786 ], [ -8.86723, 52.98026 ], [ -8.90239, 53.06009 ], [ -8.94981, 53.08515 ], [ -9.00768, 53.11075 ], [ -9.01716, 53.14304 ], [ -8.98333, 53.19527 ], [ -9.05092, 53.25114 ], [ -9.68769, 53.24906 ], [ -9.73082, 53.32224 ], [ -9.84006, 53.32721 ], [ -9.90558, 53.38662 ], [ -10.07732, 53.42363 ], [ -10.11049, 53.53198 ], [ -9.93064, 53.62195 ], [ -9.86415, 53.74332 ], [ -9.71858, 53.79086 ], [ -9.68658, 53.8312 ], [ -9.77934, 53.88529 ], [ -9.96313, 53.8858 ], [ -10.15236, 53.97933 ], [ -10.13862, 54.00491 ], [ -10.05694, 54.01364 ], [ -9.93203, 53.96974 ], [ -9.89437, 53.99137 ], [ -9.89514, 54.0532 ], [ -9.94605, 54.10038 ], [ -9.95907, 54.15159 ], [ -9.97853, 54.17674 ], [ -10.07517, 54.16159 ], [ -10.03159, 54.26505 ], [ -9.89803, 54.26051 ], [ -9.76154, 54.33053 ], [ -9.35564, 54.31339 ], [ -9.22546, 54.26677 ], [ -9.13226, 54.16236 ], [ -9.00134, 54.28459 ], [ -8.61085, 54.25806 ], [ -8.57491, 54.29342 ], [ -8.60791, 54.37161 ], [ -8.29291, 54.49735 ], [ -8.22641, 54.55533 ], [ -8.22248, 54.61726 ], [ -8.57843, 54.6203 ], [ -8.73173, 54.70463 ], [ -8.42396, 54.85741 ], [ -8.42509, 54.99725 ], [ -8.26508, 55.13715 ], [ -8.02844, 55.19479 ], [ -7.99823, 55.20215 ], [ -7.87631, 55.18842 ], [ -7.6751, 55.25485 ], [ -7.56803, 55.15055 ], [ -7.54021, 55.06388 ], [ -7.5025, 55.1086 ], [ -7.51433, 55.23721 ], [ -7.33953, 55.35215 ], [ -7.00658, 55.24335 ], [ -7.25607, 55.06703 ] ] ], [ [ [ -8.4951, 55.0023 ], [ -8.4936, 54.96972 ], [ -8.56812, 54.97643 ], [ -8.53807, 55.02211 ], [ -8.4951, 55.0023 ] ] ], [ [ [ -9.49143, 53.056 ], [ -9.52057, 53.03474 ], [ -9.56366, 53.04305 ], [ -9.57263, 53.06611 ], [ -9.62396, 53.07208 ], [ -9.60127, 53.10601 ], [ -9.54804, 53.08955 ], [ -9.49143, 53.056 ] ] ], [ [ [ -9.64719, 53.13327 ], [ -9.65149, 53.09898 ], [ -9.73257, 53.12496 ], [ -9.70863, 53.14582 ], [ -9.64719, 53.13327 ] ] ], [ [ [ -9.73974, 53.15098 ], [ -9.75392, 53.11204 ], [ -9.8213, 53.14868 ], [ -9.80701, 53.16002 ], [ -9.73974, 53.15098 ] ] ], [ [ [ -9.93958, 53.80398 ], [ -9.98515, 53.78377 ], [ -10.0176, 53.80241 ], [ -9.97051, 53.83578 ], [ -9.93958, 53.80398 ] ] ], [ [ [ -10.08644, 53.68969 ], [ -10.13655, 53.68145 ], [ -10.14414, 53.70268 ], [ -10.14193, 53.72732 ], [ -10.0908, 53.71893 ], [ -10.08644, 53.68969 ] ] ], [ [ [ -10.16333, 53.63603 ], [ -10.18672, 53.59694 ], [ -10.22705, 53.60134 ], [ -10.21517, 53.64477 ], [ -10.16333, 53.63603 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EE00", "NUTS_ID": "EE00", "LEVL_CODE": 2, "CNTR_CODE": "EE", "NUTS_NAME": "Eesti", "geo": "EE00", "time_2018_MEAN": 78.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.83016, 59.56406 ], [ 25.88224, 59.61091 ], [ 25.94783, 59.58554 ], [ 26.03973, 59.62231 ], [ 26.50677, 59.52015 ], [ 26.65191, 59.54335 ], [ 26.75936, 59.49943 ], [ 26.9544, 59.43818 ], [ 26.96382, 59.43836 ], [ 27.37912, 59.44618 ], [ 27.82601, 59.39642 ], [ 27.9438, 59.41233 ], [ 28.04192, 59.47012 ], [ 28.1839, 59.39987 ], [ 28.19369, 59.35765 ], [ 28.11827, 59.29406 ], [ 27.92462, 59.25051 ], [ 27.71555, 58.96778 ], [ 27.37912, 58.79807 ], [ 27.35705, 58.78714 ], [ 27.37912, 58.73976 ], [ 27.54408, 58.38186 ], [ 27.48973, 58.24655 ], [ 27.62248, 58.09779 ], [ 27.62038, 58.01905 ], [ 27.66343, 58.01136 ], [ 27.6986, 57.99468 ], [ 27.67129, 57.94048 ], [ 27.80061, 57.89216 ], [ 27.79784, 57.85526 ], [ 27.55409, 57.82649 ], [ 27.51794, 57.77665 ], [ 27.525, 57.72099 ], [ 27.39081, 57.67673 ], [ 27.38823, 57.61372 ], [ 27.32975, 57.57315 ], [ 27.35158, 57.51824 ], [ 27.25935, 57.55015 ], [ 27.10185, 57.56694 ], [ 26.91395, 57.62744 ], [ 26.52428, 57.52152 ], [ 26.46019, 57.57114 ], [ 26.27586, 57.60168 ], [ 26.18933, 57.71701 ], [ 26.03695, 57.77282 ], [ 26.04887, 57.83126 ], [ 26.02687, 57.84835 ], [ 25.90042, 57.84907 ], [ 25.75527, 57.91592 ], [ 25.68561, 57.91188 ], [ 25.30248, 58.07191 ], [ 25.27733, 58.06187 ], [ 25.29966, 58.01775 ], [ 25.28106, 57.99593 ], [ 25.19629, 58.0735 ], [ 25.11444, 58.07492 ], [ 25.04631, 58.04015 ], [ 24.83408, 57.97278 ], [ 24.77973, 57.98626 ], [ 24.6972, 57.95167 ], [ 24.52648, 57.94518 ], [ 24.43385, 57.873 ], [ 24.35282, 57.87656 ], [ 24.45205, 58.04837 ], [ 24.48133, 58.21202 ], [ 24.54532, 58.29372 ], [ 24.5341, 58.33727 ], [ 24.37674, 58.37175 ], [ 24.2312, 58.28223 ], [ 24.09371, 58.25623 ], [ 23.75855, 58.37462 ], [ 23.54473, 58.60757 ], [ 23.55103, 58.68376 ], [ 23.63808, 58.74938 ], [ 23.49719, 58.82659 ], [ 23.46595, 58.89617 ], [ 23.46341, 59.04342 ], [ 23.54586, 59.19994 ], [ 23.73058, 59.23732 ], [ 23.89527, 59.29236 ], [ 23.94555, 59.35221 ], [ 23.9687, 59.34504 ], [ 23.9661, 59.2954 ], [ 24.066, 59.29484 ], [ 24.08209, 59.36345 ], [ 24.21837, 59.35811 ], [ 24.38222, 59.46283 ], [ 24.78096, 59.45751 ], [ 24.82857, 59.54445 ], [ 24.99509, 59.49278 ], [ 25.12015, 59.48855 ], [ 25.20841, 59.51679 ], [ 25.41633, 59.49951 ], [ 25.51897, 59.53838 ], [ 25.53416, 59.60865 ], [ 25.66665, 59.58426 ], [ 25.70576, 59.64688 ], [ 25.83016, 59.56406 ] ] ], [ [ [ 25.04484, 59.63141 ], [ 25.01585, 59.59664 ], [ 24.97758, 59.62232 ], [ 24.98676, 59.6527 ], [ 25.04484, 59.63141 ] ] ], [ [ [ 24.55353, 59.55782 ], [ 24.54988, 59.53929 ], [ 24.50024, 59.54743 ], [ 24.47384, 59.57057 ], [ 24.50977, 59.60732 ], [ 24.55353, 59.55782 ] ] ], [ [ [ 24.01108, 58.11556 ], [ 23.96568, 58.09788 ], [ 23.95267, 58.11738 ], [ 23.9642, 58.15089 ], [ 24.02129, 58.15309 ], [ 24.01108, 58.11556 ] ] ], [ [ [ 23.25146, 58.53502 ], [ 23.23166, 58.53455 ], [ 23.1536, 58.57617 ], [ 23.09366, 58.58666 ], [ 23.0747, 58.60894 ], [ 23.13596, 58.63003 ], [ 23.15623, 58.6774 ], [ 23.25146, 58.66201 ], [ 23.33081, 58.64851 ], [ 23.39388, 58.5532 ], [ 23.25146, 58.53502 ] ] ], [ [ [ 23.37281, 58.99561 ], [ 23.27489, 58.96615 ], [ 23.15324, 58.98823 ], [ 23.11702, 59.02349 ], [ 23.15324, 59.04312 ], [ 23.32921, 59.02743 ], [ 23.37281, 58.99561 ] ] ], [ [ [ 22.55036, 58.62881 ], [ 22.67446, 58.58325 ], [ 22.81915, 58.61909 ], [ 22.93809, 58.61425 ], [ 23.25146, 58.48996 ], [ 23.27858, 58.48071 ], [ 23.29091, 58.46357 ], [ 23.25146, 58.45118 ], [ 23.14688, 58.45889 ], [ 23.05483, 58.37755 ], [ 22.96642, 58.36569 ], [ 22.8954, 58.29932 ], [ 22.73361, 58.2691 ], [ 22.72261, 58.22533 ], [ 22.5099, 58.24132 ], [ 22.29012, 58.18827 ], [ 22.1861, 57.98698 ], [ 22.04974, 57.92139 ], [ 22.00689, 57.94179 ], [ 22.00671, 57.98142 ], [ 22.08136, 58.06478 ], [ 22.16562, 58.08731 ], [ 22.19434, 58.14352 ], [ 21.87394, 58.27898 ], [ 21.98024, 58.36024 ], [ 21.91217, 58.47046 ], [ 21.92984, 58.51071 ], [ 22.01436, 58.49581 ], [ 22.04461, 58.47046 ], [ 22.1003, 58.42377 ], [ 22.12289, 58.47046 ], [ 22.19941, 58.52582 ], [ 22.28417, 58.50653 ], [ 22.31604, 58.56529 ], [ 22.45043, 58.5824 ], [ 22.55036, 58.62881 ] ] ], [ [ [ 23.27527, 57.80411 ], [ 23.27151, 57.77926 ], [ 23.25146, 57.78187 ], [ 23.21479, 57.78665 ], [ 23.20799, 57.80491 ], [ 23.2208, 57.82518 ], [ 23.25146, 57.81332 ], [ 23.27527, 57.80411 ] ] ], [ [ [ 23.06367, 58.6206 ], [ 23.01947, 58.61588 ], [ 22.98946, 58.62803 ], [ 23.00433, 58.65423 ], [ 23.04153, 58.65509 ], [ 23.06367, 58.6206 ] ] ], [ [ [ 23.03076, 58.91366 ], [ 23.05397, 58.83817 ], [ 22.95297, 58.83999 ], [ 22.81573, 58.7689 ], [ 22.73525, 58.79146 ], [ 22.66623, 58.70478 ], [ 22.57425, 58.68885 ], [ 22.49726, 58.70579 ], [ 22.44454, 58.84674 ], [ 22.39894, 58.88124 ], [ 22.18247, 58.88463 ], [ 22.10401, 58.9242 ], [ 22.11241, 58.93452 ], [ 22.41518, 58.9508 ], [ 22.61329, 59.08895 ], [ 22.67972, 59.07572 ], [ 22.72447, 59.01204 ], [ 22.9209, 58.97834 ], [ 22.93832, 58.9508 ], [ 23.03076, 58.91366 ] ] ], [ [ [ 22.54254, 58.14645 ], [ 22.50496, 58.12235 ], [ 22.47532, 58.13977 ], [ 22.50289, 58.18217 ], [ 22.54254, 58.14645 ] ] ], [ [ [ 21.91743, 58.363 ], [ 21.82111, 58.3618 ], [ 21.81213, 58.387 ], [ 21.91191, 58.40689 ], [ 21.91743, 58.363 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL30", "NUTS_ID": "EL30", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aττική", "geo": "EL30", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.74359, 37.85381 ], [ 23.69835, 37.91881 ], [ 23.67453, 37.93979 ], [ 23.67223, 37.94182 ], [ 23.57075, 37.95516 ], [ 23.53288, 37.91881 ], [ 23.4452, 37.87902 ], [ 23.4134, 37.89167 ], [ 23.40991, 37.91881 ], [ 23.46726, 37.93748 ], [ 23.4495, 37.97401 ], [ 23.57139, 37.99322 ], [ 23.59695, 38.01517 ], [ 23.52252, 38.04187 ], [ 23.42137, 37.99673 ], [ 23.37869, 37.97768 ], [ 23.35073, 37.97401 ], [ 23.1797, 37.95159 ], [ 23.15214, 37.97401 ], [ 23.12424, 37.99673 ], [ 23.11753, 38.06065 ], [ 23.20318, 38.10296 ], [ 23.18922, 38.15908 ], [ 23.13593, 38.16977 ], [ 23.27332, 38.18924 ], [ 23.30813, 38.24531 ], [ 23.35532, 38.26338 ], [ 23.38648, 38.25871 ], [ 23.38648, 38.21786 ], [ 23.44767, 38.20469 ], [ 23.52836, 38.13688 ], [ 23.61393, 38.16723 ], [ 23.63449, 38.21134 ], [ 23.64317, 38.27973 ], [ 23.67453, 38.31993 ], [ 23.69042, 38.3403 ], [ 23.94853, 38.28294 ], [ 24.06078, 38.19927 ], [ 24.05545, 38.15054 ], [ 23.99208, 38.09833 ], [ 24.02091, 37.99673 ], [ 24.01773, 37.97401 ], [ 24.01388, 37.94648 ], [ 24.07696, 37.76618 ], [ 24.03208, 37.66481 ], [ 23.9499, 37.66342 ], [ 23.88524, 37.77298 ], [ 23.74359, 37.85381 ] ] ], [ [ [ 23.5216, 37.7006 ], [ 23.47943, 37.67174 ], [ 23.46086, 37.71479 ], [ 23.4325, 37.72882 ], [ 23.41588, 37.76177 ], [ 23.48549, 37.77571 ], [ 23.56725, 37.76681 ], [ 23.5216, 37.7006 ] ] ], [ [ [ 23.44681, 37.3153 ], [ 23.39691, 37.29349 ], [ 23.37781, 37.30845 ], [ 23.46717, 37.35396 ], [ 23.52225, 37.37059 ], [ 23.54054, 37.35225 ], [ 23.50661, 37.34256 ], [ 23.50094, 37.31856 ], [ 23.44681, 37.3153 ] ] ], [ [ [ 23.42442, 37.4117 ], [ 23.44089, 37.45786 ], [ 23.32975, 37.47 ], [ 23.17975, 37.53282 ], [ 23.18609, 37.55244 ], [ 23.20038, 37.59665 ], [ 23.30054, 37.55244 ], [ 23.32643, 37.54101 ], [ 23.34399, 37.55244 ], [ 23.33749, 37.61806 ], [ 23.37028, 37.6265 ], [ 23.39375, 37.6168 ], [ 23.3997, 37.55244 ], [ 23.40113, 37.52538 ], [ 23.50202, 37.51952 ], [ 23.4775, 37.49013 ], [ 23.50368, 37.4373 ], [ 23.42442, 37.4117 ] ] ], [ [ [ 23.3809, 37.69399 ], [ 23.33831, 37.66696 ], [ 23.31399, 37.68235 ], [ 23.33883, 37.71646 ], [ 23.37177, 37.71619 ], [ 23.3809, 37.69399 ] ] ], [ [ [ 23.34384, 37.31593 ], [ 23.28735, 37.31109 ], [ 23.27734, 37.33077 ], [ 23.33177, 37.36185 ], [ 23.34384, 37.31593 ] ] ], [ [ [ 23.33502, 35.84996 ], [ 23.31074, 35.82921 ], [ 23.27339, 35.87639 ], [ 23.3175, 35.89177 ], [ 23.33502, 35.84996 ] ] ], [ [ [ 23.165, 37.26551 ], [ 23.16288, 37.23638 ], [ 23.12116, 37.23809 ], [ 23.10464, 37.26204 ], [ 23.10976, 37.28408 ], [ 23.165, 37.26551 ] ] ], [ [ [ 23.11534, 36.23557 ], [ 23.11413, 36.22059 ], [ 23.07079, 36.22662 ], [ 23.04519, 36.19125 ], [ 23.04591, 36.13288 ], [ 22.98812, 36.14054 ], [ 22.94391, 36.15842 ], [ 22.91038, 36.20107 ], [ 22.90259, 36.23211 ], [ 22.92512, 36.24739 ], [ 22.92326, 36.28824 ], [ 22.89323, 36.32045 ], [ 22.92422, 36.37402 ], [ 22.95121, 36.38107 ], [ 23.00181, 36.3091 ], [ 23.04793, 36.2872 ], [ 23.11534, 36.23557 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL41", "NUTS_ID": "EL41", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Βόρειο Αιγαίο", "geo": "EL41", "time_2018_MEAN": 82.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.02543, 37.70611 ], [ 26.8173, 37.63602 ], [ 26.73035, 37.70124 ], [ 26.59648, 37.68733 ], [ 26.57581, 37.72458 ], [ 26.61365, 37.76865 ], [ 26.7317, 37.80935 ], [ 27.02543, 37.77561 ], [ 27.05128, 37.71014 ], [ 27.02543, 37.70611 ] ] ], [ [ [ 26.60348, 39.01879 ], [ 26.4021, 38.96615 ], [ 26.16829, 39.01464 ], [ 26.12118, 39.06362 ], [ 25.93903, 39.12509 ], [ 25.8442, 39.2095 ], [ 25.88746, 39.27137 ], [ 26.12118, 39.31271 ], [ 26.18677, 39.37193 ], [ 26.24927, 39.38165 ], [ 26.34913, 39.3749 ], [ 26.4073, 39.33318 ], [ 26.38175, 39.27249 ], [ 26.52981, 39.16467 ], [ 26.60348, 39.01879 ] ] ], [ [ [ 26.55854, 37.60219 ], [ 26.51925, 37.59281 ], [ 26.49434, 37.63148 ], [ 26.51233, 37.65881 ], [ 26.55854, 37.60219 ] ] ], [ [ [ 26.50699, 37.58695 ], [ 26.49089, 37.55517 ], [ 26.42957, 37.56517 ], [ 26.42195, 37.59028 ], [ 26.50699, 37.58695 ] ] ], [ [ [ 26.34095, 37.65545 ], [ 26.29303, 37.60987 ], [ 26.21514, 37.56764 ], [ 26.10701, 37.55209 ], [ 26.06053, 37.51916 ], [ 25.98277, 37.51971 ], [ 26.00679, 37.57505 ], [ 26.06264, 37.62708 ], [ 26.14848, 37.63867 ], [ 26.20063, 37.62796 ], [ 26.2984, 37.68074 ], [ 26.34452, 37.6835 ], [ 26.34095, 37.65545 ] ] ], [ [ [ 26.25598, 38.5168 ], [ 26.2223, 38.49871 ], [ 26.18916, 38.53219 ], [ 26.20728, 38.54717 ], [ 26.25047, 38.54135 ], [ 26.25598, 38.5168 ] ] ], [ [ [ 26.06291, 38.5913 ], [ 26.08947, 38.5571 ], [ 26.12118, 38.56206 ], [ 26.1489, 38.55863 ], [ 26.16218, 38.54423 ], [ 26.1351, 38.41176 ], [ 26.15341, 38.31252 ], [ 26.12118, 38.28471 ], [ 26.10447, 38.27278 ], [ 26.11324, 38.2325 ], [ 26.09908, 38.21268 ], [ 26.03743, 38.19771 ], [ 26.01186, 38.15075 ], [ 25.92685, 38.19555 ], [ 25.91135, 38.22136 ], [ 25.86639, 38.24481 ], [ 25.87649, 38.2718 ], [ 25.91952, 38.29908 ], [ 25.95368, 38.295 ], [ 25.9936, 38.34344 ], [ 25.98991, 38.38878 ], [ 25.96224, 38.40405 ], [ 25.9568, 38.43975 ], [ 25.92432, 38.46853 ], [ 25.86529, 38.49157 ], [ 25.83276, 38.54296 ], [ 25.85106, 38.57368 ], [ 26.0033, 38.60344 ], [ 26.06291, 38.5913 ] ] ], [ [ [ 25.62085, 38.58875 ], [ 25.61053, 38.53452 ], [ 25.56725, 38.54408 ], [ 25.54138, 38.58626 ], [ 25.59085, 38.60958 ], [ 25.62085, 38.58875 ] ] ], [ [ [ 25.41722, 39.96898 ], [ 25.36091, 39.90873 ], [ 25.34378, 39.87798 ], [ 25.36147, 39.80967 ], [ 25.33536, 39.78899 ], [ 25.26763, 39.84112 ], [ 25.27581, 39.89182 ], [ 25.25626, 39.91088 ], [ 25.21622, 39.89824 ], [ 25.18402, 39.8007 ], [ 25.11431, 39.84326 ], [ 25.05786, 39.84288 ], [ 25.05397, 39.87798 ], [ 25.06924, 39.91478 ], [ 25.04486, 39.9613 ], [ 25.0536, 39.98604 ], [ 25.13652, 40.00518 ], [ 25.15883, 39.99128 ], [ 25.231, 40.00359 ], [ 25.26766, 39.98658 ], [ 25.28885, 39.9425 ], [ 25.36869, 40.00183 ], [ 25.42422, 40.02433 ], [ 25.44349, 39.98117 ], [ 25.41722, 39.96898 ] ] ], [ [ [ 25.05695, 39.53105 ], [ 24.98669, 39.4619 ], [ 24.9707, 39.50314 ], [ 24.97763, 39.53505 ], [ 25.00602, 39.56206 ], [ 25.05695, 39.53105 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL43", "NUTS_ID": "EL43", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κρήτη", "geo": "EL43", "time_2018_MEAN": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.31741, 35.35377 ], [ 24.54771, 35.37621 ], [ 24.68662, 35.42387 ], [ 24.928, 35.40691 ], [ 25.00325, 35.42006 ], [ 25.07314, 35.34276 ], [ 25.36684, 35.33605 ], [ 25.4907, 35.29833 ], [ 25.64031, 35.3402 ], [ 25.73225, 35.33158 ], [ 25.74853, 35.27197 ], [ 25.72646, 35.15785 ], [ 25.79069, 35.12174 ], [ 26.05063, 35.2261 ], [ 26.12118, 35.21183 ], [ 26.1586, 35.20427 ], [ 26.24539, 35.26551 ], [ 26.2918, 35.19507 ], [ 26.25885, 35.08675 ], [ 26.16803, 35.01394 ], [ 26.12118, 35.01788 ], [ 25.94516, 35.03266 ], [ 25.55057, 34.99076 ], [ 24.76755, 34.92741 ], [ 24.72252, 35.09254 ], [ 24.56836, 35.1043 ], [ 24.38125, 35.19042 ], [ 24.28752, 35.17601 ], [ 23.84374, 35.24054 ], [ 23.67453, 35.24348 ], [ 23.60572, 35.24468 ], [ 23.54334, 35.29425 ], [ 23.5409, 35.3745 ], [ 23.58522, 35.53901 ], [ 23.67453, 35.52788 ], [ 23.69521, 35.5253 ], [ 23.74133, 35.66262 ], [ 23.85225, 35.535 ], [ 23.98803, 35.52252 ], [ 24.08985, 35.57921 ], [ 24.14517, 35.57942 ], [ 24.17313, 35.53633 ], [ 24.14477, 35.48545 ], [ 24.22869, 35.4557 ], [ 24.31741, 35.35377 ] ] ], [ [ [ 26.1995, 35.3568 ], [ 26.19418, 35.30395 ], [ 26.14429, 35.33051 ], [ 26.16993, 35.36549 ], [ 26.1995, 35.3568 ] ] ], [ [ [ 25.2529, 35.4542 ], [ 25.24779, 35.41806 ], [ 25.18837, 35.44706 ], [ 25.21144, 35.47656 ], [ 25.2529, 35.4542 ] ] ], [ [ [ 24.11839, 34.85153 ], [ 24.10968, 34.81738 ], [ 24.07261, 34.82483 ], [ 24.04278, 34.85371 ], [ 24.07261, 34.87158 ], [ 24.11839, 34.85153 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL51", "NUTS_ID": "EL51", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Aνατολική Μακεδονία, Θράκη", "geo": "EL51", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.03276, 40.73026 ], [ 26.02293, 40.78432 ], [ 25.9521, 40.83599 ], [ 25.63243, 40.8628 ], [ 25.54973, 40.86329 ], [ 25.32953, 40.94056 ], [ 25.17105, 40.94381 ], [ 25.13761, 40.96107 ], [ 25.13955, 40.99069 ], [ 25.05915, 40.99579 ], [ 24.81349, 40.85809 ], [ 24.63191, 40.86643 ], [ 24.55117, 40.9466 ], [ 24.48977, 40.95345 ], [ 24.39856, 40.9298 ], [ 24.29515, 40.81644 ], [ 24.1432, 40.73993 ], [ 24.04323, 40.72119 ], [ 23.86775, 40.77873 ], [ 24.08898, 40.92708 ], [ 24.11834, 41.00632 ], [ 24.00877, 41.09847 ], [ 23.9146, 41.10113 ], [ 23.7319, 41.19727 ], [ 23.71155, 41.29785 ], [ 23.67453, 41.31341 ], [ 23.6382, 41.32869 ], [ 23.62422, 41.37573 ], [ 23.67453, 41.39176 ], [ 23.91143, 41.46726 ], [ 24.05372, 41.46003 ], [ 24.05974, 41.52211 ], [ 24.1432, 41.53683 ], [ 24.1771, 41.52479 ], [ 24.26019, 41.56598 ], [ 24.31921, 41.5198 ], [ 24.52761, 41.56138 ], [ 24.61762, 41.43229 ], [ 24.72345, 41.41046 ], [ 24.78396, 41.36019 ], [ 24.83247, 41.39627 ], [ 24.91486, 41.40115 ], [ 25.17938, 41.31019 ], [ 25.2247, 41.26463 ], [ 25.31289, 41.23907 ], [ 25.56745, 41.31354 ], [ 25.70213, 41.30023 ], [ 25.82184, 41.33944 ], [ 25.90644, 41.30757 ], [ 25.94863, 41.32034 ], [ 26.12118, 41.35929 ], [ 26.17923, 41.44132 ], [ 26.1683, 41.55696 ], [ 26.12118, 41.62791 ], [ 26.0786, 41.64853 ], [ 26.08108, 41.70927 ], [ 26.12118, 41.72434 ], [ 26.17216, 41.74349 ], [ 26.35788, 41.7111 ], [ 26.59088, 41.60047 ], [ 26.62808, 41.35816 ], [ 26.33627, 41.24867 ], [ 26.31732, 41.17349 ], [ 26.35409, 41.01418 ], [ 26.34274, 40.94879 ], [ 26.2377, 40.88653 ], [ 26.12118, 40.75153 ], [ 26.03276, 40.73026 ] ] ], [ [ [ 25.69694, 40.42256 ], [ 25.60183, 40.39386 ], [ 25.5592, 40.39598 ], [ 25.45989, 40.46432 ], [ 25.49455, 40.49506 ], [ 25.56513, 40.51042 ], [ 25.65747, 40.49345 ], [ 25.69971, 40.46409 ], [ 25.69694, 40.42256 ] ] ], [ [ [ 24.77701, 40.61676 ], [ 24.64673, 40.57224 ], [ 24.6076, 40.59677 ], [ 24.59689, 40.61676 ], [ 24.53067, 40.62957 ], [ 24.51952, 40.67375 ], [ 24.568, 40.76024 ], [ 24.64716, 40.79437 ], [ 24.75108, 40.75186 ], [ 24.77701, 40.61676 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "EL52", "NUTS_ID": "EL52", "LEVL_CODE": 2, "CNTR_CODE": "EL", "NUTS_NAME": "Κεντρική Μακεδονία", "geo": "EL52", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.62422, 41.37573 ], [ 23.6382, 41.32869 ], [ 23.67453, 41.31341 ], [ 23.71155, 41.29785 ], [ 23.7319, 41.19727 ], [ 23.9146, 41.10113 ], [ 24.00877, 41.09847 ], [ 24.11834, 41.00632 ], [ 24.08898, 40.92708 ], [ 23.86775, 40.77873 ], [ 23.76508, 40.75789 ], [ 23.70049, 40.68685 ], [ 23.75686, 40.63456 ], [ 23.87753, 40.54183 ], [ 23.83745, 40.49347 ], [ 23.86222, 40.42627 ], [ 23.92279, 40.39217 ], [ 24.01099, 40.38943 ], [ 24.00504, 40.31457 ], [ 23.94608, 40.34684 ], [ 23.90697, 40.31508 ], [ 23.85564, 40.36541 ], [ 23.72962, 40.34552 ], [ 23.70215, 40.30813 ], [ 23.78558, 40.19563 ], [ 23.98152, 40.11198 ], [ 24.01249, 40.01111 ], [ 23.94869, 39.94594 ], [ 23.80836, 40.02893 ], [ 23.76002, 40.12764 ], [ 23.67453, 40.20143 ], [ 23.65704, 40.21653 ], [ 23.41719, 40.27445 ], [ 23.32003, 40.21912 ], [ 23.00415, 40.35034 ], [ 22.90087, 40.38164 ], [ 22.8237, 40.48612 ], [ 22.9606, 40.53128 ], [ 22.95105, 40.61676 ], [ 22.93377, 40.63118 ], [ 22.89562, 40.64045 ], [ 22.8533, 40.62835 ], [ 22.83946, 40.61676 ], [ 22.83877, 40.58751 ], [ 22.77433, 40.56224 ], [ 22.72897, 40.52074 ], [ 22.68242, 40.52896 ], [ 22.66396, 40.49155 ], [ 22.59804, 40.46104 ], [ 22.6509, 40.35497 ], [ 22.5545, 40.14084 ], [ 22.58648, 40.02955 ], [ 22.66458, 39.97476 ], [ 22.52425, 39.95551 ], [ 22.47475, 40.0166 ], [ 22.36283, 40.05668 ], [ 22.36152, 40.13876 ], [ 22.33096, 40.16899 ], [ 22.28456, 40.16483 ], [ 22.2262, 40.11111 ], [ 22.20435, 40.18296 ], [ 22.1157, 40.19025 ], [ 22.18382, 40.30228 ], [ 22.14009, 40.32396 ], [ 22.09479, 40.42599 ], [ 21.93823, 40.49239 ], [ 21.8876, 40.61676 ], [ 21.90601, 40.68209 ], [ 21.82179, 40.69669 ], [ 21.71607, 40.85466 ], [ 21.80408, 40.88637 ], [ 21.78738, 40.93113 ], [ 21.92944, 41.10035 ], [ 22.05633, 41.15202 ], [ 22.12769, 41.13118 ], [ 22.21622, 41.17046 ], [ 22.33205, 41.12027 ], [ 22.58923, 41.12407 ], [ 22.66144, 41.17857 ], [ 22.70356, 41.15998 ], [ 22.72368, 41.15111 ], [ 22.77433, 41.32159 ], [ 22.87918, 41.34065 ], [ 22.92759, 41.33854 ], [ 23.18868, 41.32396 ], [ 23.29336, 41.39755 ], [ 23.34654, 41.37369 ], [ 23.49636, 41.40399 ], [ 23.62422, 41.37573 ] ] ], [ [ [ 23.68003, 39.97157 ], [ 23.71686, 39.90778 ], [ 23.67453, 39.91219 ], [ 23.59679, 39.92027 ], [ 23.46333, 39.969 ], [ 23.41331, 39.9595 ], [ 23.36837, 39.96952 ], [ 23.38001, 40.00138 ], [ 23.33579, 40.0689 ], [ 23.30438, 40.10199 ], [ 23.3206, 40.13204 ], [ 23.32465, 40.18511 ], [ 23.34655, 40.18248 ], [ 23.36158, 40.14773 ], [ 23.39606, 40.13918 ], [ 23.43847, 40.1021 ], [ 23.45497, 40.06954 ], [ 23.49289, 40.03507 ], [ 23.53286, 40.01691 ], [ 23.67453, 39.97326 ], [ 23.68003, 39.97157 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI20", "NUTS_ID": "FI20", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Åland", "geo": "FI20", "time_2018_MEAN": 83.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 21.10778, 60.49695 ], [ 21.08181, 60.44105 ], [ 21.05243, 60.49473 ], [ 21.06338, 60.53672 ], [ 21.10068, 60.52776 ], [ 21.10778, 60.49695 ] ] ], [ [ [ 21.1009, 60.37837 ], [ 21.08496, 60.345 ], [ 21.04288, 60.345 ], [ 21.05688, 60.37337 ], [ 21.03261, 60.37216 ], [ 21.00458, 60.39527 ], [ 21.04034, 60.42685 ], [ 21.0717, 60.41171 ], [ 21.1009, 60.37837 ] ] ], [ [ [ 21.00303, 60.29683 ], [ 20.97262, 60.2855 ], [ 20.95519, 60.33286 ], [ 21.00874, 60.34263 ], [ 21.00303, 60.29683 ] ] ], [ [ [ 20.98908, 59.93875 ], [ 20.9768, 59.91582 ], [ 20.94297, 59.9191 ], [ 20.89329, 59.91104 ], [ 20.863, 59.92785 ], [ 20.94297, 59.96012 ], [ 20.98908, 59.93875 ] ] ], [ [ [ 20.95447, 60.48994 ], [ 20.95213, 60.43174 ], [ 20.90972, 60.45499 ], [ 20.91962, 60.49651 ], [ 20.95447, 60.48994 ] ] ], [ [ [ 20.82924, 60.27018 ], [ 20.83745, 60.22912 ], [ 20.81338, 60.22845 ], [ 20.75111, 60.23331 ], [ 20.6927, 60.1927 ], [ 20.66388, 60.20999 ], [ 20.75816, 60.36322 ], [ 20.79015, 60.3535 ], [ 20.76174, 60.30417 ], [ 20.81338, 60.27951 ], [ 20.82924, 60.27018 ] ] ], [ [ [ 20.69883, 60.12363 ], [ 20.66922, 60.10322 ], [ 20.62375, 60.14459 ], [ 20.65592, 60.16067 ], [ 20.69883, 60.12363 ] ] ], [ [ [ 20.45997, 60.0142 ], [ 20.45997, 59.98537 ], [ 20.36155, 60.00234 ], [ 20.35408, 60.0121 ], [ 20.45997, 60.08583 ], [ 20.55464, 60.10442 ], [ 20.55666, 60.0702 ], [ 20.60166, 60.03886 ], [ 20.56956, 60.01499 ], [ 20.45997, 60.0142 ] ] ], [ [ [ 19.87831, 60.4164 ], [ 20.01091, 60.37689 ], [ 20.11205, 60.39386 ], [ 20.10106, 60.35128 ], [ 20.1641, 60.34595 ], [ 20.24496, 60.268 ], [ 20.22493, 60.21793 ], [ 20.1641, 60.17793 ], [ 20.01045, 60.21455 ], [ 20.04491, 60.09087 ], [ 20.1641, 60.09155 ], [ 20.25589, 60.16364 ], [ 20.24898, 60.17935 ], [ 20.30682, 60.26273 ], [ 20.36792, 60.27278 ], [ 20.40844, 60.24779 ], [ 20.39553, 60.21072 ], [ 20.32939, 60.22458 ], [ 20.29064, 60.17935 ], [ 20.26726, 60.08799 ], [ 20.21367, 60.06306 ], [ 20.20804, 60.00221 ], [ 20.13397, 60.00392 ], [ 19.96611, 60.10814 ], [ 19.94306, 60.08572 ], [ 19.76042, 60.10444 ], [ 19.6961, 60.18451 ], [ 19.54122, 60.16788 ], [ 19.5524, 60.25004 ], [ 19.60976, 60.28898 ], [ 19.65287, 60.26827 ], [ 19.68606, 60.29943 ], [ 19.74496, 60.293 ], [ 19.75339, 60.35128 ], [ 19.78469, 60.40167 ], [ 19.87831, 60.4164 ] ] ], [ [ [ 20.37273, 60.35451 ], [ 20.37248, 60.32442 ], [ 20.30296, 60.33925 ], [ 20.30134, 60.35451 ], [ 20.3428, 60.36642 ], [ 20.37273, 60.35451 ] ] ], [ [ [ 20.32048, 59.9948 ], [ 20.30579, 59.9499 ], [ 20.2579, 59.96246 ], [ 20.29234, 60.00742 ], [ 20.32048, 59.9948 ] ] ], [ [ [ 19.99785, 59.99687 ], [ 19.98444, 59.96589 ], [ 19.93192, 59.96916 ], [ 19.92094, 59.98256 ], [ 19.93572, 60.0006 ], [ 19.99785, 59.99687 ] ] ], [ [ [ 19.74181, 60.40101 ], [ 19.73538, 60.36811 ], [ 19.68481, 60.3685 ], [ 19.69395, 60.40389 ], [ 19.72001, 60.41587 ], [ 19.74181, 60.40101 ] ] ], [ [ [ 19.62528, 60.36605 ], [ 19.59133, 60.31379 ], [ 19.5652, 60.33343 ], [ 19.56391, 60.36605 ], [ 19.62528, 60.36605 ] ] ], [ [ [ 19.51945, 60.25259 ], [ 19.50975, 60.2258 ], [ 19.46589, 60.23119 ], [ 19.46342, 60.24752 ], [ 19.48028, 60.28259 ], [ 19.51945, 60.25259 ] ] ], [ [ [ 19.41039, 60.26366 ], [ 19.37657, 60.20894 ], [ 19.34447, 60.25131 ], [ 19.39477, 60.27356 ], [ 19.41039, 60.26366 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FR10", "NUTS_ID": "FR10", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Ile-de-France", "geo": "FR10", "time_2018_MEAN": 84.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.59053, 49.07965 ], [ 2.63234, 49.10053 ], [ 2.72115, 49.06419 ], [ 2.80802, 49.09073 ], [ 2.97064, 49.07839 ], [ 3.05416, 49.09008 ], [ 3.07188, 49.11755 ], [ 3.14947, 49.09279 ], [ 3.19538, 49.00584 ], [ 3.26746, 48.94841 ], [ 3.48518, 48.85191 ], [ 3.40762, 48.76344 ], [ 3.46575, 48.7255 ], [ 3.45434, 48.64468 ], [ 3.55561, 48.62029 ], [ 3.48699, 48.58816 ], [ 3.39632, 48.47628 ], [ 3.41479, 48.39027 ], [ 3.19538, 48.36876 ], [ 3.05592, 48.35508 ], [ 3.02548, 48.31816 ], [ 3.02517, 48.24021 ], [ 2.93632, 48.16339 ], [ 2.81558, 48.13918 ], [ 2.77032, 48.15789 ], [ 2.68558, 48.12385 ], [ 2.48494, 48.13079 ], [ 2.51313, 48.21777 ], [ 2.42771, 48.26859 ], [ 2.40266, 48.32072 ], [ 2.27023, 48.31057 ], [ 2.20999, 48.33565 ], [ 2.16646, 48.30987 ], [ 2.14559, 48.29752 ], [ 1.99409, 48.28658 ], [ 1.97038, 48.30999 ], [ 1.97582, 48.38631 ], [ 1.92215, 48.4576 ], [ 1.87636, 48.44342 ], [ 1.80421, 48.47384 ], [ 1.77252, 48.56064 ], [ 1.61255, 48.6661 ], [ 1.58116, 48.83415 ], [ 1.50153, 48.94105 ], [ 1.46022, 49.04946 ], [ 1.6088, 49.07789 ], [ 1.70436, 49.2322 ], [ 1.75415, 49.18236 ], [ 1.84049, 49.17071 ], [ 2.08949, 49.20255 ], [ 2.16646, 49.18183 ], [ 2.2505, 49.1592 ], [ 2.31617, 49.17634 ], [ 2.59053, 49.07965 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRB0", "NUTS_ID": "FRB0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Centre — Val de Loire", "geo": "FRB0", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.92215, 48.4576 ], [ 1.97582, 48.38631 ], [ 1.97038, 48.30999 ], [ 1.99409, 48.28658 ], [ 2.14559, 48.29752 ], [ 2.16646, 48.30987 ], [ 2.20999, 48.33565 ], [ 2.27023, 48.31057 ], [ 2.40266, 48.32072 ], [ 2.42771, 48.26859 ], [ 2.51313, 48.21777 ], [ 2.48494, 48.13079 ], [ 2.68558, 48.12385 ], [ 2.77032, 48.15789 ], [ 2.81558, 48.13918 ], [ 2.93632, 48.16339 ], [ 3.02683, 48.12666 ], [ 3.12002, 47.98055 ], [ 3.01952, 47.90184 ], [ 3.01296, 47.79108 ], [ 2.85389, 47.74104 ], [ 2.93965, 47.65314 ], [ 2.94047, 47.60568 ], [ 2.97654, 47.56942 ], [ 2.8829, 47.55147 ], [ 2.87463, 47.52042 ], [ 2.92391, 47.44104 ], [ 2.87979, 47.3546 ], [ 2.97473, 47.26032 ], [ 3.03251, 47.06407 ], [ 3.06749, 47.02567 ], [ 3.06347, 46.85636 ], [ 3.03206, 46.79491 ], [ 2.94708, 46.79716 ], [ 2.78511, 46.72576 ], [ 2.71351, 46.73156 ], [ 2.59338, 46.64935 ], [ 2.59749, 46.548 ], [ 2.3654, 46.5131 ], [ 2.28104, 46.4204 ], [ 2.16778, 46.42407 ], [ 2.16646, 46.42416 ], [ 1.77295, 46.4513 ], [ 1.73048, 46.40067 ], [ 1.52058, 46.41576 ], [ 1.41519, 46.34721 ], [ 1.35008, 46.39426 ], [ 1.17728, 46.38395 ], [ 1.17926, 46.43878 ], [ 1.12254, 46.51413 ], [ 0.92107, 46.60911 ], [ 0.91146, 46.70259 ], [ 0.86747, 46.74822 ], [ 0.71573, 46.89599 ], [ 0.67855, 46.97421 ], [ 0.59121, 47.00564 ], [ 0.57975, 46.95886 ], [ 0.32154, 46.94435 ], [ 0.29947, 47.04378 ], [ 0.20156, 47.06382 ], [ 0.18568, 47.10306 ], [ 0.09692, 47.1439 ], [ 0.05383, 47.16373 ], [ 0.08254, 47.27894 ], [ 0.09692, 47.29615 ], [ 0.14572, 47.3546 ], [ 0.21746, 47.50526 ], [ 0.23, 47.6084 ], [ 0.38092, 47.57478 ], [ 0.38107, 47.63281 ], [ 0.61443, 47.69422 ], [ 0.59859, 47.72671 ], [ 0.72413, 47.80182 ], [ 0.76872, 47.89319 ], [ 0.83662, 47.94587 ], [ 0.83145, 48.02408 ], [ 0.80394, 48.05195 ], [ 0.84276, 48.10334 ], [ 0.90029, 48.1439 ], [ 0.79766, 48.19445 ], [ 0.82038, 48.21859 ], [ 0.78064, 48.32362 ], [ 0.92824, 48.3909 ], [ 0.94091, 48.40526 ], [ 0.95873, 48.50606 ], [ 0.92824, 48.53535 ], [ 0.852, 48.5902 ], [ 0.81482, 48.67016 ], [ 0.92824, 48.71032 ], [ 1.12993, 48.78174 ], [ 1.3343, 48.76993 ], [ 1.3755, 48.83896 ], [ 1.45673, 48.87877 ], [ 1.46035, 48.92329 ], [ 1.50153, 48.94105 ], [ 1.58116, 48.83415 ], [ 1.61255, 48.6661 ], [ 1.77252, 48.56064 ], [ 1.80421, 48.47384 ], [ 1.87636, 48.44342 ], [ 1.92215, 48.4576 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC1", "NUTS_ID": "FRC1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bourgogne", "geo": "FRC1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.29342, 47.92567 ], [ 4.32622, 47.95777 ], [ 4.54335, 47.97285 ], [ 4.59015, 48.02741 ], [ 4.70423, 48.02023 ], [ 4.79193, 47.99973 ], [ 4.79993, 47.96691 ], [ 4.85342, 47.94698 ], [ 4.84512, 47.90769 ], [ 4.89769, 47.9156 ], [ 4.94517, 47.87502 ], [ 4.97858, 47.81118 ], [ 4.93165, 47.77589 ], [ 4.97136, 47.69916 ], [ 5.09744, 47.65702 ], [ 5.16486, 47.66418 ], [ 5.25943, 47.58565 ], [ 5.37408, 47.60454 ], [ 5.43864, 47.62335 ], [ 5.48117, 47.59123 ], [ 5.48369, 47.53375 ], [ 5.39703, 47.47931 ], [ 5.48985, 47.3546 ], [ 5.51854, 47.30418 ], [ 5.43848, 47.14923 ], [ 5.38185, 47.08672 ], [ 5.30367, 47.05409 ], [ 5.25523, 46.97989 ], [ 5.26761, 46.93637 ], [ 5.43473, 46.84552 ], [ 5.34473, 46.80156 ], [ 5.42939, 46.63765 ], [ 5.36231, 46.55341 ], [ 5.41372, 46.4867 ], [ 5.31056, 46.44677 ], [ 5.23665, 46.46037 ], [ 5.17649, 46.51218 ], [ 5.06972, 46.48768 ], [ 4.94205, 46.50916 ], [ 4.78021, 46.17668 ], [ 4.73361, 46.18714 ], [ 4.67534, 46.30084 ], [ 4.51718, 46.27171 ], [ 4.42238, 46.29744 ], [ 4.38807, 46.21979 ], [ 4.27982, 46.16777 ], [ 4.06723, 46.18733 ], [ 4.00644, 46.17122 ], [ 3.9048, 46.21533 ], [ 3.89954, 46.27591 ], [ 3.9822, 46.33368 ], [ 3.98951, 46.46424 ], [ 3.74656, 46.5458 ], [ 3.62942, 46.74946 ], [ 3.59717, 46.75267 ], [ 3.54853, 46.69293 ], [ 3.46784, 46.66242 ], [ 3.41522, 46.71108 ], [ 3.19538, 46.68984 ], [ 3.03206, 46.79491 ], [ 3.06347, 46.85636 ], [ 3.06749, 47.02567 ], [ 3.03251, 47.06407 ], [ 2.97473, 47.26032 ], [ 2.87979, 47.3546 ], [ 2.92391, 47.44104 ], [ 2.87463, 47.52042 ], [ 2.8829, 47.55147 ], [ 2.97654, 47.56942 ], [ 2.94047, 47.60568 ], [ 2.93965, 47.65314 ], [ 2.85389, 47.74104 ], [ 3.01296, 47.79108 ], [ 3.01952, 47.90184 ], [ 3.12002, 47.98055 ], [ 3.02683, 48.12666 ], [ 2.93632, 48.16339 ], [ 3.02517, 48.24021 ], [ 3.02548, 48.31816 ], [ 3.05592, 48.35508 ], [ 3.19538, 48.36876 ], [ 3.41479, 48.39027 ], [ 3.49994, 48.36246 ], [ 3.6066, 48.27098 ], [ 3.59005, 48.19043 ], [ 3.67332, 48.14715 ], [ 3.73711, 48.15873 ], [ 3.7859, 48.11696 ], [ 3.91484, 47.94217 ], [ 4.10521, 47.92941 ], [ 4.21061, 47.96106 ], [ 4.29342, 47.92567 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRC2", "NUTS_ID": "FRC2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Franche-Comté", "geo": "FRC2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.82353, 47.81305 ], [ 6.84618, 47.82294 ], [ 7.02338, 47.72371 ], [ 7.01694, 47.6063 ], [ 7.08392, 47.57756 ], [ 7.13035, 47.50304 ], [ 7.02392, 47.50414 ], [ 6.93919, 47.4337 ], [ 6.91511, 47.36798 ], [ 7.01616, 47.33375 ], [ 6.85891, 47.16529 ], [ 6.63738, 47.00693 ], [ 6.45872, 46.94665 ], [ 6.46001, 46.85155 ], [ 6.4358, 46.76705 ], [ 6.13895, 46.5943 ], [ 6.13811, 46.55767 ], [ 6.064, 46.41623 ], [ 5.86613, 46.26847 ], [ 5.73817, 46.2661 ], [ 5.64714, 46.32669 ], [ 5.4908, 46.26699 ], [ 5.31208, 46.41218 ], [ 5.31056, 46.44677 ], [ 5.41372, 46.4867 ], [ 5.36231, 46.55341 ], [ 5.42939, 46.63765 ], [ 5.34473, 46.80156 ], [ 5.43473, 46.84552 ], [ 5.26761, 46.93637 ], [ 5.25523, 46.97989 ], [ 5.30367, 47.05409 ], [ 5.38185, 47.08672 ], [ 5.43848, 47.14923 ], [ 5.51854, 47.30418 ], [ 5.48985, 47.3546 ], [ 5.39703, 47.47931 ], [ 5.48369, 47.53375 ], [ 5.48117, 47.59123 ], [ 5.43864, 47.62335 ], [ 5.37408, 47.60454 ], [ 5.42135, 47.6714 ], [ 5.67938, 47.68806 ], [ 5.69698, 47.81115 ], [ 5.81815, 47.85785 ], [ 5.88472, 47.92605 ], [ 5.93115, 47.96489 ], [ 5.99648, 47.96195 ], [ 6.12791, 48.01872 ], [ 6.19397, 47.94601 ], [ 6.38116, 47.95706 ], [ 6.48438, 47.89198 ], [ 6.60588, 47.93646 ], [ 6.82353, 47.81305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD1", "NUTS_ID": "FRD1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Basse-Normandie", "geo": "FRD1", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.11959, 49.32227 ], [ -1.08332, 49.38139 ], [ -0.96005, 49.39409 ], [ -0.8038, 49.35618 ], [ -0.41004, 49.3336 ], [ -0.22165, 49.28292 ], [ -0.07985, 49.30006 ], [ 0.09692, 49.38385 ], [ 0.14062, 49.40457 ], [ 0.29722, 49.4299 ], [ 0.31755, 49.30971 ], [ 0.3725, 49.27332 ], [ 0.34094, 49.2408 ], [ 0.38703, 49.19927 ], [ 0.38633, 49.05199 ], [ 0.43683, 49.00737 ], [ 0.41281, 48.95063 ], [ 0.396, 48.91279 ], [ 0.42212, 48.89068 ], [ 0.60091, 48.8799 ], [ 0.62383, 48.82707 ], [ 0.75612, 48.75697 ], [ 0.76959, 48.68054 ], [ 0.81482, 48.67016 ], [ 0.852, 48.5902 ], [ 0.92824, 48.53535 ], [ 0.95873, 48.50606 ], [ 0.94091, 48.40526 ], [ 0.92824, 48.3909 ], [ 0.78064, 48.32362 ], [ 0.82038, 48.21859 ], [ 0.79766, 48.19445 ], [ 0.74284, 48.19039 ], [ 0.66593, 48.25695 ], [ 0.54205, 48.25188 ], [ 0.48069, 48.30388 ], [ 0.40997, 48.3197 ], [ 0.35844, 48.44794 ], [ 0.2974, 48.47777 ], [ 0.21623, 48.47098 ], [ 0.09692, 48.41018 ], [ 0.05118, 48.38687 ], [ -0.05453, 48.382 ], [ -0.05691, 48.4411 ], [ -0.14059, 48.45985 ], [ -0.16983, 48.53453 ], [ -0.21609, 48.56271 ], [ -0.36101, 48.50062 ], [ -0.48635, 48.51051 ], [ -0.74786, 48.44295 ], [ -0.86036, 48.50146 ], [ -1.07016, 48.50849 ], [ -1.24302, 48.5358 ], [ -1.41171, 48.4616 ], [ -1.50122, 48.50633 ], [ -1.5711, 48.6265 ], [ -1.4326, 48.65704 ], [ -1.56454, 48.7708 ], [ -1.56493, 48.98129 ], [ -1.61286, 49.1871 ], [ -1.81287, 49.4027 ], [ -1.83124, 49.46046 ], [ -1.90447, 49.69063 ], [ -1.83124, 49.68191 ], [ -1.65239, 49.66063 ], [ -1.39838, 49.69816 ], [ -1.29456, 49.67736 ], [ -1.25279, 49.6261 ], [ -1.28058, 49.52128 ], [ -1.11959, 49.32227 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRD2", "NUTS_ID": "FRD2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Haute-Normandie", "geo": "FRD2", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.6362, 49.43853 ], [ 0.58664, 49.4381 ], [ 0.5318, 49.4742 ], [ 0.52183, 49.47711 ], [ 0.50116, 49.48371 ], [ 0.37604, 49.45222 ], [ 0.25156, 49.44811 ], [ 0.19307, 49.45258 ], [ 0.17143, 49.45914 ], [ 0.15016, 49.47411 ], [ 0.09692, 49.49112 ], [ 0.07812, 49.50567 ], [ 0.07327, 49.51982 ], [ 0.09692, 49.56685 ], [ 0.14579, 49.63695 ], [ 0.16628, 49.68138 ], [ 0.21212, 49.71337 ], [ 0.32856, 49.74585 ], [ 0.37995, 49.77151 ], [ 0.58644, 49.85177 ], [ 0.6974, 49.87069 ], [ 0.7763, 49.87485 ], [ 0.92824, 49.91049 ], [ 0.95351, 49.91642 ], [ 1.02406, 49.91815 ], [ 1.07434, 49.92911 ], [ 1.19791, 49.97116 ], [ 1.33367, 50.04735 ], [ 1.37964, 50.06512 ], [ 1.44256, 50.06614 ], [ 1.45572, 50.04735 ], [ 1.69267, 49.90389 ], [ 1.78383, 49.75831 ], [ 1.71063, 49.71097 ], [ 1.74321, 49.68551 ], [ 1.70515, 49.59184 ], [ 1.74071, 49.50262 ], [ 1.77977, 49.49358 ], [ 1.71393, 49.40922 ], [ 1.79322, 49.26666 ], [ 1.72783, 49.26479 ], [ 1.70436, 49.2322 ], [ 1.6088, 49.07789 ], [ 1.46022, 49.04946 ], [ 1.50153, 48.94105 ], [ 1.46035, 48.92329 ], [ 1.45673, 48.87877 ], [ 1.3755, 48.83896 ], [ 1.3343, 48.76993 ], [ 1.12993, 48.78174 ], [ 0.92824, 48.71032 ], [ 0.81482, 48.67016 ], [ 0.76959, 48.68054 ], [ 0.75612, 48.75697 ], [ 0.62383, 48.82707 ], [ 0.60091, 48.8799 ], [ 0.42212, 48.89068 ], [ 0.396, 48.91279 ], [ 0.41281, 48.95063 ], [ 0.43683, 49.00737 ], [ 0.38633, 49.05199 ], [ 0.38703, 49.19927 ], [ 0.34094, 49.2408 ], [ 0.3725, 49.27332 ], [ 0.31755, 49.30971 ], [ 0.29722, 49.4299 ], [ 0.40488, 49.44608 ], [ 0.50358, 49.48152 ], [ 0.51789, 49.47145 ], [ 0.58739, 49.42963 ], [ 0.61335, 49.42845 ], [ 0.6362, 49.43853 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE1", "NUTS_ID": "FRE1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Nord-Pas de Calais", "geo": "FRE1", "time_2018_MEAN": 80.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.86328, 50.70834 ], [ 2.9081, 50.70174 ], [ 3.01871, 50.77353 ], [ 3.09848, 50.77902 ], [ 3.177, 50.75616 ], [ 3.19538, 50.75535 ], [ 3.24529, 50.71301 ], [ 3.3033, 50.52242 ], [ 3.38581, 50.49503 ], [ 3.49098, 50.52716 ], [ 3.524, 50.49748 ], [ 3.61508, 50.4904 ], [ 3.65551, 50.46174 ], [ 3.6667, 50.35575 ], [ 3.70789, 50.32237 ], [ 3.77023, 50.35043 ], [ 3.89407, 50.33254 ], [ 4.02777, 50.35833 ], [ 4.05543, 50.34076 ], [ 4.19819, 50.25005 ], [ 4.1488, 50.15056 ], [ 4.20853, 50.07879 ], [ 4.14085, 49.97876 ], [ 3.71603, 50.06184 ], [ 3.62188, 50.0329 ], [ 3.55717, 50.04807 ], [ 3.19538, 50.01346 ], [ 3.17296, 50.01131 ], [ 3.09172, 50.04735 ], [ 2.89622, 50.04138 ], [ 2.84363, 50.06975 ], [ 2.76013, 50.04541 ], [ 2.76538, 50.09764 ], [ 2.73805, 50.11603 ], [ 2.65852, 50.10271 ], [ 2.50064, 50.13119 ], [ 2.41339, 50.11166 ], [ 2.4037, 50.15252 ], [ 2.46155, 50.19841 ], [ 2.43776, 50.22215 ], [ 2.16646, 50.20629 ], [ 2.1234, 50.20377 ], [ 1.92134, 50.32474 ], [ 1.78803, 50.35728 ], [ 1.64474, 50.35041 ], [ 1.62382, 50.37029 ], [ 1.58081, 50.38114 ], [ 1.55867, 50.40374 ], [ 1.57941, 50.52021 ], [ 1.59392, 50.54685 ], [ 1.5784, 50.5754 ], [ 1.56428, 50.69567 ], [ 1.60414, 50.77032 ], [ 1.58298, 50.86553 ], [ 1.64751, 50.88223 ], [ 1.72174, 50.93386 ], [ 1.77108, 50.95181 ], [ 2.06769, 51.00663 ], [ 2.16646, 51.02371 ], [ 2.54601, 51.08938 ], [ 2.62262, 50.95661 ], [ 2.60704, 50.91269 ], [ 2.63614, 50.8208 ], [ 2.70669, 50.80993 ], [ 2.86328, 50.70834 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRE2", "NUTS_ID": "FRE2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Picardie", "geo": "FRE2", "time_2018_MEAN": 81.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.09172, 50.04735 ], [ 3.17296, 50.01131 ], [ 3.19538, 50.01346 ], [ 3.55717, 50.04807 ], [ 3.62188, 50.0329 ], [ 3.71603, 50.06184 ], [ 4.14085, 49.97876 ], [ 4.23313, 49.95783 ], [ 4.23797, 49.75372 ], [ 4.10521, 49.63287 ], [ 4.03716, 49.62481 ], [ 4.06179, 49.52652 ], [ 4.04797, 49.40564 ], [ 4.02609, 49.36658 ], [ 3.86945, 49.39618 ], [ 3.83956, 49.35982 ], [ 3.66066, 49.31692 ], [ 3.66722, 49.22131 ], [ 3.73586, 49.15882 ], [ 3.62185, 49.13807 ], [ 3.62285, 49.07843 ], [ 3.59293, 49.04533 ], [ 3.66573, 49.0175 ], [ 3.48518, 48.85191 ], [ 3.26746, 48.94841 ], [ 3.19538, 49.00584 ], [ 3.14947, 49.09279 ], [ 3.07188, 49.11755 ], [ 3.05416, 49.09008 ], [ 2.97064, 49.07839 ], [ 2.80802, 49.09073 ], [ 2.72115, 49.06419 ], [ 2.63234, 49.10053 ], [ 2.59053, 49.07965 ], [ 2.31617, 49.17634 ], [ 2.2505, 49.1592 ], [ 2.16646, 49.18183 ], [ 2.08949, 49.20255 ], [ 1.84049, 49.17071 ], [ 1.75415, 49.18236 ], [ 1.70436, 49.2322 ], [ 1.72783, 49.26479 ], [ 1.79322, 49.26666 ], [ 1.71393, 49.40922 ], [ 1.77977, 49.49358 ], [ 1.74071, 49.50262 ], [ 1.70515, 49.59184 ], [ 1.74321, 49.68551 ], [ 1.71063, 49.71097 ], [ 1.78383, 49.75831 ], [ 1.69267, 49.90389 ], [ 1.45572, 50.04735 ], [ 1.44256, 50.06614 ], [ 1.37964, 50.06512 ], [ 1.51986, 50.19456 ], [ 1.63177, 50.19844 ], [ 1.5493, 50.30136 ], [ 1.57042, 50.34833 ], [ 1.64474, 50.35041 ], [ 1.78803, 50.35728 ], [ 1.92134, 50.32474 ], [ 2.1234, 50.20377 ], [ 2.16646, 50.20629 ], [ 2.43776, 50.22215 ], [ 2.46155, 50.19841 ], [ 2.4037, 50.15252 ], [ 2.41339, 50.11166 ], [ 2.50064, 50.13119 ], [ 2.65852, 50.10271 ], [ 2.73805, 50.11603 ], [ 2.76538, 50.09764 ], [ 2.76013, 50.04541 ], [ 2.84363, 50.06975 ], [ 2.89622, 50.04138 ], [ 3.09172, 50.04735 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF1", "NUTS_ID": "FRF1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Alsace", "geo": "FRF1", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.63565, 49.05395 ], [ 7.91065, 49.04516 ], [ 8.06841, 48.99932 ], [ 8.23263, 48.96657 ], [ 8.16889, 48.92663 ], [ 8.08964, 48.80897 ], [ 7.95963, 48.71858 ], [ 7.94368, 48.70581 ], [ 7.81259, 48.599 ], [ 7.73613, 48.3358 ], [ 7.68071, 48.25727 ], [ 7.57792, 48.12139 ], [ 7.57729, 48.11565 ], [ 7.57408, 48.04033 ], [ 7.61439, 47.97575 ], [ 7.53824, 47.79282 ], [ 7.54599, 47.74357 ], [ 7.5205, 47.6782 ], [ 7.58904, 47.58988 ], [ 7.55516, 47.56456 ], [ 7.51091, 47.50258 ], [ 7.44502, 47.46172 ], [ 7.42114, 47.44639 ], [ 7.38089, 47.43189 ], [ 7.35275, 47.43441 ], [ 7.3374, 47.44088 ], [ 7.32647, 47.43985 ], [ 7.1907, 47.44275 ], [ 7.13035, 47.50304 ], [ 7.08392, 47.57756 ], [ 7.01694, 47.6063 ], [ 7.02338, 47.72371 ], [ 6.84618, 47.82294 ], [ 6.89066, 47.84812 ], [ 6.94511, 47.98472 ], [ 7.19829, 48.31047 ], [ 7.08854, 48.35262 ], [ 7.11142, 48.4761 ], [ 7.08784, 48.51004 ], [ 7.07936, 48.53642 ], [ 7.16799, 48.53163 ], [ 7.23432, 48.56836 ], [ 7.28116, 48.64138 ], [ 7.26551, 48.70581 ], [ 7.30164, 48.76195 ], [ 7.26262, 48.81379 ], [ 7.16223, 48.83928 ], [ 7.07622, 48.79827 ], [ 7.02392, 48.88086 ], [ 6.96015, 48.9071 ], [ 6.98416, 48.94825 ], [ 7.02392, 48.95651 ], [ 7.09496, 49.05866 ], [ 7.13627, 49.00973 ], [ 7.32824, 48.94941 ], [ 7.45635, 48.96205 ], [ 7.53871, 48.94056 ], [ 7.63565, 49.05395 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL13", "NUTS_ID": "NL13", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Drenthe", "geo": "NL13", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.07105 ], [ 6.9357, 52.99336 ], [ 6.99005, 52.94678 ], [ 7.03451, 52.91556 ], [ 7.02727, 52.8766 ], [ 7.09269, 52.8382 ], [ 7.07266, 52.81169 ], [ 7.05342, 52.65717 ], [ 7.00623, 52.63876 ], [ 6.70973, 52.62782 ], [ 6.62943, 52.66966 ], [ 6.54709, 52.66061 ], [ 6.49913, 52.61697 ], [ 6.38932, 52.61783 ], [ 6.32413, 52.66278 ], [ 6.159, 52.69669 ], [ 6.1303, 52.74722 ], [ 6.18659, 52.79065 ], [ 6.17967, 52.81169 ], [ 6.11981, 52.85427 ], [ 6.2584, 52.92223 ], [ 6.36905, 52.92197 ], [ 6.41657, 52.97625 ], [ 6.31524, 53.09405 ], [ 6.41198, 53.17655 ], [ 6.4963, 53.20008 ], [ 6.6338, 53.11618 ], [ 6.73033, 53.11727 ], [ 6.81381, 53.07105 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL21", "NUTS_ID": "NL21", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Overijssel", "geo": "NL21", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.62943, 52.66966 ], [ 6.70973, 52.62782 ], [ 6.72977, 52.57415 ], [ 6.69787, 52.48629 ], [ 6.92412, 52.44163 ], [ 6.99588, 52.45441 ], [ 7.06305, 52.37304 ], [ 7.03443, 52.29149 ], [ 7.06569, 52.24137 ], [ 6.99169, 52.22224 ], [ 6.85858, 52.12669 ], [ 6.76047, 52.11857 ], [ 6.49707, 52.18167 ], [ 6.382, 52.24609 ], [ 6.16641, 52.23104 ], [ 6.07938, 52.33265 ], [ 6.10979, 52.44057 ], [ 6.03729, 52.50128 ], [ 5.9397, 52.47756 ], [ 5.86431, 52.51817 ], [ 5.79928, 52.59959 ], [ 5.9703, 52.65493 ], [ 5.91815, 52.74481 ], [ 5.80564, 52.81169 ], [ 5.83243, 52.81169 ], [ 6.03518, 52.82313 ], [ 6.11981, 52.85427 ], [ 6.17967, 52.81169 ], [ 6.18659, 52.79065 ], [ 6.1303, 52.74722 ], [ 6.159, 52.69669 ], [ 6.32413, 52.66278 ], [ 6.38932, 52.61783 ], [ 6.49913, 52.61697 ], [ 6.54709, 52.66061 ], [ 6.62943, 52.66966 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL22", "NUTS_ID": "NL22", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Gelderland", "geo": "NL22", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.86431, 52.51817 ], [ 5.9397, 52.47756 ], [ 6.03729, 52.50128 ], [ 6.10979, 52.44057 ], [ 6.07938, 52.33265 ], [ 6.16641, 52.23104 ], [ 6.382, 52.24609 ], [ 6.49707, 52.18167 ], [ 6.76047, 52.11857 ], [ 6.6953, 52.05082 ], [ 6.81948, 51.99048 ], [ 6.76963, 51.92128 ], [ 6.41882, 51.86126 ], [ 6.40778, 51.82809 ], [ 6.16777, 51.9008 ], [ 6.15317, 51.846 ], [ 6.06133, 51.85875 ], [ 5.96569, 51.8293 ], [ 5.97974, 51.77088 ], [ 5.95319, 51.74785 ], [ 5.86516, 51.75741 ], [ 5.76538, 51.75684 ], [ 5.59788, 51.82808 ], [ 5.40581, 51.81362 ], [ 5.3066, 51.74129 ], [ 5.12806, 51.73761 ], [ 5.1219, 51.77572 ], [ 5.00053, 51.82094 ], [ 5.14946, 51.93345 ], [ 5.23845, 51.97172 ], [ 5.45094, 51.98319 ], [ 5.60601, 51.94325 ], [ 5.61349, 51.9799 ], [ 5.5467, 52.08514 ], [ 5.47322, 52.07995 ], [ 5.49609, 52.13209 ], [ 5.40463, 52.24963 ], [ 5.52114, 52.27296 ], [ 5.58561, 52.35045 ], [ 5.79137, 52.42661 ], [ 5.86431, 52.51817 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL23", "NUTS_ID": "NL23", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Flevoland", "geo": "NL23", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.80564, 52.81169 ], [ 5.91815, 52.74481 ], [ 5.9703, 52.65493 ], [ 5.79928, 52.59959 ], [ 5.86431, 52.51817 ], [ 5.79137, 52.42661 ], [ 5.58561, 52.35045 ], [ 5.52114, 52.27296 ], [ 5.40463, 52.24963 ], [ 5.33546, 52.29022 ], [ 5.14123, 52.32685 ], [ 5.07916, 52.38865 ], [ 5.17409, 52.42642 ], [ 5.06043, 52.57894 ], [ 5.23577, 52.63827 ], [ 5.28434, 52.68455 ], [ 5.35353, 52.68365 ], [ 5.37726, 52.7648 ], [ 5.64036, 52.81169 ], [ 5.66426, 52.83017 ], [ 5.733, 52.84153 ], [ 5.78644, 52.81169 ], [ 5.80564, 52.81169 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL31", "NUTS_ID": "NL31", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Utrecht", "geo": "NL31", "time_2018_MEAN": 82.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.33546, 52.29022 ], [ 5.40463, 52.24963 ], [ 5.49609, 52.13209 ], [ 5.47322, 52.07995 ], [ 5.5467, 52.08514 ], [ 5.61349, 51.9799 ], [ 5.60601, 51.94325 ], [ 5.45094, 51.98319 ], [ 5.23845, 51.97172 ], [ 5.14946, 51.93345 ], [ 5.00938, 51.97422 ], [ 4.8779, 51.93784 ], [ 4.82056, 52.02577 ], [ 4.83091, 52.07805 ], [ 4.80463, 52.12262 ], [ 4.86906, 52.15911 ], [ 4.79452, 52.22673 ], [ 5.02154, 52.3025 ], [ 5.06403, 52.17185 ], [ 5.18562, 52.18285 ], [ 5.26453, 52.27298 ], [ 5.33546, 52.29022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL32", "NUTS_ID": "NL32", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Holland", "geo": "NL32", "time_2018_MEAN": 82.033333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.16438, 53.00091 ], [ 5.23633, 52.88111 ], [ 5.31789, 52.81169 ], [ 5.33784, 52.79596 ], [ 5.37726, 52.7648 ], [ 5.35353, 52.68365 ], [ 5.28434, 52.68455 ], [ 5.23577, 52.63827 ], [ 5.06043, 52.57894 ], [ 5.17409, 52.42642 ], [ 5.07916, 52.38865 ], [ 5.14123, 52.32685 ], [ 5.33546, 52.29022 ], [ 5.26453, 52.27298 ], [ 5.18562, 52.18285 ], [ 5.06403, 52.17185 ], [ 5.02154, 52.3025 ], [ 4.79452, 52.22673 ], [ 4.72877, 52.20982 ], [ 4.57173, 52.22487 ], [ 4.61168, 52.31359 ], [ 4.49385, 52.32826 ], [ 4.5606, 52.43743 ], [ 4.60968, 52.5734 ], [ 4.64907, 52.75618 ], [ 4.68011, 52.81169 ], [ 4.73958, 52.95885 ], [ 4.88512, 52.89406 ], [ 5.16438, 53.00091 ] ] ], [ [ [ 4.81937, 53.02916 ], [ 4.78445, 53.00132 ], [ 4.75146, 53.0093 ], [ 4.7205, 52.98403 ], [ 4.70833, 53.02217 ], [ 4.7197, 53.06095 ], [ 4.7512, 53.09899 ], [ 4.8413, 53.18341 ], [ 4.86112, 53.1834 ], [ 4.90879, 53.13504 ], [ 4.89713, 53.07749 ], [ 4.86152, 53.0423 ], [ 4.81937, 53.02916 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG2", "NUTS_ID": "ITG2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sardegna", "geo": "ITG2", "time_2018_MEAN": 83.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.74517, 40.65954 ], [ 9.81701, 40.50886 ], [ 9.77026, 40.40687 ], [ 9.65746, 40.30195 ], [ 9.62653, 40.22488 ], [ 9.64738, 40.15778 ], [ 9.72508, 40.07055 ], [ 9.69201, 39.96742 ], [ 9.65112, 39.54932 ], [ 9.58396, 39.26762 ], [ 9.56832, 39.15949 ], [ 9.52241, 39.12386 ], [ 9.44313, 39.13039 ], [ 9.42943, 39.13152 ], [ 9.23939, 39.22329 ], [ 9.06998, 39.19493 ], [ 9.01498, 39.12936 ], [ 9.03744, 39.05232 ], [ 9.01278, 38.99534 ], [ 8.90831, 38.92013 ], [ 8.85951, 38.88499 ], [ 8.7259, 38.92889 ], [ 8.63341, 38.89596 ], [ 8.61239, 38.95779 ], [ 8.5257, 39.0541 ], [ 8.48008, 39.05604 ], [ 8.42327, 38.96644 ], [ 8.36475, 39.03265 ], [ 8.36626, 39.08464 ], [ 8.458, 39.09291 ], [ 8.38906, 39.20493 ], [ 8.41838, 39.28142 ], [ 8.393, 39.44653 ], [ 8.45876, 39.58326 ], [ 8.45809, 39.72236 ], [ 8.50225, 39.71301 ], [ 8.54592, 39.87155 ], [ 8.50268, 39.90359 ], [ 8.42767, 39.88572 ], [ 8.3983, 39.92861 ], [ 8.41357, 40.03037 ], [ 8.48404, 40.09174 ], [ 8.46127, 40.16715 ], [ 8.47595, 40.28101 ], [ 8.39253, 40.3434 ], [ 8.39981, 40.40757 ], [ 8.29488, 40.58263 ], [ 8.15104, 40.59991 ], [ 8.19542, 40.67478 ], [ 8.1463, 40.73367 ], [ 8.2152, 40.8739 ], [ 8.1918, 40.95112 ], [ 8.2229, 40.95664 ], [ 8.31238, 40.85007 ], [ 8.4679, 40.82249 ], [ 8.80269, 40.93105 ], [ 9.00389, 41.10991 ], [ 9.1202, 41.14984 ], [ 9.17596, 41.2287 ], [ 9.22894, 41.24118 ], [ 9.43925, 41.13443 ], [ 9.53897, 41.12556 ], [ 9.54121, 41.04645 ], [ 9.59327, 40.99463 ], [ 9.58672, 40.93142 ], [ 9.66744, 40.86189 ], [ 9.74517, 40.65954 ] ] ], [ [ [ 9.49333, 41.21876 ], [ 9.46587, 41.18897 ], [ 9.43455, 41.21644 ], [ 9.38376, 41.20932 ], [ 9.37042, 41.23035 ], [ 9.40127, 41.25704 ], [ 9.46092, 41.2234 ], [ 9.49333, 41.21876 ] ] ], [ [ [ 9.3823, 41.24227 ], [ 9.33272, 41.21005 ], [ 9.31483, 41.23552 ], [ 9.33272, 41.26985 ], [ 9.3823, 41.24227 ] ] ], [ [ [ 8.35068, 41.0886 ], [ 8.33922, 41.06024 ], [ 8.28933, 41.06195 ], [ 8.27198, 41.0974 ], [ 8.3184, 41.11152 ], [ 8.35068, 41.0886 ] ] ], [ [ [ 8.31037, 39.11312 ], [ 8.27788, 39.09383 ], [ 8.247, 39.11062 ], [ 8.24923, 39.13394 ], [ 8.21971, 39.14643 ], [ 8.22573, 39.16168 ], [ 8.30953, 39.18791 ], [ 8.31037, 39.11312 ] ] ], [ [ [ 8.27309, 40.99947 ], [ 8.25187, 40.9793 ], [ 8.20147, 40.98685 ], [ 8.22823, 41.03148 ], [ 8.27309, 40.99947 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH1", "NUTS_ID": "ITH1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Bolzano/Bozen", "geo": "ITH1", "time_2018_MEAN": 84.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.24075, 47.06917 ], [ 12.1319, 47.00865 ], [ 12.15636, 46.91635 ], [ 12.27495, 46.8741 ], [ 12.29266, 46.78916 ], [ 12.47792, 46.67984 ], [ 12.3815, 46.62873 ], [ 12.21183, 46.61369 ], [ 12.07797, 46.6658 ], [ 12.00531, 46.5448 ], [ 11.82834, 46.50891 ], [ 11.65927, 46.49585 ], [ 11.55227, 46.35878 ], [ 11.47754, 46.35654 ], [ 11.3994, 46.31467 ], [ 11.38217, 46.2686 ], [ 11.31949, 46.28349 ], [ 11.2158, 46.22486 ], [ 11.16174, 46.2851 ], [ 11.2091, 46.39944 ], [ 11.18765, 46.49879 ], [ 11.12086, 46.48927 ], [ 11.07103, 46.5202 ], [ 11.06085, 46.4478 ], [ 10.98005, 46.47934 ], [ 10.87294, 46.43881 ], [ 10.76042, 46.47802 ], [ 10.62215, 46.4481 ], [ 10.4528, 46.53068 ], [ 10.47875, 46.61244 ], [ 10.39002, 46.67877 ], [ 10.46965, 46.85491 ], [ 10.66523, 46.86903 ], [ 10.81161, 46.78206 ], [ 11.0059, 46.76885 ], [ 11.16428, 46.96572 ], [ 11.32835, 46.99025 ], [ 11.41125, 46.97053 ], [ 11.48163, 47.00312 ], [ 11.5463, 46.98942 ], [ 11.6272, 47.0133 ], [ 11.75081, 46.97573 ], [ 12.13601, 47.08067 ], [ 12.24075, 47.06917 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH2", "NUTS_ID": "ITH2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Provincia Autonoma di Trento", "geo": "ITH2", "time_2018_MEAN": 84.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.82834, 46.50891 ], [ 11.82484, 46.48301 ], [ 11.87833, 46.44806 ], [ 11.78742, 46.35592 ], [ 11.84232, 46.28075 ], [ 11.91607, 46.24865 ], [ 11.9521, 46.18206 ], [ 11.87895, 46.11919 ], [ 11.69941, 46.09247 ], [ 11.67297, 46.0209 ], [ 11.68432, 45.98408 ], [ 11.61803, 45.96438 ], [ 11.51451, 46.00755 ], [ 11.3846, 45.97827 ], [ 11.34536, 45.92057 ], [ 11.26714, 45.91276 ], [ 11.13834, 45.69709 ], [ 11.04216, 45.713 ], [ 10.94084, 45.68377 ], [ 10.86348, 45.71542 ], [ 10.88174, 45.80072 ], [ 10.84018, 45.83276 ], [ 10.69407, 45.83738 ], [ 10.54525, 45.7922 ], [ 10.5002, 45.85474 ], [ 10.47151, 46.0209 ], [ 10.54712, 46.12156 ], [ 10.57665, 46.24416 ], [ 10.56824, 46.31339 ], [ 10.51575, 46.34322 ], [ 10.61798, 46.39349 ], [ 10.62215, 46.4481 ], [ 10.76042, 46.47802 ], [ 10.87294, 46.43881 ], [ 10.98005, 46.47934 ], [ 11.06085, 46.4478 ], [ 11.07103, 46.5202 ], [ 11.12086, 46.48927 ], [ 11.18765, 46.49879 ], [ 11.2091, 46.39944 ], [ 11.16174, 46.2851 ], [ 11.2158, 46.22486 ], [ 11.31949, 46.28349 ], [ 11.38217, 46.2686 ], [ 11.3994, 46.31467 ], [ 11.47754, 46.35654 ], [ 11.55227, 46.35878 ], [ 11.65927, 46.49585 ], [ 11.82834, 46.50891 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI3", "NUTS_ID": "FRI3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Poitou-Charentes", "geo": "FRI3", "time_2018_MEAN": 82.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.86747, 46.74822 ], [ 0.91146, 46.70259 ], [ 0.92107, 46.60911 ], [ 1.12254, 46.51413 ], [ 1.17926, 46.43878 ], [ 1.17728, 46.38395 ], [ 1.0467, 46.35517 ], [ 0.99489, 46.28545 ], [ 0.92824, 46.27999 ], [ 0.8893, 46.2768 ], [ 0.81847, 46.21985 ], [ 0.82343, 46.12858 ], [ 0.83547, 46.04912 ], [ 0.90997, 46.01068 ], [ 0.9249, 45.97074 ], [ 0.83695, 45.92084 ], [ 0.7754, 45.81592 ], [ 0.62974, 45.71457 ], [ 0.5119, 45.61642 ], [ 0.49634, 45.55182 ], [ 0.29244, 45.43983 ], [ 0.25523, 45.37419 ], [ 0.25616, 45.30148 ], [ 0.14294, 45.2189 ], [ 0.09692, 45.22193 ], [ 0.06177, 45.22424 ], [ 0.00434, 45.19163 ], [ -0.0402, 45.10238 ], [ -0.18286, 45.09449 ], [ -0.33032, 45.15942 ], [ -0.38461, 45.15557 ], [ -0.43851, 45.28029 ], [ -0.5817, 45.32402 ], [ -0.71483, 45.32837 ], [ -0.75778, 45.42405 ], [ -0.82868, 45.49603 ], [ -1.2279, 45.70401 ], [ -1.26557, 45.86725 ], [ -1.38462, 45.96468 ], [ -1.40028, 46.03871 ], [ -1.25552, 45.98459 ], [ -1.1975, 45.88698 ], [ -1.21641, 45.80482 ], [ -1.14669, 45.81115 ], [ -1.14267, 45.85617 ], [ -1.07977, 45.90911 ], [ -1.06056, 46.02354 ], [ -1.13489, 46.12709 ], [ -1.21903, 46.16174 ], [ -1.12197, 46.25995 ], [ -1.11553, 46.30507 ], [ -1.07529, 46.31999 ], [ -0.96588, 46.35517 ], [ -0.94022, 46.31723 ], [ -0.82072, 46.33338 ], [ -0.75047, 46.30425 ], [ -0.64255, 46.32662 ], [ -0.54971, 46.38451 ], [ -0.62916, 46.41882 ], [ -0.61171, 46.59797 ], [ -0.71703, 46.76351 ], [ -0.71962, 46.81777 ], [ -0.81215, 46.86906 ], [ -0.82203, 46.91828 ], [ -0.89196, 46.97582 ], [ -0.61171, 46.99846 ], [ -0.50743, 47.07672 ], [ -0.24268, 47.10196 ], [ -0.10212, 47.0648 ], [ 0.00681, 47.16254 ], [ 0.05383, 47.16373 ], [ 0.09692, 47.1439 ], [ 0.18568, 47.10306 ], [ 0.20156, 47.06382 ], [ 0.29947, 47.04378 ], [ 0.32154, 46.94435 ], [ 0.57975, 46.95886 ], [ 0.59121, 47.00564 ], [ 0.67855, 46.97421 ], [ 0.71573, 46.89599 ], [ 0.86747, 46.74822 ] ] ], [ [ [ -1.26756, 46.15597 ], [ -1.30148, 46.13992 ], [ -1.35527, 46.15288 ], [ -1.40114, 46.18797 ], [ -1.35649, 46.20863 ], [ -1.28951, 46.18846 ], [ -1.26756, 46.15597 ] ] ], [ [ [ -1.43158, 46.23088 ], [ -1.43013, 46.19221 ], [ -1.53507, 46.2022 ], [ -1.55672, 46.23583 ], [ -1.51289, 46.25861 ], [ -1.4712, 46.23249 ], [ -1.43158, 46.23088 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ1", "NUTS_ID": "FRJ1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Languedoc-Roussillon", "geo": "FRJ1", "time_2018_MEAN": 82.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.86253, 44.74387 ], [ 3.89069, 44.6554 ], [ 3.99816, 44.4598 ], [ 4.05696, 44.40894 ], [ 4.05704, 44.33169 ], [ 4.25047, 44.27944 ], [ 4.3421, 44.33548 ], [ 4.42928, 44.29953 ], [ 4.50215, 44.33315 ], [ 4.64923, 44.27036 ], [ 4.71359, 44.19558 ], [ 4.71959, 44.0913 ], [ 4.83546, 44.00717 ], [ 4.73906, 43.92406 ], [ 4.64848, 43.86108 ], [ 4.61568, 43.6933 ], [ 4.49039, 43.69503 ], [ 4.43908, 43.63473 ], [ 4.45403, 43.59422 ], [ 4.38928, 43.56397 ], [ 4.25628, 43.50185 ], [ 4.23028, 43.46018 ], [ 4.13663, 43.49256 ], [ 4.10108, 43.55471 ], [ 4.06723, 43.55695 ], [ 3.89549, 43.50999 ], [ 3.5412, 43.30146 ], [ 3.36992, 43.27443 ], [ 3.24052, 43.21287 ], [ 3.19538, 43.16564 ], [ 3.08065, 43.04557 ], [ 3.04341, 42.83817 ], [ 3.04436, 42.79422 ], [ 3.04936, 42.56474 ], [ 3.07541, 42.53788 ], [ 3.14171, 42.4695 ], [ 3.17502, 42.43518 ], [ 3.01351, 42.46688 ], [ 2.87506, 42.46154 ], [ 2.70622, 42.40926 ], [ 2.63217, 42.35249 ], [ 2.55687, 42.34308 ], [ 2.26776, 42.42533 ], [ 2.16646, 42.40399 ], [ 2.01912, 42.36202 ], [ 1.96613, 42.40816 ], [ 1.917, 42.45094 ], [ 1.73101, 42.4924 ], [ 1.7258, 42.5044 ], [ 1.75495, 42.53788 ], [ 1.7861, 42.57366 ], [ 1.94904, 42.61242 ], [ 2.0114, 42.65847 ], [ 2.16605, 42.66392 ], [ 2.11985, 42.72318 ], [ 2.06146, 42.74958 ], [ 1.96108, 42.73994 ], [ 1.90222, 42.79422 ], [ 1.87367, 42.82056 ], [ 1.88035, 42.84685 ], [ 1.98172, 42.88058 ], [ 1.94557, 42.94362 ], [ 1.98407, 43.00066 ], [ 1.949, 43.10462 ], [ 1.8761, 43.13208 ], [ 1.7265, 43.18845 ], [ 1.68842, 43.27355 ], [ 1.71225, 43.30146 ], [ 1.74884, 43.34143 ], [ 1.80379, 43.34834 ], [ 1.85579, 43.43191 ], [ 1.91694, 43.4125 ], [ 2.02913, 43.4369 ], [ 2.08714, 43.39758 ], [ 2.16646, 43.39478 ], [ 2.20713, 43.39334 ], [ 2.26954, 43.44965 ], [ 2.56578, 43.42296 ], [ 2.65461, 43.4872 ], [ 2.62568, 43.56397 ], [ 2.65341, 43.6407 ], [ 2.78358, 43.62694 ], [ 2.93546, 43.69466 ], [ 3.05376, 43.70268 ], [ 3.06834, 43.82695 ], [ 3.19538, 43.81906 ], [ 3.21609, 43.81777 ], [ 3.26399, 43.88784 ], [ 3.35836, 43.91383 ], [ 3.4388, 44.02437 ], [ 3.28699, 44.08798 ], [ 3.37365, 44.17076 ], [ 3.34143, 44.20141 ], [ 3.22869, 44.20283 ], [ 3.19538, 44.22605 ], [ 3.13182, 44.27038 ], [ 3.1335, 44.44644 ], [ 3.07825, 44.50043 ], [ 3.07164, 44.56619 ], [ 2.98351, 44.6554 ], [ 3.11397, 44.88561 ], [ 3.19538, 44.87403 ], [ 3.36135, 44.97141 ], [ 3.4081, 44.93979 ], [ 3.47661, 44.81752 ], [ 3.63789, 44.87347 ], [ 3.86253, 44.74387 ] ], [ [ 1.9929, 42.49231 ], [ 1.95371, 42.48633 ], [ 1.94463, 42.45441 ], [ 1.99758, 42.43719 ], [ 1.9929, 42.49231 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRJ2", "NUTS_ID": "FRJ2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Midi-Pyrénées", "geo": "FRJ2", "time_2018_MEAN": 83.633333333333326 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.06291, 44.9765 ], [ 2.09701, 44.87551 ], [ 2.16264, 44.80065 ], [ 2.14247, 44.71036 ], [ 2.16646, 44.66487 ], [ 2.17669, 44.63747 ], [ 2.20747, 44.61553 ], [ 2.25589, 44.6554 ], [ 2.28418, 44.66493 ], [ 2.32269, 44.66714 ], [ 2.3363, 44.6554 ], [ 2.35221, 44.642 ], [ 2.43005, 44.64148 ], [ 2.48746, 44.6554 ], [ 2.6157, 44.85425 ], [ 2.7415, 44.93187 ], [ 2.77759, 44.86778 ], [ 2.84888, 44.86972 ], [ 2.92508, 44.78228 ], [ 2.96199, 44.6554 ], [ 2.98351, 44.6554 ], [ 3.07164, 44.56619 ], [ 3.07825, 44.50043 ], [ 3.1335, 44.44644 ], [ 3.13182, 44.27038 ], [ 3.19538, 44.22605 ], [ 3.22869, 44.20283 ], [ 3.34143, 44.20141 ], [ 3.37365, 44.17076 ], [ 3.28699, 44.08798 ], [ 3.4388, 44.02437 ], [ 3.35836, 43.91383 ], [ 3.26399, 43.88784 ], [ 3.21609, 43.81777 ], [ 3.19538, 43.81906 ], [ 3.06834, 43.82695 ], [ 3.05376, 43.70268 ], [ 2.93546, 43.69466 ], [ 2.78358, 43.62694 ], [ 2.65341, 43.6407 ], [ 2.62568, 43.56397 ], [ 2.65461, 43.4872 ], [ 2.56578, 43.42296 ], [ 2.26954, 43.44965 ], [ 2.20713, 43.39334 ], [ 2.16646, 43.39478 ], [ 2.08714, 43.39758 ], [ 2.02913, 43.4369 ], [ 1.91694, 43.4125 ], [ 1.85579, 43.43191 ], [ 1.80379, 43.34834 ], [ 1.74884, 43.34143 ], [ 1.71225, 43.30146 ], [ 1.68842, 43.27355 ], [ 1.7265, 43.18845 ], [ 1.8761, 43.13208 ], [ 1.949, 43.10462 ], [ 1.98407, 43.00066 ], [ 1.94557, 42.94362 ], [ 1.98172, 42.88058 ], [ 1.88035, 42.84685 ], [ 1.87367, 42.82056 ], [ 1.90222, 42.79422 ], [ 1.96108, 42.73994 ], [ 2.06146, 42.74958 ], [ 2.11985, 42.72318 ], [ 2.16605, 42.66392 ], [ 2.0114, 42.65847 ], [ 1.94904, 42.61242 ], [ 1.7861, 42.57366 ], [ 1.53521, 42.65309 ], [ 1.44257, 42.60367 ], [ 1.34853, 42.7139 ], [ 1.25334, 42.71582 ], [ 1.16477, 42.71501 ], [ 1.07611, 42.77827 ], [ 1.00287, 42.79422 ], [ 0.92824, 42.81048 ], [ 0.85822, 42.82574 ], [ 0.67722, 42.84316 ], [ 0.67172, 42.79422 ], [ 0.66013, 42.69095 ], [ 0.47776, 42.70002 ], [ 0.3604, 42.71691 ], [ 0.2948, 42.68353 ], [ 0.17812, 42.73271 ], [ 0.09692, 42.71574 ], [ -0.02977, 42.68925 ], [ -0.21568, 42.79422 ], [ -0.31334, 42.84936 ], [ -0.31822, 42.90124 ], [ -0.27622, 42.99511 ], [ -0.13626, 43.13208 ], [ -0.06604, 43.20081 ], [ -0.03533, 43.30136 ], [ 0.01042, 43.34801 ], [ -0.08836, 43.56397 ], [ -0.09679, 43.5824 ], [ -0.24283, 43.58498 ], [ -0.27527, 43.63202 ], [ -0.20379, 43.74054 ], [ -0.20739, 43.91212 ], [ -0.03537, 43.97512 ], [ 0.04826, 43.90721 ], [ 0.07604, 43.98314 ], [ 0.09692, 43.98493 ], [ 0.37909, 44.00911 ], [ 0.58721, 44.07217 ], [ 0.66039, 44.04731 ], [ 0.74189, 44.0652 ], [ 0.7979, 44.12957 ], [ 0.87421, 44.14877 ], [ 0.91873, 44.24879 ], [ 0.88726, 44.31584 ], [ 0.90262, 44.36041 ], [ 1.06408, 44.37851 ], [ 0.99281, 44.53565 ], [ 1.07514, 44.57733 ], [ 1.14853, 44.6554 ], [ 1.29004, 44.72485 ], [ 1.31306, 44.79462 ], [ 1.42171, 44.87086 ], [ 1.41394, 44.99404 ], [ 1.44826, 45.01931 ], [ 1.54262, 45.04221 ], [ 1.63614, 45.02733 ], [ 1.79108, 44.92661 ], [ 1.90283, 44.97058 ], [ 2.06291, 44.9765 ] ] ], [ [ [ -0.11168, 43.33233 ], [ -0.07675, 43.36104 ], [ -0.06903, 43.31922 ], [ -0.09027, 43.29906 ], [ -0.08617, 43.2659 ], [ -0.112, 43.24392 ], [ -0.13557, 43.26743 ], [ -0.11168, 43.33233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK1", "NUTS_ID": "FRK1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Auvergne", "geo": "FRK1", "time_2018_MEAN": 82.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.03206, 46.79491 ], [ 3.19538, 46.68984 ], [ 3.41522, 46.71108 ], [ 3.46784, 46.66242 ], [ 3.54853, 46.69293 ], [ 3.59717, 46.75267 ], [ 3.62942, 46.74946 ], [ 3.74656, 46.5458 ], [ 3.98951, 46.46424 ], [ 3.9822, 46.33368 ], [ 3.89954, 46.27591 ], [ 3.78086, 46.23493 ], [ 3.81718, 45.99748 ], [ 3.71364, 45.96551 ], [ 3.69402, 45.93073 ], [ 3.74431, 45.8888 ], [ 3.71487, 45.78632 ], [ 3.8185, 45.64144 ], [ 3.94292, 45.56413 ], [ 3.97634, 45.48786 ], [ 3.96291, 45.44445 ], [ 3.89929, 45.40066 ], [ 3.89741, 45.35708 ], [ 3.97212, 45.37017 ], [ 4.06723, 45.33703 ], [ 4.17228, 45.38578 ], [ 4.32638, 45.36462 ], [ 4.35594, 45.34583 ], [ 4.3713, 45.27243 ], [ 4.48313, 45.23645 ], [ 4.45866, 45.16105 ], [ 4.38911, 45.13662 ], [ 4.36638, 45.03974 ], [ 4.3097, 45.0215 ], [ 4.29949, 44.9747 ], [ 4.23284, 44.95948 ], [ 4.15457, 44.87896 ], [ 4.06723, 44.86827 ], [ 3.9529, 44.82052 ], [ 3.86253, 44.74387 ], [ 3.63789, 44.87347 ], [ 3.47661, 44.81752 ], [ 3.4081, 44.93979 ], [ 3.36135, 44.97141 ], [ 3.19538, 44.87403 ], [ 3.11397, 44.88561 ], [ 2.98351, 44.6554 ], [ 2.96199, 44.6554 ], [ 2.92508, 44.78228 ], [ 2.84888, 44.86972 ], [ 2.77759, 44.86778 ], [ 2.7415, 44.93187 ], [ 2.6157, 44.85425 ], [ 2.48746, 44.6554 ], [ 2.43005, 44.64148 ], [ 2.35221, 44.642 ], [ 2.3363, 44.6554 ], [ 2.32269, 44.66714 ], [ 2.28418, 44.66493 ], [ 2.25589, 44.6554 ], [ 2.20747, 44.61553 ], [ 2.17669, 44.63747 ], [ 2.16646, 44.66487 ], [ 2.14247, 44.71036 ], [ 2.16264, 44.80065 ], [ 2.09701, 44.87551 ], [ 2.06291, 44.9765 ], [ 2.12902, 44.99269 ], [ 2.10813, 45.06029 ], [ 2.16646, 45.09017 ], [ 2.21489, 45.22687 ], [ 2.33774, 45.33005 ], [ 2.37565, 45.39742 ], [ 2.50136, 45.39261 ], [ 2.50841, 45.4785 ], [ 2.47002, 45.5986 ], [ 2.52389, 45.67497 ], [ 2.49213, 45.73767 ], [ 2.40028, 45.82514 ], [ 2.50444, 45.87774 ], [ 2.5971, 45.97126 ], [ 2.55416, 46.10031 ], [ 2.56537, 46.14304 ], [ 2.4751, 46.27587 ], [ 2.33486, 46.32676 ], [ 2.28104, 46.4204 ], [ 2.3654, 46.5131 ], [ 2.59749, 46.548 ], [ 2.59338, 46.64935 ], [ 2.71351, 46.73156 ], [ 2.78511, 46.72576 ], [ 2.94708, 46.79716 ], [ 3.03206, 46.79491 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRK2", "NUTS_ID": "FRK2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Rhône-Alpes", "geo": "FRK2", "time_2018_MEAN": 84.066666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.31056, 46.44677 ], [ 5.31208, 46.41218 ], [ 5.4908, 46.26699 ], [ 5.64714, 46.32669 ], [ 5.73817, 46.2661 ], [ 5.86613, 46.26847 ], [ 6.064, 46.41623 ], [ 6.15625, 46.37094 ], [ 6.12561, 46.31723 ], [ 6.11163, 46.25402 ], [ 5.98219, 46.2067 ], [ 5.95607, 46.1321 ], [ 6.14443, 46.14734 ], [ 6.28163, 46.22401 ], [ 6.29119, 46.25099 ], [ 6.21955, 46.31188 ], [ 6.31752, 46.39395 ], [ 6.52195, 46.45384 ], [ 6.82106, 46.42715 ], [ 6.78149, 46.34892 ], [ 6.85389, 46.2745 ], [ 6.80079, 46.15554 ], [ 6.88923, 46.11852 ], [ 6.88469, 46.05452 ], [ 6.95033, 46.04663 ], [ 7.04489, 45.92241 ], [ 6.97039, 45.86236 ], [ 6.82762, 45.82875 ], [ 6.80237, 45.77856 ], [ 6.84065, 45.69788 ], [ 6.98836, 45.63863 ], [ 7.00848, 45.50866 ], [ 7.10472, 45.46845 ], [ 7.17523, 45.39722 ], [ 7.12014, 45.32666 ], [ 7.11411, 45.24083 ], [ 6.97771, 45.20763 ], [ 6.87002, 45.13433 ], [ 6.7703, 45.15253 ], [ 6.63005, 45.10986 ], [ 6.50882, 45.10425 ], [ 6.44134, 45.05876 ], [ 6.26057, 45.12684 ], [ 6.21151, 45.02033 ], [ 6.31807, 44.98863 ], [ 6.35513, 44.92735 ], [ 6.3459, 44.8603 ], [ 6.13281, 44.85794 ], [ 6.01784, 44.8287 ], [ 5.9327, 44.75926 ], [ 5.83176, 44.75212 ], [ 5.80147, 44.70678 ], [ 5.78523, 44.65831 ], [ 5.6458, 44.62915 ], [ 5.61535, 44.56103 ], [ 5.62219, 44.49148 ], [ 5.48707, 44.48179 ], [ 5.43867, 44.41176 ], [ 5.48206, 44.35338 ], [ 5.62537, 44.30623 ], [ 5.66752, 44.25764 ], [ 5.67604, 44.19143 ], [ 5.64966, 44.15901 ], [ 5.58973, 44.18473 ], [ 5.49879, 44.11572 ], [ 5.39224, 44.16049 ], [ 5.3625, 44.208 ], [ 5.17105, 44.22645 ], [ 5.14913, 44.29168 ], [ 5.00246, 44.2951 ], [ 5.0424, 44.37729 ], [ 4.97328, 44.42305 ], [ 4.92214, 44.40551 ], [ 4.88845, 44.35265 ], [ 4.89832, 44.30874 ], [ 4.96679, 44.29109 ], [ 4.93811, 44.26676 ], [ 4.83049, 44.23824 ], [ 4.7825, 44.31391 ], [ 4.65061, 44.3298 ], [ 4.64923, 44.27036 ], [ 4.50215, 44.33315 ], [ 4.42928, 44.29953 ], [ 4.3421, 44.33548 ], [ 4.25047, 44.27944 ], [ 4.05704, 44.33169 ], [ 4.05696, 44.40894 ], [ 3.99816, 44.4598 ], [ 3.89069, 44.6554 ], [ 3.86253, 44.74387 ], [ 3.9529, 44.82052 ], [ 4.06723, 44.86827 ], [ 4.15457, 44.87896 ], [ 4.23284, 44.95948 ], [ 4.29949, 44.9747 ], [ 4.3097, 45.0215 ], [ 4.36638, 45.03974 ], [ 4.38911, 45.13662 ], [ 4.45866, 45.16105 ], [ 4.48313, 45.23645 ], [ 4.3713, 45.27243 ], [ 4.35594, 45.34583 ], [ 4.32638, 45.36462 ], [ 4.17228, 45.38578 ], [ 4.06723, 45.33703 ], [ 3.97212, 45.37017 ], [ 3.89741, 45.35708 ], [ 3.89929, 45.40066 ], [ 3.96291, 45.44445 ], [ 3.97634, 45.48786 ], [ 3.94292, 45.56413 ], [ 3.8185, 45.64144 ], [ 3.71487, 45.78632 ], [ 3.74431, 45.8888 ], [ 3.69402, 45.93073 ], [ 3.71364, 45.96551 ], [ 3.81718, 45.99748 ], [ 3.78086, 46.23493 ], [ 3.89954, 46.27591 ], [ 3.9048, 46.21533 ], [ 4.00644, 46.17122 ], [ 4.06723, 46.18733 ], [ 4.27982, 46.16777 ], [ 4.38807, 46.21979 ], [ 4.42238, 46.29744 ], [ 4.51718, 46.27171 ], [ 4.67534, 46.30084 ], [ 4.73361, 46.18714 ], [ 4.78021, 46.17668 ], [ 4.94205, 46.50916 ], [ 5.06972, 46.48768 ], [ 5.17649, 46.51218 ], [ 5.23665, 46.46037 ], [ 5.31056, 46.44677 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRL0", "NUTS_ID": "FRL0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Provence-Alpes-Côte d’Azur", "geo": "FRL0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.26057, 45.12684 ], [ 6.44134, 45.05876 ], [ 6.50882, 45.10425 ], [ 6.63005, 45.10986 ], [ 6.67866, 45.02714 ], [ 6.7389, 45.00536 ], [ 6.76112, 44.9048 ], [ 6.86629, 44.85262 ], [ 7.00193, 44.8382 ], [ 7.02833, 44.74476 ], [ 7.06576, 44.71346 ], [ 7.06424, 44.68597 ], [ 6.99338, 44.68578 ], [ 6.94925, 44.6554 ], [ 6.93483, 44.58587 ], [ 6.86256, 44.5287 ], [ 6.9235, 44.43816 ], [ 6.88743, 44.36129 ], [ 7.02497, 44.23278 ], [ 7.37275, 44.12193 ], [ 7.66487, 44.17388 ], [ 7.71424, 44.06151 ], [ 7.5084, 43.86914 ], [ 7.52983, 43.78401 ], [ 7.43925, 43.74902 ], [ 7.43736, 43.75163 ], [ 7.41338, 43.73458 ], [ 7.41283, 43.73171 ], [ 7.41028, 43.72935 ], [ 7.4157, 43.72591 ], [ 7.16241, 43.64987 ], [ 7.11176, 43.57364 ], [ 7.07928, 43.56397 ], [ 7.05211, 43.49756 ], [ 6.98667, 43.53586 ], [ 6.93133, 43.48026 ], [ 6.84381, 43.41903 ], [ 6.74778, 43.4028 ], [ 6.62699, 43.30146 ], [ 6.6663, 43.24987 ], [ 6.61962, 43.18251 ], [ 6.44524, 43.15147 ], [ 6.42671, 43.14817 ], [ 6.33836, 43.10366 ], [ 6.22042, 43.10525 ], [ 6.14125, 43.06103 ], [ 5.9865, 43.09636 ], [ 5.84264, 43.07011 ], [ 5.71537, 43.15147 ], [ 5.67188, 43.17927 ], [ 5.59332, 43.16829 ], [ 5.53212, 43.20436 ], [ 5.36159, 43.21478 ], [ 5.35146, 43.27979 ], [ 5.35097, 43.30146 ], [ 5.35048, 43.32335 ], [ 5.31715, 43.35093 ], [ 5.0618, 43.3279 ], [ 4.94269, 43.42737 ], [ 4.86639, 43.40546 ], [ 4.86917, 43.35119 ], [ 4.82821, 43.3346 ], [ 4.59976, 43.35842 ], [ 4.57308, 43.38118 ], [ 4.5801, 43.41795 ], [ 4.53358, 43.44818 ], [ 4.23028, 43.46018 ], [ 4.25628, 43.50185 ], [ 4.38928, 43.56397 ], [ 4.45403, 43.59422 ], [ 4.43908, 43.63473 ], [ 4.49039, 43.69503 ], [ 4.61568, 43.6933 ], [ 4.64848, 43.86108 ], [ 4.73906, 43.92406 ], [ 4.83546, 44.00717 ], [ 4.71959, 44.0913 ], [ 4.71359, 44.19558 ], [ 4.64923, 44.27036 ], [ 4.65061, 44.3298 ], [ 4.7825, 44.31391 ], [ 4.83049, 44.23824 ], [ 4.93811, 44.26676 ], [ 4.96679, 44.29109 ], [ 4.89832, 44.30874 ], [ 4.88845, 44.35265 ], [ 4.92214, 44.40551 ], [ 4.97328, 44.42305 ], [ 5.0424, 44.37729 ], [ 5.00246, 44.2951 ], [ 5.14913, 44.29168 ], [ 5.17105, 44.22645 ], [ 5.3625, 44.208 ], [ 5.39224, 44.16049 ], [ 5.49879, 44.11572 ], [ 5.58973, 44.18473 ], [ 5.64966, 44.15901 ], [ 5.67604, 44.19143 ], [ 5.66752, 44.25764 ], [ 5.62537, 44.30623 ], [ 5.48206, 44.35338 ], [ 5.43867, 44.41176 ], [ 5.48707, 44.48179 ], [ 5.62219, 44.49148 ], [ 5.61535, 44.56103 ], [ 5.6458, 44.62915 ], [ 5.78523, 44.65831 ], [ 5.80147, 44.70678 ], [ 5.83176, 44.75212 ], [ 5.9327, 44.75926 ], [ 6.01784, 44.8287 ], [ 6.13281, 44.85794 ], [ 6.3459, 44.8603 ], [ 6.35513, 44.92735 ], [ 6.31807, 44.98863 ], [ 6.21151, 45.02033 ], [ 6.26057, 45.12684 ] ] ], [ [ [ 6.418, 42.98258 ], [ 6.37945, 42.98086 ], [ 6.36923, 43.0056 ], [ 6.38337, 43.028 ], [ 6.42471, 43.02131 ], [ 6.418, 42.98258 ] ] ], [ [ [ 6.25133, 43.01632 ], [ 6.2447, 42.97458 ], [ 6.19223, 42.99779 ], [ 6.21936, 43.03491 ], [ 6.25133, 43.01632 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRM0", "NUTS_ID": "FRM0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Corse", "geo": "FRM0", "time_2018_MEAN": 84.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.4022, 41.85867 ], [ 9.4019, 41.71861 ], [ 9.33866, 41.6189 ], [ 9.34625, 41.57254 ], [ 9.28332, 41.51849 ], [ 9.22981, 41.3865 ], [ 9.19222, 41.37119 ], [ 9.10875, 41.40035 ], [ 9.10267, 41.43823 ], [ 8.92815, 41.49332 ], [ 8.79713, 41.57472 ], [ 8.79233, 41.62002 ], [ 8.86903, 41.65427 ], [ 8.88103, 41.68584 ], [ 8.7035, 41.74421 ], [ 8.77633, 41.82842 ], [ 8.79153, 41.90298 ], [ 8.75702, 41.92539 ], [ 8.6268, 41.90664 ], [ 8.62016, 41.93799 ], [ 8.60745, 41.96316 ], [ 8.73374, 42.05083 ], [ 8.6934, 42.10253 ], [ 8.59116, 42.14057 ], [ 8.58105, 42.23461 ], [ 8.67801, 42.27233 ], [ 8.6097, 42.34266 ], [ 8.56309, 42.34488 ], [ 8.57348, 42.38128 ], [ 8.66371, 42.4695 ], [ 8.68047, 42.51197 ], [ 8.81584, 42.59811 ], [ 9.01866, 42.64782 ], [ 9.14147, 42.72768 ], [ 9.31184, 42.70213 ], [ 9.34871, 42.96986 ], [ 9.43004, 42.99244 ], [ 9.48217, 42.83262 ], [ 9.4594, 42.66992 ], [ 9.52632, 42.54006 ], [ 9.53296, 42.4695 ], [ 9.54332, 42.12455 ], [ 9.42505, 41.94725 ], [ 9.4022, 41.85867 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY1", "NUTS_ID": "FRY1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guadeloupe", "geo": "FRY1", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.01673, 16.32278 ], [ -61.04748, 16.29283 ], [ -61.08226, 16.31009 ], [ -61.0647, 16.33778 ], [ -61.02748, 16.3443 ], [ -61.01673, 16.32278 ] ] ], [ [ [ -61.24268, 15.87457 ], [ -61.2793, 15.86713 ], [ -61.32183, 15.88546 ], [ -61.3373, 15.93947 ], [ -61.31806, 15.97559 ], [ -61.27646, 16.00649 ], [ -61.23383, 15.98535 ], [ -61.19825, 15.93947 ], [ -61.20413, 15.90193 ], [ -61.24268, 15.87457 ] ] ], [ [ [ -61.25966, 16.30148 ], [ -61.23266, 16.26485 ], [ -61.29868, 16.24333 ], [ -61.36694, 16.2336 ], [ -61.46561, 16.19796 ], [ -61.54361, 16.21403 ], [ -61.58312, 16.23443 ], [ -61.58995, 16.19492 ], [ -61.55981, 16.0947 ], [ -61.55664, 16.05244 ], [ -61.61951, 15.97294 ], [ -61.70653, 15.94967 ], [ -61.70982, 15.97111 ], [ -61.74614, 16.01089 ], [ -61.76924, 16.0598 ], [ -61.77865, 16.14049 ], [ -61.79044, 16.16703 ], [ -61.78231, 16.21398 ], [ -61.80846, 16.27191 ], [ -61.80067, 16.31492 ], [ -61.77625, 16.34848 ], [ -61.74226, 16.36108 ], [ -61.71253, 16.33717 ], [ -61.62381, 16.30151 ], [ -61.59364, 16.26687 ], [ -61.55121, 16.28638 ], [ -61.52292, 16.34518 ], [ -61.4936, 16.35344 ], [ -61.52162, 16.39193 ], [ -61.53574, 16.45256 ], [ -61.4719, 16.50933 ], [ -61.41257, 16.46885 ], [ -61.39859, 16.42272 ], [ -61.40063, 16.37235 ], [ -61.37678, 16.34129 ], [ -61.31276, 16.33088 ], [ -61.25966, 16.30148 ] ] ], [ [ [ -61.56026, 15.87872 ], [ -61.56109, 15.8358 ], [ -61.63835, 15.86314 ], [ -61.6187, 15.89055 ], [ -61.56026, 15.87872 ] ] ], [ [ [ -63.01907, 18.0563 ], [ -63.08825, 18.04626 ], [ -63.07708, 18.09084 ], [ -63.04151, 18.11773 ], [ -63.02048, 18.10706 ], [ -63.01907, 18.0563 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY2", "NUTS_ID": "FRY2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Martinique", "geo": "FRY2", "time_2018_MEAN": 82.466666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.81096, 14.4803 ], [ -60.84017, 14.41188 ], [ -60.87482, 14.39686 ], [ -60.88125, 14.43656 ], [ -60.91043, 14.46892 ], [ -60.99109, 14.4673 ], [ -61.02077, 14.47996 ], [ -61.04997, 14.45718 ], [ -61.08181, 14.47128 ], [ -61.08771, 14.5333 ], [ -61.00934, 14.56746 ], [ -61.03834, 14.59428 ], [ -61.09082, 14.60017 ], [ -61.15092, 14.64898 ], [ -61.18446, 14.7078 ], [ -61.17943, 14.74932 ], [ -61.21419, 14.7817 ], [ -61.22918, 14.8215 ], [ -61.20414, 14.86203 ], [ -61.1389, 14.87789 ], [ -61.05723, 14.83484 ], [ -61.03016, 14.83011 ], [ -60.94467, 14.72547 ], [ -60.91331, 14.69571 ], [ -60.9421, 14.66852 ], [ -60.91294, 14.66465 ], [ -60.87137, 14.61666 ], [ -60.85079, 14.57211 ], [ -60.83184, 14.56273 ], [ -60.83525, 14.51445 ], [ -60.81096, 14.4803 ] ] ], [ [ [ -60.87377, 14.75228 ], [ -60.91319, 14.71979 ], [ -60.93752, 14.75788 ], [ -60.89082, 14.78111 ], [ -60.87377, 14.75228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY3", "NUTS_ID": "FRY3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Guyane", "geo": "FRY3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.94153, 5.44348 ], [ -52.37002, 4.93289 ], [ -52.29132, 4.93837 ], [ -52.15508, 4.8001 ], [ -51.99586, 4.69936 ], [ -51.81983, 4.63101 ], [ -51.70553, 4.30679 ], [ -51.62991, 4.18507 ], [ -51.65546, 4.05599 ], [ -51.77076, 3.97321 ], [ -51.80179, 3.88759 ], [ -51.97152, 3.69419 ], [ -52.19456, 3.29653 ], [ -52.33653, 3.15257 ], [ -52.33545, 3.06548 ], [ -52.54418, 2.63913 ], [ -52.53576, 2.58435 ], [ -52.56974, 2.50171 ], [ -52.66754, 2.37726 ], [ -52.84904, 2.27961 ], [ -52.91288, 2.19123 ], [ -53.02631, 2.1843 ], [ -53.11079, 2.22208 ], [ -53.27031, 2.20064 ], [ -53.2412, 2.26089 ], [ -53.33071, 2.33954 ], [ -53.51584, 2.25347 ], [ -53.71805, 2.31284 ], [ -53.77195, 2.36723 ], [ -53.92956, 2.26863 ], [ -53.95568, 2.21758 ], [ -54.06546, 2.18428 ], [ -54.12151, 2.11899 ], [ -54.19102, 2.16715 ], [ -54.31096, 2.15049 ], [ -54.36638, 2.20122 ], [ -54.46552, 2.21234 ], [ -54.54112, 2.31089 ], [ -54.58789, 2.32207 ], [ -54.51548, 2.34341 ], [ -54.48381, 2.41921 ], [ -54.38597, 2.47981 ], [ -54.21139, 2.78191 ], [ -54.17792, 2.95234 ], [ -54.2011, 3.17003 ], [ -54.06862, 3.32019 ], [ -53.98799, 3.59835 ], [ -54.0722, 3.6711 ], [ -54.11935, 3.78089 ], [ -54.18247, 3.80774 ], [ -54.27971, 3.93134 ], [ -54.35071, 4.05698 ], [ -54.33439, 4.14737 ], [ -54.38877, 4.18507 ], [ -54.39304, 4.34837 ], [ -54.43794, 4.3914 ], [ -54.42003, 4.59869 ], [ -54.47028, 4.90478 ], [ -54.41316, 5.07872 ], [ -54.02713, 5.51958 ], [ -54.00565, 5.60254 ], [ -54.00687, 5.66697 ], [ -53.96759, 5.73597 ], [ -53.83604, 5.73044 ], [ -53.48265, 5.57166 ], [ -53.23651, 5.54036 ], [ -52.94153, 5.44348 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY4", "NUTS_ID": "FRY4", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "La Réunion", "geo": "FRY4", "time_2018_MEAN": 80.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.64788, -20.91533 ], [ 55.68341, -20.9441 ], [ 55.70701, -21.02612 ], [ 55.78207, -21.123 ], [ 55.82561, -21.14421 ], [ 55.83616, -21.18324 ], [ 55.80229, -21.26097 ], [ 55.80878, -21.33355 ], [ 55.77495, -21.36479 ], [ 55.64685, -21.38917 ], [ 55.4613, -21.34207 ], [ 55.39729, -21.29644 ], [ 55.33953, -21.28059 ], [ 55.29393, -21.23063 ], [ 55.28667, -21.16203 ], [ 55.25381, -21.10971 ], [ 55.22134, -21.07817 ], [ 55.21668, -21.03911 ], [ 55.27552, -21.00141 ], [ 55.28663, -20.92492 ], [ 55.32236, -20.93343 ], [ 55.39488, -20.88152 ], [ 55.45107, -20.87141 ], [ 55.54278, -20.89448 ], [ 55.59346, -20.89618 ], [ 55.64788, -20.91533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRY5", "NUTS_ID": "FRY5", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Mayotte", "geo": "FRY5", "time_2018_MEAN": 76.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.30603, -12.77433 ], [ 45.2815, -12.82952 ], [ 45.2588, -12.78753 ], [ 45.28446, -12.74325 ], [ 45.30603, -12.77433 ] ] ], [ [ [ 45.11663, -12.67577 ], [ 45.12773, -12.72802 ], [ 45.16825, -12.72209 ], [ 45.23539, -12.75332 ], [ 45.23523, -12.78383 ], [ 45.18587, -12.83909 ], [ 45.22143, -12.87214 ], [ 45.16998, -12.94622 ], [ 45.18792, -12.98024 ], [ 45.1537, -12.99344 ], [ 45.1081, -12.98615 ], [ 45.10191, -12.92588 ], [ 45.12964, -12.93205 ], [ 45.14355, -12.89784 ], [ 45.09396, -12.85242 ], [ 45.10443, -12.84072 ], [ 45.1007, -12.76641 ], [ 45.07675, -12.76646 ], [ 45.04362, -12.7234 ], [ 45.0944, -12.65992 ], [ 45.11663, -12.67577 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR31", "NUTS_ID": "TR31", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İzmir", "geo": "TR31", "time_2018_MEAN": 79.233333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.44261, 38.10466 ], [ 28.33517, 38.10806 ], [ 28.30801, 38.10892 ], [ 28.2027, 38.0098 ], [ 28.11862, 37.99673 ], [ 27.97258, 37.97401 ], [ 27.90986, 37.96426 ], [ 27.7133, 37.95216 ], [ 27.62763, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.52102, 37.97401 ], [ 27.37209, 37.87229 ], [ 27.26457, 37.87505 ], [ 27.20428, 37.9773 ], [ 26.87461, 38.07356 ], [ 26.7436, 38.183 ], [ 26.54877, 38.15559 ], [ 26.29574, 38.29046 ], [ 26.30948, 38.32429 ], [ 26.39864, 38.35032 ], [ 26.44681, 38.39681 ], [ 26.38015, 38.57518 ], [ 26.41969, 38.64593 ], [ 26.49984, 38.63298 ], [ 26.55496, 38.58944 ], [ 26.66627, 38.37824 ], [ 26.87234, 38.38205 ], [ 27.00794, 38.42348 ], [ 26.89387, 38.51387 ], [ 26.77874, 38.65977 ], [ 26.79407, 38.71892 ], [ 26.90692, 38.78102 ], [ 27.01088, 38.89732 ], [ 26.84833, 38.96912 ], [ 26.83437, 39.0882 ], [ 26.76392, 39.17521 ], [ 26.7982, 39.21499 ], [ 26.87837, 39.27249 ], [ 26.98122, 39.31591 ], [ 27.02513, 39.34968 ], [ 27.04695, 39.36023 ], [ 27.079, 39.37086 ], [ 27.13303, 39.38461 ], [ 27.16492, 39.38798 ], [ 27.20863, 39.38382 ], [ 27.2362, 39.38119 ], [ 27.308, 39.3652 ], [ 27.38132, 39.35275 ], [ 27.43639, 39.27249 ], [ 27.48577, 39.06364 ], [ 27.47571, 38.997 ], [ 27.38393, 38.92413 ], [ 27.15092, 38.87516 ], [ 27.11318, 38.79807 ], [ 27.25482, 38.56257 ], [ 27.66171, 38.42898 ], [ 27.81683, 38.30561 ], [ 27.84734, 38.31703 ], [ 27.87445, 38.39654 ], [ 27.90965, 38.40822 ], [ 28.0567, 38.39396 ], [ 28.13894, 38.32195 ], [ 28.31441, 38.30699 ], [ 28.33517, 38.2929 ], [ 28.44493, 38.21846 ], [ 28.44261, 38.10466 ] ] ], [ [ [ 26.74982, 38.48088 ], [ 26.74282, 38.45844 ], [ 26.69442, 38.47957 ], [ 26.69381, 38.51267 ], [ 26.71389, 38.54215 ], [ 26.74982, 38.48088 ] ] ], [ [ [ 26.35924, 38.41512 ], [ 26.32442, 38.40965 ], [ 26.31119, 38.44217 ], [ 26.37115, 38.46731 ], [ 26.35924, 38.41512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR32", "NUTS_ID": "TR32", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Aydın, Denizli, Muğla", "geo": "TR32", "time_2018_MEAN": 79.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.85212, 37.75229 ], [ 29.50894, 37.61249 ], [ 29.51811, 37.47302 ], [ 29.59527, 37.38467 ], [ 29.52399, 37.27857 ], [ 29.44548, 37.1617 ], [ 29.34145, 37.00685 ], [ 29.40279, 36.96506 ], [ 29.41063, 36.9481 ], [ 29.40742, 36.87167 ], [ 29.5893, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.65945, 36.96506 ], [ 29.71326, 36.95631 ], [ 29.73865, 36.9435 ], [ 29.75197, 36.92896 ], [ 29.75335, 36.91096 ], [ 29.74649, 36.88729 ], [ 29.71679, 36.84984 ], [ 29.68519, 36.80363 ], [ 29.66724, 36.76041 ], [ 29.63807, 36.67135 ], [ 29.5935, 36.61856 ], [ 29.53647, 36.5664 ], [ 29.32568, 36.4467 ], [ 29.26056, 36.3044 ], [ 29.12978, 36.40202 ], [ 29.06223, 36.5826 ], [ 29.08189, 36.64193 ], [ 29.05837, 36.67557 ], [ 28.93489, 36.71502 ], [ 28.91991, 36.65406 ], [ 28.83942, 36.63082 ], [ 28.65026, 36.71983 ], [ 28.56966, 36.80443 ], [ 28.469, 36.84001 ], [ 28.27746, 36.81093 ], [ 28.24367, 36.71472 ], [ 28.02818, 36.58078 ], [ 28.00335, 36.59744 ], [ 28.04619, 36.64121 ], [ 28.03074, 36.6945 ], [ 28.0887, 36.7389 ], [ 28.08019, 36.77277 ], [ 27.76074, 36.75075 ], [ 27.61114, 36.66977 ], [ 27.43225, 36.68566 ], [ 27.46639, 36.74459 ], [ 27.6154, 36.78654 ], [ 27.99604, 36.80575 ], [ 28.06232, 36.90889 ], [ 28.16219, 36.96506 ], [ 28.14442, 36.99027 ], [ 27.5583, 36.97524 ], [ 27.29156, 37.00367 ], [ 27.26412, 37.05448 ], [ 27.29238, 37.10796 ], [ 27.49261, 37.12382 ], [ 27.52149, 37.1617 ], [ 27.55797, 37.20956 ], [ 27.40436, 37.36809 ], [ 27.38867, 37.39105 ], [ 27.23787, 37.36402 ], [ 27.18697, 37.58785 ], [ 27.04758, 37.65921 ], [ 27.22082, 37.73666 ], [ 27.26457, 37.87505 ], [ 27.37209, 37.87229 ], [ 27.52102, 37.97401 ], [ 27.55001, 37.99381 ], [ 27.62763, 37.97401 ], [ 27.7133, 37.95216 ], [ 27.90986, 37.96426 ], [ 27.97258, 37.97401 ], [ 28.11862, 37.99673 ], [ 28.2027, 38.0098 ], [ 28.30801, 38.10892 ], [ 28.33517, 38.10806 ], [ 28.44261, 38.10466 ], [ 28.61609, 38.08959 ], [ 28.67641, 38.10766 ], [ 28.76381, 38.21058 ], [ 28.84734, 38.24043 ], [ 29.22948, 38.24305 ], [ 29.37492, 38.30347 ], [ 29.5766, 38.25189 ], [ 29.62657, 38.39878 ], [ 29.7557, 38.48431 ], [ 29.9355, 38.40171 ], [ 30.02025, 38.22987 ], [ 29.96496, 38.13999 ], [ 29.72433, 37.99673 ], [ 29.68618, 37.97401 ], [ 29.67117, 37.94958 ], [ 29.67506, 37.86676 ], [ 29.85212, 37.75229 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR33", "NUTS_ID": "TR33", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Manisa, Afyonkarahisar, Kütahya, Uşak", "geo": "TR33", "time_2018_MEAN": 77.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.74218, 39.87133 ], [ 29.75971, 39.72243 ], [ 29.84449, 39.6837 ], [ 29.86618, 39.67822 ], [ 29.96585, 39.65653 ], [ 30.01007, 39.65515 ], [ 30.06013, 39.65864 ], [ 30.08973, 39.65767 ], [ 30.19112, 39.65436 ], [ 30.2436, 39.56671 ], [ 30.34714, 39.50028 ], [ 30.3661, 39.42387 ], [ 30.32829, 39.36015 ], [ 30.38528, 39.27249 ], [ 30.40413, 39.24355 ], [ 30.42949, 39.21761 ], [ 30.56399, 39.15365 ], [ 30.76721, 39.13146 ], [ 31.17412, 39.27249 ], [ 31.21546, 39.28388 ], [ 31.2477, 39.2855 ], [ 31.28447, 39.27249 ], [ 31.37814, 39.15583 ], [ 31.61973, 39.10306 ], [ 31.62217, 39.01093 ], [ 31.7091, 38.94766 ], [ 31.63456, 38.90865 ], [ 31.63199, 38.82099 ], [ 31.53363, 38.69501 ], [ 31.60789, 38.61784 ], [ 31.23335, 38.40997 ], [ 31.1157, 38.48864 ], [ 30.98498, 38.45975 ], [ 30.70596, 38.26886 ], [ 30.41889, 38.13979 ], [ 30.32494, 38.03299 ], [ 30.25951, 37.99673 ], [ 30.21853, 37.97401 ], [ 30.1748, 37.94978 ], [ 30.08973, 37.82524 ], [ 30.03998, 37.75241 ], [ 29.85212, 37.75229 ], [ 29.67506, 37.86676 ], [ 29.67117, 37.94958 ], [ 29.68618, 37.97401 ], [ 29.72433, 37.99673 ], [ 29.96496, 38.13999 ], [ 30.02025, 38.22987 ], [ 29.9355, 38.40171 ], [ 29.7557, 38.48431 ], [ 29.62657, 38.39878 ], [ 29.5766, 38.25189 ], [ 29.37492, 38.30347 ], [ 29.22948, 38.24305 ], [ 28.84734, 38.24043 ], [ 28.76381, 38.21058 ], [ 28.67641, 38.10766 ], [ 28.61609, 38.08959 ], [ 28.44261, 38.10466 ], [ 28.44493, 38.21846 ], [ 28.33517, 38.2929 ], [ 28.31441, 38.30699 ], [ 28.13894, 38.32195 ], [ 28.0567, 38.39396 ], [ 27.90965, 38.40822 ], [ 27.87445, 38.39654 ], [ 27.84734, 38.31703 ], [ 27.81683, 38.30561 ], [ 27.66171, 38.42898 ], [ 27.25482, 38.56257 ], [ 27.11318, 38.79807 ], [ 27.15092, 38.87516 ], [ 27.38393, 38.92413 ], [ 27.47571, 38.997 ], [ 27.48577, 39.06364 ], [ 27.43639, 39.27249 ], [ 27.38132, 39.35275 ], [ 27.43657, 39.39743 ], [ 27.59222, 39.34233 ], [ 27.78422, 39.31908 ], [ 27.88984, 39.34108 ], [ 27.91595, 39.27249 ], [ 27.97692, 39.19542 ], [ 28.16886, 39.06254 ], [ 28.33517, 39.09171 ], [ 28.65255, 39.14737 ], [ 28.65508, 39.19693 ], [ 28.59794, 39.27249 ], [ 28.75983, 39.30027 ], [ 28.87739, 39.3695 ], [ 28.96857, 39.60068 ], [ 29.13976, 39.58802 ], [ 29.19843, 39.61284 ], [ 29.27417, 39.72113 ], [ 29.3942, 39.80481 ], [ 29.4129, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.50094, 39.87809 ], [ 29.56295, 39.86415 ], [ 29.74218, 39.87133 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR03", "NUTS_ID": "HR03", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Jadranska Hrvatska", "geo": "HR03", "time_2018_MEAN": 79.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.4381, 42.5557 ], [ 18.44661, 42.48476 ], [ 18.46527, 42.4695 ], [ 18.52521, 42.42046 ], [ 18.43634, 42.46145 ], [ 18.41887, 42.4695 ], [ 18.2706, 42.53788 ], [ 18.22713, 42.57302 ], [ 18.22451, 42.60846 ], [ 18.07925, 42.64779 ], [ 17.82621, 42.79677 ], [ 17.74396, 42.7908 ], [ 17.50108, 42.85339 ], [ 17.23796, 42.96701 ], [ 17.17994, 42.97247 ], [ 17.14168, 42.91014 ], [ 16.98159, 42.92386 ], [ 16.79166, 42.89693 ], [ 16.65292, 42.92914 ], [ 16.68891, 42.98695 ], [ 16.85597, 42.96064 ], [ 17.0423, 42.98276 ], [ 17.04269, 43.02522 ], [ 17.23796, 43.01451 ], [ 17.42688, 42.95573 ], [ 17.45706, 42.93129 ], [ 17.52098, 42.92406 ], [ 17.63082, 42.88355 ], [ 17.64916, 42.88892 ], [ 17.70697, 42.91522 ], [ 17.81803, 42.90221 ], [ 17.91182, 42.80626 ], [ 18.21506, 42.62524 ], [ 18.36405, 42.61018 ], [ 18.4381, 42.5557 ] ] ], [ [ [ 17.92111, 42.71548 ], [ 17.90435, 42.69976 ], [ 17.82556, 42.73732 ], [ 17.85278, 42.75556 ], [ 17.92111, 42.71548 ] ] ], [ [ [ 17.733, 42.72301 ], [ 17.71895, 42.68918 ], [ 17.64817, 42.71881 ], [ 17.66463, 42.73406 ], [ 17.733, 42.72301 ] ] ], [ [ [ 15.22644, 45.42709 ], [ 15.1904, 45.35367 ], [ 15.1069, 45.28946 ], [ 15.0165, 45.31464 ], [ 14.98075, 45.29565 ], [ 14.98344, 45.16016 ], [ 15.01663, 45.12303 ], [ 15.11879, 45.09018 ], [ 15.19949, 45.10201 ], [ 15.4559, 44.93293 ], [ 15.73672, 44.93563 ], [ 15.78002, 44.85082 ], [ 15.74256, 44.81832 ], [ 15.76195, 44.78234 ], [ 15.82557, 44.73121 ], [ 15.90947, 44.72752 ], [ 16.02321, 44.64398 ], [ 16.03845, 44.57255 ], [ 16.11259, 44.50935 ], [ 16.13218, 44.45453 ], [ 16.2076, 44.34344 ], [ 16.21006, 44.23266 ], [ 16.17245, 44.20922 ], [ 16.23987, 44.1967 ], [ 16.54435, 43.97418 ], [ 17.01096, 43.57806 ], [ 17.03578, 43.56397 ], [ 17.14507, 43.50197 ], [ 17.26153, 43.47696 ], [ 17.26116, 43.39157 ], [ 17.31427, 43.30146 ], [ 17.45085, 43.17687 ], [ 17.50399, 43.15147 ], [ 17.63364, 43.08949 ], [ 17.69589, 42.99703 ], [ 17.69391, 42.97071 ], [ 17.58134, 42.93842 ], [ 17.5238, 42.95288 ], [ 17.35605, 43.08416 ], [ 17.24533, 43.15147 ], [ 17.13352, 43.20111 ], [ 16.87858, 43.38885 ], [ 16.47444, 43.49824 ], [ 16.40056, 43.54221 ], [ 16.3329, 43.53738 ], [ 16.29663, 43.49411 ], [ 16.21254, 43.50927 ], [ 16.05444, 43.48274 ], [ 16.01653, 43.50191 ], [ 15.93488, 43.56397 ], [ 15.9228, 43.65497 ], [ 15.83832, 43.6777 ], [ 15.78459, 43.74589 ], [ 15.62955, 43.78394 ], [ 15.62761, 43.83216 ], [ 15.55888, 43.87188 ], [ 15.36792, 43.95332 ], [ 15.19622, 44.18455 ], [ 15.2137, 44.25531 ], [ 15.38714, 44.27996 ], [ 15.28948, 44.36324 ], [ 15.10771, 44.49579 ], [ 15.02455, 44.50764 ], [ 15.03452, 44.54889 ], [ 14.92547, 44.68941 ], [ 14.89552, 44.7731 ], [ 14.91155, 44.948 ], [ 14.88128, 45.03115 ], [ 14.82124, 45.11445 ], [ 14.63374, 45.19975 ], [ 14.62138, 45.18272 ], [ 14.68201, 45.08535 ], [ 14.78353, 44.97028 ], [ 14.70468, 44.94979 ], [ 14.59526, 45.01907 ], [ 14.48151, 45.04086 ], [ 14.45311, 45.0859 ], [ 14.52973, 45.15049 ], [ 14.55558, 45.27171 ], [ 14.34831, 45.34722 ], [ 14.31262, 45.33098 ], [ 14.2264, 45.15378 ], [ 14.15948, 45.06303 ], [ 14.14788, 44.97758 ], [ 14.063, 44.95598 ], [ 13.96066, 44.82081 ], [ 13.86641, 44.8223 ], [ 13.77244, 44.96426 ], [ 13.63328, 45.0832 ], [ 13.51334, 45.48694 ], [ 13.61076, 45.46388 ], [ 13.6513, 45.45405 ], [ 13.77597, 45.46225 ], [ 13.86966, 45.42921 ], [ 13.97538, 45.45662 ], [ 14.00416, 45.51263 ], [ 14.11128, 45.48234 ], [ 14.1182, 45.48124 ], [ 14.31881, 45.47646 ], [ 14.47445, 45.53286 ], [ 14.57001, 45.67294 ], [ 14.70013, 45.53355 ], [ 14.81957, 45.46912 ], [ 14.89642, 45.48065 ], [ 14.93846, 45.5207 ], [ 15.15585, 45.42958 ], [ 15.22644, 45.42709 ] ] ], [ [ [ 17.60827, 42.74797 ], [ 17.62468, 42.71643 ], [ 17.5668, 42.7213 ], [ 17.33481, 42.77493 ], [ 17.32759, 42.78399 ], [ 17.35346, 42.80568 ], [ 17.40543, 42.78939 ], [ 17.60827, 42.74797 ] ] ], [ [ [ 16.69751, 43.19167 ], [ 16.69568, 43.16974 ], [ 17.07396, 43.13196 ], [ 17.0729, 43.11411 ], [ 16.68481, 43.12183 ], [ 16.51277, 43.15147 ], [ 16.42394, 43.16101 ], [ 16.41416, 43.1856 ], [ 16.45876, 43.20666 ], [ 16.52351, 43.20276 ], [ 16.56409, 43.18034 ], [ 16.60521, 43.2185 ], [ 16.65093, 43.2167 ], [ 16.69751, 43.19167 ] ] ], [ [ [ 16.94407, 42.76642 ], [ 16.90607, 42.72642 ], [ 16.82396, 42.73166 ], [ 16.78735, 42.7618 ], [ 16.8558, 42.77844 ], [ 16.94407, 42.76642 ] ] ], [ [ [ 16.81982, 43.26721 ], [ 16.64775, 43.25824 ], [ 16.48486, 43.29011 ], [ 16.43992, 43.31754 ], [ 16.44497, 43.38497 ], [ 16.75568, 43.36034 ], [ 16.8698, 43.3268 ], [ 16.88095, 43.29011 ], [ 16.81982, 43.26721 ] ] ], [ [ [ 16.27874, 43.41095 ], [ 16.31745, 43.38364 ], [ 16.33418, 43.39272 ], [ 16.38238, 43.3411 ], [ 16.35994, 43.33354 ], [ 16.2851, 43.36798 ], [ 16.19954, 43.38993 ], [ 16.18173, 43.40554 ], [ 16.20229, 43.41601 ], [ 16.27874, 43.41095 ] ] ], [ [ [ 16.33473, 42.37276 ], [ 16.27266, 42.36823 ], [ 16.25243, 42.38853 ], [ 16.32012, 42.40816 ], [ 16.33473, 42.37276 ] ] ], [ [ [ 16.25922, 43.03641 ], [ 16.22879, 43.01459 ], [ 16.1991, 43.02108 ], [ 16.0963, 43.00706 ], [ 16.06916, 43.05608 ], [ 16.08311, 43.06999 ], [ 16.18242, 43.08027 ], [ 16.23875, 43.07607 ], [ 16.25922, 43.03641 ] ] ], [ [ [ 16.18039, 43.46165 ], [ 16.17994, 43.42663 ], [ 16.11501, 43.42718 ], [ 16.1069, 43.44984 ], [ 16.18039, 43.46165 ] ] ], [ [ [ 16.02418, 42.94632 ], [ 15.98098, 42.94003 ], [ 16.00521, 43.00332 ], [ 16.03855, 42.97973 ], [ 16.02418, 42.94632 ] ] ], [ [ [ 15.77069, 43.69122 ], [ 15.75583, 43.66846 ], [ 15.69441, 43.6741 ], [ 15.69314, 43.64433 ], [ 15.65963, 43.62303 ], [ 15.62989, 43.65282 ], [ 15.66902, 43.67906 ], [ 15.67652, 43.71362 ], [ 15.77069, 43.69122 ] ] ], [ [ [ 15.49752, 43.73178 ], [ 15.46836, 43.70064 ], [ 15.42191, 43.72877 ], [ 15.44798, 43.7532 ], [ 15.49752, 43.73178 ] ] ], [ [ [ 15.34406, 43.88791 ], [ 15.33988, 43.84569 ], [ 15.3067, 43.84206 ], [ 15.33509, 43.79015 ], [ 15.28117, 43.79941 ], [ 15.22247, 43.86706 ], [ 15.2726, 43.881 ], [ 15.29207, 43.86925 ], [ 15.31505, 43.8952 ], [ 15.34406, 43.88791 ] ] ], [ [ [ 15.23547, 44.02924 ], [ 15.21999, 44.01964 ], [ 15.14362, 44.07487 ], [ 15.1148, 44.10618 ], [ 15.06341, 44.13347 ], [ 15.08, 44.1474 ], [ 15.15056, 44.10587 ], [ 15.21255, 44.0794 ], [ 15.23547, 44.02924 ] ] ], [ [ [ 15.22293, 43.87903 ], [ 15.18601, 43.8741 ], [ 15.12148, 43.91449 ], [ 15.05552, 43.99096 ], [ 15.06901, 43.99977 ], [ 15.21138, 43.91892 ], [ 15.22293, 43.87903 ] ] ], [ [ [ 14.89667, 44.52803 ], [ 14.79035, 44.61769 ], [ 14.7826, 44.65322 ], [ 14.93976, 44.58241 ], [ 14.97116, 44.5433 ], [ 14.91549, 44.53843 ], [ 15.1146, 44.43184 ], [ 15.19512, 44.34036 ], [ 15.11726, 44.33273 ], [ 14.89667, 44.52803 ] ] ], [ [ [ 15.114, 44.07 ], [ 15.10668, 44.02916 ], [ 15.04196, 44.08189 ], [ 15.06548, 44.09197 ], [ 15.114, 44.07 ] ] ], [ [ [ 15.08994, 44.30209 ], [ 15.06672, 44.28172 ], [ 15.02626, 44.2987 ], [ 15.01162, 44.32568 ], [ 15.07275, 44.32066 ], [ 15.08994, 44.30209 ] ] ], [ [ [ 15.0569, 44.01244 ], [ 15.03801, 43.99698 ], [ 14.95816, 44.08338 ], [ 14.99194, 44.09597 ], [ 15.0569, 44.01244 ] ] ], [ [ [ 15.0391, 44.13021 ], [ 15.02232, 44.12277 ], [ 14.98067, 44.15497 ], [ 15.04319, 44.18298 ], [ 15.0391, 44.13021 ] ] ], [ [ [ 14.92191, 44.20876 ], [ 14.90101, 44.18955 ], [ 14.84423, 44.22957 ], [ 14.88435, 44.24595 ], [ 14.92191, 44.20876 ] ] ], [ [ [ 14.74349, 44.81499 ], [ 14.83245, 44.75277 ], [ 14.86806, 44.70591 ], [ 14.83908, 44.70152 ], [ 14.78865, 44.74387 ], [ 14.74234, 44.76596 ], [ 14.70031, 44.75709 ], [ 14.65566, 44.78907 ], [ 14.68338, 44.79667 ], [ 14.70487, 44.83759 ], [ 14.74598, 44.85232 ], [ 14.74753, 44.88657 ], [ 14.7739, 44.86757 ], [ 14.74349, 44.81499 ] ] ], [ [ [ 14.83988, 44.9063 ], [ 14.81984, 44.88417 ], [ 14.75185, 44.9251 ], [ 14.75534, 44.94378 ], [ 14.83988, 44.9063 ] ] ], [ [ [ 14.83412, 44.23855 ], [ 14.80197, 44.22058 ], [ 14.76841, 44.27359 ], [ 14.79949, 44.28332 ], [ 14.83412, 44.23855 ] ] ], [ [ [ 14.82254, 44.35136 ], [ 14.79529, 44.33959 ], [ 14.76117, 44.36713 ], [ 14.76113, 44.41714 ], [ 14.80993, 44.40071 ], [ 14.79637, 44.38264 ], [ 14.82254, 44.35136 ] ] ], [ [ [ 14.72173, 44.39981 ], [ 14.69757, 44.37193 ], [ 14.64302, 44.40218 ], [ 14.66962, 44.42404 ], [ 14.72173, 44.39981 ] ] ], [ [ [ 14.575, 44.45221 ], [ 14.53162, 44.43331 ], [ 14.51867, 44.47506 ], [ 14.4562, 44.52688 ], [ 14.46312, 44.5447 ], [ 14.5121, 44.52155 ], [ 14.54196, 44.47584 ], [ 14.575, 44.45221 ] ] ], [ [ [ 14.5738, 44.94742 ], [ 14.54323, 44.94162 ], [ 14.49126, 44.98056 ], [ 14.51506, 45.00181 ], [ 14.5738, 44.94742 ] ] ], [ [ [ 14.47301, 44.9626 ], [ 14.45186, 44.86142 ], [ 14.50671, 44.66715 ], [ 14.53103, 44.62791 ], [ 14.49472, 44.61073 ], [ 14.41986, 44.66715 ], [ 14.39817, 44.66715 ], [ 14.3972, 44.62991 ], [ 14.38833, 44.62001 ], [ 14.35532, 44.64717 ], [ 14.34494, 44.66715 ], [ 14.39141, 44.72955 ], [ 14.31881, 44.88853 ], [ 14.30207, 44.91432 ], [ 14.30538, 44.93634 ], [ 14.31881, 44.9453 ], [ 14.36332, 44.90964 ], [ 14.39317, 44.91839 ], [ 14.35022, 45.04065 ], [ 14.31881, 45.06354 ], [ 14.27959, 45.10529 ], [ 14.27638, 45.11999 ], [ 14.29675, 45.14442 ], [ 14.30427, 45.16392 ], [ 14.31881, 45.17359 ], [ 14.35458, 45.15487 ], [ 14.40164, 45.01343 ], [ 14.47301, 44.9626 ] ] ], [ [ [ 14.42944, 44.56965 ], [ 14.36639, 44.56089 ], [ 14.39015, 44.61529 ], [ 14.40821, 44.615 ], [ 14.42944, 44.56965 ] ] ], [ [ [ 14.28835, 44.66718 ], [ 14.25582, 44.64679 ], [ 14.25176, 44.66718 ], [ 14.27647, 44.68708 ], [ 14.28835, 44.66718 ] ] ], [ [ [ 14.2701, 44.6314 ], [ 14.2567, 44.61289 ], [ 14.23774, 44.62999 ], [ 14.25687, 44.64407 ], [ 14.2701, 44.6314 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR02", "NUTS_ID": "HR02", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Panonska Hrvatska", "geo": "HR02", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.37695, 45.93786 ], [ 17.5789, 45.92833 ], [ 17.6515, 45.84784 ], [ 17.86848, 45.77672 ], [ 17.91209, 45.79078 ], [ 18.42819, 45.74082 ], [ 18.56828, 45.80272 ], [ 18.66868, 45.912 ], [ 18.78288, 45.88688 ], [ 18.82131, 45.91438 ], [ 18.88973, 45.92118 ], [ 18.86514, 45.82957 ], [ 18.90628, 45.76581 ], [ 18.96449, 45.73714 ], [ 18.91448, 45.71319 ], [ 18.94506, 45.66621 ], [ 18.9164, 45.57808 ], [ 19.0482, 45.5238 ], [ 19.03394, 45.48682 ], [ 19.00125, 45.47487 ], [ 19.00526, 45.43463 ], [ 18.99214, 45.36642 ], [ 19.16029, 45.27656 ], [ 19.41803, 45.22669 ], [ 19.42517, 45.16769 ], [ 19.30091, 45.20324 ], [ 19.26245, 45.17588 ], [ 19.19709, 45.19117 ], [ 19.15032, 45.14022 ], [ 19.08963, 45.13553 ], [ 19.09199, 44.98629 ], [ 19.14483, 44.95715 ], [ 19.0693, 44.91123 ], [ 19.00527, 44.90905 ], [ 19.02207, 44.85535 ], [ 18.839, 44.86245 ], [ 18.77001, 44.91099 ], [ 18.78722, 44.9835 ], [ 18.67365, 45.07993 ], [ 18.52967, 45.08751 ], [ 18.49119, 45.06336 ], [ 18.41585, 45.10475 ], [ 18.25398, 45.13335 ], [ 18.19664, 45.08409 ], [ 18.13939, 45.08051 ], [ 18.01095, 45.14171 ], [ 17.85055, 45.04869 ], [ 17.67506, 45.12592 ], [ 17.52399, 45.11275 ], [ 17.28281, 45.1806 ], [ 17.22709, 45.14783 ], [ 17.14119, 45.16329 ], [ 16.95196, 45.23365 ], [ 16.92854, 45.26666 ], [ 16.81532, 45.19044 ], [ 16.53908, 45.22569 ], [ 16.40035, 45.10791 ], [ 16.34906, 45.0113 ], [ 16.30362, 44.99975 ], [ 16.1142, 45.09476 ], [ 15.99723, 45.21769 ], [ 15.84002, 45.22447 ], [ 15.77962, 45.17204 ], [ 15.77449, 44.9886 ], [ 15.73672, 44.93563 ], [ 15.4559, 44.93293 ], [ 15.19949, 45.10201 ], [ 15.11879, 45.09018 ], [ 15.01663, 45.12303 ], [ 14.98344, 45.16016 ], [ 14.98075, 45.29565 ], [ 15.0165, 45.31464 ], [ 15.1069, 45.28946 ], [ 15.1904, 45.35367 ], [ 15.22644, 45.42709 ], [ 15.34681, 45.48382 ], [ 15.29757, 45.59823 ], [ 15.38236, 45.66109 ], [ 15.29531, 45.72349 ], [ 15.33129, 45.76285 ], [ 15.53395, 45.60383 ], [ 15.69005, 45.59823 ], [ 15.77072, 45.54074 ], [ 15.88087, 45.53555 ], [ 15.92211, 45.47859 ], [ 16.0553, 45.47837 ], [ 16.09773, 45.51715 ], [ 16.0772, 45.56809 ], [ 16.14833, 45.63186 ], [ 16.24253, 45.60394 ], [ 16.35306, 45.6344 ], [ 16.47842, 45.58029 ], [ 16.60992, 45.67036 ], [ 16.5155, 45.72787 ], [ 16.51489, 45.77294 ], [ 16.69739, 45.84739 ], [ 16.7022, 45.92312 ], [ 16.73028, 46.03615 ], [ 16.85212, 46.08121 ], [ 16.99701, 45.93796 ], [ 17.12205, 45.88336 ], [ 17.20205, 45.97788 ], [ 17.29433, 45.98854 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU11", "NUTS_ID": "HU11", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Budapest", "geo": "HU11", "time_2018_MEAN": 78.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.93823, 47.56577 ], [ 19.09266, 47.61025 ], [ 19.31675, 47.50481 ], [ 19.32037, 47.4609 ], [ 19.14043, 47.34953 ], [ 19.08159, 47.39636 ], [ 18.96218, 47.38503 ], [ 18.975, 47.45537 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU12", "NUTS_ID": "HU12", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Pest", "geo": "HU12", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.57094, 47.7349 ], [ 19.66633, 47.58855 ], [ 19.67324, 47.53639 ], [ 19.75286, 47.53084 ], [ 19.76516, 47.48115 ], [ 19.97873, 47.3546 ], [ 20.00781, 47.30601 ], [ 19.9997, 47.25475 ], [ 20.08833, 47.19597 ], [ 20.05534, 47.12097 ], [ 20.09469, 47.00741 ], [ 20.03034, 47.00697 ], [ 19.96938, 46.9681 ], [ 19.8825, 46.98967 ], [ 19.78868, 46.95067 ], [ 19.66755, 47.01221 ], [ 19.58603, 47.11232 ], [ 19.51192, 47.11129 ], [ 19.47149, 47.06311 ], [ 19.32622, 47.02029 ], [ 19.30534, 47.03773 ], [ 19.33568, 47.09746 ], [ 19.25999, 47.12682 ], [ 19.07146, 47.04323 ], [ 18.98946, 47.05346 ], [ 18.96591, 47.02896 ], [ 18.87798, 47.13675 ], [ 18.91036, 47.26816 ], [ 18.81081, 47.3546 ], [ 18.76876, 47.39845 ], [ 18.77724, 47.45992 ], [ 18.71081, 47.51474 ], [ 18.68843, 47.57707 ], [ 18.79001, 47.66398 ], [ 18.85494, 47.65858 ], [ 18.86426, 47.7099 ], [ 18.93124, 47.73014 ], [ 18.90365, 47.79109 ], [ 18.84848, 47.81823 ], [ 18.76781, 47.88009 ], [ 18.76686, 47.97332 ], [ 18.83747, 48.04569 ], [ 18.92839, 48.05683 ], [ 18.99761, 48.00841 ], [ 18.95629, 47.93733 ], [ 19.07866, 47.84925 ], [ 19.42045, 47.81351 ], [ 19.47273, 47.69946 ], [ 19.57094, 47.7349 ] ], [ [ 18.93823, 47.56577 ], [ 18.975, 47.45537 ], [ 18.96218, 47.38503 ], [ 19.08159, 47.39636 ], [ 19.14043, 47.34953 ], [ 19.32037, 47.4609 ], [ 19.31675, 47.50481 ], [ 19.09266, 47.61025 ], [ 18.93823, 47.56577 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU21", "NUTS_ID": "HU21", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Közép-Dunántúl", "geo": "HU21", "time_2018_MEAN": 75.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.68843, 47.57707 ], [ 18.71081, 47.51474 ], [ 18.77724, 47.45992 ], [ 18.76876, 47.39845 ], [ 18.81081, 47.3546 ], [ 18.91036, 47.26816 ], [ 18.87798, 47.13675 ], [ 18.96591, 47.02896 ], [ 18.96028, 46.92108 ], [ 18.9251, 46.85717 ], [ 18.87451, 46.84797 ], [ 18.65522, 46.69256 ], [ 18.55366, 46.77608 ], [ 18.47182, 46.74247 ], [ 18.30005, 46.80741 ], [ 18.2109, 46.77816 ], [ 18.18353, 46.94229 ], [ 18.20525, 46.97163 ], [ 18.09597, 46.97774 ], [ 17.65559, 46.80878 ], [ 17.41907, 46.75066 ], [ 17.33914, 46.82107 ], [ 17.31298, 46.89634 ], [ 17.24044, 46.92611 ], [ 17.22305, 46.98911 ], [ 17.07453, 47.04871 ], [ 17.20796, 47.08727 ], [ 17.20346, 47.27138 ], [ 17.28188, 47.32998 ], [ 17.23134, 47.3546 ], [ 17.17239, 47.43248 ], [ 17.31279, 47.43756 ], [ 17.39206, 47.47147 ], [ 17.47174, 47.43585 ], [ 17.71932, 47.46176 ], [ 17.76915, 47.41147 ], [ 17.73047, 47.34183 ], [ 17.76822, 47.29937 ], [ 17.88389, 47.38959 ], [ 17.92502, 47.60329 ], [ 17.89361, 47.64862 ], [ 17.89392, 47.73946 ], [ 18.63892, 47.76006 ], [ 18.75971, 47.8133 ], [ 18.84848, 47.81823 ], [ 18.90365, 47.79109 ], [ 18.93124, 47.73014 ], [ 18.86426, 47.7099 ], [ 18.85494, 47.65858 ], [ 18.79001, 47.66398 ], [ 18.68843, 47.57707 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HU22", "NUTS_ID": "HU22", "LEVL_CODE": 2, "CNTR_CODE": "HU", "NUTS_NAME": "Nyugat-Dunántúl", "geo": "HU22", "time_2018_MEAN": 76.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.89392, 47.73946 ], [ 17.89361, 47.64862 ], [ 17.92502, 47.60329 ], [ 17.88389, 47.38959 ], [ 17.76822, 47.29937 ], [ 17.73047, 47.34183 ], [ 17.76915, 47.41147 ], [ 17.71932, 47.46176 ], [ 17.47174, 47.43585 ], [ 17.39206, 47.47147 ], [ 17.31279, 47.43756 ], [ 17.17239, 47.43248 ], [ 17.23134, 47.3546 ], [ 17.28188, 47.32998 ], [ 17.20346, 47.27138 ], [ 17.20796, 47.08727 ], [ 17.07453, 47.04871 ], [ 17.22305, 46.98911 ], [ 17.24044, 46.92611 ], [ 17.31298, 46.89634 ], [ 17.33914, 46.82107 ], [ 17.41907, 46.75066 ], [ 17.28091, 46.72908 ], [ 17.22678, 46.66692 ], [ 17.22152, 46.51749 ], [ 17.18016, 46.43438 ], [ 17.0481, 46.40671 ], [ 17.0512, 46.34489 ], [ 17.01702, 46.31294 ], [ 16.87604, 46.3206 ], [ 16.85476, 46.35044 ], [ 16.59681, 46.4759 ], [ 16.40275, 46.63425 ], [ 16.42018, 46.68464 ], [ 16.37079, 46.72224 ], [ 16.31996, 46.76682 ], [ 16.34147, 46.82673 ], [ 16.3171, 46.85753 ], [ 16.11385, 46.86907 ], [ 16.29523, 46.99785 ], [ 16.47233, 47.00175 ], [ 16.49826, 47.06032 ], [ 16.47441, 47.09291 ], [ 16.51936, 47.13372 ], [ 16.43588, 47.1939 ], [ 16.48128, 47.28522 ], [ 16.43376, 47.35292 ], [ 16.47151, 47.40072 ], [ 16.64622, 47.4466 ], [ 16.70245, 47.53945 ], [ 16.65454, 47.61125 ], [ 16.42154, 47.6653 ], [ 16.60462, 47.7561 ], [ 16.7103, 47.73341 ], [ 16.76995, 47.68283 ], [ 16.86123, 47.70983 ], [ 16.90584, 47.68908 ], [ 17.05736, 47.70774 ], [ 17.06316, 47.8113 ], [ 17.03372, 47.86002 ], [ 17.09478, 47.90293 ], [ 17.10875, 47.97548 ], [ 17.1608, 48.00666 ], [ 17.24743, 48.01201 ], [ 17.34743, 47.98223 ], [ 17.4596, 47.88862 ], [ 17.70544, 47.75899 ], [ 17.89392, 47.73946 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT16", "NUTS_ID": "PT16", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Centro (PT)", "geo": "PT16", "time_2018_MEAN": 81.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9299, 41.02947 ], [ -6.80821, 40.85961 ], [ -6.82593, 40.74961 ], [ -6.80073, 40.66184 ], [ -6.83767, 40.58011 ], [ -6.80122, 40.51946 ], [ -6.84287, 40.4428 ], [ -6.78906, 40.35151 ], [ -6.86514, 40.27069 ], [ -6.9513, 40.25745 ], [ -7.01399, 40.21306 ], [ -7.01875, 40.15868 ], [ -6.87336, 40.00757 ], [ -6.9105, 39.87328 ], [ -6.97474, 39.81308 ], [ -7.01762, 39.67892 ], [ -7.34395, 39.64354 ], [ -7.54293, 39.66281 ], [ -7.69177, 39.63719 ], [ -7.8251, 39.53736 ], [ -7.85537, 39.51882 ], [ -7.95961, 39.55159 ], [ -8.00156, 39.47241 ], [ -7.95409, 39.39988 ], [ -8.1726, 39.23331 ], [ -8.25532, 39.28942 ], [ -8.34647, 39.45734 ], [ -8.46739, 39.4426 ], [ -8.54314, 39.40168 ], [ -8.62803, 39.42361 ], [ -8.69794, 39.40586 ], [ -8.75209, 39.4129 ], [ -8.73207, 39.44921 ], [ -8.75938, 39.47574 ], [ -8.90342, 39.46601 ], [ -8.9947, 39.34672 ], [ -8.99264, 39.19 ], [ -8.93111, 39.11976 ], [ -8.95296, 39.04926 ], [ -8.93028, 39.01802 ], [ -9.0227, 39.00781 ], [ -9.03646, 38.96592 ], [ -9.10735, 38.92898 ], [ -9.19571, 38.96473 ], [ -9.22223, 39.00935 ], [ -9.41645, 39.0547 ], [ -9.34139, 39.22971 ], [ -9.35405, 39.35671 ], [ -9.09695, 39.56823 ], [ -9.04026, 39.74142 ], [ -8.89493, 40.0455 ], [ -8.86952, 40.12962 ], [ -8.90009, 40.20246 ], [ -8.78403, 40.52036 ], [ -8.73616, 40.62081 ], [ -8.72693, 40.72652 ], [ -8.68681, 40.75028 ], [ -8.69991, 40.79841 ], [ -8.65312, 40.96478 ], [ -8.60782, 40.96091 ], [ -8.5439, 40.87327 ], [ -8.52298, 40.7736 ], [ -8.38288, 40.79017 ], [ -8.27337, 40.76317 ], [ -8.23969, 40.85679 ], [ -8.1163, 40.86238 ], [ -8.12684, 40.94357 ], [ -8.08917, 40.98756 ], [ -7.99414, 40.96985 ], [ -7.91568, 41.01997 ], [ -7.83321, 40.9673 ], [ -7.77562, 40.97525 ], [ -7.70274, 40.93415 ], [ -7.69199, 40.86468 ], [ -7.59287, 40.84088 ], [ -7.52542, 40.86819 ], [ -7.4542, 40.81261 ], [ -7.41411, 40.91141 ], [ -7.33698, 40.94327 ], [ -7.36327, 41.01078 ], [ -7.19394, 41.02846 ], [ -7.17402, 40.93994 ], [ -7.14894, 40.92928 ], [ -6.9299, 41.02947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT17", "NUTS_ID": "PT17", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Área Metropolitana de Lisboa", "geo": "PT17", "time_2018_MEAN": 81.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.93028, 39.01802 ], [ -8.87298, 39.02444 ], [ -8.85195, 39.0014 ], [ -8.96847, 38.82776 ], [ -8.92488, 38.75867 ], [ -8.76975, 38.74214 ], [ -8.69223, 38.83096 ], [ -8.61453, 38.81957 ], [ -8.59996, 38.78306 ], [ -8.5468, 38.76344 ], [ -8.50471, 38.72513 ], [ -8.64472, 38.61323 ], [ -8.63911, 38.54949 ], [ -8.73506, 38.51567 ], [ -8.77756, 38.53401 ], [ -8.80733, 38.49186 ], [ -8.89372, 38.51227 ], [ -9.04665, 38.44295 ], [ -9.21138, 38.42156 ], [ -9.18731, 38.53029 ], [ -9.24683, 38.65515 ], [ -9.23456, 38.68928 ], [ -9.33144, 38.6818 ], [ -9.47731, 38.71591 ], [ -9.491, 38.78824 ], [ -9.42352, 38.93819 ], [ -9.41645, 39.0547 ], [ -9.22223, 39.00935 ], [ -9.19571, 38.96473 ], [ -9.10735, 38.92898 ], [ -9.03646, 38.96592 ], [ -9.0227, 39.00781 ], [ -8.93028, 39.01802 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF2", "NUTS_ID": "FRF2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Champagne-Ardenne", "geo": "FRF2", "time_2018_MEAN": 81.533333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.96943, 49.80183 ], [ 5.15374, 49.71793 ], [ 5.29062, 49.67985 ], [ 5.31995, 49.62128 ], [ 5.39351, 49.61711 ], [ 5.27358, 49.54979 ], [ 5.11866, 49.58411 ], [ 5.07113, 49.50252 ], [ 5.11002, 49.44244 ], [ 5.09171, 49.38941 ], [ 5.03348, 49.33736 ], [ 5.04041, 49.28685 ], [ 4.95099, 49.23687 ], [ 4.98074, 49.21171 ], [ 4.95057, 49.1754 ], [ 5.03135, 48.97843 ], [ 4.92475, 48.90628 ], [ 4.89674, 48.8108 ], [ 4.99811, 48.73904 ], [ 5.001, 48.70581 ], [ 4.98843, 48.68442 ], [ 5.00607, 48.62255 ], [ 5.05624, 48.62036 ], [ 5.47006, 48.42093 ], [ 5.42754, 48.3913 ], [ 5.43078, 48.34233 ], [ 5.51657, 48.34595 ], [ 5.71696, 48.2017 ], [ 5.64388, 48.08124 ], [ 5.74764, 48.03962 ], [ 5.7956, 47.96176 ], [ 5.88472, 47.92605 ], [ 5.81815, 47.85785 ], [ 5.69698, 47.81115 ], [ 5.67938, 47.68806 ], [ 5.42135, 47.6714 ], [ 5.37408, 47.60454 ], [ 5.25943, 47.58565 ], [ 5.16486, 47.66418 ], [ 5.09744, 47.65702 ], [ 4.97136, 47.69916 ], [ 4.93165, 47.77589 ], [ 4.97858, 47.81118 ], [ 4.94517, 47.87502 ], [ 4.89769, 47.9156 ], [ 4.84512, 47.90769 ], [ 4.85342, 47.94698 ], [ 4.79993, 47.96691 ], [ 4.79193, 47.99973 ], [ 4.70423, 48.02023 ], [ 4.59015, 48.02741 ], [ 4.54335, 47.97285 ], [ 4.32622, 47.95777 ], [ 4.29342, 47.92567 ], [ 4.21061, 47.96106 ], [ 4.10521, 47.92941 ], [ 3.91484, 47.94217 ], [ 3.7859, 48.11696 ], [ 3.73711, 48.15873 ], [ 3.67332, 48.14715 ], [ 3.59005, 48.19043 ], [ 3.6066, 48.27098 ], [ 3.49994, 48.36246 ], [ 3.41479, 48.39027 ], [ 3.39632, 48.47628 ], [ 3.48699, 48.58816 ], [ 3.55561, 48.62029 ], [ 3.45434, 48.64468 ], [ 3.46575, 48.7255 ], [ 3.40762, 48.76344 ], [ 3.48518, 48.85191 ], [ 3.66573, 49.0175 ], [ 3.59293, 49.04533 ], [ 3.62285, 49.07843 ], [ 3.62185, 49.13807 ], [ 3.73586, 49.15882 ], [ 3.66722, 49.22131 ], [ 3.66066, 49.31692 ], [ 3.83956, 49.35982 ], [ 3.86945, 49.39618 ], [ 4.02609, 49.36658 ], [ 4.04797, 49.40564 ], [ 4.06179, 49.52652 ], [ 4.03716, 49.62481 ], [ 4.10521, 49.63287 ], [ 4.23797, 49.75372 ], [ 4.23313, 49.95783 ], [ 4.43249, 49.94162 ], [ 4.67766, 49.99628 ], [ 4.69521, 50.04735 ], [ 4.69739, 50.08504 ], [ 4.7967, 50.14868 ], [ 4.86907, 50.14438 ], [ 4.83577, 50.04735 ], [ 4.8017, 49.96533 ], [ 4.8786, 49.91255 ], [ 4.86443, 49.81149 ], [ 4.96943, 49.80183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRF3", "NUTS_ID": "FRF3", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Lorraine", "geo": "FRF3", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.39351, 49.61711 ], [ 5.47088, 49.49724 ], [ 5.73456, 49.54569 ], [ 5.81812, 49.54631 ], [ 5.89339, 49.49694 ], [ 5.99994, 49.45622 ], [ 6.10166, 49.46035 ], [ 6.21562, 49.50761 ], [ 6.36711, 49.46951 ], [ 6.44957, 49.46867 ], [ 6.55699, 49.41921 ], [ 6.58559, 49.33145 ], [ 6.72347, 49.21883 ], [ 6.73284, 49.17312 ], [ 6.81678, 49.15735 ], [ 6.85871, 49.21081 ], [ 7.02392, 49.18987 ], [ 7.05166, 49.12596 ], [ 7.10107, 49.156 ], [ 7.19244, 49.1181 ], [ 7.29489, 49.12114 ], [ 7.36876, 49.16146 ], [ 7.48078, 49.16346 ], [ 7.52949, 49.09985 ], [ 7.63565, 49.05395 ], [ 7.53871, 48.94056 ], [ 7.45635, 48.96205 ], [ 7.32824, 48.94941 ], [ 7.13627, 49.00973 ], [ 7.09496, 49.05866 ], [ 7.02392, 48.95651 ], [ 6.98416, 48.94825 ], [ 6.96015, 48.9071 ], [ 7.02392, 48.88086 ], [ 7.07622, 48.79827 ], [ 7.16223, 48.83928 ], [ 7.26262, 48.81379 ], [ 7.30164, 48.76195 ], [ 7.26551, 48.70581 ], [ 7.28116, 48.64138 ], [ 7.23432, 48.56836 ], [ 7.16799, 48.53163 ], [ 7.07936, 48.53642 ], [ 7.08784, 48.51004 ], [ 7.11142, 48.4761 ], [ 7.08854, 48.35262 ], [ 7.19829, 48.31047 ], [ 6.94511, 47.98472 ], [ 6.89066, 47.84812 ], [ 6.84618, 47.82294 ], [ 6.82353, 47.81305 ], [ 6.60588, 47.93646 ], [ 6.48438, 47.89198 ], [ 6.38116, 47.95706 ], [ 6.19397, 47.94601 ], [ 6.12791, 48.01872 ], [ 5.99648, 47.96195 ], [ 5.93115, 47.96489 ], [ 5.88472, 47.92605 ], [ 5.7956, 47.96176 ], [ 5.74764, 48.03962 ], [ 5.64388, 48.08124 ], [ 5.71696, 48.2017 ], [ 5.51657, 48.34595 ], [ 5.43078, 48.34233 ], [ 5.42754, 48.3913 ], [ 5.47006, 48.42093 ], [ 5.05624, 48.62036 ], [ 5.00607, 48.62255 ], [ 4.98843, 48.68442 ], [ 5.001, 48.70581 ], [ 4.99811, 48.73904 ], [ 4.89674, 48.8108 ], [ 4.92475, 48.90628 ], [ 5.03135, 48.97843 ], [ 4.95057, 49.1754 ], [ 4.98074, 49.21171 ], [ 4.95099, 49.23687 ], [ 5.04041, 49.28685 ], [ 5.03348, 49.33736 ], [ 5.09171, 49.38941 ], [ 5.11002, 49.44244 ], [ 5.07113, 49.50252 ], [ 5.11866, 49.58411 ], [ 5.27358, 49.54979 ], [ 5.39351, 49.61711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRG0", "NUTS_ID": "FRG0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Pays de la Loire", "geo": "FRG0", "time_2018_MEAN": 83.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.05453, 48.382 ], [ 0.05118, 48.38687 ], [ 0.09692, 48.41018 ], [ 0.21623, 48.47098 ], [ 0.2974, 48.47777 ], [ 0.35844, 48.44794 ], [ 0.40997, 48.3197 ], [ 0.48069, 48.30388 ], [ 0.54205, 48.25188 ], [ 0.66593, 48.25695 ], [ 0.74284, 48.19039 ], [ 0.79766, 48.19445 ], [ 0.90029, 48.1439 ], [ 0.84276, 48.10334 ], [ 0.80394, 48.05195 ], [ 0.83145, 48.02408 ], [ 0.83662, 47.94587 ], [ 0.76872, 47.89319 ], [ 0.72413, 47.80182 ], [ 0.59859, 47.72671 ], [ 0.61443, 47.69422 ], [ 0.38107, 47.63281 ], [ 0.38092, 47.57478 ], [ 0.23, 47.6084 ], [ 0.21746, 47.50526 ], [ 0.14572, 47.3546 ], [ 0.09692, 47.29615 ], [ 0.08254, 47.27894 ], [ 0.05383, 47.16373 ], [ 0.00681, 47.16254 ], [ -0.10212, 47.0648 ], [ -0.24268, 47.10196 ], [ -0.50743, 47.07672 ], [ -0.61171, 46.99846 ], [ -0.89196, 46.97582 ], [ -0.82203, 46.91828 ], [ -0.81215, 46.86906 ], [ -0.71962, 46.81777 ], [ -0.71703, 46.76351 ], [ -0.61171, 46.59797 ], [ -0.62916, 46.41882 ], [ -0.54971, 46.38451 ], [ -0.64255, 46.32662 ], [ -0.75047, 46.30425 ], [ -0.82072, 46.33338 ], [ -0.94022, 46.31723 ], [ -0.96588, 46.35517 ], [ -1.07529, 46.31999 ], [ -1.18071, 46.31915 ], [ -1.22012, 46.27712 ], [ -1.67314, 46.439 ], [ -1.80475, 46.49492 ], [ -1.83124, 46.55182 ], [ -1.84651, 46.58461 ], [ -1.95067, 46.69688 ], [ -2.03377, 46.75729 ], [ -2.14404, 46.83744 ], [ -2.14598, 46.88323 ], [ -2.03377, 46.98186 ], [ -1.98046, 47.02872 ], [ -2.03377, 47.07204 ], [ -2.0543, 47.08872 ], [ -2.20169, 47.1387 ], [ -2.17607, 47.26388 ], [ -2.28534, 47.24335 ], [ -2.45875, 47.2777 ], [ -2.51982, 47.37639 ], [ -2.45848, 47.448 ], [ -2.33126, 47.46276 ], [ -2.28263, 47.51145 ], [ -2.16096, 47.50534 ], [ -2.1024, 47.54458 ], [ -2.09703, 47.63136 ], [ -2.03377, 47.66206 ], [ -1.98639, 47.68505 ], [ -1.83124, 47.69855 ], [ -1.67314, 47.71231 ], [ -1.46272, 47.82869 ], [ -1.24588, 47.77672 ], [ -1.23825, 47.80999 ], [ -1.14303, 47.96837 ], [ -1.02915, 48.00495 ], [ -1.09513, 48.25826 ], [ -1.05366, 48.33295 ], [ -1.07016, 48.50849 ], [ -0.86036, 48.50146 ], [ -0.74786, 48.44295 ], [ -0.48635, 48.51051 ], [ -0.36101, 48.50062 ], [ -0.21609, 48.56271 ], [ -0.16983, 48.53453 ], [ -0.14059, 48.45985 ], [ -0.05691, 48.4411 ], [ -0.05453, 48.382 ] ] ], [ [ [ -2.14121, 46.94089 ], [ -2.16062, 46.89586 ], [ -2.20374, 46.95823 ], [ -2.19409, 46.96966 ], [ -2.14121, 46.94089 ] ] ], [ [ [ -2.21886, 46.99131 ], [ -2.26212, 46.95892 ], [ -2.3026, 46.98952 ], [ -2.30556, 47.02497 ], [ -2.25223, 47.02809 ], [ -2.21886, 46.99131 ] ] ], [ [ [ -2.29963, 46.69733 ], [ -2.33049, 46.68303 ], [ -2.40487, 46.72517 ], [ -2.38308, 46.73521 ], [ -2.3152, 46.72005 ], [ -2.29963, 46.69733 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRH0", "NUTS_ID": "FRH0", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Bretagne", "geo": "FRH0", "time_2018_MEAN": 82.166666666666671 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.12383, 48.60483 ], [ -1.89727, 48.69445 ], [ -1.85771, 48.6842 ], [ -1.83124, 48.61543 ], [ -1.67314, 48.61091 ], [ -1.5711, 48.6265 ], [ -1.50122, 48.50633 ], [ -1.41171, 48.4616 ], [ -1.24302, 48.5358 ], [ -1.07016, 48.50849 ], [ -1.05366, 48.33295 ], [ -1.09513, 48.25826 ], [ -1.02915, 48.00495 ], [ -1.14303, 47.96837 ], [ -1.23825, 47.80999 ], [ -1.24588, 47.77672 ], [ -1.46272, 47.82869 ], [ -1.67314, 47.71231 ], [ -1.83124, 47.69855 ], [ -1.98639, 47.68505 ], [ -2.03377, 47.66206 ], [ -2.09703, 47.63136 ], [ -2.1024, 47.54458 ], [ -2.16096, 47.50534 ], [ -2.28263, 47.51145 ], [ -2.33126, 47.46276 ], [ -2.45848, 47.448 ], [ -2.48348, 47.5047 ], [ -2.59746, 47.53799 ], [ -2.79768, 47.49344 ], [ -2.9278, 47.57853 ], [ -3.12585, 47.57671 ], [ -3.16975, 47.60369 ], [ -3.33811, 47.70717 ], [ -3.48113, 47.72195 ], [ -3.52172, 47.76982 ], [ -3.52717, 47.84307 ], [ -3.61637, 47.77847 ], [ -3.81205, 47.79923 ], [ -3.9796, 47.87229 ], [ -4.23067, 47.80634 ], [ -4.32985, 47.81251 ], [ -4.43581, 47.95124 ], [ -4.57813, 48.0366 ], [ -4.32128, 48.15427 ], [ -4.3763, 48.20147 ], [ -4.54001, 48.2247 ], [ -4.5767, 48.27016 ], [ -4.53996, 48.29611 ], [ -4.34424, 48.28708 ], [ -4.32301, 48.31271 ], [ -4.46885, 48.36639 ], [ -4.7115, 48.35065 ], [ -4.76255, 48.41301 ], [ -4.70926, 48.54499 ], [ -4.39403, 48.6549 ], [ -4.02644, 48.70385 ], [ -3.90723, 48.67028 ], [ -3.77998, 48.69163 ], [ -3.65915, 48.65942 ], [ -3.55066, 48.73273 ], [ -3.57304, 48.78603 ], [ -3.55438, 48.80189 ], [ -3.16975, 48.8549 ], [ -3.12404, 48.8612 ], [ -2.92843, 48.73939 ], [ -2.80711, 48.59756 ], [ -2.69139, 48.51638 ], [ -2.46521, 48.63602 ], [ -2.35001, 48.66631 ], [ -2.20189, 48.59299 ], [ -2.12383, 48.60483 ] ] ], [ [ [ -3.05967, 47.30756 ], [ -3.09394, 47.28188 ], [ -3.16975, 47.29754 ], [ -3.23494, 47.31213 ], [ -3.25148, 47.35046 ], [ -3.2345, 47.37416 ], [ -3.16975, 47.35261 ], [ -3.05967, 47.30756 ] ] ], [ [ [ -3.10561, 47.48223 ], [ -3.13114, 47.46717 ], [ -3.16646, 47.5339 ], [ -3.13911, 47.54023 ], [ -3.10561, 47.48223 ] ] ], [ [ [ -3.42903, 47.63703 ], [ -3.47569, 47.6141 ], [ -3.51289, 47.64425 ], [ -3.47569, 47.66222 ], [ -3.42903, 47.63703 ] ] ], [ [ [ -5.05575, 48.45516 ], [ -5.11229, 48.43547 ], [ -5.12395, 48.4545 ], [ -5.10448, 48.48091 ], [ -5.05046, 48.4751 ], [ -5.05575, 48.45516 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI1", "NUTS_ID": "FRI1", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Aquitaine", "geo": "FRI1", "time_2018_MEAN": 83.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.25315, 45.44422 ], [ 1.31151, 45.3781 ], [ 1.23454, 45.30397 ], [ 1.26481, 45.24421 ], [ 1.23905, 45.20564 ], [ 1.2947, 45.14395 ], [ 1.39799, 45.12742 ], [ 1.39014, 45.09151 ], [ 1.44826, 45.01931 ], [ 1.41394, 44.99404 ], [ 1.42171, 44.87086 ], [ 1.31306, 44.79462 ], [ 1.29004, 44.72485 ], [ 1.14853, 44.6554 ], [ 1.07514, 44.57733 ], [ 0.99281, 44.53565 ], [ 1.06408, 44.37851 ], [ 0.90262, 44.36041 ], [ 0.88726, 44.31584 ], [ 0.91873, 44.24879 ], [ 0.87421, 44.14877 ], [ 0.7979, 44.12957 ], [ 0.74189, 44.0652 ], [ 0.66039, 44.04731 ], [ 0.58721, 44.07217 ], [ 0.37909, 44.00911 ], [ 0.09692, 43.98493 ], [ 0.07604, 43.98314 ], [ 0.04826, 43.90721 ], [ -0.03537, 43.97512 ], [ -0.20739, 43.91212 ], [ -0.20379, 43.74054 ], [ -0.27527, 43.63202 ], [ -0.24283, 43.58498 ], [ -0.09679, 43.5824 ], [ -0.08836, 43.56397 ], [ 0.01042, 43.34801 ], [ -0.03533, 43.30136 ], [ -0.06604, 43.20081 ], [ -0.13626, 43.13208 ], [ -0.27622, 42.99511 ], [ -0.31822, 42.90124 ], [ -0.31334, 42.84936 ], [ -0.40397, 42.80582 ], [ -0.55415, 42.7966 ], [ -0.7245, 42.92016 ], [ -0.77113, 42.95789 ], [ -0.94924, 42.9622 ], [ -1.22553, 43.04078 ], [ -1.30726, 43.09422 ], [ -1.36436, 43.04237 ], [ -1.4197, 43.04686 ], [ -1.45291, 43.08414 ], [ -1.42659, 43.13208 ], [ -1.39198, 43.19513 ], [ -1.40221, 43.25178 ], [ -1.51317, 43.28597 ], [ -1.59355, 43.2653 ], [ -1.65989, 43.30757 ], [ -1.7289, 43.29609 ], [ -1.78598, 43.35048 ], [ -1.78113, 43.36465 ], [ -1.67314, 43.38888 ], [ -1.52476, 43.52959 ], [ -1.50225, 43.56397 ], [ -1.45828, 43.63111 ], [ -1.38061, 43.89518 ], [ -1.32698, 44.13784 ], [ -1.25409, 44.46764 ], [ -1.20368, 44.6012 ], [ -1.11011, 44.68017 ], [ -1.14293, 44.71624 ], [ -1.21932, 44.72664 ], [ -1.2327, 44.76042 ], [ -1.11414, 45.47259 ], [ -1.06242, 45.50385 ], [ -1.00874, 45.48718 ], [ -0.73175, 45.2274 ], [ -0.71483, 45.32837 ], [ -0.5817, 45.32402 ], [ -0.43851, 45.28029 ], [ -0.38461, 45.15557 ], [ -0.33032, 45.15942 ], [ -0.18286, 45.09449 ], [ -0.0402, 45.10238 ], [ 0.00434, 45.19163 ], [ 0.06177, 45.22424 ], [ 0.09692, 45.22193 ], [ 0.14294, 45.2189 ], [ 0.25616, 45.30148 ], [ 0.25523, 45.37419 ], [ 0.29244, 45.43983 ], [ 0.49634, 45.55182 ], [ 0.5119, 45.61642 ], [ 0.62974, 45.71457 ], [ 0.75868, 45.67671 ], [ 0.7605, 45.61708 ], [ 0.80853, 45.58241 ], [ 0.87036, 45.61326 ], [ 0.92824, 45.61065 ], [ 1.01232, 45.60686 ], [ 1.06716, 45.54552 ], [ 1.14981, 45.53013 ], [ 1.13375, 45.48716 ], [ 1.25315, 45.44422 ] ], [ [ -0.11168, 43.33233 ], [ -0.13557, 43.26743 ], [ -0.112, 43.24392 ], [ -0.08617, 43.2659 ], [ -0.09027, 43.29906 ], [ -0.06903, 43.31922 ], [ -0.07675, 43.36104 ], [ -0.11168, 43.33233 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FRI2", "NUTS_ID": "FRI2", "LEVL_CODE": 2, "CNTR_CODE": "FR", "NUTS_NAME": "Limousin", "geo": "FRI2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104, 46.4204 ], [ 2.33486, 46.32676 ], [ 2.4751, 46.27587 ], [ 2.56537, 46.14304 ], [ 2.55416, 46.10031 ], [ 2.5971, 45.97126 ], [ 2.50444, 45.87774 ], [ 2.40028, 45.82514 ], [ 2.49213, 45.73767 ], [ 2.52389, 45.67497 ], [ 2.47002, 45.5986 ], [ 2.50841, 45.4785 ], [ 2.50136, 45.39261 ], [ 2.37565, 45.39742 ], [ 2.33774, 45.33005 ], [ 2.21489, 45.22687 ], [ 2.16646, 45.09017 ], [ 2.10813, 45.06029 ], [ 2.12902, 44.99269 ], [ 2.06291, 44.9765 ], [ 1.90283, 44.97058 ], [ 1.79108, 44.92661 ], [ 1.63614, 45.02733 ], [ 1.54262, 45.04221 ], [ 1.44826, 45.01931 ], [ 1.39014, 45.09151 ], [ 1.39799, 45.12742 ], [ 1.2947, 45.14395 ], [ 1.23905, 45.20564 ], [ 1.26481, 45.24421 ], [ 1.23454, 45.30397 ], [ 1.31151, 45.3781 ], [ 1.25315, 45.44422 ], [ 1.13375, 45.48716 ], [ 1.14981, 45.53013 ], [ 1.06716, 45.54552 ], [ 1.01232, 45.60686 ], [ 0.92824, 45.61065 ], [ 0.87036, 45.61326 ], [ 0.80853, 45.58241 ], [ 0.7605, 45.61708 ], [ 0.75868, 45.67671 ], [ 0.62974, 45.71457 ], [ 0.7754, 45.81592 ], [ 0.83695, 45.92084 ], [ 0.9249, 45.97074 ], [ 0.90997, 46.01068 ], [ 0.83547, 46.04912 ], [ 0.82343, 46.12858 ], [ 0.81847, 46.21985 ], [ 0.8893, 46.2768 ], [ 0.92824, 46.27999 ], [ 0.99489, 46.28545 ], [ 1.0467, 46.35517 ], [ 1.17728, 46.38395 ], [ 1.35008, 46.39426 ], [ 1.41519, 46.34721 ], [ 1.52058, 46.41576 ], [ 1.73048, 46.40067 ], [ 1.77295, 46.4513 ], [ 2.16646, 46.42416 ], [ 2.16778, 46.42407 ], [ 2.28104, 46.4204 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITC4", "NUTS_ID": "ITC4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lombardia", "geo": "ITC4", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.84018, 45.83276 ], [ 10.6356, 45.60806 ], [ 10.65466, 45.41583 ], [ 10.70508, 45.41191 ], [ 10.70496, 45.33754 ], [ 10.73459, 45.30228 ], [ 10.79289, 45.30572 ], [ 10.92727, 45.23218 ], [ 11.05514, 45.10995 ], [ 11.2055, 45.10949 ], [ 11.18972, 45.05979 ], [ 11.42677, 44.95008 ], [ 11.24623, 44.95143 ], [ 11.00696, 44.95169 ], [ 10.88791, 44.91427 ], [ 10.72898, 44.97691 ], [ 10.58891, 44.91547 ], [ 10.50434, 44.92242 ], [ 10.46403, 44.93717 ], [ 10.19912, 45.03246 ], [ 10.0835, 45.04396 ], [ 10.04244, 45.05545 ], [ 9.99881, 45.1197 ], [ 9.95493, 45.11888 ], [ 9.8911, 45.1309 ], [ 9.87975, 45.08391 ], [ 9.82171, 45.07201 ], [ 9.7562, 45.10217 ], [ 9.71024, 45.06463 ], [ 9.54868, 45.13265 ], [ 9.53832, 45.08929 ], [ 9.44454, 45.08949 ], [ 9.3801, 45.05263 ], [ 9.28848, 44.90301 ], [ 9.35401, 44.83627 ], [ 9.29718, 44.76644 ], [ 9.32035, 44.726 ], [ 9.28088, 44.68995 ], [ 9.20007, 44.6861 ], [ 9.20213, 44.75366 ], [ 9.14776, 44.80551 ], [ 9.07241, 44.82589 ], [ 8.89188, 45.04194 ], [ 8.65979, 45.02683 ], [ 8.60418, 45.12764 ], [ 8.5478, 45.16815 ], [ 8.51356, 45.31328 ], [ 8.6033, 45.35438 ], [ 8.69213, 45.29874 ], [ 8.75342, 45.37621 ], [ 8.84292, 45.39384 ], [ 8.7069, 45.55832 ], [ 8.64423, 45.70871 ], [ 8.56303, 45.77148 ], [ 8.59381, 45.82822 ], [ 8.57974, 45.90285 ], [ 8.7159, 46.01301 ], [ 8.71394, 46.09727 ], [ 8.7454, 46.11219 ], [ 8.83901, 46.07238 ], [ 8.79514, 45.99765 ], [ 8.88749, 45.95363 ], [ 8.93467, 45.87199 ], [ 8.91215, 45.83044 ], [ 9.04023, 45.84071 ], [ 9.07547, 45.896 ], [ 9.00907, 45.95243 ], [ 9.01672, 46.03663 ], [ 9.15938, 46.1696 ], [ 9.24853, 46.23377 ], [ 9.29207, 46.32998 ], [ 9.25929, 46.44643 ], [ 9.30228, 46.49682 ], [ 9.41174, 46.47644 ], [ 9.456, 46.49558 ], [ 9.46774, 46.38015 ], [ 9.53832, 46.31503 ], [ 9.61729, 46.29211 ], [ 9.95493, 46.37855 ], [ 10.05468, 46.23616 ], [ 10.14173, 46.23475 ], [ 10.1666, 46.26722 ], [ 10.11438, 46.34662 ], [ 10.15606, 46.40869 ], [ 10.04583, 46.46002 ], [ 10.05572, 46.52886 ], [ 10.10638, 46.60162 ], [ 10.2317, 46.62825 ], [ 10.30603, 46.55152 ], [ 10.4528, 46.53068 ], [ 10.62215, 46.4481 ], [ 10.61798, 46.39349 ], [ 10.51575, 46.34322 ], [ 10.56824, 46.31339 ], [ 10.57665, 46.24416 ], [ 10.54712, 46.12156 ], [ 10.47151, 46.0209 ], [ 10.5002, 45.85474 ], [ 10.54525, 45.7922 ], [ 10.69407, 45.83738 ], [ 10.84018, 45.83276 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF1", "NUTS_ID": "ITF1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Abruzzo", "geo": "ITF1", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.77965, 42.07002 ], [ 14.76581, 42.0261 ], [ 14.66585, 41.93799 ], [ 14.48536, 41.75962 ], [ 14.40485, 41.86194 ], [ 14.29185, 41.90456 ], [ 14.22976, 41.87706 ], [ 14.16394, 41.83384 ], [ 14.1843, 41.76022 ], [ 14.07594, 41.73189 ], [ 14.02677, 41.69043 ], [ 13.94104, 41.68794 ], [ 13.71255, 41.79181 ], [ 13.55604, 41.76633 ], [ 13.41064, 41.81857 ], [ 13.35964, 41.91079 ], [ 13.2963, 41.94859 ], [ 13.06137, 42.01986 ], [ 13.03057, 42.11535 ], [ 13.10218, 42.15636 ], [ 13.24839, 42.14491 ], [ 13.32008, 42.18428 ], [ 13.30379, 42.23442 ], [ 13.18174, 42.35614 ], [ 13.14653, 42.4695 ], [ 13.16687, 42.53788 ], [ 13.19606, 42.57917 ], [ 13.39403, 42.59123 ], [ 13.4013, 42.6348 ], [ 13.35777, 42.69407 ], [ 13.48755, 42.74089 ], [ 13.53709, 42.80672 ], [ 13.66057, 42.81077 ], [ 13.91573, 42.89458 ], [ 14.006, 42.69912 ], [ 14.14691, 42.5306 ], [ 14.22313, 42.4695 ], [ 14.25396, 42.4448 ], [ 14.3219, 42.40816 ], [ 14.38407, 42.37464 ], [ 14.52657, 42.24463 ], [ 14.70175, 42.17397 ], [ 14.72692, 42.10586 ], [ 14.77965, 42.07002 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF2", "NUTS_ID": "ITF2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Molise", "geo": "ITF2", "time_2018_MEAN": 83.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.00766, 41.48636 ], [ 14.87598, 41.44888 ], [ 14.60907, 41.37292 ], [ 14.5051, 41.38246 ], [ 14.38252, 41.44322 ], [ 14.2507, 41.49306 ], [ 14.12711, 41.49709 ], [ 14.08916, 41.45657 ], [ 14.09798, 41.40764 ], [ 14.0613, 41.39538 ], [ 13.97793, 41.46245 ], [ 14.02218, 41.5461 ], [ 13.99389, 41.64009 ], [ 13.94104, 41.68794 ], [ 14.02677, 41.69043 ], [ 14.07594, 41.73189 ], [ 14.1843, 41.76022 ], [ 14.16394, 41.83384 ], [ 14.22976, 41.87706 ], [ 14.29185, 41.90456 ], [ 14.40485, 41.86194 ], [ 14.48536, 41.75962 ], [ 14.66585, 41.93799 ], [ 14.76581, 42.0261 ], [ 14.77965, 42.07002 ], [ 14.87598, 42.03996 ], [ 14.99536, 42.0027 ], [ 15.09229, 41.93799 ], [ 15.13818, 41.92701 ], [ 15.10194, 41.77016 ], [ 15.12415, 41.6943 ], [ 14.94244, 41.62062 ], [ 14.94638, 41.5291 ], [ 15.00766, 41.48636 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF3", "NUTS_ID": "ITF3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Campania", "geo": "ITF3", "time_2018_MEAN": 81.833333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.38252, 41.44322 ], [ 14.5051, 41.38246 ], [ 14.60907, 41.37292 ], [ 14.87598, 41.44888 ], [ 15.00766, 41.48636 ], [ 15.08744, 41.42398 ], [ 15.069, 41.34838 ], [ 15.1492, 41.28041 ], [ 15.26555, 41.25208 ], [ 15.21775, 41.15696 ], [ 15.25743, 41.11437 ], [ 15.54292, 41.05582 ], [ 15.56475, 40.99144 ], [ 15.52521, 40.91449 ], [ 15.33502, 40.83484 ], [ 15.38103, 40.79176 ], [ 15.39536, 40.71828 ], [ 15.4879, 40.66411 ], [ 15.46197, 40.60991 ], [ 15.51292, 40.57508 ], [ 15.59973, 40.43788 ], [ 15.69406, 40.38321 ], [ 15.80049, 40.26056 ], [ 15.71813, 40.18022 ], [ 15.64495, 40.04279 ], [ 15.58551, 40.06754 ], [ 15.36521, 40.00671 ], [ 15.14202, 40.1545 ], [ 14.94561, 40.229 ], [ 14.93569, 40.27103 ], [ 14.98469, 40.40083 ], [ 14.87598, 40.5852 ], [ 14.7777, 40.66457 ], [ 14.54993, 40.61263 ], [ 14.46862, 40.6202 ], [ 14.33219, 40.57875 ], [ 14.34786, 40.62357 ], [ 14.4668, 40.70103 ], [ 14.45565, 40.73969 ], [ 14.28447, 40.83354 ], [ 14.18524, 40.80402 ], [ 14.1005, 40.82465 ], [ 14.05772, 40.79362 ], [ 14.03213, 40.89884 ], [ 13.7608, 41.22317 ], [ 13.87313, 41.29446 ], [ 13.87372, 41.33829 ], [ 13.87358, 41.41658 ], [ 13.97793, 41.46245 ], [ 14.0613, 41.39538 ], [ 14.09798, 41.40764 ], [ 14.08916, 41.45657 ], [ 14.12711, 41.49709 ], [ 14.2507, 41.49306 ], [ 14.38252, 41.44322 ] ] ], [ [ [ 14.25117, 40.54377 ], [ 14.18534, 40.52726 ], [ 14.18282, 40.54749 ], [ 14.18623, 40.56828 ], [ 14.2403, 40.56678 ], [ 14.25117, 40.54377 ] ] ], [ [ [ 13.9663, 40.71251 ], [ 13.923, 40.69663 ], [ 13.85073, 40.71073 ], [ 13.86172, 40.7583 ], [ 13.95411, 40.74249 ], [ 13.9663, 40.71251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF4", "NUTS_ID": "ITF4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Puglia", "geo": "ITF4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.02474, 41.42559 ], [ 16.5423, 41.22944 ], [ 17.0802, 41.06705 ], [ 17.38898, 40.89186 ], [ 17.49985, 40.82193 ], [ 18.01286, 40.63805 ], [ 18.09745, 40.51538 ], [ 18.24011, 40.44262 ], [ 18.41119, 40.30214 ], [ 18.51206, 40.13022 ], [ 18.41223, 39.97717 ], [ 18.37351, 39.80451 ], [ 18.19006, 39.84529 ], [ 18.057, 39.92451 ], [ 18.00706, 39.98728 ], [ 17.99896, 40.11737 ], [ 17.90978, 40.23458 ], [ 17.8568, 40.27996 ], [ 17.7635, 40.29551 ], [ 17.51909, 40.29755 ], [ 17.38429, 40.33877 ], [ 17.24299, 40.40013 ], [ 17.23146, 40.46916 ], [ 17.11211, 40.51762 ], [ 17.00262, 40.4951 ], [ 16.86726, 40.39785 ], [ 16.73142, 40.48363 ], [ 16.72499, 40.71381 ], [ 16.58509, 40.75926 ], [ 16.49487, 40.75233 ], [ 16.41986, 40.71079 ], [ 16.2441, 40.83801 ], [ 16.20253, 40.91751 ], [ 16.11868, 40.90649 ], [ 16.00764, 40.94906 ], [ 16.02986, 41.03568 ], [ 15.87031, 41.1399 ], [ 15.78176, 41.09514 ], [ 15.59973, 41.09699 ], [ 15.54292, 41.05582 ], [ 15.25743, 41.11437 ], [ 15.21775, 41.15696 ], [ 15.26555, 41.25208 ], [ 15.1492, 41.28041 ], [ 15.069, 41.34838 ], [ 15.08744, 41.42398 ], [ 15.00766, 41.48636 ], [ 14.94638, 41.5291 ], [ 14.94244, 41.62062 ], [ 15.12415, 41.6943 ], [ 15.10194, 41.77016 ], [ 15.13818, 41.92701 ], [ 15.41132, 41.90297 ], [ 15.59973, 41.92365 ], [ 15.70054, 41.91559 ], [ 15.95455, 41.93799 ], [ 16.01208, 41.94911 ], [ 16.05913, 41.94696 ], [ 16.08985, 41.93799 ], [ 16.17153, 41.88728 ], [ 16.18581, 41.78255 ], [ 15.92394, 41.6292 ], [ 15.89902, 41.58758 ], [ 15.932, 41.48892 ], [ 16.02474, 41.42559 ] ] ], [ [ [ 15.54923, 42.13464 ], [ 15.46731, 42.08573 ], [ 15.45089, 42.10438 ], [ 15.48537, 42.13278 ], [ 15.50328, 42.12997 ], [ 15.52128, 42.16663 ], [ 15.54923, 42.13464 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF5", "NUTS_ID": "ITF5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Basilicata", "geo": "ITF5", "time_2018_MEAN": 83.066666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.87031, 41.1399 ], [ 16.02986, 41.03568 ], [ 16.00764, 40.94906 ], [ 16.11868, 40.90649 ], [ 16.20253, 40.91751 ], [ 16.2441, 40.83801 ], [ 16.41986, 40.71079 ], [ 16.49487, 40.75233 ], [ 16.58509, 40.75926 ], [ 16.72499, 40.71381 ], [ 16.73142, 40.48363 ], [ 16.86726, 40.39785 ], [ 16.64432, 40.1191 ], [ 16.43288, 40.13742 ], [ 16.39888, 40.0554 ], [ 16.3418, 39.91048 ], [ 16.28238, 39.93149 ], [ 16.05665, 39.90013 ], [ 16.01925, 39.93014 ], [ 16.01199, 39.98876 ], [ 15.84227, 40.00209 ], [ 15.75596, 39.9235 ], [ 15.64495, 40.04279 ], [ 15.71813, 40.18022 ], [ 15.80049, 40.26056 ], [ 15.69406, 40.38321 ], [ 15.59973, 40.43788 ], [ 15.51292, 40.57508 ], [ 15.46197, 40.60991 ], [ 15.4879, 40.66411 ], [ 15.39536, 40.71828 ], [ 15.38103, 40.79176 ], [ 15.33502, 40.83484 ], [ 15.52521, 40.91449 ], [ 15.56475, 40.99144 ], [ 15.54292, 41.05582 ], [ 15.59973, 41.09699 ], [ 15.78176, 41.09514 ], [ 15.87031, 41.1399 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITF6", "NUTS_ID": "ITF6", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Calabria", "geo": "ITF6", "time_2018_MEAN": 83.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.02506, 39.48358 ], [ 17.14708, 39.39326 ], [ 17.10971, 39.27692 ], [ 17.13706, 39.2187 ], [ 17.11486, 39.11564 ], [ 17.17607, 39.02706 ], [ 17.15342, 38.94329 ], [ 17.09692, 38.9033 ], [ 16.89073, 38.92713 ], [ 16.63004, 38.82416 ], [ 16.55525, 38.74135 ], [ 16.58208, 38.46979 ], [ 16.49677, 38.36085 ], [ 16.33269, 38.29427 ], [ 16.18285, 38.14856 ], [ 16.13482, 38.0179 ], [ 16.07055, 37.93381 ], [ 15.75415, 37.92248 ], [ 15.64594, 38.00445 ], [ 15.63807, 38.21659 ], [ 15.80547, 38.29383 ], [ 15.91896, 38.50676 ], [ 15.91658, 38.55414 ], [ 15.83848, 38.61818 ], [ 15.85209, 38.65454 ], [ 15.99979, 38.72268 ], [ 16.13334, 38.72104 ], [ 16.21375, 38.81044 ], [ 16.21083, 38.91968 ], [ 16.09315, 39.04874 ], [ 16.08354, 39.09108 ], [ 16.0685, 39.1291 ], [ 16.06539, 39.15234 ], [ 16.06247, 39.18394 ], [ 16.0591, 39.2187 ], [ 15.99922, 39.42963 ], [ 15.87483, 39.56168 ], [ 15.81639, 39.68918 ], [ 15.75596, 39.9235 ], [ 15.84227, 40.00209 ], [ 16.01199, 39.98876 ], [ 16.01925, 39.93014 ], [ 16.05665, 39.90013 ], [ 16.28238, 39.93149 ], [ 16.3418, 39.91048 ], [ 16.39888, 40.0554 ], [ 16.43288, 40.13742 ], [ 16.64432, 40.1191 ], [ 16.60359, 40.05737 ], [ 16.61885, 39.95304 ], [ 16.49605, 39.80417 ], [ 16.52957, 39.66821 ], [ 16.62302, 39.62396 ], [ 16.77073, 39.61652 ], [ 16.88194, 39.53213 ], [ 17.02506, 39.48358 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITG1", "NUTS_ID": "ITG1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Sicilia", "geo": "ITG1", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.25808, 37.80722 ], [ 15.21879, 37.75649 ], [ 15.17005, 37.57955 ], [ 15.14694, 37.55244 ], [ 15.09185, 37.48783 ], [ 15.0915, 37.35771 ], [ 15.11744, 37.30946 ], [ 15.22856, 37.26882 ], [ 15.19253, 37.1906 ], [ 15.22683, 37.12968 ], [ 15.29274, 37.09528 ], [ 15.2828, 37.05512 ], [ 15.3176, 37.01897 ], [ 15.16959, 36.92467 ], [ 15.11099, 36.84051 ], [ 15.12309, 36.67665 ], [ 15.08055, 36.65885 ], [ 15.00036, 36.70285 ], [ 14.87598, 36.72808 ], [ 14.71285, 36.71998 ], [ 14.49648, 36.79099 ], [ 14.33759, 37.00198 ], [ 14.19432, 37.08244 ], [ 14.03621, 37.10603 ], [ 13.90003, 37.10007 ], [ 13.74835, 37.15542 ], [ 13.55519, 37.27974 ], [ 13.45199, 37.29717 ], [ 13.28509, 37.38549 ], [ 13.16512, 37.48883 ], [ 13.02677, 37.50183 ], [ 12.9392, 37.55244 ], [ 12.8965, 37.57712 ], [ 12.68979, 37.56448 ], [ 12.64133, 37.58916 ], [ 12.59733, 37.64364 ], [ 12.48064, 37.69943 ], [ 12.43651, 37.79379 ], [ 12.46469, 37.86894 ], [ 12.5109, 38.01886 ], [ 12.64133, 38.07701 ], [ 12.71699, 38.12024 ], [ 12.74801, 38.17602 ], [ 12.86936, 38.0401 ], [ 12.97726, 38.04021 ], [ 13.06498, 38.08809 ], [ 13.06397, 38.14393 ], [ 13.10377, 38.18292 ], [ 13.20377, 38.17585 ], [ 13.31255, 38.21552 ], [ 13.35729, 38.18663 ], [ 13.38812, 38.11209 ], [ 13.52863, 38.10428 ], [ 13.56726, 38.04057 ], [ 13.72755, 37.9764 ], [ 13.99763, 38.03568 ], [ 14.18349, 38.0194 ], [ 14.50566, 38.0433 ], [ 14.63247, 38.07753 ], [ 14.75122, 38.1556 ], [ 14.87598, 38.1768 ], [ 15.10378, 38.1376 ], [ 15.2352, 38.20488 ], [ 15.50291, 38.2812 ], [ 15.59362, 38.26595 ], [ 15.48982, 38.07737 ], [ 15.25808, 37.80722 ] ] ], [ [ [ 15.25285, 38.80719 ], [ 15.21699, 38.76456 ], [ 15.17701, 38.79006 ], [ 15.2223, 38.81896 ], [ 15.25285, 38.80719 ] ] ], [ [ [ 15.00973, 38.37217 ], [ 14.97619, 38.36747 ], [ 14.93475, 38.40399 ], [ 14.94848, 38.41919 ], [ 14.99793, 38.39818 ], [ 15.00973, 38.37217 ] ] ], [ [ [ 14.96124, 38.52604 ], [ 14.96482, 38.44802 ], [ 14.89507, 38.47911 ], [ 14.90347, 38.51598 ], [ 14.96124, 38.52604 ] ] ], [ [ [ 14.87391, 38.58201 ], [ 14.87295, 38.53557 ], [ 14.79359, 38.56117 ], [ 14.80458, 38.58395 ], [ 14.87391, 38.58201 ] ] ], [ [ [ 14.59858, 38.57638 ], [ 14.55179, 38.54488 ], [ 14.52121, 38.58189 ], [ 14.54662, 38.5974 ], [ 14.59858, 38.57638 ] ] ], [ [ [ 14.38524, 38.5611 ], [ 14.3696, 38.51591 ], [ 14.31867, 38.54268 ], [ 14.34306, 38.56917 ], [ 14.38524, 38.5611 ] ] ], [ [ [ 13.21866, 38.71534 ], [ 13.17166, 38.68016 ], [ 13.13564, 38.69448 ], [ 13.18454, 38.732 ], [ 13.21866, 38.71534 ] ] ], [ [ [ 12.89483, 35.85701 ], [ 12.85247, 35.84095 ], [ 12.8276, 35.87084 ], [ 12.85513, 35.88841 ], [ 12.89049, 35.88078 ], [ 12.89483, 35.85701 ] ] ], [ [ [ 12.64032, 35.52051 ], [ 12.63789, 35.48976 ], [ 12.60266, 35.49082 ], [ 12.56619, 35.51554 ], [ 12.60391, 35.53069 ], [ 12.64032, 35.52051 ] ] ], [ [ [ 12.387, 37.92725 ], [ 12.35436, 37.89187 ], [ 12.32926, 37.91626 ], [ 12.33983, 37.93383 ], [ 12.387, 37.92725 ] ] ], [ [ [ 12.36931, 37.98842 ], [ 12.32532, 37.9752 ], [ 12.30641, 38.00191 ], [ 12.33683, 38.03688 ], [ 12.36931, 37.98842 ] ] ], [ [ [ 12.32749, 37.91549 ], [ 12.2816, 37.91013 ], [ 12.26094, 37.93838 ], [ 12.30853, 37.96149 ], [ 12.32749, 37.91549 ] ] ], [ [ [ 12.06635, 37.99995 ], [ 12.07964, 37.94436 ], [ 12.04161, 37.95409 ], [ 12.01902, 37.99508 ], [ 12.06635, 37.99995 ] ] ], [ [ [ 12.04903, 36.75015 ], [ 11.99326, 36.73687 ], [ 11.92725, 36.80194 ], [ 11.92515, 36.81565 ], [ 11.95304, 36.83948 ], [ 12.01332, 36.82498 ], [ 12.05117, 36.79908 ], [ 12.04903, 36.75015 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT01", "NUTS_ID": "LT01", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Sostinės regionas", "geo": "LT01", "time_2018_MEAN": 76.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.74345, 55.2541 ], [ 26.6443, 55.1588 ], [ 26.27306, 55.11706 ], [ 26.19588, 55.00213 ], [ 25.8831, 54.92715 ], [ 25.7814, 54.8478 ], [ 25.74419, 54.78307 ], [ 25.74826, 54.58342 ], [ 25.64991, 54.49156 ], [ 25.64066, 54.47447 ], [ 25.56959, 54.34317 ], [ 25.72384, 54.28136 ], [ 25.77392, 54.16336 ], [ 25.64479, 54.13475 ], [ 25.54999, 54.15656 ], [ 25.55713, 54.25146 ], [ 25.47627, 54.29894 ], [ 25.23088, 54.24987 ], [ 25.06294, 54.13974 ], [ 24.95253, 54.16613 ], [ 24.83595, 54.14903 ], [ 24.77844, 54.22024 ], [ 24.91151, 54.29832 ], [ 24.92961, 54.35864 ], [ 24.99176, 54.3932 ], [ 24.99304, 54.42074 ], [ 24.75712, 54.39873 ], [ 24.65766, 54.44097 ], [ 24.43993, 54.42906 ], [ 24.42877, 54.47447 ], [ 24.41431, 54.53327 ], [ 24.48295, 54.68766 ], [ 24.55703, 54.76028 ], [ 24.55798, 54.80982 ], [ 24.74616, 54.83812 ], [ 24.78753, 54.89774 ], [ 24.58059, 54.99017 ], [ 24.6104, 55.06339 ], [ 24.48888, 55.21319 ], [ 24.43024, 55.23793 ], [ 24.39842, 55.31225 ], [ 24.42979, 55.3908 ], [ 24.62358, 55.46388 ], [ 24.65505, 55.51769 ], [ 24.78944, 55.44868 ], [ 24.82005, 55.3724 ], [ 24.96999, 55.34464 ], [ 25.16176, 55.26542 ], [ 25.21314, 55.17943 ], [ 25.17074, 55.1145 ], [ 25.26687, 55.04724 ], [ 25.72162, 55.04957 ], [ 25.75591, 55.11862 ], [ 25.66786, 55.21202 ], [ 25.75783, 55.3023 ], [ 26.09767, 55.28616 ], [ 26.18217, 55.23166 ], [ 26.42049, 55.2143 ], [ 26.74345, 55.2541 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LT02", "NUTS_ID": "LT02", "LEVL_CODE": 2, "CNTR_CODE": "LT", "NUTS_NAME": "Vidurio ir vakarų Lietuvos regionas", "geo": "LT02", "time_2018_MEAN": 75.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.82139, 56.05218 ], [ 25.86938, 56.00199 ], [ 26.04615, 55.94411 ], [ 26.3854, 55.71142 ], [ 26.63037, 55.68067 ], [ 26.62089, 55.58337 ], [ 26.53904, 55.50402 ], [ 26.54025, 55.40778 ], [ 26.50572, 55.35447 ], [ 26.78957, 55.29833 ], [ 26.74345, 55.2541 ], [ 26.42049, 55.2143 ], [ 26.18217, 55.23166 ], [ 26.09767, 55.28616 ], [ 25.75783, 55.3023 ], [ 25.66786, 55.21202 ], [ 25.75591, 55.11862 ], [ 25.72162, 55.04957 ], [ 25.26687, 55.04724 ], [ 25.17074, 55.1145 ], [ 25.21314, 55.17943 ], [ 25.16176, 55.26542 ], [ 24.96999, 55.34464 ], [ 24.82005, 55.3724 ], [ 24.78944, 55.44868 ], [ 24.65505, 55.51769 ], [ 24.62358, 55.46388 ], [ 24.42979, 55.3908 ], [ 24.39842, 55.31225 ], [ 24.43024, 55.23793 ], [ 24.48888, 55.21319 ], [ 24.6104, 55.06339 ], [ 24.58059, 54.99017 ], [ 24.78753, 54.89774 ], [ 24.74616, 54.83812 ], [ 24.55798, 54.80982 ], [ 24.55703, 54.76028 ], [ 24.48295, 54.68766 ], [ 24.41431, 54.53327 ], [ 24.42877, 54.47447 ], [ 24.43993, 54.42906 ], [ 24.65766, 54.44097 ], [ 24.75712, 54.39873 ], [ 24.99304, 54.42074 ], [ 24.99176, 54.3932 ], [ 24.92961, 54.35864 ], [ 24.91151, 54.29832 ], [ 24.77844, 54.22024 ], [ 24.83595, 54.14903 ], [ 24.79304, 54.10864 ], [ 24.81901, 54.01486 ], [ 24.71149, 53.96539 ], [ 24.69198, 54.00571 ], [ 24.6206, 54.00549 ], [ 24.4219, 53.90413 ], [ 24.33954, 53.90332 ], [ 24.19156, 53.96343 ], [ 24.00685, 53.92821 ], [ 23.91701, 53.96235 ], [ 23.8214, 53.94424 ], [ 23.79196, 53.90597 ], [ 23.51465, 53.95656 ], [ 23.49198, 53.99279 ], [ 23.5214, 54.06937 ], [ 23.47502, 54.15772 ], [ 23.3215, 54.25333 ], [ 23.25146, 54.26853 ], [ 23.0693, 54.30809 ], [ 22.9824, 54.38493 ], [ 22.84763, 54.40163 ], [ 22.7921, 54.36336 ], [ 22.7035, 54.47447 ], [ 22.69629, 54.58826 ], [ 22.74681, 54.63985 ], [ 22.75264, 54.7294 ], [ 22.84861, 54.7762 ], [ 22.87541, 54.81825 ], [ 22.83199, 54.90165 ], [ 22.63418, 54.9839 ], [ 22.58897, 55.07025 ], [ 22.46582, 55.04759 ], [ 22.19223, 55.05747 ], [ 22.08183, 55.02895 ], [ 22.02471, 55.07687 ], [ 21.86996, 55.09357 ], [ 21.68845, 55.16201 ], [ 21.6709, 55.16778 ], [ 21.65107, 55.17998 ], [ 21.49447, 55.19463 ], [ 21.38284, 55.28588 ], [ 21.27351, 55.24565 ], [ 21.22929, 55.47471 ], [ 21.17063, 55.57044 ], [ 21.07852, 55.39546 ], [ 21.00333, 55.27371 ], [ 20.95621, 55.28156 ], [ 21.0226, 55.36437 ], [ 21.03589, 55.38697 ], [ 21.09714, 55.61146 ], [ 21.06424, 56.06914 ], [ 21.20041, 56.08525 ], [ 21.24513, 56.16227 ], [ 21.52487, 56.30272 ], [ 21.68845, 56.31195 ], [ 21.97821, 56.38514 ], [ 22.01105, 56.41398 ], [ 22.12258, 56.42904 ], [ 22.63556, 56.36817 ], [ 22.85599, 56.36817 ], [ 22.92052, 56.39914 ], [ 22.98799, 56.40472 ], [ 23.02939, 56.33786 ], [ 23.09623, 56.31173 ], [ 23.19505, 56.36701 ], [ 23.25146, 56.37337 ], [ 23.31649, 56.3807 ], [ 23.54191, 56.33677 ], [ 23.74509, 56.36947 ], [ 23.78059, 56.33826 ], [ 24.00702, 56.32718 ], [ 24.1518, 56.25335 ], [ 24.30117, 56.29654 ], [ 24.43308, 56.26495 ], [ 24.52648, 56.28193 ], [ 24.56895, 56.29233 ], [ 24.63769, 56.37047 ], [ 24.89231, 56.442 ], [ 25.09452, 56.192 ], [ 25.23632, 56.18454 ], [ 25.32172, 56.14911 ], [ 25.67161, 56.13992 ], [ 25.7078, 56.08319 ], [ 25.82139, 56.05218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LU00", "NUTS_ID": "LU00", "LEVL_CODE": 2, "CNTR_CODE": "LU", "NUTS_NAME": "Luxembourg", "geo": "LU00", "time_2018_MEAN": 82.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.13766, 50.12995 ], [ 6.12792, 50.04735 ], [ 6.25336, 49.89093 ], [ 6.32671, 49.84497 ], [ 6.47496, 49.82127 ], [ 6.51109, 49.7828 ], [ 6.50101, 49.71871 ], [ 6.43277, 49.662 ], [ 6.38005, 49.5511 ], [ 6.36711, 49.46951 ], [ 6.21562, 49.50761 ], [ 6.10166, 49.46035 ], [ 5.99994, 49.45622 ], [ 5.89339, 49.49694 ], [ 5.81812, 49.54631 ], [ 5.86082, 49.57352 ], [ 5.89907, 49.65741 ], [ 5.87145, 49.71509 ], [ 5.75895, 49.8017 ], [ 5.74632, 49.85359 ], [ 5.77586, 49.94787 ], [ 5.86883, 50.04735 ], [ 5.90124, 50.10846 ], [ 6.0249, 50.18278 ], [ 6.13766, 50.12995 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL22", "NUTS_ID": "PL22", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Śląskie", "geo": "PL22", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.24314, 51.03684 ], [ 19.30883, 51.04139 ], [ 19.39321, 50.99424 ], [ 19.48745, 50.88652 ], [ 19.56893, 50.9005 ], [ 19.70315, 50.84816 ], [ 19.74706, 50.86597 ], [ 19.81591, 50.82409 ], [ 19.71295, 50.72916 ], [ 19.8465, 50.69593 ], [ 19.8952, 50.63034 ], [ 19.82181, 50.56614 ], [ 19.94997, 50.50478 ], [ 19.84454, 50.4342 ], [ 19.51247, 50.40683 ], [ 19.47892, 50.33341 ], [ 19.42213, 50.3235 ], [ 19.3676, 50.26113 ], [ 19.40873, 50.21519 ], [ 19.3244, 50.14731 ], [ 19.25381, 50.13419 ], [ 19.21818, 50.083 ], [ 19.14448, 50.03418 ], [ 19.09321, 49.95666 ], [ 19.18222, 49.94388 ], [ 19.17105, 49.86906 ], [ 19.27634, 49.85155 ], [ 19.31802, 49.78434 ], [ 19.41495, 49.77526 ], [ 19.43457, 49.73877 ], [ 19.40025, 49.68656 ], [ 19.46541, 49.66339 ], [ 19.46739, 49.61377 ], [ 19.35208, 49.53998 ], [ 19.25093, 49.52077 ], [ 19.16318, 49.40798 ], [ 18.99501, 49.39778 ], [ 18.95934, 49.50591 ], [ 18.85155, 49.51719 ], [ 18.80247, 49.66952 ], [ 18.62536, 49.73257 ], [ 18.57933, 49.82516 ], [ 18.57572, 49.91042 ], [ 18.35167, 49.94177 ], [ 18.30966, 49.92573 ], [ 18.20202, 49.98892 ], [ 18.12744, 49.9972 ], [ 18.03506, 50.06577 ], [ 18.05249, 50.083 ], [ 18.05978, 50.17465 ], [ 18.42587, 50.24897 ], [ 18.36924, 50.35403 ], [ 18.38741, 50.47252 ], [ 18.46358, 50.47603 ], [ 18.45576, 50.54674 ], [ 18.60747, 50.55001 ], [ 18.59053, 50.6023 ], [ 18.52653, 50.62857 ], [ 18.4969, 50.68742 ], [ 18.54421, 50.73929 ], [ 18.53554, 50.79825 ], [ 18.61588, 50.85359 ], [ 18.64548, 50.90742 ], [ 18.62508, 50.95179 ], [ 18.68502, 51.01943 ], [ 18.67295, 51.0569 ], [ 18.93173, 51.09112 ], [ 19.20363, 50.98896 ], [ 19.23625, 50.99966 ], [ 19.24314, 51.03684 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL41", "NUTS_ID": "PL41", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Wielkopolskie", "geo": "PL41", "time_2018_MEAN": 77.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.39065, 53.49096 ], [ 17.25832, 53.37517 ], [ 17.36355, 53.3124 ], [ 17.43879, 53.26751 ], [ 17.34197, 53.20466 ], [ 17.36012, 53.13899 ], [ 17.31278, 52.99027 ], [ 17.49369, 52.93561 ], [ 17.5131, 52.81169 ], [ 17.41798, 52.7784 ], [ 17.45852, 52.73895 ], [ 17.51055, 52.67934 ], [ 17.62936, 52.69986 ], [ 17.68907, 52.61215 ], [ 17.75684, 52.64999 ], [ 17.87164, 52.62829 ], [ 17.94153, 52.5746 ], [ 18.223, 52.4845 ], [ 18.37715, 52.53746 ], [ 18.39353, 52.4812 ], [ 18.53664, 52.48981 ], [ 18.64605, 52.44527 ], [ 18.76406, 52.34082 ], [ 18.94617, 52.3832 ], [ 19.04712, 52.3328 ], [ 19.05161, 52.28323 ], [ 19.09575, 52.25379 ], [ 19.0712, 52.20954 ], [ 18.93707, 52.19526 ], [ 18.93292, 52.0958 ], [ 18.82781, 52.06419 ], [ 18.72409, 52.05968 ], [ 18.7572, 51.92221 ], [ 18.68119, 51.8297 ], [ 18.47197, 51.85101 ], [ 18.37084, 51.67315 ], [ 18.3732, 51.47731 ], [ 18.3188, 51.42663 ], [ 18.22168, 51.44654 ], [ 18.19389, 51.39601 ], [ 18.0873, 51.34542 ], [ 18.17238, 51.25186 ], [ 18.16368, 51.17252 ], [ 17.93946, 51.10886 ], [ 17.84171, 51.11616 ], [ 17.84026, 51.17596 ], [ 17.79527, 51.19415 ], [ 17.74635, 51.2472 ], [ 17.72987, 51.40961 ], [ 17.54964, 51.42369 ], [ 17.52545, 51.47801 ], [ 17.56755, 51.54697 ], [ 17.54952, 51.58383 ], [ 17.44738, 51.62922 ], [ 17.25743, 51.64284 ], [ 17.24116, 51.63395 ], [ 17.18707, 51.57193 ], [ 16.96707, 51.54755 ], [ 16.82837, 51.57219 ], [ 16.75693, 51.63953 ], [ 16.65785, 51.65953 ], [ 16.63741, 51.74197 ], [ 16.41619, 51.78486 ], [ 16.38577, 51.84236 ], [ 16.29843, 51.8915 ], [ 16.13908, 51.89594 ], [ 16.11796, 51.9843 ], [ 16.00058, 51.98771 ], [ 15.97287, 52.01135 ], [ 15.97472, 52.07007 ], [ 15.8596, 52.09889 ], [ 15.8558, 52.24735 ], [ 15.88081, 52.29043 ], [ 15.88783, 52.38576 ], [ 15.81716, 52.43521 ], [ 15.88574, 52.46007 ], [ 15.7832, 52.6477 ], [ 15.8056, 52.70339 ], [ 15.91679, 52.72016 ], [ 15.94691, 52.7549 ], [ 15.89488, 52.81169 ], [ 15.97565, 52.88313 ], [ 15.9625, 53.04138 ], [ 16.11762, 53.01539 ], [ 16.30099, 53.04503 ], [ 16.37303, 53.12319 ], [ 16.55669, 53.22241 ], [ 16.61985, 53.21882 ], [ 16.67237, 53.3124 ], [ 16.49509, 53.38755 ], [ 16.45971, 53.46401 ], [ 16.64925, 53.49408 ], [ 16.76671, 53.61362 ], [ 16.89225, 53.65587 ], [ 16.9488, 53.5582 ], [ 17.02214, 53.52273 ], [ 17.25739, 53.53467 ], [ 17.39065, 53.49096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL42", "NUTS_ID": "PL42", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Zachodniopomorskie", "geo": "PL42", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.79408, 53.98595 ], [ 16.84136, 53.99206 ], [ 16.88787, 53.93945 ], [ 16.98205, 53.90491 ], [ 16.87362, 53.8526 ], [ 16.92597, 53.79063 ], [ 16.86785, 53.74191 ], [ 16.89225, 53.65587 ], [ 16.76671, 53.61362 ], [ 16.64925, 53.49408 ], [ 16.45971, 53.46401 ], [ 16.49509, 53.38755 ], [ 16.67237, 53.3124 ], [ 16.61985, 53.21882 ], [ 16.55669, 53.22241 ], [ 16.37303, 53.12319 ], [ 16.30099, 53.04503 ], [ 16.11762, 53.01539 ], [ 15.9625, 53.04138 ], [ 15.97237, 53.09916 ], [ 15.86615, 53.11225 ], [ 15.73339, 52.99614 ], [ 15.42379, 52.98333 ], [ 15.31092, 52.95032 ], [ 15.27563, 52.8853 ], [ 15.10874, 52.84184 ], [ 14.92565, 52.87461 ], [ 14.72834, 52.649 ], [ 14.56506, 52.6245 ], [ 14.43644, 52.6799 ], [ 14.22302, 52.81169 ], [ 14.1393, 52.83339 ], [ 14.15669, 52.89559 ], [ 14.14366, 52.96137 ], [ 14.35522, 53.06748 ], [ 14.37608, 53.19026 ], [ 14.43838, 53.25843 ], [ 14.41851, 53.3124 ], [ 14.41216, 53.32964 ], [ 14.26754, 53.69781 ], [ 14.31586, 53.73505 ], [ 14.58419, 53.61467 ], [ 14.60675, 53.64515 ], [ 14.54395, 53.70806 ], [ 14.60621, 53.79127 ], [ 14.55605, 53.85178 ], [ 14.40383, 53.88493 ], [ 14.39201, 53.84636 ], [ 14.31909, 53.82037 ], [ 14.21308, 53.86648 ], [ 14.2263, 53.92865 ], [ 14.38689, 53.92083 ], [ 14.74128, 54.02356 ], [ 14.75221, 53.98559 ], [ 14.85076, 54.04529 ], [ 15.38807, 54.15891 ], [ 15.52185, 54.17475 ], [ 15.55423, 54.18674 ], [ 15.67642, 54.20127 ], [ 15.84972, 54.2409 ], [ 16.12096, 54.28351 ], [ 16.25088, 54.34373 ], [ 16.43385, 54.47447 ], [ 16.51264, 54.53077 ], [ 16.69909, 54.56925 ], [ 16.80774, 54.47447 ], [ 16.82566, 54.45885 ], [ 16.84673, 54.38694 ], [ 16.81887, 54.33528 ], [ 16.85382, 54.26186 ], [ 16.72141, 54.20926 ], [ 16.79708, 54.10734 ], [ 16.79408, 53.98595 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT18", "NUTS_ID": "PT18", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Alentejo", "geo": "PT18", "time_2018_MEAN": 80.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.23147, 39.27843 ], [ -7.2372, 39.21356 ], [ -7.14807, 39.16975 ], [ -7.13486, 39.11305 ], [ -7.01137, 39.10087 ], [ -6.95998, 39.03072 ], [ -7.04933, 38.869 ], [ -7.20313, 38.75102 ], [ -7.2553, 38.71136 ], [ -7.2551, 38.61585 ], [ -7.30899, 38.52101 ], [ -7.30767, 38.44561 ], [ -7.10795, 38.18812 ], [ -6.93174, 38.20838 ], [ -7.01328, 38.02545 ], [ -7.1034, 38.03638 ], [ -7.25054, 37.97914 ], [ -7.29778, 37.85366 ], [ -7.4189, 37.74094 ], [ -7.50095, 37.6033 ], [ -7.51269, 37.52626 ], [ -7.73969, 37.49087 ], [ -7.98004, 37.40123 ], [ -8.07657, 37.3241 ], [ -8.1975, 37.35019 ], [ -8.29726, 37.42958 ], [ -8.37793, 37.42726 ], [ -8.48405, 37.37658 ], [ -8.57181, 37.40543 ], [ -8.71651, 37.39955 ], [ -8.79632, 37.44295 ], [ -8.79564, 37.85812 ], [ -8.813, 37.91855 ], [ -8.87462, 37.966 ], [ -8.78113, 38.19177 ], [ -8.81899, 38.41936 ], [ -8.70595, 38.4197 ], [ -8.73506, 38.51567 ], [ -8.63911, 38.54949 ], [ -8.64472, 38.61323 ], [ -8.50471, 38.72513 ], [ -8.5468, 38.76344 ], [ -8.59996, 38.78306 ], [ -8.61453, 38.81957 ], [ -8.69223, 38.83096 ], [ -8.76975, 38.74214 ], [ -8.92488, 38.75867 ], [ -8.96847, 38.82776 ], [ -8.85195, 39.0014 ], [ -8.87298, 39.02444 ], [ -8.93028, 39.01802 ], [ -8.95296, 39.04926 ], [ -8.93111, 39.11976 ], [ -8.99264, 39.19 ], [ -8.9947, 39.34672 ], [ -8.90342, 39.46601 ], [ -8.75938, 39.47574 ], [ -8.73207, 39.44921 ], [ -8.75209, 39.4129 ], [ -8.69794, 39.40586 ], [ -8.62803, 39.42361 ], [ -8.54314, 39.40168 ], [ -8.46739, 39.4426 ], [ -8.34647, 39.45734 ], [ -8.25532, 39.28942 ], [ -8.1726, 39.23331 ], [ -7.95409, 39.39988 ], [ -8.00156, 39.47241 ], [ -7.95961, 39.55159 ], [ -7.85537, 39.51882 ], [ -7.8251, 39.53736 ], [ -7.69177, 39.63719 ], [ -7.54293, 39.66281 ], [ -7.49702, 39.59373 ], [ -7.30886, 39.45926 ], [ -7.31274, 39.35386 ], [ -7.23147, 39.27843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT20", "NUTS_ID": "PT20", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma dos Açores", "geo": "PT20", "time_2018_MEAN": 78.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -25.01853, 36.96317 ], [ -25.01574, 36.92977 ], [ -25.06882, 36.92947 ], [ -25.09184, 36.94926 ], [ -25.16761, 36.94467 ], [ -25.18608, 36.98518 ], [ -25.14982, 37.00909 ], [ -25.05346, 37.01286 ], [ -25.05465, 36.99017 ], [ -25.01853, 36.96317 ] ] ], [ [ [ -25.62887, 37.83228 ], [ -25.58564, 37.8142 ], [ -25.526, 37.8237 ], [ -25.48805, 37.84694 ], [ -25.4718, 37.82632 ], [ -25.42766, 37.82448 ], [ -25.32889, 37.85387 ], [ -25.26102, 37.86224 ], [ -25.14856, 37.85047 ], [ -25.13455, 37.82387 ], [ -25.13804, 37.78105 ], [ -25.17008, 37.74218 ], [ -25.20245, 37.73532 ], [ -25.24927, 37.74634 ], [ -25.3683, 37.71367 ], [ -25.4837, 37.71755 ], [ -25.50985, 37.7071 ], [ -25.56618, 37.74295 ], [ -25.63061, 37.74984 ], [ -25.69765, 37.73591 ], [ -25.84239, 37.82913 ], [ -25.85502, 37.86051 ], [ -25.78514, 37.9106 ], [ -25.71976, 37.88625 ], [ -25.69141, 37.84312 ], [ -25.62887, 37.83228 ] ] ], [ [ [ -27.25747, 38.80372 ], [ -27.13973, 38.78443 ], [ -27.10121, 38.786 ], [ -27.04231, 38.73601 ], [ -27.04005, 38.69624 ], [ -27.07251, 38.66954 ], [ -27.07801, 38.64288 ], [ -27.17284, 38.65343 ], [ -27.27791, 38.65193 ], [ -27.3536, 38.68684 ], [ -27.3817, 38.74788 ], [ -27.33478, 38.79447 ], [ -27.25747, 38.80372 ] ] ], [ [ [ -27.76934, 38.54209 ], [ -27.82371, 38.53166 ], [ -27.94192, 38.58849 ], [ -28.0257, 38.60161 ], [ -28.06485, 38.62546 ], [ -28.10555, 38.63203 ], [ -28.22704, 38.68178 ], [ -28.27349, 38.73511 ], [ -28.26171, 38.74356 ], [ -28.06693, 38.67891 ], [ -28.02482, 38.67272 ], [ -27.91454, 38.61583 ], [ -27.77439, 38.5642 ], [ -27.76934, 38.54209 ] ] ], [ [ [ -27.94808, 39.02105 ], [ -27.96907, 39.00843 ], [ -28.03637, 39.02408 ], [ -28.07187, 39.06706 ], [ -28.04883, 39.09501 ], [ -27.99557, 39.08797 ], [ -27.94808, 39.02105 ] ] ], [ [ [ -28.05733, 38.44285 ], [ -28.02934, 38.4115 ], [ -28.09427, 38.4002 ], [ -28.17852, 38.4088 ], [ -28.23747, 38.38263 ], [ -28.26764, 38.41074 ], [ -28.36404, 38.41215 ], [ -28.4118, 38.42749 ], [ -28.44584, 38.4203 ], [ -28.517, 38.45262 ], [ -28.54254, 38.51038 ], [ -28.51543, 38.54873 ], [ -28.47629, 38.56074 ], [ -28.39068, 38.55852 ], [ -28.3235, 38.5323 ], [ -28.29497, 38.50699 ], [ -28.24195, 38.49885 ], [ -28.19083, 38.46299 ], [ -28.05733, 38.44285 ] ] ], [ [ [ -28.63236, 38.52347 ], [ -28.72138, 38.516 ], [ -28.75149, 38.52164 ], [ -28.76007, 38.55886 ], [ -28.80483, 38.59094 ], [ -28.75712, 38.61195 ], [ -28.71512, 38.64566 ], [ -28.6658, 38.63282 ], [ -28.59566, 38.59292 ], [ -28.60297, 38.54282 ], [ -28.63236, 38.52347 ] ] ], [ [ [ -31.08413, 39.68409 ], [ -31.112, 39.66988 ], [ -31.1326, 39.70244 ], [ -31.12093, 39.7285 ], [ -31.08513, 39.72218 ], [ -31.08413, 39.68409 ] ] ], [ [ [ -31.20749, 39.52284 ], [ -31.18337, 39.49846 ], [ -31.15585, 39.49949 ], [ -31.12775, 39.46261 ], [ -31.14949, 39.40697 ], [ -31.17618, 39.37595 ], [ -31.24772, 39.37674 ], [ -31.26735, 39.45186 ], [ -31.23559, 39.52003 ], [ -31.20749, 39.52284 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT30", "NUTS_ID": "PT30", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Região Autónoma da Madeira", "geo": "PT30", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.85516, 30.14055 ], [ -15.8639, 30.13783 ], [ -15.87427, 30.14155 ], [ -15.87091, 30.1536 ], [ -15.86178, 30.15502 ], [ -15.85628, 30.14888 ], [ -15.85987, 30.14624 ], [ -15.85516, 30.14055 ] ] ], [ [ [ -16.3262, 33.06113 ], [ -16.37791, 33.02532 ], [ -16.39528, 33.04046 ], [ -16.37563, 33.0749 ], [ -16.32259, 33.10472 ], [ -16.29633, 33.09859 ], [ -16.29689, 33.06115 ], [ -16.3262, 33.06113 ] ] ], [ [ [ -17.12537, 32.82798 ], [ -17.05119, 32.80909 ], [ -16.98242, 32.82688 ], [ -16.90687, 32.83674 ], [ -16.88494, 32.82737 ], [ -16.82169, 32.7685 ], [ -16.73498, 32.74629 ], [ -16.77261, 32.69183 ], [ -16.8313, 32.64115 ], [ -16.90456, 32.64626 ], [ -16.94334, 32.63281 ], [ -17.0197, 32.6533 ], [ -17.21251, 32.73695 ], [ -17.26578, 32.81495 ], [ -17.19426, 32.87076 ], [ -17.16819, 32.86885 ], [ -17.12537, 32.82798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO11", "NUTS_ID": "RO11", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Vest", "geo": "RO11", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.49361, 47.96781 ], [ 23.53383, 48.01155 ], [ 23.76854, 47.9922 ], [ 23.85518, 47.94548 ], [ 24.00772, 47.96479 ], [ 24.23346, 47.90158 ], [ 24.43094, 47.96502 ], [ 24.5884, 47.96064 ], [ 24.69296, 47.85137 ], [ 24.81158, 47.82057 ], [ 24.88776, 47.73234 ], [ 24.9471, 47.72912 ], [ 25.03915, 47.64656 ], [ 24.96084, 47.59685 ], [ 25.0831, 47.52283 ], [ 25.05763, 47.43584 ], [ 25.0156, 47.41721 ], [ 25.06239, 47.35728 ], [ 25.06863, 47.31533 ], [ 25.04069, 47.28698 ], [ 25.06821, 47.25578 ], [ 25.06338, 47.13654 ], [ 24.85445, 47.0925 ], [ 24.7485, 46.98502 ], [ 24.71938, 46.91308 ], [ 24.60693, 46.94314 ], [ 24.43853, 46.77025 ], [ 24.3065, 46.75485 ], [ 24.17958, 46.8047 ], [ 24.07855, 46.73742 ], [ 24.10563, 46.68367 ], [ 24.03558, 46.63372 ], [ 24.05922, 46.59168 ], [ 24.04371, 46.55199 ], [ 23.9684, 46.51727 ], [ 23.98528, 46.43092 ], [ 23.8052, 46.46481 ], [ 23.69378, 46.44942 ], [ 23.6409, 46.40502 ], [ 23.60366, 46.42537 ], [ 23.58029, 46.48904 ], [ 23.39784, 46.53619 ], [ 23.25146, 46.50702 ], [ 23.06666, 46.4702 ], [ 22.9726, 46.54835 ], [ 22.8705, 46.54141 ], [ 22.81195, 46.56886 ], [ 22.6841, 46.51876 ], [ 22.67658, 46.40583 ], [ 22.44933, 46.39026 ], [ 22.37115, 46.43074 ], [ 22.31755, 46.50661 ], [ 22.19645, 46.52019 ], [ 22.15907, 46.59749 ], [ 22.08082, 46.63088 ], [ 21.93625, 46.62254 ], [ 21.87501, 46.67443 ], [ 21.68845, 46.66477 ], [ 21.54906, 46.61574 ], [ 21.49876, 46.65329 ], [ 21.4414, 46.65147 ], [ 21.44611, 46.68946 ], [ 21.51815, 46.71554 ], [ 21.49564, 46.7749 ], [ 21.52975, 46.83471 ], [ 21.60249, 46.87488 ], [ 21.66779, 46.97842 ], [ 21.65896, 47.02213 ], [ 21.68845, 47.05395 ], [ 21.79545, 47.12063 ], [ 21.92931, 47.35728 ], [ 22.01973, 47.39266 ], [ 22.02145, 47.50959 ], [ 22.12832, 47.59809 ], [ 22.18084, 47.60009 ], [ 22.22288, 47.6782 ], [ 22.32067, 47.75548 ], [ 22.42029, 47.74652 ], [ 22.47244, 47.80565 ], [ 22.56411, 47.77359 ], [ 22.66343, 47.78645 ], [ 22.89627, 47.95412 ], [ 22.93524, 47.96934 ], [ 22.93796, 48.01098 ], [ 23.07403, 48.01101 ], [ 23.12515, 48.0875 ], [ 23.1739, 48.10955 ], [ 23.25146, 48.09712 ], [ 23.35816, 48.01464 ], [ 23.49361, 47.96781 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO12", "NUTS_ID": "RO12", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Centru", "geo": "RO12", "time_2018_MEAN": 75.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.66158, 47.09165 ], [ 25.7384, 47.06297 ], [ 25.83979, 46.94802 ], [ 25.77383, 46.88183 ], [ 25.81267, 46.70391 ], [ 25.87975, 46.65454 ], [ 25.90376, 46.69718 ], [ 25.97516, 46.69731 ], [ 26.07216, 46.50706 ], [ 26.02164, 46.48039 ], [ 25.99961, 46.42948 ], [ 26.14619, 46.38934 ], [ 26.17408, 46.31788 ], [ 26.27878, 46.33409 ], [ 26.26344, 46.24634 ], [ 26.32693, 46.22123 ], [ 26.3482, 46.14868 ], [ 26.43998, 46.03888 ], [ 26.38334, 45.90571 ], [ 26.39209, 45.80239 ], [ 26.30141, 45.60793 ], [ 26.2056, 45.61274 ], [ 26.09333, 45.51631 ], [ 26.07272, 45.50579 ], [ 26.04153, 45.48761 ], [ 25.924, 45.51531 ], [ 25.85908, 45.42834 ], [ 25.66285, 45.49743 ], [ 25.45254, 45.44134 ], [ 25.39579, 45.39355 ], [ 25.32158, 45.38109 ], [ 25.26651, 45.42087 ], [ 25.22457, 45.51256 ], [ 25.10034, 45.58187 ], [ 24.68493, 45.60411 ], [ 24.52313, 45.58056 ], [ 24.38425, 45.58241 ], [ 24.15067, 45.51483 ], [ 23.82927, 45.53223 ], [ 23.70361, 45.49677 ], [ 23.65028, 45.4623 ], [ 23.59727, 45.47347 ], [ 23.51198, 45.56292 ], [ 23.3903, 45.63044 ], [ 23.39536, 45.69438 ], [ 23.32417, 45.87167 ], [ 23.25146, 45.96403 ], [ 23.22683, 46.02374 ], [ 23.09386, 46.0616 ], [ 23.06197, 46.12203 ], [ 23.09454, 46.15242 ], [ 23.08283, 46.19131 ], [ 22.98173, 46.22546 ], [ 22.91973, 46.32719 ], [ 22.74872, 46.35121 ], [ 22.67658, 46.40583 ], [ 22.6841, 46.51876 ], [ 22.81195, 46.56886 ], [ 22.8705, 46.54141 ], [ 22.9726, 46.54835 ], [ 23.06666, 46.4702 ], [ 23.25146, 46.50702 ], [ 23.39784, 46.53619 ], [ 23.58029, 46.48904 ], [ 23.60366, 46.42537 ], [ 23.6409, 46.40502 ], [ 23.69378, 46.44942 ], [ 23.8052, 46.46481 ], [ 23.98528, 46.43092 ], [ 23.9684, 46.51727 ], [ 24.04371, 46.55199 ], [ 24.05922, 46.59168 ], [ 24.03558, 46.63372 ], [ 24.10563, 46.68367 ], [ 24.07855, 46.73742 ], [ 24.17958, 46.8047 ], [ 24.3065, 46.75485 ], [ 24.43853, 46.77025 ], [ 24.60693, 46.94314 ], [ 24.71938, 46.91308 ], [ 24.7485, 46.98502 ], [ 24.85445, 47.0925 ], [ 25.06338, 47.13654 ], [ 25.24671, 47.09792 ], [ 25.31295, 47.16054 ], [ 25.39782, 47.18084 ], [ 25.55135, 47.08623 ], [ 25.66158, 47.09165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO21", "NUTS_ID": "RO21", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Nord-Est", "geo": "RO21", "time_2018_MEAN": 74.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.11152, 46.83902 ], [ 28.23869, 46.66166 ], [ 28.21891, 46.5304 ], [ 28.25272, 46.44396 ], [ 28.18689, 46.30602 ], [ 28.11566, 46.24494 ], [ 28.13475, 46.16147 ], [ 28.1158, 46.10783 ], [ 28.0055, 46.11045 ], [ 27.92648, 46.14892 ], [ 27.85541, 46.14807 ], [ 27.7962, 46.10465 ], [ 27.63359, 46.13669 ], [ 27.6019, 46.11966 ], [ 27.61632, 46.06371 ], [ 27.56762, 46.0109 ], [ 27.52746, 46.04576 ], [ 27.50305, 46.13962 ], [ 27.49282, 46.15921 ], [ 27.41246, 46.18882 ], [ 27.35853, 46.16667 ], [ 27.2853, 46.2013 ], [ 27.15558, 46.16115 ], [ 27.06714, 46.09446 ], [ 26.98298, 46.10868 ], [ 26.92884, 46.07386 ], [ 26.81701, 46.07226 ], [ 26.71415, 46.09246 ], [ 26.56339, 46.02287 ], [ 26.43998, 46.03888 ], [ 26.3482, 46.14868 ], [ 26.32693, 46.22123 ], [ 26.26344, 46.24634 ], [ 26.27878, 46.33409 ], [ 26.17408, 46.31788 ], [ 26.14619, 46.38934 ], [ 25.99961, 46.42948 ], [ 26.02164, 46.48039 ], [ 26.07216, 46.50706 ], [ 25.97516, 46.69731 ], [ 25.90376, 46.69718 ], [ 25.87975, 46.65454 ], [ 25.81267, 46.70391 ], [ 25.77383, 46.88183 ], [ 25.83979, 46.94802 ], [ 25.7384, 47.06297 ], [ 25.66158, 47.09165 ], [ 25.55135, 47.08623 ], [ 25.39782, 47.18084 ], [ 25.31295, 47.16054 ], [ 25.24671, 47.09792 ], [ 25.06338, 47.13654 ], [ 25.06821, 47.25578 ], [ 25.04069, 47.28698 ], [ 25.06863, 47.31533 ], [ 25.06239, 47.35728 ], [ 25.0156, 47.41721 ], [ 25.05763, 47.43584 ], [ 25.0831, 47.52283 ], [ 24.96084, 47.59685 ], [ 25.03915, 47.64656 ], [ 24.9471, 47.72912 ], [ 25.1035, 47.75188 ], [ 25.24062, 47.88707 ], [ 25.32042, 47.91378 ], [ 26.09883, 47.9788 ], [ 26.18756, 48.00433 ], [ 26.34752, 48.18741 ], [ 26.54987, 48.21605 ], [ 26.63056, 48.25975 ], [ 26.80232, 48.24945 ], [ 27.01854, 48.12233 ], [ 27.15082, 47.98811 ], [ 27.16383, 47.92186 ], [ 27.28242, 47.75738 ], [ 27.27663, 47.69497 ], [ 27.39117, 47.5894 ], [ 27.44355, 47.53666 ], [ 27.47784, 47.49154 ], [ 27.55157, 47.46633 ], [ 27.59779, 47.35728 ], [ 27.63791, 47.31011 ], [ 27.73549, 47.28219 ], [ 27.81059, 47.14574 ], [ 27.88029, 47.08816 ], [ 28.08184, 46.98136 ], [ 28.11152, 46.83902 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO22", "NUTS_ID": "RO22", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Est", "geo": "RO22", "time_2018_MEAN": 74.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.49282, 46.15921 ], [ 27.50305, 46.13962 ], [ 27.52746, 46.04576 ], [ 27.56762, 46.0109 ], [ 27.61632, 46.06371 ], [ 27.6019, 46.11966 ], [ 27.63359, 46.13669 ], [ 27.7962, 46.10465 ], [ 27.85541, 46.14807 ], [ 27.92648, 46.14892 ], [ 28.0055, 46.11045 ], [ 28.1158, 46.10783 ], [ 28.09184, 46.01478 ], [ 28.11398, 45.81543 ], [ 28.16798, 45.69456 ], [ 28.14766, 45.63489 ], [ 28.10111, 45.60423 ], [ 28.21136, 45.46728 ], [ 28.27044, 45.44187 ], [ 28.3607, 45.31847 ], [ 28.71156, 45.22807 ], [ 28.77583, 45.24238 ], [ 28.7656, 45.28475 ], [ 28.81976, 45.32631 ], [ 28.93484, 45.29034 ], [ 29.23393, 45.42729 ], [ 29.42879, 45.43799 ], [ 29.63006, 45.35592 ], [ 29.67964, 45.21184 ], [ 29.63974, 45.19996 ], [ 29.67836, 45.14866 ], [ 29.61634, 44.87351 ], [ 29.58291, 44.82407 ], [ 29.22476, 44.79112 ], [ 29.09882, 44.75402 ], [ 28.99409, 44.67963 ], [ 28.63238, 44.30118 ], [ 28.66141, 43.98789 ], [ 28.57888, 43.73874 ], [ 28.22073, 43.76396 ], [ 28.00271, 43.84322 ], [ 27.92206, 43.99855 ], [ 27.75621, 43.96178 ], [ 27.69541, 43.98734 ], [ 27.64782, 44.039 ], [ 27.59703, 44.01502 ], [ 27.40286, 44.01879 ], [ 27.29543, 44.08083 ], [ 27.27134, 44.12634 ], [ 27.44637, 44.12794 ], [ 27.62145, 44.19968 ], [ 27.92999, 44.25217 ], [ 28.01737, 44.34025 ], [ 28.09947, 44.46019 ], [ 28.02871, 44.55646 ], [ 28.01916, 44.63225 ], [ 27.89547, 44.70315 ], [ 27.88101, 44.76308 ], [ 27.80199, 44.81712 ], [ 27.69863, 44.77032 ], [ 27.34237, 44.79393 ], [ 27.25234, 44.75906 ], [ 27.20346, 44.78707 ], [ 27.13057, 44.74233 ], [ 27.02148, 44.8147 ], [ 26.96582, 44.79488 ], [ 26.66378, 44.81081 ], [ 26.60555, 44.85699 ], [ 26.5434, 44.93081 ], [ 26.56349, 44.98141 ], [ 26.48949, 45.01734 ], [ 26.46324, 45.06126 ], [ 26.458, 45.18576 ], [ 26.36849, 45.16471 ], [ 26.32798, 45.20736 ], [ 26.25661, 45.21563 ], [ 26.1408, 45.45535 ], [ 26.07272, 45.50579 ], [ 26.09333, 45.51631 ], [ 26.2056, 45.61274 ], [ 26.30141, 45.60793 ], [ 26.39209, 45.80239 ], [ 26.38334, 45.90571 ], [ 26.43998, 46.03888 ], [ 26.56339, 46.02287 ], [ 26.71415, 46.09246 ], [ 26.81701, 46.07226 ], [ 26.92884, 46.07386 ], [ 26.98298, 46.10868 ], [ 27.06714, 46.09446 ], [ 27.15558, 46.16115 ], [ 27.2853, 46.2013 ], [ 27.35853, 46.16667 ], [ 27.41246, 46.18882 ], [ 27.49282, 46.15921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO31", "NUTS_ID": "RO31", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Muntenia", "geo": "RO31", "time_2018_MEAN": 75.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.32158, 45.38109 ], [ 25.39579, 45.39355 ], [ 25.45254, 45.44134 ], [ 25.66285, 45.49743 ], [ 25.85908, 45.42834 ], [ 25.924, 45.51531 ], [ 26.04153, 45.48761 ], [ 26.07272, 45.50579 ], [ 26.1408, 45.45535 ], [ 26.25661, 45.21563 ], [ 26.32798, 45.20736 ], [ 26.36849, 45.16471 ], [ 26.458, 45.18576 ], [ 26.46324, 45.06126 ], [ 26.48949, 45.01734 ], [ 26.56349, 44.98141 ], [ 26.5434, 44.93081 ], [ 26.60555, 44.85699 ], [ 26.66378, 44.81081 ], [ 26.96582, 44.79488 ], [ 27.02148, 44.8147 ], [ 27.13057, 44.74233 ], [ 27.20346, 44.78707 ], [ 27.25234, 44.75906 ], [ 27.34237, 44.79393 ], [ 27.69863, 44.77032 ], [ 27.80199, 44.81712 ], [ 27.88101, 44.76308 ], [ 27.89547, 44.70315 ], [ 28.01916, 44.63225 ], [ 28.02871, 44.55646 ], [ 28.09947, 44.46019 ], [ 28.01737, 44.34025 ], [ 27.92999, 44.25217 ], [ 27.62145, 44.19968 ], [ 27.44637, 44.12794 ], [ 27.27134, 44.12634 ], [ 26.92203, 44.13692 ], [ 26.76556, 44.08169 ], [ 26.38182, 44.03861 ], [ 26.35818, 44.03716 ], [ 26.11174, 43.96881 ], [ 25.7745, 43.70965 ], [ 25.6722, 43.68815 ], [ 25.54454, 43.64285 ], [ 25.39146, 43.62289 ], [ 25.29637, 43.65542 ], [ 24.99397, 43.72322 ], [ 24.73627, 43.69212 ], [ 24.65478, 43.72359 ], [ 24.73632, 43.80022 ], [ 24.61082, 43.99283 ], [ 24.84745, 44.09703 ], [ 24.80125, 44.1848 ], [ 24.8284, 44.35563 ], [ 24.88402, 44.38264 ], [ 24.75317, 44.40589 ], [ 24.70688, 44.71904 ], [ 24.60432, 44.74954 ], [ 24.52719, 44.87968 ], [ 24.46391, 44.82188 ], [ 24.43678, 44.82185 ], [ 24.43812, 44.84538 ], [ 24.50525, 45.03749 ], [ 24.51014, 45.18107 ], [ 24.47324, 45.23264 ], [ 24.4852, 45.44341 ], [ 24.51717, 45.48445 ], [ 24.52313, 45.58056 ], [ 24.68493, 45.60411 ], [ 25.10034, 45.58187 ], [ 25.22457, 45.51256 ], [ 25.26651, 45.42087 ], [ 25.32158, 45.38109 ] ], [ [ 26.30182, 44.76887 ], [ 26.23706, 44.74466 ], [ 26.09654, 44.75897 ], [ 25.9977, 44.74113 ], [ 25.97074, 44.71041 ], [ 25.97956, 44.60928 ], [ 25.89074, 44.54095 ], [ 25.91015, 44.5086 ], [ 25.84838, 44.39426 ], [ 25.89811, 44.34393 ], [ 26.14476, 44.23831 ], [ 26.25996, 44.29499 ], [ 26.26583, 44.33347 ], [ 26.33871, 44.40135 ], [ 26.43192, 44.44437 ], [ 26.37331, 44.48501 ], [ 26.41606, 44.52168 ], [ 26.35137, 44.54536 ], [ 26.38981, 44.60922 ], [ 26.35087, 44.67019 ], [ 26.36113, 44.72527 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO32", "NUTS_ID": "RO32", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Bucureşti-Ilfov", "geo": "RO32", "time_2018_MEAN": 76.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.30182, 44.76887 ], [ 26.36113, 44.72527 ], [ 26.35087, 44.67019 ], [ 26.38981, 44.60922 ], [ 26.35137, 44.54536 ], [ 26.41606, 44.52168 ], [ 26.37331, 44.48501 ], [ 26.43192, 44.44437 ], [ 26.33871, 44.40135 ], [ 26.26583, 44.33347 ], [ 26.25996, 44.29499 ], [ 26.14476, 44.23831 ], [ 25.89811, 44.34393 ], [ 25.84838, 44.39426 ], [ 25.91015, 44.5086 ], [ 25.89074, 44.54095 ], [ 25.97956, 44.60928 ], [ 25.97074, 44.71041 ], [ 25.9977, 44.74113 ], [ 26.09654, 44.75897 ], [ 26.23706, 44.74466 ], [ 26.30182, 44.76887 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH3", "NUTS_ID": "ITH3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Veneto", "geo": "ITH3", "time_2018_MEAN": 83.933333333333337 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.73139, 46.63429 ], [ 12.72414, 46.54856 ], [ 12.64722, 46.51645 ], [ 12.62565, 46.47094 ], [ 12.52869, 46.45272 ], [ 12.4987, 46.41222 ], [ 12.33089, 46.26894 ], [ 12.48638, 46.14962 ], [ 12.47902, 46.10931 ], [ 12.40053, 46.042 ], [ 12.41494, 46.0209 ], [ 12.43305, 45.95719 ], [ 12.5074, 45.91567 ], [ 12.55786, 45.84055 ], [ 12.66167, 45.79244 ], [ 12.77129, 45.84411 ], [ 12.80836, 45.82126 ], [ 12.85078, 45.84367 ], [ 12.91619, 45.82006 ], [ 12.97906, 45.83405 ], [ 12.9859, 45.78405 ], [ 13.09879, 45.64453 ], [ 12.80836, 45.56499 ], [ 12.59826, 45.48619 ], [ 12.58138, 45.4979 ], [ 12.62042, 45.53272 ], [ 12.56752, 45.56016 ], [ 12.40398, 45.53394 ], [ 12.18244, 45.40105 ], [ 12.13256, 45.30037 ], [ 12.14003, 45.26819 ], [ 12.20049, 45.25734 ], [ 12.22575, 45.20783 ], [ 12.29404, 45.21694 ], [ 12.33057, 45.16055 ], [ 12.28099, 45.0928 ], [ 12.32172, 45.00771 ], [ 12.42249, 45.0097 ], [ 12.48248, 44.95444 ], [ 12.45719, 44.88353 ], [ 12.401, 44.86772 ], [ 12.39906, 44.79262 ], [ 12.29325, 44.87514 ], [ 12.2736, 44.93264 ], [ 12.13809, 44.93853 ], [ 12.08229, 44.96904 ], [ 11.79919, 44.97254 ], [ 11.62695, 44.89593 ], [ 11.42677, 44.95008 ], [ 11.18972, 45.05979 ], [ 11.2055, 45.10949 ], [ 11.05514, 45.10995 ], [ 10.92727, 45.23218 ], [ 10.79289, 45.30572 ], [ 10.73459, 45.30228 ], [ 10.70496, 45.33754 ], [ 10.70508, 45.41191 ], [ 10.65466, 45.41583 ], [ 10.6356, 45.60806 ], [ 10.84018, 45.83276 ], [ 10.88174, 45.80072 ], [ 10.86348, 45.71542 ], [ 10.94084, 45.68377 ], [ 11.04216, 45.713 ], [ 11.13834, 45.69709 ], [ 11.26714, 45.91276 ], [ 11.34536, 45.92057 ], [ 11.3846, 45.97827 ], [ 11.51451, 46.00755 ], [ 11.61803, 45.96438 ], [ 11.68432, 45.98408 ], [ 11.67297, 46.0209 ], [ 11.69941, 46.09247 ], [ 11.87895, 46.11919 ], [ 11.9521, 46.18206 ], [ 11.91607, 46.24865 ], [ 11.84232, 46.28075 ], [ 11.78742, 46.35592 ], [ 11.87833, 46.44806 ], [ 11.82484, 46.48301 ], [ 11.82834, 46.50891 ], [ 12.00531, 46.5448 ], [ 12.07797, 46.6658 ], [ 12.21183, 46.61369 ], [ 12.3815, 46.62873 ], [ 12.47792, 46.67984 ], [ 12.69064, 46.65697 ], [ 12.73139, 46.63429 ] ] ], [ [ [ 12.45435, 45.4386 ], [ 12.43107, 45.42394 ], [ 12.40993, 45.45733 ], [ 12.46969, 45.47724 ], [ 12.48769, 45.50013 ], [ 12.5476, 45.50853 ], [ 12.55421, 45.46955 ], [ 12.45435, 45.4386 ] ] ], [ [ [ 12.4006, 45.44546 ], [ 12.37882, 45.40627 ], [ 12.3226, 45.43552 ], [ 12.34775, 45.45403 ], [ 12.4006, 45.44546 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH4", "NUTS_ID": "ITH4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Friuli-Venezia Giulia", "geo": "ITH4", "time_2018_MEAN": 83.466666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.50425, 46.5663 ], [ 13.71419, 46.5227 ], [ 13.68403, 46.43747 ], [ 13.60352, 46.43586 ], [ 13.452, 46.35655 ], [ 13.39805, 46.29438 ], [ 13.43637, 46.23217 ], [ 13.6553, 46.17326 ], [ 13.63098, 46.13112 ], [ 13.49694, 46.05133 ], [ 13.49957, 46.0209 ], [ 13.49019, 46.00058 ], [ 13.5287, 45.97258 ], [ 13.63535, 45.97481 ], [ 13.58362, 45.86277 ], [ 13.59715, 45.81952 ], [ 13.59624, 45.80794 ], [ 13.79669, 45.73836 ], [ 13.906, 45.63385 ], [ 13.83734, 45.58681 ], [ 13.72248, 45.59484 ], [ 13.77019, 45.61569 ], [ 13.75023, 45.67583 ], [ 13.57978, 45.78695 ], [ 13.53824, 45.77657 ], [ 13.50017, 45.71348 ], [ 13.40649, 45.72517 ], [ 13.12558, 45.76098 ], [ 13.07728, 45.71188 ], [ 13.11177, 45.67746 ], [ 13.09879, 45.64453 ], [ 12.9859, 45.78405 ], [ 12.97906, 45.83405 ], [ 12.91619, 45.82006 ], [ 12.85078, 45.84367 ], [ 12.80836, 45.82126 ], [ 12.77129, 45.84411 ], [ 12.66167, 45.79244 ], [ 12.55786, 45.84055 ], [ 12.5074, 45.91567 ], [ 12.43305, 45.95719 ], [ 12.41494, 46.0209 ], [ 12.40053, 46.042 ], [ 12.47902, 46.10931 ], [ 12.48638, 46.14962 ], [ 12.33089, 46.26894 ], [ 12.4987, 46.41222 ], [ 12.52869, 46.45272 ], [ 12.62565, 46.47094 ], [ 12.64722, 46.51645 ], [ 12.72414, 46.54856 ], [ 12.73139, 46.63429 ], [ 12.80836, 46.63214 ], [ 13.14002, 46.59312 ], [ 13.25679, 46.55307 ], [ 13.50425, 46.5663 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITH5", "NUTS_ID": "ITH5", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Emilia-Romagna", "geo": "ITH5", "time_2018_MEAN": 83.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.54868, 45.13265 ], [ 9.71024, 45.06463 ], [ 9.7562, 45.10217 ], [ 9.82171, 45.07201 ], [ 9.87975, 45.08391 ], [ 9.8911, 45.1309 ], [ 9.95493, 45.11888 ], [ 9.99881, 45.1197 ], [ 10.04244, 45.05545 ], [ 10.0835, 45.04396 ], [ 10.19912, 45.03246 ], [ 10.46403, 44.93717 ], [ 10.50434, 44.92242 ], [ 10.58891, 44.91547 ], [ 10.72898, 44.97691 ], [ 10.88791, 44.91427 ], [ 11.00696, 44.95169 ], [ 11.24623, 44.95143 ], [ 11.42677, 44.95008 ], [ 11.62695, 44.89593 ], [ 11.79919, 44.97254 ], [ 12.08229, 44.96904 ], [ 12.13809, 44.93853 ], [ 12.2736, 44.93264 ], [ 12.29325, 44.87514 ], [ 12.39906, 44.79262 ], [ 12.29189, 44.83342 ], [ 12.25005, 44.75362 ], [ 12.25026, 44.66715 ], [ 12.26989, 44.63001 ], [ 12.29003, 44.47199 ], [ 12.38428, 44.22473 ], [ 12.45035, 44.16219 ], [ 12.75068, 43.96967 ], [ 12.7194, 43.87096 ], [ 12.65735, 43.82603 ], [ 12.49396, 43.91555 ], [ 12.51106, 43.94283 ], [ 12.5053, 43.98699 ], [ 12.41155, 43.95304 ], [ 12.4177, 43.89903 ], [ 12.35535, 43.86663 ], [ 12.2838, 43.7649 ], [ 12.2239, 43.76567 ], [ 12.23593, 43.79873 ], [ 12.19052, 43.80642 ], [ 12.16332, 43.76072 ], [ 12.10746, 43.75375 ], [ 11.98291, 43.76574 ], [ 11.71019, 43.87743 ], [ 11.65539, 43.99213 ], [ 11.74074, 44.09995 ], [ 11.71591, 44.12254 ], [ 11.64336, 44.10741 ], [ 11.59856, 44.15786 ], [ 11.52496, 44.15764 ], [ 11.41958, 44.22738 ], [ 11.23223, 44.15014 ], [ 11.24002, 44.10646 ], [ 11.20244, 44.10072 ], [ 11.04945, 44.09023 ], [ 10.97912, 44.1145 ], [ 10.91357, 44.07298 ], [ 10.81479, 44.11617 ], [ 10.68268, 44.15796 ], [ 10.62408, 44.12035 ], [ 10.54061, 44.15025 ], [ 10.47015, 44.22604 ], [ 10.32898, 44.27888 ], [ 10.25388, 44.26857 ], [ 10.14205, 44.35385 ], [ 10.01669, 44.39021 ], [ 9.95493, 44.46803 ], [ 9.82544, 44.46273 ], [ 9.68673, 44.36592 ], [ 9.60346, 44.43127 ], [ 9.47906, 44.40924 ], [ 9.4512, 44.429 ], [ 9.49764, 44.5002 ], [ 9.49336, 44.55586 ], [ 9.203, 44.61348 ], [ 9.20398, 44.6554 ], [ 9.20007, 44.6861 ], [ 9.28088, 44.68995 ], [ 9.32035, 44.726 ], [ 9.29718, 44.76644 ], [ 9.35401, 44.83627 ], [ 9.28848, 44.90301 ], [ 9.3801, 45.05263 ], [ 9.44454, 45.08949 ], [ 9.53832, 45.08929 ], [ 9.54868, 45.13265 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI1", "NUTS_ID": "ITI1", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Toscana", "geo": "ITI1", "time_2018_MEAN": 83.966666666666669 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.14205, 44.35385 ], [ 10.25388, 44.26857 ], [ 10.32898, 44.27888 ], [ 10.47015, 44.22604 ], [ 10.54061, 44.15025 ], [ 10.62408, 44.12035 ], [ 10.68268, 44.15796 ], [ 10.81479, 44.11617 ], [ 10.91357, 44.07298 ], [ 10.97912, 44.1145 ], [ 11.04945, 44.09023 ], [ 11.20244, 44.10072 ], [ 11.24002, 44.10646 ], [ 11.23223, 44.15014 ], [ 11.41958, 44.22738 ], [ 11.52496, 44.15764 ], [ 11.59856, 44.15786 ], [ 11.64336, 44.10741 ], [ 11.71591, 44.12254 ], [ 11.74074, 44.09995 ], [ 11.65539, 43.99213 ], [ 11.71019, 43.87743 ], [ 11.98291, 43.76574 ], [ 12.10746, 43.75375 ], [ 12.16332, 43.76072 ], [ 12.19052, 43.80642 ], [ 12.23593, 43.79873 ], [ 12.2239, 43.76567 ], [ 12.2838, 43.7649 ], [ 12.3469, 43.71791 ], [ 12.20137, 43.64383 ], [ 12.21386, 43.61082 ], [ 12.15761, 43.56397 ], [ 12.10156, 43.51728 ], [ 12.11496, 43.46337 ], [ 12.04036, 43.41779 ], [ 12.13544, 43.32585 ], [ 12.14039, 43.30146 ], [ 12.1484, 43.26202 ], [ 12.05155, 43.24169 ], [ 11.96126, 43.16689 ], [ 11.94552, 43.15147 ], [ 11.91824, 43.12473 ], [ 11.93785, 43.06553 ], [ 11.97569, 43.04358 ], [ 11.93978, 42.92774 ], [ 11.9521, 42.90097 ], [ 11.89499, 42.83465 ], [ 11.74604, 42.78574 ], [ 11.80944, 42.74219 ], [ 11.7948, 42.65136 ], [ 11.58761, 42.55834 ], [ 11.58012, 42.53788 ], [ 11.57331, 42.51926 ], [ 11.59841, 42.4695 ], [ 11.59726, 42.44605 ], [ 11.49732, 42.42799 ], [ 11.44994, 42.37767 ], [ 11.29578, 42.40764 ], [ 11.18369, 42.37706 ], [ 11.12286, 42.39133 ], [ 11.11062, 42.43441 ], [ 11.16899, 42.4695 ], [ 11.15698, 42.55021 ], [ 10.96791, 42.71506 ], [ 10.78823, 42.78956 ], [ 10.76654, 42.8876 ], [ 10.70567, 42.94186 ], [ 10.53205, 42.92862 ], [ 10.49801, 42.94894 ], [ 10.5344, 43.07662 ], [ 10.53277, 43.15147 ], [ 10.53181, 43.1957 ], [ 10.50788, 43.27464 ], [ 10.48183, 43.30146 ], [ 10.45815, 43.32585 ], [ 10.32194, 43.49224 ], [ 10.30427, 43.56397 ], [ 10.29985, 43.58193 ], [ 10.25812, 43.81515 ], [ 10.14348, 43.97542 ], [ 10.01877, 44.04454 ], [ 10.05908, 44.0974 ], [ 9.95493, 44.16548 ], [ 9.68673, 44.36592 ], [ 9.82544, 44.46273 ], [ 9.95493, 44.46803 ], [ 10.01669, 44.39021 ], [ 10.14205, 44.35385 ] ] ], [ [ [ 12.23617, 43.30194 ], [ 12.18958, 43.26742 ], [ 12.17214, 43.27819 ], [ 12.17786, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.23617, 43.30194 ] ] ], [ [ [ 10.93348, 42.33474 ], [ 10.92132, 42.31538 ], [ 10.87474, 42.36029 ], [ 10.88011, 42.39071 ], [ 10.90538, 42.38366 ], [ 10.93348, 42.33474 ] ] ], [ [ [ 10.42837, 42.81604 ], [ 10.43372, 42.77819 ], [ 10.40649, 42.76296 ], [ 10.43425, 42.72029 ], [ 10.38006, 42.71673 ], [ 10.3571, 42.75869 ], [ 10.29283, 42.7542 ], [ 10.28624, 42.73681 ], [ 10.23941, 42.74816 ], [ 10.23573, 42.72723 ], [ 10.1371, 42.73334 ], [ 10.10394, 42.78414 ], [ 10.12341, 42.80279 ], [ 10.1858, 42.81132 ], [ 10.24333, 42.78794 ], [ 10.27045, 42.82514 ], [ 10.33249, 42.8171 ], [ 10.35644, 42.79925 ], [ 10.41243, 42.87171 ], [ 10.44214, 42.84655 ], [ 10.42837, 42.81604 ] ] ], [ [ [ 10.34096, 42.32147 ], [ 10.29191, 42.30861 ], [ 10.27949, 42.33374 ], [ 10.2939, 42.35755 ], [ 10.3353, 42.3471 ], [ 10.34096, 42.32147 ] ] ], [ [ [ 10.11648, 42.5862 ], [ 10.09378, 42.55413 ], [ 10.04894, 42.5774 ], [ 10.08573, 42.61282 ], [ 10.11648, 42.5862 ] ] ], [ [ [ 9.92982, 43.44821 ], [ 9.9057, 43.40091 ], [ 9.86576, 43.41783 ], [ 9.8793, 43.45138 ], [ 9.92982, 43.44821 ] ] ], [ [ [ 9.85064, 43.04531 ], [ 9.80965, 43.00054 ], [ 9.78897, 43.02234 ], [ 9.82662, 43.07557 ], [ 9.85064, 43.04531 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI2", "NUTS_ID": "ITI2", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Umbria", "geo": "ITI2", "time_2018_MEAN": 84.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.76746, 43.45983 ], [ 12.75756, 43.38198 ], [ 12.79687, 43.32585 ], [ 12.79518, 43.30146 ], [ 12.79387, 43.28254 ], [ 12.80786, 43.27016 ], [ 12.86236, 43.21123 ], [ 12.84447, 43.15147 ], [ 12.88823, 43.08861 ], [ 12.90466, 42.97348 ], [ 12.96941, 42.89771 ], [ 13.05834, 42.90575 ], [ 13.16419, 42.84595 ], [ 13.23529, 42.86766 ], [ 13.2543, 42.79218 ], [ 13.18923, 42.73357 ], [ 13.15057, 42.65504 ], [ 12.89635, 42.61642 ], [ 12.8793, 42.56257 ], [ 12.81496, 42.53788 ], [ 12.71103, 42.4695 ], [ 12.54469, 42.39591 ], [ 12.44471, 42.3988 ], [ 12.41434, 42.4695 ], [ 12.40606, 42.48877 ], [ 12.28653, 42.50488 ], [ 12.26892, 42.53788 ], [ 12.20554, 42.65656 ], [ 12.03311, 42.65236 ], [ 11.94595, 42.68561 ], [ 11.96985, 42.75878 ], [ 11.89499, 42.83465 ], [ 11.9521, 42.90097 ], [ 11.93978, 42.92774 ], [ 11.97569, 43.04358 ], [ 11.93785, 43.06553 ], [ 11.91824, 43.12473 ], [ 11.94552, 43.15147 ], [ 11.96126, 43.16689 ], [ 12.05155, 43.24169 ], [ 12.1484, 43.26202 ], [ 12.14039, 43.30146 ], [ 12.13544, 43.32585 ], [ 12.04036, 43.41779 ], [ 12.11496, 43.46337 ], [ 12.10156, 43.51728 ], [ 12.15761, 43.56397 ], [ 12.21386, 43.61082 ], [ 12.34559, 43.60073 ], [ 12.36068, 43.58272 ], [ 12.34969, 43.56397 ], [ 12.33134, 43.53269 ], [ 12.48698, 43.51881 ], [ 12.61717, 43.42961 ], [ 12.76746, 43.45983 ] ], [ [ 12.23617, 43.30194 ], [ 12.18992, 43.32845 ], [ 12.17786, 43.30194 ], [ 12.17214, 43.27819 ], [ 12.18958, 43.26742 ], [ 12.23617, 43.30194 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI3", "NUTS_ID": "ITI3", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Marche", "geo": "ITI3", "time_2018_MEAN": 84.333333333333343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.17262, 43.75035 ], [ 13.39421, 43.63295 ], [ 13.52733, 43.61754 ], [ 13.5949, 43.56397 ], [ 13.61762, 43.54596 ], [ 13.6421, 43.47414 ], [ 13.74297, 43.29415 ], [ 13.80976, 43.15147 ], [ 13.84945, 43.06666 ], [ 13.91573, 42.89458 ], [ 13.66057, 42.81077 ], [ 13.53709, 42.80672 ], [ 13.48755, 42.74089 ], [ 13.35777, 42.69407 ], [ 13.29287, 42.73138 ], [ 13.18923, 42.73357 ], [ 13.2543, 42.79218 ], [ 13.23529, 42.86766 ], [ 13.16419, 42.84595 ], [ 13.05834, 42.90575 ], [ 12.96941, 42.89771 ], [ 12.90466, 42.97348 ], [ 12.88823, 43.08861 ], [ 12.84447, 43.15147 ], [ 12.86236, 43.21123 ], [ 12.80786, 43.27016 ], [ 12.79387, 43.28254 ], [ 12.79518, 43.30146 ], [ 12.79687, 43.32585 ], [ 12.75756, 43.38198 ], [ 12.76746, 43.45983 ], [ 12.61717, 43.42961 ], [ 12.48698, 43.51881 ], [ 12.33134, 43.53269 ], [ 12.34969, 43.56397 ], [ 12.36068, 43.58272 ], [ 12.34559, 43.60073 ], [ 12.21386, 43.61082 ], [ 12.20137, 43.64383 ], [ 12.3469, 43.71791 ], [ 12.2838, 43.7649 ], [ 12.35535, 43.86663 ], [ 12.4177, 43.89903 ], [ 12.49396, 43.91555 ], [ 12.65735, 43.82603 ], [ 12.7194, 43.87096 ], [ 12.75068, 43.96967 ], [ 12.80786, 43.96104 ], [ 13.17262, 43.75035 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ITI4", "NUTS_ID": "ITI4", "LEVL_CODE": 2, "CNTR_CODE": "IT", "NUTS_NAME": "Lazio", "geo": "ITI4", "time_2018_MEAN": 83.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.44471, 42.3988 ], [ 12.54469, 42.39591 ], [ 12.71103, 42.4695 ], [ 12.81496, 42.53788 ], [ 12.8793, 42.56257 ], [ 12.89635, 42.61642 ], [ 13.15057, 42.65504 ], [ 13.18923, 42.73357 ], [ 13.29287, 42.73138 ], [ 13.35777, 42.69407 ], [ 13.4013, 42.6348 ], [ 13.39403, 42.59123 ], [ 13.19606, 42.57917 ], [ 13.16687, 42.53788 ], [ 13.14653, 42.4695 ], [ 13.18174, 42.35614 ], [ 13.30379, 42.23442 ], [ 13.32008, 42.18428 ], [ 13.24839, 42.14491 ], [ 13.10218, 42.15636 ], [ 13.03057, 42.11535 ], [ 13.06137, 42.01986 ], [ 13.2963, 41.94859 ], [ 13.35964, 41.91079 ], [ 13.41064, 41.81857 ], [ 13.55604, 41.76633 ], [ 13.71255, 41.79181 ], [ 13.94104, 41.68794 ], [ 13.99389, 41.64009 ], [ 14.02218, 41.5461 ], [ 13.97793, 41.46245 ], [ 13.87358, 41.41658 ], [ 13.87372, 41.33829 ], [ 13.87313, 41.29446 ], [ 13.7608, 41.22317 ], [ 13.62208, 41.25545 ], [ 13.54598, 41.21757 ], [ 13.28444, 41.29453 ], [ 13.06219, 41.22917 ], [ 12.92079, 41.37849 ], [ 12.77332, 41.41626 ], [ 12.61623, 41.45734 ], [ 12.44677, 41.63081 ], [ 12.23811, 41.74165 ], [ 12.17446, 41.87584 ], [ 12.08939, 41.93799 ], [ 11.924, 42.03103 ], [ 11.83593, 42.03856 ], [ 11.73384, 42.15806 ], [ 11.63582, 42.29047 ], [ 11.44994, 42.37767 ], [ 11.49732, 42.42799 ], [ 11.59726, 42.44605 ], [ 11.59841, 42.4695 ], [ 11.57331, 42.51926 ], [ 11.58012, 42.53788 ], [ 11.58761, 42.55834 ], [ 11.7948, 42.65136 ], [ 11.80944, 42.74219 ], [ 11.74604, 42.78574 ], [ 11.89499, 42.83465 ], [ 11.96985, 42.75878 ], [ 11.94595, 42.68561 ], [ 12.03311, 42.65236 ], [ 12.20554, 42.65656 ], [ 12.26892, 42.53788 ], [ 12.28653, 42.50488 ], [ 12.40606, 42.48877 ], [ 12.41434, 42.4695 ], [ 12.44471, 42.3988 ] ], [ [ 12.4076, 41.89387 ], [ 12.42198, 41.88623 ], [ 12.48574, 41.89096 ], [ 12.47129, 41.9291 ], [ 12.44275, 41.92182 ], [ 12.4076, 41.89387 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "LI00", "NUTS_ID": "LI00", "LEVL_CODE": 2, "CNTR_CODE": "LI", "NUTS_NAME": "Liechtenstein", "geo": "LI00", "time_2018_MEAN": 83.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.62058, 47.15165 ], [ 9.60708, 47.06077 ], [ 9.47605, 47.0518 ], [ 9.51142, 47.10462 ], [ 9.49274, 47.18428 ], [ 9.53075, 47.27058 ], [ 9.62058, 47.15165 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "FI1D", "NUTS_ID": "FI1D", "LEVL_CODE": 2, "CNTR_CODE": "FI", "NUTS_NAME": "Pohjois- ja Itä-Suomi", "geo": "FI1D", "time_2018_MEAN": 81.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.45147, 68.91507 ], [ 28.48638, 68.887 ], [ 28.78929, 68.8628 ], [ 28.70171, 68.73135 ], [ 28.44351, 68.53792 ], [ 28.63581, 68.21463 ], [ 29.32042, 68.07319 ], [ 29.65756, 67.80684 ], [ 30.0075, 67.66638 ], [ 29.91925, 67.51913 ], [ 29.53166, 67.30685 ], [ 29.04623, 66.96257 ], [ 29.07216, 66.84418 ], [ 29.36747, 66.62097 ], [ 29.57294, 66.43286 ], [ 29.70903, 66.27371 ], [ 29.93344, 66.10598 ], [ 30.06623, 65.89275 ], [ 30.12543, 65.71766 ], [ 30.10981, 65.68045 ], [ 29.9879, 65.68871 ], [ 29.76914, 65.64045 ], [ 29.83902, 65.55785 ], [ 29.75473, 65.49737 ], [ 29.73239, 65.35106 ], [ 29.6396, 65.25504 ], [ 29.869, 65.18652 ], [ 29.83628, 65.11909 ], [ 29.82771, 65.10144 ], [ 29.62733, 65.04158 ], [ 29.61006, 64.9886 ], [ 29.63299, 64.8974 ], [ 29.75254, 64.79494 ], [ 30.06043, 64.77233 ], [ 30.06134, 64.71888 ], [ 30.11322, 64.64519 ], [ 29.99548, 64.55636 ], [ 30.05544, 64.41009 ], [ 30.26734, 64.33229 ], [ 30.3814, 64.29042 ], [ 30.46477, 64.25981 ], [ 30.53411, 64.12594 ], [ 30.5189, 64.09291 ], [ 30.49456, 64.04005 ], [ 30.48358, 64.01622 ], [ 30.2488, 63.83159 ], [ 29.97192, 63.75717 ], [ 30.49061, 63.46758 ], [ 30.78246, 63.40429 ], [ 31.22108, 63.22385 ], [ 31.27782, 63.10856 ], [ 31.50557, 62.9888 ], [ 31.57564, 62.90947 ], [ 31.15742, 62.45066 ], [ 30.94514, 62.31636 ], [ 30.65489, 62.20039 ], [ 30.5746, 62.12325 ], [ 30.14397, 61.85224 ], [ 29.55928, 61.72207 ], [ 29.24837, 61.56334 ], [ 28.84913, 61.53238 ], [ 28.77375, 61.48413 ], [ 28.67362, 61.47099 ], [ 28.46373, 61.50423 ], [ 28.2463, 61.38291 ], [ 27.63817, 61.3401 ], [ 27.55413, 61.26555 ], [ 27.38971, 61.24642 ], [ 27.36129, 61.19814 ], [ 27.20582, 61.16247 ], [ 26.94036, 61.17621 ], [ 26.85787, 61.27975 ], [ 26.66569, 61.21154 ], [ 26.63189, 61.28308 ], [ 26.51366, 61.27432 ], [ 26.47285, 61.33551 ], [ 26.408, 61.32427 ], [ 26.33652, 61.35101 ], [ 26.26074, 61.436 ], [ 26.27933, 61.47381 ], [ 26.26028, 61.50809 ], [ 26.31504, 61.60845 ], [ 26.38971, 61.65232 ], [ 26.50754, 61.63416 ], [ 26.5275, 61.68535 ], [ 26.47303, 61.75871 ], [ 26.3739, 61.81814 ], [ 26.33908, 61.93662 ], [ 26.40033, 61.98099 ], [ 26.23401, 62.12499 ], [ 26.31625, 62.19569 ], [ 26.45654, 62.21579 ], [ 26.52062, 62.25788 ], [ 26.64197, 62.2245 ], [ 26.63454, 62.28792 ], [ 26.68163, 62.33924 ], [ 26.74718, 62.35952 ], [ 26.69185, 62.40563 ], [ 26.70913, 62.45295 ], [ 26.6322, 62.4539 ], [ 26.58376, 62.4756 ], [ 26.48386, 62.51906 ], [ 26.59286, 62.61765 ], [ 26.50706, 62.74011 ], [ 26.44568, 62.78172 ], [ 26.34415, 62.75679 ], [ 26.05194, 62.91879 ], [ 26.13262, 62.95235 ], [ 26.27477, 62.93602 ], [ 26.31907, 62.97531 ], [ 26.23558, 63.02371 ], [ 26.27381, 63.05623 ], [ 26.16623, 63.153 ], [ 26.17558, 63.23315 ], [ 26.08268, 63.35559 ], [ 26.16305, 63.43471 ], [ 26.13865, 63.45759 ], [ 25.91279, 63.43835 ], [ 25.78545, 63.49946 ], [ 25.49509, 63.53125 ], [ 25.25092, 63.60768 ], [ 25.151, 63.57521 ], [ 25.0942, 63.48251 ], [ 25.03632, 63.45808 ], [ 24.90211, 63.42872 ], [ 24.78883, 63.36538 ], [ 24.79463, 63.28238 ], [ 24.7212, 63.14767 ], [ 24.57128, 63.15345 ], [ 24.53075, 63.15749 ], [ 24.35901, 63.11643 ], [ 24.24254, 63.13608 ], [ 24.23151, 63.17264 ], [ 24.05435, 63.25739 ], [ 23.83061, 63.28845 ], [ 23.69699, 63.38033 ], [ 23.6431, 63.52666 ], [ 23.46759, 63.62864 ], [ 23.48639, 63.65251 ], [ 23.69966, 63.66331 ], [ 23.70674, 63.68824 ], [ 23.49206, 63.77078 ], [ 23.25146, 63.7296 ], [ 23.2241, 63.72492 ], [ 23.12347, 63.75623 ], [ 23.01289, 63.79142 ], [ 23.05119, 63.86474 ], [ 23.37037, 63.94185 ], [ 23.40973, 64.04005 ], [ 23.42273, 64.07248 ], [ 23.61733, 64.04877 ], [ 23.61681, 64.09291 ], [ 23.71757, 64.20997 ], [ 24.32913, 64.54642 ], [ 24.60771, 64.81511 ], [ 24.76333, 64.8725 ], [ 25.00612, 64.90729 ], [ 25.11939, 64.90545 ], [ 25.28413, 64.85404 ], [ 25.33573, 64.86948 ], [ 25.33843, 64.90024 ], [ 25.26171, 64.97285 ], [ 25.41481, 65.0048 ], [ 25.36966, 65.07454 ], [ 25.25431, 65.14653 ], [ 25.30198, 65.24349 ], [ 25.26833, 65.33644 ], [ 25.32339, 65.45938 ], [ 25.21486, 65.54573 ], [ 25.08461, 65.58895 ], [ 24.87892, 65.65258 ], [ 24.69434, 65.64917 ], [ 24.60771, 65.67968 ], [ 24.54297, 65.65535 ], [ 24.52844, 65.66752 ], [ 24.57892, 65.70042 ], [ 24.54228, 65.73428 ], [ 24.29128, 65.78811 ], [ 24.18742, 65.77602 ], [ 24.15513, 65.81603 ], [ 24.08483, 65.93503 ], [ 23.94631, 66.07716 ], [ 23.91538, 66.15378 ], [ 23.73326, 66.19735 ], [ 23.65214, 66.29579 ], [ 23.67538, 66.37722 ], [ 23.65353, 66.44686 ], [ 23.85845, 66.56389 ], [ 23.87928, 66.62097 ], [ 23.88999, 66.75594 ], [ 23.97824, 66.79633 ], [ 23.98275, 66.83113 ], [ 23.56305, 67.17268 ], [ 23.58364, 67.20785 ], [ 23.5692, 67.2585 ], [ 23.71135, 67.28393 ], [ 23.75878, 67.32308 ], [ 23.74848, 67.42789 ], [ 23.47813, 67.4515 ], [ 23.41242, 67.48351 ], [ 23.55027, 67.60614 ], [ 23.48523, 67.69585 ], [ 23.48769, 67.84846 ], [ 23.64132, 67.92076 ], [ 23.64546, 67.95505 ], [ 23.38994, 68.05139 ], [ 23.29739, 68.14759 ], [ 23.16198, 68.14365 ], [ 23.14191, 68.23692 ], [ 23.08707, 68.27775 ], [ 23.05392, 68.30243 ], [ 22.92654, 68.34826 ], [ 22.30551, 68.47912 ], [ 22.04965, 68.4875 ], [ 21.91246, 68.56971 ], [ 21.45504, 68.69129 ], [ 21.38051, 68.75426 ], [ 21.10967, 68.85694 ], [ 21.04155, 68.87025 ], [ 20.90519, 68.89691 ], [ 20.87669, 68.92701 ], [ 20.88299, 68.97351 ], [ 20.78522, 69.02362 ], [ 20.54864, 69.05997 ], [ 20.73297, 69.10862 ], [ 21.04804, 69.05852 ], [ 21.07782, 69.11077 ], [ 21.0266, 69.21051 ], [ 21.30444, 69.3072 ], [ 21.62487, 69.27076 ], [ 21.98361, 69.07289 ], [ 22.31238, 68.84315 ], [ 22.40178, 68.72652 ], [ 22.54842, 68.73795 ], [ 22.79529, 68.69114 ], [ 23.03436, 68.68564 ], [ 23.21862, 68.6404 ], [ 23.62655, 68.7033 ], [ 23.78407, 68.80859 ], [ 23.90667, 68.82859 ], [ 24.30315, 68.72014 ], [ 24.60771, 68.6673 ], [ 24.7278, 68.64647 ], [ 24.89456, 68.57733 ], [ 25.08671, 68.64344 ], [ 25.15165, 68.77255 ], [ 25.23989, 68.83193 ], [ 25.44621, 68.89263 ], [ 25.60594, 68.89891 ], [ 25.72939, 68.98981 ], [ 25.72346, 69.25503 ], [ 25.82364, 69.38646 ], [ 25.861, 69.52342 ], [ 25.94536, 69.6039 ], [ 25.96301, 69.69018 ], [ 26.34085, 69.84019 ], [ 26.50985, 69.93903 ], [ 26.81429, 69.956 ], [ 27.0868, 69.92213 ], [ 27.64632, 70.07213 ], [ 27.91498, 70.0864 ], [ 28.04525, 69.98639 ], [ 28.41497, 69.82271 ], [ 29.15807, 69.65784 ], [ 29.29967, 69.47851 ], [ 29.19994, 69.39043 ], [ 28.85331, 69.21813 ], [ 28.83032, 69.12078 ], [ 28.92968, 69.0519 ] ] ], [ [ [ 24.87443, 64.98015 ], [ 24.80581, 64.94946 ], [ 24.6623, 64.95959 ], [ 24.60771, 64.98951 ], [ 24.58066, 65.00433 ], [ 24.56381, 65.03534 ], [ 24.60771, 65.05617 ], [ 24.6623, 65.08206 ], [ 24.84106, 65.09169 ], [ 24.95541, 65.0669 ], [ 24.95356, 65.04911 ], [ 24.84739, 65.04843 ], [ 24.87443, 64.98015 ] ] ], [ [ [ 22.98905, 63.78802 ], [ 22.93355, 63.77896 ], [ 22.87813, 63.78682 ], [ 22.86695, 63.83819 ], [ 22.84489, 63.88341 ], [ 22.9154, 63.88903 ], [ 22.98651, 63.80718 ], [ 22.98905, 63.78802 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR82", "NUTS_ID": "TR82", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kastamonu, Çankırı, Sinop", "geo": "TR82", "time_2018_MEAN": 78.733333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.5137, 41.63598 ], [ 35.40539, 41.46925 ], [ 35.42976, 41.3554 ], [ 35.37601, 41.28069 ], [ 35.22874, 41.25748 ], [ 35.11494, 41.38096 ], [ 35.07285, 41.39098 ], [ 34.96069, 41.33941 ], [ 34.85675, 41.21563 ], [ 34.75633, 41.254 ], [ 34.60898, 41.31031 ], [ 34.44935, 41.32738 ], [ 34.31397, 41.28572 ], [ 34.18362, 41.1503 ], [ 34.17256, 41.07099 ], [ 34.24738, 40.98498 ], [ 34.25372, 40.89086 ], [ 34.01584, 40.84455 ], [ 33.92988, 40.82781 ], [ 33.99998, 40.79662 ], [ 34.01584, 40.77459 ], [ 34.08034, 40.68494 ], [ 34.08167, 40.59707 ], [ 34.13083, 40.54912 ], [ 34.1096, 40.47829 ], [ 34.13418, 40.42134 ], [ 34.06323, 40.32772 ], [ 34.01584, 40.30687 ], [ 33.91623, 40.26304 ], [ 33.69542, 40.33224 ], [ 33.36175, 40.39642 ], [ 33.33494, 40.38362 ], [ 33.21737, 40.32748 ], [ 33.11322, 40.39456 ], [ 33.03517, 40.49087 ], [ 32.95296, 40.53153 ], [ 32.9647, 40.61289 ], [ 32.76339, 40.6703 ], [ 32.71541, 40.68398 ], [ 32.59544, 40.68463 ], [ 32.55482, 40.69194 ], [ 32.56697, 40.74303 ], [ 32.56004, 40.80748 ], [ 32.59544, 40.82178 ], [ 32.70733, 40.88135 ], [ 32.76339, 40.93968 ], [ 32.80203, 40.97988 ], [ 32.89133, 40.96678 ], [ 32.99449, 40.99124 ], [ 33.04201, 41.06935 ], [ 32.89986, 41.203 ], [ 32.95321, 41.33334 ], [ 33.11092, 41.42352 ], [ 33.05862, 41.46731 ], [ 33.02081, 41.56625 ], [ 32.88422, 41.57561 ], [ 32.78571, 41.59692 ], [ 32.83183, 41.70656 ], [ 32.76339, 41.80841 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.85315 ], [ 32.91917, 41.87679 ], [ 33.07506, 41.93799 ], [ 33.33494, 42.01273 ], [ 34.22888, 41.95496 ], [ 34.75633, 41.95299 ], [ 34.7795, 41.95291 ], [ 34.87481, 41.99999 ], [ 34.97444, 42.09477 ], [ 35.10866, 42.01477 ], [ 35.09102, 41.93799 ], [ 35.22494, 41.76011 ], [ 35.5137, 41.63598 ] ] ], [ [ [ 35.22217, 42.01551 ], [ 35.21128, 42.00669 ], [ 35.15606, 42.01488 ], [ 35.14493, 42.02685 ], [ 35.15633, 42.04361 ], [ 35.18942, 42.04826 ], [ 35.22217, 42.01551 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR83", "NUTS_ID": "TR83", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Samsun, Tokat, Çorum, Amasya", "geo": "TR83", "time_2018_MEAN": 78.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.15235, 41.14841 ], [ 36.99372, 41.09289 ], [ 36.87248, 40.9594 ], [ 36.67126, 40.91563 ], [ 36.69797, 40.87174 ], [ 36.88431, 40.74894 ], [ 37.19295, 40.70341 ], [ 37.31586, 40.57422 ], [ 37.62084, 40.54122 ], [ 37.58406, 40.42439 ], [ 37.59714, 40.33542 ], [ 37.47575, 40.25552 ], [ 37.43301, 40.17141 ], [ 37.20535, 40.19947 ], [ 37.09704, 40.24215 ], [ 36.9424, 40.21263 ], [ 36.78842, 40.22348 ], [ 36.69878, 40.18362 ], [ 36.60017, 39.98431 ], [ 36.00342, 39.95451 ], [ 35.91346, 40.09504 ], [ 35.59928, 40.0995 ], [ 35.48279, 40.17035 ], [ 35.44259, 40.23402 ], [ 35.35115, 40.24338 ], [ 35.16496, 40.22402 ], [ 35.12987, 40.0431 ], [ 35.06518, 40.0113 ], [ 34.93661, 39.98897 ], [ 34.85886, 40.03299 ], [ 34.75633, 40.00938 ], [ 34.57065, 39.96662 ], [ 34.3981, 40.00099 ], [ 34.17551, 39.94043 ], [ 34.09351, 40.03392 ], [ 34.03655, 40.17931 ], [ 34.01584, 40.19372 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.30687 ], [ 34.06323, 40.32772 ], [ 34.13418, 40.42134 ], [ 34.1096, 40.47829 ], [ 34.13083, 40.54912 ], [ 34.08167, 40.59707 ], [ 34.08034, 40.68494 ], [ 34.01584, 40.77459 ], [ 33.99998, 40.79662 ], [ 33.92988, 40.82781 ], [ 34.01584, 40.84455 ], [ 34.25372, 40.89086 ], [ 34.24738, 40.98498 ], [ 34.17256, 41.07099 ], [ 34.18362, 41.1503 ], [ 34.31397, 41.28572 ], [ 34.44935, 41.32738 ], [ 34.60898, 41.31031 ], [ 34.75633, 41.254 ], [ 34.85675, 41.21563 ], [ 34.96069, 41.33941 ], [ 35.07285, 41.39098 ], [ 35.11494, 41.38096 ], [ 35.22874, 41.25748 ], [ 35.37601, 41.28069 ], [ 35.42976, 41.3554 ], [ 35.40539, 41.46925 ], [ 35.5137, 41.63598 ], [ 35.64562, 41.64118 ], [ 35.97104, 41.72543 ], [ 36.10875, 41.62757 ], [ 36.14513, 41.44989 ], [ 36.39338, 41.25662 ], [ 36.51404, 41.26166 ], [ 36.62842, 41.36811 ], [ 36.6773, 41.37733 ], [ 36.97493, 41.29231 ], [ 37.04225, 41.1885 ], [ 37.15235, 41.14841 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR90", "NUTS_ID": "TR90", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Trabzon, Ordu, Giresun, Rize, Artvin, Gümüşhane", "geo": "TR90", "time_2018_MEAN": 80.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.51518, 41.43828 ], [ 42.58569, 41.32967 ], [ 42.5896, 41.26854 ], [ 42.4363, 41.13056 ], [ 42.28525, 40.91644 ], [ 41.94996, 40.94715 ], [ 41.87999, 40.88635 ], [ 41.86311, 40.75643 ], [ 41.79907, 40.68192 ], [ 41.74509, 40.66164 ], [ 41.56893, 40.67666 ], [ 41.4341, 40.60148 ], [ 41.39001, 40.5769 ], [ 41.34852, 40.60099 ], [ 41.3306, 40.74548 ], [ 41.16402, 40.83494 ], [ 41.08158, 40.76233 ], [ 40.88694, 40.711 ], [ 40.80348, 40.62236 ], [ 40.60606, 40.536 ], [ 40.46146, 40.52868 ], [ 40.42736, 40.52986 ], [ 40.31069, 40.52659 ], [ 40.23075, 40.53151 ], [ 40.1991, 40.53646 ], [ 40.14477, 40.54925 ], [ 40.11553, 40.56142 ], [ 40.08991, 40.57209 ], [ 40.07392, 40.50555 ], [ 39.94214, 40.50451 ], [ 39.85227, 40.42808 ], [ 39.81874, 40.32992 ], [ 39.84007, 40.22873 ], [ 39.65252, 40.10042 ], [ 39.66344, 40.02004 ], [ 39.7895, 39.94015 ], [ 39.62894, 39.86857 ], [ 39.43663, 39.88055 ], [ 38.95668, 40.06851 ], [ 38.88112, 40.0493 ], [ 38.78355, 40.08327 ], [ 38.21983, 40.21618 ], [ 38.21437, 40.35087 ], [ 38.14845, 40.52422 ], [ 37.99766, 40.49303 ], [ 37.93908, 40.39461 ], [ 37.89314, 40.37471 ], [ 37.77289, 40.40017 ], [ 37.70529, 40.34618 ], [ 37.58406, 40.42439 ], [ 37.62084, 40.54122 ], [ 37.31586, 40.57422 ], [ 37.19295, 40.70341 ], [ 36.88431, 40.74894 ], [ 36.69797, 40.87174 ], [ 36.67126, 40.91563 ], [ 36.87248, 40.9594 ], [ 36.99372, 41.09289 ], [ 37.15235, 41.14841 ], [ 37.28432, 41.14158 ], [ 37.52934, 41.02624 ], [ 37.60488, 41.0538 ], [ 37.66902, 41.11919 ], [ 37.76408, 41.10915 ], [ 37.80127, 41.03781 ], [ 37.88736, 40.99068 ], [ 38.10999, 40.95852 ], [ 38.50701, 40.91613 ], [ 38.61878, 40.96564 ], [ 38.70789, 40.9523 ], [ 38.91965, 41.03527 ], [ 39.17931, 41.0741 ], [ 39.26677, 41.05208 ], [ 39.45257, 41.09648 ], [ 39.64111, 41.00351 ], [ 39.74464, 41.00514 ], [ 39.88274, 40.95758 ], [ 40.01317, 40.96093 ], [ 40.13153, 40.91363 ], [ 40.21931, 40.92596 ], [ 40.32829, 40.98788 ], [ 40.3951, 41.02525 ], [ 40.55245, 41.03316 ], [ 40.70987, 41.08732 ], [ 40.80861, 41.1613 ], [ 41.04978, 41.21512 ], [ 41.2519, 41.32993 ], [ 41.40071, 41.38645 ], [ 41.4341, 41.41699 ], [ 41.54713, 41.52038 ], [ 41.82394, 41.43949 ], [ 41.96634, 41.51819 ], [ 42.16716, 41.51131 ], [ 42.51518, 41.43828 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA1", "NUTS_ID": "TRA1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Erzurum, Erzincan, Bayburt", "geo": "TRA1", "time_2018_MEAN": 78.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.57465, 40.66908 ], [ 42.52541, 40.43685 ], [ 42.37791, 40.34763 ], [ 42.1771, 40.32603 ], [ 42.13508, 40.29424 ], [ 42.19825, 40.21491 ], [ 42.36982, 40.15217 ], [ 42.57503, 39.95393 ], [ 42.30981, 39.83828 ], [ 42.33439, 39.78611 ], [ 42.5267, 39.62336 ], [ 42.50718, 39.56025 ], [ 42.4068, 39.4671 ], [ 42.2968, 39.42493 ], [ 42.19225, 39.2743 ], [ 42.12101, 39.22204 ], [ 41.78565, 39.14463 ], [ 41.64231, 39.16246 ], [ 41.47233, 39.33164 ], [ 41.4341, 39.33481 ], [ 41.20683, 39.3537 ], [ 41.04098, 39.44776 ], [ 40.64478, 39.42958 ], [ 40.61512, 39.46762 ], [ 40.65164, 39.52291 ], [ 40.44844, 39.52216 ], [ 40.33745, 39.58649 ], [ 40.17048, 39.59002 ], [ 39.99617, 39.55656 ], [ 39.82404, 39.59856 ], [ 39.77531, 39.53741 ], [ 39.60341, 39.45561 ], [ 39.56154, 39.46101 ], [ 39.52213, 39.51342 ], [ 39.10105, 39.44462 ], [ 38.92857, 39.33575 ], [ 38.80939, 39.31869 ], [ 38.81523, 39.27869 ], [ 38.90082, 39.23792 ], [ 38.74022, 39.13426 ], [ 38.76814, 39.00626 ], [ 38.68405, 39.02384 ], [ 38.60488, 39.11835 ], [ 38.34998, 39.14994 ], [ 38.35888, 39.34901 ], [ 38.41052, 39.42547 ], [ 38.32907, 39.52467 ], [ 38.35373, 39.60337 ], [ 38.33663, 39.66389 ], [ 38.4667, 39.84925 ], [ 38.3777, 39.94344 ], [ 38.43854, 39.98848 ], [ 38.56232, 39.96363 ], [ 38.63593, 39.99395 ], [ 38.73948, 39.98982 ], [ 38.78355, 40.08327 ], [ 38.88112, 40.0493 ], [ 38.95668, 40.06851 ], [ 39.43663, 39.88055 ], [ 39.62894, 39.86857 ], [ 39.7895, 39.94015 ], [ 39.66344, 40.02004 ], [ 39.65252, 40.10042 ], [ 39.84007, 40.22873 ], [ 39.81874, 40.32992 ], [ 39.85227, 40.42808 ], [ 39.94214, 40.50451 ], [ 40.07392, 40.50555 ], [ 40.08991, 40.57209 ], [ 40.11553, 40.56142 ], [ 40.14477, 40.54925 ], [ 40.1991, 40.53646 ], [ 40.23075, 40.53151 ], [ 40.31069, 40.52659 ], [ 40.42736, 40.52986 ], [ 40.46146, 40.52868 ], [ 40.60606, 40.536 ], [ 40.80348, 40.62236 ], [ 40.88694, 40.711 ], [ 41.08158, 40.76233 ], [ 41.16402, 40.83494 ], [ 41.3306, 40.74548 ], [ 41.34852, 40.60099 ], [ 41.39001, 40.5769 ], [ 41.4341, 40.60148 ], [ 41.56893, 40.67666 ], [ 41.74509, 40.66164 ], [ 41.79907, 40.68192 ], [ 41.86311, 40.75643 ], [ 41.87999, 40.88635 ], [ 41.94996, 40.94715 ], [ 42.28525, 40.91644 ], [ 42.55564, 40.7477 ], [ 42.57465, 40.66908 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRA2", "NUTS_ID": "TRA2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ağrı, Kars, Iğdır, Ardahan", "geo": "TRA2", "time_2018_MEAN": 78.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.46964, 41.05734 ], [ 43.67107, 40.917 ], [ 43.74568, 40.74907 ], [ 43.73097, 40.6515 ], [ 43.59126, 40.46562 ], [ 43.70564, 40.17489 ], [ 43.65392, 40.13038 ], [ 43.67494, 40.10098 ], [ 43.92913, 40.01854 ], [ 44.31926, 40.03266 ], [ 44.48381, 39.96211 ], [ 44.60096, 39.82928 ], [ 44.67999, 39.77492 ], [ 44.76834, 39.71415 ], [ 44.81204, 39.63174 ], [ 44.75004, 39.68925 ], [ 44.7365, 39.7018 ], [ 44.67999, 39.73582 ], [ 44.60936, 39.77835 ], [ 44.5021, 39.71699 ], [ 44.40963, 39.4261 ], [ 44.31002, 39.39186 ], [ 44.08724, 39.40997 ], [ 44.04996, 39.36282 ], [ 43.85276, 39.36297 ], [ 43.77934, 39.27605 ], [ 43.76377, 39.24458 ], [ 43.73256, 39.21692 ], [ 43.70297, 39.20949 ], [ 43.67494, 39.21813 ], [ 43.61818, 39.28653 ], [ 43.47334, 39.37299 ], [ 43.35897, 39.38893 ], [ 43.15362, 39.31043 ], [ 43.18881, 39.24965 ], [ 43.17941, 39.20167 ], [ 42.97964, 39.01662 ], [ 42.8977, 38.93637 ], [ 42.75008, 38.92519 ], [ 42.70382, 39.0077 ], [ 42.6536, 39.23259 ], [ 42.50765, 39.42284 ], [ 42.4068, 39.4671 ], [ 42.50718, 39.56025 ], [ 42.5267, 39.62336 ], [ 42.33439, 39.78611 ], [ 42.30981, 39.83828 ], [ 42.57503, 39.95393 ], [ 42.36982, 40.15217 ], [ 42.19825, 40.21491 ], [ 42.13508, 40.29424 ], [ 42.1771, 40.32603 ], [ 42.37791, 40.34763 ], [ 42.52541, 40.43685 ], [ 42.57465, 40.66908 ], [ 42.55564, 40.7477 ], [ 42.28525, 40.91644 ], [ 42.4363, 41.13056 ], [ 42.5896, 41.26854 ], [ 42.58569, 41.32967 ], [ 42.51518, 41.43828 ], [ 42.6037, 41.58151 ], [ 42.82035, 41.57964 ], [ 42.81443, 41.49243 ], [ 42.88981, 41.48871 ], [ 43.03436, 41.37481 ], [ 43.19371, 41.29598 ], [ 43.16708, 41.26294 ], [ 43.238, 41.18258 ], [ 43.38791, 41.19715 ], [ 43.47383, 41.1233 ], [ 43.4547, 41.09486 ], [ 43.46964, 41.05734 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL43", "NUTS_ID": "PL43", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubuskie", "geo": "PL43", "time_2018_MEAN": 76.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.94691, 52.7549 ], [ 15.91679, 52.72016 ], [ 15.8056, 52.70339 ], [ 15.7832, 52.6477 ], [ 15.88574, 52.46007 ], [ 15.81716, 52.43521 ], [ 15.88783, 52.38576 ], [ 15.88081, 52.29043 ], [ 15.8558, 52.24735 ], [ 15.8596, 52.09889 ], [ 15.97472, 52.07007 ], [ 15.97287, 52.01135 ], [ 16.00058, 51.98771 ], [ 16.11796, 51.9843 ], [ 16.13908, 51.89594 ], [ 16.29843, 51.8915 ], [ 16.38577, 51.84236 ], [ 16.41619, 51.78486 ], [ 16.33951, 51.70959 ], [ 16.26887, 51.68482 ], [ 16.17879, 51.71474 ], [ 16.16309, 51.75914 ], [ 15.98727, 51.79501 ], [ 15.96314, 51.74507 ], [ 15.87477, 51.71267 ], [ 15.81329, 51.57693 ], [ 15.7617, 51.56519 ], [ 15.72321, 51.54959 ], [ 15.71403, 51.5174 ], [ 15.60376, 51.45833 ], [ 15.50106, 51.51788 ], [ 15.40044, 51.52494 ], [ 15.31999, 51.4266 ], [ 15.17839, 51.45594 ], [ 14.97418, 51.36395 ], [ 14.95227, 51.46244 ], [ 14.74085, 51.53022 ], [ 14.72986, 51.58178 ], [ 14.7592, 51.61396 ], [ 14.75204, 51.66326 ], [ 14.59998, 51.82596 ], [ 14.70106, 51.91786 ], [ 14.71672, 52.00119 ], [ 14.75523, 52.07002 ], [ 14.6854, 52.1239 ], [ 14.70339, 52.24075 ], [ 14.60089, 52.27205 ], [ 14.53436, 52.39501 ], [ 14.62109, 52.48798 ], [ 14.62516, 52.57624 ], [ 14.56506, 52.6245 ], [ 14.72834, 52.649 ], [ 14.92565, 52.87461 ], [ 15.10874, 52.84184 ], [ 15.27563, 52.8853 ], [ 15.31092, 52.95032 ], [ 15.42379, 52.98333 ], [ 15.73339, 52.99614 ], [ 15.86615, 53.11225 ], [ 15.97237, 53.09916 ], [ 15.9625, 53.04138 ], [ 15.97565, 52.88313 ], [ 15.89488, 52.81169 ], [ 15.94691, 52.7549 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL51", "NUTS_ID": "PL51", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Dolnośląskie", "geo": "PL51", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.41619, 51.78486 ], [ 16.63741, 51.74197 ], [ 16.65785, 51.65953 ], [ 16.75693, 51.63953 ], [ 16.82837, 51.57219 ], [ 16.96707, 51.54755 ], [ 17.18707, 51.57193 ], [ 17.24116, 51.63395 ], [ 17.25743, 51.64284 ], [ 17.44738, 51.62922 ], [ 17.54952, 51.58383 ], [ 17.56755, 51.54697 ], [ 17.52545, 51.47801 ], [ 17.54964, 51.42369 ], [ 17.72987, 51.40961 ], [ 17.74635, 51.2472 ], [ 17.79527, 51.19415 ], [ 17.56873, 51.15837 ], [ 17.57032, 51.08391 ], [ 17.51499, 50.99482 ], [ 17.44068, 50.96231 ], [ 17.42097, 50.91939 ], [ 17.36644, 50.91286 ], [ 17.38661, 50.87864 ], [ 17.34033, 50.84695 ], [ 17.34108, 50.79691 ], [ 17.27391, 50.78147 ], [ 17.27283, 50.74128 ], [ 17.2319, 50.709 ], [ 17.23251, 50.62343 ], [ 17.1649, 50.61346 ], [ 17.10468, 50.58423 ], [ 17.04944, 50.47726 ], [ 16.957, 50.48003 ], [ 16.90792, 50.44945 ], [ 16.8726, 50.41217 ], [ 17.00419, 50.29296 ], [ 17.01693, 50.23331 ], [ 16.86327, 50.19812 ], [ 16.70579, 50.10279 ], [ 16.58029, 50.14279 ], [ 16.54834, 50.22065 ], [ 16.45108, 50.3063 ], [ 16.21165, 50.42699 ], [ 16.38656, 50.52307 ], [ 16.4246, 50.60144 ], [ 16.33349, 50.65261 ], [ 16.24667, 50.66539 ], [ 16.19205, 50.63259 ], [ 16.10732, 50.66207 ], [ 16.02025, 50.60662 ], [ 15.98312, 50.6816 ], [ 15.87122, 50.67712 ], [ 15.81561, 50.74529 ], [ 15.7617, 50.74314 ], [ 15.53527, 50.77938 ], [ 15.44958, 50.80368 ], [ 15.38167, 50.78472 ], [ 15.28345, 50.89892 ], [ 15.27289, 50.9679 ], [ 15.16515, 51.00906 ], [ 15.01273, 51.01559 ], [ 14.98234, 50.99426 ], [ 15.00915, 50.9545 ], [ 14.98793, 50.87067 ], [ 14.82336, 50.87055 ], [ 14.89909, 50.94956 ], [ 14.99569, 51.12516 ], [ 15.03355, 51.26941 ], [ 14.97418, 51.36395 ], [ 15.17839, 51.45594 ], [ 15.31999, 51.4266 ], [ 15.40044, 51.52494 ], [ 15.50106, 51.51788 ], [ 15.60376, 51.45833 ], [ 15.71403, 51.5174 ], [ 15.72321, 51.54959 ], [ 15.7617, 51.56519 ], [ 15.81329, 51.57693 ], [ 15.87477, 51.71267 ], [ 15.96314, 51.74507 ], [ 15.98727, 51.79501 ], [ 16.16309, 51.75914 ], [ 16.17879, 51.71474 ], [ 16.26887, 51.68482 ], [ 16.33951, 51.70959 ], [ 16.41619, 51.78486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL52", "NUTS_ID": "PL52", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Opolskie", "geo": "PL52", "time_2018_MEAN": 77.966666666666654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.93946, 51.10886 ], [ 18.16368, 51.17252 ], [ 18.49057, 51.10015 ], [ 18.5406, 51.13523 ], [ 18.58462, 51.08609 ], [ 18.67295, 51.0569 ], [ 18.68502, 51.01943 ], [ 18.62508, 50.95179 ], [ 18.64548, 50.90742 ], [ 18.61588, 50.85359 ], [ 18.53554, 50.79825 ], [ 18.54421, 50.73929 ], [ 18.4969, 50.68742 ], [ 18.52653, 50.62857 ], [ 18.59053, 50.6023 ], [ 18.60747, 50.55001 ], [ 18.45576, 50.54674 ], [ 18.46358, 50.47603 ], [ 18.38741, 50.47252 ], [ 18.36924, 50.35403 ], [ 18.42587, 50.24897 ], [ 18.05978, 50.17465 ], [ 18.05249, 50.083 ], [ 18.03506, 50.06577 ], [ 18.01448, 50.04538 ], [ 18.03419, 50.01139 ], [ 17.88085, 49.97593 ], [ 17.78328, 50.02598 ], [ 17.73943, 50.083 ], [ 17.61108, 50.15522 ], [ 17.75476, 50.21659 ], [ 17.72671, 50.30974 ], [ 17.69481, 50.31805 ], [ 17.61574, 50.27043 ], [ 17.4296, 50.25451 ], [ 17.18977, 50.38101 ], [ 16.90792, 50.44945 ], [ 16.957, 50.48003 ], [ 17.04944, 50.47726 ], [ 17.10468, 50.58423 ], [ 17.1649, 50.61346 ], [ 17.23251, 50.62343 ], [ 17.2319, 50.709 ], [ 17.27283, 50.74128 ], [ 17.27391, 50.78147 ], [ 17.34108, 50.79691 ], [ 17.34033, 50.84695 ], [ 17.38661, 50.87864 ], [ 17.36644, 50.91286 ], [ 17.42097, 50.91939 ], [ 17.44068, 50.96231 ], [ 17.51499, 50.99482 ], [ 17.57032, 51.08391 ], [ 17.56873, 51.15837 ], [ 17.79527, 51.19415 ], [ 17.84026, 51.17596 ], [ 17.84171, 51.11616 ], [ 17.93946, 51.10886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL61", "NUTS_ID": "PL61", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Kujawsko-pomorskie", "geo": "PL61", "time_2018_MEAN": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.76158, 53.60488 ], [ 19.12928, 53.58826 ], [ 19.19005, 53.56561 ], [ 19.26473, 53.40018 ], [ 19.36266, 53.40955 ], [ 19.53484, 53.33328 ], [ 19.67656, 53.3344 ], [ 19.69497, 53.3124 ], [ 19.71813, 53.28472 ], [ 19.69289, 53.2445 ], [ 19.74033, 53.21806 ], [ 19.7616, 53.1518 ], [ 19.64222, 53.10328 ], [ 19.68481, 52.96304 ], [ 19.59975, 52.97459 ], [ 19.53189, 52.94048 ], [ 19.44466, 52.93904 ], [ 19.48095, 52.87676 ], [ 19.44146, 52.81169 ], [ 19.49867, 52.73479 ], [ 19.44589, 52.71265 ], [ 19.39575, 52.63097 ], [ 19.41116, 52.60055 ], [ 19.35199, 52.56191 ], [ 19.36045, 52.50082 ], [ 19.29531, 52.4365 ], [ 19.28918, 52.39271 ], [ 19.18753, 52.34846 ], [ 19.04712, 52.3328 ], [ 18.94617, 52.3832 ], [ 18.76406, 52.34082 ], [ 18.64605, 52.44527 ], [ 18.53664, 52.48981 ], [ 18.39353, 52.4812 ], [ 18.37715, 52.53746 ], [ 18.223, 52.4845 ], [ 17.94153, 52.5746 ], [ 17.87164, 52.62829 ], [ 17.75684, 52.64999 ], [ 17.68907, 52.61215 ], [ 17.62936, 52.69986 ], [ 17.51055, 52.67934 ], [ 17.45852, 52.73895 ], [ 17.41798, 52.7784 ], [ 17.5131, 52.81169 ], [ 17.49369, 52.93561 ], [ 17.31278, 52.99027 ], [ 17.36012, 53.13899 ], [ 17.34197, 53.20466 ], [ 17.43879, 53.26751 ], [ 17.36355, 53.3124 ], [ 17.25832, 53.37517 ], [ 17.39065, 53.49096 ], [ 17.45243, 53.60034 ], [ 17.69236, 53.59875 ], [ 17.7618, 53.68918 ], [ 17.85207, 53.69131 ], [ 17.90416, 53.74389 ], [ 18.02158, 53.72803 ], [ 18.07204, 53.78107 ], [ 18.24672, 53.74023 ], [ 18.29724, 53.69849 ], [ 18.49823, 53.69561 ], [ 18.5545, 53.663 ], [ 18.76249, 53.69163 ], [ 18.76158, 53.60488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL62", "NUTS_ID": "PL62", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warmińsko-mazurskie", "geo": "PL62", "time_2018_MEAN": 76.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.55932, 54.3225 ], [ 21.68845, 54.32737 ], [ 22.7921, 54.36336 ], [ 22.76753, 54.29867 ], [ 22.51283, 54.22458 ], [ 22.53618, 54.15772 ], [ 22.61861, 54.12198 ], [ 22.60758, 54.05826 ], [ 22.76957, 53.92212 ], [ 22.77183, 53.86712 ], [ 22.69465, 53.76893 ], [ 22.13573, 53.54454 ], [ 22.02991, 53.50722 ], [ 21.94986, 53.51299 ], [ 21.86765, 53.46338 ], [ 21.68845, 53.49262 ], [ 21.61295, 53.48083 ], [ 21.55169, 53.47813 ], [ 21.45383, 53.46427 ], [ 21.38982, 53.42374 ], [ 21.2606, 53.41896 ], [ 21.06902, 53.34074 ], [ 20.95577, 53.35938 ], [ 20.86757, 53.3124 ], [ 20.84153, 53.29852 ], [ 20.81338, 53.30168 ], [ 20.72673, 53.31138 ], [ 20.67595, 53.26953 ], [ 20.41114, 53.21416 ], [ 20.29447, 53.14254 ], [ 19.98091, 53.14864 ], [ 19.89764, 53.20434 ], [ 19.84587, 53.18693 ], [ 19.8274, 53.1468 ], [ 19.7616, 53.1518 ], [ 19.74033, 53.21806 ], [ 19.69289, 53.2445 ], [ 19.71813, 53.28472 ], [ 19.69497, 53.3124 ], [ 19.67656, 53.3344 ], [ 19.53484, 53.33328 ], [ 19.36266, 53.40955 ], [ 19.26473, 53.40018 ], [ 19.19005, 53.56561 ], [ 19.12928, 53.58826 ], [ 19.20887, 53.65087 ], [ 19.32025, 53.8043 ], [ 19.47986, 53.79554 ], [ 19.55291, 53.90653 ], [ 19.53555, 53.94498 ], [ 19.38804, 53.93651 ], [ 19.36946, 53.99717 ], [ 19.2799, 54.02481 ], [ 19.21769, 54.11612 ], [ 19.3166, 54.2034 ], [ 19.25695, 54.27846 ], [ 19.40441, 54.26907 ], [ 19.51603, 54.32487 ], [ 19.66164, 54.35357 ], [ 19.80377, 54.44241 ], [ 20.3135, 54.4022 ], [ 20.81338, 54.37022 ], [ 21.55932, 54.3225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL63", "NUTS_ID": "PL63", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Pomorskie", "geo": "PL63", "time_2018_MEAN": 78.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.95003, 54.35831 ], [ 19.35966, 54.37231 ], [ 19.63903, 54.45829 ], [ 19.6485, 54.45333 ], [ 19.2663, 54.34298 ], [ 19.25695, 54.27846 ], [ 19.3166, 54.2034 ], [ 19.21769, 54.11612 ], [ 19.2799, 54.02481 ], [ 19.36946, 53.99717 ], [ 19.38804, 53.93651 ], [ 19.53555, 53.94498 ], [ 19.55291, 53.90653 ], [ 19.47986, 53.79554 ], [ 19.32025, 53.8043 ], [ 19.20887, 53.65087 ], [ 19.12928, 53.58826 ], [ 18.76158, 53.60488 ], [ 18.76249, 53.69163 ], [ 18.5545, 53.663 ], [ 18.49823, 53.69561 ], [ 18.29724, 53.69849 ], [ 18.24672, 53.74023 ], [ 18.07204, 53.78107 ], [ 18.02158, 53.72803 ], [ 17.90416, 53.74389 ], [ 17.85207, 53.69131 ], [ 17.7618, 53.68918 ], [ 17.69236, 53.59875 ], [ 17.45243, 53.60034 ], [ 17.39065, 53.49096 ], [ 17.25739, 53.53467 ], [ 17.02214, 53.52273 ], [ 16.9488, 53.5582 ], [ 16.89225, 53.65587 ], [ 16.86785, 53.74191 ], [ 16.92597, 53.79063 ], [ 16.87362, 53.8526 ], [ 16.98205, 53.90491 ], [ 16.88787, 53.93945 ], [ 16.84136, 53.99206 ], [ 16.79408, 53.98595 ], [ 16.79708, 54.10734 ], [ 16.72141, 54.20926 ], [ 16.85382, 54.26186 ], [ 16.81887, 54.33528 ], [ 16.84673, 54.38694 ], [ 16.82566, 54.45885 ], [ 16.80774, 54.47447 ], [ 16.69909, 54.56925 ], [ 16.9, 54.59618 ], [ 17.26196, 54.73326 ], [ 17.66661, 54.78323 ], [ 17.97117, 54.83014 ], [ 18.32979, 54.83134 ], [ 18.40778, 54.79575 ], [ 18.40667, 54.72931 ], [ 18.54173, 54.58448 ], [ 18.56122, 54.47447 ], [ 18.61168, 54.42524 ], [ 18.75214, 54.37506 ], [ 18.95003, 54.35831 ] ] ], [ [ [ 18.82524, 54.62498 ], [ 18.81601, 54.5919 ], [ 18.77892, 54.61248 ], [ 18.74112, 54.66157 ], [ 18.7548, 54.66905 ], [ 18.82524, 54.62498 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL71", "NUTS_ID": "PL71", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Łódzkie", "geo": "PL71", "time_2018_MEAN": 76.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.9361, 52.29973 ], [ 20.06272, 52.24186 ], [ 20.09105, 52.15969 ], [ 20.25249, 52.10637 ], [ 20.25893, 52.07472 ], [ 20.21343, 52.02519 ], [ 20.26004, 51.98313 ], [ 20.25511, 51.93954 ], [ 20.4545, 51.93183 ], [ 20.57402, 51.87158 ], [ 20.58536, 51.76059 ], [ 20.64826, 51.72156 ], [ 20.64602, 51.67893 ], [ 20.59568, 51.66147 ], [ 20.45796, 51.69007 ], [ 20.38501, 51.64161 ], [ 20.42489, 51.61162 ], [ 20.46074, 51.51292 ], [ 20.52223, 51.48101 ], [ 20.43932, 51.39197 ], [ 20.43282, 51.3394 ], [ 20.37771, 51.30799 ], [ 20.36775, 51.24696 ], [ 20.269, 51.24197 ], [ 20.19672, 51.19736 ], [ 20.00899, 51.18613 ], [ 19.98732, 51.09194 ], [ 20.04016, 51.05629 ], [ 20.03947, 50.99021 ], [ 20.00022, 50.97202 ], [ 19.88096, 51.03522 ], [ 19.83483, 50.93266 ], [ 19.74706, 50.86597 ], [ 19.70315, 50.84816 ], [ 19.56893, 50.9005 ], [ 19.48745, 50.88652 ], [ 19.39321, 50.99424 ], [ 19.30883, 51.04139 ], [ 19.24314, 51.03684 ], [ 19.23625, 50.99966 ], [ 19.20363, 50.98896 ], [ 18.93173, 51.09112 ], [ 18.67295, 51.0569 ], [ 18.58462, 51.08609 ], [ 18.5406, 51.13523 ], [ 18.49057, 51.10015 ], [ 18.16368, 51.17252 ], [ 18.17238, 51.25186 ], [ 18.0873, 51.34542 ], [ 18.19389, 51.39601 ], [ 18.22168, 51.44654 ], [ 18.3188, 51.42663 ], [ 18.3732, 51.47731 ], [ 18.37084, 51.67315 ], [ 18.47197, 51.85101 ], [ 18.68119, 51.8297 ], [ 18.7572, 51.92221 ], [ 18.72409, 52.05968 ], [ 18.82781, 52.06419 ], [ 18.93292, 52.0958 ], [ 18.93707, 52.19526 ], [ 19.0712, 52.20954 ], [ 19.09575, 52.25379 ], [ 19.05161, 52.28323 ], [ 19.04712, 52.3328 ], [ 19.18753, 52.34846 ], [ 19.28918, 52.39271 ], [ 19.33545, 52.35037 ], [ 19.47432, 52.34181 ], [ 19.65191, 52.25847 ], [ 19.9361, 52.29973 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL72", "NUTS_ID": "PL72", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Świętokrzyskie", "geo": "PL72", "time_2018_MEAN": 77.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.63016, 51.06339 ], [ 21.68845, 51.0681 ], [ 21.75086, 51.04337 ], [ 21.803, 51.07208 ], [ 21.8643, 50.80271 ], [ 21.81507, 50.69527 ], [ 21.68845, 50.61617 ], [ 21.60853, 50.52926 ], [ 21.46741, 50.49171 ], [ 21.20883, 50.3549 ], [ 20.81338, 50.28428 ], [ 20.79468, 50.28094 ], [ 20.68154, 50.20588 ], [ 20.40495, 50.20014 ], [ 20.25632, 50.47382 ], [ 19.94997, 50.50478 ], [ 19.82181, 50.56614 ], [ 19.8952, 50.63034 ], [ 19.8465, 50.69593 ], [ 19.71295, 50.72916 ], [ 19.81591, 50.82409 ], [ 19.74706, 50.86597 ], [ 19.83483, 50.93266 ], [ 19.88096, 51.03522 ], [ 20.00022, 50.97202 ], [ 20.03947, 50.99021 ], [ 20.04016, 51.05629 ], [ 19.98732, 51.09194 ], [ 20.00899, 51.18613 ], [ 20.19672, 51.19736 ], [ 20.269, 51.24197 ], [ 20.36775, 51.24696 ], [ 20.37771, 51.30799 ], [ 20.43282, 51.3394 ], [ 20.49444, 51.32912 ], [ 20.53605, 51.2454 ], [ 20.67137, 51.20795 ], [ 20.7038, 51.16125 ], [ 20.81338, 51.16163 ], [ 20.87541, 51.16184 ], [ 20.92595, 51.18774 ], [ 21.03642, 51.15962 ], [ 21.0815, 51.20067 ], [ 21.17255, 51.08283 ], [ 21.33719, 51.0826 ], [ 21.46011, 51.01772 ], [ 21.63016, 51.06339 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL81", "NUTS_ID": "PL81", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Lubelskie", "geo": "PL81", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.70922, 51.27765 ], [ 23.74593, 51.21746 ], [ 23.85043, 51.15395 ], [ 23.9849, 50.94241 ], [ 24.12124, 50.86553 ], [ 24.09271, 50.83986 ], [ 23.99453, 50.83379 ], [ 23.96792, 50.80163 ], [ 24.06175, 50.7095 ], [ 24.09201, 50.57729 ], [ 24.0034, 50.42129 ], [ 23.72899, 50.38239 ], [ 23.54764, 50.2516 ], [ 23.4415, 50.30482 ], [ 23.35452, 50.38885 ], [ 23.25146, 50.37006 ], [ 23.17374, 50.38614 ], [ 23.01808, 50.29152 ], [ 22.63822, 50.30308 ], [ 22.61498, 50.34683 ], [ 22.50131, 50.35407 ], [ 22.42596, 50.40152 ], [ 22.54398, 50.47913 ], [ 22.51974, 50.58323 ], [ 22.26146, 50.62326 ], [ 22.17651, 50.66923 ], [ 22.19043, 50.74632 ], [ 22.1399, 50.8011 ], [ 22.05407, 50.81494 ], [ 21.93328, 50.77401 ], [ 21.8643, 50.80271 ], [ 21.803, 51.07208 ], [ 21.7881, 51.18021 ], [ 21.84085, 51.35207 ], [ 21.77352, 51.40319 ], [ 21.8403, 51.42778 ], [ 21.86328, 51.47033 ], [ 21.81744, 51.55613 ], [ 21.68845, 51.57334 ], [ 21.61554, 51.61756 ], [ 21.65204, 51.65085 ], [ 21.68845, 51.64498 ], [ 21.74359, 51.62197 ], [ 21.87551, 51.68362 ], [ 21.84916, 51.75061 ], [ 21.94246, 51.79993 ], [ 21.87173, 51.83602 ], [ 21.89991, 51.89317 ], [ 21.87533, 51.95306 ], [ 21.90649, 51.98086 ], [ 22.03442, 52.01702 ], [ 22.2977, 52.02826 ], [ 22.35345, 52.0051 ], [ 22.49138, 52.06111 ], [ 22.6229, 52.01874 ], [ 22.68453, 52.10159 ], [ 22.88662, 52.07412 ], [ 23.12841, 52.28784 ], [ 23.17834, 52.28314 ], [ 23.22123, 52.22623 ], [ 23.25146, 52.21986 ], [ 23.47459, 52.17287 ], [ 23.64928, 52.06862 ], [ 23.67884, 51.98875 ], [ 23.62147, 51.93065 ], [ 23.63148, 51.79279 ], [ 23.54106, 51.73624 ], [ 23.54525, 51.60693 ], [ 23.61744, 51.50954 ], [ 23.68853, 51.40575 ], [ 23.64614, 51.30752 ], [ 23.70922, 51.27765 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL82", "NUTS_ID": "PL82", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podkarpackie", "geo": "PL82", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.51974, 50.58323 ], [ 22.54398, 50.47913 ], [ 22.42596, 50.40152 ], [ 22.50131, 50.35407 ], [ 22.61498, 50.34683 ], [ 22.63822, 50.30308 ], [ 23.01808, 50.29152 ], [ 23.17374, 50.38614 ], [ 23.25146, 50.37006 ], [ 23.35452, 50.38885 ], [ 23.4415, 50.30482 ], [ 23.54764, 50.2516 ], [ 23.2791, 50.09119 ], [ 23.25146, 50.06705 ], [ 22.68615, 49.57317 ], [ 22.65025, 49.52361 ], [ 22.69994, 49.47968 ], [ 22.74388, 49.36305 ], [ 22.72411, 49.18037 ], [ 22.87789, 49.09497 ], [ 22.87977, 49.01469 ], [ 22.56684, 49.08838 ], [ 22.42189, 49.105 ], [ 22.05962, 49.21472 ], [ 21.95917, 49.34152 ], [ 21.84147, 49.38462 ], [ 21.78233, 49.36634 ], [ 21.68845, 49.41321 ], [ 21.61659, 49.44375 ], [ 21.46671, 49.41613 ], [ 21.39771, 49.43379 ], [ 21.40013, 49.50241 ], [ 21.34124, 49.59257 ], [ 21.33793, 49.70259 ], [ 21.24177, 49.7761 ], [ 21.33377, 49.81227 ], [ 21.29715, 49.84286 ], [ 21.23045, 49.86221 ], [ 21.27367, 49.91966 ], [ 21.16244, 49.9609 ], [ 21.16658, 50.083 ], [ 21.15581, 50.25884 ], [ 21.21411, 50.31623 ], [ 21.20883, 50.3549 ], [ 21.46741, 50.49171 ], [ 21.60853, 50.52926 ], [ 21.68845, 50.61617 ], [ 21.81507, 50.69527 ], [ 21.8643, 50.80271 ], [ 21.93328, 50.77401 ], [ 22.05407, 50.81494 ], [ 22.1399, 50.8011 ], [ 22.19043, 50.74632 ], [ 22.17651, 50.66923 ], [ 22.26146, 50.62326 ], [ 22.51974, 50.58323 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL84", "NUTS_ID": "PL84", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Podlaskie", "geo": "PL84", "time_2018_MEAN": 78.233333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.5887, 53.69593 ], [ 23.78277, 53.3124 ], [ 23.80181, 53.27477 ], [ 23.9056, 53.16184 ], [ 23.88137, 53.08269 ], [ 23.93816, 52.97888 ], [ 23.91624, 52.90481 ], [ 23.93947, 52.81169 ], [ 23.91861, 52.70358 ], [ 23.76667, 52.62165 ], [ 23.46744, 52.54756 ], [ 23.25146, 52.35002 ], [ 23.17834, 52.28314 ], [ 23.12841, 52.28784 ], [ 23.05993, 52.29438 ], [ 22.9398, 52.36897 ], [ 22.57747, 52.39943 ], [ 22.50848, 52.53656 ], [ 22.40859, 52.60969 ], [ 22.44272, 52.65264 ], [ 22.43722, 52.7762 ], [ 22.31135, 52.76092 ], [ 22.25445, 52.87865 ], [ 22.03649, 52.86663 ], [ 21.99121, 52.96117 ], [ 21.90226, 53.01162 ], [ 21.89583, 53.06157 ], [ 21.71852, 53.1326 ], [ 21.65385, 53.25827 ], [ 21.68845, 53.3124 ], [ 21.61295, 53.48083 ], [ 21.68845, 53.49262 ], [ 21.86765, 53.46338 ], [ 21.94986, 53.51299 ], [ 22.02991, 53.50722 ], [ 22.13573, 53.54454 ], [ 22.69465, 53.76893 ], [ 22.77183, 53.86712 ], [ 22.76957, 53.92212 ], [ 22.60758, 54.05826 ], [ 22.61861, 54.12198 ], [ 22.53618, 54.15772 ], [ 22.51283, 54.22458 ], [ 22.76753, 54.29867 ], [ 22.7921, 54.36336 ], [ 22.84763, 54.40163 ], [ 22.9824, 54.38493 ], [ 23.0693, 54.30809 ], [ 23.25146, 54.26853 ], [ 23.3215, 54.25333 ], [ 23.47502, 54.15772 ], [ 23.5214, 54.06937 ], [ 23.49198, 53.99279 ], [ 23.51465, 53.95656 ], [ 23.5887, 53.69593 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL91", "NUTS_ID": "PL91", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Warszawski stołeczny", "geo": "PL91", "time_2018_MEAN": 78.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.1218, 52.55359 ], [ 21.14974, 52.5192 ], [ 21.28792, 52.53061 ], [ 21.4255, 52.46632 ], [ 21.52346, 52.48614 ], [ 21.59681, 52.55323 ], [ 21.68845, 52.51439 ], [ 21.72199, 52.48416 ], [ 21.71505, 52.41175 ], [ 21.76696, 52.34629 ], [ 21.75048, 52.31356 ], [ 21.86697, 52.23304 ], [ 21.92935, 52.22294 ], [ 21.91213, 52.16579 ], [ 21.95744, 52.09453 ], [ 21.87999, 52.03929 ], [ 21.87134, 51.99414 ], [ 21.77618, 51.97804 ], [ 21.68845, 52.01307 ], [ 21.55904, 52.03071 ], [ 21.43288, 51.90648 ], [ 21.2758, 51.87679 ], [ 21.23911, 51.90163 ], [ 21.10592, 51.93685 ], [ 20.97426, 51.91549 ], [ 20.81338, 51.93275 ], [ 20.62725, 51.95271 ], [ 20.59344, 52.04646 ], [ 20.48858, 52.04441 ], [ 20.41154, 52.13884 ], [ 20.40664, 52.17796 ], [ 20.47326, 52.19218 ], [ 20.47384, 52.2226 ], [ 20.34107, 52.25009 ], [ 20.41307, 52.33749 ], [ 20.40481, 52.38434 ], [ 20.56651, 52.47148 ], [ 20.62282, 52.57317 ], [ 20.7516, 52.63723 ], [ 20.81338, 52.63556 ], [ 20.84751, 52.63464 ], [ 20.93047, 52.55894 ], [ 21.1218, 52.55359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL92", "NUTS_ID": "PL92", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Mazowiecki regionalny", "geo": "PL92", "time_2018_MEAN": 76.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.61295, 53.48083 ], [ 21.68845, 53.3124 ], [ 21.65385, 53.25827 ], [ 21.71852, 53.1326 ], [ 21.89583, 53.06157 ], [ 21.90226, 53.01162 ], [ 21.99121, 52.96117 ], [ 22.03649, 52.86663 ], [ 22.25445, 52.87865 ], [ 22.31135, 52.76092 ], [ 22.43722, 52.7762 ], [ 22.44272, 52.65264 ], [ 22.40859, 52.60969 ], [ 22.50848, 52.53656 ], [ 22.57747, 52.39943 ], [ 22.9398, 52.36897 ], [ 23.05993, 52.29438 ], [ 23.12841, 52.28784 ], [ 22.88662, 52.07412 ], [ 22.68453, 52.10159 ], [ 22.6229, 52.01874 ], [ 22.49138, 52.06111 ], [ 22.35345, 52.0051 ], [ 22.2977, 52.02826 ], [ 22.03442, 52.01702 ], [ 21.90649, 51.98086 ], [ 21.87533, 51.95306 ], [ 21.89991, 51.89317 ], [ 21.87173, 51.83602 ], [ 21.94246, 51.79993 ], [ 21.84916, 51.75061 ], [ 21.87551, 51.68362 ], [ 21.74359, 51.62197 ], [ 21.68845, 51.64498 ], [ 21.65204, 51.65085 ], [ 21.61554, 51.61756 ], [ 21.68845, 51.57334 ], [ 21.81744, 51.55613 ], [ 21.86328, 51.47033 ], [ 21.8403, 51.42778 ], [ 21.77352, 51.40319 ], [ 21.84085, 51.35207 ], [ 21.7881, 51.18021 ], [ 21.803, 51.07208 ], [ 21.75086, 51.04337 ], [ 21.68845, 51.0681 ], [ 21.63016, 51.06339 ], [ 21.46011, 51.01772 ], [ 21.33719, 51.0826 ], [ 21.17255, 51.08283 ], [ 21.0815, 51.20067 ], [ 21.03642, 51.15962 ], [ 20.92595, 51.18774 ], [ 20.87541, 51.16184 ], [ 20.81338, 51.16163 ], [ 20.7038, 51.16125 ], [ 20.67137, 51.20795 ], [ 20.53605, 51.2454 ], [ 20.49444, 51.32912 ], [ 20.43282, 51.3394 ], [ 20.43932, 51.39197 ], [ 20.52223, 51.48101 ], [ 20.46074, 51.51292 ], [ 20.42489, 51.61162 ], [ 20.38501, 51.64161 ], [ 20.45796, 51.69007 ], [ 20.59568, 51.66147 ], [ 20.64602, 51.67893 ], [ 20.64826, 51.72156 ], [ 20.58536, 51.76059 ], [ 20.57402, 51.87158 ], [ 20.4545, 51.93183 ], [ 20.25511, 51.93954 ], [ 20.26004, 51.98313 ], [ 20.21343, 52.02519 ], [ 20.25893, 52.07472 ], [ 20.25249, 52.10637 ], [ 20.09105, 52.15969 ], [ 20.06272, 52.24186 ], [ 19.9361, 52.29973 ], [ 19.65191, 52.25847 ], [ 19.47432, 52.34181 ], [ 19.33545, 52.35037 ], [ 19.28918, 52.39271 ], [ 19.29531, 52.4365 ], [ 19.36045, 52.50082 ], [ 19.35199, 52.56191 ], [ 19.41116, 52.60055 ], [ 19.39575, 52.63097 ], [ 19.44589, 52.71265 ], [ 19.49867, 52.73479 ], [ 19.44146, 52.81169 ], [ 19.48095, 52.87676 ], [ 19.44466, 52.93904 ], [ 19.53189, 52.94048 ], [ 19.59975, 52.97459 ], [ 19.68481, 52.96304 ], [ 19.64222, 53.10328 ], [ 19.7616, 53.1518 ], [ 19.8274, 53.1468 ], [ 19.84587, 53.18693 ], [ 19.89764, 53.20434 ], [ 19.98091, 53.14864 ], [ 20.29447, 53.14254 ], [ 20.41114, 53.21416 ], [ 20.67595, 53.26953 ], [ 20.72673, 53.31138 ], [ 20.81338, 53.30168 ], [ 20.84153, 53.29852 ], [ 20.86757, 53.3124 ], [ 20.95577, 53.35938 ], [ 21.06902, 53.34074 ], [ 21.2606, 53.41896 ], [ 21.38982, 53.42374 ], [ 21.45383, 53.46427 ], [ 21.55169, 53.47813 ], [ 21.61295, 53.48083 ] ], [ [ 21.23911, 51.90163 ], [ 21.2758, 51.87679 ], [ 21.43288, 51.90648 ], [ 21.55904, 52.03071 ], [ 21.68845, 52.01307 ], [ 21.77618, 51.97804 ], [ 21.87134, 51.99414 ], [ 21.87999, 52.03929 ], [ 21.95744, 52.09453 ], [ 21.91213, 52.16579 ], [ 21.92935, 52.22294 ], [ 21.86697, 52.23304 ], [ 21.75048, 52.31356 ], [ 21.76696, 52.34629 ], [ 21.71505, 52.41175 ], [ 21.72199, 52.48416 ], [ 21.68845, 52.51439 ], [ 21.59681, 52.55323 ], [ 21.52346, 52.48614 ], [ 21.4255, 52.46632 ], [ 21.28792, 52.53061 ], [ 21.14974, 52.5192 ], [ 21.1218, 52.55359 ], [ 20.93047, 52.55894 ], [ 20.84751, 52.63464 ], [ 20.81338, 52.63556 ], [ 20.7516, 52.63723 ], [ 20.62282, 52.57317 ], [ 20.56651, 52.47148 ], [ 20.40481, 52.38434 ], [ 20.41307, 52.33749 ], [ 20.34107, 52.25009 ], [ 20.47384, 52.2226 ], [ 20.47326, 52.19218 ], [ 20.40664, 52.17796 ], [ 20.41154, 52.13884 ], [ 20.48858, 52.04441 ], [ 20.59344, 52.04646 ], [ 20.62725, 51.95271 ], [ 20.81338, 51.93275 ], [ 20.97426, 51.91549 ], [ 21.10592, 51.93685 ], [ 21.23911, 51.90163 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT11", "NUTS_ID": "PT11", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Norte", "geo": "PT11", "time_2018_MEAN": 81.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.16508, 41.8183 ], [ -8.05186, 41.82061 ], [ -7.89843, 41.91935 ], [ -7.87946, 41.86042 ], [ -7.70715, 41.90292 ], [ -7.61572, 41.87497 ], [ -7.59917, 41.83486 ], [ -7.46925, 41.86278 ], [ -7.41816, 41.81815 ], [ -7.20046, 41.87975 ], [ -7.16136, 41.98077 ], [ -7.04739, 41.9513 ], [ -6.9858, 41.97145 ], [ -6.90381, 41.94168 ], [ -6.83453, 41.94867 ], [ -6.79603, 41.98686 ], [ -6.71655, 41.93802 ], [ -6.57668, 41.9548 ], [ -6.56046, 41.88794 ], [ -6.52361, 41.8597 ], [ -6.56055, 41.74638 ], [ -6.53391, 41.67859 ], [ -6.32411, 41.66811 ], [ -6.20392, 41.58575 ], [ -6.32521, 41.39405 ], [ -6.47971, 41.29438 ], [ -6.68979, 41.20524 ], [ -6.80946, 41.04751 ], [ -6.9299, 41.02947 ], [ -7.14894, 40.92928 ], [ -7.17402, 40.93994 ], [ -7.19394, 41.02846 ], [ -7.36327, 41.01078 ], [ -7.33698, 40.94327 ], [ -7.41411, 40.91141 ], [ -7.4542, 40.81261 ], [ -7.52542, 40.86819 ], [ -7.59287, 40.84088 ], [ -7.69199, 40.86468 ], [ -7.70274, 40.93415 ], [ -7.77562, 40.97525 ], [ -7.83321, 40.9673 ], [ -7.91568, 41.01997 ], [ -7.99414, 40.96985 ], [ -8.08917, 40.98756 ], [ -8.12684, 40.94357 ], [ -8.1163, 40.86238 ], [ -8.23969, 40.85679 ], [ -8.27337, 40.76317 ], [ -8.38288, 40.79017 ], [ -8.52298, 40.7736 ], [ -8.5439, 40.87327 ], [ -8.60782, 40.96091 ], [ -8.65312, 40.96478 ], [ -8.6644, 41.11788 ], [ -8.78112, 41.40226 ], [ -8.77643, 41.47197 ], [ -8.81157, 41.61157 ], [ -8.87473, 41.74663 ], [ -8.86319, 41.87207 ], [ -8.62557, 42.04539 ], [ -8.35404, 42.08402 ], [ -8.199, 42.15442 ], [ -8.17948, 42.07894 ], [ -8.11309, 42.07302 ], [ -8.08905, 42.03924 ], [ -8.2074, 41.91949 ], [ -8.16508, 41.8183 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PT15", "NUTS_ID": "PT15", "LEVL_CODE": 2, "CNTR_CODE": "PT", "NUTS_NAME": "Algarve", "geo": "PT15", "time_2018_MEAN": 80.366666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.40192, 37.17483 ], [ -7.55978, 37.14977 ], [ -7.92018, 36.97476 ], [ -8.17375, 37.08613 ], [ -8.59719, 37.1195 ], [ -8.9411, 37.01215 ], [ -8.976, 37.04898 ], [ -8.91057, 37.17866 ], [ -8.79632, 37.44295 ], [ -8.71651, 37.39955 ], [ -8.57181, 37.40543 ], [ -8.48405, 37.37658 ], [ -8.37793, 37.42726 ], [ -8.29726, 37.42958 ], [ -8.1975, 37.35019 ], [ -8.07657, 37.3241 ], [ -7.98004, 37.40123 ], [ -7.73969, 37.49087 ], [ -7.51269, 37.52626 ], [ -7.45186, 37.42108 ], [ -7.40192, 37.17483 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB1", "NUTS_ID": "TRB1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Malatya, Elazığ, Bingöl, Tunceli", "geo": "TRB1", "time_2018_MEAN": 80.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.44844, 39.52216 ], [ 40.65164, 39.52291 ], [ 40.61512, 39.46762 ], [ 40.64478, 39.42958 ], [ 41.04098, 39.44776 ], [ 41.20683, 39.3537 ], [ 41.12677, 39.31663 ], [ 41.11949, 39.27854 ], [ 41.18366, 39.1582 ], [ 41.32091, 39.04946 ], [ 41.19971, 38.95717 ], [ 41.14171, 38.80831 ], [ 41.17656, 38.71673 ], [ 40.97946, 38.61274 ], [ 40.76916, 38.56833 ], [ 40.46947, 38.61434 ], [ 40.37495, 38.47318 ], [ 40.31407, 38.46582 ], [ 39.91291, 38.46785 ], [ 39.85813, 38.38109 ], [ 39.56591, 38.28704 ], [ 39.32196, 38.33325 ], [ 39.16286, 38.30443 ], [ 39.12275, 38.18331 ], [ 39.02427, 38.08888 ], [ 38.82881, 38.0189 ], [ 38.34896, 38.20607 ], [ 38.11183, 38.10871 ], [ 38.13941, 37.99673 ], [ 38.09842, 37.97401 ], [ 38.03815, 37.94061 ], [ 37.85101, 37.90099 ], [ 37.63867, 37.93117 ], [ 37.62975, 37.97401 ], [ 37.62502, 37.99673 ], [ 37.61788, 38.03104 ], [ 37.7413, 38.13782 ], [ 37.74956, 38.22046 ], [ 37.65683, 38.34057 ], [ 37.27203, 38.48206 ], [ 37.34149, 38.59352 ], [ 37.42809, 38.70272 ], [ 37.56478, 38.77403 ], [ 37.5123, 38.8954 ], [ 37.52241, 39.02723 ], [ 37.64452, 39.02723 ], [ 37.74419, 38.98778 ], [ 37.83701, 39.09082 ], [ 38.15655, 39.09783 ], [ 38.28656, 39.15165 ], [ 38.34998, 39.14994 ], [ 38.60488, 39.11835 ], [ 38.68405, 39.02384 ], [ 38.76814, 39.00626 ], [ 38.74022, 39.13426 ], [ 38.90082, 39.23792 ], [ 38.81523, 39.27869 ], [ 38.80939, 39.31869 ], [ 38.92857, 39.33575 ], [ 39.10105, 39.44462 ], [ 39.52213, 39.51342 ], [ 39.56154, 39.46101 ], [ 39.60341, 39.45561 ], [ 39.77531, 39.53741 ], [ 39.82404, 39.59856 ], [ 39.99617, 39.55656 ], [ 40.17048, 39.59002 ], [ 40.33745, 39.58649 ], [ 40.44844, 39.52216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRB2", "NUTS_ID": "TRB2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Van, Muş, Bitlis, Hakkari", "geo": "TRB2", "time_2018_MEAN": 78.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.75008, 38.92519 ], [ 42.8977, 38.93637 ], [ 42.97964, 39.01662 ], [ 43.17941, 39.20167 ], [ 43.18881, 39.24965 ], [ 43.15362, 39.31043 ], [ 43.35897, 39.38893 ], [ 43.47334, 39.37299 ], [ 43.61818, 39.28653 ], [ 43.67494, 39.21813 ], [ 43.70297, 39.20949 ], [ 43.73256, 39.21692 ], [ 43.76377, 39.24458 ], [ 43.77934, 39.27605 ], [ 43.85276, 39.36297 ], [ 44.04996, 39.36282 ], [ 44.07537, 39.33514 ], [ 44.11734, 39.27605 ], [ 44.21049, 39.13349 ], [ 44.17529, 38.97596 ], [ 44.21325, 38.89583 ], [ 44.29526, 38.82649 ], [ 44.26905, 38.7233 ], [ 44.31648, 38.6043 ], [ 44.30939, 38.40508 ], [ 44.43464, 38.38782 ], [ 44.47489, 38.33754 ], [ 44.28019, 37.99673 ], [ 44.26721, 37.97401 ], [ 44.23098, 37.9106 ], [ 44.46286, 37.80957 ], [ 44.57603, 37.76689 ], [ 44.61665, 37.7191 ], [ 44.59883, 37.68999 ], [ 44.58457, 37.61403 ], [ 44.58906, 37.44417 ], [ 44.61278, 37.43436 ], [ 44.64972, 37.4269 ], [ 44.67999, 37.40578 ], [ 44.75004, 37.35691 ], [ 44.8026, 37.32021 ], [ 44.81796, 37.29712 ], [ 44.81956, 37.27857 ], [ 44.79315, 37.17628 ], [ 44.67999, 37.17596 ], [ 44.61421, 37.17578 ], [ 44.35991, 37.0378 ], [ 44.3031, 36.97761 ], [ 44.25297, 36.99818 ], [ 44.20506, 37.0855 ], [ 44.26143, 37.20154 ], [ 44.24898, 37.25107 ], [ 44.21218, 37.27857 ], [ 44.19253, 37.28698 ], [ 44.0285, 37.31449 ], [ 43.96986, 37.27857 ], [ 43.86007, 37.22823 ], [ 43.6147, 37.23199 ], [ 43.4215, 37.27857 ], [ 43.33294, 37.37187 ], [ 43.31769, 37.43726 ], [ 43.35406, 37.47846 ], [ 43.36138, 37.55296 ], [ 43.48854, 37.64767 ], [ 43.50539, 37.71353 ], [ 43.31955, 37.70498 ], [ 43.15727, 37.7603 ], [ 42.96621, 37.76213 ], [ 42.8942, 37.90929 ], [ 42.76799, 37.91363 ], [ 42.67523, 37.88373 ], [ 42.56105, 37.97401 ], [ 42.52287, 37.99673 ], [ 42.2077, 38.18425 ], [ 42.10786, 38.18074 ], [ 42.00246, 38.13532 ], [ 41.7023, 38.24654 ], [ 41.6371, 38.50378 ], [ 41.50618, 38.56498 ], [ 41.4733, 38.51467 ], [ 41.4341, 38.5052 ], [ 41.38055, 38.49225 ], [ 41.30216, 38.67833 ], [ 41.17656, 38.71673 ], [ 41.14171, 38.80831 ], [ 41.19971, 38.95717 ], [ 41.32091, 39.04946 ], [ 41.18366, 39.1582 ], [ 41.11949, 39.27854 ], [ 41.12677, 39.31663 ], [ 41.20683, 39.3537 ], [ 41.4341, 39.33481 ], [ 41.47233, 39.33164 ], [ 41.64231, 39.16246 ], [ 41.78565, 39.14463 ], [ 42.12101, 39.22204 ], [ 42.19225, 39.2743 ], [ 42.2968, 39.42493 ], [ 42.4068, 39.4671 ], [ 42.50765, 39.42284 ], [ 42.6536, 39.23259 ], [ 42.70382, 39.0077 ], [ 42.75008, 38.92519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC1", "NUTS_ID": "TRC1", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Gaziantep, Adıyaman, Kilis", "geo": "TRC1", "time_2018_MEAN": 78.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.12275, 38.18331 ], [ 39.22742, 38.19483 ], [ 39.25695, 38.14826 ], [ 39.18828, 38.04019 ], [ 39.09983, 38.01248 ], [ 39.08769, 37.99673 ], [ 39.07017, 37.97401 ], [ 38.94852, 37.81626 ], [ 38.94468, 37.75772 ], [ 38.82012, 37.6484 ], [ 38.66534, 37.61263 ], [ 38.47484, 37.50139 ], [ 38.20808, 37.43321 ], [ 38.00805, 37.45474 ], [ 37.89739, 37.34025 ], [ 37.86499, 37.27857 ], [ 37.85144, 37.25277 ], [ 37.84532, 37.1617 ], [ 38.04759, 36.84555 ], [ 38.02341, 36.83065 ], [ 37.99272, 36.82447 ], [ 37.9571, 36.81316 ], [ 37.91783, 36.79124 ], [ 37.89024, 36.78079 ], [ 37.77758, 36.74828 ], [ 37.72802, 36.74781 ], [ 37.70773, 36.74762 ], [ 37.6687, 36.73678 ], [ 37.58552, 36.70377 ], [ 37.38932, 36.65807 ], [ 37.1389, 36.6618 ], [ 36.95571, 36.76935 ], [ 36.67878, 36.83266 ], [ 36.66001, 36.83323 ], [ 36.57472, 36.85554 ], [ 36.53614, 36.87188 ], [ 36.51562, 36.88582 ], [ 36.49024, 36.90876 ], [ 36.47543, 36.92898 ], [ 36.46567, 36.94867 ], [ 36.52838, 37.08808 ], [ 36.62405, 37.1617 ], [ 36.69739, 37.21814 ], [ 36.81556, 37.27857 ], [ 36.915, 37.32941 ], [ 36.9655, 37.30843 ], [ 36.98102, 37.27857 ], [ 37.01842, 37.20662 ], [ 37.08389, 37.18083 ], [ 37.24297, 37.27857 ], [ 37.36118, 37.35119 ], [ 37.53984, 37.38008 ], [ 37.62322, 37.51165 ], [ 37.57047, 37.5769 ], [ 37.48499, 37.59732 ], [ 37.43842, 37.64607 ], [ 37.50255, 37.78356 ], [ 37.61454, 37.85695 ], [ 37.63867, 37.93117 ], [ 37.85101, 37.90099 ], [ 38.03815, 37.94061 ], [ 38.09842, 37.97401 ], [ 38.13941, 37.99673 ], [ 38.11183, 38.10871 ], [ 38.34896, 38.20607 ], [ 38.82881, 38.0189 ], [ 39.02427, 38.08888 ], [ 39.12275, 38.18331 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS12", "NUTS_ID": "RS12", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Војводине", "geo": "RS12", "time_2018_MEAN": 75.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.6981, 46.18793 ], [ 19.7978, 46.13588 ], [ 19.86539, 46.15033 ], [ 19.98639, 46.17605 ], [ 20.2643, 46.12637 ], [ 20.36698, 45.9898 ], [ 20.56784, 45.89801 ], [ 20.66283, 45.79412 ], [ 20.72002, 45.7536 ], [ 20.8105, 45.77388 ], [ 20.77141, 45.60595 ], [ 20.81338, 45.55096 ], [ 20.81338, 45.53086 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.47789 ], [ 20.85238, 45.46559 ], [ 21.01658, 45.32463 ], [ 21.17383, 45.31532 ], [ 21.24446, 45.24186 ], [ 21.47918, 45.19303 ], [ 21.50489, 45.12801 ], [ 21.39827, 45.01242 ], [ 21.54186, 44.90366 ], [ 21.39604, 44.86382 ], [ 21.35847, 44.82161 ], [ 21.03748, 44.71815 ], [ 20.81338, 44.6582 ], [ 20.77771, 44.66011 ], [ 20.76, 44.66715 ], [ 20.64737, 44.75091 ], [ 20.58934, 44.84078 ], [ 20.61844, 44.86854 ], [ 20.61128, 44.91492 ], [ 20.4496, 45.01921 ], [ 20.41436, 45.08417 ], [ 20.33414, 45.07441 ], [ 20.35336, 45.02196 ], [ 20.29153, 44.94551 ], [ 20.17702, 44.90239 ], [ 20.10589, 44.79752 ], [ 20.11746, 44.71244 ], [ 20.01125, 44.66715 ], [ 19.98585, 44.64228 ], [ 19.94305, 44.64687 ], [ 19.96075, 44.6933 ], [ 19.71951, 44.7683 ], [ 19.7072, 44.81498 ], [ 19.73974, 44.89239 ], [ 19.72156, 44.91262 ], [ 19.44207, 44.92303 ], [ 19.35116, 44.88906 ], [ 19.16874, 44.91379 ], [ 19.02207, 44.85535 ], [ 19.00527, 44.90905 ], [ 19.0693, 44.91123 ], [ 19.14483, 44.95715 ], [ 19.09199, 44.98629 ], [ 19.08963, 45.13553 ], [ 19.15032, 45.14022 ], [ 19.19709, 45.19117 ], [ 19.26245, 45.17588 ], [ 19.30091, 45.20324 ], [ 19.42517, 45.16769 ], [ 19.41803, 45.22669 ], [ 19.16029, 45.27656 ], [ 18.99214, 45.36642 ], [ 19.00526, 45.43463 ], [ 19.00125, 45.47487 ], [ 19.03394, 45.48682 ], [ 19.0482, 45.5238 ], [ 18.9164, 45.57808 ], [ 18.94506, 45.66621 ], [ 18.91448, 45.71319 ], [ 18.96449, 45.73714 ], [ 18.90628, 45.76581 ], [ 18.86514, 45.82957 ], [ 18.88973, 45.92118 ], [ 19.06536, 45.96689 ], [ 19.11113, 46.03499 ], [ 19.16578, 45.99713 ], [ 19.30271, 45.99155 ], [ 19.29955, 46.02092 ], [ 19.42385, 46.05338 ], [ 19.5463, 46.16584 ], [ 19.6981, 46.18793 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS21", "NUTS_ID": "RS21", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Шумадије и Западне Србије", "geo": "RS21", "time_2018_MEAN": 76.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.40035, 44.31312 ], [ 20.44308, 44.37733 ], [ 20.42664, 44.41902 ], [ 20.45467, 44.43507 ], [ 20.78354, 44.32662 ], [ 20.81338, 44.30844 ], [ 20.85497, 44.28309 ], [ 20.97703, 44.27344 ], [ 21.04066, 44.23008 ], [ 21.13438, 44.21434 ], [ 21.16101, 44.24923 ], [ 21.14757, 44.31517 ], [ 21.25669, 44.26745 ], [ 21.32079, 44.28529 ], [ 21.37436, 44.20996 ], [ 21.47469, 44.20634 ], [ 21.68845, 44.11189 ], [ 21.82202, 44.08251 ], [ 21.78012, 44.02594 ], [ 21.65661, 43.81887 ], [ 21.47748, 43.76624 ], [ 21.51198, 43.71838 ], [ 21.47256, 43.65368 ], [ 21.5395, 43.56397 ], [ 21.56829, 43.52539 ], [ 21.56594, 43.43688 ], [ 21.48016, 43.37899 ], [ 21.35325, 43.39833 ], [ 21.24949, 43.37409 ], [ 21.1176, 43.26653 ], [ 20.99285, 43.24822 ], [ 20.92356, 43.14608 ], [ 20.87383, 43.17402 ], [ 20.81975, 43.27247 ], [ 20.6184, 43.19263 ], [ 20.65298, 43.15147 ], [ 20.68237, 43.11649 ], [ 20.65891, 43.02873 ], [ 20.50598, 42.95621 ], [ 20.51209, 42.88713 ], [ 20.46878, 42.85322 ], [ 20.35293, 42.83338 ], [ 20.32958, 42.91149 ], [ 20.06394, 43.00682 ], [ 19.95901, 43.09635 ], [ 19.84225, 43.11184 ], [ 19.74478, 43.15147 ], [ 19.65798, 43.18676 ], [ 19.52065, 43.30146 ], [ 19.4386, 43.38689 ], [ 19.24187, 43.47307 ], [ 19.22407, 43.52754 ], [ 19.24891, 43.56397 ], [ 19.28796, 43.59094 ], [ 19.45337, 43.58676 ], [ 19.5023, 43.63221 ], [ 19.49368, 43.72069 ], [ 19.2849, 43.95654 ], [ 19.50389, 43.96648 ], [ 19.58947, 44.01472 ], [ 19.5841, 44.06092 ], [ 19.49711, 44.09905 ], [ 19.36767, 44.18725 ], [ 19.31902, 44.26695 ], [ 19.17619, 44.28735 ], [ 19.11892, 44.34293 ], [ 19.14406, 44.43267 ], [ 19.13071, 44.5082 ], [ 19.27759, 44.66715 ], [ 19.35116, 44.88906 ], [ 19.44207, 44.92303 ], [ 19.72156, 44.91262 ], [ 19.73974, 44.89239 ], [ 19.7072, 44.81498 ], [ 19.71951, 44.7683 ], [ 19.96075, 44.6933 ], [ 19.94305, 44.64687 ], [ 19.98585, 44.64228 ], [ 19.99031, 44.58565 ], [ 20.04152, 44.5292 ], [ 20.15355, 44.52146 ], [ 20.20663, 44.548 ], [ 20.24181, 44.47015 ], [ 20.2119, 44.33363 ], [ 20.25733, 44.28511 ], [ 20.30465, 44.26965 ], [ 20.40035, 44.31312 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS22", "NUTS_ID": "RS22", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Регион Јужне и Источне Србије", "geo": "RS22", "time_2018_MEAN": 75.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.01235, 44.60232 ], [ 22.01613, 44.5992 ], [ 22.05085, 44.53337 ], [ 22.14443, 44.47813 ], [ 22.18979, 44.49656 ], [ 22.31154, 44.65699 ], [ 22.43335, 44.70566 ], [ 22.70373, 44.60191 ], [ 22.75184, 44.5608 ], [ 22.74379, 44.53531 ], [ 22.60115, 44.54541 ], [ 22.53876, 44.48216 ], [ 22.46844, 44.46493 ], [ 22.53956, 44.32742 ], [ 22.67236, 44.27521 ], [ 22.67516, 44.21566 ], [ 22.62779, 44.17021 ], [ 22.61118, 44.06715 ], [ 22.53615, 44.04551 ], [ 22.41729, 43.99973 ], [ 22.36596, 43.80644 ], [ 22.41106, 43.7019 ], [ 22.47953, 43.64368 ], [ 22.5049, 43.56397 ], [ 22.52976, 43.48583 ], [ 22.66698, 43.40275 ], [ 22.74745, 43.38661 ], [ 22.82903, 43.30146 ], [ 22.89973, 43.22768 ], [ 23.00621, 43.19288 ], [ 22.99017, 43.15147 ], [ 22.97577, 43.11428 ], [ 22.79371, 42.97941 ], [ 22.77433, 42.94108 ], [ 22.7484, 42.88979 ], [ 22.51551, 42.86854 ], [ 22.44282, 42.82546 ], [ 22.49163, 42.73997 ], [ 22.46147, 42.64849 ], [ 22.45687, 42.57308 ], [ 22.52769, 42.51538 ], [ 22.54295, 42.4695 ], [ 22.45382, 42.34697 ], [ 22.36021, 42.31116 ], [ 22.27404, 42.36338 ], [ 22.06287, 42.30028 ], [ 21.95083, 42.33433 ], [ 21.90867, 42.30714 ], [ 21.84632, 42.31632 ], [ 21.68845, 42.23892 ], [ 21.58695, 42.26282 ], [ 21.56247, 42.34303 ], [ 21.6509, 42.4695 ], [ 21.68845, 42.50216 ], [ 21.70998, 42.53788 ], [ 21.7783, 42.65125 ], [ 21.75341, 42.70095 ], [ 21.66005, 42.68276 ], [ 21.57168, 42.72942 ], [ 21.40954, 42.74865 ], [ 21.43512, 42.87228 ], [ 21.26835, 42.90849 ], [ 21.22798, 43.00562 ], [ 21.16953, 43.01651 ], [ 21.11767, 43.11984 ], [ 20.92356, 43.14608 ], [ 20.99285, 43.24822 ], [ 21.1176, 43.26653 ], [ 21.24949, 43.37409 ], [ 21.35325, 43.39833 ], [ 21.48016, 43.37899 ], [ 21.56594, 43.43688 ], [ 21.56829, 43.52539 ], [ 21.5395, 43.56397 ], [ 21.47256, 43.65368 ], [ 21.51198, 43.71838 ], [ 21.47748, 43.76624 ], [ 21.65661, 43.81887 ], [ 21.78012, 44.02594 ], [ 21.82202, 44.08251 ], [ 21.68845, 44.11189 ], [ 21.47469, 44.20634 ], [ 21.37436, 44.20996 ], [ 21.32079, 44.28529 ], [ 21.25669, 44.26745 ], [ 21.14757, 44.31517 ], [ 21.16101, 44.24923 ], [ 21.13438, 44.21434 ], [ 21.04066, 44.23008 ], [ 20.97703, 44.27344 ], [ 20.85497, 44.28309 ], [ 20.81338, 44.30844 ], [ 20.78354, 44.32662 ], [ 20.75976, 44.4208 ], [ 20.81338, 44.44599 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.49487 ], [ 20.76591, 44.548 ], [ 20.80767, 44.58719 ], [ 20.81338, 44.62119 ], [ 20.81338, 44.6582 ], [ 21.03748, 44.71815 ], [ 21.35847, 44.82161 ], [ 21.40682, 44.78106 ], [ 21.58112, 44.75669 ], [ 21.62359, 44.66715 ], [ 21.64101, 44.66026 ], [ 21.68845, 44.66502 ], [ 21.96508, 44.63664 ], [ 22.01235, 44.60232 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE11", "NUTS_ID": "SE11", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Stockholm", "geo": "SE11", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.30555, 59.52263 ], [ 19.26265, 59.49903 ], [ 19.23178, 59.51862 ], [ 19.28769, 59.55509 ], [ 19.30555, 59.52263 ] ] ], [ [ [ 19.23172, 59.43956 ], [ 19.222, 59.39993 ], [ 19.17601, 59.43639 ], [ 19.21348, 59.47186 ], [ 19.23172, 59.43956 ] ] ], [ [ [ 19.1906, 59.80339 ], [ 19.21765, 59.76268 ], [ 19.20864, 59.7495 ], [ 19.16039, 59.75989 ], [ 19.11931, 59.72113 ], [ 19.09453, 59.75398 ], [ 19.13693, 59.78788 ], [ 19.15517, 59.77567 ], [ 19.1906, 59.80339 ] ] ], [ [ [ 19.17104, 59.36861 ], [ 19.13301, 59.33274 ], [ 19.10263, 59.3577 ], [ 19.15775, 59.39567 ], [ 19.17104, 59.36861 ] ] ], [ [ [ 19.13735, 59.81077 ], [ 19.11137, 59.81077 ], [ 19.10202, 59.84793 ], [ 19.13409, 59.86726 ], [ 19.15627, 59.8496 ], [ 19.13735, 59.81077 ] ] ], [ [ [ 17.5724, 58.95085 ], [ 17.52999, 58.98363 ], [ 17.3832, 58.98663 ], [ 17.33058, 59.03962 ], [ 17.31345, 59.13887 ], [ 17.25451, 59.2135 ], [ 17.34812, 59.2869 ], [ 17.34518, 59.34499 ], [ 17.41613, 59.38414 ], [ 17.48403, 59.45211 ], [ 17.49054, 59.50861 ], [ 17.55403, 59.55234 ], [ 17.53632, 59.61649 ], [ 17.62735, 59.67832 ], [ 17.79786, 59.68186 ], [ 18.03734, 59.73504 ], [ 18.15621, 59.81892 ], [ 18.36942, 59.87326 ], [ 18.44638, 59.99756 ], [ 18.42038, 60.03936 ], [ 18.51327, 60.14809 ], [ 18.68292, 60.13264 ], [ 18.77171, 60.15572 ], [ 18.91929, 59.96397 ], [ 19.03702, 59.86065 ], [ 19.03832, 59.73347 ], [ 18.78143, 59.65141 ], [ 18.62222, 59.45355 ], [ 18.46807, 59.46661 ], [ 18.33269, 59.40382 ], [ 18.39454, 59.36058 ], [ 18.5023, 59.38507 ], [ 18.6778, 59.3542 ], [ 18.75577, 59.2844 ], [ 18.74767, 59.22126 ], [ 18.71931, 59.2096 ], [ 18.67651, 59.25803 ], [ 18.51262, 59.24029 ], [ 18.35832, 59.27923 ], [ 18.35754, 59.21544 ], [ 18.4353, 59.12082 ], [ 18.42127, 59.07204 ], [ 18.32609, 59.09542 ], [ 18.15864, 59.05732 ], [ 18.13523, 58.99889 ], [ 18.00188, 58.93925 ], [ 17.89955, 58.83848 ], [ 17.78594, 58.91337 ], [ 17.73254, 59.01363 ], [ 17.65973, 58.95112 ], [ 17.5724, 58.95085 ] ] ], [ [ [ 18.99616, 59.45512 ], [ 18.95581, 59.4486 ], [ 18.92115, 59.4713 ], [ 18.98377, 59.49635 ], [ 18.99616, 59.45512 ] ] ], [ [ [ 18.97377, 59.63765 ], [ 18.88994, 59.58185 ], [ 18.83709, 59.59426 ], [ 18.87391, 59.63765 ], [ 18.92161, 59.63765 ], [ 18.95398, 59.65422 ], [ 18.97377, 59.63765 ] ] ], [ [ [ 18.95625, 59.42167 ], [ 18.96465, 59.40089 ], [ 18.94472, 59.36451 ], [ 18.90125, 59.40493 ], [ 18.84384, 59.39022 ], [ 18.85153, 59.43062 ], [ 18.90727, 59.44728 ], [ 18.92207, 59.42262 ], [ 18.95625, 59.42167 ] ] ], [ [ [ 18.86943, 59.48913 ], [ 18.83478, 59.4771 ], [ 18.80867, 59.51374 ], [ 18.86771, 59.53017 ], [ 18.86943, 59.48913 ] ] ], [ [ [ 18.82729, 59.54426 ], [ 18.7402, 59.53474 ], [ 18.7301, 59.54313 ], [ 18.7543, 59.57759 ], [ 18.79859, 59.58693 ], [ 18.82729, 59.54426 ] ] ], [ [ [ 18.82088, 59.4115 ], [ 18.79255, 59.40485 ], [ 18.77281, 59.45839 ], [ 18.71057, 59.46835 ], [ 18.72897, 59.4919 ], [ 18.80736, 59.49125 ], [ 18.79324, 59.46511 ], [ 18.82088, 59.4115 ] ] ], [ [ [ 18.78822, 59.38698 ], [ 18.75756, 59.36323 ], [ 18.70935, 59.39031 ], [ 18.75764, 59.41439 ], [ 18.78822, 59.38698 ] ] ], [ [ [ 18.55611, 59.03595 ], [ 18.50261, 59.02051 ], [ 18.50399, 59.05978 ], [ 18.5529, 59.07494 ], [ 18.55611, 59.03595 ] ] ], [ [ [ 18.51104, 58.99523 ], [ 18.4908, 58.95547 ], [ 18.47243, 58.9753 ], [ 18.42582, 58.97071 ], [ 18.42996, 58.99714 ], [ 18.51104, 58.99523 ] ] ], [ [ [ 18.28598, 58.96679 ], [ 18.27507, 58.91633 ], [ 18.19714, 58.92103 ], [ 18.20738, 58.93933 ], [ 18.28598, 58.96679 ] ] ], [ [ [ 18.14456, 58.87023 ], [ 18.13575, 58.84057 ], [ 18.08812, 58.88007 ], [ 18.12006, 58.91479 ], [ 18.14456, 58.87023 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE12", "NUTS_ID": "SE12", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Östra Mellansverige", "geo": "SE12", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 18.51327, 60.14809 ], [ 18.42038, 60.03936 ], [ 18.44638, 59.99756 ], [ 18.36942, 59.87326 ], [ 18.15621, 59.81892 ], [ 18.03734, 59.73504 ], [ 17.79786, 59.68186 ], [ 17.62735, 59.67832 ], [ 17.53632, 59.61649 ], [ 17.55403, 59.55234 ], [ 17.49054, 59.50861 ], [ 17.48403, 59.45211 ], [ 17.41613, 59.38414 ], [ 17.34518, 59.34499 ], [ 17.34812, 59.2869 ], [ 17.25451, 59.2135 ], [ 17.31345, 59.13887 ], [ 17.33058, 59.03962 ], [ 17.3832, 58.98663 ], [ 17.52999, 58.98363 ], [ 17.5724, 58.95085 ], [ 17.61137, 58.89299 ], [ 17.31469, 58.72607 ], [ 17.12076, 58.73033 ], [ 17.11996, 58.67215 ], [ 16.98347, 58.6252 ], [ 16.75066, 58.62693 ], [ 16.74818, 58.5944 ], [ 16.91989, 58.50144 ], [ 16.81044, 58.41789 ], [ 16.86139, 58.26679 ], [ 16.7744, 58.25731 ], [ 16.86356, 58.12431 ], [ 16.77196, 58.03681 ], [ 16.66668, 57.99608 ], [ 16.58975, 58.06718 ], [ 16.5414, 58.1068 ], [ 16.27062, 58.13535 ], [ 16.18532, 58.10325 ], [ 16.16454, 58.06653 ], [ 16.01813, 58.0792 ], [ 16.00555, 58.02235 ], [ 16.05616, 57.97882 ], [ 16.02994, 57.93875 ], [ 16.05561, 57.90573 ], [ 16.05267, 57.87314 ], [ 15.95357, 57.81377 ], [ 15.84972, 57.82632 ], [ 15.61702, 57.85279 ], [ 15.42105, 57.70488 ], [ 15.12181, 57.72879 ], [ 15.00519, 57.90032 ], [ 15.01611, 57.9773 ], [ 15.06633, 58.00559 ], [ 14.97462, 58.13586 ], [ 14.85331, 58.0894 ], [ 14.60378, 58.09915 ], [ 14.47708, 58.1313 ], [ 14.41671, 58.18724 ], [ 14.44788, 58.2375 ], [ 14.63668, 58.47046 ], [ 14.77894, 58.64599 ], [ 14.67572, 58.7367 ], [ 14.57489, 58.68451 ], [ 14.4853, 58.72001 ], [ 14.46328, 58.77638 ], [ 14.29978, 58.93433 ], [ 14.296, 59.01278 ], [ 14.33067, 59.08684 ], [ 14.29489, 59.15496 ], [ 14.31124, 59.28954 ], [ 14.45635, 59.44211 ], [ 14.40301, 59.51054 ], [ 14.46999, 59.54302 ], [ 14.4353, 59.64466 ], [ 14.40999, 59.73713 ], [ 14.41644, 59.87326 ], [ 14.3694, 59.93819 ], [ 14.43549, 59.97811 ], [ 14.43716, 60.02616 ], [ 14.73829, 60.00104 ], [ 14.74761, 60.07918 ], [ 14.81293, 60.10299 ], [ 14.90034, 60.05658 ], [ 15.19781, 59.99935 ], [ 15.39339, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.443, 59.87326 ], [ 15.52169, 59.9429 ], [ 15.70147, 59.96444 ], [ 15.74501, 60.12068 ], [ 15.80642, 60.17086 ], [ 16.01426, 60.17599 ], [ 16.17846, 60.08709 ], [ 16.30196, 60.07557 ], [ 16.70383, 60.19572 ], [ 16.86185, 60.22621 ], [ 16.94333, 60.28861 ], [ 17.07511, 60.26704 ], [ 17.16123, 60.2906 ], [ 17.19171, 60.31261 ], [ 17.19888, 60.3753 ], [ 17.19853, 60.40814 ], [ 17.22769, 60.43255 ], [ 17.28881, 60.4592 ], [ 17.37022, 60.65446 ], [ 17.62848, 60.63603 ], [ 17.6056, 60.57813 ], [ 17.63873, 60.55119 ], [ 17.68785, 60.52564 ], [ 17.80843, 60.57243 ], [ 17.97811, 60.58826 ], [ 18.02979, 60.50992 ], [ 18.13925, 60.42825 ], [ 18.28034, 60.35116 ], [ 18.35947, 60.34275 ], [ 18.41245, 60.35417 ], [ 18.39493, 60.5012 ], [ 18.42432, 60.5059 ], [ 18.47138, 60.47725 ], [ 18.49646, 60.37235 ], [ 18.56134, 60.36859 ], [ 18.65247, 60.27958 ], [ 18.61623, 60.22633 ], [ 18.66413, 60.2177 ], [ 18.66064, 60.19487 ], [ 18.56112, 60.1886 ], [ 18.51327, 60.14809 ] ] ], [ [ [ 17.50182, 58.7324 ], [ 17.46309, 58.70108 ], [ 17.43449, 58.73135 ], [ 17.48451, 58.76247 ], [ 17.50182, 58.7324 ] ] ], [ [ [ 17.19938, 58.67005 ], [ 17.19717, 58.62677 ], [ 17.15745, 58.62938 ], [ 17.14496, 58.64454 ], [ 17.18339, 58.68399 ], [ 17.19938, 58.67005 ] ] ], [ [ [ 16.99867, 58.40874 ], [ 16.96276, 58.36944 ], [ 16.94875, 58.40874 ], [ 16.97576, 58.45027 ], [ 16.99867, 58.40874 ] ] ], [ [ [ 16.97025, 58.20504 ], [ 16.94085, 58.16457 ], [ 16.8916, 58.16849 ], [ 16.93174, 58.21164 ], [ 16.97025, 58.20504 ] ] ], [ [ [ 16.95443, 58.33815 ], [ 16.90962, 58.31329 ], [ 16.8718, 58.38106 ], [ 16.8633, 58.42199 ], [ 16.9265, 58.39796 ], [ 16.92053, 58.35875 ], [ 16.95443, 58.33815 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL33", "NUTS_ID": "NL33", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zuid-Holland", "geo": "NL33", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.72877, 52.20982 ], [ 4.79452, 52.22673 ], [ 4.86906, 52.15911 ], [ 4.80463, 52.12262 ], [ 4.83091, 52.07805 ], [ 4.82056, 52.02577 ], [ 4.8779, 51.93784 ], [ 5.00938, 51.97422 ], [ 5.14946, 51.93345 ], [ 5.00053, 51.82094 ], [ 4.79207, 51.7948 ], [ 4.67629, 51.72492 ], [ 4.64514, 51.71907 ], [ 4.62042, 51.71413 ], [ 4.42462, 51.70355 ], [ 4.34301, 51.65904 ], [ 4.24254, 51.64712 ], [ 4.15265, 51.68383 ], [ 4.10521, 51.68849 ], [ 4.05445, 51.69823 ], [ 3.98874, 51.76345 ], [ 3.83908, 51.7583 ], [ 3.8927, 51.81761 ], [ 4.04054, 51.843 ], [ 4.04319, 51.8976 ], [ 3.99738, 51.96064 ], [ 4.12779, 52.00054 ], [ 4.16283, 52.02953 ], [ 4.19802, 52.05414 ], [ 4.37423, 52.18709 ], [ 4.49385, 52.32826 ], [ 4.61168, 52.31359 ], [ 4.57173, 52.22487 ], [ 4.72877, 52.20982 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL34", "NUTS_ID": "NL34", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Zeeland", "geo": "NL34", "time_2018_MEAN": 82.13333333333334 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 4.27957, 51.37602 ], [ 4.24367, 51.37473 ], [ 3.97497, 51.45297 ], [ 3.82696, 51.39268 ], [ 3.70404, 51.44983 ], [ 3.56354, 51.44732 ], [ 3.45976, 51.53004 ], [ 3.56087, 51.58508 ], [ 3.81102, 51.59978 ], [ 4.11581, 51.44417 ], [ 4.20804, 51.44594 ], [ 4.18263, 51.50678 ], [ 4.00676, 51.57535 ], [ 4.03972, 51.62011 ], [ 3.8311, 51.68293 ], [ 3.70103, 51.69116 ], [ 3.72386, 51.72981 ], [ 3.83908, 51.7583 ], [ 3.98874, 51.76345 ], [ 4.05445, 51.69823 ], [ 4.10521, 51.68849 ], [ 4.15265, 51.68383 ], [ 4.24254, 51.64712 ], [ 4.20045, 51.6015 ], [ 4.27957, 51.37602 ] ] ], [ [ [ 4.23482, 51.34825 ], [ 4.21595, 51.33309 ], [ 4.16576, 51.29273 ], [ 4.10521, 51.2654 ], [ 3.97767, 51.22513 ], [ 3.85634, 51.21106 ], [ 3.60175, 51.30057 ], [ 3.53431, 51.28951 ], [ 3.50028, 51.24675 ], [ 3.38066, 51.2743 ], [ 3.36579, 51.36984 ], [ 3.51633, 51.40442 ], [ 3.85927, 51.3391 ], [ 3.99392, 51.39811 ], [ 4.10521, 51.3562 ], [ 4.19204, 51.37015 ], [ 4.23482, 51.34825 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL41", "NUTS_ID": "NL41", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Noord-Brabant", "geo": "NL41", "time_2018_MEAN": 81.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.59788, 51.82808 ], [ 5.76538, 51.75684 ], [ 5.86516, 51.75741 ], [ 5.95075, 51.70279 ], [ 6.03916, 51.57018 ], [ 5.83808, 51.56647 ], [ 5.9202, 51.39021 ], [ 5.84025, 51.34692 ], [ 5.67687, 51.31294 ], [ 5.60986, 51.23343 ], [ 5.56628, 51.22084 ], [ 5.54768, 51.26882 ], [ 5.49843, 51.29582 ], [ 5.23772, 51.2616 ], [ 5.2259, 51.30946 ], [ 5.14481, 51.32092 ], [ 5.0878, 51.3823 ], [ 5.10218, 51.429 ], [ 5.04151, 51.47912 ], [ 4.89939, 51.40589 ], [ 4.84105, 51.42781 ], [ 4.82863, 51.48026 ], [ 4.75993, 51.50246 ], [ 4.66954, 51.42638 ], [ 4.54822, 51.42923 ], [ 4.52789, 51.47565 ], [ 4.48617, 51.47765 ], [ 4.38966, 51.44398 ], [ 4.40594, 51.36516 ], [ 4.27957, 51.37602 ], [ 4.20045, 51.6015 ], [ 4.24254, 51.64712 ], [ 4.34301, 51.65904 ], [ 4.42462, 51.70355 ], [ 4.62042, 51.71413 ], [ 4.64514, 51.71907 ], [ 4.67629, 51.72492 ], [ 4.79207, 51.7948 ], [ 5.00053, 51.82094 ], [ 5.1219, 51.77572 ], [ 5.12806, 51.73761 ], [ 5.3066, 51.74129 ], [ 5.40581, 51.81362 ], [ 5.59788, 51.82808 ] ] ], [ [ [ 4.74644, 51.43823 ], [ 4.78188, 51.44543 ], [ 4.83054, 51.41483 ], [ 4.7881, 51.39572 ], [ 4.74644, 51.43823 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NL42", "NUTS_ID": "NL42", "LEVL_CODE": 2, "CNTR_CODE": "NL", "NUTS_NAME": "Limburg (NL)", "geo": "NL42", "time_2018_MEAN": 81.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.07266, 51.24259 ], [ 6.08934, 51.17902 ], [ 6.17481, 51.18451 ], [ 5.96334, 51.04808 ], [ 5.90004, 51.05898 ], [ 5.87709, 51.0321 ], [ 5.90981, 50.98644 ], [ 6.00913, 50.98192 ], [ 6.03069, 50.93438 ], [ 6.08695, 50.91313 ], [ 6.07193, 50.85841 ], [ 6.01023, 50.80357 ], [ 6.021, 50.7543 ], [ 5.89207, 50.75524 ], [ 5.77397, 50.77452 ], [ 5.682, 50.75745 ], [ 5.68762, 50.81192 ], [ 5.65381, 50.86561 ], [ 5.7326, 50.92737 ], [ 5.76613, 51.00872 ], [ 5.79827, 51.05985 ], [ 5.8352, 51.15625 ], [ 5.56628, 51.22084 ], [ 5.60986, 51.23343 ], [ 5.67687, 51.31294 ], [ 5.84025, 51.34692 ], [ 5.9202, 51.39021 ], [ 5.83808, 51.56647 ], [ 6.03916, 51.57018 ], [ 5.95075, 51.70279 ], [ 5.86516, 51.75741 ], [ 5.95319, 51.74785 ], [ 6.10265, 51.65623 ], [ 6.10589, 51.60073 ], [ 6.2042, 51.51872 ], [ 6.22441, 51.36498 ], [ 6.07266, 51.24259 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "PL21", "NUTS_ID": "PL21", "LEVL_CODE": 2, "CNTR_CODE": "PL", "NUTS_NAME": "Małopolskie", "geo": "PL21", "time_2018_MEAN": 79.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.68154, 50.20588 ], [ 20.79468, 50.28094 ], [ 20.81338, 50.28428 ], [ 21.20883, 50.3549 ], [ 21.21411, 50.31623 ], [ 21.15581, 50.25884 ], [ 21.16658, 50.083 ], [ 21.16244, 49.9609 ], [ 21.27367, 49.91966 ], [ 21.23045, 49.86221 ], [ 21.29715, 49.84286 ], [ 21.33377, 49.81227 ], [ 21.24177, 49.7761 ], [ 21.33793, 49.70259 ], [ 21.34124, 49.59257 ], [ 21.40013, 49.50241 ], [ 21.39771, 49.43379 ], [ 21.28704, 49.4558 ], [ 21.19493, 49.40542 ], [ 21.07549, 49.4237 ], [ 21.08963, 49.37206 ], [ 20.93794, 49.30037 ], [ 20.81338, 49.36732 ], [ 20.72562, 49.41449 ], [ 20.61494, 49.41783 ], [ 20.56579, 49.38238 ], [ 20.46047, 49.41413 ], [ 20.35968, 49.40297 ], [ 20.31199, 49.35528 ], [ 20.21524, 49.34488 ], [ 20.14302, 49.30421 ], [ 20.07834, 49.18721 ], [ 19.96275, 49.23031 ], [ 19.88393, 49.20418 ], [ 19.77205, 49.21264 ], [ 19.81005, 49.2793 ], [ 19.78819, 49.39816 ], [ 19.64855, 49.40827 ], [ 19.46739, 49.61377 ], [ 19.46541, 49.66339 ], [ 19.40025, 49.68656 ], [ 19.43457, 49.73877 ], [ 19.41495, 49.77526 ], [ 19.31802, 49.78434 ], [ 19.27634, 49.85155 ], [ 19.17105, 49.86906 ], [ 19.18222, 49.94388 ], [ 19.09321, 49.95666 ], [ 19.14448, 50.03418 ], [ 19.21818, 50.083 ], [ 19.25381, 50.13419 ], [ 19.3244, 50.14731 ], [ 19.40873, 50.21519 ], [ 19.3676, 50.26113 ], [ 19.42213, 50.3235 ], [ 19.47892, 50.33341 ], [ 19.51247, 50.40683 ], [ 19.84454, 50.4342 ], [ 19.94997, 50.50478 ], [ 20.25632, 50.47382 ], [ 20.40495, 50.20014 ], [ 20.68154, 50.20588 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM6", "NUTS_ID": "UKM6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Highlands and Islands", "geo": "UKM6", "time_2018_MEAN": 80.033333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.79878, 60.81101 ], [ -0.78043, 60.7827 ], [ -0.81378, 60.78461 ], [ -0.81778, 60.73737 ], [ -0.8665, 60.70318 ], [ -0.87157, 60.68033 ], [ -0.91024, 60.6891 ], [ -0.93988, 60.67503 ], [ -0.97695, 60.68766 ], [ -0.95887, 60.74342 ], [ -0.93426, 60.78082 ], [ -0.95065, 60.79494 ], [ -0.87037, 60.84317 ], [ -0.78465, 60.83025 ], [ -0.79878, 60.81101 ] ] ], [ [ [ -0.91544, 60.64425 ], [ -0.88961, 60.62694 ], [ -0.83252, 60.63008 ], [ -0.82205, 60.60756 ], [ -0.78199, 60.60492 ], [ -0.79809, 60.56753 ], [ -0.82951, 60.58728 ], [ -0.87418, 60.58884 ], [ -0.87978, 60.56367 ], [ -0.91072, 60.57106 ], [ -0.95242, 60.61324 ], [ -0.91544, 60.64425 ] ] ], [ [ [ -0.94539, 60.355 ], [ -1.00182, 60.3266 ], [ -1.02352, 60.355 ], [ -0.95508, 60.38059 ], [ -0.94539, 60.355 ] ] ], [ [ [ -1.00363, 60.57912 ], [ -1.04177, 60.49621 ], [ -1.06861, 60.4879 ], [ -1.1144, 60.50132 ], [ -1.13413, 60.48419 ], [ -1.17272, 60.50338 ], [ -1.19045, 60.54376 ], [ -1.18453, 60.57019 ], [ -1.20355, 60.60554 ], [ -1.18902, 60.63446 ], [ -1.14072, 60.65665 ], [ -1.12518, 60.72784 ], [ -1.01398, 60.72723 ], [ -0.9868, 60.6698 ], [ -1.01824, 60.63869 ], [ -1.02781, 60.58794 ], [ -1.00363, 60.57912 ] ] ], [ [ [ -0.9892, 60.1348 ], [ -1.0318, 60.11614 ], [ -1.04805, 60.13887 ], [ -1.03996, 60.16344 ], [ -0.99966, 60.166 ], [ -0.9892, 60.1348 ] ] ], [ [ [ -1.34418, 60.49873 ], [ -1.3264, 60.45355 ], [ -1.23506, 60.48758 ], [ -1.15843, 60.39868 ], [ -1.12189, 60.41614 ], [ -1.05928, 60.35929 ], [ -1.13482, 60.34335 ], [ -1.09376, 60.30712 ], [ -1.19821, 60.22137 ], [ -1.08134, 60.16611 ], [ -1.06177, 60.12905 ], [ -1.0968, 60.11257 ], [ -1.14207, 60.15886 ], [ -1.20099, 60.11501 ], [ -1.2857, 59.89128 ], [ -1.37283, 59.90185 ], [ -1.27752, 60.11865 ], [ -1.31558, 60.19717 ], [ -1.37981, 60.2078 ], [ -1.47713, 60.15793 ], [ -1.67432, 60.23303 ], [ -1.69266, 60.25509 ], [ -1.69176, 60.29786 ], [ -1.67432, 60.30277 ], [ -1.37563, 60.30137 ], [ -1.35198, 60.38597 ], [ -1.36385, 60.40726 ], [ -1.38808, 60.35521 ], [ -1.44645, 60.36617 ], [ -1.41293, 60.39971 ], [ -1.46326, 60.47331 ], [ -1.58068, 60.49204 ], [ -1.58397, 60.50865 ], [ -1.41531, 60.61175 ], [ -1.32243, 60.61966 ], [ -1.34418, 60.49873 ] ] ], [ [ [ -1.6055, 59.52111 ], [ -1.65108, 59.51001 ], [ -1.65531, 59.52943 ], [ -1.643, 59.55749 ], [ -1.59553, 59.55418 ], [ -1.6055, 59.52111 ] ] ], [ [ [ -1.68576, 60.34435 ], [ -1.71575, 60.30345 ], [ -1.75828, 60.34066 ], [ -1.74064, 60.35781 ], [ -1.68576, 60.34435 ] ] ], [ [ [ -2.03386, 60.14224 ], [ -2.06258, 60.10503 ], [ -2.10947, 60.13324 ], [ -2.05037, 60.16052 ], [ -2.03386, 60.14224 ] ] ], [ [ [ -2.38888, 59.35139 ], [ -2.4233, 59.34075 ], [ -2.45958, 59.35397 ], [ -2.43372, 59.3828 ], [ -2.40424, 59.38643 ], [ -2.38888, 59.35139 ] ] ], [ [ [ -2.40856, 59.32638 ], [ -2.41975, 59.2648 ], [ -2.46454, 59.29071 ], [ -2.45263, 59.31593 ], [ -2.40856, 59.32638 ] ] ], [ [ [ -2.55319, 59.29973 ], [ -2.53777, 59.26851 ], [ -2.49397, 59.27151 ], [ -2.50774, 59.24227 ], [ -2.591, 59.21849 ], [ -2.62747, 59.24454 ], [ -2.59668, 59.27069 ], [ -2.60429, 59.28603 ], [ -2.55319, 59.29973 ] ] ], [ [ [ -2.54086, 59.09111 ], [ -2.60215, 59.07105 ], [ -2.6255, 59.12602 ], [ -2.66149, 59.15088 ], [ -2.64837, 59.17195 ], [ -2.60269, 59.14309 ], [ -2.60401, 59.12221 ], [ -2.55927, 59.11971 ], [ -2.54086, 59.09111 ] ] ], [ [ [ -2.64251, 59.06969 ], [ -2.68576, 59.06775 ], [ -2.69953, 59.08409 ], [ -2.6646, 59.11916 ], [ -2.6342, 59.08723 ], [ -2.64251, 59.06969 ] ] ], [ [ [ -2.63902, 59.23002 ], [ -2.69872, 59.18026 ], [ -2.70909, 59.20139 ], [ -2.70224, 59.21893 ], [ -2.64789, 59.24905 ], [ -2.63902, 59.23002 ] ] ], [ [ [ -2.75752, 59.14807 ], [ -2.78881, 59.14074 ], [ -2.81117, 59.17548 ], [ -2.77981, 59.19037 ], [ -2.78906, 59.2341 ], [ -2.75846, 59.24898 ], [ -2.71739, 59.23189 ], [ -2.75544, 59.19488 ], [ -2.75752, 59.14807 ] ] ], [ [ [ -4.43205, 57.49435 ], [ -4.18316, 57.49016 ], [ -4.02464, 57.59337 ], [ -3.88987, 57.59183 ], [ -3.73684, 57.63442 ], [ -3.70873, 57.65494 ], [ -3.65227, 57.66161 ], [ -3.60513, 57.63442 ], [ -3.58635, 57.63442 ], [ -3.4842, 57.70071 ], [ -3.35148, 57.72232 ], [ -3.16975, 57.68763 ], [ -3.11702, 57.67757 ], [ -2.80151, 57.69525 ], [ -2.78295, 57.60185 ], [ -2.72206, 57.53391 ], [ -2.84896, 57.52797 ], [ -2.98677, 57.47509 ], [ -3.00129, 57.43683 ], [ -2.96772, 57.33066 ], [ -2.98558, 57.29255 ], [ -3.16975, 57.25765 ], [ -3.21059, 57.24991 ], [ -3.32795, 57.18112 ], [ -3.3707, 57.1057 ], [ -3.72076, 57.0761 ], [ -3.77095, 56.99996 ], [ -3.80163, 56.93601 ], [ -3.93864, 56.93437 ], [ -4.02928, 56.89522 ], [ -4.17121, 56.89918 ], [ -4.43486, 56.78868 ], [ -4.52037, 56.80542 ], [ -4.61026, 56.69426 ], [ -4.68225, 56.67519 ], [ -4.7104, 56.66774 ], [ -4.70148, 56.64519 ], [ -4.68225, 56.64536 ], [ -4.59863, 56.58804 ], [ -4.66624, 56.54253 ], [ -4.68225, 56.46281 ], [ -4.81581, 56.4047 ], [ -4.82481, 56.37161 ], [ -4.78581, 56.32385 ], [ -4.83217, 56.28914 ], [ -4.74631, 56.23086 ], [ -4.74865, 56.20333 ], [ -4.87727, 56.06982 ], [ -4.96155, 55.9264 ], [ -5.04031, 55.88096 ], [ -5.05999, 55.79046 ], [ -5.29067, 55.88709 ], [ -5.32133, 56.03032 ], [ -5.38549, 56.01043 ], [ -5.40626, 55.91725 ], [ -5.36532, 55.77823 ], [ -5.46338, 55.63914 ], [ -5.54248, 55.39499 ], [ -5.63356, 55.32431 ], [ -5.75542, 55.3398 ], [ -5.75809, 55.42264 ], [ -5.63011, 55.73774 ], [ -5.66307, 55.95478 ], [ -5.57771, 56.17575 ], [ -5.6102, 56.28731 ], [ -5.43504, 56.47727 ], [ -5.36043, 56.61044 ], [ -5.35949, 56.61295 ], [ -5.35932, 56.61561 ], [ -5.35995, 56.6182 ], [ -5.3613, 56.6205 ], [ -5.36328, 56.62229 ], [ -5.36569, 56.62343 ], [ -5.36833, 56.6238 ], [ -5.37099, 56.62339 ], [ -5.65999, 56.53163 ], [ -5.91537, 56.58548 ], [ -5.97098, 56.67111 ], [ -6.06993, 56.73624 ], [ -5.82664, 56.83779 ], [ -5.83934, 56.93784 ], [ -5.71673, 57.13113 ], [ -5.71563, 57.13364 ], [ -5.71534, 57.13635 ], [ -5.71588, 57.13903 ], [ -5.7172, 57.14142 ], [ -5.71919, 57.1433 ], [ -5.72164, 57.1445 ], [ -5.72434, 57.1449 ], [ -5.72706, 57.14448 ], [ -5.96942, 57.06655 ], [ -5.99679, 57.15771 ], [ -6.27207, 57.17491 ], [ -6.40944, 57.25861 ], [ -6.48711, 57.34642 ], [ -6.63638, 57.37459 ], [ -6.72194, 57.45238 ], [ -6.57651, 57.56034 ], [ -6.43353, 57.55297 ], [ -6.38236, 57.6342 ], [ -6.32424, 57.66718 ], [ -6.17796, 57.57305 ], [ -6.10826, 57.40858 ], [ -6.02502, 57.42428 ], [ -6.01729, 57.33011 ], [ -5.98112, 57.29781 ], [ -5.83616, 57.27021 ], [ -5.50444, 57.36694 ], [ -5.75738, 57.36669 ], [ -5.81761, 57.40711 ], [ -5.84642, 57.47799 ], [ -5.83534, 57.53288 ], [ -5.71044, 57.57071 ], [ -5.77432, 57.64537 ], [ -5.75278, 57.70668 ], [ -5.78696, 57.82265 ], [ -5.71748, 57.84856 ], [ -5.63254, 57.81287 ], [ -5.60235, 57.8931 ], [ -5.48418, 57.87613 ], [ -5.26722, 57.92 ], [ -5.27706, 57.96676 ], [ -5.4047, 58.06513 ], [ -5.31269, 58.11032 ], [ -5.32786, 58.23134 ], [ -5.15936, 58.28032 ], [ -5.15293, 58.40786 ], [ -5.08975, 58.52301 ], [ -5.01602, 58.5906 ], [ -4.71633, 58.56587 ], [ -4.66261, 58.50687 ], [ -4.54373, 58.56397 ], [ -4.38273, 58.51367 ], [ -4.04872, 58.5807 ], [ -3.87608, 58.57001 ], [ -3.63488, 58.61387 ], [ -3.42611, 58.60851 ], [ -3.33536, 58.65326 ], [ -3.16975, 58.63144 ], [ -3.06916, 58.61819 ], [ -3.10532, 58.52136 ], [ -3.07992, 58.44395 ], [ -3.12817, 58.37206 ], [ -3.16975, 58.35188 ], [ -3.9405, 57.97776 ], [ -4.0495, 57.85027 ], [ -3.89899, 57.8125 ], [ -3.89856, 57.77218 ], [ -4.21472, 57.52714 ], [ -4.43205, 57.49435 ] ] ], [ [ [ -2.92546, 59.00168 ], [ -2.88903, 58.97181 ], [ -2.80313, 58.99817 ], [ -2.73427, 58.96662 ], [ -2.73406, 58.95036 ], [ -2.87457, 58.88157 ], [ -2.95035, 58.74575 ], [ -3.01059, 58.80956 ], [ -2.93721, 58.87604 ], [ -2.98121, 58.95046 ], [ -3.16978, 58.91593 ], [ -3.20129, 58.91421 ], [ -3.23358, 58.94793 ], [ -3.35679, 58.97907 ], [ -3.35122, 59.09705 ], [ -3.32408, 59.12996 ], [ -3.20202, 59.1501 ], [ -3.16978, 59.14143 ], [ -3.04091, 59.08588 ], [ -3.03536, 59.01498 ], [ -2.92546, 59.00168 ] ] ], [ [ [ -2.80499, 59.0694 ], [ -2.82883, 59.01965 ], [ -2.93326, 59.03508 ], [ -2.90278, 59.07154 ], [ -2.85708, 59.05713 ], [ -2.8386, 59.07677 ], [ -2.80499, 59.0694 ] ] ], [ [ [ -2.81525, 59.24045 ], [ -2.87263, 59.23585 ], [ -2.89345, 59.25431 ], [ -2.85024, 59.28348 ], [ -2.81525, 59.24045 ] ] ], [ [ [ -2.85867, 59.34931 ], [ -2.8851, 59.31953 ], [ -2.91567, 59.34693 ], [ -2.88969, 59.39012 ], [ -2.85867, 59.34931 ] ] ], [ [ [ -2.8966, 59.16944 ], [ -2.91685, 59.11374 ], [ -2.95405, 59.15859 ], [ -2.92755, 59.18195 ], [ -2.8966, 59.16944 ] ] ], [ [ [ -2.90136, 59.30082 ], [ -2.9042, 59.27217 ], [ -2.92782, 59.28451 ], [ -2.98454, 59.26047 ], [ -3.02459, 59.27799 ], [ -3.03602, 59.31958 ], [ -2.97521, 59.34552 ], [ -2.95756, 59.30958 ], [ -2.90136, 59.30082 ] ] ], [ [ [ -2.95104, 59.1185 ], [ -3.00721, 59.11291 ], [ -3.11073, 59.1536 ], [ -3.11807, 59.17269 ], [ -3.07617, 59.20047 ], [ -3.04848, 59.18326 ], [ -2.96646, 59.17891 ], [ -2.97815, 59.16239 ], [ -2.95104, 59.1185 ] ] ], [ [ [ -3.16975, 58.85775 ], [ -3.15354, 58.82818 ], [ -3.11695, 58.8446 ], [ -3.08004, 58.82672 ], [ -3.16975, 58.7817 ], [ -3.19055, 58.77849 ], [ -3.2501, 58.79894 ], [ -3.29098, 58.778 ], [ -3.32981, 58.8182 ], [ -3.36734, 58.83731 ], [ -3.37423, 58.86374 ], [ -3.43278, 58.87575 ], [ -3.4006, 58.92096 ], [ -3.31269, 58.93731 ], [ -3.27995, 58.92433 ], [ -3.27972, 58.9024 ], [ -3.16975, 58.85775 ] ] ], [ [ [ -4.88702, 55.8035 ], [ -4.87956, 55.76117 ], [ -4.94198, 55.76454 ], [ -4.93, 55.79883 ], [ -4.88702, 55.8035 ] ] ], [ [ [ -4.93071, 55.7511 ], [ -4.93305, 55.68973 ], [ -4.98131, 55.70786 ], [ -4.9875, 55.71765 ], [ -4.98267, 55.7252 ], [ -4.93071, 55.7511 ] ] ], [ [ [ -5.09029, 55.46336 ], [ -5.20007, 55.43537 ], [ -5.31414, 55.47383 ], [ -5.38581, 55.63656 ], [ -5.34188, 55.69042 ], [ -5.26406, 55.71609 ], [ -5.18157, 55.68775 ], [ -5.13784, 55.63656 ], [ -5.09029, 55.46336 ] ] ], [ [ [ -5.48569, 56.51854 ], [ -5.51016, 56.478 ], [ -5.53705, 56.48608 ], [ -5.56909, 56.47123 ], [ -5.59185, 56.49207 ], [ -5.54001, 56.50524 ], [ -5.48047, 56.54538 ], [ -5.46081, 56.51961 ], [ -5.48569, 56.51854 ] ] ], [ [ [ -5.8008, 56.51063 ], [ -5.68152, 56.46612 ], [ -5.65366, 56.42878 ], [ -5.76558, 56.33662 ], [ -5.84422, 56.31518 ], [ -5.88811, 56.34809 ], [ -5.94458, 56.3207 ], [ -5.98903, 56.31944 ], [ -6.04526, 56.29468 ], [ -6.08648, 56.30065 ], [ -6.13697, 56.28947 ], [ -6.21541, 56.28947 ], [ -6.2844, 56.26887 ], [ -6.39419, 56.28947 ], [ -6.34193, 56.34091 ], [ -6.16889, 56.33775 ], [ -6.10188, 56.35454 ], [ -6.10416, 56.37219 ], [ -6.18587, 56.37127 ], [ -6.13249, 56.44465 ], [ -6.08233, 56.46433 ], [ -6.08657, 56.48159 ], [ -6.23501, 56.4655 ], [ -6.24909, 56.49179 ], [ -6.22495, 56.51144 ], [ -6.31712, 56.53469 ], [ -6.3053, 56.60324 ], [ -6.10217, 56.64612 ], [ -5.94458, 56.52199 ], [ -5.8008, 56.51063 ] ] ], [ [ [ -5.70398, 56.09898 ], [ -5.94853, 55.82031 ], [ -5.98722, 55.7971 ], [ -6.09131, 55.82222 ], [ -6.02751, 55.67974 ], [ -6.11398, 55.6368 ], [ -6.28254, 55.58384 ], [ -6.32661, 55.59604 ], [ -6.31672, 55.6368 ], [ -6.27445, 55.67252 ], [ -6.33117, 55.72863 ], [ -6.29772, 55.77881 ], [ -6.33765, 55.77992 ], [ -6.42874, 55.70013 ], [ -6.51341, 55.68254 ], [ -6.44763, 55.84531 ], [ -6.33915, 55.89338 ], [ -6.32565, 55.84541 ], [ -6.14833, 55.93104 ], [ -6.10662, 55.86213 ], [ -6.05432, 55.92666 ], [ -5.99081, 55.95161 ], [ -5.94853, 56.03756 ], [ -5.7802, 56.11464 ], [ -5.72557, 56.18189 ], [ -5.68326, 56.18077 ], [ -5.70398, 56.09898 ] ] ], [ [ [ -5.7188, 55.6851 ], [ -5.74431, 55.6304 ], [ -5.77126, 55.68034 ], [ -5.73439, 55.70822 ], [ -5.7188, 55.6851 ] ] ], [ [ [ -6.10824, 56.92602 ], [ -6.1209, 56.86605 ], [ -6.21482, 56.88751 ], [ -6.21255, 56.9077 ], [ -6.16078, 56.91562 ], [ -6.13665, 56.94825 ], [ -6.10824, 56.92602 ] ] ], [ [ [ -6.12951, 59.11879 ], [ -6.13792, 59.07544 ], [ -6.19506, 59.0845 ], [ -6.16227, 59.12425 ], [ -6.12951, 59.11879 ] ] ], [ [ [ -6.18821, 56.04255 ], [ -6.22521, 55.99937 ], [ -6.27663, 55.99993 ], [ -6.28172, 56.03326 ], [ -6.25588, 56.04991 ], [ -6.24412, 56.08579 ], [ -6.15274, 56.13155 ], [ -6.13744, 56.11859 ], [ -6.19342, 56.06199 ], [ -6.18821, 56.04255 ] ] ], [ [ [ -6.15979, 58.21388 ], [ -6.25551, 58.17876 ], [ -6.28086, 58.20331 ], [ -6.20181, 58.24908 ], [ -6.15176, 58.25658 ], [ -6.15979, 58.21388 ] ] ], [ [ [ -6.28152, 58.2882 ], [ -6.38158, 58.16279 ], [ -6.36918, 58.03281 ], [ -6.45476, 58.00043 ], [ -6.46293, 57.95989 ], [ -6.5493, 57.92023 ], [ -6.65015, 57.92016 ], [ -6.67976, 57.91192 ], [ -6.65958, 57.87304 ], [ -6.6699, 57.86022 ], [ -6.78102, 57.8902 ], [ -6.76553, 57.82344 ], [ -6.98492, 57.73968 ], [ -7.05813, 57.79101 ], [ -7.07355, 57.72649 ], [ -7.12465, 57.74993 ], [ -7.07436, 57.79023 ], [ -7.09288, 57.81763 ], [ -7.05049, 57.82695 ], [ -6.87829, 57.91042 ], [ -6.8797, 57.92715 ], [ -6.99187, 57.95989 ], [ -7.04806, 57.95989 ], [ -7.13858, 58.01656 ], [ -7.13039, 58.02639 ], [ -7.05663, 58.03256 ], [ -7.05144, 58.04828 ], [ -7.11348, 58.10286 ], [ -7.09519, 58.17497 ], [ -7.02868, 58.23556 ], [ -6.87537, 58.19654 ], [ -6.87978, 58.25574 ], [ -6.80523, 58.24229 ], [ -6.81918, 58.2882 ], [ -6.56209, 58.36377 ], [ -6.24819, 58.5055 ], [ -6.1966, 58.47317 ], [ -6.17983, 58.41705 ], [ -6.20756, 58.33468 ], [ -6.28152, 58.2882 ] ] ], [ [ [ -6.27459, 56.95478 ], [ -6.31632, 56.93552 ], [ -6.3694, 56.95478 ], [ -6.43447, 57.00829 ], [ -6.34251, 57.05619 ], [ -6.25277, 57.02259 ], [ -6.27459, 56.95478 ] ] ], [ [ [ -6.37476, 56.33895 ], [ -6.4072, 56.30265 ], [ -6.44692, 56.33427 ], [ -6.3965, 56.35926 ], [ -6.37476, 56.33895 ] ] ], [ [ [ -6.56972, 56.58722 ], [ -6.62893, 56.57586 ], [ -6.66047, 56.5904 ], [ -6.61253, 56.63602 ], [ -6.52768, 56.67747 ], [ -6.44988, 56.69229 ], [ -6.45665, 56.66858 ], [ -6.50045, 56.62086 ], [ -6.56972, 56.58722 ] ] ], [ [ [ -6.65056, 56.95337 ], [ -6.70277, 56.9463 ], [ -6.71306, 56.98315 ], [ -6.66206, 56.99145 ], [ -6.65056, 56.95337 ] ] ], [ [ [ -6.66801, 56.55378 ], [ -6.70085, 56.54941 ], [ -6.73421, 56.58043 ], [ -6.68205, 56.60279 ], [ -6.66801, 56.55378 ] ] ], [ [ [ -6.72729, 56.53288 ], [ -6.75223, 56.50443 ], [ -6.78992, 56.53287 ], [ -6.75255, 56.56885 ], [ -6.72729, 56.53288 ] ] ], [ [ [ -6.80898, 56.54187 ], [ -6.81595, 56.48935 ], [ -6.87651, 56.48808 ], [ -6.89428, 56.44628 ], [ -6.93027, 56.4448 ], [ -6.96709, 56.46112 ], [ -6.99552, 56.5041 ], [ -6.94785, 56.52831 ], [ -6.88457, 56.519 ], [ -6.87126, 56.53313 ], [ -6.80898, 56.54187 ] ] ], [ [ [ -6.97897, 57.90451 ], [ -7.01371, 57.87521 ], [ -7.05637, 57.90338 ], [ -6.99201, 57.92766 ], [ -6.97897, 57.90451 ] ] ], [ [ [ -7.07028, 57.67052 ], [ -7.07288, 57.63442 ], [ -7.16923, 57.47632 ], [ -7.22503, 57.47908 ], [ -7.19945, 57.40188 ], [ -7.2668, 57.39828 ], [ -7.25477, 57.3436 ], [ -7.196, 57.29908 ], [ -7.26286, 57.23193 ], [ -7.22757, 57.10612 ], [ -7.29178, 57.06604 ], [ -7.30295, 57.10073 ], [ -7.34292, 57.10261 ], [ -7.39957, 57.13211 ], [ -7.43109, 57.23277 ], [ -7.40535, 57.38237 ], [ -7.34292, 57.40117 ], [ -7.34292, 57.41779 ], [ -7.39772, 57.44228 ], [ -7.3753, 57.50053 ], [ -7.39183, 57.56029 ], [ -7.491, 57.57724 ], [ -7.51805, 57.60621 ], [ -7.47994, 57.65557 ], [ -7.38564, 57.64215 ], [ -7.34292, 57.66892 ], [ -7.2492, 57.67597 ], [ -7.18358, 57.73319 ], [ -7.14981, 57.6843 ], [ -7.07028, 57.67052 ] ] ], [ [ [ -7.19705, 57.78167 ], [ -7.21636, 57.74973 ], [ -7.27997, 57.77265 ], [ -7.24694, 57.79507 ], [ -7.19705, 57.78167 ] ] ], [ [ [ -7.40769, 56.9775 ], [ -7.43214, 56.95436 ], [ -7.49096, 56.95471 ], [ -7.5574, 56.93186 ], [ -7.56246, 56.95643 ], [ -7.51635, 56.99996 ], [ -7.5027, 57.01285 ], [ -7.42582, 57.04722 ], [ -7.41353, 56.99996 ], [ -7.40769, 56.9775 ] ] ], [ [ [ -7.47146, 56.88476 ], [ -7.5216, 56.86958 ], [ -7.54767, 56.89525 ], [ -7.52907, 56.91289 ], [ -7.48634, 56.90614 ], [ -7.47146, 56.88476 ] ] ], [ [ [ -7.60708, 56.7999 ], [ -7.65762, 56.78659 ], [ -7.67034, 56.80249 ], [ -7.66954, 56.82905 ], [ -7.63215, 56.8337 ], [ -7.60708, 56.7999 ] ] ], [ [ [ -8.56562, 57.83652 ], [ -8.55859, 57.78636 ], [ -8.61904, 57.81439 ], [ -8.61042, 57.84042 ], [ -8.56562, 57.83652 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR22", "NUTS_ID": "TR22", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Balıkesir, Çanakkale", "geo": "TR22", "time_2018_MEAN": 78.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.16478, 40.39561 ], [ 28.08252, 40.22929 ], [ 28.12172, 40.11071 ], [ 28.26361, 39.88301 ], [ 28.50911, 39.74417 ], [ 28.68276, 39.74773 ], [ 28.79456, 39.62911 ], [ 28.96857, 39.60068 ], [ 28.87739, 39.3695 ], [ 28.75983, 39.30027 ], [ 28.59794, 39.27249 ], [ 28.65508, 39.19693 ], [ 28.65255, 39.14737 ], [ 28.33517, 39.09171 ], [ 28.16886, 39.06254 ], [ 27.97692, 39.19542 ], [ 27.91595, 39.27249 ], [ 27.88984, 39.34108 ], [ 27.78422, 39.31908 ], [ 27.59222, 39.34233 ], [ 27.43657, 39.39743 ], [ 27.38132, 39.35275 ], [ 27.308, 39.3652 ], [ 27.2362, 39.38119 ], [ 27.20863, 39.38382 ], [ 27.16492, 39.38798 ], [ 27.13303, 39.38461 ], [ 27.079, 39.37086 ], [ 27.04695, 39.36023 ], [ 27.02513, 39.34968 ], [ 26.98122, 39.31591 ], [ 26.87837, 39.27249 ], [ 26.7982, 39.21499 ], [ 26.76392, 39.17521 ], [ 26.654, 39.28528 ], [ 26.9113, 39.48335 ], [ 26.9356, 39.54159 ], [ 26.87827, 39.57865 ], [ 26.61869, 39.54788 ], [ 26.21287, 39.46214 ], [ 26.12118, 39.47277 ], [ 26.07838, 39.47774 ], [ 26.12118, 39.57439 ], [ 26.15951, 39.66093 ], [ 26.14714, 39.84813 ], [ 26.15369, 39.87809 ], [ 26.17502, 39.97564 ], [ 26.3288, 40.02907 ], [ 26.39902, 40.12141 ], [ 26.41421, 40.19122 ], [ 26.51319, 40.21603 ], [ 26.73773, 40.39228 ], [ 27.02513, 40.38968 ], [ 27.10328, 40.44192 ], [ 27.27979, 40.46636 ], [ 27.32943, 40.3742 ], [ 27.50628, 40.30468 ], [ 27.76026, 40.31159 ], [ 27.8591, 40.37086 ], [ 27.69509, 40.47752 ], [ 27.73439, 40.5214 ], [ 28.00738, 40.48402 ], [ 28.00515, 40.44629 ], [ 27.91121, 40.39588 ], [ 27.94418, 40.36029 ], [ 28.16478, 40.39561 ] ] ], [ [ [ 27.65639, 40.58872 ], [ 27.60732, 40.57609 ], [ 27.5485, 40.58872 ], [ 27.52979, 40.63043 ], [ 27.564, 40.65114 ], [ 27.64036, 40.66464 ], [ 27.7114, 40.64195 ], [ 27.71357, 40.62564 ], [ 27.65639, 40.58872 ] ] ], [ [ [ 27.64685, 40.49832 ], [ 27.63548, 40.45661 ], [ 27.59083, 40.46634 ], [ 27.60635, 40.48132 ], [ 27.59494, 40.51897 ], [ 27.64685, 40.49832 ] ] ], [ [ [ 27.53861, 40.48711 ], [ 27.49243, 40.4766 ], [ 27.47652, 40.49338 ], [ 27.51788, 40.54019 ], [ 27.53861, 40.48711 ] ] ], [ [ [ 26.73489, 40.64293 ], [ 26.77385, 40.74113 ], [ 26.95277, 40.7255 ], [ 26.96151, 40.68163 ], [ 26.91895, 40.60231 ], [ 26.96865, 40.55337 ], [ 26.72628, 40.45992 ], [ 26.58826, 40.32819 ], [ 26.39492, 40.20946 ], [ 26.31898, 40.11187 ], [ 26.2253, 40.08658 ], [ 26.26504, 40.33065 ], [ 26.77125, 40.55488 ], [ 26.808, 40.6212 ], [ 26.73489, 40.64293 ] ] ], [ [ [ 26.67017, 39.32996 ], [ 26.61824, 39.32065 ], [ 26.59778, 39.35632 ], [ 26.64921, 39.36511 ], [ 26.67017, 39.32996 ] ] ], [ [ [ 26.08356, 39.79316 ], [ 26.0534, 39.78381 ], [ 25.97754, 39.83146 ], [ 25.98607, 39.84199 ], [ 26.07446, 39.84148 ], [ 26.08356, 39.79316 ] ] ], [ [ [ 25.9441, 40.12882 ], [ 25.83863, 40.09904 ], [ 25.8077, 40.10436 ], [ 25.73792, 40.09013 ], [ 25.70605, 40.11505 ], [ 25.66374, 40.12405 ], [ 25.66958, 40.15361 ], [ 25.79106, 40.212 ], [ 25.84982, 40.21857 ], [ 25.94466, 40.24181 ], [ 25.97261, 40.22313 ], [ 25.96704, 40.15042 ], [ 25.98121, 40.13047 ], [ 25.9441, 40.12882 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC2", "NUTS_ID": "TRC2", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Şanlıurfa, Diyarbakır", "geo": "TRC2", "time_2018_MEAN": 79.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.38055, 38.49225 ], [ 41.30903, 38.45083 ], [ 41.1926, 38.31284 ], [ 41.18487, 38.25677 ], [ 41.24546, 38.13545 ], [ 41.1536, 37.99673 ], [ 41.13856, 37.97401 ], [ 41.11494, 37.93834 ], [ 41.00627, 37.83981 ], [ 41.01178, 37.79493 ], [ 41.07365, 37.75433 ], [ 41.04501, 37.71503 ], [ 40.89, 37.65867 ], [ 40.686, 37.72073 ], [ 40.6295, 37.62218 ], [ 40.45655, 37.61023 ], [ 40.30203, 37.5184 ], [ 39.85555, 37.53101 ], [ 40.01342, 37.27857 ], [ 40.08649, 37.1617 ], [ 40.10731, 37.12841 ], [ 40.11998, 36.99952 ], [ 40.15722, 36.96506 ], [ 40.22603, 36.90137 ], [ 39.82062, 36.75554 ], [ 39.22259, 36.6672 ], [ 39.04246, 36.70532 ], [ 38.72696, 36.70665 ], [ 38.52955, 36.84891 ], [ 38.3705, 36.89957 ], [ 38.19219, 36.90604 ], [ 38.04759, 36.84555 ], [ 37.84532, 37.1617 ], [ 37.85144, 37.25277 ], [ 37.86499, 37.27857 ], [ 37.89739, 37.34025 ], [ 38.00805, 37.45474 ], [ 38.20808, 37.43321 ], [ 38.47484, 37.50139 ], [ 38.66534, 37.61263 ], [ 38.82012, 37.6484 ], [ 38.94468, 37.75772 ], [ 38.94852, 37.81626 ], [ 39.07017, 37.97401 ], [ 39.08769, 37.99673 ], [ 39.09983, 38.01248 ], [ 39.18828, 38.04019 ], [ 39.25695, 38.14826 ], [ 39.22742, 38.19483 ], [ 39.12275, 38.18331 ], [ 39.16286, 38.30443 ], [ 39.32196, 38.33325 ], [ 39.56591, 38.28704 ], [ 39.85813, 38.38109 ], [ 39.91291, 38.46785 ], [ 40.31407, 38.46582 ], [ 40.37495, 38.47318 ], [ 40.46947, 38.61434 ], [ 40.76916, 38.56833 ], [ 40.97946, 38.61274 ], [ 41.17656, 38.71673 ], [ 41.30216, 38.67833 ], [ 41.38055, 38.49225 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TRC3", "NUTS_ID": "TRC3", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Mardin, Batman, Şırnak, Siirt", "geo": "TRC3", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.7023, 38.24654 ], [ 42.00246, 38.13532 ], [ 42.10786, 38.18074 ], [ 42.2077, 38.18425 ], [ 42.52287, 37.99673 ], [ 42.56105, 37.97401 ], [ 42.67523, 37.88373 ], [ 42.76799, 37.91363 ], [ 42.8942, 37.90929 ], [ 42.96621, 37.76213 ], [ 43.15727, 37.7603 ], [ 43.31955, 37.70498 ], [ 43.50539, 37.71353 ], [ 43.48854, 37.64767 ], [ 43.36138, 37.55296 ], [ 43.35406, 37.47846 ], [ 43.31769, 37.43726 ], [ 43.33294, 37.37187 ], [ 43.4215, 37.27857 ], [ 43.17271, 37.36374 ], [ 42.95564, 37.33047 ], [ 42.78364, 37.37116 ], [ 42.71274, 37.33245 ], [ 42.56728, 37.15989 ], [ 42.35569, 37.10804 ], [ 42.3408, 37.23437 ], [ 42.23005, 37.27857 ], [ 42.20681, 37.28784 ], [ 42.19113, 37.27857 ], [ 42.03714, 37.18749 ], [ 41.66334, 37.1029 ], [ 41.54707, 37.08521 ], [ 41.4341, 37.07887 ], [ 41.37326, 37.07545 ], [ 41.21644, 37.07267 ], [ 41.16635, 37.0853 ], [ 41.11769, 37.09756 ], [ 40.93031, 37.12954 ], [ 40.8085, 37.1226 ], [ 40.77239, 37.11822 ], [ 40.6891, 37.09561 ], [ 40.63465, 37.0688 ], [ 40.51431, 37.02373 ], [ 40.44554, 37.0143 ], [ 40.41394, 37.00065 ], [ 40.34809, 36.96506 ], [ 40.26414, 36.91969 ], [ 40.22603, 36.90137 ], [ 40.15722, 36.96506 ], [ 40.11998, 36.99952 ], [ 40.10731, 37.12841 ], [ 40.08649, 37.1617 ], [ 40.01342, 37.27857 ], [ 39.85555, 37.53101 ], [ 40.30203, 37.5184 ], [ 40.45655, 37.61023 ], [ 40.6295, 37.62218 ], [ 40.686, 37.72073 ], [ 40.89, 37.65867 ], [ 41.04501, 37.71503 ], [ 41.07365, 37.75433 ], [ 41.01178, 37.79493 ], [ 41.00627, 37.83981 ], [ 41.11494, 37.93834 ], [ 41.13856, 37.97401 ], [ 41.1536, 37.99673 ], [ 41.24546, 38.13545 ], [ 41.18487, 38.25677 ], [ 41.1926, 38.31284 ], [ 41.30903, 38.45083 ], [ 41.38055, 38.49225 ], [ 41.4341, 38.5052 ], [ 41.4733, 38.51467 ], [ 41.50618, 38.56498 ], [ 41.6371, 38.50378 ], [ 41.7023, 38.24654 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC1", "NUTS_ID": "UKC1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Tees Valley and Durham", "geo": "UKC1", "time_2018_MEAN": 79.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.55934, 54.8821 ], [ -1.45612, 54.80266 ], [ -1.34737, 54.86069 ], [ -1.24223, 54.72259 ], [ -1.23147, 54.71771 ], [ -1.22922, 54.71672 ], [ -1.21764, 54.7116 ], [ -1.21494, 54.71113 ], [ -1.20988, 54.70898 ], [ -1.19954, 54.70584 ], [ -1.19711, 54.70467 ], [ -1.19513, 54.70285 ], [ -1.19379, 54.70053 ], [ -1.19319, 54.69792 ], [ -1.19339, 54.69524 ], [ -1.19453, 54.69257 ], [ -1.19344, 54.68857 ], [ -1.19849, 54.68469 ], [ -1.19847, 54.67957 ], [ -1.18302, 54.65967 ], [ -1.16258, 54.64664 ], [ -1.16671, 54.64378 ], [ -1.16491, 54.6339 ], [ -1.16515, 54.63205 ], [ -1.16482, 54.62939 ], [ -1.16448, 54.62797 ], [ -1.16437, 54.62672 ], [ -1.16358, 54.62432 ], [ -1.16194, 54.62199 ], [ -1.15931, 54.61368 ], [ -1.16587, 54.60963 ], [ -1.16924, 54.60362 ], [ -1.19789, 54.58544 ], [ -1.20644, 54.58251 ], [ -1.22922, 54.58569 ], [ -1.24433, 54.59152 ], [ -1.2539, 54.5913 ], [ -1.25856, 54.58751 ], [ -1.26226, 54.57207 ], [ -1.26125, 54.5719 ], [ -1.26025, 54.57174 ], [ -1.25699, 54.5869 ], [ -1.25208, 54.59036 ], [ -1.24589, 54.59 ], [ -1.23309, 54.58499 ], [ -1.22922, 54.58408 ], [ -1.21535, 54.58084 ], [ -1.2047, 54.58024 ], [ -1.19684, 54.58174 ], [ -1.16371, 54.60211 ], [ -1.15338, 54.60178 ], [ -1.15549, 54.60655 ], [ -1.15128, 54.61622 ], [ -1.15309, 54.62637 ], [ -1.13933, 54.62961 ], [ -1.13783, 54.6384 ], [ -1.12858, 54.63571 ], [ -1.11401, 54.62805 ], [ -1.08454, 54.62044 ], [ -1.07309, 54.62139 ], [ -1.05951, 54.61811 ], [ -1.05171, 54.61591 ], [ -1.04095, 54.6083 ], [ -1.03624, 54.60609 ], [ -1.03076, 54.60362 ], [ -1.02514, 54.60108 ], [ -1.01631, 54.5983 ], [ -1.00233, 54.59364 ], [ -0.98435, 54.58937 ], [ -0.96797, 54.58591 ], [ -0.9602, 54.58508 ], [ -0.94931, 54.58677 ], [ -0.94347, 54.58885 ], [ -0.94095, 54.58914 ], [ -0.93826, 54.58881 ], [ -0.92117, 54.58505 ], [ -0.89814, 54.57199 ], [ -0.87341, 54.56983 ], [ -0.85301, 54.5717 ], [ -0.83107, 54.56619 ], [ -0.82416, 54.56216 ], [ -0.80905, 54.5589 ], [ -0.79147, 54.56057 ], [ -0.79091, 54.55948 ], [ -0.92438, 54.49243 ], [ -1.23479, 54.51037 ], [ -1.32876, 54.47408 ], [ -1.43478, 54.48751 ], [ -1.53546, 54.47811 ], [ -1.69686, 54.53606 ], [ -1.83124, 54.49324 ], [ -1.93433, 54.46039 ], [ -2.17017, 54.45826 ], [ -2.18904, 54.53315 ], [ -2.31155, 54.61668 ], [ -2.30125, 54.65378 ], [ -2.34624, 54.70416 ], [ -2.31204, 54.79108 ], [ -2.21687, 54.79314 ], [ -2.0128, 54.8604 ], [ -1.9031, 54.8483 ], [ -1.82095, 54.90573 ], [ -1.67314, 54.89761 ], [ -1.55934, 54.8821 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKC2", "NUTS_ID": "UKC2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northumberland and Tyne and Wear", "geo": "UKC2", "time_2018_MEAN": 79.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3639, 54.94418 ], [ -1.34737, 54.86069 ], [ -1.45612, 54.80266 ], [ -1.55934, 54.8821 ], [ -1.67314, 54.89761 ], [ -1.82095, 54.90573 ], [ -1.9031, 54.8483 ], [ -2.0128, 54.8604 ], [ -2.21687, 54.79314 ], [ -2.31204, 54.79108 ], [ -2.41268, 54.84724 ], [ -2.55154, 54.81844 ], [ -2.59355, 54.87823 ], [ -2.56833, 54.92683 ], [ -2.59587, 54.96483 ], [ -2.49552, 55.0673 ], [ -2.6503, 55.13921 ], [ -2.68975, 55.18906 ], [ -2.67246, 55.20602 ], [ -2.565, 55.31141 ], [ -2.47606, 55.35146 ], [ -2.36265, 55.3603 ], [ -2.32527, 55.40571 ], [ -2.20036, 55.45012 ], [ -2.30725, 55.63617 ], [ -2.03433, 55.81116 ], [ -1.84905, 55.65965 ], [ -1.83124, 55.65066 ], [ -1.63752, 55.55288 ], [ -1.52232, 55.20602 ], [ -1.46169, 55.07439 ], [ -1.3639, 54.94418 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD1", "NUTS_ID": "UKD1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cumbria", "geo": "UKD1", "time_2018_MEAN": 81.566666666666663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.31204, 54.79108 ], [ -2.34624, 54.70416 ], [ -2.30125, 54.65378 ], [ -2.31155, 54.61668 ], [ -2.18904, 54.53315 ], [ -2.17017, 54.45826 ], [ -2.29534, 54.42178 ], [ -2.33573, 54.34882 ], [ -2.33114, 54.25136 ], [ -2.46083, 54.22676 ], [ -2.52281, 54.21034 ], [ -2.6909, 54.16581 ], [ -2.78587, 54.19291 ], [ -2.86947, 54.17674 ], [ -2.98554, 54.15395 ], [ -3.03675, 54.21788 ], [ -3.09665, 54.15159 ], [ -3.14906, 54.0936 ], [ -3.16975, 54.09775 ], [ -3.26479, 54.1168 ], [ -3.24362, 54.15159 ], [ -3.20786, 54.21034 ], [ -3.20641, 54.23661 ], [ -3.22978, 54.26009 ], [ -3.28791, 54.20401 ], [ -3.38771, 54.25612 ], [ -3.43517, 54.35324 ], [ -3.61774, 54.51165 ], [ -3.58358, 54.61668 ], [ -3.56883, 54.65118 ], [ -3.44834, 54.7555 ], [ -3.3893, 54.87077 ], [ -3.30482, 54.89044 ], [ -3.2583, 54.94584 ], [ -3.16975, 54.93441 ], [ -3.11915, 54.92789 ], [ -3.11053, 54.96483 ], [ -3.05744, 54.9869 ], [ -3.02385, 55.04636 ], [ -2.85851, 55.10842 ], [ -2.68975, 55.18906 ], [ -2.6503, 55.13921 ], [ -2.49552, 55.0673 ], [ -2.59587, 54.96483 ], [ -2.56833, 54.92683 ], [ -2.59355, 54.87823 ], [ -2.55154, 54.81844 ], [ -2.41268, 54.84724 ], [ -2.31204, 54.79108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD3", "NUTS_ID": "UKD3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Greater Manchester", "geo": "UKD3", "time_2018_MEAN": 80.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.90958, 53.53842 ], [ -1.96335, 53.50985 ], [ -2.03102, 53.37029 ], [ -2.15977, 53.34214 ], [ -2.24076, 53.3596 ], [ -2.31397, 53.35745 ], [ -2.42661, 53.38746 ], [ -2.48969, 53.46029 ], [ -2.52216, 53.47398 ], [ -2.57674, 53.44604 ], [ -2.7305, 53.52063 ], [ -2.67664, 53.59965 ], [ -2.5113, 53.62703 ], [ -2.3791, 53.6309 ], [ -2.37121, 53.66711 ], [ -2.27133, 53.6236 ], [ -2.24692, 53.65806 ], [ -2.1685, 53.65025 ], [ -2.14629, 53.68227 ], [ -2.05586, 53.67537 ], [ -2.03377, 53.64882 ], [ -1.99698, 53.60461 ], [ -1.90958, 53.53842 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD4", "NUTS_ID": "UKD4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lancashire", "geo": "UKD4", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.46952, 54.04626 ], [ -2.38736, 54.04613 ], [ -2.33197, 53.98919 ], [ -2.30595, 53.98268 ], [ -2.26914, 53.97347 ], [ -2.18448, 53.9523 ], [ -2.04613, 53.85014 ], [ -2.06121, 53.82567 ], [ -2.11632, 53.79977 ], [ -2.16034, 53.72876 ], [ -2.14629, 53.68227 ], [ -2.1685, 53.65025 ], [ -2.24692, 53.65806 ], [ -2.27133, 53.6236 ], [ -2.37121, 53.66711 ], [ -2.3791, 53.6309 ], [ -2.5113, 53.62703 ], [ -2.67664, 53.59965 ], [ -2.7305, 53.52063 ], [ -2.83914, 53.49039 ], [ -2.88796, 53.50384 ], [ -2.93572, 53.53577 ], [ -3.03076, 53.53976 ], [ -3.0253, 53.60461 ], [ -2.95615, 53.64728 ], [ -2.9562, 53.69753 ], [ -2.91459, 53.72665 ], [ -2.83374, 53.72213 ], [ -2.85759, 53.73723 ], [ -3.0107, 53.73906 ], [ -3.05737, 53.77648 ], [ -3.04794, 53.87577 ], [ -3.01264, 53.92153 ], [ -2.88423, 53.98268 ], [ -2.91328, 54.03287 ], [ -2.81894, 54.10977 ], [ -2.85049, 54.15159 ], [ -2.86947, 54.17674 ], [ -2.78587, 54.19291 ], [ -2.6909, 54.16581 ], [ -2.52281, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.47921, 54.21034 ], [ -2.54499, 54.15159 ], [ -2.54917, 54.13171 ], [ -2.46952, 54.04626 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD6", "NUTS_ID": "UKD6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cheshire", "geo": "UKD6", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42661, 53.38746 ], [ -2.31397, 53.35745 ], [ -2.24076, 53.3596 ], [ -2.15977, 53.34214 ], [ -2.03102, 53.37029 ], [ -1.98738, 53.21361 ], [ -2.03377, 53.20103 ], [ -2.13544, 53.17348 ], [ -2.24578, 53.09446 ], [ -2.35846, 53.06045 ], [ -2.38077, 52.99843 ], [ -2.53809, 52.95624 ], [ -2.69927, 52.99546 ], [ -2.72682, 52.9833 ], [ -2.84334, 53.00899 ], [ -2.90504, 53.10468 ], [ -2.96183, 53.13997 ], [ -2.93702, 53.1768 ], [ -2.9527, 53.2082 ], [ -3.08419, 53.25612 ], [ -3.11071, 53.29632 ], [ -2.92856, 53.30828 ], [ -2.75241, 53.31475 ], [ -2.59522, 53.32245 ], [ -2.68602, 53.38286 ], [ -2.65834, 53.43871 ], [ -2.57674, 53.44604 ], [ -2.52216, 53.47398 ], [ -2.48969, 53.46029 ], [ -2.42661, 53.38746 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKD7", "NUTS_ID": "UKD7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Merseyside", "geo": "UKD7", "time_2018_MEAN": 79.533333333333331 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.88796, 53.50384 ], [ -2.83914, 53.49039 ], [ -2.7305, 53.52063 ], [ -2.57674, 53.44604 ], [ -2.65834, 53.43871 ], [ -2.68602, 53.38286 ], [ -2.59522, 53.32245 ], [ -2.75241, 53.31475 ], [ -2.82668, 53.33167 ], [ -2.95395, 53.37052 ], [ -3.00874, 53.43841 ], [ -3.09416, 53.54853 ], [ -3.06757, 53.60461 ], [ -2.9562, 53.69753 ], [ -2.95615, 53.64728 ], [ -3.0253, 53.60461 ], [ -3.03076, 53.53976 ], [ -2.93572, 53.53577 ], [ -2.88796, 53.50384 ] ] ], [ [ [ -2.92856, 53.30828 ], [ -3.11071, 53.29632 ], [ -3.16975, 53.36359 ], [ -3.18662, 53.38281 ], [ -3.16975, 53.38944 ], [ -3.05625, 53.43404 ], [ -2.92856, 53.30828 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE1", "NUTS_ID": "UKE1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Yorkshire and Northern Lincolnshire", "geo": "UKE1", "time_2018_MEAN": 80.766666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.20053, 54.15159 ], [ -0.12935, 54.11553 ], [ -0.19192, 54.04029 ], [ -0.17515, 53.98268 ], [ -0.15768, 53.92268 ], [ 0.07352, 53.65866 ], [ -0.08925, 53.64293 ], [ -0.2501, 53.73332 ], [ -0.41914, 53.71962 ], [ -0.54015, 53.71025 ], [ -0.62559, 53.72888 ], [ -0.68024, 53.71491 ], [ -0.69838, 53.68478 ], [ -0.62865, 53.70905 ], [ -0.52312, 53.68285 ], [ -0.29512, 53.70968 ], [ 0.01738, 53.52537 ], [ -0.06161, 53.51142 ], [ -0.12155, 53.44174 ], [ -0.20717, 53.49469 ], [ -0.20289, 53.56633 ], [ -0.29729, 53.60563 ], [ -0.34054, 53.56416 ], [ -0.43478, 53.557 ], [ -0.41882, 53.5206 ], [ -0.49329, 53.47231 ], [ -0.60891, 53.45937 ], [ -0.63904, 53.51013 ], [ -0.71879, 53.51689 ], [ -0.79742, 53.45509 ], [ -0.88562, 53.4633 ], [ -0.93552, 53.50252 ], [ -0.86527, 53.63773 ], [ -1.0486, 53.65608 ], [ -1.08591, 53.68461 ], [ -0.94553, 53.71814 ], [ -0.93367, 53.88013 ], [ -0.92522, 53.99155 ], [ -0.84187, 54.02014 ], [ -0.69626, 54.01388 ], [ -0.58583, 54.08276 ], [ -0.46853, 54.1091 ], [ -0.42538, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.34642, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.2375, 54.15159 ], [ -0.20053, 54.15159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE2", "NUTS_ID": "UKE2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Yorkshire", "geo": "UKE2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.79091, 54.55948 ], [ -0.54857, 54.45762 ], [ -0.3848, 54.26849 ], [ -0.20053, 54.15159 ], [ -0.2375, 54.15159 ], [ -0.29602, 54.13749 ], [ -0.34642, 54.15159 ], [ -0.40791, 54.16879 ], [ -0.42538, 54.15159 ], [ -0.46853, 54.1091 ], [ -0.58583, 54.08276 ], [ -0.69626, 54.01388 ], [ -0.84187, 54.02014 ], [ -0.92522, 53.99155 ], [ -0.93367, 53.88013 ], [ -0.94553, 53.71814 ], [ -1.08591, 53.68461 ], [ -1.0486, 53.65608 ], [ -1.23279, 53.62114 ], [ -1.23772, 53.70527 ], [ -1.30199, 53.74176 ], [ -1.3405, 53.85293 ], [ -1.32402, 53.93263 ], [ -1.67314, 53.91182 ], [ -1.72717, 53.91024 ], [ -1.83124, 53.93097 ], [ -1.92535, 53.94971 ], [ -2.04613, 53.85014 ], [ -2.18448, 53.9523 ], [ -2.26914, 53.97347 ], [ -2.30595, 53.98268 ], [ -2.33197, 53.98919 ], [ -2.38736, 54.04613 ], [ -2.46952, 54.04626 ], [ -2.54917, 54.13171 ], [ -2.54499, 54.15159 ], [ -2.47921, 54.21034 ], [ -2.46083, 54.22676 ], [ -2.33114, 54.25136 ], [ -2.33573, 54.34882 ], [ -2.29534, 54.42178 ], [ -2.17017, 54.45826 ], [ -1.93433, 54.46039 ], [ -1.83124, 54.49324 ], [ -1.69686, 54.53606 ], [ -1.53546, 54.47811 ], [ -1.43478, 54.48751 ], [ -1.32876, 54.47408 ], [ -1.23479, 54.51037 ], [ -0.92438, 54.49243 ], [ -0.79091, 54.55948 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE3", "NUTS_ID": "UKE3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "South Yorkshire", "geo": "UKE3", "time_2018_MEAN": 80.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.86527, 53.63773 ], [ -0.93552, 53.50252 ], [ -1.01835, 53.43209 ], [ -1.11048, 53.40568 ], [ -1.19969, 53.31145 ], [ -1.32467, 53.32881 ], [ -1.59912, 53.31132 ], [ -1.67314, 53.39642 ], [ -1.73887, 53.42623 ], [ -1.75152, 53.45966 ], [ -1.80147, 53.48099 ], [ -1.82219, 53.52112 ], [ -1.71826, 53.55647 ], [ -1.67314, 53.55391 ], [ -1.5864, 53.6072 ], [ -1.41117, 53.60888 ], [ -1.31348, 53.57911 ], [ -1.23279, 53.62114 ], [ -1.0486, 53.65608 ], [ -0.86527, 53.63773 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO41", "NUTS_ID": "RO41", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Sud-Vest Oltenia", "geo": "RO41", "time_2018_MEAN": 76.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.52313, 45.58056 ], [ 24.51717, 45.48445 ], [ 24.4852, 45.44341 ], [ 24.47324, 45.23264 ], [ 24.51014, 45.18107 ], [ 24.50525, 45.03749 ], [ 24.43812, 44.84538 ], [ 24.43678, 44.82185 ], [ 24.46391, 44.82188 ], [ 24.52719, 44.87968 ], [ 24.60432, 44.74954 ], [ 24.70688, 44.71904 ], [ 24.75317, 44.40589 ], [ 24.88402, 44.38264 ], [ 24.8284, 44.35563 ], [ 24.80125, 44.1848 ], [ 24.84745, 44.09703 ], [ 24.61082, 43.99283 ], [ 24.73632, 43.80022 ], [ 24.65478, 43.72359 ], [ 24.50009, 43.75939 ], [ 24.32352, 43.69769 ], [ 24.11204, 43.69995 ], [ 23.73015, 43.8029 ], [ 23.63039, 43.79105 ], [ 23.4231, 43.85153 ], [ 23.25146, 43.83394 ], [ 22.99717, 43.80787 ], [ 22.88712, 43.83429 ], [ 22.84725, 43.87791 ], [ 22.89195, 43.98291 ], [ 23.03395, 44.04493 ], [ 23.02449, 44.08049 ], [ 22.96637, 44.09829 ], [ 22.67516, 44.21566 ], [ 22.67236, 44.27521 ], [ 22.53956, 44.32742 ], [ 22.46844, 44.46493 ], [ 22.53876, 44.48216 ], [ 22.60115, 44.54541 ], [ 22.74379, 44.53531 ], [ 22.75184, 44.5608 ], [ 22.70373, 44.60191 ], [ 22.43335, 44.70566 ], [ 22.31154, 44.65699 ], [ 22.18979, 44.49656 ], [ 22.14443, 44.47813 ], [ 22.05085, 44.53337 ], [ 22.01613, 44.5992 ], [ 22.15596, 44.60077 ], [ 22.14976, 44.70089 ], [ 22.21305, 44.807 ], [ 22.41033, 44.7621 ], [ 22.48046, 44.87878 ], [ 22.50022, 44.97372 ], [ 22.65663, 45.10817 ], [ 22.56972, 45.16245 ], [ 22.68625, 45.25796 ], [ 22.81863, 45.27915 ], [ 23.01665, 45.25975 ], [ 23.25146, 45.30808 ], [ 23.36832, 45.33213 ], [ 23.45269, 45.30381 ], [ 23.59064, 45.35307 ], [ 23.59727, 45.47347 ], [ 23.65028, 45.4623 ], [ 23.70361, 45.49677 ], [ 23.82927, 45.53223 ], [ 24.15067, 45.51483 ], [ 24.38425, 45.58241 ], [ 24.52313, 45.58056 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RO42", "NUTS_ID": "RO42", "LEVL_CODE": 2, "CNTR_CODE": "RO", "NUTS_NAME": "Vest", "geo": "RO42", "time_2018_MEAN": 75.433333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.67658, 46.40583 ], [ 22.74872, 46.35121 ], [ 22.91973, 46.32719 ], [ 22.98173, 46.22546 ], [ 23.08283, 46.19131 ], [ 23.09454, 46.15242 ], [ 23.06197, 46.12203 ], [ 23.09386, 46.0616 ], [ 23.22683, 46.02374 ], [ 23.25146, 45.96403 ], [ 23.32417, 45.87167 ], [ 23.39536, 45.69438 ], [ 23.3903, 45.63044 ], [ 23.51198, 45.56292 ], [ 23.59727, 45.47347 ], [ 23.59064, 45.35307 ], [ 23.45269, 45.30381 ], [ 23.36832, 45.33213 ], [ 23.25146, 45.30808 ], [ 23.01665, 45.25975 ], [ 22.81863, 45.27915 ], [ 22.68625, 45.25796 ], [ 22.56972, 45.16245 ], [ 22.65663, 45.10817 ], [ 22.50022, 44.97372 ], [ 22.48046, 44.87878 ], [ 22.41033, 44.7621 ], [ 22.21305, 44.807 ], [ 22.14976, 44.70089 ], [ 22.15596, 44.60077 ], [ 22.01613, 44.5992 ], [ 22.01235, 44.60232 ], [ 21.96508, 44.63664 ], [ 21.68845, 44.66502 ], [ 21.64101, 44.66026 ], [ 21.62359, 44.66715 ], [ 21.58112, 44.75669 ], [ 21.40682, 44.78106 ], [ 21.35847, 44.82161 ], [ 21.39604, 44.86382 ], [ 21.54186, 44.90366 ], [ 21.39827, 45.01242 ], [ 21.50489, 45.12801 ], [ 21.47918, 45.19303 ], [ 21.24446, 45.24186 ], [ 21.17383, 45.31532 ], [ 21.01658, 45.32463 ], [ 20.85238, 45.46559 ], [ 20.81338, 45.47789 ], [ 20.7777, 45.48915 ], [ 20.81338, 45.53086 ], [ 20.81338, 45.55096 ], [ 20.77141, 45.60595 ], [ 20.8105, 45.77388 ], [ 20.72002, 45.7536 ], [ 20.66283, 45.79412 ], [ 20.56784, 45.89801 ], [ 20.36698, 45.9898 ], [ 20.2643, 46.12637 ], [ 20.34893, 46.1653 ], [ 20.45706, 46.1504 ], [ 20.51112, 46.18404 ], [ 20.62693, 46.13544 ], [ 20.7053, 46.16094 ], [ 20.7756, 46.27591 ], [ 20.81338, 46.27351 ], [ 21.08608, 46.25618 ], [ 21.17352, 46.31269 ], [ 21.21505, 46.40207 ], [ 21.30365, 46.42682 ], [ 21.2678, 46.5088 ], [ 21.32011, 46.61596 ], [ 21.4414, 46.65147 ], [ 21.49876, 46.65329 ], [ 21.54906, 46.61574 ], [ 21.68845, 46.66477 ], [ 21.87501, 46.67443 ], [ 21.93625, 46.62254 ], [ 22.08082, 46.63088 ], [ 22.15907, 46.59749 ], [ 22.19645, 46.52019 ], [ 22.31755, 46.50661 ], [ 22.37115, 46.43074 ], [ 22.44933, 46.39026 ], [ 22.67658, 46.40583 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "RS11", "NUTS_ID": "RS11", "LEVL_CODE": 2, "CNTR_CODE": "RS", "NUTS_NAME": "Београдски регион", "geo": "RS11", "time_2018_MEAN": 76.933333333333337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.81338, 44.6582 ], [ 20.81338, 44.62119 ], [ 20.80767, 44.58719 ], [ 20.76591, 44.548 ], [ 20.81338, 44.49487 ], [ 20.84413, 44.46045 ], [ 20.81338, 44.44599 ], [ 20.75976, 44.4208 ], [ 20.78354, 44.32662 ], [ 20.45467, 44.43507 ], [ 20.42664, 44.41902 ], [ 20.44308, 44.37733 ], [ 20.40035, 44.31312 ], [ 20.30465, 44.26965 ], [ 20.25733, 44.28511 ], [ 20.2119, 44.33363 ], [ 20.24181, 44.47015 ], [ 20.20663, 44.548 ], [ 20.15355, 44.52146 ], [ 20.04152, 44.5292 ], [ 19.99031, 44.58565 ], [ 19.98585, 44.64228 ], [ 20.01125, 44.66715 ], [ 20.11746, 44.71244 ], [ 20.10589, 44.79752 ], [ 20.17702, 44.90239 ], [ 20.29153, 44.94551 ], [ 20.35336, 45.02196 ], [ 20.33414, 45.07441 ], [ 20.41436, 45.08417 ], [ 20.4496, 45.01921 ], [ 20.61128, 44.91492 ], [ 20.61844, 44.86854 ], [ 20.58934, 44.84078 ], [ 20.64737, 44.75091 ], [ 20.76, 44.66715 ], [ 20.77771, 44.66011 ], [ 20.81338, 44.6582 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR41", "NUTS_ID": "TR41", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Bursa, Eskişehir, Bilecik", "geo": "TR41", "time_2018_MEAN": 78.433333333333323 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.92495, 40.55163 ], [ 29.94949, 40.53778 ], [ 29.96442, 40.52208 ], [ 29.98237, 40.45371 ], [ 30.02133, 40.42146 ], [ 30.08973, 40.39939 ], [ 30.18552, 40.36846 ], [ 30.3985, 40.37491 ], [ 30.43871, 40.32294 ], [ 30.52193, 40.29434 ], [ 30.56145, 40.27384 ], [ 30.58533, 40.25539 ], [ 30.59595, 40.23913 ], [ 30.59828, 40.20813 ], [ 30.60413, 40.19092 ], [ 30.65009, 40.14474 ], [ 30.82533, 40.12578 ], [ 30.88058, 40.04463 ], [ 30.93575, 40.03142 ], [ 31.29514, 40.06409 ], [ 31.40711, 40.0535 ], [ 31.45017, 40.0219 ], [ 31.67353, 40.02244 ], [ 31.78213, 39.89242 ], [ 31.81015, 39.87809 ], [ 31.90374, 39.83022 ], [ 31.83443, 39.74131 ], [ 31.90813, 39.66877 ], [ 32.02126, 39.47163 ], [ 32.00273, 39.35525 ], [ 32.06756, 39.27249 ], [ 32.02636, 39.22671 ], [ 31.94765, 39.21009 ], [ 31.81532, 39.12869 ], [ 31.7425, 39.08246 ], [ 31.61973, 39.10306 ], [ 31.37814, 39.15583 ], [ 31.28447, 39.27249 ], [ 31.2477, 39.2855 ], [ 31.21546, 39.28388 ], [ 31.17412, 39.27249 ], [ 30.76721, 39.13146 ], [ 30.56399, 39.15365 ], [ 30.42949, 39.21761 ], [ 30.40413, 39.24355 ], [ 30.38528, 39.27249 ], [ 30.32829, 39.36015 ], [ 30.3661, 39.42387 ], [ 30.34714, 39.50028 ], [ 30.2436, 39.56671 ], [ 30.19112, 39.65436 ], [ 30.08973, 39.65767 ], [ 30.06013, 39.65864 ], [ 30.01007, 39.65515 ], [ 29.96585, 39.65653 ], [ 29.86618, 39.67822 ], [ 29.84449, 39.6837 ], [ 29.75971, 39.72243 ], [ 29.74218, 39.87133 ], [ 29.56295, 39.86415 ], [ 29.50094, 39.87809 ], [ 29.41767, 39.89681 ], [ 29.4129, 39.87809 ], [ 29.3942, 39.80481 ], [ 29.27417, 39.72113 ], [ 29.19843, 39.61284 ], [ 29.13976, 39.58802 ], [ 28.96857, 39.60068 ], [ 28.79456, 39.62911 ], [ 28.68276, 39.74773 ], [ 28.50911, 39.74417 ], [ 28.26361, 39.88301 ], [ 28.12172, 40.11071 ], [ 28.08252, 40.22929 ], [ 28.16478, 40.39561 ], [ 28.33517, 40.39477 ], [ 28.49939, 40.39395 ], [ 28.6508, 40.36272 ], [ 28.78933, 40.39173 ], [ 28.95573, 40.35789 ], [ 29.04357, 40.36578 ], [ 29.14098, 40.42853 ], [ 29.0748, 40.47504 ], [ 28.99123, 40.46627 ], [ 29.07322, 40.53953 ], [ 29.21318, 40.52241 ], [ 29.41022, 40.55039 ], [ 29.56282, 40.54508 ], [ 29.72264, 40.60261 ], [ 29.92495, 40.55163 ] ] ], [ [ [ 28.5514, 40.50475 ], [ 28.51844, 40.49712 ], [ 28.5004, 40.51778 ], [ 28.52336, 40.5528 ], [ 28.55987, 40.53057 ], [ 28.5514, 40.50475 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR42", "NUTS_ID": "TR42", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kocaeli, Sakarya, Düzce, Bolu, Yalova", "geo": "TR42", "time_2018_MEAN": 78.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.35469, 41.18419 ], [ 30.76578, 41.08651 ], [ 30.98206, 41.0726 ], [ 31.29566, 41.11632 ], [ 31.43803, 41.02692 ], [ 31.75363, 41.00563 ], [ 31.82368, 40.99983 ], [ 31.85361, 40.99981 ], [ 31.87324, 40.99987 ], [ 31.92701, 41.00647 ], [ 32.03445, 41.01283 ], [ 32.13402, 41.0307 ], [ 32.17721, 41.03339 ], [ 32.21432, 41.03282 ], [ 32.2435, 41.03071 ], [ 32.27338, 41.02511 ], [ 32.27619, 41.00492 ], [ 32.28841, 40.97613 ], [ 32.29085, 40.94956 ], [ 32.30778, 40.9081 ], [ 32.32604, 40.88752 ], [ 32.34762, 40.87623 ], [ 32.39526, 40.86148 ], [ 32.47599, 40.85064 ], [ 32.51309, 40.84193 ], [ 32.54053, 40.8275 ], [ 32.56004, 40.80748 ], [ 32.56697, 40.74303 ], [ 32.55482, 40.69194 ], [ 32.38398, 40.66058 ], [ 32.37158, 40.62376 ], [ 32.40654, 40.5891 ], [ 32.21521, 40.46892 ], [ 31.87602, 40.32131 ], [ 31.58409, 40.27813 ], [ 31.42819, 40.33755 ], [ 31.30277, 40.31481 ], [ 31.13399, 40.35842 ], [ 31.05735, 40.22404 ], [ 30.82533, 40.12578 ], [ 30.65009, 40.14474 ], [ 30.60413, 40.19092 ], [ 30.59828, 40.20813 ], [ 30.59595, 40.23913 ], [ 30.58533, 40.25539 ], [ 30.56145, 40.27384 ], [ 30.52193, 40.29434 ], [ 30.43871, 40.32294 ], [ 30.3985, 40.37491 ], [ 30.18552, 40.36846 ], [ 30.08973, 40.39939 ], [ 30.02133, 40.42146 ], [ 29.98237, 40.45371 ], [ 29.96442, 40.52208 ], [ 29.94949, 40.53778 ], [ 29.92495, 40.55163 ], [ 29.72264, 40.60261 ], [ 29.56282, 40.54508 ], [ 29.41022, 40.55039 ], [ 29.21318, 40.52241 ], [ 29.07322, 40.53953 ], [ 28.99123, 40.46627 ], [ 28.79546, 40.52233 ], [ 28.82101, 40.56171 ], [ 28.90361, 40.5891 ], [ 29.00262, 40.64223 ], [ 29.28631, 40.66281 ], [ 29.50278, 40.71784 ], [ 29.54699, 40.69544 ], [ 29.84449, 40.7268 ], [ 29.91747, 40.71725 ], [ 29.93549, 40.7248 ], [ 29.93988, 40.74414 ], [ 29.9221, 40.75922 ], [ 29.84449, 40.75122 ], [ 29.63767, 40.7803 ], [ 29.376, 40.75675 ], [ 29.34252, 40.80766 ], [ 29.40296, 40.94198 ], [ 29.47614, 40.99 ], [ 29.5433, 41.00935 ], [ 29.65022, 40.98778 ], [ 29.84449, 41.06313 ], [ 29.86437, 41.09192 ], [ 29.86562, 41.14345 ], [ 30.08973, 41.13939 ], [ 30.13468, 41.13858 ], [ 30.27397, 41.20412 ], [ 30.35469, 41.18419 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR51", "NUTS_ID": "TR51", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Ankara", "geo": "TR51", "time_2018_MEAN": 79.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.69542, 40.33224 ], [ 33.57423, 40.17852 ], [ 33.58205, 40.03897 ], [ 33.4829, 39.97707 ], [ 33.37015, 39.95317 ], [ 33.33494, 39.86988 ], [ 33.25794, 39.64322 ], [ 33.29103, 39.58326 ], [ 33.33494, 39.55244 ], [ 33.39621, 39.50944 ], [ 33.39465, 39.419 ], [ 33.44172, 39.35145 ], [ 33.55432, 39.21 ], [ 33.75506, 39.0808 ], [ 33.88602, 39.04341 ], [ 33.73277, 38.9459 ], [ 33.79201, 38.84287 ], [ 33.70675, 38.68826 ], [ 33.46441, 38.63659 ], [ 33.36607, 38.8003 ], [ 33.37097, 38.97164 ], [ 33.33494, 39.05019 ], [ 32.99987, 39.23047 ], [ 32.84358, 39.19666 ], [ 32.76339, 39.12161 ], [ 32.71001, 39.07165 ], [ 32.44574, 38.9648 ], [ 32.2183, 39.00992 ], [ 32.02539, 38.98317 ], [ 31.81532, 39.12869 ], [ 31.94765, 39.21009 ], [ 32.02636, 39.22671 ], [ 32.06756, 39.27249 ], [ 32.00273, 39.35525 ], [ 32.02126, 39.47163 ], [ 31.90813, 39.66877 ], [ 31.83443, 39.74131 ], [ 31.90374, 39.83022 ], [ 31.81015, 39.87809 ], [ 31.78213, 39.89242 ], [ 31.67353, 40.02244 ], [ 31.45017, 40.0219 ], [ 31.40711, 40.0535 ], [ 31.29514, 40.06409 ], [ 30.93575, 40.03142 ], [ 30.88058, 40.04463 ], [ 30.82533, 40.12578 ], [ 31.05735, 40.22404 ], [ 31.13399, 40.35842 ], [ 31.30277, 40.31481 ], [ 31.42819, 40.33755 ], [ 31.58409, 40.27813 ], [ 31.87602, 40.32131 ], [ 32.21521, 40.46892 ], [ 32.40654, 40.5891 ], [ 32.37158, 40.62376 ], [ 32.38398, 40.66058 ], [ 32.55482, 40.69194 ], [ 32.59544, 40.68463 ], [ 32.71541, 40.68398 ], [ 32.76339, 40.6703 ], [ 32.9647, 40.61289 ], [ 32.95296, 40.53153 ], [ 33.03517, 40.49087 ], [ 33.11322, 40.39456 ], [ 33.21737, 40.32748 ], [ 33.33494, 40.38362 ], [ 33.36175, 40.39642 ], [ 33.69542, 40.33224 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR52", "NUTS_ID": "TR52", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Konya, Karaman", "geo": "TR52", "time_2018_MEAN": 78.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.46441, 38.63659 ], [ 33.36898, 38.56488 ], [ 33.33494, 38.52007 ], [ 33.26199, 38.42401 ], [ 33.20799, 38.28015 ], [ 33.2558, 38.15463 ], [ 33.33494, 38.05317 ], [ 33.37897, 37.99673 ], [ 33.39184, 37.98022 ], [ 33.41466, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.6756, 37.97401 ], [ 34.03357, 38.00481 ], [ 34.07122, 37.99673 ], [ 34.10712, 37.98902 ], [ 34.12529, 37.97401 ], [ 34.39713, 37.74965 ], [ 34.40373, 37.66434 ], [ 34.33652, 37.5854 ], [ 34.33212, 37.5409 ], [ 34.3408, 37.47084 ], [ 34.42891, 37.31638 ], [ 34.44051, 37.27857 ], [ 34.39645, 37.22822 ], [ 34.14452, 37.17204 ], [ 34.12364, 37.1617 ], [ 34.01584, 37.10832 ], [ 33.99748, 37.09766 ], [ 33.80832, 36.99659 ], [ 33.656, 37.00584 ], [ 33.5531, 36.96506 ], [ 33.5288, 36.95543 ], [ 33.33494, 36.92194 ], [ 33.24783, 36.9035 ], [ 33.14565, 36.83435 ], [ 32.96836, 36.80653 ], [ 32.99991, 36.70095 ], [ 33.15018, 36.54297 ], [ 32.99121, 36.4575 ], [ 32.76339, 36.40306 ], [ 32.57323, 36.35762 ], [ 32.51159, 36.40515 ], [ 32.51257, 36.5664 ], [ 32.45723, 36.73847 ], [ 32.31984, 36.85313 ], [ 32.28716, 36.91573 ], [ 32.19577, 36.96506 ], [ 32.00077, 37.07032 ], [ 31.91674, 37.1617 ], [ 31.8093, 37.27857 ], [ 31.74445, 37.3491 ], [ 31.53565, 37.3189 ], [ 31.30098, 37.40426 ], [ 31.32711, 37.61131 ], [ 31.44224, 37.74992 ], [ 31.43403, 37.97401 ], [ 31.49528, 37.99673 ], [ 31.56635, 38.02308 ], [ 31.58815, 38.06354 ], [ 31.5505, 38.11846 ], [ 31.30711, 38.2812 ], [ 31.23335, 38.40997 ], [ 31.60789, 38.61784 ], [ 31.53363, 38.69501 ], [ 31.63199, 38.82099 ], [ 31.63456, 38.90865 ], [ 31.7091, 38.94766 ], [ 31.62217, 39.01093 ], [ 31.61973, 39.10306 ], [ 31.7425, 39.08246 ], [ 31.81532, 39.12869 ], [ 32.02539, 38.98317 ], [ 32.2183, 39.00992 ], [ 32.44574, 38.9648 ], [ 32.71001, 39.07165 ], [ 32.76339, 39.12161 ], [ 32.84358, 39.19666 ], [ 32.99987, 39.23047 ], [ 33.33494, 39.05019 ], [ 33.37097, 38.97164 ], [ 33.36607, 38.8003 ], [ 33.46441, 38.63659 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR61", "NUTS_ID": "TR61", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Antalya, Isparta, Burdur", "geo": "TR61", "time_2018_MEAN": 79.733333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.30098, 37.40426 ], [ 31.53565, 37.3189 ], [ 31.74445, 37.3491 ], [ 31.8093, 37.27857 ], [ 31.91674, 37.1617 ], [ 32.00077, 37.07032 ], [ 32.19577, 36.96506 ], [ 32.28716, 36.91573 ], [ 32.31984, 36.85313 ], [ 32.45723, 36.73847 ], [ 32.51257, 36.5664 ], [ 32.51159, 36.40515 ], [ 32.57323, 36.35762 ], [ 32.59544, 36.29802 ], [ 32.6109, 36.25193 ], [ 32.61115, 36.16696 ], [ 32.59544, 36.11334 ], [ 32.57634, 36.09323 ], [ 32.39282, 36.16547 ], [ 32.30109, 36.23799 ], [ 32.10251, 36.47897 ], [ 31.91342, 36.5664 ], [ 31.31052, 36.81152 ], [ 31.00274, 36.85581 ], [ 30.7698, 36.85014 ], [ 30.68816, 36.87822 ], [ 30.62109, 36.84549 ], [ 30.57649, 36.78431 ], [ 30.57821, 36.5664 ], [ 30.48682, 36.42787 ], [ 30.5092, 36.33154 ], [ 30.41799, 36.22521 ], [ 30.38938, 36.27155 ], [ 30.19661, 36.31195 ], [ 30.11495, 36.25434 ], [ 30.08973, 36.25036 ], [ 29.92002, 36.22358 ], [ 29.88688, 36.17873 ], [ 29.68065, 36.14344 ], [ 29.62802, 36.18826 ], [ 29.44393, 36.22162 ], [ 29.39889, 36.25552 ], [ 29.33284, 36.24431 ], [ 29.26056, 36.3044 ], [ 29.32568, 36.4467 ], [ 29.53647, 36.5664 ], [ 29.5935, 36.61856 ], [ 29.63807, 36.67135 ], [ 29.66724, 36.76041 ], [ 29.68519, 36.80363 ], [ 29.71679, 36.84984 ], [ 29.74649, 36.88729 ], [ 29.75335, 36.91096 ], [ 29.75197, 36.92896 ], [ 29.73865, 36.9435 ], [ 29.71326, 36.95631 ], [ 29.65945, 36.96506 ], [ 29.60588, 36.97377 ], [ 29.5893, 36.96506 ], [ 29.40742, 36.87167 ], [ 29.41063, 36.9481 ], [ 29.40279, 36.96506 ], [ 29.34145, 37.00685 ], [ 29.44548, 37.1617 ], [ 29.52399, 37.27857 ], [ 29.59527, 37.38467 ], [ 29.51811, 37.47302 ], [ 29.50894, 37.61249 ], [ 29.85212, 37.75229 ], [ 30.03998, 37.75241 ], [ 30.08973, 37.82524 ], [ 30.1748, 37.94978 ], [ 30.21853, 37.97401 ], [ 30.25951, 37.99673 ], [ 30.32494, 38.03299 ], [ 30.41889, 38.13979 ], [ 30.70596, 38.26886 ], [ 30.98498, 38.45975 ], [ 31.1157, 38.48864 ], [ 31.23335, 38.40997 ], [ 31.30711, 38.2812 ], [ 31.5505, 38.11846 ], [ 31.58815, 38.06354 ], [ 31.56635, 38.02308 ], [ 31.49528, 37.99673 ], [ 31.43403, 37.97401 ], [ 31.44224, 37.74992 ], [ 31.32711, 37.61131 ], [ 31.30098, 37.40426 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR62", "NUTS_ID": "TR62", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Adana, Mersin", "geo": "TR62", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.30387, 37.73458 ], [ 36.12054, 37.70715 ], [ 36.05629, 37.66685 ], [ 35.90176, 37.3642 ], [ 35.87199, 37.18884 ], [ 35.99048, 37.19486 ], [ 36.04986, 37.1617 ], [ 36.05271, 37.01851 ], [ 36.01124, 36.96506 ], [ 35.96309, 36.903 ], [ 35.80833, 36.78133 ], [ 35.66831, 36.7541 ], [ 35.6884, 36.69155 ], [ 35.56082, 36.57327 ], [ 35.42766, 36.58447 ], [ 35.33453, 36.55047 ], [ 34.89925, 36.73828 ], [ 34.81314, 36.79431 ], [ 34.75633, 36.79733 ], [ 34.65782, 36.80257 ], [ 34.56981, 36.76848 ], [ 34.25779, 36.5664 ], [ 34.09552, 36.42089 ], [ 34.05184, 36.30852 ], [ 34.01584, 36.28303 ], [ 33.9672, 36.2561 ], [ 33.8613, 36.29915 ], [ 33.68971, 36.15852 ], [ 33.63052, 36.17784 ], [ 33.54129, 36.13966 ], [ 33.33494, 36.13499 ], [ 33.1648, 36.13115 ], [ 33.07787, 36.08738 ], [ 32.94316, 36.09216 ], [ 32.79687, 36.02795 ], [ 32.76339, 36.03786 ], [ 32.57634, 36.09323 ], [ 32.59544, 36.11334 ], [ 32.61115, 36.16696 ], [ 32.6109, 36.25193 ], [ 32.59544, 36.29802 ], [ 32.57323, 36.35762 ], [ 32.76339, 36.40306 ], [ 32.99121, 36.4575 ], [ 33.15018, 36.54297 ], [ 32.99991, 36.70095 ], [ 32.96836, 36.80653 ], [ 33.14565, 36.83435 ], [ 33.24783, 36.9035 ], [ 33.33494, 36.92194 ], [ 33.5288, 36.95543 ], [ 33.5531, 36.96506 ], [ 33.656, 37.00584 ], [ 33.80832, 36.99659 ], [ 33.99748, 37.09766 ], [ 34.01584, 37.10832 ], [ 34.12364, 37.1617 ], [ 34.14452, 37.17204 ], [ 34.39645, 37.22822 ], [ 34.44051, 37.27857 ], [ 34.42891, 37.31638 ], [ 34.748, 37.4093 ], [ 34.86189, 37.49217 ], [ 34.89725, 37.65903 ], [ 35.21871, 37.75922 ], [ 35.565, 37.73918 ], [ 35.5823, 37.90958 ], [ 35.61049, 37.95186 ], [ 35.66244, 37.97401 ], [ 35.71568, 37.99673 ], [ 35.91206, 38.0805 ], [ 36.10347, 38.30602 ], [ 36.2149, 38.3739 ], [ 36.35179, 38.3319 ], [ 36.4405, 38.21943 ], [ 36.3729, 38.11478 ], [ 36.34361, 37.99673 ], [ 36.33797, 37.97401 ], [ 36.32424, 37.91869 ], [ 36.3447, 37.83733 ], [ 36.30387, 37.73458 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR63", "NUTS_ID": "TR63", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Hatay, Kahramanmaraş, Osmaniye", "geo": "TR63", "time_2018_MEAN": 79.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.69739, 37.21814 ], [ 36.62405, 37.1617 ], [ 36.52838, 37.08808 ], [ 36.46567, 36.94867 ], [ 36.47543, 36.92898 ], [ 36.49024, 36.90876 ], [ 36.51562, 36.88582 ], [ 36.53614, 36.87188 ], [ 36.57472, 36.85554 ], [ 36.66001, 36.83323 ], [ 36.66192, 36.81363 ], [ 36.58648, 36.61979 ], [ 36.57172, 36.5664 ], [ 36.55909, 36.46313 ], [ 36.68058, 36.29135 ], [ 36.67411, 36.23678 ], [ 36.39466, 36.20584 ], [ 36.37353, 36.00798 ], [ 36.21918, 35.95113 ], [ 36.16628, 35.83167 ], [ 35.91681, 35.92852 ], [ 35.968, 36.03633 ], [ 35.78709, 36.31933 ], [ 35.89772, 36.43108 ], [ 36.1115, 36.5664 ], [ 36.20363, 36.63199 ], [ 36.19514, 36.7924 ], [ 36.05873, 36.91162 ], [ 35.96309, 36.903 ], [ 36.01124, 36.96506 ], [ 36.05271, 37.01851 ], [ 36.04986, 37.1617 ], [ 35.99048, 37.19486 ], [ 35.87199, 37.18884 ], [ 35.90176, 37.3642 ], [ 36.05629, 37.66685 ], [ 36.12054, 37.70715 ], [ 36.30387, 37.73458 ], [ 36.3447, 37.83733 ], [ 36.32424, 37.91869 ], [ 36.33797, 37.97401 ], [ 36.34361, 37.99673 ], [ 36.3729, 38.11478 ], [ 36.4405, 38.21943 ], [ 36.59734, 38.39224 ], [ 36.71327, 38.43527 ], [ 36.71151, 38.51194 ], [ 36.76985, 38.54644 ], [ 37.34149, 38.59352 ], [ 37.27203, 38.48206 ], [ 37.65683, 38.34057 ], [ 37.74956, 38.22046 ], [ 37.7413, 38.13782 ], [ 37.61788, 38.03104 ], [ 37.62502, 37.99673 ], [ 37.62975, 37.97401 ], [ 37.63867, 37.93117 ], [ 37.61454, 37.85695 ], [ 37.50255, 37.78356 ], [ 37.43842, 37.64607 ], [ 37.48499, 37.59732 ], [ 37.57047, 37.5769 ], [ 37.62322, 37.51165 ], [ 37.53984, 37.38008 ], [ 37.36118, 37.35119 ], [ 37.24297, 37.27857 ], [ 37.08389, 37.18083 ], [ 37.01842, 37.20662 ], [ 36.98102, 37.27857 ], [ 36.9655, 37.30843 ], [ 36.915, 37.32941 ], [ 36.81556, 37.27857 ], [ 36.69739, 37.21814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR71", "NUTS_ID": "TR71", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kırıkkale, Aksaray, Niğde, Nevşehir, Kırşehir", "geo": "TR71", "time_2018_MEAN": 78.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.21871, 37.75922 ], [ 34.89725, 37.65903 ], [ 34.86189, 37.49217 ], [ 34.748, 37.4093 ], [ 34.42891, 37.31638 ], [ 34.3408, 37.47084 ], [ 34.33212, 37.5409 ], [ 34.33652, 37.5854 ], [ 34.40373, 37.66434 ], [ 34.39713, 37.74965 ], [ 34.12529, 37.97401 ], [ 34.10712, 37.98902 ], [ 34.07122, 37.99673 ], [ 34.03357, 38.00481 ], [ 33.6756, 37.97401 ], [ 33.47735, 37.95696 ], [ 33.41466, 37.97401 ], [ 33.39184, 37.98022 ], [ 33.37897, 37.99673 ], [ 33.33494, 38.05317 ], [ 33.2558, 38.15463 ], [ 33.20799, 38.28015 ], [ 33.26199, 38.42401 ], [ 33.33494, 38.52007 ], [ 33.36898, 38.56488 ], [ 33.46441, 38.63659 ], [ 33.70675, 38.68826 ], [ 33.79201, 38.84287 ], [ 33.73277, 38.9459 ], [ 33.88602, 39.04341 ], [ 33.75506, 39.0808 ], [ 33.55432, 39.21 ], [ 33.44172, 39.35145 ], [ 33.39465, 39.419 ], [ 33.39621, 39.50944 ], [ 33.33494, 39.55244 ], [ 33.29103, 39.58326 ], [ 33.25794, 39.64322 ], [ 33.33494, 39.86988 ], [ 33.37015, 39.95317 ], [ 33.4829, 39.97707 ], [ 33.58205, 40.03897 ], [ 33.57423, 40.17852 ], [ 33.69542, 40.33224 ], [ 33.91623, 40.26304 ], [ 34.01584, 40.19372 ], [ 34.03655, 40.17931 ], [ 34.09351, 40.03392 ], [ 34.17551, 39.94043 ], [ 34.04551, 39.89939 ], [ 34.10804, 39.793 ], [ 34.22784, 39.72941 ], [ 34.40561, 39.68564 ], [ 34.51621, 39.5739 ], [ 34.50174, 39.49983 ], [ 34.64294, 39.41212 ], [ 34.75633, 39.35552 ], [ 34.90185, 39.28289 ], [ 34.91219, 39.19002 ], [ 35.02732, 39.08128 ], [ 35.03419, 39.00488 ], [ 34.9746, 38.78819 ], [ 35.02812, 38.72586 ], [ 35.07673, 38.57252 ], [ 34.90271, 38.43027 ], [ 34.88532, 38.34469 ], [ 34.96835, 38.32423 ], [ 35.05113, 38.18024 ], [ 35.19277, 38.15112 ], [ 35.26271, 38.09966 ], [ 35.27348, 37.99673 ], [ 35.27585, 37.97401 ], [ 35.28466, 37.88987 ], [ 35.21871, 37.75922 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR72", "NUTS_ID": "TR72", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Kayseri, Sivas, Yozgat", "geo": "TR72", "time_2018_MEAN": 78.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.14845, 40.52422 ], [ 38.21437, 40.35087 ], [ 38.21983, 40.21618 ], [ 38.78355, 40.08327 ], [ 38.73948, 39.98982 ], [ 38.63593, 39.99395 ], [ 38.56232, 39.96363 ], [ 38.43854, 39.98848 ], [ 38.3777, 39.94344 ], [ 38.4667, 39.84925 ], [ 38.33663, 39.66389 ], [ 38.35373, 39.60337 ], [ 38.32907, 39.52467 ], [ 38.41052, 39.42547 ], [ 38.35888, 39.34901 ], [ 38.34998, 39.14994 ], [ 38.28656, 39.15165 ], [ 38.15655, 39.09783 ], [ 37.83701, 39.09082 ], [ 37.74419, 38.98778 ], [ 37.64452, 39.02723 ], [ 37.52241, 39.02723 ], [ 37.5123, 38.8954 ], [ 37.56478, 38.77403 ], [ 37.42809, 38.70272 ], [ 37.34149, 38.59352 ], [ 36.76985, 38.54644 ], [ 36.71151, 38.51194 ], [ 36.71327, 38.43527 ], [ 36.59734, 38.39224 ], [ 36.4405, 38.21943 ], [ 36.35179, 38.3319 ], [ 36.2149, 38.3739 ], [ 36.10347, 38.30602 ], [ 35.91206, 38.0805 ], [ 35.71568, 37.99673 ], [ 35.66244, 37.97401 ], [ 35.61049, 37.95186 ], [ 35.5823, 37.90958 ], [ 35.565, 37.73918 ], [ 35.21871, 37.75922 ], [ 35.28466, 37.88987 ], [ 35.27585, 37.97401 ], [ 35.27348, 37.99673 ], [ 35.26271, 38.09966 ], [ 35.19277, 38.15112 ], [ 35.05113, 38.18024 ], [ 34.96835, 38.32423 ], [ 34.88532, 38.34469 ], [ 34.90271, 38.43027 ], [ 35.07673, 38.57252 ], [ 35.02812, 38.72586 ], [ 34.9746, 38.78819 ], [ 35.03419, 39.00488 ], [ 35.02732, 39.08128 ], [ 34.91219, 39.19002 ], [ 34.90185, 39.28289 ], [ 34.75633, 39.35552 ], [ 34.64294, 39.41212 ], [ 34.50174, 39.49983 ], [ 34.51621, 39.5739 ], [ 34.40561, 39.68564 ], [ 34.22784, 39.72941 ], [ 34.10804, 39.793 ], [ 34.04551, 39.89939 ], [ 34.17551, 39.94043 ], [ 34.3981, 40.00099 ], [ 34.57065, 39.96662 ], [ 34.75633, 40.00938 ], [ 34.85886, 40.03299 ], [ 34.93661, 39.98897 ], [ 35.06518, 40.0113 ], [ 35.12987, 40.0431 ], [ 35.16496, 40.22402 ], [ 35.35115, 40.24338 ], [ 35.44259, 40.23402 ], [ 35.48279, 40.17035 ], [ 35.59928, 40.0995 ], [ 35.91346, 40.09504 ], [ 36.00342, 39.95451 ], [ 36.60017, 39.98431 ], [ 36.69878, 40.18362 ], [ 36.78842, 40.22348 ], [ 36.9424, 40.21263 ], [ 37.09704, 40.24215 ], [ 37.20535, 40.19947 ], [ 37.43301, 40.17141 ], [ 37.47575, 40.25552 ], [ 37.59714, 40.33542 ], [ 37.58406, 40.42439 ], [ 37.70529, 40.34618 ], [ 37.77289, 40.40017 ], [ 37.89314, 40.37471 ], [ 37.93908, 40.39461 ], [ 37.99766, 40.49303 ], [ 38.14845, 40.52422 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR81", "NUTS_ID": "TR81", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Zonguldak, Karabük, Bartın", "geo": "TR81", "time_2018_MEAN": 78.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.04201, 41.06935 ], [ 32.99449, 40.99124 ], [ 32.89133, 40.96678 ], [ 32.80203, 40.97988 ], [ 32.76339, 40.93968 ], [ 32.70733, 40.88135 ], [ 32.59544, 40.82178 ], [ 32.56004, 40.80748 ], [ 32.54053, 40.8275 ], [ 32.51309, 40.84193 ], [ 32.47599, 40.85064 ], [ 32.39526, 40.86148 ], [ 32.34762, 40.87623 ], [ 32.32604, 40.88752 ], [ 32.30778, 40.9081 ], [ 32.29085, 40.94956 ], [ 32.28841, 40.97613 ], [ 32.27619, 41.00492 ], [ 32.27338, 41.02511 ], [ 32.2435, 41.03071 ], [ 32.21432, 41.03282 ], [ 32.17721, 41.03339 ], [ 32.13402, 41.0307 ], [ 32.03445, 41.01283 ], [ 31.92701, 41.00647 ], [ 31.87324, 40.99987 ], [ 31.85361, 40.99981 ], [ 31.82368, 40.99983 ], [ 31.75363, 41.00563 ], [ 31.43803, 41.02692 ], [ 31.29566, 41.11632 ], [ 31.40163, 41.20867 ], [ 31.40957, 41.31276 ], [ 32.06258, 41.58031 ], [ 32.14612, 41.60993 ], [ 32.27399, 41.71242 ], [ 32.59544, 41.82803 ], [ 32.7361, 41.84901 ], [ 32.76339, 41.80841 ], [ 32.83183, 41.70656 ], [ 32.78571, 41.59692 ], [ 32.88422, 41.57561 ], [ 33.02081, 41.56625 ], [ 33.05862, 41.46731 ], [ 33.11092, 41.42352 ], [ 32.95321, 41.33334 ], [ 32.89986, 41.203 ], [ 33.04201, 41.06935 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK1", "NUTS_ID": "UKK1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Gloucestershire, Wiltshire and Bristol/Bath area", "geo": "UKK1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.66573, 51.98749 ], [ -1.637, 51.93426 ], [ -1.7037, 51.78095 ], [ -1.68306, 51.69011 ], [ -1.68144, 51.5891 ], [ -1.60279, 51.5183 ], [ -1.58469, 51.52491 ], [ -1.57215, 51.48601 ], [ -1.52826, 51.45444 ], [ -1.54585, 51.40174 ], [ -1.49828, 51.32938 ], [ -1.55228, 51.2611 ], [ -1.66875, 51.20712 ], [ -1.61593, 51.02832 ], [ -1.63023, 50.96569 ], [ -1.68399, 50.95406 ], [ -1.83124, 50.99866 ], [ -1.95681, 50.98983 ], [ -2.03377, 50.97009 ], [ -2.09728, 50.95381 ], [ -2.23245, 51.06273 ], [ -2.32584, 51.07968 ], [ -2.35355, 51.12134 ], [ -2.2541, 51.2529 ], [ -2.28908, 51.32528 ], [ -2.46372, 51.27886 ], [ -2.75358, 51.3229 ], [ -2.86277, 51.30101 ], [ -2.99295, 51.32032 ], [ -2.96011, 51.37531 ], [ -2.81063, 51.47764 ], [ -2.67961, 51.48021 ], [ -2.70318, 51.50979 ], [ -2.67381, 51.54443 ], [ -2.53469, 51.67727 ], [ -2.66609, 51.6394 ], [ -2.67868, 51.72899 ], [ -2.65021, 51.82615 ], [ -2.45265, 51.89992 ], [ -2.48139, 52.006 ], [ -2.35136, 52.02137 ], [ -2.27159, 51.97057 ], [ -2.19069, 51.99852 ], [ -2.16076, 52.03983 ], [ -2.13022, 52.00953 ], [ -2.03377, 52.022 ], [ -1.91344, 52.03755 ], [ -1.84269, 52.01598 ], [ -1.84902, 52.06806 ], [ -1.83124, 52.07779 ], [ -1.76763, 52.11259 ], [ -1.67314, 52.0363 ], [ -1.66573, 51.98749 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK2", "NUTS_ID": "UKK2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Dorset and Somerset", "geo": "UKK2", "time_2018_MEAN": 82.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.28908, 51.32528 ], [ -2.2541, 51.2529 ], [ -2.35355, 51.12134 ], [ -2.32584, 51.07968 ], [ -2.23245, 51.06273 ], [ -2.09728, 50.95381 ], [ -2.03377, 50.97009 ], [ -1.95681, 50.98983 ], [ -1.84196, 50.91798 ], [ -1.78374, 50.78152 ], [ -1.69205, 50.73663 ], [ -1.74073, 50.72154 ], [ -1.83124, 50.71219 ], [ -1.92858, 50.70213 ], [ -2.03377, 50.71888 ], [ -1.96095, 50.65868 ], [ -1.97542, 50.60277 ], [ -2.3835, 50.6314 ], [ -2.49303, 50.5968 ], [ -2.76919, 50.70793 ], [ -2.94781, 50.71831 ], [ -2.94198, 50.76557 ], [ -2.90189, 50.79545 ], [ -2.95432, 50.82117 ], [ -3.06643, 50.89621 ], [ -3.14515, 50.9033 ], [ -3.16975, 50.91407 ], [ -3.42236, 51.02456 ], [ -3.58473, 51.01937 ], [ -3.81362, 51.13325 ], [ -3.81986, 51.16599 ], [ -3.74654, 51.18472 ], [ -3.72078, 51.23309 ], [ -3.48044, 51.21621 ], [ -3.31231, 51.18073 ], [ -3.16975, 51.19547 ], [ -3.07108, 51.20568 ], [ -3.02615, 51.22692 ], [ -2.99295, 51.32032 ], [ -2.86277, 51.30101 ], [ -2.75358, 51.3229 ], [ -2.46372, 51.27886 ], [ -2.28908, 51.32528 ] ] ], [ [ [ -2.40555, 50.5524 ], [ -2.44118, 50.51317 ], [ -2.46456, 50.52216 ], [ -2.44692, 50.57861 ], [ -2.40555, 50.5524 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK3", "NUTS_ID": "UKK3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Cornwall and Isles of Scilly", "geo": "UKK3", "time_2018_MEAN": 81.36666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.21883, 50.47507 ], [ -4.21956, 50.33753 ], [ -4.34232, 50.35784 ], [ -4.71982, 50.33245 ], [ -4.80957, 50.22956 ], [ -4.99003, 50.16779 ], [ -5.04307, 50.17655 ], [ -5.08693, 50.0336 ], [ -5.19346, 49.97425 ], [ -5.29592, 50.05901 ], [ -5.48278, 50.1174 ], [ -5.59503, 50.05437 ], [ -5.69195, 50.06088 ], [ -5.65621, 50.16441 ], [ -5.53446, 50.211 ], [ -5.42388, 50.20727 ], [ -5.28798, 50.26871 ], [ -5.05703, 50.4398 ], [ -5.00158, 50.54032 ], [ -4.80034, 50.60751 ], [ -4.58428, 50.77742 ], [ -4.54596, 50.92835 ], [ -4.46701, 50.92129 ], [ -4.43897, 50.85255 ], [ -4.45417, 50.79027 ], [ -4.38469, 50.7589 ], [ -4.30101, 50.58821 ], [ -4.2129, 50.5156 ], [ -4.21883, 50.47507 ] ] ], [ [ [ -6.26176, 49.96776 ], [ -6.28395, 49.90924 ], [ -6.33, 49.9361 ], [ -6.35017, 49.92387 ], [ -6.37753, 49.94567 ], [ -6.36116, 49.96841 ], [ -6.26176, 49.96776 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKK4", "NUTS_ID": "UKK4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Devon", "geo": "UKK4", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.95432, 50.82117 ], [ -2.90189, 50.79545 ], [ -2.94198, 50.76557 ], [ -2.94781, 50.71831 ], [ -3.16975, 50.68441 ], [ -3.23186, 50.67493 ], [ -3.36284, 50.62087 ], [ -3.44391, 50.65679 ], [ -3.50903, 50.51651 ], [ -3.55186, 50.42492 ], [ -3.50744, 50.37899 ], [ -3.62968, 50.29827 ], [ -3.65645, 50.22327 ], [ -3.70706, 50.2081 ], [ -3.84093, 50.23075 ], [ -3.93323, 50.30827 ], [ -4.03493, 50.29846 ], [ -4.12328, 50.34681 ], [ -4.18969, 50.37995 ], [ -4.18704, 50.4244 ], [ -4.21883, 50.47507 ], [ -4.2129, 50.5156 ], [ -4.30101, 50.58821 ], [ -4.38469, 50.7589 ], [ -4.45417, 50.79027 ], [ -4.43897, 50.85255 ], [ -4.46701, 50.92129 ], [ -4.54596, 50.92835 ], [ -4.51226, 51.01662 ], [ -4.35243, 50.99275 ], [ -4.25547, 51.03059 ], [ -4.22321, 51.07068 ], [ -4.20696, 51.19044 ], [ -3.72078, 51.23309 ], [ -3.74654, 51.18472 ], [ -3.81986, 51.16599 ], [ -3.81362, 51.13325 ], [ -3.58473, 51.01937 ], [ -3.42236, 51.02456 ], [ -3.16975, 50.91407 ], [ -3.14515, 50.9033 ], [ -3.06643, 50.89621 ], [ -2.95432, 50.82117 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL1", "NUTS_ID": "UKL1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Wales and The Valleys", "geo": "UKL1", "time_2018_MEAN": 80.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.37501, 52.89247 ], [ -3.48044, 52.86459 ], [ -3.59376, 52.81302 ], [ -3.60463, 52.71123 ], [ -3.81097, 52.67032 ], [ -3.85334, 52.59786 ], [ -3.92661, 52.56078 ], [ -3.85544, 52.54976 ], [ -3.81361, 52.48868 ], [ -3.75066, 52.48976 ], [ -3.75919, 52.44197 ], [ -3.67318, 52.35012 ], [ -3.73178, 52.32071 ], [ -3.74913, 52.25522 ], [ -3.74962, 52.13474 ], [ -3.65745, 52.03525 ], [ -3.72586, 51.88326 ], [ -3.80665, 51.78793 ], [ -3.77021, 51.76276 ], [ -3.664, 51.78361 ], [ -3.59129, 51.75462 ], [ -3.48044, 51.80828 ], [ -3.42296, 51.82742 ], [ -3.33446, 51.79041 ], [ -3.15734, 51.81606 ], [ -3.05598, 51.77549 ], [ -2.99219, 51.70519 ], [ -2.98923, 51.63468 ], [ -3.09529, 51.59903 ], [ -3.11887, 51.54571 ], [ -3.16975, 51.54867 ], [ -3.23751, 51.55263 ], [ -3.36841, 51.50494 ], [ -3.48044, 51.51448 ], [ -3.63786, 51.46984 ], [ -3.71538, 51.48446 ], [ -3.81605, 51.59069 ], [ -3.88623, 51.61739 ], [ -4.19584, 51.54212 ], [ -4.29353, 51.57987 ], [ -4.27239, 51.62767 ], [ -4.13024, 51.63926 ], [ -4.05255, 51.70328 ], [ -4.17325, 51.66243 ], [ -4.30303, 51.67793 ], [ -4.40318, 51.75418 ], [ -4.59288, 51.73819 ], [ -4.67275, 51.7181 ], [ -4.74421, 51.65339 ], [ -4.97722, 51.60756 ], [ -5.19151, 51.71846 ], [ -5.1839, 51.75324 ], [ -5.11923, 51.79274 ], [ -5.13505, 51.84599 ], [ -5.28347, 51.86702 ], [ -5.30128, 51.89122 ], [ -5.11398, 51.96646 ], [ -5.05811, 52.01967 ], [ -4.87415, 52.02631 ], [ -4.67804, 52.12701 ], [ -4.5007, 52.14646 ], [ -4.23976, 52.25103 ], [ -4.12054, 52.35785 ], [ -4.04645, 52.51223 ], [ -3.93101, 52.55361 ], [ -4.06245, 52.54554 ], [ -4.11847, 52.60245 ], [ -4.11285, 52.64139 ], [ -4.06618, 52.68507 ], [ -4.05921, 52.70616 ], [ -4.08253, 52.74672 ], [ -4.14305, 52.80651 ], [ -4.12494, 52.84941 ], [ -4.15768, 52.90591 ], [ -4.23068, 52.9167 ], [ -4.39838, 52.89039 ], [ -4.47061, 52.85947 ], [ -4.49507, 52.83387 ], [ -4.50317, 52.79887 ], [ -4.52631, 52.78582 ], [ -4.59537, 52.82124 ], [ -4.73422, 52.78915 ], [ -4.75151, 52.8005 ], [ -4.71905, 52.85338 ], [ -4.65097, 52.90195 ], [ -4.57455, 52.93612 ], [ -4.51836, 52.94414 ], [ -4.36263, 53.02926 ], [ -4.34073, 53.05933 ], [ -4.33458, 53.11592 ], [ -4.22482, 53.17836 ], [ -4.1938, 53.21038 ], [ -4.13107, 53.23277 ], [ -4.06918, 53.2322 ], [ -4.00738, 53.24693 ], [ -3.86451, 53.29414 ], [ -3.83525, 53.32943 ], [ -3.61873, 53.29298 ], [ -3.48044, 53.3284 ], [ -3.36339, 53.35203 ], [ -3.3832, 53.30318 ], [ -3.29782, 53.18834 ], [ -3.19047, 53.14836 ], [ -3.16975, 53.11927 ], [ -3.13978, 53.07721 ], [ -3.12046, 52.96489 ], [ -3.16975, 52.95706 ], [ -3.3049, 52.9356 ], [ -3.37501, 52.89247 ] ] ], [ [ [ -4.23009, 53.35703 ], [ -4.20232, 53.29563 ], [ -4.11793, 53.31915 ], [ -4.0559, 53.30813 ], [ -4.08731, 53.26353 ], [ -4.21381, 53.20522 ], [ -4.21904, 53.18601 ], [ -4.33839, 53.13034 ], [ -4.44017, 53.15668 ], [ -4.46044, 53.18013 ], [ -4.50525, 53.18709 ], [ -4.49843, 53.20682 ], [ -4.55383, 53.24818 ], [ -4.61079, 53.24508 ], [ -4.61801, 53.27735 ], [ -4.68547, 53.28309 ], [ -4.68706, 53.30809 ], [ -4.65349, 53.32258 ], [ -4.57517, 53.28867 ], [ -4.5562, 53.37418 ], [ -4.57546, 53.40119 ], [ -4.50688, 53.40948 ], [ -4.42672, 53.42915 ], [ -4.29584, 53.41351 ], [ -4.2805, 53.37652 ], [ -4.23009, 53.35703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKL2", "NUTS_ID": "UKL2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Wales", "geo": "UKL2", "time_2018_MEAN": 81.033333333333331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.72682, 52.9833 ], [ -2.73347, 52.93434 ], [ -2.78941, 52.90544 ], [ -2.97771, 52.96108 ], [ -3.14748, 52.89016 ], [ -3.15133, 52.80109 ], [ -3.00275, 52.73709 ], [ -3.12691, 52.57071 ], [ -3.10121, 52.54249 ], [ -3.01673, 52.56624 ], [ -3.00677, 52.53312 ], [ -3.16975, 52.46099 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.40936 ], [ -3.07168, 52.35557 ], [ -2.95472, 52.34926 ], [ -3.03623, 52.25522 ], [ -3.11324, 52.16801 ], [ -3.11747, 52.07979 ], [ -3.06736, 51.98315 ], [ -2.96606, 51.91315 ], [ -2.86755, 51.92609 ], [ -2.74774, 51.84651 ], [ -2.65021, 51.82615 ], [ -2.67868, 51.72899 ], [ -2.66609, 51.6394 ], [ -2.7179, 51.58491 ], [ -3.08269, 51.50191 ], [ -3.16975, 51.42267 ], [ -3.18618, 51.40771 ], [ -3.48044, 51.39279 ], [ -3.55916, 51.40667 ], [ -3.63786, 51.46984 ], [ -3.48044, 51.51448 ], [ -3.36841, 51.50494 ], [ -3.23751, 51.55263 ], [ -3.16975, 51.54867 ], [ -3.11887, 51.54571 ], [ -3.09529, 51.59903 ], [ -2.98923, 51.63468 ], [ -2.99219, 51.70519 ], [ -3.05598, 51.77549 ], [ -3.15734, 51.81606 ], [ -3.33446, 51.79041 ], [ -3.42296, 51.82742 ], [ -3.48044, 51.80828 ], [ -3.59129, 51.75462 ], [ -3.664, 51.78361 ], [ -3.77021, 51.76276 ], [ -3.80665, 51.78793 ], [ -3.72586, 51.88326 ], [ -3.65745, 52.03525 ], [ -3.74962, 52.13474 ], [ -3.74913, 52.25522 ], [ -3.73178, 52.32071 ], [ -3.67318, 52.35012 ], [ -3.75919, 52.44197 ], [ -3.75066, 52.48976 ], [ -3.81361, 52.48868 ], [ -3.85544, 52.54976 ], [ -3.92661, 52.56078 ], [ -3.85334, 52.59786 ], [ -3.81097, 52.67032 ], [ -3.60463, 52.71123 ], [ -3.59376, 52.81302 ], [ -3.48044, 52.86459 ], [ -3.37501, 52.89247 ], [ -3.3049, 52.9356 ], [ -3.16975, 52.95706 ], [ -3.12046, 52.96489 ], [ -3.13978, 53.07721 ], [ -3.16975, 53.11927 ], [ -3.19047, 53.14836 ], [ -3.29782, 53.18834 ], [ -3.3832, 53.30318 ], [ -3.36339, 53.35203 ], [ -3.16975, 53.28551 ], [ -3.08419, 53.25612 ], [ -2.9527, 53.2082 ], [ -2.93702, 53.1768 ], [ -2.96183, 53.13997 ], [ -2.90504, 53.10468 ], [ -2.84334, 53.00899 ], [ -2.72682, 52.9833 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM5", "NUTS_ID": "UKM5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "North Eastern Scotland", "geo": "UKM5", "time_2018_MEAN": 80.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.62173, 56.79155 ], [ -2.68491, 56.9086 ], [ -2.88628, 56.98157 ], [ -3.06111, 56.96274 ], [ -3.11972, 56.90067 ], [ -3.16975, 56.90616 ], [ -3.27485, 56.91771 ], [ -3.37211, 56.87474 ], [ -3.49897, 56.88125 ], [ -3.59538, 56.92653 ], [ -3.80163, 56.93601 ], [ -3.77095, 56.99996 ], [ -3.72076, 57.0761 ], [ -3.3707, 57.1057 ], [ -3.32795, 57.18112 ], [ -3.21059, 57.24991 ], [ -3.16975, 57.25765 ], [ -2.98558, 57.29255 ], [ -2.96772, 57.33066 ], [ -3.00129, 57.43683 ], [ -2.98677, 57.47509 ], [ -2.84896, 57.52797 ], [ -2.72206, 57.53391 ], [ -2.78295, 57.60185 ], [ -2.80151, 57.69525 ], [ -2.51524, 57.67024 ], [ -2.07919, 57.69295 ], [ -1.93205, 57.66986 ], [ -1.82326, 57.58425 ], [ -1.80038, 57.45246 ], [ -2.02823, 57.25218 ], [ -2.07481, 57.11231 ], [ -2.23464, 56.87808 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM7", "NUTS_ID": "UKM7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Eastern Scotland", "geo": "UKM7", "time_2018_MEAN": 79.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.42535, 56.75519 ], [ -2.52217, 56.58403 ], [ -2.73698, 56.47257 ], [ -3.05189, 56.4585 ], [ -3.16975, 56.4015 ], [ -3.27497, 56.35061 ], [ -3.16975, 56.37831 ], [ -2.89272, 56.45124 ], [ -2.81063, 56.43546 ], [ -2.84033, 56.36153 ], [ -2.67067, 56.31903 ], [ -2.60405, 56.27421 ], [ -2.69789, 56.2216 ], [ -2.80806, 56.1893 ], [ -2.9646, 56.20508 ], [ -3.13758, 56.11804 ], [ -3.16975, 56.08276 ], [ -3.18393, 56.0672 ], [ -3.39934, 56.02113 ], [ -3.57433, 56.0532 ], [ -3.6763, 56.05085 ], [ -3.80051, 56.1061 ], [ -3.85915, 56.1117 ], [ -3.82015, 56.09912 ], [ -3.71534, 56.03656 ], [ -3.51572, 56.00226 ], [ -3.42533, 55.99403 ], [ -3.16975, 55.98237 ], [ -3.07765, 55.9469 ], [ -2.91456, 55.98077 ], [ -2.84434, 56.04673 ], [ -2.77043, 56.06208 ], [ -2.64573, 56.0541 ], [ -2.36662, 55.94611 ], [ -2.45453, 55.89369 ], [ -2.54338, 55.9066 ], [ -2.57595, 55.83647 ], [ -2.96652, 55.80901 ], [ -3.12884, 55.7232 ], [ -3.16975, 55.76782 ], [ -3.1907, 55.79069 ], [ -3.2703, 55.7802 ], [ -3.36902, 55.82421 ], [ -3.39474, 55.81984 ], [ -3.47162, 55.77107 ], [ -3.60153, 55.80557 ], [ -3.74401, 55.78211 ], [ -3.72598, 55.81322 ], [ -3.75145, 55.86314 ], [ -3.82255, 55.89659 ], [ -4.02012, 56.02814 ], [ -4.15238, 56.00814 ], [ -4.26668, 56.01647 ], [ -4.31918, 55.96386 ], [ -4.41177, 55.98192 ], [ -4.59013, 56.09047 ], [ -4.68225, 56.19056 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.27147 ], [ -4.68225, 56.30059 ], [ -4.69841, 56.32454 ], [ -4.78581, 56.32385 ], [ -4.82481, 56.37161 ], [ -4.81581, 56.4047 ], [ -4.68225, 56.46281 ], [ -4.66624, 56.54253 ], [ -4.59863, 56.58804 ], [ -4.68225, 56.64536 ], [ -4.70148, 56.64519 ], [ -4.7104, 56.66774 ], [ -4.68225, 56.67519 ], [ -4.61026, 56.69426 ], [ -4.52037, 56.80542 ], [ -4.43486, 56.78868 ], [ -4.17121, 56.89918 ], [ -4.02928, 56.89522 ], [ -3.93864, 56.93437 ], [ -3.80163, 56.93601 ], [ -3.59538, 56.92653 ], [ -3.49897, 56.88125 ], [ -3.37211, 56.87474 ], [ -3.27485, 56.91771 ], [ -3.16975, 56.90616 ], [ -3.11972, 56.90067 ], [ -3.06111, 56.96274 ], [ -2.88628, 56.98157 ], [ -2.68491, 56.9086 ], [ -2.62173, 56.79155 ], [ -2.42535, 56.75519 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM8", "NUTS_ID": "UKM8", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Central Scotland", "geo": "UKM8", "time_2018_MEAN": 77.833333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.15238, 56.00814 ], [ -4.02012, 56.02814 ], [ -3.82255, 55.89659 ], [ -3.75145, 55.86314 ], [ -3.72598, 55.81322 ], [ -3.74401, 55.78211 ], [ -3.92564, 55.74263 ], [ -4.10704, 55.83475 ], [ -4.21227, 55.83371 ], [ -4.25075, 55.78499 ], [ -4.26913, 55.7644 ], [ -4.22572, 55.70883 ], [ -4.24691, 55.67915 ], [ -4.50535, 55.76294 ], [ -4.64798, 55.7644 ], [ -4.68225, 55.7906 ], [ -4.80284, 55.88277 ], [ -4.88897, 55.87479 ], [ -4.87105, 55.93877 ], [ -4.82522, 55.95814 ], [ -4.68225, 55.94274 ], [ -4.50535, 55.9237 ], [ -4.35707, 55.87436 ], [ -4.39241, 55.88968 ], [ -4.47197, 55.92582 ], [ -4.50535, 55.92957 ], [ -4.68225, 55.98432 ], [ -4.7559, 56.00711 ], [ -4.85206, 55.99939 ], [ -4.86821, 56.07155 ], [ -4.74865, 56.20333 ], [ -4.74631, 56.23086 ], [ -4.83217, 56.28914 ], [ -4.78581, 56.32385 ], [ -4.69841, 56.32454 ], [ -4.68225, 56.30059 ], [ -4.68225, 56.27147 ], [ -4.69814, 56.23514 ], [ -4.68225, 56.19056 ], [ -4.59013, 56.09047 ], [ -4.41177, 55.98192 ], [ -4.31918, 55.96386 ], [ -4.26668, 56.01647 ], [ -4.15238, 56.00814 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKM9", "NUTS_ID": "UKM9", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Southern Scotland", "geo": "UKM9", "time_2018_MEAN": 79.133333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.03433, 55.81116 ], [ -2.30725, 55.63617 ], [ -2.20036, 55.45012 ], [ -2.32527, 55.40571 ], [ -2.36265, 55.3603 ], [ -2.47606, 55.35146 ], [ -2.565, 55.31141 ], [ -2.67246, 55.20602 ], [ -2.68975, 55.18906 ], [ -2.85851, 55.10842 ], [ -3.02385, 55.04636 ], [ -3.05744, 54.9869 ], [ -3.16975, 54.96622 ], [ -3.55601, 54.97504 ], [ -3.60099, 54.88327 ], [ -3.8125, 54.85383 ], [ -3.99762, 54.77445 ], [ -4.07209, 54.79957 ], [ -4.14006, 54.78301 ], [ -4.24656, 54.84546 ], [ -4.38863, 54.87812 ], [ -4.40649, 54.84335 ], [ -4.35526, 54.75355 ], [ -4.36798, 54.71064 ], [ -4.41231, 54.68858 ], [ -4.68225, 54.80409 ], [ -4.82907, 54.85264 ], [ -4.92806, 54.81975 ], [ -4.93896, 54.79392 ], [ -4.88516, 54.68018 ], [ -4.93245, 54.65983 ], [ -5.01272, 54.7738 ], [ -5.1625, 54.90155 ], [ -5.17263, 54.97527 ], [ -5.12707, 55.01057 ], [ -5.08747, 54.99824 ], [ -5.05119, 54.92363 ], [ -5.00454, 54.91947 ], [ -5.04023, 54.99773 ], [ -5.05026, 55.03796 ], [ -4.99649, 55.12787 ], [ -4.89617, 55.20602 ], [ -4.86422, 55.23092 ], [ -4.83172, 55.32872 ], [ -4.74807, 55.41179 ], [ -4.68225, 55.44259 ], [ -4.64121, 55.46179 ], [ -4.65827, 55.57029 ], [ -4.68225, 55.58171 ], [ -4.79743, 55.63656 ], [ -4.89462, 55.70235 ], [ -4.86013, 55.76628 ], [ -4.88897, 55.87479 ], [ -4.80284, 55.88277 ], [ -4.68225, 55.7906 ], [ -4.64798, 55.7644 ], [ -4.50535, 55.76294 ], [ -4.24691, 55.67915 ], [ -4.22572, 55.70883 ], [ -4.26913, 55.7644 ], [ -4.25075, 55.78499 ], [ -4.21227, 55.83371 ], [ -4.10704, 55.83475 ], [ -3.92564, 55.74263 ], [ -3.74401, 55.78211 ], [ -3.60153, 55.80557 ], [ -3.47162, 55.77107 ], [ -3.39474, 55.81984 ], [ -3.36902, 55.82421 ], [ -3.2703, 55.7802 ], [ -3.1907, 55.79069 ], [ -3.16975, 55.76782 ], [ -3.12884, 55.7232 ], [ -2.96652, 55.80901 ], [ -2.57595, 55.83647 ], [ -2.54338, 55.9066 ], [ -2.45453, 55.89369 ], [ -2.36662, 55.94611 ], [ -2.15717, 55.91936 ], [ -2.03433, 55.81116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKN0", "NUTS_ID": "UKN0", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Northern Ireland", "geo": "UKN0", "time_2018_MEAN": 80.86666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.97653, 55.0566 ], [ -5.9708, 54.99183 ], [ -5.80477, 54.84348 ], [ -5.73732, 54.84069 ], [ -5.70232, 54.80026 ], [ -5.7411, 54.73752 ], [ -5.86834, 54.68877 ], [ -5.91293, 54.64804 ], [ -5.85534, 54.63377 ], [ -5.75023, 54.6721 ], [ -5.5504, 54.65404 ], [ -5.52688, 54.61668 ], [ -5.43931, 54.47756 ], [ -5.47259, 54.38647 ], [ -5.50394, 54.34422 ], [ -5.53563, 54.36167 ], [ -5.57128, 54.40425 ], [ -5.53781, 54.45617 ], [ -5.55591, 54.51533 ], [ -5.67251, 54.57481 ], [ -5.69005, 54.53778 ], [ -5.6305, 54.47821 ], [ -5.64604, 54.45903 ], [ -5.62219, 54.39258 ], [ -5.55415, 54.34274 ], [ -5.56441, 54.28607 ], [ -5.62385, 54.25175 ], [ -5.83149, 54.25203 ], [ -5.88149, 54.21034 ], [ -5.89516, 54.15159 ], [ -5.90636, 54.10342 ], [ -6.04834, 54.0329 ], [ -6.26802, 54.10234 ], [ -6.59499, 54.04467 ], [ -6.65652, 54.07065 ], [ -6.64719, 54.15159 ], [ -6.64391, 54.18002 ], [ -6.77645, 54.21034 ], [ -6.79896, 54.21549 ], [ -6.86423, 54.33017 ], [ -7.01804, 54.41617 ], [ -7.18851, 54.33768 ], [ -7.19845, 54.29889 ], [ -7.15119, 54.23281 ], [ -7.21675, 54.21034 ], [ -7.26877, 54.15159 ], [ -7.36036, 54.12444 ], [ -7.55403, 54.13392 ], [ -7.60039, 54.15159 ], [ -7.70258, 54.20113 ], [ -7.82836, 54.21034 ], [ -7.8716, 54.27671 ], [ -8.02844, 54.35778 ], [ -8.06309, 54.37568 ], [ -8.14906, 54.45643 ], [ -8.02844, 54.52343 ], [ -7.9992, 54.53968 ], [ -7.85966, 54.5362 ], [ -7.70341, 54.60829 ], [ -7.74138, 54.61668 ], [ -7.84827, 54.64031 ], [ -7.90049, 54.67949 ], [ -7.83777, 54.72874 ], [ -7.7432, 54.71002 ], [ -7.55987, 54.75172 ], [ -7.45244, 54.86459 ], [ -7.44754, 54.93485 ], [ -7.41529, 54.94866 ], [ -7.39675, 55.01234 ], [ -7.34292, 55.05048 ], [ -7.25607, 55.06703 ], [ -7.14907, 55.04338 ], [ -7.03984, 55.06112 ], [ -6.94849, 55.1822 ], [ -6.75041, 55.1717 ], [ -6.62402, 55.20602 ], [ -6.48059, 55.24282 ], [ -6.11886, 55.21378 ], [ -6.09652, 55.20602 ], [ -6.03339, 55.1587 ], [ -6.04271, 55.06592 ], [ -5.97653, 55.0566 ] ] ], [ [ [ -6.15545, 55.30858 ], [ -6.19364, 55.24151 ], [ -6.21015, 55.27253 ], [ -6.19658, 55.31334 ], [ -6.15545, 55.30858 ] ] ], [ [ [ -6.22347, 55.28964 ], [ -6.27358, 55.27957 ], [ -6.28248, 55.30118 ], [ -6.26384, 55.32895 ], [ -6.23035, 55.32133 ], [ -6.22347, 55.28964 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE21", "NUTS_ID": "SE21", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Småland med öarna", "geo": "SE21", "time_2018_MEAN": 82.766666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.16235, 57.99255 ], [ 19.24167, 57.97447 ], [ 19.30811, 57.98494 ], [ 19.34887, 57.9605 ], [ 19.30491, 57.94421 ], [ 19.2602, 57.9522 ], [ 19.13813, 57.91596 ], [ 19.16838, 57.8925 ], [ 19.12299, 57.84282 ], [ 19.07988, 57.86905 ], [ 19.04914, 57.90885 ], [ 19.08637, 57.93444 ], [ 19.09214, 57.96916 ], [ 19.16235, 57.99255 ] ] ], [ [ [ 19.28775, 58.33757 ], [ 19.21446, 58.33721 ], [ 19.17053, 58.39625 ], [ 19.2457, 58.39291 ], [ 19.31021, 58.37238 ], [ 19.28775, 58.33757 ] ] ], [ [ [ 18.99835, 57.91553 ], [ 19.07651, 57.83953 ], [ 19.01198, 57.81205 ], [ 19.01987, 57.75683 ], [ 18.95883, 57.77898 ], [ 18.93777, 57.72153 ], [ 18.81442, 57.73544 ], [ 18.76689, 57.62165 ], [ 18.80214, 57.59299 ], [ 18.79665, 57.54426 ], [ 18.76689, 57.52475 ], [ 18.76689, 57.50126 ], [ 18.80001, 57.45029 ], [ 18.88783, 57.42727 ], [ 18.88859, 57.41012 ], [ 18.76689, 57.36642 ], [ 18.67578, 57.30472 ], [ 18.69734, 57.23633 ], [ 18.41536, 57.14199 ], [ 18.34399, 57.06055 ], [ 18.34471, 56.97359 ], [ 18.21316, 56.91249 ], [ 18.12839, 56.91249 ], [ 18.20847, 57.01861 ], [ 18.26534, 57.05614 ], [ 18.2603, 57.07263 ], [ 18.20724, 57.07209 ], [ 18.21193, 57.1305 ], [ 18.1586, 57.1614 ], [ 18.14356, 57.2322 ], [ 18.10242, 57.26682 ], [ 18.17157, 57.3545 ], [ 18.11502, 57.52369 ], [ 18.17067, 57.58428 ], [ 18.32338, 57.66618 ], [ 18.47105, 57.81942 ], [ 18.59594, 57.84776 ], [ 18.70247, 57.92031 ], [ 18.76689, 57.89858 ], [ 18.79897, 57.85526 ], [ 18.86542, 57.9221 ], [ 18.99835, 57.91553 ] ] ], [ [ [ 16.49958, 56.26856 ], [ 16.40771, 56.20687 ], [ 16.3804, 56.53594 ], [ 16.61077, 56.85072 ], [ 16.72813, 56.91247 ], [ 16.89448, 57.11658 ], [ 16.97841, 57.30428 ], [ 17.04978, 57.35414 ], [ 17.12579, 57.33381 ], [ 17.06916, 57.27881 ], [ 17.0682, 57.18846 ], [ 16.91185, 56.98978 ], [ 16.8889, 56.91247 ], [ 16.84839, 56.83061 ], [ 16.77838, 56.78329 ], [ 16.49958, 56.26856 ] ] ], [ [ [ 14.41671, 58.18724 ], [ 14.47708, 58.1313 ], [ 14.60378, 58.09915 ], [ 14.85331, 58.0894 ], [ 14.97462, 58.13586 ], [ 15.06633, 58.00559 ], [ 15.01611, 57.9773 ], [ 15.00519, 57.90032 ], [ 15.12181, 57.72879 ], [ 15.42105, 57.70488 ], [ 15.61702, 57.85279 ], [ 15.84972, 57.82632 ], [ 15.95357, 57.81377 ], [ 16.05267, 57.87314 ], [ 16.05561, 57.90573 ], [ 16.02994, 57.93875 ], [ 16.05616, 57.97882 ], [ 16.00555, 58.02235 ], [ 16.01813, 58.0792 ], [ 16.16454, 58.06653 ], [ 16.18532, 58.10325 ], [ 16.27062, 58.13535 ], [ 16.5414, 58.1068 ], [ 16.58975, 58.06718 ], [ 16.66668, 57.99608 ], [ 16.7886, 57.96029 ], [ 16.76847, 57.82741 ], [ 16.70199, 57.7556 ], [ 16.70662, 57.67616 ], [ 16.65272, 57.60867 ], [ 16.71064, 57.60001 ], [ 16.70209, 57.45616 ], [ 16.48932, 57.26261 ], [ 16.48097, 57.18355 ], [ 16.53187, 57.15563 ], [ 16.54616, 57.06894 ], [ 16.44907, 56.9648 ], [ 16.36567, 56.69121 ], [ 16.24731, 56.60738 ], [ 16.04987, 56.32189 ], [ 15.84972, 56.32119 ], [ 15.56932, 56.49565 ], [ 15.3635, 56.48238 ], [ 15.18541, 56.4335 ], [ 15.02558, 56.44726 ], [ 14.88529, 56.36341 ], [ 14.69104, 56.38905 ], [ 14.51467, 56.46004 ], [ 14.34899, 56.48437 ], [ 14.08536, 56.52762 ], [ 14.01369, 56.47087 ], [ 13.87089, 56.44246 ], [ 13.52266, 56.40894 ], [ 13.46264, 56.42819 ], [ 13.45254, 56.53743 ], [ 13.32872, 56.69645 ], [ 13.30763, 56.81862 ], [ 13.38181, 56.86323 ], [ 13.60301, 56.89692 ], [ 13.67732, 56.92751 ], [ 13.6812, 56.97211 ], [ 13.61815, 57.00188 ], [ 13.58409, 57.06625 ], [ 13.48477, 57.10419 ], [ 13.344, 57.10931 ], [ 13.13364, 57.03487 ], [ 13.08863, 57.09715 ], [ 13.10076, 57.14552 ], [ 13.29543, 57.30541 ], [ 13.48721, 57.38302 ], [ 13.67648, 57.55081 ], [ 13.67517, 57.61127 ], [ 13.7172, 57.66019 ], [ 13.74616, 57.77693 ], [ 13.7401, 57.84349 ], [ 13.78026, 57.90705 ], [ 13.72015, 57.97063 ], [ 13.78103, 58.04529 ], [ 14.03845, 58.02078 ], [ 14.09638, 58.05808 ], [ 14.13495, 58.13609 ], [ 14.31136, 58.1356 ], [ 14.41671, 58.18724 ] ] ], [ [ [ 16.48952, 56.77099 ], [ 16.44491, 56.75475 ], [ 16.41712, 56.77515 ], [ 16.47304, 56.80886 ], [ 16.48952, 56.77099 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE22", "NUTS_ID": "SE22", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Sydsverige", "geo": "SE22", "time_2018_MEAN": 82.533333333333346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.51467, 56.46004 ], [ 14.69104, 56.38905 ], [ 14.88529, 56.36341 ], [ 15.02558, 56.44726 ], [ 15.18541, 56.4335 ], [ 15.3635, 56.48238 ], [ 15.56932, 56.49565 ], [ 15.84972, 56.32119 ], [ 16.04987, 56.32189 ], [ 16.05227, 56.26316 ], [ 15.84972, 56.07883 ], [ 15.80533, 56.09299 ], [ 15.79309, 56.05482 ], [ 15.67941, 56.0764 ], [ 15.65025, 56.10901 ], [ 15.70939, 56.12088 ], [ 15.71751, 56.15836 ], [ 15.59033, 56.16553 ], [ 15.57484, 56.19322 ], [ 15.43131, 56.13367 ], [ 15.316, 56.12818 ], [ 15.3001, 56.16822 ], [ 15.08842, 56.15234 ], [ 14.69443, 56.15422 ], [ 14.76855, 56.03617 ], [ 14.72465, 56.00274 ], [ 14.62481, 55.99892 ], [ 14.55704, 56.0276 ], [ 14.5464, 56.06132 ], [ 14.35038, 55.95873 ], [ 14.23049, 55.83493 ], [ 14.21196, 55.71148 ], [ 14.34967, 55.54777 ], [ 14.17424, 55.38834 ], [ 14.06304, 55.38498 ], [ 13.91511, 55.43024 ], [ 13.73583, 55.42639 ], [ 13.33851, 55.3422 ], [ 12.85469, 55.39381 ], [ 12.85454, 55.41977 ], [ 12.94781, 55.44206 ], [ 12.91792, 55.57809 ], [ 13.04718, 55.67332 ], [ 12.92729, 55.75012 ], [ 12.90661, 55.82474 ], [ 12.81178, 55.87455 ], [ 12.74168, 55.9847 ], [ 12.57521, 56.14747 ], [ 12.52582, 56.25935 ], [ 12.79212, 56.23623 ], [ 12.80755, 56.28146 ], [ 12.64146, 56.42307 ], [ 12.71791, 56.46334 ], [ 12.89931, 56.449 ], [ 12.95646, 56.42935 ], [ 12.97144, 56.36403 ], [ 13.19497, 56.33011 ], [ 13.46264, 56.42819 ], [ 13.52266, 56.40894 ], [ 13.87089, 56.44246 ], [ 14.01369, 56.47087 ], [ 14.08536, 56.52762 ], [ 14.34899, 56.48437 ], [ 14.51467, 56.46004 ] ] ], [ [ [ 15.52669, 56.13839 ], [ 15.57899, 56.12262 ], [ 15.64229, 56.13642 ], [ 15.65067, 56.10178 ], [ 15.62782, 56.08468 ], [ 15.57218, 56.11045 ], [ 15.5584, 56.09132 ], [ 15.47552, 56.09329 ], [ 15.46668, 56.10338 ], [ 15.52669, 56.13839 ] ] ], [ [ [ 12.72788, 55.88527 ], [ 12.69637, 55.88304 ], [ 12.66535, 55.91453 ], [ 12.67297, 55.92854 ], [ 12.73763, 55.91172 ], [ 12.72788, 55.88527 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE23", "NUTS_ID": "SE23", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Västsverige", "geo": "SE23", "time_2018_MEAN": 82.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.296, 59.01278 ], [ 14.29978, 58.93433 ], [ 14.46328, 58.77638 ], [ 14.4853, 58.72001 ], [ 14.57489, 58.68451 ], [ 14.67572, 58.7367 ], [ 14.77894, 58.64599 ], [ 14.63668, 58.47046 ], [ 14.44788, 58.2375 ], [ 14.41671, 58.18724 ], [ 14.31136, 58.1356 ], [ 14.13495, 58.13609 ], [ 14.09638, 58.05808 ], [ 14.03845, 58.02078 ], [ 13.78103, 58.04529 ], [ 13.72015, 57.97063 ], [ 13.78026, 57.90705 ], [ 13.7401, 57.84349 ], [ 13.74616, 57.77693 ], [ 13.7172, 57.66019 ], [ 13.67517, 57.61127 ], [ 13.67648, 57.55081 ], [ 13.48721, 57.38302 ], [ 13.29543, 57.30541 ], [ 13.10076, 57.14552 ], [ 13.08863, 57.09715 ], [ 13.13364, 57.03487 ], [ 13.344, 57.10931 ], [ 13.48477, 57.10419 ], [ 13.58409, 57.06625 ], [ 13.61815, 57.00188 ], [ 13.6812, 56.97211 ], [ 13.67732, 56.92751 ], [ 13.60301, 56.89692 ], [ 13.38181, 56.86323 ], [ 13.30763, 56.81862 ], [ 13.32872, 56.69645 ], [ 13.45254, 56.53743 ], [ 13.46264, 56.42819 ], [ 13.19497, 56.33011 ], [ 12.97144, 56.36403 ], [ 12.95646, 56.42935 ], [ 12.89931, 56.449 ], [ 12.92921, 56.55032 ], [ 12.90307, 56.61304 ], [ 12.84531, 56.65186 ], [ 12.72438, 56.66513 ], [ 12.58189, 56.82412 ], [ 12.37158, 56.93513 ], [ 12.20764, 57.17739 ], [ 12.13881, 57.23674 ], [ 12.09132, 57.41791 ], [ 12.04686, 57.42658 ], [ 12.06685, 57.38731 ], [ 12.04871, 57.36022 ], [ 11.93672, 57.41084 ], [ 11.9229, 57.56222 ], [ 11.83283, 57.68372 ], [ 11.73216, 57.70745 ], [ 11.79138, 57.77989 ], [ 11.71462, 57.80904 ], [ 11.69396, 57.86015 ], [ 11.69808, 57.88995 ], [ 11.77024, 57.91782 ], [ 11.80975, 58.02394 ], [ 11.80382, 58.10779 ], [ 11.71961, 58.08847 ], [ 11.76279, 58.0494 ], [ 11.7381, 58.00623 ], [ 11.56755, 57.94384 ], [ 11.49658, 58.0637 ], [ 11.39191, 58.14299 ], [ 11.40005, 58.22101 ], [ 11.46658, 58.27167 ], [ 11.38597, 58.33324 ], [ 11.23464, 58.37602 ], [ 11.23985, 58.42141 ], [ 11.29576, 58.47046 ], [ 11.23814, 58.55478 ], [ 11.26856, 58.6501 ], [ 11.19196, 58.72176 ], [ 11.22731, 58.81906 ], [ 11.12498, 58.91656 ], [ 11.12961, 59.00795 ], [ 11.19429, 59.07272 ], [ 11.31545, 59.09913 ], [ 11.36962, 59.08309 ], [ 11.46083, 58.98866 ], [ 11.46005, 58.9517 ], [ 11.46337, 58.89667 ], [ 11.50708, 58.88299 ], [ 11.63536, 58.90376 ], [ 11.68369, 58.9517 ], [ 11.77223, 59.09408 ], [ 11.78825, 59.20316 ], [ 11.8262, 59.23785 ], [ 11.95462, 59.24164 ], [ 12.05913, 59.19474 ], [ 12.08058, 59.18511 ], [ 12.09676, 59.2532 ], [ 12.22237, 59.25178 ], [ 12.27553, 59.19852 ], [ 12.44535, 59.18901 ], [ 12.48911, 59.13024 ], [ 12.58018, 59.12061 ], [ 12.66042, 59.17945 ], [ 12.76115, 59.10858 ], [ 12.78191, 59.02226 ], [ 12.90294, 58.81843 ], [ 13.25873, 58.72874 ], [ 13.39539, 58.7475 ], [ 13.34707, 58.81971 ], [ 13.40838, 58.93194 ], [ 13.58791, 59.05432 ], [ 14.01037, 59.0299 ], [ 14.16574, 59.04969 ], [ 14.296, 59.01278 ] ] ], [ [ [ 11.80718, 57.62362 ], [ 11.78191, 57.58745 ], [ 11.74966, 57.63018 ], [ 11.77236, 57.65869 ], [ 11.80718, 57.62362 ] ] ], [ [ [ 11.67944, 57.70428 ], [ 11.64647, 57.69441 ], [ 11.61527, 57.72014 ], [ 11.65379, 57.73348 ], [ 11.65297, 57.75564 ], [ 11.69078, 57.76517 ], [ 11.71023, 57.73791 ], [ 11.67944, 57.70428 ] ] ], [ [ [ 11.65725, 57.89365 ], [ 11.61528, 57.84904 ], [ 11.57858, 57.89365 ], [ 11.5973, 57.91271 ], [ 11.65725, 57.89365 ] ] ], [ [ [ 11.64177, 57.64709 ], [ 11.61813, 57.60901 ], [ 11.56641, 57.61438 ], [ 11.59999, 57.65467 ], [ 11.64177, 57.64709 ] ] ], [ [ [ 11.3525, 58.21181 ], [ 11.32007, 58.18127 ], [ 11.26983, 58.22012 ], [ 11.29736, 58.23236 ], [ 11.3525, 58.21181 ] ] ], [ [ [ 11.21536, 58.37616 ], [ 11.23945, 58.32492 ], [ 11.19442, 58.32614 ], [ 11.17572, 58.3654 ], [ 11.21536, 58.37616 ] ] ], [ [ [ 11.19201, 58.82099 ], [ 11.18293, 58.76287 ], [ 11.15014, 58.76929 ], [ 11.14516, 58.8126 ], [ 11.19201, 58.82099 ] ] ], [ [ [ 11.05148, 58.87384 ], [ 11.04133, 58.85498 ], [ 10.98044, 58.88193 ], [ 11.01702, 58.91825 ], [ 11.05148, 58.87384 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE31", "NUTS_ID": "SE31", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Norra Mellansverige", "geo": "SE31", "time_2018_MEAN": 82.2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.37022, 60.65446 ], [ 17.28881, 60.4592 ], [ 17.22769, 60.43255 ], [ 17.19853, 60.40814 ], [ 17.19888, 60.3753 ], [ 17.19171, 60.31261 ], [ 17.16123, 60.2906 ], [ 17.07511, 60.26704 ], [ 16.94333, 60.28861 ], [ 16.86185, 60.22621 ], [ 16.70383, 60.19572 ], [ 16.30196, 60.07557 ], [ 16.17846, 60.08709 ], [ 16.01426, 60.17599 ], [ 15.80642, 60.17086 ], [ 15.74501, 60.12068 ], [ 15.70147, 59.96444 ], [ 15.52169, 59.9429 ], [ 15.443, 59.87326 ], [ 15.42209, 59.85475 ], [ 15.39339, 59.87326 ], [ 15.19781, 59.99935 ], [ 14.90034, 60.05658 ], [ 14.81293, 60.10299 ], [ 14.74761, 60.07918 ], [ 14.73829, 60.00104 ], [ 14.43716, 60.02616 ], [ 14.43549, 59.97811 ], [ 14.3694, 59.93819 ], [ 14.41644, 59.87326 ], [ 14.40999, 59.73713 ], [ 14.4353, 59.64466 ], [ 14.46999, 59.54302 ], [ 14.40301, 59.51054 ], [ 14.45635, 59.44211 ], [ 14.31124, 59.28954 ], [ 14.29489, 59.15496 ], [ 14.33067, 59.08684 ], [ 14.296, 59.01278 ], [ 14.16574, 59.04969 ], [ 14.01037, 59.0299 ], [ 13.58791, 59.05432 ], [ 13.40838, 58.93194 ], [ 13.34707, 58.81971 ], [ 13.39539, 58.7475 ], [ 13.25873, 58.72874 ], [ 12.90294, 58.81843 ], [ 12.78191, 59.02226 ], [ 12.76115, 59.10858 ], [ 12.66042, 59.17945 ], [ 12.58018, 59.12061 ], [ 12.48911, 59.13024 ], [ 12.44535, 59.18901 ], [ 12.27553, 59.19852 ], [ 12.22237, 59.25178 ], [ 12.09676, 59.2532 ], [ 12.08058, 59.18511 ], [ 12.05913, 59.19474 ], [ 11.95462, 59.24164 ], [ 11.8262, 59.23785 ], [ 11.81395, 59.33807 ], [ 11.69904, 59.58116 ], [ 11.72239, 59.62076 ], [ 11.80186, 59.64466 ], [ 11.9303, 59.70173 ], [ 11.92697, 59.79048 ], [ 11.83973, 59.84077 ], [ 11.91774, 59.87326 ], [ 11.97052, 59.89524 ], [ 12.05913, 59.89534 ], [ 12.17583, 59.89547 ], [ 12.34328, 59.97063 ], [ 12.49383, 60.09297 ], [ 12.53572, 60.18985 ], [ 12.50411, 60.31191 ], [ 12.5998, 60.40634 ], [ 12.60292, 60.51042 ], [ 12.39483, 60.73977 ], [ 12.32496, 60.89494 ], [ 12.23541, 61.00964 ], [ 12.67018, 61.05598 ], [ 12.69371, 61.09455 ], [ 12.71493, 61.1447 ], [ 12.82603, 61.24881 ], [ 12.85633, 61.3642 ], [ 12.57907, 61.55968 ], [ 12.41582, 61.56914 ], [ 12.1454, 61.73032 ], [ 12.29937, 62.26749 ], [ 12.59954, 62.21676 ], [ 12.79615, 62.21704 ], [ 13.0188, 62.06466 ], [ 13.1606, 62.02531 ], [ 13.28128, 62.04842 ], [ 13.3503, 61.99288 ], [ 13.23867, 61.93003 ], [ 13.38154, 61.83219 ], [ 13.54986, 61.65284 ], [ 14.21553, 61.6148 ], [ 14.39103, 61.57122 ], [ 14.44756, 61.59495 ], [ 14.49775, 61.64685 ], [ 14.53731, 61.78211 ], [ 14.65717, 61.87585 ], [ 14.76573, 61.82874 ], [ 14.79611, 61.86737 ], [ 14.89551, 61.82158 ], [ 14.95027, 61.87227 ], [ 15.08547, 61.83362 ], [ 15.11706, 61.99852 ], [ 15.41142, 62.12972 ], [ 15.40409, 62.18069 ], [ 15.32734, 62.27208 ], [ 15.5166, 62.3376 ], [ 15.71758, 62.32117 ], [ 16.18212, 62.24001 ], [ 16.51108, 62.23281 ], [ 17.21891, 62.15097 ], [ 17.4893, 62.13695 ], [ 17.34236, 61.8656 ], [ 17.40012, 61.74541 ], [ 17.48862, 61.69973 ], [ 17.48461, 61.66146 ], [ 17.23878, 61.70375 ], [ 17.20531, 61.59751 ], [ 17.13103, 61.54762 ], [ 17.16324, 61.43893 ], [ 17.14083, 61.3867 ], [ 17.20696, 61.30746 ], [ 17.1726, 61.18553 ], [ 17.18808, 61.04007 ], [ 17.2231, 61.01108 ], [ 17.17478, 60.94673 ], [ 17.32662, 60.80991 ], [ 17.27729, 60.69755 ], [ 17.37022, 60.65446 ] ] ], [ [ [ 17.42006, 61.53555 ], [ 17.37121, 61.52313 ], [ 17.35029, 61.56335 ], [ 17.42347, 61.56014 ], [ 17.42006, 61.53555 ] ] ], [ [ [ 17.34219, 61.15343 ], [ 17.32528, 61.12413 ], [ 17.29294, 61.14869 ], [ 17.28848, 61.16945 ], [ 17.31247, 61.18305 ], [ 17.33636, 61.17652 ], [ 17.34219, 61.15343 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE32", "NUTS_ID": "SE32", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Mellersta Norrland", "geo": "SE32", "time_2018_MEAN": 82.066666666666663 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.71895, 64.02788 ], [ 16.89963, 63.9481 ], [ 17.56623, 63.89368 ], [ 17.71714, 63.88136 ], [ 18.40161, 63.99197 ], [ 18.46462, 63.96179 ], [ 18.43167, 63.91257 ], [ 18.4802, 63.85748 ], [ 18.57299, 63.82656 ], [ 18.75128, 63.80921 ], [ 18.7745, 63.8039 ], [ 18.93826, 63.76641 ], [ 19.16562, 63.60656 ], [ 19.28647, 63.46972 ], [ 19.22728, 63.35082 ], [ 19.05011, 63.21981 ], [ 18.76637, 63.18487 ], [ 18.67459, 63.13694 ], [ 18.59039, 63.15073 ], [ 18.46195, 63.03098 ], [ 18.44631, 62.89771 ], [ 18.36648, 62.86153 ], [ 18.23989, 62.85755 ], [ 18.09423, 62.69583 ], [ 18.04388, 62.71627 ], [ 18.05701, 62.8092 ], [ 17.95013, 62.82326 ], [ 17.96413, 62.78641 ], [ 18.02694, 62.76849 ], [ 17.98245, 62.73501 ], [ 18.00915, 62.6294 ], [ 17.96381, 62.57471 ], [ 17.65802, 62.43677 ], [ 17.47024, 62.46928 ], [ 17.48213, 62.4036 ], [ 17.42289, 62.36908 ], [ 17.41493, 62.33157 ], [ 17.57715, 62.2235 ], [ 17.4893, 62.13695 ], [ 17.21891, 62.15097 ], [ 16.51108, 62.23281 ], [ 16.18212, 62.24001 ], [ 15.71758, 62.32117 ], [ 15.5166, 62.3376 ], [ 15.32734, 62.27208 ], [ 15.40409, 62.18069 ], [ 15.41142, 62.12972 ], [ 15.11706, 61.99852 ], [ 15.08547, 61.83362 ], [ 14.95027, 61.87227 ], [ 14.89551, 61.82158 ], [ 14.79611, 61.86737 ], [ 14.76573, 61.82874 ], [ 14.65717, 61.87585 ], [ 14.53731, 61.78211 ], [ 14.49775, 61.64685 ], [ 14.44756, 61.59495 ], [ 14.39103, 61.57122 ], [ 14.21553, 61.6148 ], [ 13.54986, 61.65284 ], [ 13.38154, 61.83219 ], [ 13.23867, 61.93003 ], [ 13.3503, 61.99288 ], [ 13.28128, 62.04842 ], [ 13.1606, 62.02531 ], [ 13.0188, 62.06466 ], [ 12.79615, 62.21704 ], [ 12.59954, 62.21676 ], [ 12.29937, 62.26749 ], [ 12.25466, 62.33102 ], [ 12.07306, 62.60172 ], [ 12.12505, 62.74872 ], [ 12.09192, 62.90066 ], [ 12.19668, 63.00713 ], [ 12.05246, 63.18344 ], [ 11.98553, 63.271 ], [ 12.05913, 63.33918 ], [ 12.19968, 63.46937 ], [ 12.16081, 63.59402 ], [ 12.45552, 63.8039 ], [ 12.53076, 63.85748 ], [ 12.68163, 63.97053 ], [ 12.8275, 64.02374 ], [ 12.9176, 64.04005 ], [ 13.20965, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.22399, 64.09291 ], [ 13.77688, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.9961, 64.04005 ], [ 14.04789, 64.09291 ], [ 14.15062, 64.19781 ], [ 14.14119, 64.25981 ], [ 14.13653, 64.29042 ], [ 14.13015, 64.33229 ], [ 14.11167, 64.45377 ], [ 13.66659, 64.58895 ], [ 14.32599, 65.11892 ], [ 14.46834, 65.06763 ], [ 14.68056, 64.99117 ], [ 14.84557, 64.88346 ], [ 14.9743, 64.83805 ], [ 15.05596, 64.76288 ], [ 15.28601, 64.68817 ], [ 15.32708, 64.61474 ], [ 15.52028, 64.52363 ], [ 15.59045, 64.45494 ], [ 15.62555, 64.45568 ], [ 15.65247, 64.51094 ], [ 15.69039, 64.52167 ], [ 15.75424, 64.41251 ], [ 16.01012, 64.33229 ], [ 16.02916, 64.29042 ], [ 16.04307, 64.25981 ], [ 16.23577, 64.25221 ], [ 16.57887, 64.09291 ], [ 16.69275, 64.04005 ], [ 16.71895, 64.02788 ] ] ], [ [ [ 18.88832, 63.13328 ], [ 18.84294, 63.12741 ], [ 18.82466, 63.15699 ], [ 18.87499, 63.17885 ], [ 18.88832, 63.13328 ] ] ], [ [ [ 18.62447, 63.08826 ], [ 18.65063, 63.06856 ], [ 18.68472, 63.07765 ], [ 18.65355, 62.98462 ], [ 18.61684, 62.97438 ], [ 18.6104, 63.04187 ], [ 18.59356, 63.07612 ], [ 18.62447, 63.08826 ] ] ], [ [ [ 17.7514, 62.22087 ], [ 17.70688, 62.18234 ], [ 17.67331, 62.20857 ], [ 17.69223, 62.2317 ], [ 17.7514, 62.22087 ] ] ], [ [ [ 17.58871, 62.41478 ], [ 17.60713, 62.36994 ], [ 17.54844, 62.3773 ], [ 17.53941, 62.39077 ], [ 17.56265, 62.41543 ], [ 17.58871, 62.41478 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SE33", "NUTS_ID": "SE33", "LEVL_CODE": 2, "CNTR_CODE": "SE", "NUTS_NAME": "Övre Norrland", "geo": "SE33", "time_2018_MEAN": 81.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.15513, 65.81603 ], [ 23.80965, 65.78275 ], [ 23.68765, 65.82059 ], [ 23.41034, 65.7687 ], [ 23.23943, 65.81325 ], [ 23.25352, 65.73227 ], [ 23.10878, 65.72325 ], [ 22.92654, 65.7918 ], [ 22.70848, 65.87384 ], [ 22.67042, 65.77295 ], [ 22.39035, 65.84664 ], [ 22.33878, 65.7474 ], [ 22.36144, 65.61488 ], [ 22.32963, 65.5085 ], [ 22.2591, 65.55796 ], [ 22.21762, 65.53341 ], [ 22.16559, 65.55292 ], [ 22.0823, 65.50489 ], [ 21.93903, 65.51455 ], [ 21.97799, 65.44158 ], [ 21.7788, 65.36848 ], [ 21.57352, 65.38609 ], [ 21.56052, 65.35908 ], [ 21.61763, 65.34889 ], [ 21.6455, 65.29053 ], [ 21.56077, 65.21438 ], [ 21.54815, 65.11909 ], [ 21.5436, 65.06306 ], [ 21.48809, 65.01847 ], [ 21.28446, 64.9518 ], [ 21.25311, 64.8827 ], [ 21.12474, 64.81801 ], [ 21.2427, 64.75671 ], [ 21.25972, 64.69776 ], [ 21.23944, 64.64131 ], [ 21.47202, 64.55517 ], [ 21.50201, 64.47058 ], [ 21.55007, 64.42838 ], [ 21.35945, 64.33229 ], [ 21.27637, 64.29042 ], [ 21.21564, 64.25981 ], [ 21.00005, 64.15114 ], [ 20.96211, 64.09291 ], [ 20.92766, 64.04005 ], [ 20.90344, 64.00288 ], [ 20.81338, 63.93439 ], [ 20.66711, 63.8082 ], [ 20.56218, 63.75997 ], [ 20.49531, 63.79175 ], [ 20.41325, 63.68524 ], [ 20.32654, 63.72727 ], [ 20.28622, 63.66583 ], [ 20.04972, 63.66363 ], [ 19.98595, 63.61865 ], [ 19.88207, 63.60043 ], [ 19.75718, 63.53292 ], [ 19.71977, 63.4486 ], [ 19.64034, 63.44883 ], [ 19.57179, 63.51949 ], [ 19.48074, 63.55743 ], [ 19.45338, 63.52805 ], [ 19.47275, 63.43272 ], [ 19.28647, 63.46972 ], [ 19.16562, 63.60656 ], [ 18.93826, 63.76641 ], [ 18.7745, 63.8039 ], [ 18.75128, 63.80921 ], [ 18.57299, 63.82656 ], [ 18.4802, 63.85748 ], [ 18.43167, 63.91257 ], [ 18.46462, 63.96179 ], [ 18.40161, 63.99197 ], [ 17.71714, 63.88136 ], [ 17.56623, 63.89368 ], [ 16.89963, 63.9481 ], [ 16.71895, 64.02788 ], [ 16.69275, 64.04005 ], [ 16.57887, 64.09291 ], [ 16.23577, 64.25221 ], [ 16.04307, 64.25981 ], [ 16.02916, 64.29042 ], [ 16.01012, 64.33229 ], [ 15.75424, 64.41251 ], [ 15.69039, 64.52167 ], [ 15.65247, 64.51094 ], [ 15.62555, 64.45568 ], [ 15.59045, 64.45494 ], [ 15.52028, 64.52363 ], [ 15.32708, 64.61474 ], [ 15.28601, 64.68817 ], [ 15.05596, 64.76288 ], [ 14.9743, 64.83805 ], [ 14.84557, 64.88346 ], [ 14.68056, 64.99117 ], [ 14.46834, 65.06763 ], [ 14.32599, 65.11892 ], [ 14.36526, 65.21412 ], [ 14.46834, 65.29414 ], [ 14.50282, 65.32091 ], [ 14.5074, 65.55733 ], [ 14.54281, 65.69614 ], [ 14.61791, 65.81349 ], [ 14.58756, 65.89465 ], [ 14.53155, 66.12983 ], [ 15.02146, 66.15652 ], [ 15.04726, 66.15793 ], [ 15.46032, 66.27682 ], [ 15.45399, 66.34523 ], [ 15.38738, 66.48102 ], [ 15.52308, 66.55362 ], [ 15.55184, 66.56656 ], [ 15.62957, 66.60156 ], [ 15.86954, 66.78049 ], [ 16.05097, 66.91723 ], [ 16.38056, 67.04981 ], [ 16.39163, 67.21156 ], [ 16.10199, 67.44585 ], [ 16.16679, 67.51631 ], [ 16.39774, 67.5353 ], [ 16.47868, 67.58345 ], [ 16.55489, 67.67229 ], [ 16.77194, 67.92533 ], [ 17.16945, 68.04751 ], [ 17.27195, 68.11245 ], [ 17.31272, 68.11239 ], [ 17.56623, 68.05606 ], [ 17.90819, 67.98008 ], [ 18.14288, 68.19696 ], [ 18.10423, 68.4036 ], [ 18.12592, 68.53652 ], [ 18.40895, 68.57158 ], [ 18.62803, 68.51303 ], [ 19.02892, 68.50761 ], [ 19.47565, 68.44377 ], [ 19.94019, 68.3774 ], [ 20.12655, 68.46193 ], [ 20.02632, 68.56928 ], [ 20.19402, 68.67219 ], [ 20.30664, 68.80181 ], [ 20.28776, 68.9142 ], [ 20.19704, 69.02405 ], [ 20.54864, 69.05997 ], [ 20.78522, 69.02362 ], [ 20.88299, 68.97351 ], [ 20.87669, 68.92701 ], [ 20.90519, 68.89691 ], [ 21.04155, 68.87025 ], [ 21.10967, 68.85694 ], [ 21.38051, 68.75426 ], [ 21.45504, 68.69129 ], [ 21.91246, 68.56971 ], [ 22.04965, 68.4875 ], [ 22.30551, 68.47912 ], [ 22.92654, 68.34826 ], [ 23.05392, 68.30243 ], [ 23.08707, 68.27775 ], [ 23.14191, 68.23692 ], [ 23.16198, 68.14365 ], [ 23.29739, 68.14759 ], [ 23.38994, 68.05139 ], [ 23.64546, 67.95505 ], [ 23.64132, 67.92076 ], [ 23.48769, 67.84846 ], [ 23.48523, 67.69585 ], [ 23.55027, 67.60614 ], [ 23.41242, 67.48351 ], [ 23.47813, 67.4515 ], [ 23.74848, 67.42789 ], [ 23.75878, 67.32308 ], [ 23.71135, 67.28393 ], [ 23.5692, 67.2585 ], [ 23.58364, 67.20785 ], [ 23.56305, 67.17268 ], [ 23.98275, 66.83113 ], [ 23.97824, 66.79633 ], [ 23.88999, 66.75594 ], [ 23.87928, 66.62097 ], [ 23.85845, 66.56389 ], [ 23.65353, 66.44686 ], [ 23.67538, 66.37722 ], [ 23.65214, 66.29579 ], [ 23.73326, 66.19735 ], [ 23.91538, 66.15378 ], [ 23.94631, 66.07716 ], [ 24.08483, 65.93503 ], [ 24.15513, 65.81603 ] ] ], [ [ [ 24.14191, 65.70279 ], [ 24.13121, 65.67899 ], [ 24.08848, 65.70367 ], [ 24.1243, 65.75463 ], [ 24.14191, 65.70279 ] ] ], [ [ [ 23.80851, 65.74607 ], [ 23.78953, 65.71712 ], [ 23.74316, 65.69657 ], [ 23.67662, 65.71859 ], [ 23.68136, 65.73762 ], [ 23.74557, 65.73709 ], [ 23.78019, 65.75469 ], [ 23.80851, 65.74607 ] ] ], [ [ [ 23.53179, 65.74898 ], [ 23.50693, 65.70524 ], [ 23.46883, 65.71733 ], [ 23.48021, 65.7559 ], [ 23.53179, 65.74898 ] ] ], [ [ [ 22.98554, 65.70055 ], [ 22.95664, 65.66994 ], [ 22.8728, 65.70993 ], [ 22.92644, 65.74059 ], [ 22.98554, 65.70055 ] ] ], [ [ [ 22.83033, 65.71783 ], [ 22.80515, 65.70598 ], [ 22.74323, 65.71446 ], [ 22.72588, 65.75103 ], [ 22.73431, 65.76694 ], [ 22.75403, 65.76694 ], [ 22.83033, 65.71783 ] ] ], [ [ [ 22.81796, 65.55948 ], [ 22.82325, 65.52808 ], [ 22.73716, 65.55479 ], [ 22.75633, 65.57413 ], [ 22.81796, 65.55948 ] ] ], [ [ [ 22.73577, 65.66205 ], [ 22.69124, 65.64985 ], [ 22.66867, 65.67759 ], [ 22.69753, 65.69531 ], [ 22.73176, 65.68872 ], [ 22.73577, 65.66205 ] ] ], [ [ [ 22.71529, 65.53146 ], [ 22.71877, 65.47506 ], [ 22.66478, 65.49199 ], [ 22.68533, 65.52183 ], [ 22.64175, 65.55409 ], [ 22.65722, 65.57722 ], [ 22.6986, 65.56873 ], [ 22.71529, 65.53146 ] ] ], [ [ [ 22.64865, 65.6645 ], [ 22.64, 65.62675 ], [ 22.61626, 65.62786 ], [ 22.58668, 65.66642 ], [ 22.63207, 65.67786 ], [ 22.64865, 65.6645 ] ] ], [ [ [ 22.64173, 65.58598 ], [ 22.6088, 65.54635 ], [ 22.54773, 65.57195 ], [ 22.58121, 65.59798 ], [ 22.64173, 65.58598 ] ] ], [ [ [ 22.63136, 65.51372 ], [ 22.61511, 65.50077 ], [ 22.58796, 65.51138 ], [ 22.57949, 65.52412 ], [ 22.60335, 65.54798 ], [ 22.63136, 65.51372 ] ] ], [ [ [ 22.56753, 65.47321 ], [ 22.5147, 65.47274 ], [ 22.49073, 65.50511 ], [ 22.57067, 65.51145 ], [ 22.56753, 65.47321 ] ] ], [ [ [ 22.41217, 65.46207 ], [ 22.40672, 65.43217 ], [ 22.33868, 65.43703 ], [ 22.36794, 65.47386 ], [ 22.41217, 65.46207 ] ] ], [ [ [ 22.32909, 65.45242 ], [ 22.31748, 65.42432 ], [ 22.26683, 65.42937 ], [ 22.29697, 65.48152 ], [ 22.32909, 65.45242 ] ] ], [ [ [ 22.23457, 65.43667 ], [ 22.23016, 65.42057 ], [ 22.14732, 65.43522 ], [ 22.14269, 65.45358 ], [ 22.15845, 65.47284 ], [ 22.19094, 65.46757 ], [ 22.23457, 65.43667 ] ] ], [ [ [ 22.04149, 65.38033 ], [ 22.00613, 65.35948 ], [ 21.95202, 65.39594 ], [ 21.98934, 65.40751 ], [ 22.04149, 65.38033 ] ] ], [ [ [ 21.82983, 65.26825 ], [ 21.83409, 65.19572 ], [ 21.77029, 65.21636 ], [ 21.7584, 65.27445 ], [ 21.76927, 65.28346 ], [ 21.82983, 65.26825 ] ] ], [ [ [ 21.73349, 65.22025 ], [ 21.72246, 65.1966 ], [ 21.66078, 65.22163 ], [ 21.68814, 65.25274 ], [ 21.73349, 65.22025 ] ] ], [ [ [ 21.71364, 65.28931 ], [ 21.67203, 65.28093 ], [ 21.65682, 65.33377 ], [ 21.72042, 65.31409 ], [ 21.71364, 65.28931 ] ] ], [ [ [ 20.94013, 63.74815 ], [ 20.87628, 63.67598 ], [ 20.83487, 63.77572 ], [ 20.89501, 63.8187 ], [ 20.94013, 63.74815 ] ] ], [ [ [ 20.80986, 63.58984 ], [ 20.76036, 63.58913 ], [ 20.74495, 63.60201 ], [ 20.75493, 63.62247 ], [ 20.79681, 63.63286 ], [ 20.80986, 63.58984 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI03", "NUTS_ID": "SI03", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Vzhodna Slovenija", "geo": "SI03", "time_2018_MEAN": 80.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.59681, 46.4759 ], [ 16.37983, 46.54031 ], [ 16.24215, 46.49008 ], [ 16.30155, 46.37829 ], [ 16.10859, 46.39664 ], [ 16.00532, 46.31221 ], [ 15.87349, 46.27932 ], [ 15.79148, 46.25933 ], [ 15.79463, 46.23375 ], [ 15.77072, 46.21023 ], [ 15.65528, 46.21439 ], [ 15.60467, 46.14298 ], [ 15.62726, 46.08595 ], [ 15.70371, 46.05864 ], [ 15.71547, 46.0209 ], [ 15.70641, 45.97526 ], [ 15.6729, 45.83614 ], [ 15.57101, 45.84603 ], [ 15.40443, 45.79272 ], [ 15.33129, 45.76285 ], [ 15.29531, 45.72349 ], [ 15.38236, 45.66109 ], [ 15.29757, 45.59823 ], [ 15.34681, 45.48382 ], [ 15.22644, 45.42709 ], [ 15.15585, 45.42958 ], [ 14.93846, 45.5207 ], [ 14.89642, 45.48065 ], [ 14.81957, 45.46912 ], [ 14.70013, 45.53355 ], [ 14.57001, 45.67294 ], [ 14.47445, 45.53286 ], [ 14.31881, 45.47646 ], [ 14.1182, 45.48124 ], [ 14.07521, 45.66793 ], [ 14.08955, 45.72645 ], [ 14.04237, 45.76136 ], [ 14.06228, 45.83583 ], [ 14.12958, 45.8695 ], [ 14.27072, 45.85255 ], [ 14.31881, 45.89365 ], [ 14.40044, 45.86191 ], [ 14.48286, 45.87468 ], [ 14.56481, 45.79146 ], [ 14.68809, 45.80731 ], [ 14.80292, 45.75732 ], [ 14.891, 45.93164 ], [ 14.94858, 45.97861 ], [ 14.9266, 46.0209 ], [ 14.88145, 46.06176 ], [ 14.79477, 46.04877 ], [ 14.73519, 46.08013 ], [ 14.90876, 46.20757 ], [ 14.85777, 46.2464 ], [ 14.70527, 46.26246 ], [ 14.63186, 46.35534 ], [ 14.56521, 46.3677 ], [ 14.56518, 46.37245 ], [ 14.59738, 46.42752 ], [ 14.67458, 46.45069 ], [ 14.72502, 46.49664 ], [ 14.81318, 46.51518 ], [ 14.87473, 46.60157 ], [ 15.06512, 46.65211 ], [ 15.40198, 46.65355 ], [ 15.49791, 46.61801 ], [ 15.64999, 46.70576 ], [ 15.78642, 46.70747 ], [ 16.00843, 46.68129 ], [ 15.99624, 46.8354 ], [ 16.11385, 46.86907 ], [ 16.3171, 46.85753 ], [ 16.34147, 46.82673 ], [ 16.31996, 46.76682 ], [ 16.37079, 46.72224 ], [ 16.42018, 46.68464 ], [ 16.40275, 46.63425 ], [ 16.59681, 46.4759 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SI04", "NUTS_ID": "SI04", "LEVL_CODE": 2, "CNTR_CODE": "SI", "NUTS_NAME": "Zahodna Slovenija", "geo": "SI04", "time_2018_MEAN": 82.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.4345, 46.44294 ], [ 14.52633, 46.41496 ], [ 14.56518, 46.37245 ], [ 14.56521, 46.3677 ], [ 14.63186, 46.35534 ], [ 14.70527, 46.26246 ], [ 14.85777, 46.2464 ], [ 14.90876, 46.20757 ], [ 14.73519, 46.08013 ], [ 14.79477, 46.04877 ], [ 14.88145, 46.06176 ], [ 14.9266, 46.0209 ], [ 14.94858, 45.97861 ], [ 14.891, 45.93164 ], [ 14.80292, 45.75732 ], [ 14.68809, 45.80731 ], [ 14.56481, 45.79146 ], [ 14.48286, 45.87468 ], [ 14.40044, 45.86191 ], [ 14.31881, 45.89365 ], [ 14.27072, 45.85255 ], [ 14.12958, 45.8695 ], [ 14.06228, 45.83583 ], [ 14.04237, 45.76136 ], [ 14.08955, 45.72645 ], [ 14.07521, 45.66793 ], [ 14.1182, 45.48124 ], [ 14.11128, 45.48234 ], [ 14.00416, 45.51263 ], [ 13.97538, 45.45662 ], [ 13.86966, 45.42921 ], [ 13.77597, 45.46225 ], [ 13.6513, 45.45405 ], [ 13.64775, 45.45736 ], [ 13.64182, 45.45959 ], [ 13.62099, 45.46324 ], [ 13.61398, 45.46467 ], [ 13.6024, 45.46741 ], [ 13.60131, 45.46782 ], [ 13.58727, 45.47736 ], [ 13.5924, 45.4863 ], [ 13.58553, 45.49768 ], [ 13.58711, 45.50013 ], [ 13.59434, 45.50282 ], [ 13.59479, 45.50712 ], [ 13.59228, 45.51264 ], [ 13.59148, 45.51442 ], [ 13.59114, 45.51713 ], [ 13.59162, 45.51982 ], [ 13.5929, 45.52224 ], [ 13.59484, 45.52416 ], [ 13.59728, 45.52541 ], [ 13.59924, 45.52578 ], [ 13.60634, 45.52852 ], [ 13.60642, 45.53108 ], [ 13.60143, 45.5326 ], [ 13.60218, 45.53637 ], [ 13.61565, 45.53989 ], [ 13.62915, 45.53385 ], [ 13.63983, 45.53306 ], [ 13.64635, 45.53321 ], [ 13.65667, 45.53548 ], [ 13.65727, 45.54159 ], [ 13.66926, 45.53933 ], [ 13.67385, 45.54198 ], [ 13.67997, 45.54551 ], [ 13.69341, 45.54791 ], [ 13.70816, 45.54675 ], [ 13.71911, 45.5436 ], [ 13.7326, 45.55121 ], [ 13.73247, 45.55626 ], [ 13.74117, 45.55788 ], [ 13.7339, 45.55938 ], [ 13.73371, 45.56143 ], [ 13.73609, 45.56427 ], [ 13.74591, 45.56553 ], [ 13.74552, 45.5695 ], [ 13.72594, 45.5803 ], [ 13.72388, 45.58186 ], [ 13.72236, 45.58393 ], [ 13.72148, 45.58636 ], [ 13.72133, 45.58893 ], [ 13.72203, 45.59161 ], [ 13.72248, 45.59484 ], [ 13.83734, 45.58681 ], [ 13.906, 45.63385 ], [ 13.79669, 45.73836 ], [ 13.59624, 45.80794 ], [ 13.59715, 45.81952 ], [ 13.58362, 45.86277 ], [ 13.63535, 45.97481 ], [ 13.5287, 45.97258 ], [ 13.49019, 46.00058 ], [ 13.49957, 46.0209 ], [ 13.49694, 46.05133 ], [ 13.63098, 46.13112 ], [ 13.6553, 46.17326 ], [ 13.43637, 46.23217 ], [ 13.39805, 46.29438 ], [ 13.452, 46.35655 ], [ 13.60352, 46.43586 ], [ 13.68403, 46.43747 ], [ 13.71419, 46.5227 ], [ 13.91492, 46.5165 ], [ 14.10176, 46.47932 ], [ 14.16784, 46.44001 ], [ 14.4345, 46.44294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK01", "NUTS_ID": "SK01", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Bratislavský kraj", "geo": "SK01", "time_2018_MEAN": 78.633333333333326 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.24743, 48.01201 ], [ 17.1608, 48.00666 ], [ 17.07721, 48.03778 ], [ 17.06674, 48.11868 ], [ 16.9762, 48.17224 ], [ 16.94619, 48.26142 ], [ 16.85557, 48.35287 ], [ 16.85111, 48.43863 ], [ 16.94978, 48.53579 ], [ 17.202, 48.56177 ], [ 17.33022, 48.64503 ], [ 17.3635, 48.62884 ], [ 17.30444, 48.5523 ], [ 17.33376, 48.50414 ], [ 17.3156, 48.46672 ], [ 17.46414, 48.35484 ], [ 17.51575, 48.19691 ], [ 17.47874, 48.16121 ], [ 17.40004, 48.16179 ], [ 17.31618, 48.11682 ], [ 17.32061, 48.06951 ], [ 17.24743, 48.01201 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK02", "NUTS_ID": "SK02", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Západné Slovensko", "geo": "SK02", "time_2018_MEAN": 77.333333333333329 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.82635, 48.74406 ], [ 18.70728, 48.63367 ], [ 18.47868, 48.5486 ], [ 18.52867, 48.49617 ], [ 18.57986, 48.35653 ], [ 18.6504, 48.35062 ], [ 18.73288, 48.40677 ], [ 18.8147, 48.35929 ], [ 18.8467, 48.29994 ], [ 18.81361, 48.18668 ], [ 18.91687, 48.16411 ], [ 19.06102, 48.18752 ], [ 19.01432, 48.07774 ], [ 18.92839, 48.05683 ], [ 18.83747, 48.04569 ], [ 18.76686, 47.97332 ], [ 18.76781, 47.88009 ], [ 18.84848, 47.81823 ], [ 18.75971, 47.8133 ], [ 18.63892, 47.76006 ], [ 17.89392, 47.73946 ], [ 17.70544, 47.75899 ], [ 17.4596, 47.88862 ], [ 17.34743, 47.98223 ], [ 17.24743, 48.01201 ], [ 17.32061, 48.06951 ], [ 17.31618, 48.11682 ], [ 17.40004, 48.16179 ], [ 17.47874, 48.16121 ], [ 17.51575, 48.19691 ], [ 17.46414, 48.35484 ], [ 17.3156, 48.46672 ], [ 17.33376, 48.50414 ], [ 17.30444, 48.5523 ], [ 17.3635, 48.62884 ], [ 17.33022, 48.64503 ], [ 17.202, 48.56177 ], [ 16.94978, 48.53579 ], [ 16.94028, 48.61725 ], [ 17.04025, 48.75678 ], [ 17.1852, 48.86603 ], [ 17.39673, 48.81335 ], [ 17.45377, 48.83915 ], [ 17.54748, 48.81875 ], [ 17.64693, 48.85427 ], [ 17.7867, 48.92137 ], [ 17.87783, 48.93252 ], [ 17.93167, 49.01488 ], [ 18.06722, 49.04073 ], [ 18.1657, 49.26554 ], [ 18.32244, 49.31506 ], [ 18.39386, 49.2882 ], [ 18.57087, 49.1205 ], [ 18.58264, 49.04082 ], [ 18.54021, 48.962 ], [ 18.68285, 48.94043 ], [ 18.72071, 48.84525 ], [ 18.82635, 48.74406 ] ], [ [ 18.57479, 48.31682 ], [ 18.5698, 48.35881 ], [ 18.51515, 48.34928 ], [ 18.53642, 48.30934 ], [ 18.57479, 48.31682 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK03", "NUTS_ID": "SK03", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Stredné Slovensko", "geo": "SK03", "time_2018_MEAN": 77.066666666666677 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.88393, 49.20418 ], [ 19.95917, 49.11591 ], [ 20.03081, 49.09798 ], [ 19.99462, 48.9984 ], [ 20.0353, 48.92963 ], [ 19.99225, 48.9075 ], [ 20.26745, 48.87407 ], [ 20.20748, 48.82046 ], [ 20.18828, 48.73428 ], [ 20.34687, 48.59247 ], [ 20.31625, 48.47852 ], [ 20.46394, 48.46397 ], [ 20.31993, 48.27716 ], [ 20.15053, 48.2462 ], [ 20.05188, 48.1677 ], [ 19.92298, 48.13628 ], [ 19.636, 48.24457 ], [ 19.52575, 48.19602 ], [ 19.47152, 48.10195 ], [ 19.23374, 48.05827 ], [ 19.01432, 48.07774 ], [ 19.06102, 48.18752 ], [ 18.91687, 48.16411 ], [ 18.81361, 48.18668 ], [ 18.8467, 48.29994 ], [ 18.8147, 48.35929 ], [ 18.73288, 48.40677 ], [ 18.6504, 48.35062 ], [ 18.57986, 48.35653 ], [ 18.52867, 48.49617 ], [ 18.47868, 48.5486 ], [ 18.70728, 48.63367 ], [ 18.82635, 48.74406 ], [ 18.72071, 48.84525 ], [ 18.68285, 48.94043 ], [ 18.54021, 48.962 ], [ 18.58264, 49.04082 ], [ 18.57087, 49.1205 ], [ 18.39386, 49.2882 ], [ 18.32244, 49.31506 ], [ 18.39167, 49.34533 ], [ 18.4036, 49.39675 ], [ 18.45883, 49.40539 ], [ 18.56649, 49.50284 ], [ 18.75187, 49.49317 ], [ 18.85155, 49.51719 ], [ 18.95934, 49.50591 ], [ 18.99501, 49.39778 ], [ 19.16318, 49.40798 ], [ 19.25093, 49.52077 ], [ 19.35208, 49.53998 ], [ 19.46739, 49.61377 ], [ 19.64855, 49.40827 ], [ 19.78819, 49.39816 ], [ 19.81005, 49.2793 ], [ 19.77205, 49.21264 ], [ 19.88393, 49.20418 ] ] ], [ [ [ 18.57479, 48.31682 ], [ 18.53642, 48.30934 ], [ 18.51515, 48.34928 ], [ 18.5698, 48.35881 ], [ 18.57479, 48.31682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "SK04", "NUTS_ID": "SK04", "LEVL_CODE": 2, "CNTR_CODE": "SK", "NUTS_NAME": "Východné Slovensko", "geo": "SK04", "time_2018_MEAN": 77.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.39771, 49.43379 ], [ 21.46671, 49.41613 ], [ 21.61659, 49.44375 ], [ 21.68845, 49.41321 ], [ 21.78233, 49.36634 ], [ 21.84147, 49.38462 ], [ 21.95917, 49.34152 ], [ 22.05962, 49.21472 ], [ 22.42189, 49.105 ], [ 22.56684, 49.08838 ], [ 22.54046, 49.01605 ], [ 22.46763, 48.97729 ], [ 22.38282, 48.86226 ], [ 22.3395, 48.69401 ], [ 22.16683, 48.57268 ], [ 22.15531, 48.4034 ], [ 22.12108, 48.37831 ], [ 22.00241, 48.38502 ], [ 21.78804, 48.34456 ], [ 21.69172, 48.38976 ], [ 21.59888, 48.50403 ], [ 21.44771, 48.57221 ], [ 21.12728, 48.50654 ], [ 20.81338, 48.5776 ], [ 20.73632, 48.57229 ], [ 20.52175, 48.53194 ], [ 20.46394, 48.46397 ], [ 20.31625, 48.47852 ], [ 20.34687, 48.59247 ], [ 20.18828, 48.73428 ], [ 20.20748, 48.82046 ], [ 20.26745, 48.87407 ], [ 19.99225, 48.9075 ], [ 20.0353, 48.92963 ], [ 19.99462, 48.9984 ], [ 20.03081, 49.09798 ], [ 19.95917, 49.11591 ], [ 19.88393, 49.20418 ], [ 19.96275, 49.23031 ], [ 20.07834, 49.18721 ], [ 20.14302, 49.30421 ], [ 20.21524, 49.34488 ], [ 20.31199, 49.35528 ], [ 20.35968, 49.40297 ], [ 20.46047, 49.41413 ], [ 20.56579, 49.38238 ], [ 20.61494, 49.41783 ], [ 20.72562, 49.41449 ], [ 20.81338, 49.36732 ], [ 20.93794, 49.30037 ], [ 21.08963, 49.37206 ], [ 21.07549, 49.4237 ], [ 21.19493, 49.40542 ], [ 21.28704, 49.4558 ], [ 21.39771, 49.43379 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR10", "NUTS_ID": "TR10", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "İstanbul", "geo": "TR10", "time_2018_MEAN": 79.333333333333329 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.86562, 41.14345 ], [ 29.86437, 41.09192 ], [ 29.84449, 41.06313 ], [ 29.65022, 40.98778 ], [ 29.5433, 41.00935 ], [ 29.47614, 40.99 ], [ 29.40296, 40.94198 ], [ 29.34252, 40.80766 ], [ 29.04508, 40.96484 ], [ 28.99194, 41.02113 ], [ 29.09875, 41.19551 ], [ 29.26818, 41.2304 ], [ 29.84449, 41.13852 ], [ 29.86562, 41.14345 ] ] ], [ [ [ 27.9911, 41.01834 ], [ 27.96981, 41.14397 ], [ 28.13127, 41.41324 ], [ 28.1016, 41.51065 ], [ 28.18166, 41.56406 ], [ 28.28016, 41.49453 ], [ 28.33517, 41.47221 ], [ 28.62934, 41.35286 ], [ 29.08805, 41.24533 ], [ 28.99517, 41.16586 ], [ 28.88068, 41.03706 ], [ 28.81929, 40.96072 ], [ 28.6243, 40.9639 ], [ 28.58068, 41.01007 ], [ 28.52737, 40.99435 ], [ 28.33517, 41.04489 ], [ 28.22664, 41.07344 ], [ 27.9911, 41.01834 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "TR21", "NUTS_ID": "TR21", "LEVL_CODE": 2, "CNTR_CODE": "TR", "NUTS_NAME": "Tekirdağ, Edirne, Kırklareli", "geo": "TR21", "time_2018_MEAN": 77.866666666666674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.03551, 41.98308 ], [ 28.04658, 41.93799 ], [ 28.04928, 41.89302 ], [ 27.99485, 41.87646 ], [ 27.98431, 41.83159 ], [ 28.15297, 41.57896 ], [ 28.18166, 41.56406 ], [ 28.1016, 41.51065 ], [ 28.13127, 41.41324 ], [ 27.96981, 41.14397 ], [ 27.9911, 41.01834 ], [ 27.9279, 40.97194 ], [ 27.74815, 41.0086 ], [ 27.53692, 40.97309 ], [ 27.30046, 40.70313 ], [ 26.96865, 40.55337 ], [ 26.91895, 40.60231 ], [ 26.96151, 40.68163 ], [ 26.95277, 40.7255 ], [ 26.77385, 40.74113 ], [ 26.73489, 40.64293 ], [ 26.61691, 40.63559 ], [ 26.57416, 40.61676 ], [ 26.52987, 40.59358 ], [ 26.4584, 40.61508 ], [ 26.41627, 40.60108 ], [ 26.36956, 40.60639 ], [ 26.3075, 40.59156 ], [ 26.22177, 40.59825 ], [ 26.15295, 40.59039 ], [ 26.12118, 40.60147 ], [ 26.07738, 40.61676 ], [ 26.03276, 40.73026 ], [ 26.12118, 40.75153 ], [ 26.2377, 40.88653 ], [ 26.34274, 40.94879 ], [ 26.35409, 41.01418 ], [ 26.31732, 41.17349 ], [ 26.33627, 41.24867 ], [ 26.62808, 41.35816 ], [ 26.59088, 41.60047 ], [ 26.35788, 41.7111 ], [ 26.33509, 41.7516 ], [ 26.36234, 41.80764 ], [ 26.53687, 41.83075 ], [ 26.57545, 41.89257 ], [ 26.56154, 41.92627 ], [ 26.57541, 41.93799 ], [ 26.62746, 41.9723 ], [ 26.73755, 41.96113 ], [ 26.94923, 42.00021 ], [ 27.05965, 42.08834 ], [ 27.1656, 42.07099 ], [ 27.28493, 42.09117 ], [ 27.55376, 41.92126 ], [ 27.70161, 41.96852 ], [ 27.80524, 41.96009 ], [ 27.86572, 41.99724 ], [ 28.03551, 41.98308 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKE4", "NUTS_ID": "UKE4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Yorkshire", "geo": "UKE4", "time_2018_MEAN": 80.13333333333334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.72717, 53.91024 ], [ -1.67314, 53.91182 ], [ -1.32402, 53.93263 ], [ -1.3405, 53.85293 ], [ -1.30199, 53.74176 ], [ -1.23772, 53.70527 ], [ -1.23279, 53.62114 ], [ -1.31348, 53.57911 ], [ -1.41117, 53.60888 ], [ -1.5864, 53.6072 ], [ -1.67314, 53.55391 ], [ -1.71826, 53.55647 ], [ -1.82219, 53.52112 ], [ -1.90958, 53.53842 ], [ -1.99698, 53.60461 ], [ -2.03377, 53.64882 ], [ -2.05586, 53.67537 ], [ -2.14629, 53.68227 ], [ -2.16034, 53.72876 ], [ -2.11632, 53.79977 ], [ -2.06121, 53.82567 ], [ -2.04613, 53.85014 ], [ -1.92535, 53.94971 ], [ -1.83124, 53.93097 ], [ -1.72717, 53.91024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF1", "NUTS_ID": "UKF1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Derbyshire and Nottinghamshire", "geo": "UKF1", "time_2018_MEAN": 80.933333333333323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59912, 53.31132 ], [ -1.32467, 53.32881 ], [ -1.19969, 53.31145 ], [ -1.11048, 53.40568 ], [ -1.01835, 53.43209 ], [ -0.93552, 53.50252 ], [ -0.88562, 53.4633 ], [ -0.79742, 53.45509 ], [ -0.75749, 53.33031 ], [ -0.77349, 53.26051 ], [ -0.68357, 53.23437 ], [ -0.73517, 53.19394 ], [ -0.71132, 53.0858 ], [ -0.78928, 53.01054 ], [ -0.77822, 52.97693 ], [ -0.81997, 52.96047 ], [ -0.98226, 52.82707 ], [ -1.12291, 52.81169 ], [ -1.20211, 52.79211 ], [ -1.22584, 52.79373 ], [ -1.26228, 52.81169 ], [ -1.26789, 52.87337 ], [ -1.34983, 52.85869 ], [ -1.40899, 52.81169 ], [ -1.54111, 52.75994 ], [ -1.59751, 52.70043 ], [ -1.69159, 52.7375 ], [ -1.61397, 52.79442 ], [ -1.61486, 52.83645 ], [ -1.8313, 52.90894 ], [ -1.8306, 52.95586 ], [ -1.7716, 53.0218 ], [ -1.80554, 53.11945 ], [ -1.86643, 53.1829 ], [ -1.98738, 53.21361 ], [ -2.03102, 53.37029 ], [ -1.96335, 53.50985 ], [ -1.90958, 53.53842 ], [ -1.82219, 53.52112 ], [ -1.80147, 53.48099 ], [ -1.75152, 53.45966 ], [ -1.73887, 53.42623 ], [ -1.67314, 53.39642 ], [ -1.59912, 53.31132 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF2", "NUTS_ID": "UKF2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Leicestershire, Rutland and Northamptonshire", "geo": "UKF2", "time_2018_MEAN": 81.533333333333346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.49497, 52.64024 ], [ -0.48402, 52.58343 ], [ -0.41538, 52.57874 ], [ -0.3477, 52.46769 ], [ -0.4898, 52.37151 ], [ -0.46532, 52.32296 ], [ -0.52075, 52.31022 ], [ -0.55509, 52.26167 ], [ -0.63768, 52.26974 ], [ -0.6681, 52.19503 ], [ -0.68696, 52.19598 ], [ -0.70542, 52.19157 ], [ -0.87115, 52.11605 ], [ -0.8427, 52.07244 ], [ -0.87129, 52.04025 ], [ -0.90641, 52.03138 ], [ -0.98754, 52.07634 ], [ -1.09723, 52.05107 ], [ -1.11806, 52.01543 ], [ -1.19168, 51.98125 ], [ -1.27434, 51.98762 ], [ -1.30551, 52.05748 ], [ -1.28075, 52.11729 ], [ -1.3319, 52.16848 ], [ -1.2701, 52.20084 ], [ -1.27104, 52.23698 ], [ -1.22708, 52.26658 ], [ -1.24076, 52.33431 ], [ -1.18999, 52.35801 ], [ -1.20158, 52.39674 ], [ -1.31318, 52.49488 ], [ -1.54044, 52.584 ], [ -1.58961, 52.68727 ], [ -1.59751, 52.70043 ], [ -1.54111, 52.75994 ], [ -1.40899, 52.81169 ], [ -1.34983, 52.85869 ], [ -1.26789, 52.87337 ], [ -1.26228, 52.81169 ], [ -1.22584, 52.79373 ], [ -1.20211, 52.79211 ], [ -1.12291, 52.81169 ], [ -0.98226, 52.82707 ], [ -0.81997, 52.96047 ], [ -0.77822, 52.97693 ], [ -0.76241, 52.8992 ], [ -0.68235, 52.81169 ], [ -0.65346, 52.76105 ], [ -0.44366, 52.7025 ], [ -0.49497, 52.64024 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKF3", "NUTS_ID": "UKF3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Lincolnshire", "geo": "UKF3", "time_2018_MEAN": 80.966666666666669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.01738, 53.52537 ], [ 0.09692, 53.4977 ], [ 0.1675, 53.47315 ], [ 0.34656, 53.21393 ], [ 0.33327, 53.10284 ], [ 0.16526, 53.01488 ], [ 0.09692, 52.95377 ], [ 0.05395, 52.91535 ], [ 0.09692, 52.89262 ], [ 0.24996, 52.81169 ], [ 0.27307, 52.81169 ], [ 0.23598, 52.76127 ], [ 0.17169, 52.73804 ], [ 0.09692, 52.72557 ], [ 0.07276, 52.72154 ], [ 0.02772, 52.67161 ], [ -0.03133, 52.66152 ], [ -0.33555, 52.66987 ], [ -0.49497, 52.64024 ], [ -0.44366, 52.7025 ], [ -0.65346, 52.76105 ], [ -0.68235, 52.81169 ], [ -0.76241, 52.8992 ], [ -0.77822, 52.97693 ], [ -0.78928, 53.01054 ], [ -0.71132, 53.0858 ], [ -0.73517, 53.19394 ], [ -0.68357, 53.23437 ], [ -0.77349, 53.26051 ], [ -0.75749, 53.33031 ], [ -0.79742, 53.45509 ], [ -0.71879, 53.51689 ], [ -0.63904, 53.51013 ], [ -0.60891, 53.45937 ], [ -0.49329, 53.47231 ], [ -0.41882, 53.5206 ], [ -0.43478, 53.557 ], [ -0.34054, 53.56416 ], [ -0.29729, 53.60563 ], [ -0.20289, 53.56633 ], [ -0.20717, 53.49469 ], [ -0.12155, 53.44174 ], [ -0.06161, 53.51142 ], [ 0.01738, 53.52537 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG1", "NUTS_ID": "UKG1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Herefordshire, Worcestershire and Warwickshire", "geo": "UKG1", "time_2018_MEAN": 81.86666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.20158, 52.39674 ], [ -1.18999, 52.35801 ], [ -1.24076, 52.33431 ], [ -1.22708, 52.26658 ], [ -1.27104, 52.23698 ], [ -1.2701, 52.20084 ], [ -1.3319, 52.16848 ], [ -1.37417, 52.10187 ], [ -1.47176, 52.09777 ], [ -1.54821, 51.98414 ], [ -1.60797, 51.9624 ], [ -1.66573, 51.98749 ], [ -1.67314, 52.0363 ], [ -1.76763, 52.11259 ], [ -1.83124, 52.07779 ], [ -1.84902, 52.06806 ], [ -1.84269, 52.01598 ], [ -1.91344, 52.03755 ], [ -2.03377, 52.022 ], [ -2.13022, 52.00953 ], [ -2.16076, 52.03983 ], [ -2.19069, 51.99852 ], [ -2.27159, 51.97057 ], [ -2.35136, 52.02137 ], [ -2.48139, 52.006 ], [ -2.45265, 51.89992 ], [ -2.65021, 51.82615 ], [ -2.74774, 51.84651 ], [ -2.86755, 51.92609 ], [ -2.96606, 51.91315 ], [ -3.06736, 51.98315 ], [ -3.11747, 52.07979 ], [ -3.11324, 52.16801 ], [ -3.03623, 52.25522 ], [ -2.95472, 52.34926 ], [ -2.83355, 52.39132 ], [ -2.72548, 52.31904 ], [ -2.66752, 52.33326 ], [ -2.61802, 52.30696 ], [ -2.39687, 52.37802 ], [ -2.35554, 52.43312 ], [ -2.28736, 52.45533 ], [ -2.16483, 52.43021 ], [ -2.01697, 52.43269 ], [ -1.99059, 52.38551 ], [ -1.86872, 52.40474 ], [ -1.87201, 52.3676 ], [ -1.83124, 52.36688 ], [ -1.67314, 52.36408 ], [ -1.60102, 52.38932 ], [ -1.47191, 52.37971 ], [ -1.43112, 52.41764 ], [ -1.46243, 52.45256 ], [ -1.59546, 52.45592 ], [ -1.67314, 52.43628 ], [ -1.75349, 52.51297 ], [ -1.78805, 52.58787 ], [ -1.67314, 52.59259 ], [ -1.58961, 52.68727 ], [ -1.54044, 52.584 ], [ -1.31318, 52.49488 ], [ -1.20158, 52.39674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG2", "NUTS_ID": "UKG2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Shropshire and Staffordshire", "geo": "UKG2", "time_2018_MEAN": 80.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.59751, 52.70043 ], [ -1.58961, 52.68727 ], [ -1.67314, 52.59259 ], [ -1.78805, 52.58787 ], [ -1.83124, 52.58638 ], [ -1.87254, 52.58495 ], [ -1.93051, 52.65739 ], [ -2.03377, 52.62572 ], [ -2.05069, 52.62053 ], [ -2.17903, 52.61258 ], [ -2.17718, 52.56806 ], [ -2.13347, 52.55408 ], [ -2.17701, 52.5014 ], [ -2.16483, 52.43021 ], [ -2.28736, 52.45533 ], [ -2.35554, 52.43312 ], [ -2.39687, 52.37802 ], [ -2.61802, 52.30696 ], [ -2.66752, 52.33326 ], [ -2.72548, 52.31904 ], [ -2.83355, 52.39132 ], [ -2.95472, 52.34926 ], [ -3.07168, 52.35557 ], [ -3.16975, 52.40936 ], [ -3.22184, 52.43793 ], [ -3.16975, 52.46099 ], [ -3.00677, 52.53312 ], [ -3.01673, 52.56624 ], [ -3.10121, 52.54249 ], [ -3.12691, 52.57071 ], [ -3.00275, 52.73709 ], [ -3.15133, 52.80109 ], [ -3.14748, 52.89016 ], [ -2.97771, 52.96108 ], [ -2.78941, 52.90544 ], [ -2.73347, 52.93434 ], [ -2.72682, 52.9833 ], [ -2.69927, 52.99546 ], [ -2.53809, 52.95624 ], [ -2.38077, 52.99843 ], [ -2.35846, 53.06045 ], [ -2.24578, 53.09446 ], [ -2.13544, 53.17348 ], [ -2.03377, 53.20103 ], [ -1.98738, 53.21361 ], [ -1.86643, 53.1829 ], [ -1.80554, 53.11945 ], [ -1.7716, 53.0218 ], [ -1.8306, 52.95586 ], [ -1.8313, 52.90894 ], [ -1.61486, 52.83645 ], [ -1.61397, 52.79442 ], [ -1.69159, 52.7375 ], [ -1.59751, 52.70043 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKG3", "NUTS_ID": "UKG3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "West Midlands", "geo": "UKG3", "time_2018_MEAN": 80.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.87254, 52.58495 ], [ -1.83124, 52.58638 ], [ -1.78805, 52.58787 ], [ -1.75349, 52.51297 ], [ -1.67314, 52.43628 ], [ -1.59546, 52.45592 ], [ -1.46243, 52.45256 ], [ -1.43112, 52.41764 ], [ -1.47191, 52.37971 ], [ -1.60102, 52.38932 ], [ -1.67314, 52.36408 ], [ -1.83124, 52.36688 ], [ -1.87201, 52.3676 ], [ -1.86872, 52.40474 ], [ -1.99059, 52.38551 ], [ -2.01697, 52.43269 ], [ -2.16483, 52.43021 ], [ -2.17701, 52.5014 ], [ -2.13347, 52.55408 ], [ -2.17718, 52.56806 ], [ -2.17903, 52.61258 ], [ -2.05069, 52.62053 ], [ -2.03377, 52.62572 ], [ -1.93051, 52.65739 ], [ -1.87254, 52.58495 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH1", "NUTS_ID": "UKH1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "East Anglia", "geo": "UKH1", "time_2018_MEAN": 82.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.67548, 52.74269 ], [ 1.73639, 52.64175 ], [ 1.74054, 52.5321 ], [ 1.72685, 52.40783 ], [ 1.55318, 52.08517 ], [ 1.33993, 51.95452 ], [ 1.05638, 51.95149 ], [ 0.92824, 51.96066 ], [ 0.78428, 51.97097 ], [ 0.66707, 52.08015 ], [ 0.40469, 52.0655 ], [ 0.38974, 52.03646 ], [ 0.25358, 52.08506 ], [ 0.09692, 52.03774 ], [ 0.06817, 52.00579 ], [ -0.00057, 52.05887 ], [ -0.12072, 52.02787 ], [ -0.15724, 52.08055 ], [ -0.1537, 52.13203 ], [ -0.24974, 52.18437 ], [ -0.46532, 52.32296 ], [ -0.4898, 52.37151 ], [ -0.3477, 52.46769 ], [ -0.41538, 52.57874 ], [ -0.48402, 52.58343 ], [ -0.49497, 52.64024 ], [ -0.33555, 52.66987 ], [ -0.03133, 52.66152 ], [ 0.02772, 52.67161 ], [ 0.07276, 52.72154 ], [ 0.09692, 52.72557 ], [ 0.17169, 52.73804 ], [ 0.23598, 52.76127 ], [ 0.27307, 52.81169 ], [ 0.38522, 52.8138 ], [ 0.55143, 52.97076 ], [ 0.92824, 52.97285 ], [ 1.0105, 52.97266 ], [ 1.17559, 52.94704 ], [ 1.3478, 52.91732 ], [ 1.56243, 52.81169 ], [ 1.67548, 52.74269 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH2", "NUTS_ID": "UKH2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Bedfordshire and Hertfordshire", "geo": "UKH2", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.46532, 52.32296 ], [ -0.24974, 52.18437 ], [ -0.1537, 52.13203 ], [ -0.15724, 52.08055 ], [ -0.12072, 52.02787 ], [ -0.00057, 52.05887 ], [ 0.06817, 52.00579 ], [ 0.09692, 51.95415 ], [ 0.12964, 51.8954 ], [ 0.17279, 51.88441 ], [ 0.16835, 51.83709 ], [ 0.14425, 51.80103 ], [ 0.09692, 51.78559 ], [ 0.00601, 51.75592 ], [ -0.01188, 51.68088 ], [ -0.18205, 51.6686 ], [ -0.30442, 51.63635 ], [ -0.50056, 51.59969 ], [ -0.56215, 51.71286 ], [ -0.64694, 51.79505 ], [ -0.5536, 51.82671 ], [ -0.5826, 51.86541 ], [ -0.69242, 51.90908 ], [ -0.65295, 51.96923 ], [ -0.65604, 52.05515 ], [ -0.59177, 52.11069 ], [ -0.6681, 52.19503 ], [ -0.63768, 52.26974 ], [ -0.55509, 52.26167 ], [ -0.52075, 52.31022 ], [ -0.46532, 52.32296 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKH3", "NUTS_ID": "UKH3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Essex", "geo": "UKH3", "time_2018_MEAN": 81.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.38974, 52.03646 ], [ 0.40469, 52.0655 ], [ 0.66707, 52.08015 ], [ 0.78428, 51.97097 ], [ 0.92824, 51.96066 ], [ 1.05638, 51.95149 ], [ 1.24329, 51.93678 ], [ 1.24472, 51.85029 ], [ 1.12301, 51.78703 ], [ 1.00117, 51.80498 ], [ 0.84456, 51.78138 ], [ 0.8237, 51.7272 ], [ 0.92824, 51.74581 ], [ 0.94683, 51.72196 ], [ 0.94544, 51.67375 ], [ 0.92824, 51.63053 ], [ 0.59077, 51.63065 ], [ 0.86102, 51.60631 ], [ 0.82124, 51.54071 ], [ 0.78146, 51.52463 ], [ 0.62679, 51.53217 ], [ 0.58123, 51.51138 ], [ 0.5137, 51.53118 ], [ 0.38782, 51.45492 ], [ 0.21051, 51.49004 ], [ 0.31308, 51.56581 ], [ 0.20035, 51.62493 ], [ 0.13823, 51.62354 ], [ 0.09692, 51.61719 ], [ 0.06282, 51.61195 ], [ -0.01222, 51.64623 ], [ -0.01188, 51.68088 ], [ 0.00601, 51.75592 ], [ 0.09692, 51.78559 ], [ 0.14425, 51.80103 ], [ 0.16835, 51.83709 ], [ 0.17279, 51.88441 ], [ 0.12964, 51.8954 ], [ 0.09692, 51.95415 ], [ 0.06817, 52.00579 ], [ 0.09692, 52.03774 ], [ 0.25358, 52.08506 ], [ 0.38974, 52.03646 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI3", "NUTS_ID": "UKI3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — West", "geo": "UKI3", "time_2018_MEAN": 84.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.24042, 51.49011 ], [ -0.25302, 51.5014 ], [ -0.24633, 51.5328 ], [ -0.21597, 51.52793 ], [ -0.19142, 51.53629 ], [ -0.2134, 51.55515 ], [ -0.17122, 51.57243 ], [ -0.08515, 51.52033 ], [ -0.07846, 51.52152 ], [ -0.07945, 51.5078 ], [ -0.11151, 51.51075 ], [ -0.14995, 51.48552 ], [ -0.17207, 51.4811 ], [ -0.18696, 51.46814 ], [ -0.19819, 51.46752 ], [ -0.21534, 51.47063 ], [ -0.22815, 51.48564 ], [ -0.24042, 51.49011 ] ] ], [ [ [ -0.12837, 51.48506 ], [ -0.14792, 51.45444 ], [ -0.14034, 51.41925 ], [ -0.25398, 51.43724 ], [ -0.2572, 51.45444 ], [ -0.22283, 51.47182 ], [ -0.1984, 51.46579 ], [ -0.19125, 51.46374 ], [ -0.16962, 51.48008 ], [ -0.12837, 51.48506 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI4", "NUTS_ID": "UKI4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Inner London — East", "geo": "UKI4", "time_2018_MEAN": 82.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.06839, 51.54441 ], [ 0.097, 51.51567 ], [ 0.00942, 51.5071 ], [ -0.07945, 51.5078 ], [ -0.07846, 51.52152 ], [ -0.08515, 51.52033 ], [ -0.17122, 51.57243 ], [ -0.13872, 51.61019 ], [ -0.04138, 51.60564 ], [ -0.06112, 51.57779 ], [ 0.06839, 51.54441 ] ] ], [ [ [ -0.07844, 51.42016 ], [ -0.12774, 51.41232 ], [ -0.14034, 51.41925 ], [ -0.14792, 51.45444 ], [ -0.12837, 51.48506 ], [ -0.10886, 51.50845 ], [ -0.02471, 51.48565 ], [ 0.02896, 51.44162 ], [ -0.07844, 51.42016 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI5", "NUTS_ID": "UKI5", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — East and North East", "geo": "UKI5", "time_2018_MEAN": 82.333333333333343 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.01222, 51.64623 ], [ 0.06282, 51.61195 ], [ 0.09692, 51.61719 ], [ 0.13823, 51.62354 ], [ 0.20035, 51.62493 ], [ 0.31308, 51.56581 ], [ 0.21051, 51.49004 ], [ 0.19096, 51.49036 ], [ 0.1537, 51.51372 ], [ 0.097, 51.51567 ], [ 0.06839, 51.54441 ], [ -0.06112, 51.57779 ], [ -0.04138, 51.60564 ], [ -0.13872, 51.61019 ], [ -0.18205, 51.6686 ], [ -0.01188, 51.68088 ], [ -0.01222, 51.64623 ] ] ], [ [ [ 0.15297, 51.4087 ], [ 0.14887, 51.4085 ], [ 0.09692, 51.42285 ], [ 0.02896, 51.44162 ], [ -0.02471, 51.48565 ], [ 0.09692, 51.50557 ], [ 0.12598, 51.51033 ], [ 0.21744, 51.48007 ], [ 0.15297, 51.4087 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI6", "NUTS_ID": "UKI6", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — South", "geo": "UKI6", "time_2018_MEAN": 82.666666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.14887, 51.4085 ], [ 0.13931, 51.35365 ], [ 0.09692, 51.32697 ], [ 0.04243, 51.29267 ], [ 0.00233, 51.32913 ], [ -0.11963, 51.29553 ], [ -0.15651, 51.32151 ], [ -0.25524, 51.37133 ], [ -0.33066, 51.32901 ], [ -0.3177, 51.39367 ], [ -0.25398, 51.43724 ], [ -0.14034, 51.41925 ], [ -0.12774, 51.41232 ], [ -0.07844, 51.42016 ], [ 0.02896, 51.44162 ], [ 0.09692, 51.42285 ], [ 0.14887, 51.4085 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKI7", "NUTS_ID": "UKI7", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Outer London — West and North West", "geo": "UKI7", "time_2018_MEAN": 83.36666666666666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.19142, 51.53629 ], [ -0.21597, 51.52793 ], [ -0.24633, 51.5328 ], [ -0.25302, 51.5014 ], [ -0.24042, 51.49011 ], [ -0.22283, 51.47182 ], [ -0.2572, 51.45444 ], [ -0.25398, 51.43724 ], [ -0.3177, 51.39367 ], [ -0.45988, 51.45444 ], [ -0.50967, 51.46917 ], [ -0.48999, 51.49475 ], [ -0.50056, 51.59969 ], [ -0.30442, 51.63635 ], [ -0.18205, 51.6686 ], [ -0.13872, 51.61019 ], [ -0.17122, 51.57243 ], [ -0.2134, 51.55515 ], [ -0.19142, 51.53629 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ1", "NUTS_ID": "UKJ1", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Berkshire, Buckinghamshire and Oxfordshire", "geo": "UKJ1", "time_2018_MEAN": 83.166666666666671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.65295, 51.96923 ], [ -0.69242, 51.90908 ], [ -0.5826, 51.86541 ], [ -0.5536, 51.82671 ], [ -0.64694, 51.79505 ], [ -0.56215, 51.71286 ], [ -0.50056, 51.59969 ], [ -0.48999, 51.49475 ], [ -0.50967, 51.46917 ], [ -0.77544, 51.33195 ], [ -1.08648, 51.37563 ], [ -1.40008, 51.36981 ], [ -1.42967, 51.33653 ], [ -1.45097, 51.33277 ], [ -1.49828, 51.32938 ], [ -1.54585, 51.40174 ], [ -1.52826, 51.45444 ], [ -1.57215, 51.48601 ], [ -1.58469, 51.52491 ], [ -1.60279, 51.5183 ], [ -1.68144, 51.5891 ], [ -1.68306, 51.69011 ], [ -1.7037, 51.78095 ], [ -1.637, 51.93426 ], [ -1.66573, 51.98749 ], [ -1.60797, 51.9624 ], [ -1.54821, 51.98414 ], [ -1.47176, 52.09777 ], [ -1.37417, 52.10187 ], [ -1.3319, 52.16848 ], [ -1.28075, 52.11729 ], [ -1.30551, 52.05748 ], [ -1.27434, 51.98762 ], [ -1.19168, 51.98125 ], [ -1.11806, 52.01543 ], [ -1.09723, 52.05107 ], [ -0.98754, 52.07634 ], [ -0.90641, 52.03138 ], [ -0.87129, 52.04025 ], [ -0.8427, 52.07244 ], [ -0.87115, 52.11605 ], [ -0.70542, 52.19157 ], [ -0.68696, 52.19598 ], [ -0.6681, 52.19503 ], [ -0.59177, 52.11069 ], [ -0.65604, 52.05515 ], [ -0.65295, 51.96923 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ2", "NUTS_ID": "UKJ2", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Surrey, East and West Sussex", "geo": "UKJ2", "time_2018_MEAN": 82.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.3177, 51.39367 ], [ -0.33066, 51.32901 ], [ -0.25524, 51.37133 ], [ -0.15651, 51.32151 ], [ -0.11963, 51.29553 ], [ 0.00233, 51.32913 ], [ 0.04243, 51.29267 ], [ 0.05005, 51.14264 ], [ 0.09692, 51.13857 ], [ 0.32233, 51.119 ], [ 0.48709, 51.03059 ], [ 0.60543, 51.01206 ], [ 0.779, 50.98948 ], [ 0.85478, 50.92371 ], [ 0.77249, 50.9271 ], [ 0.64361, 50.86715 ], [ 0.3903, 50.82348 ], [ 0.24297, 50.73939 ], [ 0.09692, 50.77062 ], [ -0.03818, 50.7995 ], [ -0.21601, 50.82756 ], [ -0.68534, 50.77831 ], [ -0.793, 50.7304 ], [ -0.89829, 50.77524 ], [ -0.93283, 50.84315 ], [ -0.93858, 50.87372 ], [ -0.89467, 51.01629 ], [ -0.75345, 51.08645 ], [ -0.84888, 51.21071 ], [ -0.73877, 51.24895 ], [ -0.77544, 51.33195 ], [ -0.50967, 51.46917 ], [ -0.45988, 51.45444 ], [ -0.3177, 51.39367 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ3", "NUTS_ID": "UKJ3", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Hampshire and Isle of Wight", "geo": "UKJ3", "time_2018_MEAN": 82.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.93858, 50.87372 ], [ -0.93283, 50.84315 ], [ -0.97279, 50.78749 ], [ -1.02397, 50.83292 ], [ -1.07799, 50.78249 ], [ -1.11658, 50.8425 ], [ -1.15651, 50.78554 ], [ -1.36516, 50.88007 ], [ -1.47704, 50.92396 ], [ -1.46465, 50.90766 ], [ -1.34235, 50.83968 ], [ -1.32459, 50.81883 ], [ -1.33019, 50.80059 ], [ -1.41836, 50.76784 ], [ -1.52475, 50.75626 ], [ -1.56453, 50.72024 ], [ -1.67314, 50.73564 ], [ -1.69205, 50.73663 ], [ -1.78374, 50.78152 ], [ -1.84196, 50.91798 ], [ -1.95681, 50.98983 ], [ -1.83124, 50.99866 ], [ -1.68399, 50.95406 ], [ -1.63023, 50.96569 ], [ -1.61593, 51.02832 ], [ -1.66875, 51.20712 ], [ -1.55228, 51.2611 ], [ -1.49828, 51.32938 ], [ -1.45097, 51.33277 ], [ -1.42967, 51.33653 ], [ -1.40008, 51.36981 ], [ -1.08648, 51.37563 ], [ -0.77544, 51.33195 ], [ -0.73877, 51.24895 ], [ -0.84888, 51.21071 ], [ -0.75345, 51.08645 ], [ -0.89467, 51.01629 ], [ -0.93858, 50.87372 ] ] ], [ [ [ -1.25036, 50.5807 ], [ -1.30739, 50.57763 ], [ -1.38932, 50.62641 ], [ -1.44675, 50.64268 ], [ -1.4874, 50.66682 ], [ -1.54987, 50.67564 ], [ -1.52132, 50.70724 ], [ -1.35404, 50.73924 ], [ -1.32056, 50.76546 ], [ -1.26909, 50.76466 ], [ -1.21649, 50.7355 ], [ -1.10909, 50.7216 ], [ -1.09364, 50.6739 ], [ -1.16754, 50.64164 ], [ -1.18415, 50.59767 ], [ -1.25036, 50.5807 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "UKJ4", "NUTS_ID": "UKJ4", "LEVL_CODE": 2, "CNTR_CODE": "UK", "NUTS_NAME": "Kent", "geo": "UKJ4", "time_2018_MEAN": 81.566666666666677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.62689, 51.37521 ], [ 0.76462, 51.44038 ], [ 0.89113, 51.41417 ], [ 0.92824, 51.37125 ], [ 0.9503, 51.34575 ], [ 1.24159, 51.3778 ], [ 1.416, 51.35838 ], [ 1.38384, 51.30535 ], [ 1.37604, 51.15424 ], [ 1.01803, 51.02544 ], [ 0.96231, 50.92834 ], [ 0.92824, 50.91894 ], [ 0.85478, 50.92371 ], [ 0.779, 50.98948 ], [ 0.60543, 51.01206 ], [ 0.48709, 51.03059 ], [ 0.32233, 51.119 ], [ 0.09692, 51.13857 ], [ 0.05005, 51.14264 ], [ 0.04243, 51.29267 ], [ 0.09692, 51.32697 ], [ 0.13931, 51.35365 ], [ 0.14887, 51.4085 ], [ 0.15297, 51.4087 ], [ 0.21744, 51.48007 ], [ 0.36334, 51.44622 ], [ 0.45732, 51.45444 ], [ 0.52138, 51.48222 ], [ 0.66058, 51.46167 ], [ 0.60567, 51.40846 ], [ 0.62689, 51.37521 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO09", "NUTS_ID": "NO09", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Agder og Sør-Østlandet", "geo": "NO09", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.57569, 59.18298 ], [ 10.53617, 59.15533 ], [ 10.50716, 59.19003 ], [ 10.55773, 59.21199 ], [ 10.57569, 59.18298 ] ] ], [ [ [ 10.36826, 59.53626 ], [ 10.3009, 59.51742 ], [ 10.37704, 59.4551 ], [ 10.47998, 59.42762 ], [ 10.50811, 59.26453 ], [ 10.47039, 59.22722 ], [ 10.4739, 59.17335 ], [ 10.42855, 59.13964 ], [ 10.4747, 59.1165 ], [ 10.42154, 59.06468 ], [ 10.32009, 59.14431 ], [ 10.19766, 59.02839 ], [ 10.04785, 59.03448 ], [ 10.03476, 58.99215 ], [ 9.99449, 58.9776 ], [ 9.87241, 58.96969 ], [ 9.8392, 59.04418 ], [ 9.60558, 58.9364 ], [ 9.50985, 58.84766 ], [ 9.36597, 58.77135 ], [ 9.17786, 58.73867 ], [ 9.20328, 58.68265 ], [ 8.90278, 58.47046 ], [ 8.74056, 58.40734 ], [ 8.52104, 58.26308 ], [ 8.39678, 58.23636 ], [ 8.26421, 58.13711 ], [ 8.18515, 58.14294 ], [ 8.11953, 58.10563 ], [ 8.02953, 58.1217 ], [ 8.01201, 58.06497 ], [ 7.76676, 58.0581 ], [ 7.54796, 57.98002 ], [ 7.18143, 58.02987 ], [ 7.07577, 58.0043 ], [ 6.93537, 58.05807 ], [ 6.63377, 58.08545 ], [ 6.61223, 58.13405 ], [ 6.67748, 58.20626 ], [ 6.56185, 58.21861 ], [ 6.43841, 58.29073 ], [ 6.55902, 58.33561 ], [ 6.61505, 58.42886 ], [ 6.58897, 58.57909 ], [ 6.50714, 58.64826 ], [ 6.59169, 58.70331 ], [ 6.53737, 58.77888 ], [ 6.58361, 58.91168 ], [ 6.87211, 59.09862 ], [ 6.93917, 59.18192 ], [ 6.84667, 59.19268 ], [ 6.82887, 59.29908 ], [ 6.91216, 59.4289 ], [ 7.00737, 59.47358 ], [ 6.97659, 59.54868 ], [ 6.99591, 59.58722 ], [ 7.04388, 59.58894 ], [ 7.08615, 59.61989 ], [ 7.10013, 59.65001 ], [ 7.21467, 59.67269 ], [ 7.12084, 59.70273 ], [ 7.09629, 59.78278 ], [ 7.16538, 59.87326 ], [ 7.23082, 59.95895 ], [ 7.42082, 60.01681 ], [ 7.48804, 60.09884 ], [ 7.64734, 60.12499 ], [ 7.82406, 60.10776 ], [ 8.13624, 60.18466 ], [ 8.74296, 60.17604 ], [ 8.93803, 60.10174 ], [ 9.00912, 59.98736 ], [ 9.17676, 59.9218 ], [ 9.18518, 59.87326 ], [ 9.19241, 59.83159 ], [ 9.35425, 59.78084 ], [ 9.3412, 59.70124 ], [ 9.36776, 59.6826 ], [ 9.4142, 59.65001 ], [ 9.50179, 59.53928 ], [ 9.48111, 59.48786 ], [ 9.55024, 59.4812 ], [ 9.65833, 59.41253 ], [ 9.77809, 59.412 ], [ 9.79322, 59.45627 ], [ 10.02174, 59.47918 ], [ 9.95001, 59.57881 ], [ 10.00333, 59.6534 ], [ 10.29748, 59.68866 ], [ 10.36826, 59.53626 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0A", "NUTS_ID": "NO0A", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Vestlandet", "geo": "NO0A", "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.06206, 62.37261 ], [ 8.26189, 62.34465 ], [ 8.15163, 62.30116 ], [ 7.98147, 62.18112 ], [ 7.737, 62.18198 ], [ 7.61488, 62.12792 ], [ 7.58956, 62.07145 ], [ 7.42347, 62.08857 ], [ 7.34911, 62.00768 ], [ 7.38943, 61.98543 ], [ 7.41964, 61.85604 ], [ 7.52323, 61.73373 ], [ 7.85611, 61.73813 ], [ 7.90003, 61.71731 ], [ 7.90346, 61.64181 ], [ 7.95921, 61.55773 ], [ 8.10355, 61.52693 ], [ 8.21306, 61.54278 ], [ 8.27529, 61.51548 ], [ 8.30621, 61.45061 ], [ 8.15598, 61.41583 ], [ 8.16446, 61.37556 ], [ 8.23468, 61.32783 ], [ 8.05489, 61.22228 ], [ 8.08692, 61.15898 ], [ 8.17737, 61.1075 ], [ 8.19862, 61.0954 ], [ 8.2517, 61.07394 ], [ 8.26873, 61.03084 ], [ 8.2186, 60.97669 ], [ 8.14869, 60.97366 ], [ 8.03213, 60.89607 ], [ 7.82693, 60.90501 ], [ 7.72233, 60.81068 ], [ 7.69903, 60.74344 ], [ 7.60355, 60.7373 ], [ 7.46964, 60.67555 ], [ 7.61919, 60.63468 ], [ 7.6412, 60.56395 ], [ 7.72402, 60.50946 ], [ 7.66812, 60.29532 ], [ 7.48804, 60.09884 ], [ 7.42082, 60.01681 ], [ 7.23082, 59.95895 ], [ 7.16538, 59.87326 ], [ 7.09629, 59.78278 ], [ 7.12084, 59.70273 ], [ 7.21467, 59.67269 ], [ 7.10013, 59.65001 ], [ 7.08615, 59.61989 ], [ 7.04388, 59.58894 ], [ 6.99591, 59.58722 ], [ 6.97659, 59.54868 ], [ 7.00737, 59.47358 ], [ 6.91216, 59.4289 ], [ 6.82887, 59.29908 ], [ 6.84667, 59.19268 ], [ 6.93917, 59.18192 ], [ 6.87211, 59.09862 ], [ 6.58361, 58.91168 ], [ 6.53737, 58.77888 ], [ 6.59169, 58.70331 ], [ 6.50714, 58.64826 ], [ 6.58897, 58.57909 ], [ 6.61505, 58.42886 ], [ 6.55902, 58.33561 ], [ 6.43841, 58.29073 ], [ 6.29696, 58.30816 ], [ 5.88211, 58.44532 ], [ 5.66557, 58.57233 ], [ 5.54879, 58.71371 ], [ 5.62486, 58.99769 ], [ 5.7205, 58.99644 ], [ 5.7908, 58.94302 ], [ 6.00268, 58.94256 ], [ 5.94287, 59.06492 ], [ 6.00194, 59.15155 ], [ 5.94421, 59.2204 ], [ 5.98586, 59.26388 ], [ 6.07363, 59.28963 ], [ 5.94085, 59.46102 ], [ 5.86462, 59.47823 ], [ 5.81479, 59.35282 ], [ 5.67748, 59.28316 ], [ 5.57933, 59.29093 ], [ 5.44576, 59.21058 ], [ 5.39815, 59.26883 ], [ 5.35585, 59.27705 ], [ 5.24187, 59.1809 ], [ 5.20318, 59.23736 ], [ 5.21637, 59.35522 ], [ 5.30288, 59.48117 ], [ 5.25849, 59.54879 ], [ 5.51427, 59.71065 ], [ 5.52589, 59.57194 ], [ 5.45723, 59.49801 ], [ 5.54725, 59.54959 ], [ 5.56268, 59.64383 ], [ 5.59583, 59.67206 ], [ 5.82397, 59.64592 ], [ 5.90731, 59.75424 ], [ 5.76543, 59.77779 ], [ 5.7493, 59.84999 ], [ 6.03142, 60.02537 ], [ 6.29846, 60.34817 ], [ 6.18972, 60.33006 ], [ 6.03568, 60.22716 ], [ 5.97702, 60.12643 ], [ 5.871, 60.03941 ], [ 5.7022, 59.96369 ], [ 5.60467, 59.88722 ], [ 5.53229, 59.87665 ], [ 5.47231, 59.80139 ], [ 5.366, 59.77006 ], [ 5.21797, 59.66231 ], [ 5.17607, 59.8589 ], [ 5.40708, 60.03102 ], [ 5.62331, 60.06905 ], [ 5.68689, 60.1266 ], [ 5.59375, 60.2431 ], [ 5.40765, 60.17701 ], [ 5.20302, 60.27913 ], [ 5.10041, 60.22366 ], [ 5.01023, 60.2465 ], [ 4.99494, 60.35913 ], [ 5.08465, 60.4473 ], [ 4.89271, 60.77282 ], [ 4.99745, 60.80453 ], [ 5.26303, 60.75934 ], [ 5.2439, 60.79402 ], [ 5.1403, 60.84025 ], [ 4.88873, 60.87906 ], [ 4.82535, 60.94742 ], [ 5.11519, 61.05292 ], [ 5.4613, 61.03787 ], [ 5.91364, 61.11906 ], [ 6.40708, 61.06665 ], [ 6.71643, 61.15327 ], [ 6.83952, 61.13184 ], [ 7.00989, 61.0499 ], [ 7.05532, 61.08587 ], [ 6.5918, 61.24654 ], [ 6.51206, 61.15606 ], [ 6.42985, 61.12563 ], [ 5.91147, 61.17105 ], [ 5.41124, 61.08864 ], [ 5.11112, 61.18632 ], [ 5.02873, 61.24319 ], [ 5.0139, 61.31722 ], [ 4.9678, 61.36328 ], [ 5.22239, 61.5136 ], [ 5.16813, 61.57963 ], [ 5.02311, 61.64611 ], [ 5.02184, 61.70727 ], [ 5.08019, 61.78464 ], [ 4.9193, 61.78624 ], [ 4.91126, 61.84805 ], [ 5.05854, 61.9919 ], [ 5.27463, 62.02274 ], [ 5.2614, 62.07157 ], [ 5.17008, 62.12794 ], [ 5.18859, 62.17423 ], [ 5.28382, 62.1563 ], [ 5.49146, 62.01479 ], [ 5.49639, 62.14034 ], [ 5.60981, 62.29776 ], [ 5.92029, 62.4016 ], [ 5.98653, 62.38798 ], [ 6.00725, 62.33689 ], [ 5.84442, 62.20251 ], [ 5.95188, 62.13494 ], [ 6.08186, 62.27583 ], [ 6.25781, 62.33179 ], [ 6.4404, 62.2973 ], [ 6.49608, 62.37611 ], [ 6.66237, 62.42183 ], [ 6.85036, 62.39912 ], [ 6.97779, 62.28403 ], [ 7.0338, 62.27102 ], [ 7.03053, 62.31271 ], [ 6.92763, 62.39367 ], [ 6.76794, 62.45908 ], [ 6.29814, 62.4192 ], [ 6.20913, 62.45529 ], [ 6.34271, 62.58046 ], [ 6.69804, 62.62923 ], [ 7.02725, 62.63253 ], [ 7.48622, 62.57766 ], [ 7.52063, 62.69739 ], [ 7.32565, 62.74691 ], [ 7.06444, 62.75434 ], [ 7.00212, 62.87573 ], [ 7.19175, 62.97376 ], [ 7.56027, 63.07852 ], [ 7.80094, 63.09803 ], [ 7.81232, 63.0708 ], [ 7.76215, 63.01069 ], [ 7.7673, 62.97957 ], [ 8.01055, 62.93993 ], [ 8.20145, 62.82077 ], [ 8.21517, 62.83977 ], [ 7.99669, 63.00484 ], [ 7.98696, 63.04683 ], [ 8.09752, 63.06789 ], [ 8.35083, 62.91071 ], [ 8.43748, 62.88791 ], [ 8.42424, 62.95517 ], [ 8.26781, 63.03953 ], [ 8.17424, 63.13068 ], [ 8.00743, 63.18177 ], [ 8.39847, 63.27974 ], [ 8.52579, 63.35586 ], [ 8.75511, 63.42434 ], [ 8.87764, 63.35055 ], [ 8.82884, 63.26691 ], [ 8.8517, 63.2303 ], [ 8.83219, 63.20198 ], [ 8.81751, 63.19828 ], [ 8.76459, 63.18458 ], [ 8.88642, 63.11972 ], [ 9.14219, 63.13405 ], [ 9.16517, 63.17431 ], [ 9.33407, 63.20299 ], [ 9.36776, 63.19276 ], [ 9.46099, 63.16444 ], [ 9.44967, 63.07588 ], [ 9.48636, 63.00243 ], [ 9.44026, 62.94363 ], [ 9.43766, 62.83727 ], [ 9.36776, 62.81884 ], [ 8.98865, 62.71153 ], [ 9.21083, 62.55014 ], [ 9.16398, 62.43256 ], [ 9.06206, 62.37261 ] ] ], [ [ [ 8.19559, 63.39909 ], [ 8.20801, 63.35214 ], [ 8.23851, 63.35214 ], [ 8.24164, 63.32234 ], [ 8.20494, 63.30161 ], [ 8.18519, 63.34494 ], [ 8.16369, 63.34364 ], [ 8.15635, 63.3003 ], [ 8.09008, 63.31819 ], [ 8.09008, 63.29452 ], [ 7.9919, 63.28539 ], [ 7.93891, 63.34364 ], [ 7.81481, 63.31888 ], [ 7.82106, 63.34427 ], [ 7.79028, 63.36684 ], [ 7.78355, 63.40507 ], [ 7.95093, 63.44576 ], [ 7.97836, 63.4851 ], [ 8.09008, 63.46579 ], [ 8.19559, 63.39909 ] ] ], [ [ [ 7.60649, 63.1976 ], [ 7.55116, 63.1824 ], [ 7.53094, 63.19604 ], [ 7.56833, 63.22654 ], [ 7.6116, 63.21277 ], [ 7.60649, 63.1976 ] ] ], [ [ [ 7.32907, 62.65152 ], [ 7.23698, 62.64993 ], [ 7.21533, 62.66405 ], [ 7.2675, 62.68191 ], [ 7.33065, 62.66971 ], [ 7.32907, 62.65152 ] ] ], [ [ [ 6.95886, 62.82665 ], [ 6.89115, 62.77702 ], [ 6.79208, 62.80155 ], [ 6.81687, 62.84775 ], [ 6.9287, 62.85238 ], [ 6.95886, 62.82665 ] ] ], [ [ [ 6.93972, 62.73254 ], [ 6.92957, 62.70513 ], [ 6.67893, 62.66096 ], [ 6.65572, 62.67618 ], [ 6.69315, 62.69941 ], [ 6.67879, 62.73097 ], [ 6.70859, 62.74034 ], [ 6.74407, 62.7276 ], [ 6.9055, 62.74763 ], [ 6.93972, 62.73254 ] ] ], [ [ [ 6.64547, 62.66078 ], [ 6.59271, 62.65114 ], [ 6.57279, 62.66309 ], [ 6.61455, 62.69427 ], [ 6.63994, 62.69424 ], [ 6.64547, 62.66078 ] ] ], [ [ [ 6.49234, 62.75216 ], [ 6.45256, 62.72139 ], [ 6.41885, 62.74155 ], [ 6.44851, 62.78956 ], [ 6.49234, 62.75216 ] ] ], [ [ [ 6.43868, 62.6876 ], [ 6.3731, 62.68504 ], [ 6.35607, 62.70122 ], [ 6.36721, 62.71419 ], [ 6.43585, 62.71253 ], [ 6.43868, 62.6876 ] ] ], [ [ [ 6.33359, 62.6799 ], [ 6.332, 62.64722 ], [ 6.24938, 62.67873 ], [ 6.26804, 62.69424 ], [ 6.33359, 62.6799 ] ] ], [ [ [ 6.2629, 62.64425 ], [ 6.24965, 62.6317 ], [ 6.15724, 62.66775 ], [ 6.2019, 62.6945 ], [ 6.20812, 62.67423 ], [ 6.2629, 62.64425 ] ] ], [ [ [ 6.21904, 62.6221 ], [ 6.20886, 62.59775 ], [ 6.1436, 62.61368 ], [ 6.13296, 62.62893 ], [ 6.19219, 62.63635 ], [ 6.21904, 62.6221 ] ] ], [ [ [ 6.15573, 62.50396 ], [ 6.09634, 62.4959 ], [ 6.11406, 62.53686 ], [ 6.05546, 62.55974 ], [ 6.1192, 62.59926 ], [ 6.15573, 62.50396 ] ] ], [ [ [ 6.00161, 62.46431 ], [ 5.94064, 62.45351 ], [ 5.95118, 62.50074 ], [ 5.99389, 62.49505 ], [ 6.00161, 62.46431 ] ] ], [ [ [ 5.95138, 59.14283 ], [ 5.88902, 59.10232 ], [ 5.86899, 59.12332 ], [ 5.92696, 59.16027 ], [ 5.95138, 59.14283 ] ] ], [ [ [ 5.89763, 59.26967 ], [ 5.86661, 59.23949 ], [ 5.80798, 59.23229 ], [ 5.77026, 59.24996 ], [ 5.78815, 59.27027 ], [ 5.84173, 59.26118 ], [ 5.86386, 59.29009 ], [ 5.89763, 59.26967 ] ] ], [ [ [ 5.87192, 59.15048 ], [ 5.79401, 59.13713 ], [ 5.7681, 59.15493 ], [ 5.80814, 59.17232 ], [ 5.81143, 59.20497 ], [ 5.87894, 59.18705 ], [ 5.87192, 59.15048 ] ] ], [ [ [ 5.6042, 59.1434 ], [ 5.69951, 59.11673 ], [ 5.74544, 59.12568 ], [ 5.77623, 59.08222 ], [ 5.68746, 59.08819 ], [ 5.69843, 59.05474 ], [ 5.67045, 59.02913 ], [ 5.63808, 59.03843 ], [ 5.6042, 59.09625 ], [ 5.56416, 59.10842 ], [ 5.6042, 59.1434 ] ] ], [ [ [ 5.70522, 59.73736 ], [ 5.68333, 59.70314 ], [ 5.63557, 59.71792 ], [ 5.64854, 59.75136 ], [ 5.70522, 59.73736 ] ] ], [ [ [ 5.65287, 62.40079 ], [ 5.63614, 62.35949 ], [ 5.59015, 62.38854 ], [ 5.61548, 62.41979 ], [ 5.65287, 62.40079 ] ] ], [ [ [ 5.57295, 62.33375 ], [ 5.53284, 62.32784 ], [ 5.50646, 62.343 ], [ 5.5336, 62.37587 ], [ 5.57629, 62.35137 ], [ 5.57295, 62.33375 ] ] ], [ [ [ 5.4362, 62.27914 ], [ 5.44782, 62.23575 ], [ 5.39551, 62.23892 ], [ 5.37236, 62.26031 ], [ 5.4362, 62.27914 ] ] ], [ [ [ 5.43634, 62.20012 ], [ 5.3901, 62.17901 ], [ 5.35628, 62.21575 ], [ 5.36977, 62.23338 ], [ 5.43634, 62.20012 ] ] ], [ [ [ 5.42296, 59.06866 ], [ 5.41305, 59.02238 ], [ 5.36406, 59.05848 ], [ 5.38843, 59.08663 ], [ 5.42296, 59.06866 ] ] ], [ [ [ 5.27528, 60.01433 ], [ 5.25826, 59.99997 ], [ 5.2201, 60.00917 ], [ 5.20273, 59.9816 ], [ 5.14201, 59.9717 ], [ 5.12109, 59.99305 ], [ 5.20845, 60.01433 ], [ 5.20043, 60.04678 ], [ 5.22076, 60.06476 ], [ 5.20179, 60.10195 ], [ 5.22076, 60.12314 ], [ 5.29191, 60.08138 ], [ 5.27528, 60.01433 ] ] ], [ [ [ 5.14252, 60.14214 ], [ 5.19321, 60.10243 ], [ 5.17012, 60.0723 ], [ 5.13264, 60.11836 ], [ 5.08456, 60.10716 ], [ 5.05947, 60.1325 ], [ 5.09211, 60.14732 ], [ 5.14252, 60.14214 ] ] ], [ [ [ 5.11491, 61.5097 ], [ 5.11721, 61.47417 ], [ 5.04759, 61.47669 ], [ 5.04885, 61.50057 ], [ 5.11491, 61.5097 ] ] ], [ [ [ 5.09252, 59.87258 ], [ 5.06819, 59.87258 ], [ 5.04606, 59.89231 ], [ 5.07388, 59.92856 ], [ 5.11105, 59.88784 ], [ 5.09252, 59.87258 ] ] ], [ [ [ 5.08351, 60.04765 ], [ 5.08913, 59.99189 ], [ 5.03166, 60.01361 ], [ 5.05961, 60.06462 ], [ 5.08351, 60.04765 ] ] ], [ [ [ 4.89032, 61.20921 ], [ 5.01168, 61.17834 ], [ 5.05491, 61.19218 ], [ 5.07744, 61.12361 ], [ 5.03295, 61.1075 ], [ 4.90056, 61.051 ], [ 4.77217, 61.05089 ], [ 4.76755, 61.0945 ], [ 4.83115, 61.1075 ], [ 4.82517, 61.14391 ], [ 4.84182, 61.1617 ], [ 4.89032, 61.20921 ] ] ], [ [ [ 4.97606, 61.52208 ], [ 4.97079, 61.48577 ], [ 4.93063, 61.49326 ], [ 4.91827, 61.51883 ], [ 4.9404, 61.53772 ], [ 4.97606, 61.52208 ] ] ], [ [ [ 4.96963, 60.49101 ], [ 4.94159, 60.4306 ], [ 4.92338, 60.4422 ], [ 4.8597, 60.42763 ], [ 4.84963, 60.44882 ], [ 4.92064, 60.46913 ], [ 4.9389, 60.50516 ], [ 4.96963, 60.49101 ] ] ], [ [ [ 4.9298, 59.29869 ], [ 4.89847, 59.2819 ], [ 4.86891, 59.30296 ], [ 4.87524, 59.33155 ], [ 4.91675, 59.32691 ], [ 4.9298, 59.29869 ] ] ], [ [ [ 4.90729, 60.52372 ], [ 4.89249, 60.48976 ], [ 4.78174, 60.60055 ], [ 4.7979, 60.66101 ], [ 4.83661, 60.63033 ], [ 4.90729, 60.52372 ] ] ], [ [ [ 4.89177, 61.67738 ], [ 4.87032, 61.65756 ], [ 4.82439, 61.68345 ], [ 4.88086, 61.7165 ], [ 4.89177, 61.67738 ] ] ], [ [ [ 4.88394, 61.58594 ], [ 4.83894, 61.5559 ], [ 4.83231, 61.59738 ], [ 4.87211, 61.6267 ], [ 4.88394, 61.58594 ] ] ], [ [ [ 4.86647, 61.32476 ], [ 4.82251, 61.32292 ], [ 4.81022, 61.34945 ], [ 4.86559, 61.37574 ], [ 4.86647, 61.32476 ] ] ], [ [ [ 4.84721, 61.22233 ], [ 4.82198, 61.18133 ], [ 4.77329, 61.19332 ], [ 4.80615, 61.22971 ], [ 4.84721, 61.22233 ] ] ], [ [ [ 4.83675, 61.63041 ], [ 4.78492, 61.62239 ], [ 4.76646, 61.64352 ], [ 4.79057, 61.67874 ], [ 4.83675, 61.63041 ] ] ], [ [ [ 4.74137, 61.2876 ], [ 4.70125, 61.28757 ], [ 4.69317, 61.31267 ], [ 4.76758, 61.35276 ], [ 4.7953, 61.32666 ], [ 4.74137, 61.2876 ] ] ], [ [ [ 4.79257, 60.86989 ], [ 4.7372, 60.85622 ], [ 4.70945, 60.88124 ], [ 4.77841, 60.89913 ], [ 4.79257, 60.86989 ] ] ], [ [ [ 4.77559, 60.67149 ], [ 4.74348, 60.66016 ], [ 4.70805, 60.6889 ], [ 4.74869, 60.71856 ], [ 4.77559, 60.67149 ] ] ], [ [ [ 4.75816, 60.75688 ], [ 4.69843, 60.74367 ], [ 4.69414, 60.79095 ], [ 4.75391, 60.77717 ], [ 4.75816, 60.75688 ] ] ], [ [ [ 4.7357, 61.01765 ], [ 4.69224, 60.98731 ], [ 4.65038, 61.0474 ], [ 4.68466, 61.0954 ], [ 4.69862, 61.0954 ], [ 4.7357, 61.01765 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO0B", "NUTS_ID": "NO0B", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Jan Mayen and Svalbard", "geo": null, "time_2018_MEAN": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.34947, 80.08196 ], [ 31.90668, 80.06324 ], [ 31.85266, 80.08505 ], [ 31.8833, 80.10781 ], [ 32.98748, 80.23311 ], [ 33.14788, 80.24955 ], [ 33.22774, 80.23935 ], [ 33.24612, 80.21685 ], [ 32.98748, 80.17198 ], [ 32.34947, 80.08196 ] ] ], [ [ [ 30.23798, 78.98755 ], [ 30.17806, 78.96956 ], [ 30.12499, 78.97077 ], [ 30.09785, 78.99725 ], [ 30.10661, 79.00572 ], [ 30.23206, 79.00397 ], [ 30.23798, 78.98755 ] ] ], [ [ [ 28.64794, 78.96126 ], [ 28.91134, 78.94991 ], [ 28.94882, 78.95679 ], [ 28.99171, 78.9188 ], [ 29.10961, 78.90462 ], [ 29.33292, 78.89618 ], [ 29.50749, 78.90524 ], [ 29.66207, 78.91742 ], [ 29.671, 78.89763 ], [ 29.62243, 78.88866 ], [ 29.51999, 78.88793 ], [ 29.35507, 78.86415 ], [ 29.35378, 78.84612 ], [ 29.19215, 78.85591 ], [ 29.06524, 78.87054 ], [ 28.95587, 78.90279 ], [ 28.80527, 78.90903 ], [ 28.64211, 78.89444 ], [ 28.62557, 78.88046 ], [ 28.51065, 78.89237 ], [ 28.39037, 78.88171 ], [ 28.17509, 78.84357 ], [ 28.10421, 78.81484 ], [ 28.09341, 78.83231 ], [ 27.91326, 78.83813 ], [ 27.89774, 78.84875 ], [ 27.9059, 78.85822 ], [ 28.02846, 78.87343 ], [ 28.1444, 78.91309 ], [ 28.32967, 78.916 ], [ 28.41792, 78.92554 ], [ 28.46533, 78.95987 ], [ 28.64794, 78.96126 ] ] ], [ [ [ 28.11864, 80.04963 ], [ 28.03739, 80.043 ], [ 28.00649, 80.05177 ], [ 27.87146, 80.0684 ], [ 27.8104, 80.08667 ], [ 27.7691, 80.13353 ], [ 27.7023, 80.16828 ], [ 27.7009, 80.1793 ], [ 27.7431, 80.19822 ], [ 27.83679, 80.21415 ], [ 28.02929, 80.19437 ], [ 28.15446, 80.16328 ], [ 28.28996, 80.14317 ], [ 28.35155, 80.12652 ], [ 28.37894, 80.09343 ], [ 28.34976, 80.08347 ], [ 28.22015, 80.07194 ], [ 28.11864, 80.04963 ] ] ], [ [ [ 20.39585, 80.37734 ], [ 20.91705, 80.21938 ], [ 21.77139, 80.24438 ], [ 21.79956, 80.22223 ], [ 21.80452, 80.14567 ], [ 22.01527, 80.11613 ], [ 22.28427, 80.0201 ], [ 22.42362, 80.09367 ], [ 22.46633, 80.2662 ], [ 22.41498, 80.37422 ], [ 22.55595, 80.40076 ], [ 22.70144, 80.37891 ], [ 22.85484, 80.47438 ], [ 23.23952, 80.39332 ], [ 23.24678, 80.30382 ], [ 23.05045, 80.18972 ], [ 23.05498, 80.15797 ], [ 23.10117, 80.13902 ], [ 23.42756, 80.17657 ], [ 23.63288, 80.14828 ], [ 23.81989, 80.26751 ], [ 24.16414, 80.2855 ], [ 24.19553, 80.32173 ], [ 24.1946, 80.39398 ], [ 24.22344, 80.41231 ], [ 24.4329, 80.34833 ], [ 24.50965, 80.27379 ], [ 24.60771, 80.28597 ], [ 24.81408, 80.31982 ], [ 24.94288, 80.2643 ], [ 25.21177, 80.25952 ], [ 25.83981, 80.16791 ], [ 26.12576, 80.19177 ], [ 26.74164, 80.15895 ], [ 27.1457, 80.0396 ], [ 27.0558, 79.97832 ], [ 27.05001, 79.91837 ], [ 27.00963, 79.88981 ], [ 25.78606, 79.63058 ], [ 25.76356, 79.60293 ], [ 25.81603, 79.54858 ], [ 25.81179, 79.51051 ], [ 25.58923, 79.41349 ], [ 25.14558, 79.34574 ], [ 24.60771, 79.3564 ], [ 24.05372, 79.23847 ], [ 23.63488, 79.2288 ], [ 22.80802, 79.32348 ], [ 22.63139, 79.39125 ], [ 21.78801, 79.35586 ], [ 21.03947, 79.36347 ], [ 20.11726, 79.46833 ], [ 19.83751, 79.53193 ], [ 19.80572, 79.56537 ], [ 20.07541, 79.62261 ], [ 20.70119, 79.58496 ], [ 20.74847, 79.64584 ], [ 21.10986, 79.69795 ], [ 21.45661, 79.70454 ], [ 21.52585, 79.76873 ], [ 21.48463, 79.7883 ], [ 19.48566, 79.71916 ], [ 18.84501, 79.7246 ], [ 18.36134, 79.83433 ], [ 18.26222, 79.92203 ], [ 18.31616, 79.95168 ], [ 18.54105, 79.97714 ], [ 18.56326, 80.00913 ], [ 18.22512, 80.05054 ], [ 18.11216, 80.11535 ], [ 18.36783, 80.18041 ], [ 18.70895, 80.1867 ], [ 19.24237, 80.12915 ], [ 19.26341, 80.16336 ], [ 19.14233, 80.24358 ], [ 19.11398, 80.31155 ], [ 19.23892, 80.31985 ], [ 19.47731, 80.26273 ], [ 19.65514, 80.25326 ], [ 19.71738, 80.30152 ], [ 19.71155, 80.347 ], [ 19.54545, 80.39527 ], [ 19.52101, 80.44423 ], [ 19.64394, 80.48116 ], [ 19.95373, 80.5101 ], [ 20.11867, 80.42339 ], [ 20.39585, 80.37734 ] ] ], [ [ [ 26.75475, 78.64603 ], [ 26.72312, 78.63076 ], [ 26.68859, 78.63971 ], [ 26.69934, 78.65703 ], [ 26.47014, 78.70277 ], [ 26.46673, 78.72458 ], [ 26.42926, 78.74024 ], [ 26.40067, 78.7808 ], [ 26.41683, 78.79761 ], [ 26.50354, 78.81681 ], [ 26.61298, 78.80387 ], [ 26.64482, 78.76885 ], [ 26.7076, 78.75303 ], [ 26.75209, 78.731 ], [ 26.85644, 78.70488 ], [ 26.94088, 78.70014 ], [ 26.94678, 78.66837 ], [ 26.87703, 78.64747 ], [ 26.75475, 78.64603 ] ] ], [ [ [ 24.9621, 76.45072 ], [ 24.90361, 76.4454 ], [ 24.89031, 76.45736 ], [ 24.9076, 76.48262 ], [ 25.02059, 76.54909 ], [ 25.12296, 76.58499 ], [ 25.40266, 76.69898 ], [ 25.59733, 76.72698 ], [ 25.58893, 76.70233 ], [ 25.50138, 76.68354 ], [ 25.40742, 76.6494 ], [ 25.37622, 76.62868 ], [ 25.20671, 76.57568 ], [ 25.06048, 76.50389 ], [ 25.00996, 76.48927 ], [ 24.9621, 76.45072 ] ] ], [ [ [ 25.02863, 80.67885 ], [ 25.05165, 80.64287 ], [ 24.99975, 80.64406 ], [ 24.97328, 80.65803 ], [ 24.97831, 80.67565 ], [ 25.02863, 80.67885 ] ] ], [ [ [ 16.46837, 80.03504 ], [ 16.79681, 79.8922 ], [ 17.00964, 79.94282 ], [ 17.32033, 79.9275 ], [ 17.72384, 79.83948 ], [ 17.9174, 79.76007 ], [ 17.94258, 79.73526 ], [ 17.93392, 79.6947 ], [ 17.75803, 79.56952 ], [ 17.75315, 79.4094 ], [ 17.93, 79.44778 ], [ 18.07141, 79.56617 ], [ 18.15878, 79.60256 ], [ 18.55751, 79.56974 ], [ 18.82194, 79.41462 ], [ 18.80976, 79.33478 ], [ 18.75582, 79.26355 ], [ 18.77177, 79.24662 ], [ 18.97889, 79.1716 ], [ 19.47563, 79.16061 ], [ 19.66521, 79.15213 ], [ 20.04516, 79.01008 ], [ 20.09421, 79.01942 ], [ 20.12399, 79.07966 ], [ 20.20207, 79.11925 ], [ 20.59569, 79.1126 ], [ 20.69158, 79.05905 ], [ 20.68899, 79.04239 ], [ 20.54166, 79.01231 ], [ 20.51642, 78.9734 ], [ 21.0349, 78.86678 ], [ 21.48615, 78.82193 ], [ 21.51869, 78.74761 ], [ 21.42068, 78.66767 ], [ 21.42059, 78.63596 ], [ 21.97583, 78.57327 ], [ 22.19075, 78.41751 ], [ 22.13092, 78.28351 ], [ 21.93973, 78.25232 ], [ 21.91436, 78.22178 ], [ 22.34589, 78.20281 ], [ 22.9551, 78.22561 ], [ 23.17771, 78.16798 ], [ 23.17343, 78.05827 ], [ 23.39479, 77.94438 ], [ 23.72498, 77.85903 ], [ 24.0476, 77.86921 ], [ 24.2429, 77.82273 ], [ 24.20184, 77.76286 ], [ 24.24642, 77.68884 ], [ 24.1485, 77.64007 ], [ 24.1029, 77.58132 ], [ 23.81872, 77.54969 ], [ 23.58299, 77.46315 ], [ 22.72656, 77.26132 ], [ 22.62117, 77.29615 ], [ 22.72632, 77.49178 ], [ 22.62474, 77.57015 ], [ 22.48548, 77.60197 ], [ 21.76903, 77.49943 ], [ 20.90328, 77.46331 ], [ 20.90308, 77.55567 ], [ 21.12772, 77.62475 ], [ 21.44476, 77.89983 ], [ 20.93126, 78.05279 ], [ 20.88796, 78.09472 ], [ 21.34596, 78.20169 ], [ 21.34395, 78.21942 ], [ 20.71555, 78.22207 ], [ 20.68785, 78.3145 ], [ 20.59131, 78.40233 ], [ 20.32123, 78.49143 ], [ 20.35261, 78.52775 ], [ 21.00636, 78.60651 ], [ 21.0237, 78.6303 ], [ 20.93188, 78.66974 ], [ 20.75351, 78.68359 ], [ 20.52502, 78.63696 ], [ 19.92764, 78.59907 ], [ 19.69607, 78.49005 ], [ 19.0392, 78.44419 ], [ 18.98694, 78.31674 ], [ 19.06129, 78.20239 ], [ 19.04138, 78.12173 ], [ 18.92236, 78.05798 ], [ 18.59462, 78.03184 ], [ 18.4758, 77.97832 ], [ 18.42127, 77.89716 ], [ 18.42344, 77.73368 ], [ 18.22337, 77.5315 ], [ 17.81442, 77.49148 ], [ 17.61244, 77.40374 ], [ 17.27426, 77.06492 ], [ 17.20708, 76.94 ], [ 17.13269, 76.87373 ], [ 17.15504, 76.74328 ], [ 17.10168, 76.67088 ], [ 16.75257, 76.59261 ], [ 16.40562, 76.59648 ], [ 16.30108, 76.63655 ], [ 16.19611, 76.75205 ], [ 15.65111, 76.82735 ], [ 15.53056, 76.88934 ], [ 15.69999, 76.97622 ], [ 15.69612, 76.9932 ], [ 15.2319, 77.00484 ], [ 15.05211, 77.04928 ], [ 14.91642, 77.13234 ], [ 14.37075, 77.20079 ], [ 14.02271, 77.37305 ], [ 13.96427, 77.50578 ], [ 14.04772, 77.57583 ], [ 14.2969, 77.60596 ], [ 14.68925, 77.56254 ], [ 15.15474, 77.57499 ], [ 15.1519, 77.59532 ], [ 14.95287, 77.632 ], [ 14.89898, 77.67014 ], [ 14.90267, 77.68634 ], [ 15.73065, 77.82693 ], [ 15.72976, 77.84475 ], [ 15.44528, 77.86438 ], [ 14.62992, 77.77409 ], [ 14.14497, 77.77775 ], [ 13.90739, 77.75163 ], [ 13.78427, 77.77408 ], [ 13.69111, 77.8262 ], [ 13.61226, 78.00005 ], [ 13.89527, 78.08902 ], [ 14.13211, 78.06108 ], [ 14.29253, 78.10423 ], [ 14.93258, 78.1275 ], [ 15.29684, 78.22471 ], [ 15.53507, 78.24193 ], [ 15.64809, 78.30528 ], [ 15.86466, 78.35027 ], [ 16.18757, 78.36571 ], [ 16.52798, 78.3432 ], [ 16.76597, 78.37001 ], [ 16.75712, 78.39884 ], [ 16.44869, 78.45855 ], [ 16.62846, 78.66274 ], [ 16.50189, 78.67267 ], [ 16.20899, 78.55204 ], [ 15.874, 78.48714 ], [ 15.49175, 78.46402 ], [ 15.32266, 78.49984 ], [ 15.2529, 78.55015 ], [ 15.3838, 78.66242 ], [ 15.37538, 78.69156 ], [ 15.3201, 78.70061 ], [ 14.97391, 78.60713 ], [ 14.65286, 78.60461 ], [ 14.56097, 78.49674 ], [ 14.66099, 78.42683 ], [ 14.66211, 78.3904 ], [ 14.35003, 78.37841 ], [ 14.25668, 78.30114 ], [ 14.15956, 78.27403 ], [ 13.97487, 78.26554 ], [ 13.76809, 78.2087 ], [ 13.00804, 78.21255 ], [ 12.77454, 78.343 ], [ 12.43388, 78.4559 ], [ 12.31965, 78.54001 ], [ 12.02314, 78.61114 ], [ 11.77458, 78.71477 ], [ 11.71207, 78.76624 ], [ 11.69163, 78.849 ], [ 11.46712, 78.9292 ], [ 11.53326, 78.97108 ], [ 11.95217, 78.96048 ], [ 11.95686, 78.97727 ], [ 11.79879, 79.06767 ], [ 11.8855, 79.21918 ], [ 11.70945, 79.20743 ], [ 11.45759, 79.13179 ], [ 11.21979, 79.13239 ], [ 10.89634, 79.32834 ], [ 10.84806, 79.4644 ], [ 10.75883, 79.54682 ], [ 10.83008, 79.61894 ], [ 10.81324, 79.6989 ], [ 10.84064, 79.74903 ], [ 10.93864, 79.7436 ], [ 11.13268, 79.65189 ], [ 11.24491, 79.645 ], [ 11.27311, 79.66241 ], [ 11.24165, 79.72614 ], [ 11.26207, 79.75953 ], [ 11.49768, 79.78837 ], [ 11.63602, 79.84158 ], [ 11.82556, 79.82299 ], [ 12.08255, 79.69603 ], [ 12.21837, 79.6796 ], [ 12.27612, 79.70086 ], [ 12.2186, 79.77678 ], [ 12.27868, 79.82589 ], [ 12.67279, 79.7697 ], [ 13.78243, 79.86214 ], [ 13.87271, 79.83785 ], [ 13.90491, 79.78235 ], [ 13.71793, 79.70377 ], [ 13.07187, 79.68678 ], [ 12.73452, 79.58878 ], [ 12.7371, 79.57117 ], [ 13.36562, 79.57631 ], [ 13.38591, 79.55491 ], [ 13.3106, 79.50953 ], [ 13.31188, 79.47532 ], [ 13.65948, 79.45483 ], [ 13.83244, 79.38864 ], [ 13.92594, 79.3069 ], [ 13.98678, 79.29087 ], [ 14.07014, 79.35713 ], [ 13.94669, 79.4823 ], [ 13.96203, 79.56449 ], [ 14.4467, 79.76793 ], [ 14.69683, 79.78117 ], [ 14.92429, 79.72984 ], [ 15.18568, 79.61138 ], [ 15.45147, 79.37035 ], [ 15.65932, 79.25593 ], [ 15.68264, 79.14162 ], [ 15.87462, 79.13805 ], [ 16.17741, 78.98214 ], [ 16.38525, 78.93913 ], [ 16.3743, 79.00514 ], [ 15.95699, 79.32559 ], [ 15.66623, 79.78153 ], [ 15.73488, 79.85905 ], [ 15.96799, 79.88519 ], [ 15.99687, 79.9605 ], [ 16.06152, 80.01076 ], [ 16.33845, 80.05235 ], [ 16.46837, 80.03504 ] ] ], [ [ [ 24.11492, 80.46003 ], [ 24.07517, 80.45949 ], [ 24.06111, 80.48494 ], [ 24.07347, 80.50367 ], [ 24.12186, 80.49374 ], [ 24.11492, 80.46003 ] ] ], [ [ [ 22.45923, 77.37568 ], [ 22.41263, 77.37169 ], [ 22.4048, 77.3901 ], [ 22.42335, 77.41592 ], [ 22.47096, 77.40358 ], [ 22.45923, 77.37568 ] ] ], [ [ [ 21.45401, 80.346 ], [ 21.39256, 80.33532 ], [ 21.37652, 80.34982 ], [ 21.42592, 80.37384 ], [ 21.46109, 80.37182 ], [ 21.45401, 80.346 ] ] ], [ [ [ 21.28092, 80.67514 ], [ 21.11608, 80.65222 ], [ 21.07125, 80.68042 ], [ 21.07908, 80.6906 ], [ 21.15969, 80.70084 ], [ 21.28959, 80.70648 ], [ 21.28092, 80.67514 ] ] ], [ [ [ 21.24365, 80.26794 ], [ 21.19927, 80.26186 ], [ 21.18592, 80.28392 ], [ 21.20352, 80.30451 ], [ 21.25036, 80.29932 ], [ 21.24365, 80.26794 ] ] ], [ [ [ 20.89645, 80.69436 ], [ 20.71963, 80.61575 ], [ 20.60759, 80.64612 ], [ 20.60103, 80.65443 ], [ 20.60982, 80.66363 ], [ 20.76249, 80.66543 ], [ 20.80383, 80.7123 ], [ 20.94078, 80.72866 ], [ 20.9846, 80.7156 ], [ 20.97678, 80.69516 ], [ 20.89645, 80.69436 ] ] ], [ [ [ 20.75845, 80.70895 ], [ 20.68348, 80.70337 ], [ 20.59301, 80.74888 ], [ 20.62722, 80.76427 ], [ 20.73111, 80.74019 ], [ 20.75845, 80.70895 ] ] ], [ [ [ 20.29776, 80.486 ], [ 20.23448, 80.48596 ], [ 20.2221, 80.499 ], [ 20.25216, 80.51965 ], [ 20.29814, 80.51328 ], [ 20.29776, 80.486 ] ] ], [ [ [ 20.02882, 79.36851 ], [ 20.13688, 79.34051 ], [ 20.12542, 79.32327 ], [ 20.06691, 79.34031 ], [ 19.98676, 79.35056 ], [ 19.88635, 79.35133 ], [ 19.74556, 79.33879 ], [ 19.6814, 79.33996 ], [ 19.63637, 79.35981 ], [ 19.65668, 79.37277 ], [ 19.6531, 79.40835 ], [ 19.71521, 79.41102 ], [ 19.93734, 79.38427 ], [ 20.02882, 79.36851 ] ] ], [ [ [ 20.13581, 79.26712 ], [ 20.1156, 79.24382 ], [ 20.04423, 79.24593 ], [ 19.99212, 79.22715 ], [ 19.95391, 79.24624 ], [ 19.98085, 79.26688 ], [ 19.99104, 79.30285 ], [ 20.10312, 79.29909 ], [ 20.13581, 79.26712 ] ] ], [ [ [ 19.80811, 80.62326 ], [ 19.75192, 80.60159 ], [ 19.72995, 80.62635 ], [ 19.78665, 80.65184 ], [ 19.80811, 80.62326 ] ] ], [ [ [ 19.57793, 79.41817 ], [ 19.50544, 79.41691 ], [ 19.51286, 79.44727 ], [ 19.59, 79.4411 ], [ 19.57793, 79.41817 ] ] ], [ [ [ 19.16107, 74.3691 ], [ 19.06099, 74.34433 ], [ 18.84546, 74.41786 ], [ 18.77932, 74.46358 ], [ 18.80485, 74.48816 ], [ 19.09019, 74.5117 ], [ 19.24081, 74.46827 ], [ 19.2547, 74.43969 ], [ 19.16107, 74.3691 ] ] ], [ [ [ 18.5271, 80.32086 ], [ 18.59281, 80.29876 ], [ 18.62334, 80.33611 ], [ 18.65073, 80.33552 ], [ 18.6504, 80.30522 ], [ 18.62398, 80.30212 ], [ 18.5991, 80.26347 ], [ 18.45025, 80.25532 ], [ 18.3855, 80.24263 ], [ 18.36082, 80.27183 ], [ 18.25095, 80.27556 ], [ 18.22688, 80.28694 ], [ 18.06665, 80.29278 ], [ 18.11065, 80.35139 ], [ 18.16746, 80.3662 ], [ 18.3284, 80.37895 ], [ 18.37866, 80.37794 ], [ 18.44101, 80.36266 ], [ 18.51499, 80.3585 ], [ 18.5271, 80.32086 ] ] ], [ [ [ 16.62857, 76.49693 ], [ 16.62894, 76.46746 ], [ 16.55487, 76.48077 ], [ 16.54635, 76.5054 ], [ 16.55827, 76.51353 ], [ 16.62857, 76.49693 ] ] ], [ [ [ 14.50782, 80.02007 ], [ 14.4363, 80.00885 ], [ 14.43086, 80.03853 ], [ 14.50125, 80.04569 ], [ 14.50782, 80.02007 ] ] ], [ [ [ 10.96248, 78.77421 ], [ 11.03861, 78.76578 ], [ 11.11249, 78.77076 ], [ 11.16555, 78.74695 ], [ 11.16774, 78.73145 ], [ 11.07819, 78.71473 ], [ 11.06111, 78.68547 ], [ 11.14983, 78.67058 ], [ 11.17823, 78.65479 ], [ 11.16728, 78.62503 ], [ 11.24744, 78.62133 ], [ 11.24513, 78.5979 ], [ 11.29545, 78.57482 ], [ 11.30632, 78.54779 ], [ 11.45702, 78.54847 ], [ 11.47748, 78.51392 ], [ 11.53345, 78.49279 ], [ 11.67368, 78.45229 ], [ 11.88144, 78.44697 ], [ 11.86222, 78.40413 ], [ 11.94855, 78.36689 ], [ 11.97719, 78.33591 ], [ 12.08634, 78.28943 ], [ 12.08016, 78.26994 ], [ 12.14841, 78.22891 ], [ 12.14542, 78.2067 ], [ 11.95502, 78.2301 ], [ 11.92065, 78.22611 ], [ 11.84954, 78.24019 ], [ 11.81188, 78.27272 ], [ 11.81936, 78.30558 ], [ 11.66693, 78.33898 ], [ 11.57453, 78.39456 ], [ 11.47061, 78.41131 ], [ 11.37403, 78.43431 ], [ 11.30551, 78.45751 ], [ 11.15993, 78.4405 ], [ 11.03523, 78.47602 ], [ 10.97669, 78.53546 ], [ 10.9815, 78.55576 ], [ 10.94542, 78.56088 ], [ 10.92525, 78.58499 ], [ 10.82796, 78.62961 ], [ 10.82832, 78.64487 ], [ 10.74645, 78.66881 ], [ 10.6817, 78.71976 ], [ 10.63027, 78.73174 ], [ 10.54055, 78.77286 ], [ 10.50658, 78.79954 ], [ 10.54408, 78.82987 ], [ 10.53925, 78.86359 ], [ 10.51037, 78.88435 ], [ 10.54385, 78.90376 ], [ 10.601, 78.89327 ], [ 10.74102, 78.88757 ], [ 10.85349, 78.87173 ], [ 10.97801, 78.8416 ], [ 10.9803, 78.82506 ], [ 10.92027, 78.80964 ], [ 10.92433, 78.78904 ], [ 10.96248, 78.77421 ] ] ], [ [ [ 11.52411, 79.8397 ], [ 11.47348, 79.83728 ], [ 11.4546, 79.85401 ], [ 11.46658, 79.86739 ], [ 11.54596, 79.86465 ], [ 11.52411, 79.8397 ] ] ], [ [ [ 11.36118, 79.86448 ], [ 11.3683, 79.83705 ], [ 11.31117, 79.83828 ], [ 11.28, 79.85364 ], [ 11.29875, 79.86712 ], [ 11.36118, 79.86448 ] ] ], [ [ [ -7.93675, 71.14722 ], [ -7.99919, 71.11328 ], [ -7.99581, 71.02133 ], [ -8.056, 71.00579 ], [ -8.33834, 70.97823 ], [ -8.49693, 70.97007 ], [ -8.62458, 70.94868 ], [ -8.70291, 70.92733 ], [ -8.81226, 70.87521 ], [ -8.92696, 70.84853 ], [ -8.98676, 70.82777 ], [ -9.03142, 70.82891 ], [ -9.08228, 70.86484 ], [ -9.05357, 70.87989 ], [ -9.00241, 70.88004 ], [ -8.98386, 70.8993 ], [ -8.86376, 70.9382 ], [ -8.77446, 70.9431 ], [ -8.70278, 70.96011 ], [ -8.68226, 70.97836 ], [ -8.56578, 70.98434 ], [ -8.49954, 70.99677 ], [ -8.45529, 71.02153 ], [ -8.45385, 71.04125 ], [ -8.38514, 71.08723 ], [ -8.28372, 71.12356 ], [ -8.16051, 71.1458 ], [ -8.10553, 71.14551 ], [ -8.07466, 71.16083 ], [ -7.96303, 71.16179 ], [ -7.93675, 71.14722 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR05", "NUTS_ID": "HR05", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Grad Zagreb", "geo": "HR05", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.95677, 45.90159 ], [ 16.15481, 45.96877 ], [ 16.21654, 45.86147 ], [ 16.19716, 45.79167 ], [ 16.12362, 45.79414 ], [ 16.03832, 45.75411 ], [ 15.91958, 45.62305 ], [ 15.7839, 45.70617 ], [ 15.87059, 45.74138 ], [ 15.83475, 45.83821 ], [ 15.95677, 45.90159 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "HR06", "NUTS_ID": "HR06", "LEVL_CODE": 2, "CNTR_CODE": "HR", "NUTS_NAME": "Sjeverna Hrvatska", "geo": "HR06", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.29433, 45.98854 ], [ 17.20205, 45.97788 ], [ 17.12205, 45.88336 ], [ 16.99701, 45.93796 ], [ 16.85212, 46.08121 ], [ 16.73028, 46.03615 ], [ 16.7022, 45.92312 ], [ 16.69739, 45.84739 ], [ 16.51489, 45.77294 ], [ 16.5155, 45.72787 ], [ 16.60992, 45.67036 ], [ 16.47842, 45.58029 ], [ 16.35306, 45.6344 ], [ 16.24253, 45.60394 ], [ 16.14833, 45.63186 ], [ 16.0772, 45.56809 ], [ 16.09773, 45.51715 ], [ 16.0553, 45.47837 ], [ 15.92211, 45.47859 ], [ 15.88087, 45.53555 ], [ 15.77072, 45.54074 ], [ 15.69005, 45.59823 ], [ 15.53395, 45.60383 ], [ 15.33129, 45.76285 ], [ 15.40443, 45.79272 ], [ 15.57101, 45.84603 ], [ 15.6729, 45.83614 ], [ 15.70641, 45.97526 ], [ 15.71547, 46.0209 ], [ 15.70371, 46.05864 ], [ 15.62726, 46.08595 ], [ 15.60467, 46.14298 ], [ 15.65528, 46.21439 ], [ 15.77072, 46.21023 ], [ 15.79463, 46.23375 ], [ 15.79148, 46.25933 ], [ 15.87349, 46.27932 ], [ 16.00532, 46.31221 ], [ 16.10859, 46.39664 ], [ 16.30155, 46.37829 ], [ 16.24215, 46.49008 ], [ 16.37983, 46.54031 ], [ 16.59681, 46.4759 ], [ 16.85476, 46.35044 ], [ 16.87604, 46.3206 ], [ 16.95796, 46.23601 ], [ 17.1624, 46.1623 ], [ 17.29433, 45.98854 ] ], [ [ 16.15481, 45.96877 ], [ 15.95677, 45.90159 ], [ 15.83475, 45.83821 ], [ 15.87059, 45.74138 ], [ 15.7839, 45.70617 ], [ 15.91958, 45.62305 ], [ 16.03832, 45.75411 ], [ 16.12362, 45.79414 ], [ 16.19716, 45.79167 ], [ 16.21654, 45.86147 ], [ 16.15481, 45.96877 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO02", "NUTS_ID": "NO02", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Innlandet", "geo": "NO02", "time_2018_MEAN": 81.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.25466, 62.33102 ], [ 12.29937, 62.26749 ], [ 12.1454, 61.73032 ], [ 12.41582, 61.56914 ], [ 12.57907, 61.55968 ], [ 12.85633, 61.3642 ], [ 12.82603, 61.24881 ], [ 12.71493, 61.1447 ], [ 12.69371, 61.09455 ], [ 12.67018, 61.05598 ], [ 12.23541, 61.00964 ], [ 12.32496, 60.89494 ], [ 12.39483, 60.73977 ], [ 12.60292, 60.51042 ], [ 12.5998, 60.40634 ], [ 12.50411, 60.31191 ], [ 12.53572, 60.18985 ], [ 12.49383, 60.09297 ], [ 12.34328, 59.97063 ], [ 12.17583, 59.89547 ], [ 12.05913, 59.89534 ], [ 11.97052, 59.89524 ], [ 11.91774, 59.87326 ], [ 11.83973, 59.84077 ], [ 11.82948, 59.87326 ], [ 11.80373, 59.95488 ], [ 11.81691, 60.04436 ], [ 11.5893, 60.16941 ], [ 11.5869, 60.26848 ], [ 11.43889, 60.34323 ], [ 11.34235, 60.45321 ], [ 11.22386, 60.50236 ], [ 11.20466, 60.56604 ], [ 11.15399, 60.60515 ], [ 11.08728, 60.5234 ], [ 10.92894, 60.47952 ], [ 10.70791, 60.50978 ], [ 10.71179, 60.43606 ], [ 10.8697, 60.40848 ], [ 10.92381, 60.35217 ], [ 10.87805, 60.31136 ], [ 10.36628, 60.32098 ], [ 10.38849, 60.37523 ], [ 10.33887, 60.36614 ], [ 10.2612, 60.39362 ], [ 10.20208, 60.3923 ], [ 10.1978, 60.3917 ], [ 10.15096, 60.51882 ], [ 10.0428, 60.62337 ], [ 9.94615, 60.63182 ], [ 9.8626, 60.57387 ], [ 9.81645, 60.55403 ], [ 9.80646, 60.45706 ], [ 9.63367, 60.49653 ], [ 9.59182, 60.53483 ], [ 9.45191, 60.53837 ], [ 9.36776, 60.65281 ], [ 9.29077, 60.75752 ], [ 8.87938, 60.89459 ], [ 8.65747, 60.93672 ], [ 8.56459, 60.99926 ], [ 8.31495, 61.08308 ], [ 8.2517, 61.07394 ], [ 8.19862, 61.0954 ], [ 8.17737, 61.1075 ], [ 8.08692, 61.15898 ], [ 8.05489, 61.22228 ], [ 8.23468, 61.32783 ], [ 8.16446, 61.37556 ], [ 8.15598, 61.41583 ], [ 8.30621, 61.45061 ], [ 8.27529, 61.51548 ], [ 8.21306, 61.54278 ], [ 8.10355, 61.52693 ], [ 7.95921, 61.55773 ], [ 7.90346, 61.64181 ], [ 7.90003, 61.71731 ], [ 7.85611, 61.73813 ], [ 7.52323, 61.73373 ], [ 7.41964, 61.85604 ], [ 7.38943, 61.98543 ], [ 7.34911, 62.00768 ], [ 7.42347, 62.08857 ], [ 7.58956, 62.07145 ], [ 7.61488, 62.12792 ], [ 7.737, 62.18198 ], [ 7.98147, 62.18112 ], [ 8.15163, 62.30116 ], [ 8.26189, 62.34465 ], [ 9.06206, 62.37261 ], [ 9.36776, 62.30807 ], [ 9.5924, 62.26064 ], [ 9.79246, 62.28793 ], [ 9.8626, 62.35523 ], [ 9.91387, 62.35119 ], [ 9.96584, 62.39765 ], [ 10.08495, 62.42984 ], [ 10.01613, 62.56503 ], [ 10.17171, 62.69058 ], [ 10.74056, 62.6534 ], [ 10.90848, 62.6949 ], [ 11.14154, 62.65254 ], [ 11.26411, 62.53471 ], [ 11.4355, 62.47343 ], [ 11.56069, 62.37644 ], [ 11.70968, 62.35171 ], [ 11.78828, 62.3779 ], [ 11.96097, 62.36182 ], [ 12.05913, 62.33571 ], [ 12.13708, 62.31498 ], [ 12.25466, 62.33102 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO06", "NUTS_ID": "NO06", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Trøndelag", "geo": "NO06", "time_2018_MEAN": 83.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.97605, 65.0726 ], [ 12.04611, 65.06245 ], [ 12.09054, 65.01034 ], [ 12.22876, 64.97401 ], [ 12.53934, 64.9795 ], [ 12.69049, 64.94739 ], [ 12.88988, 64.98334 ], [ 12.96629, 65.04383 ], [ 13.14473, 65.11036 ], [ 13.22551, 65.11096 ], [ 14.32599, 65.11892 ], [ 13.66659, 64.58895 ], [ 14.11167, 64.45377 ], [ 14.13015, 64.33229 ], [ 14.13653, 64.29042 ], [ 14.14119, 64.25981 ], [ 14.15062, 64.19781 ], [ 14.04789, 64.09291 ], [ 13.9961, 64.04005 ], [ 13.97733, 64.02088 ], [ 13.77688, 64.04005 ], [ 13.22399, 64.09291 ], [ 13.21461, 64.09381 ], [ 13.20965, 64.09291 ], [ 12.9176, 64.04005 ], [ 12.8275, 64.02374 ], [ 12.68163, 63.97053 ], [ 12.53076, 63.85748 ], [ 12.45552, 63.8039 ], [ 12.16081, 63.59402 ], [ 12.19968, 63.46937 ], [ 12.05913, 63.33918 ], [ 11.98553, 63.271 ], [ 12.05246, 63.18344 ], [ 12.19668, 63.00713 ], [ 12.09192, 62.90066 ], [ 12.12505, 62.74872 ], [ 12.07306, 62.60172 ], [ 12.25466, 62.33102 ], [ 12.13708, 62.31498 ], [ 12.05913, 62.33571 ], [ 11.96097, 62.36182 ], [ 11.78828, 62.3779 ], [ 11.70968, 62.35171 ], [ 11.56069, 62.37644 ], [ 11.4355, 62.47343 ], [ 11.26411, 62.53471 ], [ 11.14154, 62.65254 ], [ 10.90848, 62.6949 ], [ 10.74056, 62.6534 ], [ 10.17171, 62.69058 ], [ 10.01613, 62.56503 ], [ 10.08495, 62.42984 ], [ 9.96584, 62.39765 ], [ 9.91387, 62.35119 ], [ 9.8626, 62.35523 ], [ 9.79246, 62.28793 ], [ 9.5924, 62.26064 ], [ 9.36776, 62.30807 ], [ 9.06206, 62.37261 ], [ 9.16398, 62.43256 ], [ 9.21083, 62.55014 ], [ 8.98865, 62.71153 ], [ 9.36776, 62.81884 ], [ 9.43766, 62.83727 ], [ 9.44026, 62.94363 ], [ 9.48636, 63.00243 ], [ 9.44967, 63.07588 ], [ 9.46099, 63.16444 ], [ 9.36776, 63.19276 ], [ 9.33407, 63.20299 ], [ 9.16517, 63.17431 ], [ 9.14219, 63.13405 ], [ 8.88642, 63.11972 ], [ 8.76459, 63.18458 ], [ 8.81751, 63.19828 ], [ 8.83219, 63.20198 ], [ 8.8517, 63.2303 ], [ 8.82884, 63.26691 ], [ 8.87764, 63.35055 ], [ 8.75511, 63.42434 ], [ 8.8861, 63.41818 ], [ 9.05209, 63.4533 ], [ 9.15796, 63.38627 ], [ 9.10584, 63.31751 ], [ 9.11888, 63.30103 ], [ 9.25365, 63.35683 ], [ 9.20402, 63.40453 ], [ 9.2134, 63.44519 ], [ 9.17583, 63.48179 ], [ 9.19892, 63.50342 ], [ 9.36776, 63.53371 ], [ 9.7102, 63.62619 ], [ 9.94354, 63.43565 ], [ 9.90544, 63.32935 ], [ 10.14309, 63.33417 ], [ 10.11003, 63.39741 ], [ 10.21921, 63.44564 ], [ 10.85359, 63.43909 ], [ 10.77313, 63.6091 ], [ 10.92985, 63.67957 ], [ 11.18802, 63.73074 ], [ 11.34826, 63.79786 ], [ 11.32394, 63.88357 ], [ 11.19008, 63.89645 ], [ 11.25571, 63.99782 ], [ 11.19082, 64.00332 ], [ 11.05896, 63.94966 ], [ 10.99409, 63.82687 ], [ 10.87961, 63.73286 ], [ 10.17032, 63.52613 ], [ 9.96601, 63.52098 ], [ 9.85115, 63.62161 ], [ 9.87528, 63.7161 ], [ 9.61695, 63.70119 ], [ 9.62611, 63.77643 ], [ 9.96123, 63.93143 ], [ 9.989, 64.04005 ], [ 9.98773, 64.06244 ], [ 10.09717, 64.09291 ], [ 10.12624, 64.10101 ], [ 10.22329, 64.20238 ], [ 10.39813, 64.29042 ], [ 10.48129, 64.33229 ], [ 10.51422, 64.37052 ], [ 10.49365, 64.40883 ], [ 10.5104, 64.42929 ], [ 10.63694, 64.46298 ], [ 10.7216, 64.5315 ], [ 10.8991, 64.53008 ], [ 10.9748, 64.58357 ], [ 11.08581, 64.56491 ], [ 11.11268, 64.62425 ], [ 11.23995, 64.67149 ], [ 11.31019, 64.65963 ], [ 11.29284, 64.58995 ], [ 11.33076, 64.57069 ], [ 11.60606, 64.78851 ], [ 11.56643, 64.80537 ], [ 11.38609, 64.77057 ], [ 11.23652, 64.83945 ], [ 10.86617, 64.85504 ], [ 10.78415, 64.88673 ], [ 10.76373, 64.93274 ], [ 10.88433, 64.97449 ], [ 11.06971, 64.97244 ], [ 11.27288, 64.92419 ], [ 11.48599, 64.95288 ], [ 11.73932, 65.02386 ], [ 11.93876, 65.14892 ], [ 11.93334, 65.11909 ], [ 11.92404, 65.06785 ], [ 11.9468, 65.07355 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.71181, 65.062 ], [ 11.6495, 65.03993 ], [ 11.63574, 65.0602 ], [ 11.60736, 65.04426 ], [ 11.54409, 65.03614 ], [ 11.51183, 65.06953 ], [ 11.5769, 65.10778 ], [ 11.68812, 65.11995 ], [ 11.73501, 65.13709 ], [ 11.74072, 65.08506 ], [ 11.71181, 65.062 ] ] ], [ [ [ 11.22179, 63.80382 ], [ 11.19702, 63.77758 ], [ 11.15221, 63.80382 ], [ 11.19903, 63.82711 ], [ 11.23099, 63.82026 ], [ 11.22179, 63.80382 ] ] ], [ [ [ 11.14871, 65.01707 ], [ 11.10963, 64.99 ], [ 11.06612, 65.02332 ], [ 11.08692, 65.04058 ], [ 11.14871, 65.01707 ] ] ], [ [ [ 11.12328, 63.78392 ], [ 11.03514, 63.74407 ], [ 11.00748, 63.75249 ], [ 11.05475, 63.80011 ], [ 11.11676, 63.79969 ], [ 11.12328, 63.78392 ] ] ], [ [ [ 10.88339, 64.55903 ], [ 10.86353, 64.54648 ], [ 10.85132, 64.56481 ], [ 10.86364, 64.5814 ], [ 10.88339, 64.55903 ] ] ], [ [ [ 10.84484, 64.56453 ], [ 10.81055, 64.55995 ], [ 10.78023, 64.57741 ], [ 10.7992, 64.60139 ], [ 10.82924, 64.61006 ], [ 10.84484, 64.56453 ] ] ], [ [ [ 10.81977, 64.76234 ], [ 10.783, 64.72025 ], [ 10.74422, 64.73474 ], [ 10.79576, 64.77832 ], [ 10.81977, 64.76234 ] ] ], [ [ [ 10.56827, 64.80123 ], [ 10.5149, 64.77314 ], [ 10.48661, 64.8005 ], [ 10.54019, 64.82277 ], [ 10.56827, 64.80123 ] ] ], [ [ [ 9.90391, 63.99575 ], [ 9.84544, 63.99132 ], [ 9.84201, 64.03326 ], [ 9.86061, 64.04005 ], [ 9.88916, 64.05046 ], [ 9.9074, 64.04005 ], [ 9.93632, 64.02353 ], [ 9.90391, 63.99575 ] ] ], [ [ [ 9.45015, 63.80364 ], [ 9.39777, 63.77639 ], [ 9.38857, 63.78536 ], [ 9.39062, 63.80364 ], [ 9.39441, 63.82055 ], [ 9.42446, 63.83332 ], [ 9.45015, 63.80364 ] ] ], [ [ [ 9.44982, 63.67823 ], [ 9.42767, 63.6481 ], [ 9.37441, 63.66772 ], [ 9.41925, 63.70044 ], [ 9.44982, 63.67823 ] ] ], [ [ [ 9.22619, 64.03994 ], [ 9.21897, 64.01782 ], [ 9.16381, 64.02833 ], [ 9.1816, 64.07556 ], [ 9.22619, 64.03994 ] ] ], [ [ [ 8.69227, 63.67582 ], [ 8.67949, 63.62857 ], [ 8.82517, 63.65909 ], [ 9.01503, 63.6224 ], [ 9.05887, 63.66955 ], [ 9.14945, 63.66475 ], [ 9.15715, 63.64016 ], [ 9.11104, 63.60823 ], [ 9.16664, 63.56261 ], [ 9.13022, 63.48048 ], [ 9.07194, 63.51294 ], [ 8.45146, 63.41824 ], [ 8.3315, 63.44786 ], [ 8.33061, 63.51417 ], [ 8.45009, 63.55333 ], [ 8.44827, 63.57079 ], [ 8.37237, 63.57915 ], [ 8.3964, 63.60667 ], [ 8.46568, 63.62021 ], [ 8.45875, 63.56977 ], [ 8.47046, 63.56 ], [ 8.63504, 63.61394 ], [ 8.59546, 63.66613 ], [ 8.42014, 63.67606 ], [ 8.41876, 63.69382 ], [ 8.53891, 63.71973 ], [ 8.68833, 63.81412 ], [ 8.7912, 63.81565 ], [ 8.81156, 63.80395 ], [ 8.82246, 63.71302 ], [ 8.69227, 63.67582 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO07", "NUTS_ID": "NO07", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Nord-Norge", "geo": "NO07", "time_2018_MEAN": 82.266666666666666 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.92968, 69.0519 ], [ 28.83032, 69.12078 ], [ 28.85331, 69.21813 ], [ 29.19994, 69.39043 ], [ 29.29967, 69.47851 ], [ 29.15807, 69.65784 ], [ 28.41497, 69.82271 ], [ 28.04525, 69.98639 ], [ 27.91498, 70.0864 ], [ 27.64632, 70.07213 ], [ 27.0868, 69.92213 ], [ 26.81429, 69.956 ], [ 26.50985, 69.93903 ], [ 26.34085, 69.84019 ], [ 25.96301, 69.69018 ], [ 25.94536, 69.6039 ], [ 25.861, 69.52342 ], [ 25.82364, 69.38646 ], [ 25.72346, 69.25503 ], [ 25.72939, 68.98981 ], [ 25.60594, 68.89891 ], [ 25.44621, 68.89263 ], [ 25.23989, 68.83193 ], [ 25.15165, 68.77255 ], [ 25.08671, 68.64344 ], [ 24.89456, 68.57733 ], [ 24.7278, 68.64647 ], [ 24.60771, 68.6673 ], [ 24.30315, 68.72014 ], [ 23.90667, 68.82859 ], [ 23.78407, 68.80859 ], [ 23.62655, 68.7033 ], [ 23.21862, 68.6404 ], [ 23.03436, 68.68564 ], [ 22.79529, 68.69114 ], [ 22.54842, 68.73795 ], [ 22.40178, 68.72652 ], [ 22.31238, 68.84315 ], [ 21.98361, 69.07289 ], [ 21.62487, 69.27076 ], [ 21.30444, 69.3072 ], [ 21.0266, 69.21051 ], [ 21.07782, 69.11077 ], [ 21.04804, 69.05852 ], [ 20.73297, 69.10862 ], [ 20.54864, 69.05997 ], [ 20.19704, 69.02405 ], [ 20.28776, 68.9142 ], [ 20.30664, 68.80181 ], [ 20.19402, 68.67219 ], [ 20.02632, 68.56928 ], [ 20.12655, 68.46193 ], [ 19.94019, 68.3774 ], [ 19.47565, 68.44377 ], [ 19.02892, 68.50761 ], [ 18.62803, 68.51303 ], [ 18.40895, 68.57158 ], [ 18.12592, 68.53652 ], [ 18.10423, 68.4036 ], [ 18.14288, 68.19696 ], [ 17.90819, 67.98008 ], [ 17.56623, 68.05606 ], [ 17.31272, 68.11239 ], [ 17.27195, 68.11245 ], [ 17.16945, 68.04751 ], [ 16.77194, 67.92533 ], [ 16.55489, 67.67229 ], [ 16.47868, 67.58345 ], [ 16.39774, 67.5353 ], [ 16.16679, 67.51631 ], [ 16.10199, 67.44585 ], [ 16.39163, 67.21156 ], [ 16.38056, 67.04981 ], [ 16.05097, 66.91723 ], [ 15.86954, 66.78049 ], [ 15.62957, 66.60156 ], [ 15.55184, 66.56656 ], [ 15.52308, 66.55362 ], [ 15.38738, 66.48102 ], [ 15.45399, 66.34523 ], [ 15.46032, 66.27682 ], [ 15.04726, 66.15793 ], [ 15.02146, 66.15652 ], [ 14.53155, 66.12983 ], [ 14.58756, 65.89465 ], [ 14.61791, 65.81349 ], [ 14.54281, 65.69614 ], [ 14.5074, 65.55733 ], [ 14.50282, 65.32091 ], [ 14.46834, 65.29414 ], [ 14.36526, 65.21412 ], [ 14.32599, 65.11892 ], [ 13.22551, 65.11096 ], [ 13.14473, 65.11036 ], [ 12.96629, 65.04383 ], [ 12.88988, 64.98334 ], [ 12.69049, 64.94739 ], [ 12.53934, 64.9795 ], [ 12.22876, 64.97401 ], [ 12.09054, 65.01034 ], [ 12.04611, 65.06245 ], [ 12.18058, 65.17737 ], [ 12.34667, 65.11142 ], [ 12.43229, 65.12538 ], [ 12.36193, 65.29263 ], [ 12.20354, 65.26722 ], [ 12.14179, 65.28583 ], [ 12.20027, 65.4382 ], [ 12.28835, 65.51855 ], [ 12.46143, 65.46105 ], [ 12.55982, 65.47378 ], [ 12.54215, 65.51557 ], [ 12.42348, 65.56792 ], [ 12.38704, 65.61559 ], [ 12.60054, 65.85618 ], [ 12.49766, 65.93162 ], [ 12.60489, 65.99633 ], [ 12.78789, 66.04746 ], [ 12.97517, 66.25466 ], [ 13.02361, 66.2558 ], [ 12.99769, 66.21443 ], [ 13.01737, 66.19654 ], [ 13.19548, 66.26927 ], [ 13.19493, 66.30225 ], [ 13.07528, 66.38459 ], [ 13.11233, 66.47384 ], [ 13.22551, 66.502 ], [ 13.37534, 66.53815 ], [ 13.25343, 66.6151 ], [ 13.33768, 66.74021 ], [ 13.53337, 66.74999 ], [ 13.6247, 66.82085 ], [ 13.59998, 66.90374 ], [ 13.61659, 66.93505 ], [ 13.96388, 67.01729 ], [ 14.11001, 67.12655 ], [ 14.29322, 67.14968 ], [ 14.48027, 67.21056 ], [ 15.03679, 67.22973 ], [ 15.42699, 67.15603 ], [ 15.43049, 67.19359 ], [ 15.38597, 67.23688 ], [ 15.11355, 67.30414 ], [ 14.78177, 67.2631 ], [ 14.41674, 67.29255 ], [ 14.72446, 67.48922 ], [ 15.02475, 67.56944 ], [ 15.23395, 67.49384 ], [ 15.41794, 67.49253 ], [ 15.27478, 67.5658 ], [ 15.23068, 67.6249 ], [ 15.30878, 67.6991 ], [ 15.48559, 67.74647 ], [ 15.49959, 67.77034 ], [ 15.47538, 67.79453 ], [ 15.36448, 67.80745 ], [ 15.03944, 67.70482 ], [ 14.87032, 67.69624 ], [ 14.86872, 67.83419 ], [ 15.07468, 67.89783 ], [ 14.98636, 67.92682 ], [ 14.9952, 67.95454 ], [ 15.08433, 67.98529 ], [ 15.1578, 67.97734 ], [ 15.21954, 68.01176 ], [ 15.26265, 67.98286 ], [ 15.22295, 67.94149 ], [ 15.24197, 67.91303 ], [ 15.83191, 67.94889 ], [ 15.8586, 67.97728 ], [ 15.7794, 68.00566 ], [ 15.51636, 68.03835 ], [ 15.40278, 68.01704 ], [ 15.37092, 68.06323 ], [ 15.4665, 68.13392 ], [ 15.58425, 68.15201 ], [ 15.7719, 68.12455 ], [ 16.00039, 68.22208 ], [ 16.07587, 68.18444 ], [ 16.13515, 68.04936 ], [ 16.2256, 67.97419 ], [ 16.37566, 68.12209 ], [ 16.37538, 68.18899 ], [ 16.28653, 68.27415 ], [ 16.35593, 68.35959 ], [ 16.61967, 68.40707 ], [ 16.92808, 68.36692 ], [ 17.11338, 68.3747 ], [ 17.3137, 68.43391 ], [ 16.9631, 68.49171 ], [ 16.58906, 68.45664 ], [ 16.21836, 68.42189 ], [ 16.1732, 68.44182 ], [ 16.14394, 68.50574 ], [ 15.98561, 68.43046 ], [ 15.65785, 68.34792 ], [ 15.34416, 68.38167 ], [ 15.091, 68.31184 ], [ 14.98445, 68.32819 ], [ 14.81148, 68.2295 ], [ 14.69773, 68.2871 ], [ 14.56942, 68.24332 ], [ 14.26284, 68.21031 ], [ 14.37975, 68.3458 ], [ 14.60463, 68.41269 ], [ 14.87928, 68.42751 ], [ 15.20443, 68.50459 ], [ 15.41973, 68.65562 ], [ 15.56591, 68.84461 ], [ 15.57847, 68.91857 ], [ 15.48668, 68.94506 ], [ 15.538, 69.04595 ], [ 15.88741, 69.24106 ], [ 16.07748, 69.28497 ], [ 16.10967, 69.24978 ], [ 16.07946, 69.18903 ], [ 15.83391, 68.99041 ], [ 15.89505, 68.90595 ], [ 15.92518, 68.79934 ], [ 16.00557, 68.75554 ], [ 16.06177, 68.72619 ], [ 16.18676, 68.82661 ], [ 16.33865, 68.85051 ], [ 16.53149, 68.79059 ], [ 16.67059, 68.66657 ], [ 17.14518, 68.71674 ], [ 17.32868, 68.81275 ], [ 17.20986, 68.84007 ], [ 17.20077, 68.89324 ], [ 17.429, 68.92184 ], [ 17.68898, 69.08998 ], [ 18.00735, 69.16096 ], [ 18.06076, 69.31958 ], [ 18.18441, 69.44527 ], [ 18.33642, 69.43994 ], [ 18.5173, 69.30766 ], [ 18.65999, 69.33899 ], [ 18.49893, 69.4783 ], [ 18.44789, 69.5222 ], [ 18.21084, 69.54239 ], [ 18.10984, 69.62234 ], [ 18.24952, 69.71694 ], [ 18.37384, 69.75809 ], [ 18.69161, 69.76333 ], [ 18.73993, 69.84656 ], [ 18.81444, 69.88407 ], [ 18.78691, 69.99604 ], [ 18.71799, 70.05601 ], [ 18.82893, 70.13785 ], [ 19.00894, 70.05241 ], [ 19.19247, 70.06675 ], [ 19.34717, 70.02309 ], [ 19.52567, 70.01963 ], [ 19.61635, 69.96942 ], [ 19.79803, 69.97646 ], [ 19.68479, 69.87028 ], [ 19.36331, 69.8497 ], [ 19.08148, 69.79412 ], [ 19.0219, 69.74674 ], [ 19.06542, 69.70739 ], [ 19.27599, 69.77024 ], [ 19.65649, 69.77899 ], [ 19.6948, 69.5191 ], [ 19.77192, 69.58397 ], [ 19.81804, 69.69908 ], [ 19.87764, 69.76466 ], [ 20.16003, 69.91583 ], [ 20.3049, 69.92544 ], [ 20.34089, 69.81954 ], [ 20.28291, 69.62471 ], [ 20.1832, 69.4783 ], [ 20.12562, 69.39682 ], [ 20.13412, 69.36997 ], [ 20.22903, 69.39856 ], [ 20.3287, 69.4783 ], [ 20.50669, 69.58782 ], [ 20.51795, 69.71452 ], [ 20.601, 69.88459 ], [ 20.65766, 69.90675 ], [ 20.73593, 69.86053 ], [ 20.77145, 69.8884 ], [ 20.68218, 70.02357 ], [ 20.43781, 70.10061 ], [ 20.45119, 70.15918 ], [ 20.55866, 70.20624 ], [ 20.72435, 70.20403 ], [ 20.82094, 70.13649 ], [ 20.97359, 69.83491 ], [ 21.35876, 69.99721 ], [ 21.95153, 69.82913 ], [ 21.89616, 70.02191 ], [ 21.75679, 70.07295 ], [ 21.48506, 70.11491 ], [ 21.31153, 70.21201 ], [ 21.54176, 70.28087 ], [ 21.78506, 70.22785 ], [ 22.05623, 70.29286 ], [ 22.20716, 70.25841 ], [ 22.30072, 70.18335 ], [ 22.46923, 70.23013 ], [ 22.84932, 70.1852 ], [ 23.11001, 69.98976 ], [ 23.28679, 69.98692 ], [ 23.31667, 70.00876 ], [ 23.27687, 70.0861 ], [ 23.30021, 70.22179 ], [ 23.7326, 70.47968 ], [ 23.67855, 70.62647 ], [ 23.71716, 70.71433 ], [ 23.82542, 70.72768 ], [ 23.98625, 70.68368 ], [ 24.0558, 70.6214 ], [ 24.08087, 70.53462 ], [ 24.15299, 70.51355 ], [ 24.27959, 70.64056 ], [ 24.53226, 70.67833 ], [ 24.50271, 70.72426 ], [ 24.36665, 70.76614 ], [ 24.32868, 70.80432 ], [ 24.39878, 70.84293 ], [ 24.55142, 70.84476 ], [ 24.60771, 70.9369 ], [ 24.64853, 70.96552 ], [ 24.94672, 70.94343 ], [ 25.27503, 70.86478 ], [ 25.39455, 70.97305 ], [ 25.3575, 71.0468 ], [ 25.37172, 71.07675 ], [ 25.71412, 71.15304 ], [ 25.90115, 71.11883 ], [ 25.97734, 71.04837 ], [ 26.06048, 71.01963 ], [ 26.03005, 70.99373 ], [ 25.75, 70.97264 ], [ 25.58418, 70.92051 ], [ 25.73814, 70.8629 ], [ 25.75716, 70.82889 ], [ 25.63175, 70.73327 ], [ 25.21459, 70.54484 ], [ 25.19033, 70.40994 ], [ 24.95855, 70.16843 ], [ 24.99739, 70.10743 ], [ 25.13329, 70.09983 ], [ 25.40513, 70.24405 ], [ 25.51807, 70.39422 ], [ 25.92043, 70.59295 ], [ 26.15453, 70.75921 ], [ 26.5616, 70.91738 ], [ 26.65248, 70.90859 ], [ 26.68028, 70.85618 ], [ 26.65075, 70.76915 ], [ 26.55596, 70.67821 ], [ 26.58397, 70.5858 ], [ 26.57673, 70.4693 ], [ 26.61196, 70.4564 ], [ 26.93772, 70.49432 ], [ 27.08975, 70.61851 ], [ 27.1566, 70.7151 ], [ 27.39167, 70.83705 ], [ 27.40333, 70.85963 ], [ 27.37441, 70.89058 ], [ 27.20948, 70.93539 ], [ 27.2146, 70.97284 ], [ 27.27019, 71.00319 ], [ 27.49449, 71.00741 ], [ 27.56876, 71.07066 ], [ 27.65967, 71.09498 ], [ 27.86448, 71.05601 ], [ 28.15695, 71.06341 ], [ 28.45221, 70.93082 ], [ 28.32349, 70.8364 ], [ 28.04843, 70.77751 ], [ 28.06197, 70.70926 ], [ 28.18011, 70.69003 ], [ 28.21542, 70.65008 ], [ 28.14298, 70.58807 ], [ 27.95984, 70.51661 ], [ 27.947, 70.4835 ], [ 28.40789, 70.49638 ], [ 28.59816, 70.75385 ], [ 28.76236, 70.83889 ], [ 28.93303, 70.86675 ], [ 29.22123, 70.81925 ], [ 29.36732, 70.69296 ], [ 29.66385, 70.71404 ], [ 29.84381, 70.67246 ], [ 30.07606, 70.68032 ], [ 30.22176, 70.61679 ], [ 30.23883, 70.53786 ], [ 30.52238, 70.52995 ], [ 30.93489, 70.41303 ], [ 30.99105, 70.34627 ], [ 30.94101, 70.29133 ], [ 30.5626, 70.23602 ], [ 30.26416, 70.12896 ], [ 30.02878, 70.08527 ], [ 28.92933, 70.14948 ], [ 28.87624, 70.1272 ], [ 29.16884, 70.03061 ], [ 29.54134, 69.97268 ], [ 29.75502, 69.86721 ], [ 29.89537, 69.86686 ], [ 29.997, 69.7562 ], [ 30.07817, 69.76088 ], [ 30.22868, 69.84727 ], [ 30.42342, 69.77839 ], [ 30.56992, 69.79781 ], [ 30.86536, 69.75959 ], [ 30.93905, 69.64379 ], [ 30.89682, 69.55313 ], [ 30.55302, 69.54155 ], [ 30.14745, 69.64959 ], [ 30.17125, 69.55523 ], [ 30.07732, 69.4528 ], [ 29.98348, 69.41509 ], [ 29.77544, 69.39453 ], [ 29.57824, 69.32488 ], [ 29.31736, 69.29669 ], [ 29.29056, 69.27236 ], [ 29.28754, 69.18954 ], [ 29.21109, 69.09992 ], [ 29.05619, 69.02476 ], [ 28.92968, 69.0519 ] ], [ [ 16.57959, 68.54137 ], [ 16.61244, 68.53924 ], [ 16.61792, 68.55613 ], [ 16.5514, 68.61704 ], [ 16.50917, 68.60707 ], [ 16.48947, 68.57153 ], [ 16.45695, 68.55736 ], [ 16.57801, 68.54157 ], [ 16.57959, 68.54137 ] ] ], [ [ [ 30.09609, 69.81411 ], [ 30.04945, 69.80518 ], [ 30.05073, 69.83525 ], [ 30.00686, 69.86107 ], [ 30.04059, 69.89465 ], [ 30.08921, 69.8727 ], [ 30.0764, 69.85205 ], [ 30.09609, 69.81411 ] ] ], [ [ [ 27.23098, 70.79303 ], [ 27.20524, 70.76698 ], [ 27.151, 70.7862 ], [ 27.19489, 70.81654 ], [ 27.23098, 70.79303 ] ] ], [ [ [ 25.87385, 70.68677 ], [ 25.80832, 70.66453 ], [ 25.77832, 70.67615 ], [ 25.77832, 70.69205 ], [ 25.85282, 70.71019 ], [ 25.87385, 70.68677 ] ] ], [ [ [ 25.33688, 70.26603 ], [ 25.29539, 70.24326 ], [ 25.24671, 70.25358 ], [ 25.27456, 70.28869 ], [ 25.33516, 70.30207 ], [ 25.33688, 70.26603 ] ] ], [ [ [ 25.01853, 71.00344 ], [ 24.9542, 71.00114 ], [ 24.92792, 71.02575 ], [ 24.97203, 71.04988 ], [ 25.02262, 71.03674 ], [ 25.01853, 71.00344 ] ] ], [ [ [ 24.80467, 71.0737 ], [ 24.7225, 71.03052 ], [ 24.64084, 71.06361 ], [ 24.66946, 71.08558 ], [ 24.71933, 71.08736 ], [ 24.7225, 71.11507 ], [ 24.80309, 71.09045 ], [ 24.80467, 71.0737 ] ] ], [ [ [ 24.27596, 70.8718 ], [ 24.21895, 70.84677 ], [ 24.20658, 70.86632 ], [ 24.25366, 70.90767 ], [ 24.27596, 70.8718 ] ] ], [ [ [ 24.11155, 71.08394 ], [ 24.10965, 71.05091 ], [ 24.05529, 71.03337 ], [ 24.07015, 70.96985 ], [ 24.14096, 70.97234 ], [ 24.20559, 70.96279 ], [ 24.20532, 70.94494 ], [ 24.08182, 70.93056 ], [ 24.04664, 70.9134 ], [ 23.92578, 70.93322 ], [ 23.90766, 70.9843 ], [ 23.87839, 70.98746 ], [ 23.88904, 71.02357 ], [ 23.95199, 71.03263 ], [ 23.95605, 71.07551 ], [ 24.0025, 71.06103 ], [ 24.02272, 71.08182 ], [ 24.07071, 71.09313 ], [ 24.11155, 71.08394 ] ] ], [ [ [ 23.55569, 70.52939 ], [ 23.62185, 70.46231 ], [ 23.2832, 70.30188 ], [ 23.08707, 70.28867 ], [ 23.04772, 70.34493 ], [ 22.92654, 70.35845 ], [ 22.90627, 70.36071 ], [ 22.87747, 70.42112 ], [ 22.8889, 70.4506 ], [ 22.92654, 70.4649 ], [ 23.01423, 70.4982 ], [ 23.08707, 70.50122 ], [ 23.19149, 70.53665 ], [ 23.26881, 70.48528 ], [ 23.28027, 70.54452 ], [ 23.43056, 70.5663 ], [ 23.42183, 70.61695 ], [ 23.44346, 70.62252 ], [ 23.56334, 70.60418 ], [ 23.55569, 70.52939 ] ] ], [ [ [ 23.44491, 70.80008 ], [ 23.27457, 70.69763 ], [ 23.16611, 70.67713 ], [ 23.07785, 70.59191 ], [ 22.92652, 70.54105 ], [ 22.63984, 70.54123 ], [ 22.49619, 70.50336 ], [ 22.17698, 70.4912 ], [ 22.15968, 70.51701 ], [ 22.21268, 70.59251 ], [ 22.04011, 70.61116 ], [ 22.0321, 70.62026 ], [ 22.05664, 70.64368 ], [ 22.34253, 70.64075 ], [ 22.38759, 70.69135 ], [ 22.53273, 70.70795 ], [ 22.60876, 70.65584 ], [ 22.71814, 70.63854 ], [ 22.76142, 70.66998 ], [ 22.71677, 70.74637 ], [ 22.88558, 70.7347 ], [ 22.92652, 70.76943 ], [ 22.97492, 70.76326 ], [ 22.92652, 70.71076 ], [ 22.98715, 70.68445 ], [ 23.09974, 70.73312 ], [ 23.06156, 70.79265 ], [ 23.06812, 70.84127 ], [ 23.24588, 70.79374 ], [ 23.34855, 70.84759 ], [ 23.44491, 70.80008 ] ] ], [ [ [ 23.24404, 70.12418 ], [ 23.19145, 70.12399 ], [ 23.16233, 70.14052 ], [ 23.17469, 70.15544 ], [ 23.23699, 70.15243 ], [ 23.24404, 70.12418 ] ] ], [ [ [ 22.77209, 70.38715 ], [ 22.80694, 70.34347 ], [ 22.89661, 70.32777 ], [ 22.92654, 70.30741 ], [ 22.97517, 70.27432 ], [ 22.97055, 70.2579 ], [ 22.92654, 70.25576 ], [ 22.75464, 70.24738 ], [ 22.52524, 70.27388 ], [ 22.40305, 70.29717 ], [ 22.35202, 70.33556 ], [ 22.48287, 70.3702 ], [ 22.52524, 70.35659 ], [ 22.67374, 70.38598 ], [ 22.72424, 70.35179 ], [ 22.77209, 70.38715 ] ] ], [ [ [ 21.80003, 70.32926 ], [ 21.73065, 70.26914 ], [ 21.68611, 70.28145 ], [ 21.69626, 70.37269 ], [ 21.78366, 70.35947 ], [ 21.80003, 70.32926 ] ] ], [ [ [ 21.74586, 69.93893 ], [ 21.73208, 69.91092 ], [ 21.65178, 69.93406 ], [ 21.66497, 69.95033 ], [ 21.74586, 69.93893 ] ] ], [ [ [ 21.71598, 70.02019 ], [ 21.68853, 69.98951 ], [ 21.58534, 70.01173 ], [ 21.57815, 70.01984 ], [ 21.62482, 70.04636 ], [ 21.71598, 70.02019 ] ] ], [ [ [ 21.45509, 70.3617 ], [ 21.42207, 70.3263 ], [ 21.39359, 70.35526 ], [ 21.43504, 70.39327 ], [ 21.45509, 70.3617 ] ] ], [ [ [ 21.38112, 70.11054 ], [ 21.36464, 70.08608 ], [ 21.28009, 70.11525 ], [ 21.29375, 70.12932 ], [ 21.38112, 70.11054 ] ] ], [ [ [ 21.29147, 70.03925 ], [ 21.21929, 70.02126 ], [ 21.1999, 70.0378 ], [ 21.23119, 70.05723 ], [ 21.27782, 70.05589 ], [ 21.29147, 70.03925 ] ] ], [ [ [ 21.06484, 69.93622 ], [ 20.99035, 69.91548 ], [ 20.97693, 69.92706 ], [ 21.04532, 69.96711 ], [ 21.06484, 69.93622 ] ] ], [ [ [ 21.02062, 69.98449 ], [ 20.97725, 69.97486 ], [ 20.92607, 70.02129 ], [ 20.97776, 70.05339 ], [ 21.00316, 70.04316 ], [ 20.99542, 70.00764 ], [ 21.02062, 69.98449 ] ] ], [ [ [ 20.39895, 69.67943 ], [ 20.36337, 69.64607 ], [ 20.31945, 69.65764 ], [ 20.34798, 69.6926 ], [ 20.39895, 69.67943 ] ] ], [ [ [ 20.23532, 70.22694 ], [ 20.20733, 70.22552 ], [ 20.18611, 70.26748 ], [ 20.16911, 70.30111 ], [ 20.19154, 70.30854 ], [ 20.26194, 70.26748 ], [ 20.28187, 70.25586 ], [ 20.23532, 70.22694 ] ] ], [ [ [ 19.64414, 70.28242 ], [ 19.68455, 70.237 ], [ 19.7609, 70.24754 ], [ 19.77265, 70.1639 ], [ 19.84091, 70.20216 ], [ 19.9465, 70.14306 ], [ 20.00755, 70.1764 ], [ 20.03873, 70.15895 ], [ 20.01665, 70.12802 ], [ 20.05658, 70.10762 ], [ 20.05527, 70.09108 ], [ 19.9341, 70.05169 ], [ 19.73843, 70.06047 ], [ 19.65867, 70.16548 ], [ 19.51628, 70.22577 ], [ 19.58268, 70.28526 ], [ 19.64414, 70.28242 ] ] ], [ [ [ 19.94513, 70.01114 ], [ 19.94189, 69.98902 ], [ 19.86793, 70.00248 ], [ 19.85766, 70.01436 ], [ 19.87288, 70.02923 ], [ 19.94513, 70.01114 ] ] ], [ [ [ 19.57429, 70.112 ], [ 19.55435, 70.09639 ], [ 19.47565, 70.0972 ], [ 19.36552, 70.11261 ], [ 19.34064, 70.12979 ], [ 19.39759, 70.16312 ], [ 19.47565, 70.14191 ], [ 19.57429, 70.112 ] ] ], [ [ [ 19.40537, 70.05994 ], [ 19.36835, 70.04471 ], [ 19.32791, 70.05726 ], [ 19.3429, 70.08317 ], [ 19.38345, 70.08389 ], [ 19.40537, 70.05994 ] ] ], [ [ [ 19.19015, 70.11663 ], [ 19.11656, 70.10975 ], [ 19.02833, 70.15236 ], [ 19.12283, 70.20338 ], [ 19.11363, 70.23308 ], [ 19.15467, 70.24007 ], [ 19.19343, 70.26767 ], [ 19.24491, 70.23118 ], [ 19.25426, 70.17595 ], [ 19.22628, 70.15698 ], [ 19.22752, 70.13258 ], [ 19.19015, 70.11663 ] ] ], [ [ [ 19.0096, 70.18615 ], [ 18.9644, 70.14751 ], [ 18.93913, 70.17822 ], [ 18.9607, 70.20434 ], [ 19.0096, 70.18615 ] ] ], [ [ [ 18.57757, 70.03503 ], [ 18.54775, 70.01401 ], [ 18.51816, 70.02686 ], [ 18.51494, 70.05655 ], [ 18.56981, 70.05749 ], [ 18.57757, 70.03503 ] ] ], [ [ [ 18.57428, 69.8218 ], [ 18.4622, 69.82118 ], [ 18.45303, 69.83084 ], [ 18.50079, 69.86362 ], [ 18.56843, 69.85634 ], [ 18.57428, 69.8218 ] ] ], [ [ [ 18.53772, 69.98194 ], [ 18.52818, 69.9529 ], [ 18.47497, 69.97166 ], [ 18.50372, 70.0132 ], [ 18.53772, 69.98194 ] ] ], [ [ [ 17.87391, 69.55554 ], [ 18.00075, 69.4783 ], [ 17.97778, 69.43497 ], [ 18.04182, 69.41751 ], [ 18.05338, 69.37084 ], [ 17.9332, 69.3174 ], [ 17.94323, 69.18036 ], [ 17.58023, 69.15878 ], [ 17.45441, 69.18448 ], [ 17.11971, 69.01669 ], [ 17.04416, 69.06788 ], [ 16.81985, 69.07843 ], [ 16.84544, 69.11689 ], [ 17.03657, 69.15795 ], [ 17.00821, 69.21696 ], [ 17.09441, 69.2613 ], [ 16.97807, 69.3174 ], [ 16.97158, 69.39145 ], [ 17.28879, 69.42585 ], [ 17.27165, 69.4783 ], [ 17.37737, 69.51771 ], [ 17.50982, 69.51046 ], [ 17.52332, 69.56701 ], [ 17.63008, 69.53254 ], [ 17.72007, 69.57165 ], [ 17.87391, 69.55554 ] ] ], [ [ [ 17.41311, 68.99473 ], [ 17.37429, 68.98666 ], [ 17.34391, 68.99896 ], [ 17.35323, 69.03199 ], [ 17.40262, 69.07438 ], [ 17.43978, 69.08428 ], [ 17.54616, 69.08632 ], [ 17.55246, 69.06594 ], [ 17.52527, 69.04426 ], [ 17.46162, 69.02968 ], [ 17.41311, 68.99473 ] ] ], [ [ [ 16.98758, 68.7422 ], [ 16.89013, 68.72565 ], [ 16.84079, 68.73419 ], [ 16.86011, 68.7702 ], [ 16.92002, 68.77752 ], [ 16.92254, 68.79339 ], [ 16.97868, 68.84237 ], [ 17.03297, 68.86768 ], [ 17.11207, 68.80221 ], [ 17.18536, 68.78188 ], [ 17.1712, 68.76313 ], [ 17.1172, 68.74871 ], [ 16.98758, 68.7422 ] ] ], [ [ [ 16.74173, 68.8725 ], [ 16.68108, 68.85763 ], [ 16.66917, 68.88726 ], [ 16.72267, 68.90478 ], [ 16.74173, 68.8725 ] ] ], [ [ [ 16.73544, 68.9507 ], [ 16.67357, 68.9274 ], [ 16.6598, 68.95318 ], [ 16.67523, 68.96771 ], [ 16.73093, 68.96827 ], [ 16.73544, 68.9507 ] ] ], [ [ [ 16.31588, 68.9902 ], [ 16.54679, 68.95339 ], [ 16.56925, 68.9876 ], [ 16.6157, 68.96078 ], [ 16.63017, 68.9383 ], [ 16.6165, 68.89712 ], [ 16.59078, 68.88262 ], [ 16.46607, 68.88485 ], [ 16.2801, 68.9651 ], [ 16.31588, 68.9902 ] ] ], [ [ [ 16.53704, 68.98819 ], [ 16.47493, 68.98211 ], [ 16.44185, 68.99697 ], [ 16.46387, 69.03716 ], [ 16.49847, 69.05047 ], [ 16.50559, 69.07337 ], [ 16.53888, 69.05908 ], [ 16.54804, 69.02996 ], [ 16.53704, 68.98819 ] ] ], [ [ [ 16.30426, 68.88959 ], [ 16.29561, 68.87688 ], [ 16.24243, 68.88592 ], [ 16.2347, 68.90158 ], [ 16.2697, 68.92838 ], [ 16.30426, 68.88959 ] ] ], [ [ [ 16.16824, 68.33261 ], [ 16.08431, 68.33246 ], [ 16.06421, 68.34281 ], [ 16.09621, 68.35771 ], [ 16.15868, 68.35646 ], [ 16.16824, 68.33261 ] ] ], [ [ [ 15.36981, 68.84207 ], [ 15.3202, 68.76745 ], [ 15.40184, 68.70472 ], [ 15.01089, 68.56227 ], [ 14.93457, 68.58308 ], [ 14.92747, 68.56648 ], [ 14.97083, 68.55057 ], [ 14.96229, 68.53373 ], [ 14.82681, 68.49717 ], [ 14.65634, 68.55103 ], [ 14.68031, 68.58301 ], [ 14.87373, 68.57884 ], [ 14.85308, 68.64156 ], [ 15.12345, 68.71677 ], [ 15.13171, 68.74556 ], [ 15.04746, 68.7574 ], [ 14.98647, 68.71953 ], [ 14.77186, 68.66908 ], [ 14.68323, 68.67386 ], [ 14.5918, 68.62577 ], [ 14.44682, 68.61806 ], [ 14.41426, 68.68043 ], [ 14.4679, 68.76181 ], [ 14.536, 68.80478 ], [ 14.59905, 68.77351 ], [ 14.67712, 68.81567 ], [ 14.71949, 68.77353 ], [ 14.74898, 68.82712 ], [ 14.8066, 68.83713 ], [ 14.89884, 68.76332 ], [ 14.92324, 68.83163 ], [ 14.86909, 68.88899 ], [ 14.87496, 68.91828 ], [ 14.96549, 68.91062 ], [ 15.03571, 68.83351 ], [ 15.06637, 68.8837 ], [ 15.02479, 68.9824 ], [ 15.1162, 69.0155 ], [ 15.17157, 68.99933 ], [ 15.18605, 68.93412 ], [ 15.28105, 68.92025 ], [ 15.30363, 68.86145 ], [ 15.36981, 68.84207 ] ] ], [ [ [ 15.0506, 67.63689 ], [ 14.99986, 67.62083 ], [ 14.99179, 67.67278 ], [ 15.04622, 67.663 ], [ 15.0506, 67.63689 ] ] ], [ [ [ 14.73042, 67.83198 ], [ 14.71903, 67.79213 ], [ 14.66825, 67.81021 ], [ 14.69118, 67.84727 ], [ 14.73042, 67.83198 ] ] ], [ [ [ 14.66333, 67.53988 ], [ 14.61861, 67.51756 ], [ 14.59147, 67.52404 ], [ 14.59408, 67.5431 ], [ 14.65035, 67.56662 ], [ 14.66333, 67.53988 ] ] ], [ [ [ 14.33876, 67.38638 ], [ 14.26087, 67.37699 ], [ 14.24788, 67.38952 ], [ 14.33876, 67.4331 ], [ 14.38157, 67.44062 ], [ 14.41323, 67.42264 ], [ 14.38402, 67.39526 ], [ 14.33876, 67.38638 ] ] ], [ [ [ 13.99208, 68.33502 ], [ 14.03973, 68.27739 ], [ 14.10838, 68.34269 ], [ 14.25645, 68.29889 ], [ 14.24512, 68.26871 ], [ 14.1325, 68.24145 ], [ 14.02626, 68.1901 ], [ 13.87976, 68.19049 ], [ 13.85231, 68.13305 ], [ 13.80045, 68.10869 ], [ 13.74928, 68.13186 ], [ 13.71875, 68.08491 ], [ 13.61235, 68.12481 ], [ 13.57338, 68.12241 ], [ 13.53755, 68.05568 ], [ 13.47057, 68.08742 ], [ 13.53237, 68.15322 ], [ 13.52012, 68.21313 ], [ 13.59831, 68.22962 ], [ 13.57078, 68.26798 ], [ 13.61235, 68.2949 ], [ 13.80501, 68.29219 ], [ 13.92326, 68.34433 ], [ 13.99208, 68.33502 ] ] ], [ [ [ 14.10864, 67.44134 ], [ 14.07606, 67.41502 ], [ 14.04727, 67.42406 ], [ 14.06182, 67.46443 ], [ 14.10299, 67.46028 ], [ 14.10864, 67.44134 ] ] ], [ [ [ 14.00756, 67.17173 ], [ 14.00853, 67.12691 ], [ 13.96028, 67.12815 ], [ 13.96028, 67.16777 ], [ 14.00756, 67.17173 ] ] ], [ [ [ 13.96583, 67.23195 ], [ 13.93097, 67.22628 ], [ 13.9648, 67.288 ], [ 14.00216, 67.26967 ], [ 13.96583, 67.23195 ] ] ], [ [ [ 13.97822, 67.41244 ], [ 13.93916, 67.3874 ], [ 13.91255, 67.39034 ], [ 13.91758, 67.4221 ], [ 13.95376, 67.43743 ], [ 13.97822, 67.41244 ] ] ], [ [ [ 13.91181, 67.38896 ], [ 13.87942, 67.37679 ], [ 13.83942, 67.39276 ], [ 13.86624, 67.43321 ], [ 13.91181, 67.38896 ] ] ], [ [ [ 13.81811, 67.05516 ], [ 13.7694, 67.05516 ], [ 13.77744, 67.08063 ], [ 13.83955, 67.09265 ], [ 13.82509, 67.1119 ], [ 13.84745, 67.13537 ], [ 13.88277, 67.12778 ], [ 13.88271, 67.09749 ], [ 13.81811, 67.05516 ] ] ], [ [ [ 13.8098, 67.17599 ], [ 13.80067, 67.14012 ], [ 13.75733, 67.16434 ], [ 13.72165, 67.14345 ], [ 13.69828, 67.15376 ], [ 13.70544, 67.1825 ], [ 13.75372, 67.19659 ], [ 13.76063, 67.18049 ], [ 13.8098, 67.17599 ] ] ], [ [ [ 13.54154, 66.84283 ], [ 13.53334, 66.82389 ], [ 13.472, 66.82496 ], [ 13.3581, 66.81207 ], [ 13.34757, 66.82012 ], [ 13.36255, 66.83508 ], [ 13.42779, 66.84612 ], [ 13.54154, 66.84283 ] ] ], [ [ [ 13.46862, 66.91482 ], [ 13.40275, 66.89489 ], [ 13.3975, 66.90986 ], [ 13.40274, 66.93199 ], [ 13.44394, 66.94244 ], [ 13.46862, 66.91482 ] ] ], [ [ [ 13.42445, 68.13864 ], [ 13.3731, 68.03511 ], [ 13.28845, 68.00947 ], [ 13.22551, 68.02101 ], [ 13.15333, 67.95747 ], [ 13.08731, 67.94973 ], [ 13.07191, 67.9109 ], [ 12.86615, 67.82926 ], [ 12.83217, 67.83798 ], [ 12.8531, 67.90135 ], [ 12.87151, 67.9109 ], [ 12.96998, 68.02123 ], [ 13.09706, 68.10398 ], [ 13.15319, 68.09465 ], [ 13.1597, 68.05343 ], [ 13.22551, 68.09298 ], [ 13.32907, 68.0895 ], [ 13.31322, 68.13345 ], [ 13.33435, 68.15905 ], [ 13.42445, 68.13864 ] ] ], [ [ [ 13.14365, 66.78861 ], [ 13.13475, 66.73636 ], [ 13.08707, 66.78749 ], [ 13.10099, 66.807 ], [ 13.14365, 66.78861 ] ] ], [ [ [ 13.13212, 66.58526 ], [ 13.11199, 66.57073 ], [ 13.08409, 66.61657 ], [ 13.13074, 66.64251 ], [ 13.13212, 66.58526 ] ] ], [ [ [ 13.03685, 66.56539 ], [ 12.98528, 66.55572 ], [ 12.98745, 66.61334 ], [ 12.95641, 66.68005 ], [ 13.0876, 66.69454 ], [ 13.03685, 66.56539 ] ] ], [ [ [ 12.90286, 66.38405 ], [ 12.82656, 66.37817 ], [ 12.84187, 66.44214 ], [ 12.875, 66.45299 ], [ 12.95111, 66.42529 ], [ 12.90286, 66.38405 ] ] ], [ [ [ 12.94859, 66.55656 ], [ 12.93692, 66.55656 ], [ 12.87925, 66.57649 ], [ 12.93627, 66.61493 ], [ 12.94859, 66.55656 ] ] ], [ [ [ 12.84106, 66.22249 ], [ 12.77391, 66.21888 ], [ 12.73176, 66.26372 ], [ 12.82757, 66.29514 ], [ 12.82757, 66.3147 ], [ 12.88761, 66.26598 ], [ 12.84106, 66.22249 ] ] ], [ [ [ 12.82397, 66.58415 ], [ 12.84185, 66.55393 ], [ 12.87498, 66.55393 ], [ 12.87243, 66.51875 ], [ 12.82698, 66.51816 ], [ 12.80817, 66.55393 ], [ 12.82397, 66.58415 ] ] ], [ [ [ 12.78305, 66.16079 ], [ 12.76904, 66.14069 ], [ 12.70096, 66.14345 ], [ 12.68149, 66.17273 ], [ 12.70097, 66.18547 ], [ 12.78305, 66.16079 ] ] ], [ [ [ 12.72316, 66.31999 ], [ 12.68313, 66.30206 ], [ 12.65828, 66.31275 ], [ 12.693, 66.34505 ], [ 12.74286, 66.34729 ], [ 12.72316, 66.31999 ] ] ], [ [ [ 12.70221, 67.65607 ], [ 12.64716, 67.64826 ], [ 12.6294, 67.66291 ], [ 12.70131, 67.69858 ], [ 12.70221, 67.65607 ] ] ], [ [ [ 12.6905, 66.52484 ], [ 12.68262, 66.51138 ], [ 12.60855, 66.56656 ], [ 12.59773, 66.58541 ], [ 12.66277, 66.62052 ], [ 12.68386, 66.59042 ], [ 12.66362, 66.56656 ], [ 12.6905, 66.52484 ] ] ], [ [ [ 12.52256, 66.05409 ], [ 12.40161, 66.02157 ], [ 12.34573, 66.03798 ], [ 12.39636, 66.09602 ], [ 12.50905, 66.14605 ], [ 12.49008, 66.19075 ], [ 12.55919, 66.21847 ], [ 12.60214, 66.21847 ], [ 12.64802, 66.10543 ], [ 12.52256, 66.05409 ] ] ], [ [ [ 12.61904, 67.63617 ], [ 12.57149, 67.62233 ], [ 12.54305, 67.64381 ], [ 12.55913, 67.66141 ], [ 12.60427, 67.66176 ], [ 12.61904, 67.63617 ] ] ], [ [ [ 12.55831, 66.37066 ], [ 12.51467, 66.3206 ], [ 12.49981, 66.33693 ], [ 12.51002, 66.3869 ], [ 12.55831, 66.37066 ] ] ], [ [ [ 12.54766, 66.30802 ], [ 12.52976, 66.26274 ], [ 12.47937, 66.27124 ], [ 12.52066, 66.31692 ], [ 12.54766, 66.30802 ] ] ], [ [ [ 12.48545, 65.77469 ], [ 12.40876, 65.75367 ], [ 12.3994, 65.76892 ], [ 12.4837, 65.80558 ], [ 12.48545, 65.77469 ] ] ], [ [ [ 12.44557, 65.82408 ], [ 12.40623, 65.81506 ], [ 12.38478, 65.8334 ], [ 12.44697, 65.87518 ], [ 12.44557, 65.82408 ] ] ], [ [ [ 12.37028, 66.37741 ], [ 12.34159, 66.33773 ], [ 12.29811, 66.36485 ], [ 12.3024, 66.38681 ], [ 12.37028, 66.37741 ] ] ], [ [ [ 12.34746, 65.82796 ], [ 12.31879, 65.81787 ], [ 12.31404, 65.85724 ], [ 12.34366, 65.88453 ], [ 12.36387, 65.86782 ], [ 12.34746, 65.82796 ] ] ], [ [ [ 12.34923, 66.13942 ], [ 12.33284, 66.12224 ], [ 12.27276, 66.13464 ], [ 12.31855, 66.1741 ], [ 12.34923, 66.13942 ] ] ], [ [ [ 12.33844, 65.98133 ], [ 12.23991, 65.95972 ], [ 12.22812, 65.97047 ], [ 12.2408, 65.9872 ], [ 12.32596, 66.01011 ], [ 12.33844, 65.98133 ] ] ], [ [ [ 12.28052, 66.23175 ], [ 12.20884, 66.21777 ], [ 12.2158, 66.2515 ], [ 12.28613, 66.25653 ], [ 12.28052, 66.23175 ] ] ], [ [ [ 12.23906, 65.83527 ], [ 12.24298, 65.78626 ], [ 12.21156, 65.79919 ], [ 12.20201, 65.83219 ], [ 12.23016, 65.86711 ], [ 12.27918, 65.88446 ], [ 12.27818, 65.85348 ], [ 12.23906, 65.83527 ] ] ], [ [ [ 12.19396, 66.04228 ], [ 12.1652, 66.04228 ], [ 12.18033, 66.09476 ], [ 12.21398, 66.08377 ], [ 12.22547, 66.06217 ], [ 12.19396, 66.04228 ] ] ], [ [ [ 12.20618, 66.01415 ], [ 12.18226, 65.96455 ], [ 12.13625, 65.98026 ], [ 12.16203, 66.01244 ], [ 12.20618, 66.01415 ] ] ], [ [ [ 12.15587, 65.60237 ], [ 12.12129, 65.59079 ], [ 12.12416, 65.61796 ], [ 12.17212, 65.6578 ], [ 12.18694, 65.63954 ], [ 12.15587, 65.60237 ] ] ], [ [ [ 12.17572, 65.93195 ], [ 12.13398, 65.88804 ], [ 12.11425, 65.92225 ], [ 12.14883, 65.95602 ], [ 12.17572, 65.93195 ] ] ], [ [ [ 12.13937, 65.49639 ], [ 12.13728, 65.45259 ], [ 12.05343, 65.47301 ], [ 12.06525, 65.48821 ], [ 12.13937, 65.49639 ] ] ], [ [ [ 12.1302, 65.68368 ], [ 12.06203, 65.64377 ], [ 12.06203, 65.68213 ], [ 12.11036, 65.70406 ], [ 12.1302, 65.68368 ] ] ], [ [ [ 12.12295, 65.41626 ], [ 12.09515, 65.39356 ], [ 12.06793, 65.40665 ], [ 12.03655, 65.38244 ], [ 12.02565, 65.41264 ], [ 12.06793, 65.42908 ], [ 12.09192, 65.4326 ], [ 12.12295, 65.41626 ] ] ], [ [ [ 12.11304, 65.79684 ], [ 12.07361, 65.79138 ], [ 12.07052, 65.82501 ], [ 12.08064, 65.84847 ], [ 12.11411, 65.83863 ], [ 12.11304, 65.79684 ] ] ], [ [ [ 12.10629, 67.49538 ], [ 12.07469, 67.47896 ], [ 12.04878, 67.49373 ], [ 12.0477, 67.53914 ], [ 12.09686, 67.51146 ], [ 12.10629, 67.49538 ] ] ], [ [ [ 12.07429, 65.75216 ], [ 12.03813, 65.73718 ], [ 12.01141, 65.77361 ], [ 12.06901, 65.79081 ], [ 12.07429, 65.75216 ] ] ], [ [ [ 12.04653, 66.08177 ], [ 12.04379, 66.03254 ], [ 11.99752, 66.04102 ], [ 11.98923, 66.06951 ], [ 12.04653, 66.08177 ] ] ], [ [ [ 12.04387, 65.21332 ], [ 12.02307, 65.20252 ], [ 11.9618, 65.21332 ], [ 11.96346, 65.2379 ], [ 12.005, 65.23927 ], [ 12.04387, 65.21332 ] ] ], [ [ [ 11.9468, 65.61003 ], [ 11.87107, 65.59276 ], [ 11.76686, 65.62634 ], [ 11.80728, 65.68386 ], [ 11.9468, 65.723 ], [ 12.02124, 65.69769 ], [ 12.02608, 65.6605 ], [ 11.9855, 65.62937 ], [ 11.9468, 65.61003 ] ] ], [ [ [ 11.97605, 65.0726 ], [ 11.9468, 65.07355 ], [ 11.92404, 65.06785 ], [ 11.93334, 65.11909 ], [ 11.93876, 65.14892 ], [ 12.00632, 65.14864 ], [ 12.00644, 65.11909 ], [ 12.01473, 65.08301 ], [ 11.97605, 65.0726 ] ] ], [ [ [ 11.98572, 65.3203 ], [ 11.94728, 65.30701 ], [ 11.93123, 65.34868 ], [ 11.98797, 65.35986 ], [ 11.98572, 65.3203 ] ] ], [ [ [ 11.72483, 65.73777 ], [ 11.65543, 65.73284 ], [ 11.64172, 65.74655 ], [ 11.7353, 65.77295 ], [ 11.72483, 65.73777 ] ] ], [ [ [ 11.72772, 65.5641 ], [ 11.69979, 65.54676 ], [ 11.66147, 65.55273 ], [ 11.66752, 65.57815 ], [ 11.70213, 65.59645 ], [ 11.72772, 65.5641 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "NO08", "NUTS_ID": "NO08", "LEVL_CODE": 2, "CNTR_CODE": "NO", "NUTS_NAME": "Oslo og Viken", "geo": "NO08", "time_2018_MEAN": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.83973, 59.84077 ], [ 11.92697, 59.79048 ], [ 11.9303, 59.70173 ], [ 11.80186, 59.64466 ], [ 11.72239, 59.62076 ], [ 11.69904, 59.58116 ], [ 11.81395, 59.33807 ], [ 11.8262, 59.23785 ], [ 11.78825, 59.20316 ], [ 11.77223, 59.09408 ], [ 11.68369, 58.9517 ], [ 11.63536, 58.90376 ], [ 11.50708, 58.88299 ], [ 11.46337, 58.89667 ], [ 11.46005, 58.9517 ], [ 11.46083, 58.98866 ], [ 11.42546, 59.04039 ], [ 11.42531, 59.06181 ], [ 11.37046, 59.10884 ], [ 11.32901, 59.11618 ], [ 11.22637, 59.09772 ], [ 11.16637, 59.14741 ], [ 11.11742, 59.11134 ], [ 10.96881, 59.17021 ], [ 10.97677, 59.09289 ], [ 11.05416, 59.08481 ], [ 11.07735, 59.02219 ], [ 11.04324, 58.99821 ], [ 10.85537, 59.07806 ], [ 10.84248, 59.10634 ], [ 10.89664, 59.12662 ], [ 10.89663, 59.15971 ], [ 10.87692, 59.17376 ], [ 10.81295, 59.16422 ], [ 10.75101, 59.21602 ], [ 10.74257, 59.23086 ], [ 10.74913, 59.29234 ], [ 10.74146, 59.33267 ], [ 10.68151, 59.32001 ], [ 10.64959, 59.41205 ], [ 10.60399, 59.43267 ], [ 10.64233, 59.48123 ], [ 10.68612, 59.48941 ], [ 10.63532, 59.64466 ], [ 10.57289, 59.73858 ], [ 10.63281, 59.83621 ], [ 10.675, 59.85197 ], [ 10.71919, 59.7758 ], [ 10.76479, 59.82954 ], [ 10.76097, 59.87326 ], [ 10.74453, 59.88277 ], [ 10.64198, 59.91151 ], [ 10.59871, 59.87326 ], [ 10.511, 59.84422 ], [ 10.49731, 59.78834 ], [ 10.59625, 59.6399 ], [ 10.5739, 59.55845 ], [ 10.45068, 59.54377 ], [ 10.41202, 59.67657 ], [ 10.33564, 59.71248 ], [ 10.31988, 59.69134 ], [ 10.38075, 59.65683 ], [ 10.39408, 59.57749 ], [ 10.36826, 59.53626 ], [ 10.29748, 59.68866 ], [ 10.00333, 59.6534 ], [ 9.95001, 59.57881 ], [ 10.02174, 59.47918 ], [ 9.79322, 59.45627 ], [ 9.77809, 59.412 ], [ 9.65833, 59.41253 ], [ 9.55024, 59.4812 ], [ 9.48111, 59.48786 ], [ 9.50179, 59.53928 ], [ 9.4142, 59.65001 ], [ 9.36776, 59.6826 ], [ 9.3412, 59.70124 ], [ 9.35425, 59.78084 ], [ 9.19241, 59.83159 ], [ 9.18518, 59.87326 ], [ 9.17676, 59.9218 ], [ 9.00912, 59.98736 ], [ 8.93803, 60.10174 ], [ 8.74296, 60.17604 ], [ 8.13624, 60.18466 ], [ 7.82406, 60.10776 ], [ 7.64734, 60.12499 ], [ 7.48804, 60.09884 ], [ 7.66812, 60.29532 ], [ 7.72402, 60.50946 ], [ 7.6412, 60.56395 ], [ 7.61919, 60.63468 ], [ 7.46964, 60.67555 ], [ 7.60355, 60.7373 ], [ 7.69903, 60.74344 ], [ 7.72233, 60.81068 ], [ 7.82693, 60.90501 ], [ 8.03213, 60.89607 ], [ 8.14869, 60.97366 ], [ 8.2186, 60.97669 ], [ 8.26873, 61.03084 ], [ 8.2517, 61.07394 ], [ 8.31495, 61.08308 ], [ 8.56459, 60.99926 ], [ 8.65747, 60.93672 ], [ 8.87938, 60.89459 ], [ 9.29077, 60.75752 ], [ 9.36776, 60.65281 ], [ 9.45191, 60.53837 ], [ 9.59182, 60.53483 ], [ 9.63367, 60.49653 ], [ 9.80646, 60.45706 ], [ 9.81645, 60.55403 ], [ 9.8626, 60.57387 ], [ 9.94615, 60.63182 ], [ 10.0428, 60.62337 ], [ 10.15096, 60.51882 ], [ 10.1978, 60.3917 ], [ 10.20208, 60.3923 ], [ 10.2612, 60.39362 ], [ 10.33887, 60.36614 ], [ 10.38849, 60.37523 ], [ 10.36628, 60.32098 ], [ 10.87805, 60.31136 ], [ 10.92381, 60.35217 ], [ 10.8697, 60.40848 ], [ 10.71179, 60.43606 ], [ 10.70791, 60.50978 ], [ 10.92894, 60.47952 ], [ 11.08728, 60.5234 ], [ 11.15399, 60.60515 ], [ 11.20466, 60.56604 ], [ 11.22386, 60.50236 ], [ 11.34235, 60.45321 ], [ 11.43889, 60.34323 ], [ 11.5869, 60.26848 ], [ 11.5893, 60.16941 ], [ 11.81691, 60.04436 ], [ 11.80373, 59.95488 ], [ 11.82948, 59.87326 ], [ 11.83973, 59.84077 ] ] ] } } ] } diff --git a/examples/data/polygons_nz_regions.geojson b/examples/data/polygons_nz_regions.geojson index 0e5a860..33f5ecf 100644 --- a/examples/data/polygons_nz_regions.geojson +++ b/examples/data/polygons_nz_regions.geojson @@ -5,7 +5,7 @@ "features": [ { "type": "Feature", "properties": { "id": "pv084qp8629.1", "id_1": 1, "name_1": "Auckland", "hasc_1": "NZ.AU", "population2022": 1695200, "areakm2": 5095.679, "density2022": 332.67 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.74861145, -37.34444427 ], [ 174.74708557, -37.3454895 ], [ 174.74694824, -37.34361267 ], [ 174.74861145, -37.34444427 ], [ 174.74861145, -37.34444427 ] ] ], [ [ [ 174.77009583, -37.34389114 ], [ 174.770446779999986, -37.34157944 ], [ 174.77178955, -37.3429718 ], [ 174.77009583, -37.34389114 ], [ 174.77009583, -37.34389114 ] ] ], [ [ [ 174.7555542, -37.3441658 ], [ 174.75404358, -37.34367752 ], [ 174.754516599999988, -37.34116364 ], [ 174.7555542, -37.3441658 ], [ 174.7555542, -37.3441658 ] ] ], [ [ [ 174.764160159999989, -37.34388733 ], [ 174.76008606, -37.34461975 ], [ 174.76565552, -37.33962631 ], [ 174.764160159999989, -37.34388733 ], [ 174.764160159999989, -37.34388733 ] ] ], [ [ [ 174.752990720000014, -37.34559631 ], [ 174.75141907, -37.34180832 ], [ 174.752304079999988, -37.34277725 ], [ 174.752990720000014, -37.34559631 ], [ 174.752990720000014, -37.34559631 ] ] ], [ [ [ 174.77192688, -37.33953094 ], [ 174.768737789999989, -37.3407135 ], [ 174.771835329999988, -37.33702469 ], [ 174.77192688, -37.33953094 ], [ 174.77192688, -37.33953094 ] ] ], [ [ [ 174.75320435, -37.33498001 ], [ 174.74888611, -37.34166718 ], [ 174.74491882, -37.33788681 ], [ 174.75320435, -37.33498001 ], [ 174.75320435, -37.33498001 ] ] ], [ [ [ 174.75654602, -37.33567429 ], [ 174.75642395, -37.33279037 ], [ 174.76016235, -37.33059692 ], [ 174.75654602, -37.33567429 ], [ 174.75654602, -37.33567429 ] ] ], [ [ [ 174.791107180000012, -37.32666779 ], [ 174.77305603, -37.34166718 ], [ 174.77806091, -37.33166504 ], [ 174.791107180000012, -37.32666779 ], [ 174.791107180000012, -37.32666779 ] ] ], [ [ [ 174.76023865, -37.32954788 ], [ 174.76167297, -37.32620239 ], [ 174.76620483, -37.32515717 ], [ 174.76023865, -37.32954788 ], [ 174.76023865, -37.32954788 ] ] ], [ [ [ 174.797210690000014, -37.3252449 ], [ 174.79432678, -37.3246994 ], [ 174.79898071, -37.32347488 ], [ 174.797210690000014, -37.3252449 ], [ 174.797210690000014, -37.3252449 ] ] ], [ [ [ 174.71255493000001, -37.19326782 ], [ 174.713088989999989, -37.19437408 ], [ 174.71208191, -37.19443512 ], [ 174.71255493000001, -37.19326782 ], [ 174.71255493000001, -37.19326782 ] ] ], [ [ [ 174.88668823, -37.06499863 ], [ 174.88700867, -37.06641006 ], [ 174.886077879999988, -37.06524277 ], [ 174.88668823, -37.06499863 ], [ 174.88668823, -37.06499863 ] ] ], [ [ [ 174.73410034, -36.96100998 ], [ 174.75726318, -36.96128464 ], [ 174.75708008, -36.96967316 ], [ 174.74598694, -36.97321701 ], [ 174.73286438, -36.96675491 ], [ 174.73410034, -36.96100998 ], [ 174.73410034, -36.96100998 ] ] ], [ [ [ 175.15527344, -36.92194366 ], [ 175.15943909, -36.92499924 ], [ 175.15638733, -36.92666626 ], [ 175.15527344, -36.92194366 ], [ 175.15527344, -36.92194366 ] ] ], [ [ [ 175.16471863000001, -36.90194321 ], [ 175.170837400000011, -36.90833282 ], [ 175.15028381, -36.91361237 ], [ 175.16471863000001, -36.90194321 ], [ 175.16471863000001, -36.90194321 ] ] ], [ [ [ 174.97932434, -36.87934494 ], [ 174.977310179999989, -36.87853241 ], [ 174.97924805, -36.8763237 ], [ 174.97932434, -36.87934494 ], [ 174.97932434, -36.87934494 ] ] ], [ [ [ 174.684783939999988, -36.87700653 ], [ 174.68363953, -36.87633133 ], [ 174.68690491000001, -36.87526703 ], [ 174.684783939999988, -36.87700653 ], [ 174.684783939999988, -36.87700653 ] ] ], [ [ [ 175.18833923, -36.83666611 ], [ 175.208618159999986, -36.83111191 ], [ 175.21499634, -36.83499908 ], [ 175.2124939, -36.84277725 ], [ 175.20144653, -36.84207916 ], [ 175.1958313, -36.85972214 ], [ 175.19833374000001, -36.86888885 ], [ 175.207778929999989, -36.88000107 ], [ 175.199722290000011, -36.88833237 ], [ 175.20083618000001, -36.89805603 ], [ 175.18972778, -36.90194321 ], [ 175.18804932, -36.89666748 ], [ 175.17555237, -36.89472198 ], [ 175.172775269999988, -36.88527679 ], [ 175.16111755, -36.86527634 ], [ 175.15333557, -36.86083221 ], [ 175.168884279999986, -36.86000061 ], [ 175.17805481, -36.85111237 ], [ 175.172500609999986, -36.84555435 ], [ 175.176391599999988, -36.83805466 ], [ 175.18943787, -36.83194351 ], [ 175.18833923, -36.83666611 ], [ 175.18833923, -36.83666611 ] ] ], [ [ [ 175.206542969999987, -36.82966232 ], [ 175.20561218, -36.82774734 ], [ 175.208084109999987, -36.82830429 ], [ 175.206542969999987, -36.82966232 ], [ 175.206542969999987, -36.82966232 ] ] ], [ [ [ 174.897537230000012, -36.82781601 ], [ 174.89205933, -36.83633041 ], [ 174.88879395, -36.8285675 ], [ 174.897537230000012, -36.82781601 ], [ 174.897537230000012, -36.82781601 ] ] ], [ [ [ 174.97322083, -36.81057739 ], [ 174.973724370000014, -36.8139534 ], [ 174.971206669999987, -36.81113434 ], [ 174.97322083, -36.81057739 ], [ 174.97322083, -36.81057739 ] ] ], [ [ [ 175.19805908, -36.80555725 ], [ 175.202224730000012, -36.80944443 ], [ 175.20195007, -36.82416534 ], [ 175.196105960000011, -36.82333374 ], [ 175.19805908, -36.80555725 ], [ 175.19805908, -36.80555725 ] ] ], [ [ [ 174.93743896, -36.80243683 ], [ 174.952499390000014, -36.80916595 ], [ 174.94721985000001, -36.82249832 ], [ 174.93888855, -36.82055664 ], [ 174.94277954, -36.8125 ], [ 174.93743896, -36.80243683 ], [ 174.93743896, -36.80243683 ] ] ], [ [ [ 175.19221497, -36.79277802 ], [ 175.20056152, -36.79777908 ], [ 175.196105960000011, -36.80083466 ], [ 175.19221497, -36.79277802 ], [ 175.19221497, -36.79277802 ] ] ], [ [ [ 175.2277832, -36.79083252 ], [ 175.22389221, -36.79027939 ], [ 175.22694397, -36.78777695 ], [ 175.2277832, -36.79083252 ], [ 175.2277832, -36.79083252 ] ] ], [ [ [ 174.662170409999987, -36.77856445 ], [ 174.65034485000001, -36.78217316 ], [ 174.65328979, -36.77868652 ], [ 174.662170409999987, -36.77856445 ], [ 174.662170409999987, -36.77856445 ] ] ], [ [ [ 174.898895259999989, -36.74944305 ], [ 174.896392819999988, -36.74861145 ], [ 174.89805603, -36.74361038 ], [ 174.898895259999989, -36.74944305 ], [ 174.898895259999989, -36.74944305 ] ] ], [ [ [ 175.172775269999988, -36.73916626 ], [ 175.169723510000011, -36.74861145 ], [ 175.1819458, -36.75361252 ], [ 175.19221497, -36.75111008 ], [ 175.203887939999987, -36.76444626 ], [ 175.19332886, -36.77916718 ], [ 175.18777466, -36.77361298 ], [ 175.167037959999988, -36.77801514 ], [ 175.15499878, -36.78722382 ], [ 175.15861511, -36.79944611 ], [ 175.1680603, -36.80555725 ], [ 175.16305542, -36.81416702 ], [ 175.1652832, -36.82500076 ], [ 175.16085815, -36.83246994 ], [ 175.148895259999989, -36.83527756 ], [ 175.15388489, -36.8405571 ], [ 175.13806152, -36.8488884 ], [ 175.136383059999986, -36.83638763 ], [ 175.12861633, -36.83250046 ], [ 175.12319946, -36.83744049 ], [ 175.12805176, -36.84583282 ], [ 175.112777709999989, -36.84777832 ], [ 175.11193848, -36.83027649 ], [ 175.104995730000013, -36.82389069 ], [ 175.09249878, -36.83722305 ], [ 175.079162599999989, -36.83472061 ], [ 175.07556152, -36.83805466 ], [ 175.06111145, -36.83000183 ], [ 175.07139587, -36.82583237 ], [ 175.070800780000013, -36.82086182 ], [ 175.053894039999989, -36.81833267 ], [ 175.044998170000014, -36.82083511 ], [ 175.03250122, -36.8180542 ], [ 175.047775269999988, -36.80555725 ], [ 175.03305054, -36.80110931 ], [ 175.02194214, -36.8133316 ], [ 175.018066409999989, -36.80887222 ], [ 175.02722168, -36.79750061 ], [ 175.014724730000012, -36.79000092 ], [ 175.00852966, -36.79153824 ], [ 175.006057739999989, -36.80369568 ], [ 174.99868774, -36.80368805 ], [ 174.99494934, -36.81095123 ], [ 174.987503049999987, -36.81138992 ], [ 174.988891599999988, -36.79360962 ], [ 174.98167419, -36.78777695 ], [ 174.986114500000014, -36.7705574 ], [ 174.996444700000012, -36.77493286 ], [ 174.99945068, -36.76722336 ], [ 175.016113280000013, -36.76889038 ], [ 175.00971985000001, -36.77833176 ], [ 175.017791749999986, -36.78364182 ], [ 175.02166748, -36.77833176 ], [ 175.03639221, -36.77416611 ], [ 175.04083252, -36.77944565 ], [ 175.053894039999989, -36.77444458 ], [ 175.0597229, -36.76499939 ], [ 175.06083679, -36.77527618 ], [ 175.0680542, -36.78527832 ], [ 175.08653259, -36.78783798 ], [ 175.10083008, -36.78527832 ], [ 175.10806274, -36.77639008 ], [ 175.102493290000012, -36.76944351 ], [ 175.106109620000012, -36.76333237 ], [ 175.1194458, -36.76055527 ], [ 175.124099730000012, -36.76806259 ], [ 175.13667297, -36.76250076 ], [ 175.146987919999987, -36.76496124 ], [ 175.15083313, -36.75166702 ], [ 175.16027832, -36.74250031 ], [ 175.172775269999988, -36.73916626 ], [ 175.172775269999988, -36.73916626 ] ] ], [ [ [ 174.91583252, -36.72888947 ], [ 174.92555237, -36.73860931 ], [ 174.93527222, -36.74083328 ], [ 174.93028259, -36.74888992 ], [ 174.93777466, -36.75416565 ], [ 174.93804932, -36.76666641 ], [ 174.92944336, -36.76805496 ], [ 174.928894039999989, -36.78416824 ], [ 174.91555786, -36.7891655 ], [ 174.9125061, -36.79750061 ], [ 174.90306091, -36.79000092 ], [ 174.89778137, -36.7788887 ], [ 174.89204407, -36.78447723 ], [ 174.897689820000011, -36.79029465 ], [ 174.89520264, -36.79819489 ], [ 174.87414551, -36.80767822 ], [ 174.84777832, -36.8097229 ], [ 174.826385499999986, -36.78777695 ], [ 174.83778381, -36.76861191 ], [ 174.84950256, -36.76420975 ], [ 174.86947632, -36.76311111 ], [ 174.88024902, -36.76958847 ], [ 174.892776489999989, -36.76777649 ], [ 174.893890379999988, -36.75888824 ], [ 174.90083313, -36.7519455 ], [ 174.91471863000001, -36.74611282 ], [ 174.91583252, -36.72888947 ], [ 174.91583252, -36.72888947 ] ] ], [ [ [ 174.94837952, -36.70943451 ], [ 174.95300293, -36.71068192 ], [ 174.95436096, -36.72274399 ], [ 174.943435670000014, -36.72822571 ], [ 174.94250488, -36.71972275 ], [ 174.94837952, -36.70943451 ], [ 174.94837952, -36.70943451 ] ] ], [ [ [ 175.005371090000011, -36.70791245 ], [ 175.00628662, -36.70982742 ], [ 175.00375366, -36.70896149 ], [ 175.005371090000011, -36.70791245 ], [ 175.005371090000011, -36.70791245 ] ] ], [ [ [ 174.99836731, -36.69808578 ], [ 174.99772644, -36.70172501 ], [ 174.99667358, -36.69805527 ], [ 174.99836731, -36.69808578 ], [ 174.99836731, -36.69808578 ] ] ], [ [ [ 174.971069340000014, -36.69258499 ], [ 174.97795105, -36.69343185 ], [ 174.97346497, -36.69891357 ], [ 174.971069340000014, -36.69258499 ], [ 174.971069340000014, -36.69258499 ] ] ], [ [ [ 174.96234131, -36.68624878 ], [ 174.96551514, -36.68757248 ], [ 174.96388245, -36.69218063 ], [ 174.96234131, -36.68624878 ], [ 174.96234131, -36.68624878 ] ] ], [ [ [ 174.88276672, -36.59151077 ], [ 174.8999176, -36.60185242 ], [ 174.90098572, -36.60828018 ], [ 174.89105225, -36.60912323 ], [ 174.87973022, -36.59898376 ], [ 174.88276672, -36.59151077 ], [ 174.88276672, -36.59151077 ] ] ], [ [ [ 174.39993286, -36.57617187 ], [ 174.39518738000001, -36.56950378 ], [ 174.398895259999989, -36.56694412 ], [ 174.39993286, -36.57617187 ], [ 174.39993286, -36.57617187 ] ] ], [ [ [ 174.74786377, -36.51462555 ], [ 174.747024540000012, -36.50824356 ], [ 174.749801639999987, -36.50896454 ], [ 174.74786377, -36.51462555 ], [ 174.74786377, -36.51462555 ] ] ], [ [ [ 174.801422120000012, -36.49801254 ], [ 174.802825930000012, -36.50374985 ], [ 174.78611755, -36.51388931 ], [ 174.78582764, -36.50749969 ], [ 174.801422120000012, -36.49801254 ], [ 174.801422120000012, -36.49801254 ] ] ], [ [ [ 174.801239009999989, -36.47497177 ], [ 174.792221070000011, -36.47999954 ], [ 174.78805542, -36.47611237 ], [ 174.801239009999989, -36.47497177 ], [ 174.801239009999989, -36.47497177 ] ] ], [ [ [ 174.80833435, -36.46683121 ], [ 174.81388855, -36.46895981 ], [ 174.80731201, -36.47409058 ], [ 174.80833435, -36.46683121 ], [ 174.80833435, -36.46683121 ] ] ], [ [ [ 174.72694397, -36.46194458 ], [ 174.72639465, -36.46472168 ], [ 174.72471619, -36.4636116 ], [ 174.72694397, -36.46194458 ], [ 174.72694397, -36.46194458 ] ] ], [ [ [ 174.823608400000012, -36.45055389 ], [ 174.82194519, -36.45333481 ], [ 174.81916809, -36.45111084 ], [ 174.823608400000012, -36.45055389 ], [ 174.823608400000012, -36.45055389 ] ] ], [ [ [ 174.40863037, -36.44541931 ], [ 174.406707759999989, -36.44382858 ], [ 174.40885925, -36.44260788 ], [ 174.40863037, -36.44541931 ], [ 174.40863037, -36.44541931 ] ] ], [ [ [ 174.40611267, -36.4383316 ], [ 174.40861511, -36.44138718 ], [ 174.40472412, -36.4430542 ], [ 174.40611267, -36.4383316 ], [ 174.40611267, -36.4383316 ] ] ], [ [ [ 174.795166020000011, -36.42495346 ], [ 174.793167110000013, -36.4260788 ], [ 174.79425049, -36.42292786 ], [ 174.795166020000011, -36.42495346 ], [ 174.795166020000011, -36.42495346 ] ] ], [ [ [ 174.39332581, -36.42361069 ], [ 174.392776489999989, -36.42083359 ], [ 174.3972168, -36.42083359 ], [ 174.39332581, -36.42361069 ], [ 174.39332581, -36.42361069 ] ] ], [ [ [ 174.7930603, -36.41249847 ], [ 174.795272829999988, -36.41388702 ], [ 174.79333496000001, -36.4169426 ], [ 174.7930603, -36.41249847 ], [ 174.7930603, -36.41249847 ] ] ], [ [ [ 174.840164179999988, -36.39127731 ], [ 174.87805176, -36.41523743 ], [ 174.88024902, -36.43740463 ], [ 174.87445068, -36.45416641 ], [ 174.86276245, -36.44109726 ], [ 174.857055659999986, -36.44581985 ], [ 174.83703613, -36.45054626 ], [ 174.82804871, -36.43638992 ], [ 174.82025146, -36.43609238 ], [ 174.8152771, -36.42805481 ], [ 174.829727170000012, -36.42499924 ], [ 174.840271, -36.42805481 ], [ 174.854415890000013, -36.42507553 ], [ 174.85028076, -36.41805649 ], [ 174.83805847, -36.42277908 ], [ 174.81767273, -36.41349792 ], [ 174.833618159999986, -36.41027832 ], [ 174.823883059999986, -36.40732956 ], [ 174.82943726, -36.3983345 ], [ 174.83694458, -36.39888763 ], [ 174.840164179999988, -36.39127731 ], [ 174.840164179999988, -36.39127731 ] ] ], [ [ [ 174.25444031, -36.38611221 ], [ 174.25721741000001, -36.38833237 ], [ 174.2527771, -36.38777924 ], [ 174.25444031, -36.38611221 ], [ 174.25444031, -36.38611221 ] ] ], [ [ [ 174.24221802, -36.36833191 ], [ 174.24749756, -36.37250137 ], [ 174.25138855, -36.39527893 ], [ 174.24806213, -36.40083313 ], [ 174.235839840000011, -36.3769455 ], [ 174.24221802, -36.36833191 ], [ 174.24221802, -36.36833191 ] ] ], [ [ [ 174.25332642, -36.36138916 ], [ 174.24972534, -36.36833191 ], [ 174.24333191, -36.36639023 ], [ 174.25332642, -36.36138916 ], [ 174.25332642, -36.36138916 ] ] ], [ [ [ 175.50798035, -36.34883499 ], [ 175.50305176, -36.34660721 ], [ 175.507064820000011, -36.34487915 ], [ 175.50798035, -36.34883499 ], [ 175.50798035, -36.34883499 ] ] ], [ [ [ 175.54315186, -36.33336639 ], [ 175.54083252, -36.33311844 ], [ 175.543304440000014, -36.33175659 ], [ 175.54315186, -36.33336639 ], [ 175.54315186, -36.33336639 ] ] ], [ [ [ 174.769332889999987, -36.31733704 ], [ 174.76747131, -36.32003021 ], [ 174.76461792, -36.31834412 ], [ 174.769332889999987, -36.31733704 ], [ 174.769332889999987, -36.31733704 ] ] ], [ [ [ 174.796661379999989, -36.26805496 ], [ 174.795944209999988, -36.26393127 ], [ 174.8006897, -36.26434708 ], [ 174.796661379999989, -36.26805496 ], [ 174.796661379999989, -36.26805496 ] ] ], [ [ [ 175.3694458, -36.2527771 ], [ 175.37416077, -36.25583267 ], [ 175.37277222, -36.25722122 ], [ 175.3694458, -36.2527771 ], [ 175.3694458, -36.2527771 ] ] ], [ [ [ 175.49256897, -36.2543602 ], [ 175.49009705, -36.25114441 ], [ 175.49256897, -36.25114441 ], [ 175.49256897, -36.2543602 ], [ 175.49256897, -36.2543602 ] ] ], [ [ [ 175.30278015, -36.23749924 ], [ 175.30259705, -36.23859024 ], [ 175.301132200000012, -36.23760223 ], [ 175.30278015, -36.23749924 ], [ 175.30278015, -36.23749924 ] ] ], [ [ [ 175.31599426, -36.23490906 ], [ 175.31352234, -36.23515701 ], [ 175.3155365, -36.23404312 ], [ 175.31599426, -36.23490906 ], [ 175.31599426, -36.23490906 ] ] ], [ [ [ 175.30741882, -36.23115158 ], [ 175.29585266, -36.23498154 ], [ 175.3012085, -36.22740555 ], [ 175.30741882, -36.23115158 ], [ 175.30741882, -36.23115158 ] ] ], [ [ [ 175.4936676, -36.22166824 ], [ 175.49290466, -36.22049332 ], [ 175.49467468, -36.21975327 ], [ 175.4936676, -36.22166824 ], [ 175.4936676, -36.22166824 ] ] ], [ [ [ 175.29943848, -36.21888733 ], [ 175.31195068, -36.22499847 ], [ 175.29417419, -36.22249985 ], [ 175.29943848, -36.21888733 ], [ 175.29943848, -36.21888733 ] ] ], [ [ [ 175.28639221, -36.21333313 ], [ 175.289993290000012, -36.21888733 ], [ 175.288604740000011, -36.22138977 ], [ 175.28639221, -36.21333313 ], [ 175.28639221, -36.21333313 ] ] ], [ [ [ 175.297775269999988, -36.20027924 ], [ 175.29804993, -36.20416641 ], [ 175.295837400000011, -36.20027924 ], [ 175.297775269999988, -36.20027924 ], [ 175.297775269999988, -36.20027924 ] ] ], [ [ [ 175.304901120000011, -36.1999321 ], [ 175.30366516, -36.20042419 ], [ 175.30366516, -36.19844818 ], [ 175.304901120000011, -36.1999321 ], [ 175.304901120000011, -36.1999321 ] ] ], [ [ [ 175.30844116, -36.18930054 ], [ 175.30427551, -36.1890564 ], [ 175.30551147, -36.18769455 ], [ 175.30844116, -36.18930054 ], [ 175.30844116, -36.18930054 ] ] ], [ [ [ 175.306442260000011, -36.18621063 ], [ 175.30535889, -36.1869545 ], [ 175.30474854, -36.18473053 ], [ 175.306442260000011, -36.18621063 ], [ 175.306442260000011, -36.18621063 ] ] ], [ [ [ 175.294982909999987, -36.18518066 ], [ 175.29252625, -36.1829567 ], [ 175.29437256, -36.18246078 ], [ 175.294982909999987, -36.18518066 ], [ 175.294982909999987, -36.18518066 ] ] ], [ [ [ 175.09361267, -36.16916656 ], [ 175.10583496000001, -36.16944504 ], [ 175.11610413, -36.1827774 ], [ 175.110275269999988, -36.1883316 ], [ 175.11193848, -36.21416855 ], [ 175.10667419, -36.22861099 ], [ 175.09916687, -36.23222351 ], [ 175.078338620000011, -36.23083496 ], [ 175.05999756, -36.22166824 ], [ 175.05055237, -36.2211113 ], [ 175.048614500000014, -36.20444489 ], [ 175.051391599999988, -36.18500137 ], [ 175.0708313, -36.17694473 ], [ 175.077774049999988, -36.17916489 ], [ 175.09361267, -36.16916656 ], [ 175.09361267, -36.16916656 ] ] ], [ [ [ 175.300155640000014, -36.16735458 ], [ 175.295837400000011, -36.16488266 ], [ 175.301544189999987, -36.1646347 ], [ 175.300155640000014, -36.16735458 ], [ 175.300155640000014, -36.16735458 ] ] ], [ [ [ 175.339080810000013, -36.16407394 ], [ 175.34249878, -36.17833328 ], [ 175.333892819999988, -36.18111038 ], [ 175.33778381, -36.18583298 ], [ 175.331115720000014, -36.19083405 ], [ 175.31277466, -36.18138885 ], [ 175.30332947, -36.16944504 ], [ 175.30528259, -36.16555405 ], [ 175.323608400000012, -36.17083359 ], [ 175.339080810000013, -36.16407394 ], [ 175.339080810000013, -36.16407394 ] ] ], [ [ [ 175.49806213, -36.16305542 ], [ 175.4916687, -36.16527939 ], [ 175.48971558, -36.16277695 ], [ 175.49806213, -36.16305542 ], [ 175.49806213, -36.16305542 ] ] ], [ [ [ 175.28805542, -36.1594429 ], [ 175.29444885, -36.16277695 ], [ 175.29272461, -36.1672287 ], [ 175.28805542, -36.1594429 ], [ 175.28805542, -36.1594429 ] ] ], [ [ [ 175.30888367, -36.14138794 ], [ 175.31111145, -36.14277649 ], [ 175.30833435, -36.14444351 ], [ 175.30888367, -36.14138794 ], [ 175.30888367, -36.14138794 ] ] ], [ [ [ 174.63522339, -36.14515686 ], [ 174.65336609, -36.1629715 ], [ 174.65110779, -36.16749954 ], [ 174.667343140000014, -36.18865204 ], [ 174.68914795, -36.21086502 ], [ 174.72833252, -36.24499893 ], [ 174.74720764, -36.25767899 ], [ 174.768615720000014, -36.25916672 ], [ 174.779785159999989, -36.26965332 ], [ 174.79914856, -36.26813507 ], [ 174.82028198, -36.27444458 ], [ 174.822509770000011, -36.27960587 ], [ 174.800003049999987, -36.30444336 ], [ 174.79466248, -36.30353928 ], [ 174.797775269999988, -36.32204437 ], [ 174.78379822, -36.32040024 ], [ 174.78259277, -36.30789185 ], [ 174.75750732, -36.31916809 ], [ 174.763885499999986, -36.32805634 ], [ 174.75971985000001, -36.33666611 ], [ 174.768890379999988, -36.35416794 ], [ 174.77638245, -36.35944366 ], [ 174.777771, -36.35222244 ], [ 174.768615720000014, -36.34083176 ], [ 174.77565002, -36.32389069 ], [ 174.780471799999987, -36.32223129 ], [ 174.78083801, -36.33972168 ], [ 174.78889465, -36.35111237 ], [ 174.804367070000012, -36.34745026 ], [ 174.81654358, -36.35943985 ], [ 174.839233400000012, -36.36986923 ], [ 174.856384279999986, -36.36583328 ], [ 174.86193848, -36.36000061 ], [ 174.86557007, -36.37009048 ], [ 174.84693909, -36.38083267 ], [ 174.8449707, -36.37844849 ], [ 174.82194519, -36.37666702 ], [ 174.80479431, -36.38342667 ], [ 174.79559326, -36.37924194 ], [ 174.792053220000014, -36.38952255 ], [ 174.779785159999989, -36.38541794 ], [ 174.768341060000012, -36.3912735 ], [ 174.7649231, -36.38343811 ], [ 174.75772095, -36.38233185 ], [ 174.757186890000014, -36.39266968 ], [ 174.742675780000013, -36.39739609 ], [ 174.7315979, -36.38865662 ], [ 174.73822021, -36.37300873 ], [ 174.731384279999986, -36.37333298 ], [ 174.721054079999988, -36.38892746 ], [ 174.73872375, -36.40179443 ], [ 174.72975159, -36.41090775 ], [ 174.73208618000001, -36.42351151 ], [ 174.73948669, -36.42406845 ], [ 174.74694824, -36.43638992 ], [ 174.76118469, -36.43070221 ], [ 174.76008606, -36.43761826 ], [ 174.773773190000014, -36.44091797 ], [ 174.7658844, -36.44686127 ], [ 174.766922, -36.46149063 ], [ 174.75508118, -36.4749527 ], [ 174.75213623, -36.49309921 ], [ 174.73979187, -36.49824142 ], [ 174.734725950000012, -36.48777771 ], [ 174.74414063, -36.48487473 ], [ 174.74572754, -36.47399139 ], [ 174.73944092, -36.47055435 ], [ 174.728607180000012, -36.48472214 ], [ 174.731384279999986, -36.45166779 ], [ 174.722854610000013, -36.43668365 ], [ 174.7141571, -36.43139648 ], [ 174.707931519999988, -36.43462753 ], [ 174.7134552, -36.44461441 ], [ 174.703460690000014, -36.44823456 ], [ 174.71095276, -36.4511528 ], [ 174.703613280000013, -36.4655571 ], [ 174.711837769999988, -36.46228027 ], [ 174.719665529999986, -36.47034454 ], [ 174.711425780000013, -36.47318268 ], [ 174.715271, -36.48749924 ], [ 174.70341492, -36.47452164 ], [ 174.69139099, -36.48138809 ], [ 174.70776367, -36.48524094 ], [ 174.706115720000014, -36.49472046 ], [ 174.7194519, -36.49499893 ], [ 174.71861267, -36.50361252 ], [ 174.73017883, -36.51727676 ], [ 174.722045900000012, -36.51877975 ], [ 174.72195435, -36.52544785 ], [ 174.711715700000013, -36.53026962 ], [ 174.71861267, -36.54611206 ], [ 174.71194458, -36.54888916 ], [ 174.704879760000011, -36.56425476 ], [ 174.69667053, -36.5616684 ], [ 174.69250488, -36.57527924 ], [ 174.70056152, -36.5961113 ], [ 174.72000122, -36.61027908 ], [ 174.732772829999988, -36.6222229 ], [ 174.74018860000001, -36.62414169 ], [ 174.74499512, -36.61805725 ], [ 174.75444031, -36.62861252 ], [ 174.764984129999988, -36.62617874 ], [ 174.77359009, -36.60601807 ], [ 174.7988739, -36.60061646 ], [ 174.81231689, -36.60146332 ], [ 174.82698059, -36.5920105 ], [ 174.83917236, -36.59249878 ], [ 174.841857909999987, -36.60139465 ], [ 174.83789063, -36.61478806 ], [ 174.83258057, -36.61993027 ], [ 174.823577879999988, -36.61423111 ], [ 174.81634521, -36.61763763 ], [ 174.80860901, -36.60836029 ], [ 174.80607605, -36.62430191 ], [ 174.798736569999988, -36.62942505 ], [ 174.789825439999987, -36.62469482 ], [ 174.771560670000014, -36.62540054 ], [ 174.77210999, -36.63004303 ], [ 174.76054382, -36.64135742 ], [ 174.749786379999989, -36.63983917 ], [ 174.73733521, -36.64815521 ], [ 174.727615359999987, -36.64610291 ], [ 174.7306366, -36.66270447 ], [ 174.71234131, -36.67443466 ], [ 174.730789179999988, -36.66940689 ], [ 174.744354249999986, -36.66017151 ], [ 174.74905396, -36.68097305 ], [ 174.763610840000013, -36.69583511 ], [ 174.75305176, -36.70249939 ], [ 174.74972534, -36.71416855 ], [ 174.75889587, -36.73083496 ], [ 174.75726318, -36.73915863 ], [ 174.770309450000013, -36.75818253 ], [ 174.76841736, -36.76640701 ], [ 174.77722168, -36.77388763 ], [ 174.775588989999989, -36.78743362 ], [ 174.79258728, -36.79959869 ], [ 174.81411743000001, -36.82762527 ], [ 174.79649353, -36.8332634 ], [ 174.784667969999987, -36.83230972 ], [ 174.77507019, -36.82492447 ], [ 174.78692627, -36.82000351 ], [ 174.78109741, -36.8153801 ], [ 174.762496950000013, -36.82110977 ], [ 174.77703857, -36.80975342 ], [ 174.765289309999986, -36.79846954 ], [ 174.751754760000011, -36.81555557 ], [ 174.74848938, -36.82757187 ], [ 174.74018860000001, -36.81729126 ], [ 174.73616028, -36.82245255 ], [ 174.70968628, -36.82638931 ], [ 174.6967926, -36.82323074 ], [ 174.679351809999986, -36.78834152 ], [ 174.6652832, -36.78111267 ], [ 174.66256714, -36.77205276 ], [ 174.67308044, -36.75695801 ], [ 174.65957642, -36.77095795 ], [ 174.6519165, -36.76856232 ], [ 174.63491821, -36.77178574 ], [ 174.633605960000011, -36.76700974 ], [ 174.607208250000014, -36.77388763 ], [ 174.63545227, -36.77622604 ], [ 174.64450073, -36.7746048 ], [ 174.64848328, -36.78260422 ], [ 174.64149475, -36.79126358 ], [ 174.666076659999987, -36.78504181 ], [ 174.67539978, -36.7949028 ], [ 174.67045593, -36.8055191 ], [ 174.65361023, -36.80459595 ], [ 174.638885499999986, -36.82361221 ], [ 174.64219666, -36.83140564 ], [ 174.645004269999987, -36.82194519 ], [ 174.65786743000001, -36.81516647 ], [ 174.65609741, -36.8277359 ], [ 174.661605830000013, -36.83152008 ], [ 174.663604740000011, -36.84666824 ], [ 174.65629578, -36.85379028 ], [ 174.65861511, -36.87942505 ], [ 174.66769409, -36.88144302 ], [ 174.66516113, -36.88782883 ], [ 174.67401123, -36.89351654 ], [ 174.67303467, -36.88363647 ], [ 174.664382929999988, -36.8796196 ], [ 174.65834045, -36.86536407 ], [ 174.66664124, -36.85723495 ], [ 174.6815033, -36.87699127 ], [ 174.69096375, -36.88014984 ], [ 174.703872679999989, -36.8506546 ], [ 174.70898438, -36.85595703 ], [ 174.73573303, -36.84051132 ], [ 174.74276733, -36.83430862 ], [ 174.746704099999988, -36.84137726 ], [ 174.76473999000001, -36.83957672 ], [ 174.78166199, -36.8433342 ], [ 174.78527832, -36.84000015 ], [ 174.792770389999987, -36.84860992 ], [ 174.79075623, -36.86040115 ], [ 174.81184387, -36.86079025 ], [ 174.805175780000013, -36.85333252 ], [ 174.81434631, -36.85197067 ], [ 174.82421875, -36.84395981 ], [ 174.846191409999989, -36.8504982 ], [ 174.85612488000001, -36.85035324 ], [ 174.86471558, -36.84361267 ], [ 174.87539673, -36.84647751 ], [ 174.884262080000013, -36.85935211 ], [ 174.88555908, -36.87333298 ], [ 174.877304079999988, -36.87441635 ], [ 174.86975098, -36.88442993 ], [ 174.868896479999989, -36.90222168 ], [ 174.85221863000001, -36.9141655 ], [ 174.86254883, -36.92725372 ], [ 174.85414124, -36.92984009 ], [ 174.8666687, -36.93305588 ], [ 174.857772829999988, -36.93861008 ], [ 174.85714722, -36.9468689 ], [ 174.87176514, -36.93473053 ], [ 174.87007141, -36.91969681 ], [ 174.862777709999989, -36.92250061 ], [ 174.85900879, -36.90898895 ], [ 174.87554932, -36.90472412 ], [ 174.87930298, -36.89136887 ], [ 174.887496950000013, -36.89027786 ], [ 174.89694214, -36.87888718 ], [ 174.90596008, -36.87366104 ], [ 174.898895259999989, -36.85972214 ], [ 174.89833069, -36.8461113 ], [ 174.90472412, -36.84777832 ], [ 174.90541077, -36.85891724 ], [ 174.914840700000013, -36.87380981 ], [ 174.927246090000011, -36.87918091 ], [ 174.94248962, -36.8927803 ], [ 174.95169067, -36.89477921 ], [ 174.95469666, -36.90237808 ], [ 174.951660159999989, -36.91249847 ], [ 174.962799069999988, -36.91230011 ], [ 174.97639465, -36.90750122 ], [ 174.99249268, -36.90805435 ], [ 174.9863739, -36.89934158 ], [ 174.983337400000011, -36.88277817 ], [ 175.00054932, -36.87611008 ], [ 175.01698303, -36.88047409 ], [ 175.0249939, -36.87555695 ], [ 175.038604740000011, -36.87388992 ], [ 175.043609620000012, -36.88000107 ], [ 175.05955505, -36.88559723 ], [ 175.06460571, -36.90013123 ], [ 175.07069397, -36.90451813 ], [ 175.09861755, -36.89972305 ], [ 175.081405640000014, -36.91238403 ], [ 175.08082581, -36.91999817 ], [ 175.0874939, -36.93916702 ], [ 175.0930481, -36.94527817 ], [ 175.113891599999988, -36.94416809 ], [ 175.11555481, -36.93805695 ], [ 175.12889099, -36.9394455 ], [ 175.13555908, -36.93083191 ], [ 175.143890379999988, -36.92777634 ], [ 175.1444397, -36.9383316 ], [ 175.15249634, -36.9402771 ], [ 175.15638733, -36.95000076 ], [ 175.16833496000001, -36.94666672 ], [ 175.17582703, -36.9375 ], [ 175.19166565, -36.92944336 ], [ 175.20555115, -36.94111252 ], [ 175.230270389999987, -36.94889069 ], [ 175.238891599999988, -36.95694351 ], [ 175.24888611, -36.95611191 ], [ 175.25166321, -36.96666718 ], [ 175.27444458, -36.98527908 ], [ 175.28305054, -36.98749924 ], [ 175.28782654, -36.99531174 ], [ 175.27339172, -37.02422333 ], [ 175.267211909999986, -37.02603531 ], [ 175.216308590000011, -37.03106689 ], [ 175.20687866, -37.03936005 ], [ 175.18336487, -37.03012848 ], [ 175.18638611, -37.02379227 ], [ 175.17288208, -37.01697159 ], [ 175.15328979, -37.02281189 ], [ 175.16027832, -37.03159332 ], [ 175.16073608, -37.04232407 ], [ 175.151580810000013, -37.06135941 ], [ 175.12791443, -37.05207825 ], [ 175.11830139, -37.06035995 ], [ 175.10475159, -37.05350113 ], [ 175.09165955, -37.05736542 ], [ 175.08161926, -37.05489349 ], [ 175.08465576, -37.04856491 ], [ 175.077667240000011, -37.0397644 ], [ 175.05805969, -37.04554367 ], [ 175.06155396, -37.04994583 ], [ 175.048477170000012, -37.05379486 ], [ 175.04588318, -37.07086182 ], [ 175.0328064, -37.07471085 ], [ 175.03630066, -37.07912064 ], [ 175.023223879999989, -37.08296967 ], [ 175.02061462, -37.10005188 ], [ 175.02410889, -37.10446548 ], [ 175.01101685, -37.10831833 ], [ 175.01802063, -37.11714172 ], [ 175.01496887, -37.12348175 ], [ 175.001861569999988, -37.12733841 ], [ 175.005371090000011, -37.13175201 ], [ 174.97915649, -37.13946152 ], [ 174.982208250000014, -37.13311768 ], [ 174.96911621000001, -37.13697052 ], [ 174.95864868000001, -37.12372208 ], [ 174.94554138, -37.12756729 ], [ 174.93942261, -37.14025116 ], [ 174.94332886, -37.15543365 ], [ 174.95294189, -37.14716339 ], [ 174.96690369, -37.16483307 ], [ 174.97695923, -37.16732025 ], [ 174.98396301, -37.17615128 ], [ 174.980896, -37.18249512 ], [ 174.994903560000012, -37.20016098 ], [ 174.991851809999986, -37.20650482 ], [ 175.00192261, -37.20898819 ], [ 174.979568480000012, -37.231884 ], [ 174.983078, -37.23629761 ], [ 174.96992493, -37.24015808 ], [ 174.94320679, -37.23711777 ], [ 174.93621826, -37.22828293 ], [ 174.92308044, -37.23213577 ], [ 174.937042240000011, -37.24981308 ], [ 174.93395996000001, -37.25615692 ], [ 174.920806879999986, -37.26001358 ], [ 174.927795409999987, -37.26884842 ], [ 174.92121887, -37.27077866 ], [ 174.91853333, -37.28787994 ], [ 174.884841920000014, -37.27599716 ], [ 174.86471558, -37.27100372 ], [ 174.85157776, -37.27485275 ], [ 174.85195923, -37.28562164 ], [ 174.84538269, -37.28754807 ], [ 174.852340700000013, -37.29639435 ], [ 174.849243159999986, -37.302742 ], [ 174.82292175, -37.31043625 ], [ 174.823303220000014, -37.32120895 ], [ 174.81323242, -37.3241539 ], [ 174.801391599999988, -37.32055664 ], [ 174.78222656, -37.32722092 ], [ 174.75944519, -37.34277725 ], [ 174.75527954, -37.34027863 ], [ 174.770004269999987, -37.32389069 ], [ 174.75889587, -37.32694626 ], [ 174.74610901, -37.33499908 ], [ 174.74055481, -37.34361267 ], [ 174.74583435, -37.35258102 ], [ 174.74339294, -37.36933517 ], [ 174.72793579, -37.38022995 ], [ 174.7191925, -37.38008881 ], [ 174.70744324, -37.36303329 ], [ 174.686874390000014, -37.35016632 ], [ 174.66555786, -37.30444336 ], [ 174.62750244, -37.23333359 ], [ 174.60806274, -37.19916534 ], [ 174.59635925, -37.1749115 ], [ 174.53805542, -37.07527924 ], [ 174.536193849999989, -37.05663681 ], [ 174.54148865, -37.04803467 ], [ 174.563537599999989, -37.04257202 ], [ 174.582229610000013, -37.04580688 ], [ 174.59613037, -37.04479218 ], [ 174.6033783, -37.0488739 ], [ 174.618377689999988, -37.04405975 ], [ 174.62768555, -37.03572083 ], [ 174.63929749, -37.04273987 ], [ 174.658401489999989, -37.04346085 ], [ 174.66659546, -37.05578232 ], [ 174.66238403, -37.07104874 ], [ 174.651550289999989, -37.07485199 ], [ 174.6582489, -37.08179855 ], [ 174.64932251, -37.08469772 ], [ 174.659835820000012, -37.09937286 ], [ 174.65719604, -37.1036644 ], [ 174.66603088, -37.11007309 ], [ 174.65834045, -37.11777878 ], [ 174.66726685, -37.11764908 ], [ 174.67073059, -37.1275444 ], [ 174.66278076, -37.13360977 ], [ 174.66549683, -37.13876724 ], [ 174.68989563, -37.14783478 ], [ 174.68093872, -37.1594162 ], [ 174.697479249999986, -37.15065384 ], [ 174.699020389999987, -37.15457916 ], [ 174.68888855, -37.16361237 ], [ 174.69416809, -37.18611145 ], [ 174.703887939999987, -37.1866684 ], [ 174.69416809, -37.19833374 ], [ 174.704162599999989, -37.19610977 ], [ 174.704727170000012, -37.21444321 ], [ 174.71903992, -37.21577072 ], [ 174.721740720000014, -37.23689651 ], [ 174.736114500000014, -37.23500061 ], [ 174.73854065, -37.22458649 ], [ 174.7253418, -37.22209167 ], [ 174.72193909, -37.20861053 ], [ 174.714218140000014, -37.20185089 ], [ 174.7207489, -37.18832779 ], [ 174.71542358, -37.18151855 ], [ 174.71470642, -37.16691208 ], [ 174.703460690000014, -37.15739441 ], [ 174.72558594, -37.15255737 ], [ 174.740737919999987, -37.16088867 ], [ 174.74615479, -37.17043304 ], [ 174.77471924, -37.16305542 ], [ 174.79055786, -37.16222382 ], [ 174.769210820000012, -37.15892792 ], [ 174.75379944, -37.16146088 ], [ 174.745040890000013, -37.16618347 ], [ 174.74511719, -37.15767288 ], [ 174.7361908, -37.14894485 ], [ 174.71401978, -37.152668 ], [ 174.70425415, -37.15139008 ], [ 174.70523071, -37.14375687 ], [ 174.69020081, -37.14219666 ], [ 174.69058228, -37.13669205 ], [ 174.72889709, -37.13051224 ], [ 174.74328613, -37.12337875 ], [ 174.75526428, -37.11260605 ], [ 174.77049255, -37.09150696 ], [ 174.77679443, -37.08836365 ], [ 174.79382324, -37.09136581 ], [ 174.793884279999986, -37.10111237 ], [ 174.80607605, -37.08727264 ], [ 174.823608400000012, -37.08222198 ], [ 174.83636475, -37.07331085 ], [ 174.84182739, -37.06376266 ], [ 174.85545349, -37.05511093 ], [ 174.86341858, -37.06336212 ], [ 174.8768158, -37.06953812 ], [ 174.88800049, -37.06748581 ], [ 174.89593506, -37.06103897 ], [ 174.90306091, -37.07277679 ], [ 174.91123962, -37.06416321 ], [ 174.924331669999987, -37.06008148 ], [ 174.917480469999987, -37.0536232 ], [ 174.90698242, -37.05328369 ], [ 174.90655518, -37.04590988 ], [ 174.89321899, -37.05011749 ], [ 174.88731384, -37.05898285 ], [ 174.869644169999987, -37.05386353 ], [ 174.87107849, -37.04896545 ], [ 174.885665890000013, -37.0430603 ], [ 174.874084470000014, -37.04246902 ], [ 174.86328125, -37.0529747 ], [ 174.857788090000014, -37.05137253 ], [ 174.85549927, -37.02599335 ], [ 174.84832764, -37.0336113 ], [ 174.83256531, -37.01757431 ], [ 174.8097229, -37.0055542 ], [ 174.8097229, -37.01777649 ], [ 174.793731689999987, -37.01195145 ], [ 174.76547241, -37.01953888 ], [ 174.77416992, -37.01083374 ], [ 174.751037599999989, -36.99941635 ], [ 174.7416687, -36.99208832 ], [ 174.74717712, -36.98075104 ], [ 174.76077271, -36.9774704 ], [ 174.7746582, -36.96874619 ], [ 174.77583313, -36.95972061 ], [ 174.7562561, -36.94947052 ], [ 174.75628662, -36.94068527 ], [ 174.79141235, -36.93827057 ], [ 174.802978520000011, -36.9471283 ], [ 174.81509399, -36.9428215 ], [ 174.81771851, -36.94869232 ], [ 174.82885742, -36.93861389 ], [ 174.828887939999987, -36.93102264 ], [ 174.78973389, -36.93144226 ], [ 174.7827301, -36.93377686 ], [ 174.772521970000014, -36.92459869 ], [ 174.758575439999987, -36.93213272 ], [ 174.740600590000014, -36.932827 ], [ 174.73147583, -36.93881226 ], [ 174.71430969, -36.9348793 ], [ 174.7114563, -36.92741776 ], [ 174.702789309999986, -36.93151855 ], [ 174.68081665, -36.93448639 ], [ 174.66665649, -36.94392014 ], [ 174.6643219, -36.95485687 ], [ 174.660476679999988, -36.95121765 ], [ 174.652008059999986, -36.96409988 ], [ 174.645172120000012, -36.96048737 ], [ 174.64451599, -36.96909714 ], [ 174.633270259999989, -36.97922516 ], [ 174.62127686, -36.97101593 ], [ 174.61820984, -36.9884491 ], [ 174.60464478, -36.99318314 ], [ 174.603149409999986, -37.00133514 ], [ 174.61245728, -37.0196991 ], [ 174.60089111, -37.01769257 ], [ 174.59416199, -37.00508499 ], [ 174.57286072, -37.01064301 ], [ 174.566894530000013, -36.99916458 ], [ 174.55845642, -37.02070999 ], [ 174.534805299999988, -37.0325737 ], [ 174.526412959999988, -37.03224564 ], [ 174.50762939, -37.04738617 ], [ 174.49095154, -37.0520668 ], [ 174.48316956, -37.04669952 ], [ 174.47659302, -37.02732468 ], [ 174.47538757, -36.99555206 ], [ 174.46765137, -36.98597717 ], [ 174.46028137, -36.95999908 ], [ 174.46801758, -36.95759201 ], [ 174.46606445, -36.94641876 ], [ 174.45916748, -36.93500137 ], [ 174.450271609999987, -36.92861176 ], [ 174.453338620000011, -36.92222214 ], [ 174.44389343, -36.91194534 ], [ 174.446105960000011, -36.8955574 ], [ 174.43756104, -36.88339233 ], [ 174.428894039999989, -36.87888718 ], [ 174.43360901, -36.86888885 ], [ 174.42694092, -36.85194397 ], [ 174.43110657, -36.84833145 ], [ 174.42648315, -36.83020401 ], [ 174.41694641, -36.80916595 ], [ 174.41278076, -36.80555725 ], [ 174.387496950000013, -36.76610947 ], [ 174.366394039999989, -36.73555374 ], [ 174.28250122, -36.6222229 ], [ 174.2444458, -36.57805634 ], [ 174.18110657, -36.50860977 ], [ 174.16471863000001, -36.48860931 ], [ 174.16082764, -36.47638702 ], [ 174.16166687, -36.4608345 ], [ 174.16944885, -36.44805527 ], [ 174.18861389, -36.44083405 ], [ 174.20317078, -36.42809677 ], [ 174.22583008, -36.42694473 ], [ 174.22583008, -36.42944336 ], [ 174.204162599999989, -36.43222046 ], [ 174.19332886, -36.44555664 ], [ 174.1902771, -36.45611191 ], [ 174.19778442, -36.46250153 ], [ 174.19944763, -36.44944382 ], [ 174.20555115, -36.43777847 ], [ 174.21305847, -36.4375 ], [ 174.2359314, -36.427845 ], [ 174.25250244, -36.45249939 ], [ 174.25965881, -36.45434952 ], [ 174.28012085, -36.49325943 ], [ 174.29333496000001, -36.50333405 ], [ 174.29267883, -36.5084877 ], [ 174.302505489999987, -36.52722168 ], [ 174.324996950000013, -36.5363884 ], [ 174.35083008, -36.54333496 ], [ 174.3555603, -36.55222321 ], [ 174.37971497, -36.56861115 ], [ 174.375, -36.57722092 ], [ 174.362503049999987, -36.58333206 ], [ 174.36384583, -36.5953064 ], [ 174.360000609999986, -36.60722351 ], [ 174.376464840000011, -36.59213257 ], [ 174.376190189999988, -36.60593414 ], [ 174.38534546, -36.6158638 ], [ 174.39944458, -36.6202774 ], [ 174.40306091, -36.6258316 ], [ 174.418609620000012, -36.61833191 ], [ 174.421112060000013, -36.61027908 ], [ 174.43638611, -36.61000061 ], [ 174.440643310000013, -36.60068893 ], [ 174.432678220000014, -36.5900116 ], [ 174.40834045, -36.58444595 ], [ 174.41389465, -36.57722092 ], [ 174.42971802, -36.57944489 ], [ 174.41917419, -36.57055664 ], [ 174.423751829999986, -36.55867386 ], [ 174.44221497, -36.55666733 ], [ 174.43556213, -36.54472351 ], [ 174.427505489999987, -36.53888702 ], [ 174.422225950000012, -36.52777863 ], [ 174.42666626, -36.52222061 ], [ 174.422775269999988, -36.51139069 ], [ 174.43055725, -36.51111221 ], [ 174.423889159999987, -36.49666595 ], [ 174.41172791, -36.48948288 ], [ 174.4055481, -36.47750092 ], [ 174.409729, -36.46666718 ], [ 174.41000366, -36.44777679 ], [ 174.41760254, -36.43902588 ], [ 174.43943787, -36.42750168 ], [ 174.42852783, -36.42801666 ], [ 174.42555237, -36.42083359 ], [ 174.41221619, -36.41027832 ], [ 174.413604740000011, -36.40277863 ], [ 174.397506709999988, -36.39722061 ], [ 174.393615720000014, -36.38888931 ], [ 174.41870117, -36.3806572 ], [ 174.42555237, -36.37388992 ], [ 174.41111755, -36.36777878 ], [ 174.417221070000011, -36.35889053 ], [ 174.402771, -36.3544426 ], [ 174.40499878, -36.36500168 ], [ 174.416107180000012, -36.37472153 ], [ 174.40596008, -36.38108826 ], [ 174.38555908, -36.38611221 ], [ 174.381896970000014, -36.4062233 ], [ 174.368225099999989, -36.40099716 ], [ 174.36384583, -36.40944672 ], [ 174.356109620000012, -36.41194534 ], [ 174.35028076, -36.40277863 ], [ 174.325286870000014, -36.38490295 ], [ 174.31361389, -36.38277817 ], [ 174.310775760000013, -36.39226913 ], [ 174.29055786, -36.38999939 ], [ 174.27287292, -36.39101791 ], [ 174.25138855, -36.38138962 ], [ 174.25027466, -36.37527847 ], [ 174.262496950000013, -36.35583496 ], [ 174.25889587, -36.34500122 ], [ 174.25805664, -36.3144455 ], [ 174.262496950000013, -36.32166672 ], [ 174.26333618000001, -36.3405571 ], [ 174.26832581, -36.31027603 ], [ 174.28166199, -36.30444336 ], [ 174.297225950000012, -36.30749893 ], [ 174.31333923, -36.32277679 ], [ 174.35398865, -36.32294464 ], [ 174.363891599999988, -36.31861115 ], [ 174.36610413, -36.31027603 ], [ 174.373947140000013, -36.31713867 ], [ 174.37928772, -36.31167984 ], [ 174.39144897, -36.30988693 ], [ 174.39305115, -36.30222321 ], [ 174.40750122, -36.29277802 ], [ 174.41661072, -36.2756424 ], [ 174.42778015, -36.27361298 ], [ 174.44082642, -36.26555634 ], [ 174.453338620000011, -36.25333405 ], [ 174.46499634, -36.26166534 ], [ 174.47138977, -36.25860977 ], [ 174.47721863000001, -36.23013306 ], [ 174.48692322, -36.23255539 ], [ 174.490173340000013, -36.22624207 ], [ 174.49987793, -36.22865677 ], [ 174.51280212, -36.22473526 ], [ 174.509567260000011, -36.22036743 ], [ 174.52890015, -36.21446228 ], [ 174.522399900000011, -36.20570755 ], [ 174.53198242, -36.19737625 ], [ 174.531875609999986, -36.18663406 ], [ 174.557525629999986, -36.17871094 ], [ 174.56723022, -36.1811409 ], [ 174.573440549999987, -36.16841507 ], [ 174.58314514, -36.17086792 ], [ 174.58930969, -36.15815735 ], [ 174.58268738000001, -36.14934158 ], [ 174.60180664, -36.1435051 ], [ 174.59849548, -36.13909531 ], [ 174.61122131, -36.1352272 ], [ 174.61094666, -36.12446976 ], [ 174.619506840000014, -36.12182999 ], [ 174.63522339, -36.14515686 ], [ 174.63522339, -36.14515686 ] ] ], [ [ [ 175.49740601, -36.11763382 ], [ 175.511383059999986, -36.11999893 ], [ 175.49668884, -36.13606262 ], [ 175.48693848, -36.13416672 ], [ 175.48666382, -36.12444305 ], [ 175.49740601, -36.11763382 ], [ 175.49740601, -36.11763382 ] ] ], [ [ [ 175.41055298, -36.02999878 ], [ 175.41694641, -36.03333282 ], [ 175.40249634, -36.04277802 ], [ 175.40583801, -36.05361176 ], [ 175.414993290000012, -36.06277847 ], [ 175.40415955, -36.07027817 ], [ 175.41111755, -36.07110977 ], [ 175.40499878, -36.08083344 ], [ 175.41082764, -36.0933342 ], [ 175.422500609999986, -36.08527756 ], [ 175.426391599999988, -36.09111023 ], [ 175.425003049999987, -36.10222244 ], [ 175.43110657, -36.10749817 ], [ 175.44639587, -36.10749817 ], [ 175.43972778, -36.11583328 ], [ 175.42971802, -36.11249924 ], [ 175.425277709999989, -36.11750031 ], [ 175.425277709999989, -36.13360977 ], [ 175.4291687, -36.14027786 ], [ 175.420272829999988, -36.14055634 ], [ 175.424728390000013, -36.14611053 ], [ 175.43722534, -36.14166641 ], [ 175.448608400000012, -36.15250015 ], [ 175.453338620000011, -36.15055466 ], [ 175.46360779, -36.15805435 ], [ 175.47555542, -36.1566658 ], [ 175.485000609999986, -36.16916656 ], [ 175.49694824, -36.16611099 ], [ 175.506103520000011, -36.17250061 ], [ 175.49638367, -36.17972183 ], [ 175.49667358, -36.18888855 ], [ 175.490005489999987, -36.1866684 ], [ 175.481384279999986, -36.20750046 ], [ 175.488891599999988, -36.21500015 ], [ 175.47361755, -36.23389053 ], [ 175.47639465, -36.24638748 ], [ 175.49777222, -36.26833344 ], [ 175.50971985000001, -36.26416779 ], [ 175.52194214, -36.27777863 ], [ 175.52667236, -36.27777863 ], [ 175.53666687, -36.2919426 ], [ 175.54556274, -36.29694366 ], [ 175.55082703, -36.31583405 ], [ 175.54167175, -36.3180542 ], [ 175.53694153, -36.32916641 ], [ 175.53833008, -36.33750153 ], [ 175.52915955, -36.34805679 ], [ 175.520278929999989, -36.3488884 ], [ 175.50054932, -36.33833313 ], [ 175.49028015, -36.34027863 ], [ 175.47389221, -36.33194351 ], [ 175.48445129000001, -36.31944275 ], [ 175.49194336, -36.32361221 ], [ 175.49417114, -36.31222153 ], [ 175.48944092, -36.30472183 ], [ 175.47055054, -36.30138779 ], [ 175.46833801, -36.30888748 ], [ 175.45944214, -36.3133316 ], [ 175.453887939999987, -36.30638885 ], [ 175.43222046, -36.30916595 ], [ 175.43417358, -36.28666687 ], [ 175.42944336, -36.2816658 ], [ 175.43305969, -36.27249908 ], [ 175.44250488, -36.26444626 ], [ 175.42555237, -36.26055527 ], [ 175.41471863000001, -36.26889038 ], [ 175.40333557, -36.26638794 ], [ 175.39805603, -36.25944519 ], [ 175.40361023, -36.25694275 ], [ 175.3972168, -36.2452774 ], [ 175.391113280000013, -36.24388885 ], [ 175.386383059999986, -36.2555542 ], [ 175.3722229, -36.25138855 ], [ 175.34944153, -36.22888947 ], [ 175.32278442, -36.22055435 ], [ 175.324996950000013, -36.22750092 ], [ 175.31416321, -36.22499847 ], [ 175.30860901, -36.21277618 ], [ 175.31388855, -36.20750046 ], [ 175.31195068, -36.19166565 ], [ 175.318603520000011, -36.19916534 ], [ 175.326110840000013, -36.19138718 ], [ 175.33833313, -36.21389008 ], [ 175.34222412, -36.20277786 ], [ 175.35795593, -36.20695877 ], [ 175.34693909, -36.19472122 ], [ 175.34750366, -36.1847229 ], [ 175.36694336, -36.18416595 ], [ 175.35083008, -36.17361069 ], [ 175.36054993, -36.17361069 ], [ 175.35945129000001, -36.16666794 ], [ 175.35139465, -36.16916656 ], [ 175.34555054, -36.16027832 ], [ 175.33860779, -36.15833282 ], [ 175.34777832, -36.15194321 ], [ 175.34666443, -36.14666748 ], [ 175.33555603, -36.14638901 ], [ 175.326385499999986, -36.13861084 ], [ 175.32000732, -36.1483345 ], [ 175.30944824, -36.13999939 ], [ 175.31083679, -36.1305542 ], [ 175.31832886, -36.1241684 ], [ 175.32583618000001, -36.13333511 ], [ 175.33999634, -36.13027954 ], [ 175.34472656, -36.1241684 ], [ 175.34916687, -36.13083267 ], [ 175.37333679, -36.11833191 ], [ 175.36416626, -36.11805725 ], [ 175.34916687, -36.10889053 ], [ 175.34222412, -36.0961113 ], [ 175.34777832, -36.07794189 ], [ 175.33972168, -36.07305527 ], [ 175.34666443, -36.0644455 ], [ 175.35139465, -36.06972122 ], [ 175.36785889, -36.06409073 ], [ 175.36917114, -36.05699158 ], [ 175.40083313, -36.04805374 ], [ 175.398895259999989, -36.04000092 ], [ 175.41055298, -36.02999878 ], [ 175.41055298, -36.02999878 ] ] ], [ [ [ 175.40756226, -36.02861023 ], [ 175.40632629000001, -36.0253334 ], [ 175.4085083, -36.02484512 ], [ 175.40756226, -36.02861023 ], [ 175.40756226, -36.02861023 ] ] ], [ [ [ 175.14620972, -35.93373108 ], [ 175.15499878, -35.94610977 ], [ 175.140274049999988, -35.94194412 ], [ 175.14620972, -35.93373108 ], [ 175.14620972, -35.93373108 ] ] ], [ [ [ 175.16027832, -35.92139053 ], [ 175.16221619, -35.92250061 ], [ 175.15986633, -35.92295074 ], [ 175.16027832, -35.92139053 ], [ 175.16027832, -35.92139053 ] ] ], [ [ [ 175.094360349999988, -35.91471863 ], [ 175.09463501, -35.91281128 ], [ 175.09555054, -35.91380692 ], [ 175.094360349999988, -35.91471863 ], [ 175.094360349999988, -35.91471863 ] ] ], [ [ [ 175.113891599999988, -35.91333389 ], [ 175.11444092, -35.91083145 ], [ 175.11582947, -35.91194534 ], [ 175.113891599999988, -35.91333389 ], [ 175.113891599999988, -35.91333389 ] ] ], [ [ [ 175.12083435, -35.90277863 ], [ 175.10212708, -35.91672134 ], [ 175.09555054, -35.9113884 ], [ 175.10583496000001, -35.90777588 ], [ 175.108337400000011, -35.90191269 ], [ 175.12083435, -35.90277863 ], [ 175.12083435, -35.90277863 ] ] ], [ [ [ 175.05667114, -35.9011116 ], [ 175.05471802, -35.90027618 ], [ 175.056396479999989, -35.89916611 ], [ 175.05667114, -35.9011116 ], [ 175.05667114, -35.9011116 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.2", "id_1": 2, "name_1": "Bay of Plenty", "hasc_1": "NZ.BP", "population2022": 347700, "areakm2": 13514.775, "density2022": 25.73 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.13305664, -38.01722336 ], [ 177.13583374000001, -38.01833344 ], [ 177.13389587, -38.02194595 ], [ 177.13305664, -38.01722336 ], [ 177.13305664, -38.01722336 ] ] ], [ [ [ 177.13166809, -38.0047226 ], [ 177.13945007, -38.00999832 ], [ 177.133605960000011, -38.01277924 ], [ 177.13166809, -38.0047226 ], [ 177.13166809, -38.0047226 ] ] ], [ [ [ 177.1555481, -37.99777603 ], [ 177.14692688, -38.00155258 ], [ 177.145004269999987, -37.99888992 ], [ 177.1555481, -37.99777603 ], [ 177.1555481, -37.99777603 ] ] ], [ [ [ 177.12416077, -37.9952774 ], [ 177.12477112, -38.00325394 ], [ 177.11471558, -38.00944519 ], [ 177.11416626, -37.99750137 ], [ 177.12416077, -37.9952774 ], [ 177.12416077, -37.9952774 ] ] ], [ [ [ 177.07139587, -37.98361206 ], [ 177.08528137, -37.99111176 ], [ 177.073883059999986, -37.99027634 ], [ 177.07139587, -37.98361206 ], [ 177.07139587, -37.98361206 ] ] ], [ [ [ 176.96972656, -37.84999847 ], [ 176.98809814, -37.85563278 ], [ 176.98742676, -37.85967636 ], [ 176.970916749999986, -37.85990143 ], [ 176.96037292, -37.85390854 ], [ 176.96333313, -37.84722137 ], [ 176.96972656, -37.84999847 ], [ 176.96972656, -37.84999847 ] ] ], [ [ [ 176.883605960000011, -37.83333206 ], [ 176.8833313, -37.83055496 ], [ 176.88694763, -37.83083344 ], [ 176.883605960000011, -37.83333206 ], [ 176.883605960000011, -37.83333206 ] ] ], [ [ [ 176.87527466, -37.83055496 ], [ 176.86860657, -37.83061981 ], [ 176.87693787, -37.82638931 ], [ 176.87527466, -37.83055496 ], [ 176.87527466, -37.83055496 ] ] ], [ [ [ 176.47917175, -37.7705574 ], [ 176.4805603, -37.77249908 ], [ 176.47805786, -37.77166748 ], [ 176.47917175, -37.7705574 ], [ 176.47917175, -37.7705574 ] ] ], [ [ [ 176.477035519999987, -37.77118683 ], [ 176.47618103, -37.77161789 ], [ 176.47547913, -37.77045059 ], [ 176.477035519999987, -37.77118683 ], [ 176.477035519999987, -37.77118683 ] ] ], [ [ [ 176.47471619, -37.76916504 ], [ 176.47361755, -37.76972198 ], [ 176.47277832, -37.76861191 ], [ 176.47471619, -37.76916504 ], [ 176.47471619, -37.76916504 ] ] ], [ [ [ 176.482223510000011, -37.76527786 ], [ 176.483612060000013, -37.76944351 ], [ 176.47666931, -37.76805496 ], [ 176.482223510000011, -37.76527786 ], [ 176.482223510000011, -37.76527786 ] ] ], [ [ [ 176.1930542, -37.6847229 ], [ 176.1958313, -37.68972397 ], [ 176.18972778, -37.68611145 ], [ 176.1930542, -37.6847229 ], [ 176.1930542, -37.6847229 ] ] ], [ [ [ 176.15249634, -37.68598938 ], [ 176.15138245, -37.6847229 ], [ 176.15377808, -37.68484497 ], [ 176.15249634, -37.68598938 ], [ 176.15249634, -37.68598938 ] ] ], [ [ [ 176.56222534, -37.66222382 ], [ 176.55805969, -37.66249847 ], [ 176.56138611, -37.65805435 ], [ 176.56222534, -37.66222382 ], [ 176.56222534, -37.66222382 ] ] ], [ [ [ 176.085479740000011, -37.63493347 ], [ 176.0665741, -37.64846802 ], [ 176.06195068, -37.64425278 ], [ 176.06929016, -37.6366272 ], [ 176.085479740000011, -37.63493347 ], [ 176.085479740000011, -37.63493347 ] ] ], [ [ [ 176.19458008, -37.63232803 ], [ 176.19332886, -37.63081741 ], [ 176.19429016, -37.63029099 ], [ 176.19458008, -37.63232803 ], [ 176.19458008, -37.63232803 ] ] ], [ [ [ 176.09092712, -37.61990738 ], [ 176.092300419999987, -37.6231041 ], [ 176.08757019, -37.62001038 ], [ 176.09092712, -37.61990738 ], [ 176.09092712, -37.61990738 ] ] ], [ [ [ 175.995346070000011, -37.6297226 ], [ 175.990310670000014, -37.6249733 ], [ 175.99446106, -37.61780167 ], [ 175.995346070000011, -37.6297226 ], [ 175.995346070000011, -37.6297226 ] ] ], [ [ [ 176.08473206, -37.61838913 ], [ 176.08369446, -37.61771774 ], [ 176.086547849999988, -37.61642456 ], [ 176.08473206, -37.61838913 ], [ 176.08473206, -37.61838913 ] ] ], [ [ [ 176.52705383, -37.60882187 ], [ 176.525894169999987, -37.6088829 ], [ 176.527145389999987, -37.60728836 ], [ 176.52705383, -37.60882187 ], [ 176.52705383, -37.60882187 ] ] ], [ [ [ 176.09280396, -37.60676193 ], [ 176.11193848, -37.6202774 ], [ 176.12306213, -37.61722183 ], [ 176.122833250000014, -37.63134384 ], [ 176.12693787, -37.63611221 ], [ 176.10723877, -37.63940811 ], [ 176.10481262, -37.61935806 ], [ 176.090591429999989, -37.60984039 ], [ 176.09280396, -37.60676193 ], [ 176.09280396, -37.60676193 ] ] ], [ [ [ 176.41667175, -37.6016655 ], [ 176.43777466, -37.61333466 ], [ 176.44000244, -37.6202774 ], [ 176.431427, -37.62984085 ], [ 176.42832947, -37.63916779 ], [ 176.41209412, -37.6425972 ], [ 176.40527344, -37.65472412 ], [ 176.40873718, -37.62427139 ], [ 176.41311646, -37.62330627 ], [ 176.41667175, -37.6016655 ], [ 176.41667175, -37.6016655 ] ] ], [ [ [ 176.018890379999988, -37.57277679 ], [ 176.02360535, -37.57583237 ], [ 176.01519775, -37.58384705 ], [ 176.00479126, -37.58496094 ], [ 176.00115967, -37.57711792 ], [ 176.018890379999988, -37.57277679 ], [ 176.018890379999988, -37.57277679 ] ] ], [ [ [ 176.024475099999989, -37.57344437 ], [ 176.022537230000012, -37.57178879 ], [ 176.02455139, -37.57227707 ], [ 176.024475099999989, -37.57344437 ], [ 176.024475099999989, -37.57344437 ] ] ], [ [ [ 176.01908875, -37.57110977 ], [ 176.015625, -37.57138824 ], [ 176.01716614, -37.56898117 ], [ 176.01908875, -37.57110977 ], [ 176.01908875, -37.57110977 ] ] ], [ [ [ 175.94778442, -37.5644455 ], [ 175.946105960000011, -37.5633316 ], [ 175.948593140000014, -37.56324005 ], [ 175.94778442, -37.5644455 ], [ 175.94778442, -37.5644455 ] ] ], [ [ [ 176.13334656, -37.52894974 ], [ 176.13269043, -37.53134918 ], [ 176.12931824, -37.52961731 ], [ 176.13334656, -37.52894974 ], [ 176.13334656, -37.52894974 ] ] ], [ [ [ 177.18083191, -37.50916672 ], [ 177.19491577, -37.51530075 ], [ 177.1930542, -37.52777863 ], [ 177.17971802, -37.52999878 ], [ 177.167221070000011, -37.51777649 ], [ 177.18083191, -37.50916672 ], [ 177.18083191, -37.50916672 ] ] ], [ [ [ 177.133605960000011, -37.47527695 ], [ 177.13583374000001, -37.47694397 ], [ 177.13194275, -37.47722244 ], [ 177.133605960000011, -37.47527695 ], [ 177.133605960000011, -37.47527695 ] ] ], [ [ [ 175.98852539, -37.47361374 ], [ 176.00416565, -37.47888947 ], [ 176.017654420000014, -37.48993301 ], [ 176.02946472, -37.50756073 ], [ 176.053924560000013, -37.53728104 ], [ 176.09513855, -37.58045578 ], [ 176.127014159999987, -37.60689926 ], [ 176.134704590000013, -37.61112213 ], [ 176.16163635, -37.63563538 ], [ 176.15208435, -37.64425278 ], [ 176.136260990000011, -37.63335419 ], [ 176.1277771, -37.63249969 ], [ 176.126861569999988, -37.61992645 ], [ 176.11875916, -37.61369324 ], [ 176.10813904, -37.61241913 ], [ 176.101760860000013, -37.60261154 ], [ 176.082229610000013, -37.59555435 ], [ 176.08100891, -37.60460281 ], [ 176.087677, -37.61185074 ], [ 176.08082581, -37.62194443 ], [ 176.07333374000001, -37.62250137 ], [ 176.064224239999987, -37.60777664 ], [ 176.03434753, -37.60134125 ], [ 176.027679440000014, -37.58443832 ], [ 176.02896118000001, -37.57270813 ], [ 176.03767395, -37.56790161 ], [ 176.056991579999988, -37.57234573 ], [ 176.068420409999987, -37.58197403 ], [ 176.068161010000011, -37.57081604 ], [ 176.053909299999987, -37.5659523 ], [ 176.03823853, -37.54964447 ], [ 176.02929688, -37.54592133 ], [ 176.015289309999986, -37.53305054 ], [ 176.00123596, -37.51208878 ], [ 175.98466492, -37.49910355 ], [ 175.98287964, -37.48009109 ], [ 175.98852539, -37.47361374 ], [ 175.98852539, -37.47361374 ] ] ], [ [ [ 175.94665527, -37.46854782 ], [ 175.94488525, -37.46573257 ], [ 175.94851685, -37.46558762 ], [ 175.94665527, -37.46854782 ], [ 175.94665527, -37.46854782 ] ] ], [ [ [ 175.9246521, -37.37372589 ], [ 175.92825317, -37.37813568 ], [ 175.94009399, -37.37508774 ], [ 175.938140870000012, -37.38247681 ], [ 175.94351196, -37.38829422 ], [ 175.939529420000014, -37.39912796 ], [ 175.9574585, -37.42624664 ], [ 175.983871459999989, -37.45849991 ], [ 175.99163818, -37.46605301 ], [ 175.978866579999988, -37.46902466 ], [ 175.97193909, -37.45444489 ], [ 175.961853029999986, -37.44865799 ], [ 175.94508362, -37.46009827 ], [ 175.94038391, -37.46871948 ], [ 175.93943787, -37.48138809 ], [ 175.947189329999986, -37.47925949 ], [ 175.93940735000001, -37.49137115 ], [ 175.93026733, -37.49583817 ], [ 175.94271851, -37.49932098 ], [ 175.95799255, -37.49225235 ], [ 175.96723938, -37.49481964 ], [ 175.978317260000011, -37.51382065 ], [ 175.960617070000012, -37.51981735 ], [ 175.94642639, -37.53164291 ], [ 175.936859129999988, -37.53033066 ], [ 175.920272829999988, -37.53416443 ], [ 175.936752320000011, -37.53646088 ], [ 175.94960022, -37.54481888 ], [ 175.95088196, -37.55825806 ], [ 175.94418335, -37.55559921 ], [ 175.93089294, -37.55924606 ], [ 175.93760681, -37.56319809 ], [ 175.92442322, -37.57474136 ], [ 175.92901611, -37.58218384 ], [ 175.94354248, -37.5689888 ], [ 175.943557739999989, -37.58070374 ], [ 175.95150757, -37.59152985 ], [ 175.96691895, -37.58249283 ], [ 175.97195435, -37.5737114 ], [ 175.98016357, -37.59008789 ], [ 175.96305847, -37.60138702 ], [ 175.96522522, -37.60536957 ], [ 175.98832703, -37.60833359 ], [ 175.99110413, -37.61639023 ], [ 175.97416687, -37.61972046 ], [ 175.991836549999988, -37.63219452 ], [ 175.99008179, -37.63947296 ], [ 176.00511169, -37.62836456 ], [ 176.01661682, -37.62411499 ], [ 176.01832581, -37.64138794 ], [ 176.03909302, -37.63681412 ], [ 176.04808044, -37.62693024 ], [ 176.04821777, -37.63459015 ], [ 176.03321838, -37.66100693 ], [ 176.04618835, -37.65228271 ], [ 176.0450592, -37.66077423 ], [ 176.05047607, -37.66926193 ], [ 176.04083252, -37.67944336 ], [ 176.05085754000001, -37.67770386 ], [ 176.05104065, -37.65898895 ], [ 176.0625, -37.66444397 ], [ 176.06364441, -37.65695953 ], [ 176.07395935, -37.65782547 ], [ 176.093261719999987, -37.66439819 ], [ 176.09509277, -37.67428589 ], [ 176.10128784, -37.67905045 ], [ 176.09378052, -37.68546677 ], [ 176.11207581, -37.67813873 ], [ 176.11860657, -37.67972183 ], [ 176.12638855, -37.67333221 ], [ 176.113632200000012, -37.66998291 ], [ 176.124542240000011, -37.65986252 ], [ 176.137496950000013, -37.66083145 ], [ 176.16296387, -37.66990662 ], [ 176.15583801, -37.67938614 ], [ 176.14756775, -37.68057632 ], [ 176.15179443, -37.69582367 ], [ 176.16098022, -37.6877594 ], [ 176.16654968, -37.66617203 ], [ 176.164825439999987, -37.66030884 ], [ 176.17694092, -37.66110992 ], [ 176.171249390000014, -37.67781067 ], [ 176.171661379999989, -37.68888855 ], [ 176.16653442, -37.69725037 ], [ 176.16648865, -37.71429825 ], [ 176.1622467, -37.71141434 ], [ 176.15222168, -37.71694565 ], [ 176.15974426, -37.72842789 ], [ 176.185317989999987, -37.70799637 ], [ 176.19128418, -37.71688461 ], [ 176.1819458, -37.72305679 ], [ 176.19917297, -37.72027588 ], [ 176.208786010000011, -37.71132278 ], [ 176.23088074, -37.7130661 ], [ 176.22619629, -37.7059021 ], [ 176.23620605, -37.69799042 ], [ 176.22200012, -37.69376373 ], [ 176.21611023, -37.6883316 ], [ 176.21217346, -37.69612885 ], [ 176.19029236, -37.70602036 ], [ 176.1791687, -37.69333267 ], [ 176.18499756, -37.68416595 ], [ 176.19781494, -37.69396591 ], [ 176.20561218, -37.68731689 ], [ 176.20132446, -37.67680359 ], [ 176.19410706, -37.68157578 ], [ 176.17930603, -37.66657639 ], [ 176.18278503, -37.64861298 ], [ 176.18008423, -37.63768387 ], [ 176.166107180000012, -37.63222122 ], [ 176.17416382, -37.6241684 ], [ 176.19644165, -37.64503479 ], [ 176.230010990000011, -37.6688118 ], [ 176.263595579999986, -37.6866951 ], [ 176.289535519999987, -37.69782257 ], [ 176.346191409999989, -37.71651077 ], [ 176.38117981, -37.73456955 ], [ 176.40541077, -37.74459076 ], [ 176.4458313, -37.75444412 ], [ 176.422637939999987, -37.75545502 ], [ 176.431991579999988, -37.76247787 ], [ 176.43760681, -37.75880432 ], [ 176.453887939999987, -37.75749969 ], [ 176.46833801, -37.73777771 ], [ 176.48051453, -37.76119614 ], [ 176.47305298, -37.76361084 ], [ 176.46888733, -37.77277756 ], [ 176.49380493000001, -37.77191544 ], [ 176.48306274, -37.75916672 ], [ 176.499069209999988, -37.7713356 ], [ 176.563568120000014, -37.80960083 ], [ 176.60649109, -37.83219147 ], [ 176.66053772, -37.85463333 ], [ 176.69010925, -37.8649826 ], [ 176.749679570000012, -37.88375473 ], [ 176.822021479999989, -37.89385605 ], [ 176.88221741000001, -37.90972137 ], [ 176.927795409999987, -37.91599655 ], [ 176.95407104, -37.92385483 ], [ 176.9831543, -37.93661499 ], [ 177.00805664, -37.94388962 ], [ 176.99316406, -37.94932556 ], [ 177.00639343, -37.94805527 ], [ 177.01306152, -37.93777847 ], [ 177.02333069, -37.94555664 ], [ 177.019195559999986, -37.95024872 ], [ 177.03416443, -37.96277618 ], [ 177.0597229, -37.9711113 ], [ 177.09944153, -37.97916794 ], [ 177.14305115, -37.98638916 ], [ 177.143890379999988, -37.99166489 ], [ 177.118896479999989, -37.98888779 ], [ 177.09666443, -37.98110962 ], [ 177.083618159999986, -37.97888947 ], [ 177.06832886, -37.98027802 ], [ 177.0625, -37.98416519 ], [ 177.06388855, -37.99305725 ], [ 177.0569458, -37.99583435 ], [ 177.06138611, -38.00972366 ], [ 177.07221985000001, -38.00916672 ], [ 177.07028198, -37.99694443 ], [ 177.08972168, -37.99611282 ], [ 177.08666992, -38.0055542 ], [ 177.09555054, -38.01583481 ], [ 177.09249878, -38.0027771 ], [ 177.1086731, -38.00219345 ], [ 177.11305237, -38.01111221 ], [ 177.10806274, -38.02249908 ], [ 177.11860657, -38.01777649 ], [ 177.13278198, -38.03694534 ], [ 177.15055847, -38.04277802 ], [ 177.15722656, -38.04027939 ], [ 177.14416504, -38.03472137 ], [ 177.13806152, -38.0205574 ], [ 177.142501829999986, -38.00916672 ], [ 177.15943909, -38.00972366 ], [ 177.16221619, -37.98749924 ], [ 177.198608400000012, -37.99111176 ], [ 177.184234620000012, -37.99274826 ], [ 177.193283079999986, -38.00144958 ], [ 177.19528198, -37.99250031 ], [ 177.2088623, -37.99084854 ], [ 177.262771609999987, -37.99194336 ], [ 177.27944946, -38.00166702 ], [ 177.2694397, -37.99166489 ], [ 177.34693909, -37.98833466 ], [ 177.38250732, -37.98361206 ], [ 177.391387939999987, -37.98555374 ], [ 177.419998170000014, -37.97722244 ], [ 177.426391599999988, -37.9663887 ], [ 177.43804932, -37.96755981 ], [ 177.443603520000011, -37.95722198 ], [ 177.44787598, -37.96107483 ], [ 177.486389159999987, -37.95027924 ], [ 177.49194336, -37.94194412 ], [ 177.488632200000012, -37.93442917 ], [ 177.52944946, -37.92055511 ], [ 177.546386719999987, -37.90750122 ], [ 177.544998170000014, -37.89666748 ], [ 177.55386353, -37.88376999 ], [ 177.57556152, -37.87333298 ], [ 177.58555603, -37.85925674 ], [ 177.58416748, -37.84444427 ], [ 177.58860779, -37.83666611 ], [ 177.606384279999986, -37.83722305 ], [ 177.612503049999987, -37.82583237 ], [ 177.611114500000014, -37.81277847 ], [ 177.61972046, -37.8069458 ], [ 177.63000488, -37.8144455 ], [ 177.64833069, -37.80638885 ], [ 177.6569519, -37.79249954 ], [ 177.65083313, -37.7863884 ], [ 177.66000366, -37.7761116 ], [ 177.67304993, -37.77111053 ], [ 177.68388367, -37.75805664 ], [ 177.678894039999989, -37.7480545 ], [ 177.66833496000001, -37.73833466 ], [ 177.7069397, -37.72166824 ], [ 177.707229610000013, -37.71472168 ], [ 177.7180481, -37.70611191 ], [ 177.727310179999989, -37.6775322 ], [ 177.75389099, -37.67388916 ], [ 177.79417419, -37.67666626 ], [ 177.80010986, -37.67329407 ], [ 177.800277709999989, -37.66444397 ], [ 177.81666565, -37.65611267 ], [ 177.83944702, -37.66249847 ], [ 177.86851501000001, -37.65096283 ], [ 177.87510681, -37.63760376 ], [ 177.883728029999986, -37.63711166 ], [ 177.88389587, -37.62916565 ], [ 177.890838620000011, -37.6269455 ], [ 177.889160159999989, -37.61916733 ], [ 177.90388489, -37.60305405 ], [ 177.91011047, -37.61603546 ], [ 177.91833496000001, -37.61888885 ], [ 177.94520569, -37.61809921 ], [ 177.95349121000001, -37.61465073 ], [ 177.95443726, -37.60638809 ], [ 177.96583557, -37.60138702 ], [ 177.9694519, -37.59361267 ], [ 177.98445129000001, -37.58388901 ], [ 177.99194336, -37.56750107 ], [ 177.983337400000011, -37.56361008 ], [ 177.97944641, -37.53777695 ], [ 177.983612060000013, -37.53583145 ], [ 178.00750732, -37.55194473 ], [ 178.03971863000001, -37.54249954 ], [ 178.0597229, -37.54000092 ], [ 178.0821228, -37.54546356 ], [ 178.07955933, -37.55147171 ], [ 178.09403992, -37.58409119 ], [ 178.105667110000013, -37.59650803 ], [ 178.03947449, -37.59576416 ], [ 178.020278929999989, -37.60207367 ], [ 177.984161379999989, -37.60866928 ], [ 177.9788208, -37.62128067 ], [ 177.972320559999986, -37.62343979 ], [ 177.97991943, -37.63170624 ], [ 177.973419189999987, -37.63385773 ], [ 177.992385860000013, -37.65461349 ], [ 177.99343872, -37.66508865 ], [ 177.9868927, -37.66723633 ], [ 177.99446106, -37.67557907 ], [ 177.98791504, -37.67772675 ], [ 177.99926758, -37.69025803 ], [ 177.99649048, -37.69659424 ], [ 177.98335266, -37.70090866 ], [ 177.98432922, -37.71144104 ], [ 177.99188232, -37.71981812 ], [ 177.97589111, -37.73050308 ], [ 177.9730835, -37.736866 ], [ 177.99591064, -37.76205063 ], [ 178.037170409999987, -37.73210144 ], [ 178.07418823, -37.76342773 ], [ 177.970489500000014, -37.84687042 ], [ 177.943115229999989, -37.91049576 ], [ 177.91697693, -37.98450089 ], [ 177.86262512, -38.11087799 ], [ 177.858764650000012, -38.1067009 ], [ 177.8494873, -38.11515808 ], [ 177.775741579999988, -38.06314087 ], [ 177.74331665, -38.04655838 ], [ 177.72399902, -38.0257225 ], [ 177.70046997, -38.02796173 ], [ 177.68887329, -38.01547241 ], [ 177.66923523, -38.02186966 ], [ 177.68467712, -38.03852081 ], [ 177.6781311, -38.04065323 ], [ 177.701263430000012, -38.06565475 ], [ 177.68815613000001, -38.06991196 ], [ 177.68930054, -38.0803833 ], [ 177.67619324, -38.08463287 ], [ 177.686599730000012, -38.08668137 ], [ 177.68774414, -38.0971489 ], [ 177.69543457, -38.10549545 ], [ 177.69271851, -38.11179733 ], [ 177.65992737, -38.12240982 ], [ 177.661056519999988, -38.13288498 ], [ 177.649063109999986, -38.14759445 ], [ 177.66056824, -38.16012955 ], [ 177.64089966, -38.1664772 ], [ 177.630508420000012, -38.16440582 ], [ 177.62779236, -38.17070007 ], [ 177.60813904, -38.17702103 ], [ 177.60430908, -38.1728363 ], [ 177.60270691, -38.18959045 ], [ 177.56350708, -38.20214462 ], [ 177.567321779999986, -38.20633316 ], [ 177.55618286, -38.21260071 ], [ 177.530899049999988, -38.21256256 ], [ 177.531997679999989, -38.22303391 ], [ 177.515151980000013, -38.22299957 ], [ 177.51135254, -38.21879959 ], [ 177.49180603, -38.22502899 ], [ 177.49940491000001, -38.23342514 ], [ 177.49667358, -38.23970032 ], [ 177.48364258, -38.24385071 ], [ 177.495040890000013, -38.25645447 ], [ 177.48851013, -38.25852966 ], [ 177.49610901, -38.26693344 ], [ 177.50263977, -38.26485443 ], [ 177.49064636, -38.27949142 ], [ 177.49276733, -38.300457 ], [ 177.471466060000012, -38.32346344 ], [ 177.46594238, -38.33602142 ], [ 177.45283508, -38.34014893 ], [ 177.4434967, -38.34848404 ], [ 177.39471436, -38.36911011 ], [ 177.34864807, -38.38344955 ], [ 177.299743650000011, -38.40407562 ], [ 177.237808230000013, -38.42886353 ], [ 177.25862122, -38.50911713 ], [ 177.249252320000011, -38.5174942 ], [ 177.245483400000012, -38.51325607 ], [ 177.23049927, -38.5342598 ], [ 177.21362305, -38.53416824 ], [ 177.206130980000012, -38.52568436 ], [ 177.199569700000012, -38.52775574 ], [ 177.19116211, -38.54670334 ], [ 177.18180847, -38.55509186 ], [ 177.18275452, -38.56565094 ], [ 177.1631012, -38.5718689 ], [ 177.17059326, -38.58036423 ], [ 177.14442444, -38.58865738 ], [ 177.14723206, -38.58233261 ], [ 177.13041687, -38.5822258 ], [ 177.12110901, -38.59062195 ], [ 177.11552429, -38.60327148 ], [ 177.10899353, -38.60534668 ], [ 177.100631709999988, -38.62432861 ], [ 177.096893310000013, -38.62007523 ], [ 177.0838623, -38.62421799 ], [ 177.08291626, -38.6136322 ], [ 177.06990051, -38.61777115 ], [ 177.060607909999987, -38.62615967 ], [ 177.04393005, -38.62598419 ], [ 177.047637939999987, -38.63026047 ], [ 177.034683230000013, -38.63433456 ], [ 177.026412959999988, -38.65325928 ], [ 177.01994324, -38.65528488 ], [ 177.02735901, -38.66384506 ], [ 177.02088928, -38.66587067 ], [ 177.0153656, -38.67847824 ], [ 177.002441409999989, -38.68251419 ], [ 177.00337219, -38.69309998 ], [ 176.98396301, -38.69913864 ], [ 176.987670900000012, -38.70342636 ], [ 176.9682312, -38.70945358 ], [ 176.967300419999987, -38.69887161 ], [ 176.95433044, -38.70288467 ], [ 176.9506073, -38.69859695 ], [ 176.93763733, -38.70261002 ], [ 176.9302063, -38.69403839 ], [ 176.90977478, -38.68947601 ], [ 176.89115906, -38.66804886 ], [ 176.87164307, -38.67407227 ], [ 176.87536621000001, -38.67835617 ], [ 176.862350459999988, -38.68237305 ], [ 176.85490417, -38.67380142 ], [ 176.84559631, -38.6821022 ], [ 176.83256531, -38.68611908 ], [ 176.82325745, -38.69441986 ], [ 176.79901123, -38.68558502 ], [ 176.795272829999988, -38.68130112 ], [ 176.77571106, -38.68732834 ], [ 176.7766571, -38.69789886 ], [ 176.76454163, -38.71247864 ], [ 176.75149536, -38.71648026 ], [ 176.752441409999989, -38.72704697 ], [ 176.73937988, -38.73104477 ], [ 176.73190308, -38.72247696 ], [ 176.71885681, -38.72647095 ], [ 176.719802859999987, -38.73703003 ], [ 176.711425780000013, -38.75586319 ], [ 176.71611023, -38.77070236 ], [ 176.70774841, -38.78952408 ], [ 176.71801758, -38.79181671 ], [ 176.70495605, -38.79579544 ], [ 176.71244812, -38.80435944 ], [ 176.6993866, -38.80833817 ], [ 176.7003479, -38.81888962 ], [ 176.711578370000012, -38.8317337 ], [ 176.70225525, -38.83998489 ], [ 176.70976257, -38.84854889 ], [ 176.619232180000012, -38.92478943 ], [ 176.603317260000011, -38.93504333 ], [ 176.600509640000013, -38.94130707 ], [ 176.60804749, -38.94984436 ], [ 176.598693849999989, -38.95811081 ], [ 176.609985349999988, -38.97091293 ], [ 176.603424069999988, -38.97291565 ], [ 176.61849976, -38.9899826 ], [ 176.61193848, -38.99198532 ], [ 176.61947632, -39.00051498 ], [ 176.54814148, -38.9952507 ], [ 176.55567932, -39.00378036 ], [ 176.45428467, -39.00237656 ], [ 176.422485349999988, -39.06100845 ], [ 176.45185852, -39.12254333 ], [ 176.437713620000011, -39.11604309 ], [ 176.42077637, -39.11582947 ], [ 176.37469482, -39.13002777 ], [ 176.38505554, -39.132267 ], [ 176.400192260000011, -39.14933014 ], [ 176.40116882, -39.15988922 ], [ 176.38800049, -39.16394806 ], [ 176.344680790000012, -39.17187119 ], [ 176.23622131, -39.09662628 ], [ 176.2559967, -39.09053802 ], [ 176.26539612, -39.08221054 ], [ 176.28515625, -39.0761261 ], [ 176.286087040000012, -39.04868698 ], [ 176.27760315, -39.02957153 ], [ 176.26725769, -39.02732086 ], [ 176.27290344, -39.01472473 ], [ 176.28889465, -39.00437927 ], [ 176.28137207, -38.99583054 ], [ 176.28044128, -38.98526001 ], [ 176.26634216, -38.97873688 ], [ 176.26165771, -38.96389008 ], [ 176.26823425, -38.96186829 ], [ 176.2635498, -38.94701767 ], [ 176.26170349, -38.9258728 ], [ 176.248550419999987, -38.92991257 ], [ 176.23822021, -38.92765427 ], [ 176.22596741000001, -38.94226837 ], [ 176.215637210000011, -38.94001007 ], [ 176.20246887, -38.94404984 ], [ 176.194976809999986, -38.93548965 ], [ 176.18838501, -38.93750763 ], [ 176.16589355, -38.91181946 ], [ 176.15931702, -38.91383743 ], [ 176.13684082, -38.88813019 ], [ 176.14343262, -38.88611603 ], [ 176.12934875, -38.87956238 ], [ 176.132202150000012, -38.8732605 ], [ 176.11723328, -38.85611343 ], [ 176.13414001000001, -38.85637665 ], [ 176.12664795, -38.84780121 ], [ 176.12007141, -38.84981537 ], [ 176.09764099, -38.82408905 ], [ 176.10421753, -38.8220787 ], [ 176.096740720000014, -38.81349945 ], [ 176.10990906, -38.80947876 ], [ 176.10243225, -38.80090332 ], [ 176.1166687, -38.76941299 ], [ 176.219802859999987, -38.79217529 ], [ 176.24145508, -38.76927948 ], [ 176.26116943, -38.76324844 ], [ 176.17713928, -38.68585587 ], [ 176.21022034, -38.63781738 ], [ 176.21875, -38.61894989 ], [ 176.21130371000001, -38.61037064 ], [ 176.22444153, -38.60636902 ], [ 176.2104187, -38.59979248 ], [ 176.19729614, -38.6037941 ], [ 176.15153503, -38.57975769 ], [ 176.141250609999986, -38.57746506 ], [ 176.12153625, -38.58346558 ], [ 176.1206665, -38.57287598 ], [ 176.10951233, -38.55999756 ], [ 176.08607483, -38.5616951 ], [ 176.07579041, -38.55939484 ], [ 176.05606079, -38.56538773 ], [ 176.048629760000011, -38.55679321 ], [ 176.0552063, -38.55479813 ], [ 176.047775269999988, -38.54620361 ], [ 176.06378174, -38.53591537 ], [ 176.05262756, -38.5230217 ], [ 176.05834961, -38.5104332 ], [ 176.085495, -38.51304245 ], [ 176.08834839, -38.5067482 ], [ 176.11946106, -38.47558594 ], [ 176.12231445, -38.46929169 ], [ 176.139160159999989, -38.46959686 ], [ 176.13829041, -38.45900726 ], [ 176.144851679999988, -38.45701218 ], [ 176.1559906, -38.46989822 ], [ 176.14942932, -38.47189713 ], [ 176.156860349999988, -38.48048782 ], [ 176.15400696, -38.48677826 ], [ 176.16143799, -38.49536896 ], [ 176.16799927, -38.49337006 ], [ 176.181991579999988, -38.49996185 ], [ 176.17913818, -38.5062561 ], [ 176.186569209999988, -38.51484299 ], [ 176.18373108, -38.52113342 ], [ 176.19685364, -38.51713943 ], [ 176.21084595, -38.5237236 ], [ 176.22396851, -38.5197258 ], [ 176.23425293, -38.52201843 ], [ 176.24737549, -38.51801682 ], [ 176.250213620000011, -38.51172638 ], [ 176.282989500000014, -38.50172806 ], [ 176.28210449, -38.49114609 ], [ 176.30177307, -38.48514175 ], [ 176.312026980000013, -38.48743057 ], [ 176.33061218, -38.5088768 ], [ 176.327789309999986, -38.51516724 ], [ 176.30618286, -38.53804016 ], [ 176.31361389, -38.5466156 ], [ 176.310791020000011, -38.55290604 ], [ 176.32478333, -38.55947495 ], [ 176.36587524, -38.56860733 ], [ 176.392211909999986, -38.52258301 ], [ 176.39785767, -38.51000595 ], [ 176.418396, -38.51457596 ], [ 176.45661926, -38.53000259 ], [ 176.4874115, -38.53685379 ], [ 176.48651123, -38.52627945 ], [ 176.47906494, -38.51770782 ], [ 176.49507141, -38.46939468 ], [ 176.50071716, -38.45681 ], [ 176.50544739, -38.43364716 ], [ 176.511093140000014, -38.42106247 ], [ 176.51301575, -38.40418243 ], [ 176.48701477, -38.37415314 ], [ 176.48048401, -38.37615585 ], [ 176.47306824, -38.3675766 ], [ 176.43209839, -38.35842514 ], [ 176.41531372, -38.35814285 ], [ 176.39677429, -38.33668137 ], [ 176.39024353, -38.33868408 ], [ 176.379119870000011, -38.32580566 ], [ 176.34927368000001, -38.32952118 ], [ 176.3250885, -38.32064438 ], [ 176.327911379999989, -38.31435013 ], [ 176.31114197, -38.3140564 ], [ 176.313964840000011, -38.30776215 ], [ 176.3028717, -38.2948761 ], [ 176.30569458, -38.28857803 ], [ 176.29545593, -38.2862854 ], [ 176.29829407, -38.27998734 ], [ 176.28521729, -38.28398895 ], [ 176.284362789999989, -38.27339554 ], [ 176.26046753, -38.22642136 ], [ 176.256774900000011, -38.22212219 ], [ 176.269851679999988, -38.2181282 ], [ 176.265304570000012, -38.20323563 ], [ 176.2681427, -38.19694138 ], [ 176.24969482, -38.17544937 ], [ 176.256225590000014, -38.17345047 ], [ 176.245162959999988, -38.16055298 ], [ 176.25169373, -38.15855789 ], [ 176.2406311, -38.14565659 ], [ 176.247161870000014, -38.1436615 ], [ 176.246307370000011, -38.13306808 ], [ 176.252838129999986, -38.131073 ], [ 176.23809814, -38.11386871 ], [ 176.22503662, -38.11785126 ], [ 176.23072815, -38.10526276 ], [ 176.22052002, -38.10295105 ], [ 176.21315002, -38.09434128 ], [ 176.20661926, -38.09633255 ], [ 176.191894530000013, -38.07911301 ], [ 176.17800903, -38.07249069 ], [ 176.158401489999989, -38.07845306 ], [ 176.14451599, -38.07182693 ], [ 176.13143921, -38.07580185 ], [ 176.12121582, -38.07348251 ], [ 176.07952881, -38.05358505 ], [ 176.06195068, -38.04264069 ], [ 176.06768799, -38.03004837 ], [ 176.05665588, -38.01712036 ], [ 176.042755129999989, -38.01047897 ], [ 176.036209109999987, -38.0124588 ], [ 176.02151489, -37.99520493 ], [ 176.001068120000014, -37.99052811 ], [ 175.98797607, -37.99448013 ], [ 175.97409058, -37.98781967 ], [ 175.979843140000014, -37.97523499 ], [ 175.97250366, -37.9665947 ], [ 175.95573425, -37.96622086 ], [ 175.958618159999986, -37.95992661 ], [ 175.95129395, -37.9512825 ], [ 175.94317627, -37.93202209 ], [ 175.9526062, -37.92376328 ], [ 175.97879028, -37.91588211 ], [ 175.96124268, -37.90488815 ], [ 175.97644043, -37.88404846 ], [ 175.967010499999986, -37.89230728 ], [ 175.95968628, -37.88366318 ], [ 175.94294739, -37.88327408 ], [ 175.942169189999987, -37.87266541 ], [ 175.948715209999989, -37.87069702 ], [ 175.93486023, -37.86401749 ], [ 175.93774414, -37.85773087 ], [ 175.930435179999989, -37.84908295 ], [ 175.94352722, -37.84515381 ], [ 175.9092865, -37.83374786 ], [ 175.92086792, -37.80861664 ], [ 175.92881775, -37.77917862 ], [ 175.92079163, -37.75994492 ], [ 175.90551758, -37.73206329 ], [ 175.89825439, -37.72341156 ], [ 175.904800419999987, -37.72146606 ], [ 175.890274049999988, -37.70415878 ], [ 175.876464840000011, -37.6974411 ], [ 175.875762939999987, -37.68683624 ], [ 175.864883420000012, -37.67382813 ], [ 175.871429440000014, -37.67189026 ], [ 175.857635499999986, -37.66514969 ], [ 175.83953857, -37.64342499 ], [ 175.846069340000014, -37.64148712 ], [ 175.83522034, -37.6284256 ], [ 175.844680790000012, -37.62019348 ], [ 175.84397888, -37.60952759 ], [ 175.82228088, -37.58328629 ], [ 175.82159424, -37.57258224 ], [ 175.810760499999986, -37.55941772 ], [ 175.836288450000012, -37.54096603 ], [ 175.82546997, -37.52778625 ], [ 175.82843018, -37.5214653 ], [ 175.81106567, -37.5102005 ], [ 175.81040955, -37.49946976 ], [ 175.8235321, -37.49562073 ], [ 175.81632996, -37.48681641 ], [ 175.8354187, -37.47035217 ], [ 175.843246459999989, -37.48987579 ], [ 175.86062622, -37.50116348 ], [ 175.8737793, -37.49734879 ], [ 175.90072632, -37.50042343 ], [ 175.90370178, -37.49413681 ], [ 175.88569641, -37.47217941 ], [ 175.87252808, -37.47596741 ], [ 175.86172485, -37.46276474 ], [ 175.88442993000001, -37.45083237 ], [ 175.88375854, -37.44016266 ], [ 175.89755249000001, -37.44709015 ], [ 175.90986633, -37.43274689 ], [ 175.9163208, -37.43091202 ], [ 175.90516663, -37.41771317 ], [ 175.910369870000011, -37.40530777 ], [ 175.92033386, -37.40795135 ], [ 175.92201233, -37.39107895 ], [ 175.92871094, -37.38906097 ], [ 175.914855960000011, -37.38217163 ], [ 175.9246521, -37.37372589 ], [ 175.9246521, -37.37372589 ] ] ], [ [ [ 176.262176509999989, -37.26832581 ], [ 176.27552795, -37.26803207 ], [ 176.28083801, -37.27249908 ], [ 176.27261353, -37.2855835 ], [ 176.2769165, -37.29076767 ], [ 176.270431519999988, -37.29637909 ], [ 176.27049255, -37.30449295 ], [ 176.25492859, -37.31015015 ], [ 176.24272156, -37.30212402 ], [ 176.231506349999989, -37.28545761 ], [ 176.23832703, -37.27194595 ], [ 176.262176509999989, -37.26832581 ], [ 176.262176509999989, -37.26832581 ] ] ] ] } }, -{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": null, "areakm2": null, "density2022": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, +{ "type": "Feature", "properties": { "id": "pv084qp8629.3", "id_1": 3, "name_1": "Canterbury", "hasc_1": "NZ.CA", "population2022": 655000, "areakm2": 44553.886, "density2022": 14.7 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.063110349999988, -47.76549911 ], [ 179.06222534, -47.76805496 ], [ 179.0597229, -47.7678299 ], [ 179.063110349999988, -47.76549911 ], [ 179.063110349999988, -47.76549911 ] ] ], [ [ [ 179.04393005, -47.76094818 ], [ 179.04045105, -47.76323318 ], [ 179.03944397, -47.76195145 ], [ 179.04393005, -47.76094818 ], [ 179.04393005, -47.76094818 ] ] ], [ [ [ 179.06211853, -47.76156998 ], [ 179.06028748, -47.76062012 ], [ 179.0652771, -47.75860977 ], [ 179.06211853, -47.76156998 ], [ 179.06211853, -47.76156998 ] ] ], [ [ [ 179.023651120000011, -47.75670242 ], [ 179.02223206, -47.75531006 ], [ 179.02680969, -47.75469589 ], [ 179.023651120000011, -47.75670242 ], [ 179.023651120000011, -47.75670242 ] ] ], [ [ [ 179.019042969999987, -47.75357056 ], [ 179.020996090000011, -47.75402451 ], [ 179.01675415, -47.75525284 ], [ 179.019042969999987, -47.75357056 ], [ 179.019042969999987, -47.75357056 ] ] ], [ [ [ 179.04255676, -47.75122452 ], [ 179.03462219, -47.75286865 ], [ 179.034378049999987, -47.75192261 ], [ 179.04255676, -47.75122452 ], [ 179.04255676, -47.75122452 ] ] ], [ [ [ 179.02919006, -47.74899292 ], [ 179.03292847, -47.75174713 ], [ 179.02232361, -47.75307846 ], [ 179.02919006, -47.74899292 ], [ 179.02919006, -47.74899292 ] ] ], [ [ [ 179.02073669, -47.74906158 ], [ 179.020278929999989, -47.74744415 ], [ 179.02415466, -47.74750137 ], [ 179.02073669, -47.74906158 ], [ 179.02073669, -47.74906158 ] ] ], [ [ [ 171.27864075, -44.39670181 ], [ 171.27742004000001, -44.39676285 ], [ 171.278396609999987, -44.39578247 ], [ 171.27864075, -44.39670181 ], [ 171.27864075, -44.39670181 ] ] ], [ [ [ 171.26023865, -44.39122391 ], [ 171.25935364, -44.39001465 ], [ 171.260971070000011, -44.39007187 ], [ 171.26023865, -44.39122391 ], [ 171.26023865, -44.39122391 ] ] ], [ [ [ 171.28010559, -44.38512039 ], [ 171.278793330000013, -44.38402557 ], [ 171.2809906, -44.38431549 ], [ 171.28010559, -44.38512039 ], [ 171.28010559, -44.38512039 ] ] ], [ [ [ 172.83166504, -43.64861298 ], [ 172.83082581, -43.65139008 ], [ 172.829162599999989, -43.65055466 ], [ 172.83166504, -43.64861298 ], [ 172.83166504, -43.64861298 ] ] ], [ [ [ 172.69166565, -43.62277603 ], [ 172.701110840000013, -43.63000107 ], [ 172.69000244, -43.63416672 ], [ 172.68360901, -43.62611008 ], [ 172.69166565, -43.62277603 ], [ 172.69166565, -43.62277603 ] ] ], [ [ [ 173.076660159999989, -43.06083298 ], [ 173.080001829999986, -43.06194305 ], [ 173.07945251000001, -43.06400299 ], [ 173.076660159999989, -43.06083298 ], [ 173.076660159999989, -43.06083298 ] ] ], [ [ [ 173.69882202, -42.43678284 ], [ 173.698425289999989, -42.43558884 ], [ 173.69966125, -42.43576431 ], [ 173.69882202, -42.43678284 ], [ 173.69882202, -42.43678284 ] ] ], [ [ [ 173.68232727, -42.42862701 ], [ 173.67945862, -42.4310379 ], [ 173.67930603, -42.42863464 ], [ 173.68232727, -42.42862701 ], [ 173.68232727, -42.42862701 ] ] ], [ [ [ 173.77557373, -41.92541885 ], [ 173.796127320000011, -41.95817947 ], [ 173.7988739, -41.95175171 ], [ 173.81213379, -41.94766235 ], [ 173.82815552, -41.93712234 ], [ 173.84806824, -41.93092728 ], [ 173.85194397, -41.93529892 ], [ 173.918396, -41.91438293 ], [ 173.92616272, -41.92310333 ], [ 173.95950317, -41.91259003 ], [ 173.971206669999987, -41.92565536 ], [ 173.98179626000001, -41.92789459 ], [ 173.979003909999989, -41.9343605 ], [ 174.00305176, -41.93235779 ], [ 174.01768494, -41.93891144 ], [ 174.038024900000011, -41.9324913 ], [ 174.04202271, -41.93682098 ], [ 174.05163574, -41.92819595 ], [ 174.0664978, -41.93467712 ], [ 174.05186462, -41.96649933 ], [ 174.020584109999987, -41.99063873 ], [ 174.012496950000013, -42.00416565 ], [ 173.98857117, -42.02462769 ], [ 173.95552063, -42.06119537 ], [ 173.93888855, -42.08889008 ], [ 173.92614746000001, -42.11985779 ], [ 173.925003049999987, -42.13611221 ], [ 173.94042969, -42.15834427 ], [ 173.93989563, -42.16555405 ], [ 173.92971802, -42.17486572 ], [ 173.894729610000013, -42.18694305 ], [ 173.87817383, -42.20048523 ], [ 173.87402344, -42.21445847 ], [ 173.85798645, -42.21959305 ], [ 173.84663391, -42.23678207 ], [ 173.83085632, -42.24839783 ], [ 173.811752320000011, -42.25531769 ], [ 173.81080627, -42.26229095 ], [ 173.78820801, -42.27621841 ], [ 173.76538086, -42.28268051 ], [ 173.74861145, -42.30055618 ], [ 173.75389099, -42.30916595 ], [ 173.75027466, -42.32027817 ], [ 173.70411682, -42.34883881 ], [ 173.68948364, -42.36673355 ], [ 173.68215942, -42.39629745 ], [ 173.68847656, -42.41124725 ], [ 173.70707703, -42.41356659 ], [ 173.70661926, -42.41794968 ], [ 173.72555542, -42.42222214 ], [ 173.68978882, -42.43712234 ], [ 173.68891907, -42.42634583 ], [ 173.680587769999988, -42.42634201 ], [ 173.6778717, -42.41769791 ], [ 173.66268921, -42.41363907 ], [ 173.64518738000001, -42.41598892 ], [ 173.5922699, -42.43090057 ], [ 173.58416748, -42.44889069 ], [ 173.57298279, -42.45017624 ], [ 173.55664063, -42.45911026 ], [ 173.548614500000014, -42.45916748 ], [ 173.5400238, -42.46707153 ], [ 173.51951599, -42.49981308 ], [ 173.50721741000001, -42.51277924 ], [ 173.508605960000011, -42.52138901 ], [ 173.503265379999988, -42.52628326 ], [ 173.50097656, -42.54514694 ], [ 173.514175419999987, -42.55416107 ], [ 173.52194214, -42.55361176 ], [ 173.510269169999987, -42.56437302 ], [ 173.49931335, -42.56766891 ], [ 173.47824097, -42.59441757 ], [ 173.473556519999988, -42.60696411 ], [ 173.46525574, -42.61810684 ], [ 173.431838989999989, -42.68143082 ], [ 173.39468384, -42.74637604 ], [ 173.3901062, -42.75661087 ], [ 173.37361145, -42.78194427 ], [ 173.36854553, -42.79576492 ], [ 173.34788513, -42.81931305 ], [ 173.33465576, -42.82838058 ], [ 173.31503296, -42.85074234 ], [ 173.3084259, -42.86495209 ], [ 173.3193512, -42.88478851 ], [ 173.306854249999986, -42.88917542 ], [ 173.30148315, -42.89746094 ], [ 173.24905396, -42.9444809 ], [ 173.24246216, -42.95412827 ], [ 173.22053528, -42.96543884 ], [ 173.18661499000001, -42.97787094 ], [ 173.16987610000001, -42.97781372 ], [ 173.14483643, -42.98701096 ], [ 173.13417053, -42.99419785 ], [ 173.102310179999989, -43.02469254 ], [ 173.0847168, -43.04416656 ], [ 173.081390379999988, -43.05166626 ], [ 173.0625, -43.04916763 ], [ 173.05722046, -43.04527664 ], [ 173.04270935, -43.04764938 ], [ 173.01118469, -43.06048203 ], [ 172.99360657, -43.07305527 ], [ 172.97361755, -43.07749939 ], [ 172.9597168, -43.08416748 ], [ 172.93861389, -43.08638763 ], [ 172.93055725, -43.09194565 ], [ 172.90222168, -43.09972382 ], [ 172.88694763, -43.09916687 ], [ 172.86749268, -43.11249924 ], [ 172.84416199, -43.13277817 ], [ 172.82028198, -43.13333511 ], [ 172.81304932, -43.13805389 ], [ 172.78555298, -43.16805649 ], [ 172.769729610000013, -43.18972397 ], [ 172.75917053, -43.20944595 ], [ 172.732772829999988, -43.2472229 ], [ 172.72721863000001, -43.26361084 ], [ 172.71417236, -43.26694489 ], [ 172.72193909, -43.26916504 ], [ 172.72277832, -43.28527832 ], [ 172.71194458, -43.32249832 ], [ 172.7097168, -43.3433342 ], [ 172.708892819999988, -43.37472153 ], [ 172.71083069, -43.38666534 ], [ 172.698883059999986, -43.39138794 ], [ 172.70443726, -43.39583206 ], [ 172.70555115, -43.41666794 ], [ 172.7097168, -43.42139053 ], [ 172.705001829999986, -43.39250183 ], [ 172.71110535, -43.39361191 ], [ 172.71417236, -43.44250107 ], [ 172.7194519, -43.47027588 ], [ 172.729995730000013, -43.50444412 ], [ 172.75138855, -43.55222321 ], [ 172.74638367, -43.55166626 ], [ 172.741394039999989, -43.53944397 ], [ 172.734725950000012, -43.53722382 ], [ 172.7277832, -43.52639008 ], [ 172.71583557, -43.54777908 ], [ 172.70582581, -43.54861069 ], [ 172.707778929999989, -43.5577774 ], [ 172.71472168, -43.55500031 ], [ 172.726104740000011, -43.55944443 ], [ 172.737777709999989, -43.55638885 ], [ 172.74249268, -43.5652771 ], [ 172.75527954, -43.56388855 ], [ 172.768615720000014, -43.57305527 ], [ 172.77661133, -43.56944275 ], [ 172.77833557, -43.58333206 ], [ 172.791107180000012, -43.58416748 ], [ 172.800003049999987, -43.58083344 ], [ 172.80917358, -43.58638763 ], [ 172.8041687, -43.5933342 ], [ 172.78305054, -43.59555435 ], [ 172.77305603, -43.59944534 ], [ 172.75193787, -43.59805679 ], [ 172.732223510000011, -43.60889053 ], [ 172.71556091, -43.60499954 ], [ 172.706115720000014, -43.61277771 ], [ 172.69277954, -43.60583496 ], [ 172.67971802, -43.60777664 ], [ 172.65167236, -43.62277603 ], [ 172.65499878, -43.62555695 ], [ 172.64778137, -43.63499832 ], [ 172.65499878, -43.64083481 ], [ 172.668884279999986, -43.63138962 ], [ 172.666107180000012, -43.64138794 ], [ 172.66000366, -43.64361191 ], [ 172.66111755, -43.65638733 ], [ 172.67056274, -43.66333389 ], [ 172.6819458, -43.64638901 ], [ 172.68167114, -43.63722229 ], [ 172.68916321, -43.63972092 ], [ 172.68638611, -43.64861298 ], [ 172.69000244, -43.65527725 ], [ 172.706115720000014, -43.65194321 ], [ 172.71833801, -43.62444305 ], [ 172.73445129000001, -43.62666702 ], [ 172.74249268, -43.62250137 ], [ 172.74528503, -43.63360977 ], [ 172.75332642, -43.63750076 ], [ 172.75639343, -43.62861252 ], [ 172.75027466, -43.62611008 ], [ 172.756103520000011, -43.61888885 ], [ 172.77610779, -43.61527634 ], [ 172.78036499000001, -43.62221909 ], [ 172.79083252, -43.61500168 ], [ 172.80528259, -43.61083221 ], [ 172.81666565, -43.61639023 ], [ 172.82444763, -43.60361099 ], [ 172.831390379999988, -43.60694504 ], [ 172.830001829999986, -43.61639023 ], [ 172.82167053, -43.63694382 ], [ 172.82444763, -43.63777924 ], [ 172.8180542, -43.6558342 ], [ 172.81166077, -43.65777588 ], [ 172.82139587, -43.66277695 ], [ 172.8381958, -43.64546585 ], [ 172.83444214, -43.63555527 ], [ 172.84555054, -43.62277603 ], [ 172.84527588, -43.61611176 ], [ 172.853881840000014, -43.60277939 ], [ 172.86694336, -43.60777664 ], [ 172.86749268, -43.61249924 ], [ 172.87889099, -43.60749817 ], [ 172.88221741000001, -43.62388992 ], [ 172.892776489999989, -43.61360931 ], [ 172.90083313, -43.61611176 ], [ 172.90419006, -43.63226318 ], [ 172.90777588, -43.63333511 ], [ 172.8972168, -43.64805603 ], [ 172.896392819999988, -43.66333389 ], [ 172.886383059999986, -43.67166519 ], [ 172.892227170000012, -43.68694305 ], [ 172.89916992, -43.68583298 ], [ 172.90028381, -43.67666626 ], [ 172.913604740000011, -43.6566658 ], [ 172.91444397, -43.64805603 ], [ 172.9319458, -43.62194443 ], [ 172.94805908, -43.63833237 ], [ 172.960006709999988, -43.63305664 ], [ 172.961395259999989, -43.64805603 ], [ 172.978607180000012, -43.63222122 ], [ 172.983886719999987, -43.63972092 ], [ 172.9944458, -43.63999939 ], [ 172.999664309999986, -43.64488983 ], [ 173.0, -43.65722275 ], [ 173.008285519999987, -43.65438461 ], [ 172.99249268, -43.67305374 ], [ 173.0022583, -43.67373657 ], [ 173.02101135, -43.6530838 ], [ 173.03010559, -43.65481186 ], [ 173.03700256, -43.65052414 ], [ 173.04830933, -43.65329361 ], [ 173.03596497, -43.66006851 ], [ 173.03944397, -43.66570282 ], [ 173.049743650000011, -43.66384888 ], [ 173.05979919, -43.67122269 ], [ 173.073165890000013, -43.6746254 ], [ 173.06515503, -43.67735672 ], [ 173.067306519999988, -43.68719482 ], [ 173.05749512, -43.6922226 ], [ 173.07672119, -43.69887161 ], [ 173.08662415, -43.68362045 ], [ 173.09356689, -43.69091034 ], [ 173.10694885, -43.69444275 ], [ 173.11166382, -43.71055603 ], [ 173.09899902, -43.71973801 ], [ 173.111389159999987, -43.7183342 ], [ 173.11871338, -43.72328949 ], [ 173.11721802, -43.72999954 ], [ 173.09597778, -43.73274612 ], [ 173.09916687, -43.74416733 ], [ 173.1036377, -43.73918915 ], [ 173.12580872, -43.7368927 ], [ 173.13027954, -43.74730301 ], [ 173.12677002, -43.77649689 ], [ 173.108612060000013, -43.77472305 ], [ 173.11227417, -43.78753281 ], [ 173.110168460000011, -43.80319214 ], [ 173.09596252, -43.80864334 ], [ 173.107177729999989, -43.81617355 ], [ 173.10215759, -43.82291794 ], [ 173.09460449, -43.82277679 ], [ 173.10289001000001, -43.83330154 ], [ 173.08984375, -43.83253098 ], [ 173.08444214, -43.83694458 ], [ 173.08255005, -43.84870911 ], [ 173.07226563, -43.85033798 ], [ 173.065902709999989, -43.84204865 ], [ 173.055313109999986, -43.85698318 ], [ 173.04100037, -43.8552742 ], [ 173.0463562, -43.86049652 ], [ 173.03889465, -43.87277603 ], [ 173.02166748, -43.87666702 ], [ 173.00389099, -43.8702774 ], [ 173.01789856, -43.88134003 ], [ 172.99638367, -43.88861084 ], [ 172.99499512, -43.87333298 ], [ 172.988891599999988, -43.88750076 ], [ 172.97833252, -43.89083481 ], [ 172.96861267, -43.88805389 ], [ 172.96583557, -43.8758316 ], [ 172.94194031, -43.86222076 ], [ 172.93888855, -43.85499954 ], [ 172.94139099, -43.83916855 ], [ 172.94528198, -43.83638763 ], [ 172.94389343, -43.82138824 ], [ 172.958618159999986, -43.8125 ], [ 172.96916199, -43.80166626 ], [ 172.948883059999986, -43.80055618 ], [ 172.94194031, -43.78777695 ], [ 172.94528198, -43.78388977 ], [ 172.96388245, -43.78499985 ], [ 172.96583557, -43.78027725 ], [ 172.952499390000014, -43.77305603 ], [ 172.96278381, -43.76555634 ], [ 172.94194031, -43.76333237 ], [ 172.943603520000011, -43.75583267 ], [ 172.9347229, -43.7508316 ], [ 172.92778015, -43.75305557 ], [ 172.9291687, -43.77305603 ], [ 172.923614500000014, -43.77583313 ], [ 172.926391599999988, -43.76416779 ], [ 172.916107180000012, -43.75805664 ], [ 172.916381840000014, -43.76638794 ], [ 172.90931702, -43.78045273 ], [ 172.921386719999987, -43.78388977 ], [ 172.924728390000013, -43.79750061 ], [ 172.91694641, -43.79639053 ], [ 172.92195129000001, -43.80389023 ], [ 172.918609620000012, -43.81083298 ], [ 172.90444946, -43.81583405 ], [ 172.90777588, -43.83777618 ], [ 172.916107180000012, -43.85138702 ], [ 172.91027832, -43.85722351 ], [ 172.928894039999989, -43.87749863 ], [ 172.94194031, -43.88194275 ], [ 172.950683590000011, -43.89686966 ], [ 172.92971802, -43.90277863 ], [ 172.90777588, -43.89083481 ], [ 172.90194702, -43.89500046 ], [ 172.892364500000014, -43.89196014 ], [ 172.88417053, -43.89916611 ], [ 172.857223510000011, -43.88833237 ], [ 172.856109620000012, -43.87749863 ], [ 172.84832764, -43.89027786 ], [ 172.8347168, -43.89083481 ], [ 172.824722290000011, -43.88694382 ], [ 172.83583069, -43.8769455 ], [ 172.824722290000011, -43.88138962 ], [ 172.81166077, -43.87944412 ], [ 172.82444763, -43.86722183 ], [ 172.8069458, -43.87444305 ], [ 172.800033570000011, -43.87162018 ], [ 172.79943848, -43.86333466 ], [ 172.78111267, -43.8694458 ], [ 172.77694702, -43.86583328 ], [ 172.784729, -43.85111237 ], [ 172.7749939, -43.85916519 ], [ 172.76333618000001, -43.85805511 ], [ 172.7583313, -43.85250092 ], [ 172.7444458, -43.85472107 ], [ 172.73832703, -43.84194565 ], [ 172.740005489999987, -43.83388901 ], [ 172.73167419, -43.83666611 ], [ 172.71861267, -43.82833481 ], [ 172.69444275, -43.82833481 ], [ 172.59944153, -43.83250046 ], [ 172.53944397, -43.84000015 ], [ 172.48083496000001, -43.84638977 ], [ 172.4291687, -43.84999847 ], [ 172.37167358, -43.85749817 ], [ 172.30999756, -43.86861038 ], [ 172.25694275, -43.88499832 ], [ 172.21499634, -43.90139008 ], [ 172.19917297, -43.90139008 ], [ 172.0874939, -43.9366684 ], [ 172.04167175, -43.95360947 ], [ 171.98306274, -43.9769249 ], [ 171.95979309, -43.98753357 ], [ 171.86930847, -44.02558136 ], [ 171.82366943, -44.04616165 ], [ 171.74028015, -44.07976532 ], [ 171.73445129000001, -44.08272171 ], [ 171.635253909999989, -44.1228447 ], [ 171.605804440000014, -44.13641739 ], [ 171.569808959999989, -44.15473938 ], [ 171.5103302, -44.18880844 ], [ 171.48594666, -44.19966507 ], [ 171.42492676, -44.23218918 ], [ 171.34078979, -44.28820419 ], [ 171.31506348, -44.30919647 ], [ 171.27476501000001, -44.34413147 ], [ 171.25109863, -44.36848831 ], [ 171.253112789999989, -44.37540436 ], [ 171.24581909, -44.38014984 ], [ 171.246719359999986, -44.38660431 ], [ 171.256744379999986, -44.39319992 ], [ 171.263427729999989, -44.39246368 ], [ 171.26142883, -44.40452194 ], [ 171.265975950000012, -44.41458511 ], [ 171.258590700000013, -44.42467117 ], [ 171.26115417, -44.44403839 ], [ 171.22044373, -44.49286652 ], [ 171.19810486, -44.52387619 ], [ 171.17118835, -44.57458878 ], [ 171.1643219, -44.59768677 ], [ 171.15974426, -44.6323204 ], [ 171.1660614, -44.67562485 ], [ 171.16781616, -44.70949554 ], [ 171.170837400000011, -44.73521805 ], [ 171.1746521, -44.81825256 ], [ 171.17341614, -44.84260178 ], [ 171.16825867, -44.87584686 ], [ 171.15742493, -44.91264343 ], [ 171.14836121, -44.93682098 ], [ 171.13700867, -44.94003296 ], [ 171.125915529999986, -44.9374733 ], [ 171.11772156, -44.92840958 ], [ 171.09988403, -44.92776871 ], [ 171.07925415, -44.93362427 ], [ 171.07115173, -44.92456055 ], [ 171.06022644, -44.92198563 ], [ 171.04649353, -44.92590714 ], [ 171.02067566, -44.91627121 ], [ 171.00010681, -44.92219925 ], [ 170.99203491, -44.9131813 ], [ 170.98518372, -44.91516876 ], [ 170.97711182, -44.90616608 ], [ 170.963394169999987, -44.91016388 ], [ 170.930725099999989, -44.90270996 ], [ 170.91296387, -44.90221786 ], [ 170.90489197, -44.89323044 ], [ 170.89398193, -44.890728 ], [ 170.88024902, -44.89471054 ], [ 170.87620544, -44.89021301 ], [ 170.86245728, -44.89418411 ], [ 170.861251829999986, -44.8832016 ], [ 170.85437012, -44.88518524 ], [ 170.8106842, -44.87509155 ], [ 170.7928772, -44.87453461 ], [ 170.78477478, -44.86552811 ], [ 170.76695251000001, -44.86496353 ], [ 170.7479248, -44.85342026 ], [ 170.704177859999987, -44.84326553 ], [ 170.700134279999986, -44.83876038 ], [ 170.68229675, -44.83817673 ], [ 170.67825317, -44.83367538 ], [ 170.65635681, -44.82858276 ], [ 170.63851929, -44.82799149 ], [ 170.63447571, -44.82348633 ], [ 170.59068298, -44.8132782 ], [ 170.57522583, -44.83458328 ], [ 170.561431879999986, -44.83847427 ], [ 170.551681519999988, -44.84687042 ], [ 170.55004883, -44.86427689 ], [ 170.53866577, -44.89007568 ], [ 170.52485657, -44.89395523 ], [ 170.51226807, -44.9087944 ], [ 170.45706177, -44.92428207 ], [ 170.46112061, -44.92879486 ], [ 170.44041443, -44.9345932 ], [ 170.43756104, -44.94103622 ], [ 170.42254639, -44.93394089 ], [ 170.419692989999987, -44.94038773 ], [ 170.38516235, -44.95003128 ], [ 170.372985840000013, -44.93648911 ], [ 170.36201477, -44.93390274 ], [ 170.3677063, -44.92102051 ], [ 170.36244202, -44.90555573 ], [ 170.33358765, -44.90231323 ], [ 170.316909790000011, -44.91260529 ], [ 170.27539063, -44.92416 ], [ 170.26727295, -44.91513443 ], [ 170.25462341, -44.92993546 ], [ 170.2338562, -44.93571091 ], [ 170.222854610000013, -44.93312073 ], [ 170.181274409999986, -44.944664 ], [ 170.16333008, -44.94399261 ], [ 170.159255980000012, -44.93947601 ], [ 170.14538574, -44.94332504 ], [ 170.14131165, -44.93880844 ], [ 170.13150024, -44.94716644 ], [ 170.116424560000013, -44.94005585 ], [ 170.10948181, -44.94197845 ], [ 170.10423279, -44.92650604 ], [ 170.0821991, -44.92131805 ], [ 170.09896851, -44.91103745 ], [ 170.0786438, -44.88846207 ], [ 170.081527709999989, -44.88202667 ], [ 170.059509279999986, -44.87683487 ], [ 170.01074219, -44.82265091 ], [ 170.01651001, -44.80979156 ], [ 170.01010132, -44.78338623 ], [ 169.9979248, -44.76984406 ], [ 169.99963379, -44.75247574 ], [ 169.99151611, -44.74345016 ], [ 169.98394775, -44.70612335 ], [ 169.960159299999987, -44.65076065 ], [ 169.913284299999987, -44.64677811 ], [ 169.909225459999988, -44.64226532 ], [ 169.85768127, -44.66204834 ], [ 169.8547821, -44.66846848 ], [ 169.821762080000013, -44.66064453 ], [ 169.802642819999988, -44.64900589 ], [ 169.780609129999988, -44.64378357 ], [ 169.76844788, -44.63023376 ], [ 169.77716064, -44.61097717 ], [ 169.765014650000012, -44.59743118 ], [ 169.76791382, -44.59101486 ], [ 169.751708979999989, -44.57295609 ], [ 169.75866699, -44.57105637 ], [ 169.75056458, -44.56202698 ], [ 169.74765015, -44.5684433 ], [ 169.733734129999988, -44.57224274 ], [ 169.737792969999987, -44.57675934 ], [ 169.72615051, -44.60242462 ], [ 169.70817566, -44.60170746 ], [ 169.68208313, -44.59195328 ], [ 169.66815186, -44.5957489 ], [ 169.65713501, -44.5931282 ], [ 169.66700745, -44.58481598 ], [ 169.65890503, -44.57577896 ], [ 169.65777588, -44.56484604 ], [ 169.667648320000012, -44.55653381 ], [ 169.663604740000011, -44.55201721 ], [ 169.676391599999988, -44.5372963 ], [ 169.66423035, -44.52374649 ], [ 169.67120361, -44.52185059 ], [ 169.6509552, -44.49926758 ], [ 169.66487122, -44.49547958 ], [ 169.663726809999986, -44.48455429 ], [ 169.67070007, -44.4826622 ], [ 169.654495239999989, -44.46460342 ], [ 169.632476809999986, -44.45935822 ], [ 169.61856079, -44.4631424 ], [ 169.61450195, -44.45862579 ], [ 169.59361267, -44.46429825 ], [ 169.58955383, -44.45977783 ], [ 169.57157898, -44.4590416 ], [ 169.55943298, -44.44548798 ], [ 169.57627869, -44.43530655 ], [ 169.56413269, -44.42175293 ], [ 169.574020389999987, -44.41345978 ], [ 169.569976809999986, -44.40894318 ], [ 169.583908079999986, -44.40517044 ], [ 169.58682251, -44.39876556 ], [ 169.570632929999988, -44.38070679 ], [ 169.5834198, -44.3660202 ], [ 169.59039307, -44.36413193 ], [ 169.58229065, -44.35510635 ], [ 169.599121090000011, -44.34493637 ], [ 169.586990359999987, -44.33139801 ], [ 169.58990479, -44.32500076 ], [ 169.581817629999989, -44.31597519 ], [ 169.59573364, -44.31221008 ], [ 169.587646479999989, -44.30318451 ], [ 169.59458923, -44.30130386 ], [ 169.5894165, -44.28589249 ], [ 169.598159790000011, -44.26671982 ], [ 169.597015379999988, -44.25582504 ], [ 169.572769169999987, -44.22877502 ], [ 169.56178284, -44.22614288 ], [ 169.564697270000011, -44.21975708 ], [ 169.55661011, -44.21074295 ], [ 169.559524540000012, -44.20436096 ], [ 169.5803833, -44.19874191 ], [ 169.57633972, -44.19424057 ], [ 169.5861969, -44.18598938 ], [ 169.58506775, -44.17510986 ], [ 169.59896851, -44.17136765 ], [ 169.60186768, -44.1649971 ], [ 169.622695920000012, -44.15938568 ], [ 169.61462402, -44.15038681 ], [ 169.62850952, -44.14664841 ], [ 169.63835144, -44.13841248 ], [ 169.63317871000001, -44.12305832 ], [ 169.65803528, -44.12195206 ], [ 169.64996338, -44.11296463 ], [ 169.655776980000013, -44.10025024 ], [ 169.676574710000011, -44.09465408 ], [ 169.679473879999989, -44.0882988 ], [ 169.671417240000011, -44.079319 ], [ 169.674316409999989, -44.07296753 ], [ 169.68817139, -44.06923294 ], [ 169.70089722, -44.05465698 ], [ 169.6968689, -44.0501709 ], [ 169.706695559999986, -44.04195023 ], [ 169.710723879999989, -44.0464325 ], [ 169.72457886, -44.04269409 ], [ 169.73440552, -44.0344696 ], [ 169.718292240000011, -44.01654053 ], [ 169.72521973, -44.01467133 ], [ 169.717163090000014, -44.0057106 ], [ 169.72698975, -43.99748993 ], [ 169.71089172, -43.97957993 ], [ 169.71780396, -43.97770691 ], [ 169.7166748, -43.96688461 ], [ 169.73744202, -43.96126938 ], [ 169.73631287, -43.9504509 ], [ 169.757049560000013, -43.94482803 ], [ 169.7766571, -43.92838287 ], [ 169.77151489, -43.91309738 ], [ 169.778411870000014, -43.91122055 ], [ 169.78419495, -43.89852905 ], [ 169.81181335, -43.8910141 ], [ 169.81066895, -43.88019943 ], [ 169.852066040000011, -43.8689003 ], [ 169.85379028, -43.85173798 ], [ 169.86758423, -43.84796524 ], [ 169.88020325, -43.83337402 ], [ 169.89512634, -43.84040833 ], [ 169.90890503, -43.83662415 ], [ 169.91177368000001, -43.83026886 ], [ 169.906585690000014, -43.81499481 ], [ 169.94786072, -43.80361557 ], [ 169.9438324, -43.79915619 ], [ 169.98506165, -43.78774643 ], [ 169.98789978, -43.78138351 ], [ 169.979843140000014, -43.77246857 ], [ 169.99356079, -43.76865387 ], [ 169.99639893, -43.76228714 ], [ 169.98429871, -43.74891281 ], [ 170.01171875, -43.74126816 ], [ 170.01574707, -43.74572754 ], [ 170.02542114, -43.7374382 ], [ 170.02137756, -43.73297501 ], [ 170.041915890000013, -43.72721863 ], [ 170.03382874, -43.71829605 ], [ 170.040664670000012, -43.71637344 ], [ 170.03259277, -43.70745087 ], [ 170.04098511, -43.68831253 ], [ 170.08201599, -43.67679214 ], [ 170.07797241, -43.67233658 ], [ 170.09848022, -43.6665802 ], [ 170.1040802, -43.6538353 ], [ 170.10003662, -43.64938354 ], [ 170.10966492, -43.64109802 ], [ 170.09753418, -43.62773895 ], [ 170.107177729999989, -43.61946106 ], [ 170.095047, -43.60610962 ], [ 170.09783936, -43.5997467 ], [ 170.132019039999989, -43.59018326 ], [ 170.1497345, -43.59080505 ], [ 170.14848328, -43.57999802 ], [ 170.162170409999987, -43.57617569 ], [ 170.160903929999989, -43.56537628 ], [ 170.174591060000012, -43.56155777 ], [ 170.178634640000013, -43.56599808 ], [ 170.19914246, -43.5602684 ], [ 170.208770750000014, -43.55200577 ], [ 170.207519530000013, -43.5412178 ], [ 170.221191409999989, -43.53739929 ], [ 170.21992493, -43.52661514 ], [ 170.3157196, -43.49990463 ], [ 170.31851196, -43.49356461 ], [ 170.332244870000011, -43.48973846 ], [ 170.34440613000001, -43.50302124 ], [ 170.35127258, -43.50110626 ], [ 170.35939026, -43.50996017 ], [ 170.40750122, -43.49653244 ], [ 170.413146970000014, -43.48384857 ], [ 170.4269104, -43.48001099 ], [ 170.432556150000011, -43.4673233 ], [ 170.450408939999988, -43.46790314 ], [ 170.46418762, -43.46405411 ], [ 170.462951659999987, -43.45328903 ], [ 170.475524900000011, -43.43867111 ], [ 170.52384949, -43.42517471 ], [ 170.51977539, -43.42075348 ], [ 170.53645325, -43.41053772 ], [ 170.548629760000011, -43.42380524 ], [ 170.55961609, -43.42629242 ], [ 170.58035278, -43.42049789 ], [ 170.585617070000012, -43.43569565 ], [ 170.59944153, -43.43183136 ], [ 170.60350037, -43.43625259 ], [ 170.61732483, -43.43238449 ], [ 170.61897278, -43.41524887 ], [ 170.6328125, -43.41137695 ], [ 170.62875366, -43.40695572 ], [ 170.64259338, -43.4030838 ], [ 170.63853455, -43.39866257 ], [ 170.65237427, -43.39478683 ], [ 170.66096497, -43.37570572 ], [ 170.65403748, -43.37764359 ], [ 170.6459198, -43.3687973 ], [ 170.66668701, -43.36297989 ], [ 170.66262817, -43.35855865 ], [ 170.67648315, -43.35467911 ], [ 170.67242432, -43.35025787 ], [ 170.6862793, -43.34637451 ], [ 170.69726563, -43.34885406 ], [ 170.7180481, -43.34302902 ], [ 170.720916749999986, -43.33666229 ], [ 170.704711909999986, -43.31896973 ], [ 170.71569824, -43.32144928 ], [ 170.73648071, -43.31561661 ], [ 170.758453370000012, -43.32057571 ], [ 170.76826477, -43.31225967 ], [ 170.79600525, -43.30447388 ], [ 170.798904420000014, -43.29809952 ], [ 170.806991579999988, -43.30694962 ], [ 170.827804570000012, -43.3011055 ], [ 170.8266449, -43.29030609 ], [ 170.875213620000011, -43.27666092 ], [ 170.870025629999986, -43.26143265 ], [ 170.87582397, -43.24868011 ], [ 170.8966217, -43.24283218 ], [ 170.89257813, -43.23840714 ], [ 170.906463620000011, -43.23450851 ], [ 170.90242004000001, -43.23008347 ], [ 170.91629028, -43.22618484 ], [ 170.91514587, -43.21538162 ], [ 170.9359436, -43.20953369 ], [ 170.93884277, -43.20315933 ], [ 170.95385742, -43.21006393 ], [ 170.94805908, -43.22281647 ], [ 170.96307373, -43.22971725 ], [ 170.99079895, -43.22192383 ], [ 170.98675537, -43.21749878 ], [ 171.000610349999988, -43.21360016 ], [ 170.9994812, -43.20279694 ], [ 171.0092926, -43.19447327 ], [ 171.02316284, -43.19057846 ], [ 171.0249176, -43.17340088 ], [ 171.05955505, -43.16365814 ], [ 171.043426509999989, -43.14595032 ], [ 171.04632568, -43.13957214 ], [ 171.07403564, -43.13178253 ], [ 171.07691956, -43.12540436 ], [ 171.068862919999987, -43.11655045 ], [ 171.089645389999987, -43.11070633 ], [ 171.08158875, -43.1018486 ], [ 171.09947205, -43.10238266 ], [ 171.10752869, -43.11123657 ], [ 171.12426758, -43.10096741 ], [ 171.11621094, -43.09210968 ], [ 171.11911011, -43.08573532 ], [ 171.13989258, -43.0798912 ], [ 171.147933959999989, -43.08874512 ], [ 171.15776062, -43.08042526 ], [ 171.185455319999988, -43.07263184 ], [ 171.181427, -43.06820679 ], [ 171.19526672, -43.06431198 ], [ 171.203323360000013, -43.07316589 ], [ 171.23100281, -43.0653801 ], [ 171.233886719999987, -43.05900192 ], [ 171.22584534, -43.05014801 ], [ 171.228744510000013, -43.04376984 ], [ 171.24258423, -43.03987503 ], [ 171.23855591, -43.03544617 ], [ 171.25239563, -43.03155518 ], [ 171.244354249999986, -43.02269745 ], [ 171.25126648, -43.02074814 ], [ 171.243225099999989, -43.01189041 ], [ 171.25013733, -43.00994492 ], [ 171.24209595, -43.00108719 ], [ 171.26286316, -42.99524689 ], [ 171.25883484, -42.99081802 ], [ 171.26864624000001, -42.98249435 ], [ 171.289398190000014, -42.97665024 ], [ 171.28538513, -42.97222137 ], [ 171.31994629, -42.96247864 ], [ 171.309021, -42.95999908 ], [ 171.314819340000014, -42.94724274 ], [ 171.33554077, -42.94139099 ], [ 171.350494379999986, -42.94829559 ], [ 171.374099730000012, -42.93605042 ], [ 171.389038090000014, -42.94294739 ], [ 171.406860349999988, -42.94346237 ], [ 171.40109253, -42.95623016 ], [ 171.42179871, -42.95035553 ], [ 171.41778564, -42.94593048 ], [ 171.43159485000001, -42.94201279 ], [ 171.42758179, -42.93758392 ], [ 171.448287959999988, -42.93170547 ], [ 171.44026184, -42.92285156 ], [ 171.443145750000014, -42.91646194 ], [ 171.45695496, -42.91254044 ], [ 171.45983887, -42.906147 ], [ 171.47476196, -42.91304016 ], [ 171.48857117, -42.90911484 ], [ 171.494338989999989, -42.89633179 ], [ 171.512146, -42.8968277 ], [ 171.524185179999989, -42.91011429 ], [ 171.55175781, -42.9022522 ], [ 171.55577087, -42.90668106 ], [ 171.59713745, -42.89487839 ], [ 171.60113525, -42.89930725 ], [ 171.6149292, -42.89537048 ], [ 171.62294006, -42.90423203 ], [ 171.67115784, -42.89044952 ], [ 171.674041749999986, -42.88405228 ], [ 171.68493652, -42.88651657 ], [ 171.69294739, -42.8953743 ], [ 171.70384216, -42.89783859 ], [ 171.700973510000011, -42.90423584 ], [ 171.72163391, -42.8983345 ], [ 171.71762085, -42.89390182 ], [ 171.73828125, -42.8880043 ], [ 171.73426819, -42.88357162 ], [ 171.74803162, -42.87963867 ], [ 171.74403381, -42.87520599 ], [ 171.75779724, -42.87127304 ], [ 171.749786379999989, -42.8624115 ], [ 171.738891599999988, -42.8599472 ], [ 171.74865723, -42.85158157 ], [ 171.74465942, -42.8471489 ], [ 171.77218628, -42.8392868 ], [ 171.76817322, -42.83485413 ], [ 171.773941040000011, -42.82205963 ], [ 171.76304626000001, -42.81959534 ], [ 171.772811890000014, -42.81122971 ], [ 171.76480103, -42.80236816 ], [ 171.77055359, -42.78956985 ], [ 171.79808044, -42.78171158 ], [ 171.80207825, -42.78614044 ], [ 171.85710144, -42.77042389 ], [ 171.855972290000011, -42.75959778 ], [ 171.86972046, -42.75566864 ], [ 171.865722659999989, -42.75123596 ], [ 171.88633728, -42.74534607 ], [ 171.89035034, -42.74977875 ], [ 171.89608765, -42.73698807 ], [ 171.89382935, -42.71533203 ], [ 171.91442871000001, -42.70944595 ], [ 171.928771970000014, -42.67747498 ], [ 171.93850708, -42.66911697 ], [ 171.934509279999986, -42.6646843 ], [ 171.96882629000001, -42.65488052 ], [ 171.96481323, -42.65044785 ], [ 171.9894104, -42.64899826 ], [ 171.98426819, -42.63373947 ], [ 172.00198364, -42.63425064 ], [ 172.02941895, -42.62641144 ], [ 172.04428101, -42.63331604 ], [ 172.0539856, -42.62496185 ], [ 172.057983400000012, -42.62939453 ], [ 172.11283875, -42.61371994 ], [ 172.104843140000014, -42.6048584 ], [ 172.11854553, -42.6009407 ], [ 172.11054993, -42.59207916 ], [ 172.12026978, -42.5837326 ], [ 172.13169861, -42.55817795 ], [ 172.172790529999986, -42.5464325 ], [ 172.17564392, -42.54004669 ], [ 172.18934631, -42.53613281 ], [ 172.1882019, -42.52531815 ], [ 172.19790649, -42.51697922 ], [ 172.18992615, -42.50812149 ], [ 172.20932007, -42.49144363 ], [ 172.223007200000012, -42.48753357 ], [ 172.21902466, -42.48310852 ], [ 172.23954773, -42.47724533 ], [ 172.248107909999987, -42.45810699 ], [ 172.24411011, -42.45367813 ], [ 172.27148438, -42.44587326 ], [ 172.275466920000014, -42.45029831 ], [ 172.29598999000001, -42.44444656 ], [ 172.30567932, -42.43612289 ], [ 172.314239500000014, -42.41700745 ], [ 172.341583250000014, -42.40921402 ], [ 172.33760071, -42.40479279 ], [ 172.35127258, -42.40090179 ], [ 172.34729004, -42.39648056 ], [ 172.36094666, -42.39258575 ], [ 172.35696411, -42.38816452 ], [ 172.41163635, -42.37260818 ], [ 172.42643738000001, -42.37949753 ], [ 172.44009399, -42.37561035 ], [ 172.43611145, -42.37119293 ], [ 172.456604, -42.36536026 ], [ 172.4594574, -42.35900116 ], [ 172.45718384, -42.33745193 ], [ 172.46287537, -42.32474136 ], [ 172.458892819999988, -42.32032394 ], [ 172.47937012, -42.31450653 ], [ 172.47142029, -42.30567932 ], [ 172.474258420000012, -42.29932404 ], [ 172.48791504, -42.29545212 ], [ 172.4839325, -42.29103851 ], [ 172.496444700000012, -42.27640152 ], [ 172.488494870000011, -42.26757431 ], [ 172.50897217, -42.26177216 ], [ 172.51293945, -42.26618576 ], [ 172.533416749999986, -42.26038361 ], [ 172.532287599999989, -42.24962997 ], [ 172.54592896, -42.24576569 ], [ 172.54194641, -42.24135208 ], [ 172.56240845, -42.23556137 ], [ 172.570938109999986, -42.21654129 ], [ 172.59140015, -42.21075821 ], [ 172.59538269, -42.21516418 ], [ 172.60900879, -42.21131134 ], [ 172.6050415, -42.20690155 ], [ 172.6186676, -42.20304871 ], [ 172.624359129999988, -42.1903801 ], [ 172.63116455, -42.18845749 ], [ 172.62321472, -42.17964172 ], [ 172.6300354, -42.1777153 ], [ 172.62208557, -42.16890335 ], [ 172.6277771, -42.15624237 ], [ 172.623809810000012, -42.1518364 ], [ 172.63630676, -42.13726044 ], [ 172.656738280000013, -42.13149643 ], [ 172.64483643, -42.11828232 ], [ 172.646545409999987, -42.10123062 ], [ 172.69421387, -42.08781052 ], [ 172.70214844, -42.09661484 ], [ 172.6993103, -42.10293579 ], [ 172.71974182, -42.09718323 ], [ 172.73051453, -42.09967041 ], [ 172.73164368, -42.11038971 ], [ 172.73957825, -42.11919403 ], [ 172.732772829999988, -42.12111282 ], [ 172.7407074, -42.12991714 ], [ 172.73106384, -42.13815689 ], [ 172.732192989999987, -42.14888382 ], [ 172.74807739, -42.16649246 ], [ 172.776428220000014, -42.16953278 ], [ 172.803634640000013, -42.16184616 ], [ 172.814392090000013, -42.16432571 ], [ 172.80873108, -42.17696762 ], [ 172.81668091, -42.18576813 ], [ 172.84387207, -42.17808151 ], [ 172.85180664, -42.1868782 ], [ 172.84614563, -42.19952011 ], [ 172.83255005, -42.20336533 ], [ 172.83369446, -42.21408844 ], [ 172.84164429, -42.22288895 ], [ 172.83483887, -42.22481155 ], [ 172.8427887, -42.23361206 ], [ 172.83598328, -42.23553848 ], [ 172.84790039, -42.24873352 ], [ 172.854705810000013, -42.2468071 ], [ 172.87623596, -42.25175095 ], [ 172.8745575, -42.26879883 ], [ 172.85647583, -42.29603577 ], [ 172.86839294, -42.3092308 ], [ 172.87518311, -42.30730057 ], [ 172.883132929999988, -42.31609344 ], [ 172.885955810000013, -42.30976486 ], [ 172.90634155, -42.30397797 ], [ 172.9103241, -42.30837631 ], [ 172.923904420000014, -42.30451584 ], [ 172.939804079999988, -42.32209778 ], [ 172.930191040000011, -42.3303566 ], [ 172.93135071, -42.3410759 ], [ 172.93930054, -42.34986496 ], [ 172.95288086, -42.34600449 ], [ 172.96083069, -42.35479355 ], [ 172.94841003, -42.36937714 ], [ 172.95239258, -42.37377167 ], [ 172.98187256, -42.38747787 ], [ 172.9858551, -42.39187241 ], [ 173.006210329999988, -42.38607025 ], [ 173.02095032, -42.39292145 ], [ 173.00738525, -42.39678574 ], [ 173.01135254, -42.40117645 ], [ 173.001754760000011, -42.40943527 ], [ 173.00292969, -42.42015457 ], [ 172.99331665, -42.42841721 ], [ 172.98770142, -42.44107437 ], [ 172.980896, -42.44301224 ], [ 172.99565125, -42.4498558 ], [ 173.02960205, -42.44016647 ], [ 173.05348206, -42.4664917 ], [ 173.043884279999986, -42.47475815 ], [ 173.06260681, -42.48597717 ], [ 173.082962040000012, -42.48015594 ], [ 173.09417725, -42.45487595 ], [ 173.098159790000011, -42.45925903 ], [ 173.11849976, -42.45346069 ], [ 173.121292110000013, -42.44714355 ], [ 173.132049560000013, -42.44960022 ], [ 173.145599370000014, -42.44573975 ], [ 173.14956665, -42.45012283 ], [ 173.16987610000001, -42.44434357 ], [ 173.16590881, -42.43996048 ], [ 173.175460820000012, -42.43172836 ], [ 173.17149353, -42.42734146 ], [ 173.17706299, -42.41472626 ], [ 173.21086121, -42.40513611 ], [ 173.22319031, -42.390625 ], [ 173.22200012, -42.37993622 ], [ 173.23548889, -42.37612152 ], [ 173.23033142, -42.36103821 ], [ 173.23310852, -42.35474014 ], [ 173.257308959999989, -42.35343552 ], [ 173.24263, -42.34654236 ], [ 173.19024658, -42.34481049 ], [ 173.195816040000011, -42.33220291 ], [ 173.20932007, -42.3283844 ], [ 173.22003174, -42.33087158 ], [ 173.221618650000011, -42.31387711 ], [ 173.25532532, -42.30437469 ], [ 173.25808716, -42.29807663 ], [ 173.271560670000014, -42.29428101 ], [ 173.27432251, -42.28798294 ], [ 173.293304440000014, -42.27159119 ], [ 173.3134613, -42.26589203 ], [ 173.3162384, -42.25959015 ], [ 173.30833435, -42.25078964 ], [ 173.321762080000013, -42.24698639 ], [ 173.32571411, -42.25138855 ], [ 173.35255432, -42.2437706 ], [ 173.35531616, -42.23746109 ], [ 173.36991882, -42.24435806 ], [ 173.386077879999988, -42.23423004 ], [ 173.37818909, -42.22542572 ], [ 173.39828491, -42.21969223 ], [ 173.40222168, -42.22409439 ], [ 173.4223175, -42.21835327 ], [ 173.4317627, -42.21011734 ], [ 173.44631958, -42.21700668 ], [ 173.45181274, -42.20436096 ], [ 173.47854614, -42.19667816 ], [ 173.47460938, -42.19227219 ], [ 173.480117799999988, -42.17961502 ], [ 173.484054570000012, -42.184021 ], [ 173.49740601, -42.18017197 ], [ 173.48954773, -42.1713562 ], [ 173.49623108, -42.16943359 ], [ 173.48051453, -42.15180588 ], [ 173.48719788, -42.14987946 ], [ 173.4793396, -42.1410675 ], [ 173.48602295, -42.13913727 ], [ 173.47422791, -42.12592316 ], [ 173.47698975, -42.11958694 ], [ 173.49703979, -42.1137886 ], [ 173.499786379999989, -42.10744858 ], [ 173.49468994, -42.0922966 ], [ 173.50805664, -42.08842087 ], [ 173.50413513, -42.08401489 ], [ 173.517501829999986, -42.08013535 ], [ 173.52024841, -42.07378769 ], [ 173.53361511, -42.06990051 ], [ 173.53753662, -42.07430267 ], [ 173.55088806, -42.07041168 ], [ 173.55480957, -42.07481766 ], [ 173.56584167, -42.0493927 ], [ 173.579177859999987, -42.04548645 ], [ 173.57801819, -42.03471756 ], [ 173.59135437, -42.03079987 ], [ 173.60194397, -42.03324509 ], [ 173.61135864, -42.02490997 ], [ 173.61019897, -42.01413727 ], [ 173.63018799, -42.0082283 ], [ 173.647399900000011, -42.00868225 ], [ 173.667343140000014, -42.00274658 ], [ 173.66894531, -41.985569 ], [ 173.70880127, -41.97361374 ], [ 173.72366333, -41.95240402 ], [ 173.71977234, -41.94800949 ], [ 173.73075867, -41.92238235 ], [ 173.74401855, -41.91833878 ], [ 173.740142819999988, -41.91395187 ], [ 173.753402709999989, -41.90990067 ], [ 173.767807010000013, -41.91664505 ], [ 173.76116943, -41.91867447 ], [ 173.77557373, -41.92541885 ], [ 173.77557373, -41.92541885 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.4", "id_1": 4, "name_1": "Chatham Islands", "hasc_1": "NZ.CI", "population2022": 800, "areakm2": 819.511, "density2022": 0.98 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.23971558, -44.43000031 ], [ -176.237228390000013, -44.43416595 ], [ -176.24333191, -44.43249893 ], [ -176.23971558, -44.43000031 ], [ -176.23971558, -44.43000031 ] ] ], [ [ [ -176.327331539999989, -44.3699379 ], [ -176.32952881, -44.36924744 ], [ -176.32830811, -44.36832428 ], [ -176.327331539999989, -44.3699379 ], [ -176.327331539999989, -44.3699379 ] ] ], [ [ [ -176.28053284, -44.37034988 ], [ -176.27955627, -44.36816025 ], [ -176.27865601, -44.36936951 ], [ -176.28053284, -44.37034988 ], [ -176.28053284, -44.37034988 ] ] ], [ [ [ -176.24858093, -44.35507584 ], [ -176.245742799999988, -44.35674667 ], [ -176.248413090000014, -44.35646057 ], [ -176.24858093, -44.35507584 ], [ -176.24858093, -44.35507584 ] ] ], [ [ [ -176.237823490000011, -44.35574722 ], [ -176.242385860000013, -44.35787964 ], [ -176.24205017, -44.35546112 ], [ -176.237823490000011, -44.35574722 ], [ -176.237823490000011, -44.35574722 ] ] ], [ [ [ -176.27166748, -44.35388947 ], [ -176.26817322, -44.35628891 ], [ -176.27102661, -44.35680771 ], [ -176.27166748, -44.35388947 ], [ -176.27166748, -44.35388947 ] ] ], [ [ [ -176.27694702, -44.35749817 ], [ -176.27806091, -44.35610962 ], [ -176.27397156, -44.35361481 ], [ -176.27694702, -44.35749817 ], [ -176.27694702, -44.35749817 ] ] ], [ [ [ -176.16116333, -44.3524437 ], [ -176.15921021, -44.35434723 ], [ -176.16172791, -44.35492325 ], [ -176.16116333, -44.3524437 ], [ -176.16116333, -44.3524437 ] ] ], [ [ [ -176.17523193, -44.33598709 ], [ -176.166076659999987, -44.33908463 ], [ -176.16864014, -44.34720993 ], [ -176.16267395, -44.34992599 ], [ -176.168762210000011, -44.35717773 ], [ -176.1862793, -44.34912872 ], [ -176.1809845, -44.33683777 ], [ -176.17523193, -44.33598709 ], [ -176.17523193, -44.33598709 ] ] ], [ [ [ -176.345611569999988, -44.29091644 ], [ -176.34707642, -44.29091644 ], [ -176.34602356, -44.28890228 ], [ -176.345611569999988, -44.29091644 ], [ -176.345611569999988, -44.29091644 ] ] ], [ [ [ -176.39329529, -44.2882843 ], [ -176.3944397, -44.28667068 ], [ -176.39273071, -44.2869606 ], [ -176.39329529, -44.2882843 ], [ -176.39329529, -44.2882843 ] ] ], [ [ [ -176.3380127, -44.28578949 ], [ -176.340347290000011, -44.28897476 ], [ -176.342285159999989, -44.2872467 ], [ -176.3380127, -44.28578949 ], [ -176.3380127, -44.28578949 ] ] ], [ [ [ -176.313400269999988, -44.27650452 ], [ -176.3099823, -44.28019333 ], [ -176.32029724, -44.28152084 ], [ -176.313400269999988, -44.27650452 ], [ -176.313400269999988, -44.27650452 ] ] ], [ [ [ -176.28132629000001, -44.27167511 ], [ -176.283111569999988, -44.27092361 ], [ -176.281570429999988, -44.27058029 ], [ -176.28132629000001, -44.27167511 ], [ -176.28132629000001, -44.27167511 ] ] ], [ [ [ -176.1289978, -44.27043915 ], [ -176.131103520000011, -44.26934433 ], [ -176.12875366, -44.26893997 ], [ -176.1289978, -44.27043915 ], [ -176.1289978, -44.27043915 ] ] ], [ [ [ -176.12802124000001, -44.26571274 ], [ -176.129394530000013, -44.26490784 ], [ -176.12834167, -44.26467514 ], [ -176.12802124000001, -44.26571274 ], [ -176.12802124000001, -44.26571274 ] ] ], [ [ [ -176.292221070000011, -44.26236343 ], [ -176.28710938, -44.27060318 ], [ -176.301239009999989, -44.277565 ], [ -176.31002808, -44.27677917 ], [ -176.29945374, -44.27124786 ], [ -176.3019104, -44.26719284 ], [ -176.292221070000011, -44.26236343 ], [ -176.292221070000011, -44.26236343 ] ] ], [ [ [ -176.279235840000013, -44.23928452 ], [ -176.28208923, -44.24160385 ], [ -176.28572083, -44.23941422 ], [ -176.279235840000013, -44.23928452 ], [ -176.279235840000013, -44.23928452 ] ] ], [ [ [ -176.22309875, -44.22398376 ], [ -176.21255493000001, -44.2243042 ], [ -176.19625854, -44.23195648 ], [ -176.19096375, -44.24119949 ], [ -176.16413879000001, -44.26426315 ], [ -176.1559906, -44.2612114 ], [ -176.15400696, -44.27312088 ], [ -176.18453979, -44.28730774 ], [ -176.19993591, -44.30501175 ], [ -176.195510860000013, -44.31244278 ], [ -176.20135498, -44.31624603 ], [ -176.20210266, -44.32706451 ], [ -176.21369934, -44.33409882 ], [ -176.22642517, -44.3342247 ], [ -176.22456360000001, -44.34135818 ], [ -176.243896479999989, -44.35499954 ], [ -176.24737549, -44.34856796 ], [ -176.25744629, -44.34447098 ], [ -176.24835205, -44.33520508 ], [ -176.249069209999988, -44.32810974 ], [ -176.26690674, -44.32461548 ], [ -176.25744629, -44.31946182 ], [ -176.2532196, -44.30890274 ], [ -176.260650629999986, -44.30834961 ], [ -176.2641449, -44.29935837 ], [ -176.256103520000011, -44.29365158 ], [ -176.26216125, -44.28289795 ], [ -176.25694275, -44.27520752 ], [ -176.24147034, -44.2731781 ], [ -176.239349370000014, -44.26580429 ], [ -176.249679570000012, -44.25969696 ], [ -176.25640869, -44.24978256 ], [ -176.276718140000014, -44.24303436 ], [ -176.25547791, -44.24035645 ], [ -176.23733521, -44.24071121 ], [ -176.22309875, -44.22398376 ], [ -176.22309875, -44.22398376 ] ] ], [ [ [ -176.01545715, -44.22029495 ], [ -176.011383059999986, -44.22416687 ], [ -176.0177002, -44.22338104 ], [ -176.01545715, -44.22029495 ], [ -176.01545715, -44.22029495 ] ] ], [ [ [ -175.984161379999989, -44.22138977 ], [ -175.988616940000014, -44.22682953 ], [ -175.992813109999986, -44.22527695 ], [ -175.984161379999989, -44.22138977 ], [ -175.984161379999989, -44.22138977 ] ] ], [ [ [ -176.52307129, -44.10287476 ], [ -176.52510071, -44.10201263 ], [ -176.52201843, -44.1006279 ], [ -176.52307129, -44.10287476 ], [ -176.52307129, -44.10287476 ] ] ], [ [ [ -175.8354187, -43.96092224 ], [ -175.82855225, -43.96641159 ], [ -175.84072876, -43.96123123 ], [ -175.8354187, -43.96092224 ], [ -175.8354187, -43.96092224 ] ] ], [ [ [ -176.43263245, -43.91785431 ], [ -176.43496704, -43.91627502 ], [ -176.43386841, -43.91572571 ], [ -176.43263245, -43.91785431 ], [ -176.43263245, -43.91785431 ] ] ], [ [ [ -176.43005371000001, -43.91435242 ], [ -176.43238831, -43.91266632 ], [ -176.43174744, -43.91179276 ], [ -176.43005371000001, -43.91435242 ], [ -176.43005371000001, -43.91435242 ] ] ], [ [ [ -176.92964172, -43.87784958 ], [ -176.929489139999987, -43.88058472 ], [ -176.934494019999988, -43.87849045 ], [ -176.92964172, -43.87784958 ], [ -176.92964172, -43.87784958 ] ] ], [ [ [ -176.41412354, -43.83907318 ], [ -176.41685486, -43.83657074 ], [ -176.4125061, -43.83535004 ], [ -176.41412354, -43.83907318 ], [ -176.41412354, -43.83907318 ] ] ], [ [ [ -176.42414856, -43.83542633 ], [ -176.426818849999989, -43.83486938 ], [ -176.42410278, -43.8331871 ], [ -176.42414856, -43.83542633 ], [ -176.42414856, -43.83542633 ] ] ], [ [ [ -176.71353149, -43.83267593 ], [ -176.71473694, -43.83151245 ], [ -176.71208191, -43.83017349 ], [ -176.71353149, -43.83267593 ], [ -176.71353149, -43.83267593 ] ] ], [ [ [ -176.407958979999989, -43.82998657 ], [ -176.40626526, -43.83057022 ], [ -176.40875244, -43.83091736 ], [ -176.407958979999989, -43.82998657 ], [ -176.407958979999989, -43.82998657 ] ] ], [ [ [ -176.43205261, -43.83083725 ], [ -176.436035159999989, -43.83108521 ], [ -176.43052673, -43.82479095 ], [ -176.43205261, -43.83083725 ], [ -176.43205261, -43.83083725 ] ] ], [ [ [ -176.43678284, -43.82921982 ], [ -176.43933105, -43.82778931 ], [ -176.43278503, -43.82491684 ], [ -176.43678284, -43.82921982 ], [ -176.43678284, -43.82921982 ] ] ], [ [ [ -176.439086909999986, -43.82643127 ], [ -176.440505980000012, -43.82563782 ], [ -176.437042240000011, -43.8237114 ], [ -176.439086909999986, -43.82643127 ], [ -176.439086909999986, -43.82643127 ] ] ], [ [ [ -176.62588501, -43.69239426 ], [ -176.60824585, -43.70328522 ], [ -176.58227539, -43.70502472 ], [ -176.564666749999986, -43.71256256 ], [ -176.54771423, -43.71541214 ], [ -176.54589844, -43.7191658 ], [ -176.52955627, -43.72319794 ], [ -176.4977417, -43.72211838 ], [ -176.49609375, -43.73063278 ], [ -176.477600099999989, -43.7409668 ], [ -176.45962524, -43.74511337 ], [ -176.43136597, -43.74827576 ], [ -176.38768005, -43.74391937 ], [ -176.36070251000001, -43.74326706 ], [ -176.34669495, -43.73379135 ], [ -176.335174560000013, -43.73662949 ], [ -176.31973267, -43.74703217 ], [ -176.29953003, -43.74700165 ], [ -176.29034424, -43.74152756 ], [ -176.27926636, -43.74197769 ], [ -176.2668457, -43.7339325 ], [ -176.25392151, -43.73472214 ], [ -176.24746704, -43.72679901 ], [ -176.22434998, -43.73405457 ], [ -176.21340942, -43.73297119 ], [ -176.207504269999987, -43.72694397 ], [ -176.19917297, -43.73860931 ], [ -176.217163090000014, -43.74406815 ], [ -176.222198490000011, -43.74076843 ], [ -176.241256709999988, -43.75662994 ], [ -176.23620605, -43.77058411 ], [ -176.23997498, -43.77492905 ], [ -176.24995422, -43.76622391 ], [ -176.26525879, -43.76151276 ], [ -176.28335571, -43.76313782 ], [ -176.30926514, -43.77268219 ], [ -176.32684326, -43.78305435 ], [ -176.34713745, -43.79963684 ], [ -176.365448, -43.81807327 ], [ -176.384552, -43.84243011 ], [ -176.40054321, -43.86891174 ], [ -176.40818787, -43.88647461 ], [ -176.41708374000001, -43.92494965 ], [ -176.42758179, -43.91875076 ], [ -176.42694092, -43.90750122 ], [ -176.417770389999987, -43.89277649 ], [ -176.42004395, -43.86566925 ], [ -176.430175780000013, -43.84100723 ], [ -176.422225950000012, -43.84749985 ], [ -176.40429688, -43.83200836 ], [ -176.402771, -43.82025146 ], [ -176.38053894, -43.81056976 ], [ -176.36582947, -43.81000137 ], [ -176.36366272, -43.8014946 ], [ -176.3747406, -43.79185104 ], [ -176.39305115, -43.76916504 ], [ -176.43510437, -43.75144196 ], [ -176.45491028, -43.75160217 ], [ -176.47651672, -43.74753571 ], [ -176.49972534, -43.76380157 ], [ -176.503707889999987, -43.7551918 ], [ -176.51509094, -43.74391174 ], [ -176.54563904, -43.73727036 ], [ -176.553756709999988, -43.74252701 ], [ -176.54896545, -43.75228119 ], [ -176.559494019999988, -43.75935364 ], [ -176.55871582, -43.77790451 ], [ -176.546264650000012, -43.78149796 ], [ -176.54577637, -43.78833389 ], [ -176.53320313, -43.79703903 ], [ -176.4967804, -43.79663467 ], [ -176.48155212, -43.80296326 ], [ -176.4637146, -43.80083084 ], [ -176.45120239, -43.80254745 ], [ -176.442993159999986, -43.80849457 ], [ -176.46485901, -43.81502533 ], [ -176.47589111, -43.82344055 ], [ -176.490325930000012, -43.8219986 ], [ -176.50770569, -43.83974457 ], [ -176.51925659, -43.84616089 ], [ -176.52470398, -43.85586166 ], [ -176.52204895, -43.87018204 ], [ -176.51043701, -43.88972092 ], [ -176.473709109999987, -43.91674042 ], [ -176.473297120000012, -43.93069458 ], [ -176.48434448, -43.95026016 ], [ -176.47695923, -43.95605469 ], [ -176.453765870000012, -43.96497345 ], [ -176.43611145, -43.96777725 ], [ -176.43028259, -43.95972061 ], [ -176.43095398, -43.94293594 ], [ -176.42619324, -43.93333054 ], [ -176.43638611, -43.93361282 ], [ -176.45083618000001, -43.92499924 ], [ -176.422775269999988, -43.92250061 ], [ -176.41702271, -43.9278717 ], [ -176.41487122, -43.95622253 ], [ -176.408569340000014, -43.98202515 ], [ -176.402145389999987, -43.99652481 ], [ -176.39047241, -44.0147438 ], [ -176.37388611, -44.02472305 ], [ -176.359024049999988, -44.02130127 ], [ -176.34667969, -44.03115845 ], [ -176.32452393, -44.03368378 ], [ -176.327774049999988, -44.03702927 ], [ -176.325973510000011, -44.05187225 ], [ -176.34370422, -44.05063248 ], [ -176.35745239, -44.0583992 ], [ -176.38006592, -44.05869293 ], [ -176.391098019999987, -44.05384445 ], [ -176.43745422, -44.06628799 ], [ -176.45143127, -44.06712341 ], [ -176.46987915, -44.0752449 ], [ -176.47711182, -44.07437897 ], [ -176.490997310000012, -44.08597183 ], [ -176.49931335, -44.08723068 ], [ -176.51774597, -44.09977722 ], [ -176.52302551, -44.09764481 ], [ -176.53948975, -44.11385345 ], [ -176.5572052, -44.12559891 ], [ -176.575973510000011, -44.13233566 ], [ -176.58456421, -44.12773514 ], [ -176.598297120000012, -44.13171387 ], [ -176.6027832, -44.12527847 ], [ -176.61555481, -44.12805557 ], [ -176.61911011, -44.12179565 ], [ -176.629241940000014, -44.12023926 ], [ -176.63514709, -44.12446213 ], [ -176.63285828, -44.11424255 ], [ -176.64204407, -44.10461807 ], [ -176.64733887, -44.10759354 ], [ -176.64350891, -44.08660889 ], [ -176.649200439999987, -44.07629395 ], [ -176.659118650000011, -44.07064438 ], [ -176.65634155, -44.06472015 ], [ -176.66056824, -44.04927063 ], [ -176.65710449, -44.04279327 ], [ -176.669998170000014, -44.03763962 ], [ -176.67202759, -44.03043365 ], [ -176.680480960000011, -44.02565002 ], [ -176.68551636, -44.00858688 ], [ -176.65444946, -43.9980545 ], [ -176.6322937, -43.98340607 ], [ -176.59257507, -43.96448898 ], [ -176.57943726, -43.96194458 ], [ -176.572494510000013, -43.94666672 ], [ -176.57337952, -43.94134521 ], [ -176.55915833, -43.94582367 ], [ -176.56239319, -43.9493103 ], [ -176.54956055, -43.95190048 ], [ -176.534698490000011, -43.93827057 ], [ -176.533432010000013, -43.91908646 ], [ -176.53623962, -43.90826035 ], [ -176.546127320000011, -43.89878082 ], [ -176.54504395, -43.88532639 ], [ -176.56556702, -43.85456848 ], [ -176.60409546, -43.8153038 ], [ -176.61228943, -43.81041336 ], [ -176.623260499999986, -43.81250381 ], [ -176.633605960000011, -43.8084259 ], [ -176.642227170000012, -43.81027603 ], [ -176.64587402, -43.80420303 ], [ -176.657318120000014, -43.8091774 ], [ -176.66545105, -43.79814529 ], [ -176.67344666, -43.80844879 ], [ -176.68307495, -43.79862213 ], [ -176.688003540000011, -43.79968643 ], [ -176.68522644, -43.81384659 ], [ -176.68930054, -43.81764984 ], [ -176.706390379999988, -43.80780792 ], [ -176.70932007, -43.81384277 ], [ -176.700820920000012, -43.82213974 ], [ -176.715164179999988, -43.830616 ], [ -176.743118290000012, -43.82759857 ], [ -176.75431824, -43.83361053 ], [ -176.7747345, -43.82569504 ], [ -176.79522705, -43.82193375 ], [ -176.78388977, -43.83555603 ], [ -176.81774902, -43.84617233 ], [ -176.828750609999986, -43.84417343 ], [ -176.84191895, -43.83700562 ], [ -176.85656738, -43.84408951 ], [ -176.86143494, -43.83869171 ], [ -176.881774900000011, -43.84170151 ], [ -176.87376404, -43.83006668 ], [ -176.89367676, -43.82535934 ], [ -176.892807010000013, -43.82081985 ], [ -176.874649049999988, -43.81687546 ], [ -176.87976074, -43.81115341 ], [ -176.87602234, -43.79364395 ], [ -176.86662292, -43.78872299 ], [ -176.8165741, -43.78604507 ], [ -176.80926514, -43.7793541 ], [ -176.81263733, -43.76348114 ], [ -176.823608400000012, -43.75583267 ], [ -176.81790161, -43.74679565 ], [ -176.80397034, -43.74407959 ], [ -176.79978943, -43.75470352 ], [ -176.78933716, -43.75974655 ], [ -176.76133728, -43.76532745 ], [ -176.72518921, -43.76384735 ], [ -176.71492004000001, -43.75926208 ], [ -176.65985107, -43.74863052 ], [ -176.63993835, -43.73540878 ], [ -176.631744379999986, -43.72113419 ], [ -176.64118958, -43.7032547 ], [ -176.63008118, -43.70145035 ], [ -176.62588501, -43.69239426 ], [ -176.62588501, -43.69239426 ] ] ], [ [ [ -176.806549069999988, -43.56958389 ], [ -176.8084259, -43.56700516 ], [ -176.80625916, -43.56613922 ], [ -176.806549069999988, -43.56958389 ], [ -176.806549069999988, -43.56958389 ] ] ], [ [ [ -176.8127594, -43.57031631 ], [ -176.81500244, -43.56935883 ], [ -176.81132507, -43.56425476 ], [ -176.8127594, -43.57031631 ], [ -176.8127594, -43.57031631 ] ] ], [ [ [ -176.798339840000011, -43.5643158 ], [ -176.80059814, -43.56806946 ], [ -176.80329895, -43.56391907 ], [ -176.798339840000011, -43.5643158 ], [ -176.798339840000011, -43.5643158 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.5", "id_1": 5, "name_1": "Gisborne", "hasc_1": "NZ.GI", "population2022": 52100, "areakm2": 8357.714, "density2022": 6.23 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.93359375, -38.74312592 ], [ 177.93365479, -38.74114609 ], [ 177.93487549, -38.74159241 ], [ 177.93359375, -38.74312592 ], [ 177.93359375, -38.74312592 ] ] ], [ [ [ 177.93777466, -38.74555588 ], [ 177.93638611, -38.74111176 ], [ 177.93833923, -38.74250031 ], [ 177.93777466, -38.74555588 ], [ 177.93777466, -38.74555588 ] ] ], [ [ [ 178.05137634, -38.70673752 ], [ 178.047500609999986, -38.7080574 ], [ 178.04818726, -38.70524597 ], [ 178.05137634, -38.70673752 ], [ 178.05137634, -38.70673752 ] ] ], [ [ [ 178.23554993, -38.57242966 ], [ 178.23944092, -38.57527924 ], [ 178.23301697, -38.57382965 ], [ 178.23554993, -38.57242966 ], [ 178.23554993, -38.57242966 ] ] ], [ [ [ 178.29556274, -38.53527832 ], [ 178.296386719999987, -38.53277588 ], [ 178.29804993, -38.53277588 ], [ 178.29556274, -38.53527832 ], [ 178.29556274, -38.53527832 ] ] ], [ [ [ 178.34837341, -38.41864395 ], [ 178.348419189999987, -38.41688156 ], [ 178.351226809999986, -38.41682053 ], [ 178.34837341, -38.41864395 ], [ 178.34837341, -38.41864395 ] ] ], [ [ [ 178.34222412, -38.37833405 ], [ 178.35055542, -38.38833237 ], [ 178.34333801, -38.38888931 ], [ 178.34222412, -38.37833405 ], [ 178.34222412, -38.37833405 ] ] ], [ [ [ 178.344802859999987, -38.37496567 ], [ 178.34628296, -38.37577057 ], [ 178.34146118000001, -38.37672806 ], [ 178.344802859999987, -38.37496567 ], [ 178.344802859999987, -38.37496567 ] ] ], [ [ [ 178.336395259999989, -38.35027695 ], [ 178.33583069, -38.34749985 ], [ 178.34388733, -38.34583282 ], [ 178.336395259999989, -38.35027695 ], [ 178.336395259999989, -38.35027695 ] ] ], [ [ [ 178.34344482, -38.2494545 ], [ 178.332672120000012, -38.25011826 ], [ 178.33442688, -38.24695587 ], [ 178.34344482, -38.2494545 ], [ 178.34344482, -38.2494545 ] ] ], [ [ [ 178.342559810000012, -38.21173096 ], [ 178.34147644, -38.21099854 ], [ 178.342712400000011, -38.20990372 ], [ 178.342559810000012, -38.21173096 ], [ 178.342559810000012, -38.21173096 ] ] ], [ [ [ 178.38186646, -38.06932068 ], [ 178.379531859999986, -38.06908035 ], [ 178.38140869, -38.06822586 ], [ 178.38186646, -38.06932068 ], [ 178.38186646, -38.06932068 ] ] ], [ [ [ 178.577774049999988, -37.68805695 ], [ 178.576110840000013, -37.69361115 ], [ 178.57254028, -37.69182968 ], [ 178.577774049999988, -37.68805695 ], [ 178.577774049999988, -37.68805695 ] ] ], [ [ [ 178.172225950000012, -37.53277588 ], [ 178.18278503, -37.53777695 ], [ 178.21278381, -37.53416824 ], [ 178.21888733, -37.54555511 ], [ 178.2930603, -37.55194473 ], [ 178.31472778, -37.55472183 ], [ 178.324996950000013, -37.55944443 ], [ 178.3125, -37.56916809 ], [ 178.296386719999987, -37.57027817 ], [ 178.29444885, -37.57860947 ], [ 178.303894039999989, -37.59166718 ], [ 178.32658386, -37.59018326 ], [ 178.318603520000011, -37.60138702 ], [ 178.35028076, -37.625 ], [ 178.37333679, -37.63249969 ], [ 178.39161682, -37.62696075 ], [ 178.39230347, -37.63064194 ], [ 178.41838074, -37.62968826 ], [ 178.45880127, -37.64155579 ], [ 178.4677887, -37.63809586 ], [ 178.48083496000001, -37.63944626 ], [ 178.49305725, -37.65333176 ], [ 178.52055359, -37.67083359 ], [ 178.53889465, -37.67361069 ], [ 178.55047607, -37.69242859 ], [ 178.54417419, -37.70277786 ], [ 178.52833557, -37.7136116 ], [ 178.523895259999989, -37.72055435 ], [ 178.524902340000011, -37.73236465 ], [ 178.51554871, -37.7452774 ], [ 178.50500488, -37.7491684 ], [ 178.48805237, -37.77249908 ], [ 178.47583008, -37.77583313 ], [ 178.481246950000013, -37.78012085 ], [ 178.44917297, -37.81583405 ], [ 178.44639587, -37.82555389 ], [ 178.455001829999986, -37.83361053 ], [ 178.43861389, -37.84472275 ], [ 178.43305969, -37.84388733 ], [ 178.41333008, -37.86000061 ], [ 178.40499878, -37.8741684 ], [ 178.40666199, -37.88750076 ], [ 178.40167236, -37.90333176 ], [ 178.389160159999989, -37.91972351 ], [ 178.391113280000013, -37.93444443 ], [ 178.39916992, -37.93999863 ], [ 178.392776489999989, -37.96166611 ], [ 178.37583923, -37.9691658 ], [ 178.36833191, -37.98583221 ], [ 178.35417175, -37.98805618 ], [ 178.340271, -38.00416565 ], [ 178.33444214, -38.02027893 ], [ 178.336395259999989, -38.03694534 ], [ 178.357223510000011, -38.04888916 ], [ 178.373291020000011, -38.05094147 ], [ 178.36454773, -38.07032394 ], [ 178.37219238, -38.07107925 ], [ 178.37416077, -38.09444427 ], [ 178.358612060000013, -38.11055374 ], [ 178.34971619, -38.10694504 ], [ 178.32278442, -38.1202774 ], [ 178.31666565, -38.13722229 ], [ 178.31971741000001, -38.14722061 ], [ 178.35694885, -38.17750168 ], [ 178.35255432, -38.18668365 ], [ 178.33805847, -38.19250107 ], [ 178.33305359, -38.21583176 ], [ 178.33666992, -38.22000122 ], [ 178.31913757, -38.22222137 ], [ 178.31083679, -38.22999954 ], [ 178.31137085, -38.23944092 ], [ 178.32598877, -38.25540161 ], [ 178.335006709999988, -38.25999832 ], [ 178.33166504, -38.27222061 ], [ 178.34083557, -38.28527832 ], [ 178.36305237, -38.28749847 ], [ 178.35305786, -38.29611206 ], [ 178.33427429, -38.29845047 ], [ 178.32411194, -38.31058884 ], [ 178.32533264, -38.31893539 ], [ 178.332366940000014, -38.32194901 ], [ 178.33175659, -38.33227539 ], [ 178.32562256, -38.33343124 ], [ 178.33009338, -38.35302734 ], [ 178.30722046, -38.36166763 ], [ 178.3069458, -38.37194443 ], [ 178.29804993, -38.37638855 ], [ 178.31027222, -38.37638855 ], [ 178.31832886, -38.38305664 ], [ 178.340179440000014, -38.3787117 ], [ 178.33734131, -38.40435791 ], [ 178.346603390000013, -38.41904831 ], [ 178.33944702, -38.42444611 ], [ 178.32028198, -38.42777634 ], [ 178.301544189999987, -38.44438553 ], [ 178.29199219, -38.45911407 ], [ 178.288452150000012, -38.47053146 ], [ 178.28120422, -38.47682953 ], [ 178.28663635, -38.48859024 ], [ 178.28416443, -38.51171494 ], [ 178.29545593, -38.52299118 ], [ 178.29333496000001, -38.5295639 ], [ 178.28486633, -38.53173828 ], [ 178.28112793, -38.54019165 ], [ 178.26882935, -38.5398941 ], [ 178.264984129999988, -38.54660416 ], [ 178.24617004000001, -38.55828476 ], [ 178.234161379999989, -38.5616684 ], [ 178.23194885, -38.57194519 ], [ 178.2124939, -38.57972336 ], [ 178.199996950000013, -38.59249878 ], [ 178.19741821, -38.60703659 ], [ 178.18742371, -38.60798645 ], [ 178.17953491, -38.61528015 ], [ 178.17288208, -38.628685 ], [ 178.16096497, -38.63001251 ], [ 178.15568542, -38.63935471 ], [ 178.14646912, -38.64572906 ], [ 178.14813232, -38.65242767 ], [ 178.12770081, -38.65077972 ], [ 178.10848999000001, -38.65973282 ], [ 178.081390379999988, -38.67833328 ], [ 178.07194519, -38.69194412 ], [ 178.06916809, -38.70861053 ], [ 178.06056213, -38.70055389 ], [ 178.04943848, -38.70194626 ], [ 178.03883362, -38.68533325 ], [ 178.02471924, -38.68055725 ], [ 178.01853943, -38.67144012 ], [ 178.00653076, -38.67105865 ], [ 177.98554993, -38.67583466 ], [ 177.96556091, -38.6866684 ], [ 177.951385499999986, -38.69972229 ], [ 177.943603520000011, -38.71138763 ], [ 177.93722534, -38.73249817 ], [ 177.93388367, -38.72472382 ], [ 177.93110657, -38.74305725 ], [ 177.93804932, -38.7527771 ], [ 177.950408939999988, -38.75516129 ], [ 177.95944214, -38.7519455 ], [ 177.97305298, -38.75611115 ], [ 177.95057678, -38.7648201 ], [ 177.946228029999986, -38.77706909 ], [ 177.92860413, -38.78888702 ], [ 177.91946411, -38.81238556 ], [ 177.92411804, -38.82071304 ], [ 177.91288757, -38.82760239 ], [ 177.91157532, -38.85138702 ], [ 177.92037964, -38.86795807 ], [ 177.90356445, -38.88601685 ], [ 177.9115448, -38.9057045 ], [ 177.91000366, -38.92361069 ], [ 177.90332031, -38.93183899 ], [ 177.90527344, -38.94861221 ], [ 177.896728520000011, -38.9653244 ], [ 177.899627689999988, -38.97198105 ], [ 177.85914612, -38.96456146 ], [ 177.86585999, -38.96245956 ], [ 177.844787599999989, -38.95827484 ], [ 177.83329773, -38.94565582 ], [ 177.84846497, -38.92477417 ], [ 177.836685179999989, -38.9121666 ], [ 177.823287959999988, -38.91629791 ], [ 177.82049561, -38.92256165 ], [ 177.80207825, -38.91204453 ], [ 177.80877686, -38.90997696 ], [ 177.80096436, -38.90159607 ], [ 177.80374146, -38.89533615 ], [ 177.79037476, -38.89946747 ], [ 177.79428101, -38.90366364 ], [ 177.780914309999986, -38.90780258 ], [ 177.778121950000013, -38.9140625 ], [ 177.75193787, -38.89509201 ], [ 177.74917603, -38.90138245 ], [ 177.735824580000013, -38.90552521 ], [ 177.739730830000013, -38.90973663 ], [ 177.730270389999987, -38.91809082 ], [ 177.72915649, -38.9076004 ], [ 177.72135925, -38.89916611 ], [ 177.7118988, -38.90753555 ], [ 177.69744873, -38.9011879 ], [ 177.684097290000011, -38.90534973 ], [ 177.66966248, -38.8990097 ], [ 177.66687012, -38.90530396 ], [ 177.65631104, -38.90318298 ], [ 177.661346439999988, -38.85274124 ], [ 177.66412354, -38.84643173 ], [ 177.65081787, -38.85062027 ], [ 177.6519165, -38.8611412 ], [ 177.63473511, -38.86111832 ], [ 177.61927795, -38.84428024 ], [ 177.59933472, -38.85056686 ], [ 177.59344482, -38.82536316 ], [ 177.58679199, -38.82745361 ], [ 177.59532166, -38.80859375 ], [ 177.58103943, -38.80229187 ], [ 177.56773376000001, -38.80646515 ], [ 177.56391907, -38.80226898 ], [ 177.54397583, -38.80854034 ], [ 177.5411377, -38.81482697 ], [ 177.53353882, -38.80644226 ], [ 177.53259277, -38.79595947 ], [ 177.51367188, -38.77500153 ], [ 177.493774409999986, -38.78127289 ], [ 177.485290529999986, -38.76239395 ], [ 177.47488403, -38.76028442 ], [ 177.46733093, -38.75188065 ], [ 177.47966003, -38.73721313 ], [ 177.4683075, -38.72459793 ], [ 177.47494507, -38.72251129 ], [ 177.46359253, -38.70988846 ], [ 177.470214840000011, -38.70780182 ], [ 177.44277954, -38.7056427 ], [ 177.431442260000011, -38.69300842 ], [ 177.42860413, -38.69930649 ], [ 177.41157532, -38.69926834 ], [ 177.42010498, -38.68037033 ], [ 177.4163208, -38.67615509 ], [ 177.43617249, -38.6699028 ], [ 177.43522644, -38.6593895 ], [ 177.444686890000014, -38.65100861 ], [ 177.44088745, -38.64679337 ], [ 177.45413208, -38.64262772 ], [ 177.4503479, -38.63841248 ], [ 177.41252136, -38.63409042 ], [ 177.39456177, -38.62350845 ], [ 177.38793945, -38.62559128 ], [ 177.36054993, -38.62338257 ], [ 177.35394287, -38.62546158 ], [ 177.307678220000014, -38.60210419 ], [ 177.30957031, -38.62318039 ], [ 177.30957031, -38.66109848 ], [ 177.28883362, -38.65681458 ], [ 177.27471924, -38.65044403 ], [ 177.12762451, -38.58855057 ], [ 177.13041687, -38.5822258 ], [ 177.14723206, -38.58233261 ], [ 177.14442444, -38.58865738 ], [ 177.17059326, -38.58036423 ], [ 177.1631012, -38.5718689 ], [ 177.18275452, -38.56565094 ], [ 177.18180847, -38.55509186 ], [ 177.203323360000013, -38.53199768 ], [ 177.206130980000012, -38.52568436 ], [ 177.21362305, -38.53416824 ], [ 177.23049927, -38.5342598 ], [ 177.245483400000012, -38.51325607 ], [ 177.249252320000011, -38.5174942 ], [ 177.25862122, -38.50911713 ], [ 177.237808230000013, -38.42886353 ], [ 177.299743650000011, -38.40407562 ], [ 177.34864807, -38.38344955 ], [ 177.39471436, -38.36911011 ], [ 177.4434967, -38.34848404 ], [ 177.45283508, -38.34014893 ], [ 177.46594238, -38.33602142 ], [ 177.471466060000012, -38.32346344 ], [ 177.49276733, -38.300457 ], [ 177.49064636, -38.27949142 ], [ 177.50263977, -38.26485443 ], [ 177.49610901, -38.26693344 ], [ 177.48851013, -38.25852966 ], [ 177.495040890000013, -38.25645447 ], [ 177.48364258, -38.24385071 ], [ 177.49667358, -38.23970032 ], [ 177.49940491000001, -38.23342514 ], [ 177.49180603, -38.22502899 ], [ 177.51135254, -38.21879959 ], [ 177.515151980000013, -38.22299957 ], [ 177.531997679999989, -38.22303391 ], [ 177.530899049999988, -38.21256256 ], [ 177.55618286, -38.21260071 ], [ 177.567321779999986, -38.20633316 ], [ 177.56350708, -38.20214462 ], [ 177.60270691, -38.18959045 ], [ 177.60430908, -38.1728363 ], [ 177.60813904, -38.17702103 ], [ 177.62779236, -38.17070007 ], [ 177.630508420000012, -38.16440582 ], [ 177.64089966, -38.1664772 ], [ 177.66056824, -38.16012955 ], [ 177.649063109999986, -38.14759445 ], [ 177.661056519999988, -38.13288498 ], [ 177.65992737, -38.12240982 ], [ 177.69271851, -38.11179733 ], [ 177.69543457, -38.10549545 ], [ 177.68774414, -38.0971489 ], [ 177.686599730000012, -38.08668137 ], [ 177.67619324, -38.08463287 ], [ 177.68930054, -38.0803833 ], [ 177.68815613000001, -38.06991196 ], [ 177.701263430000012, -38.06565475 ], [ 177.6781311, -38.04065323 ], [ 177.68467712, -38.03852081 ], [ 177.66923523, -38.02186966 ], [ 177.68887329, -38.01547241 ], [ 177.70046997, -38.02796173 ], [ 177.72399902, -38.0257225 ], [ 177.74331665, -38.04655838 ], [ 177.775741579999988, -38.06314087 ], [ 177.8494873, -38.11515808 ], [ 177.858764650000012, -38.1067009 ], [ 177.86262512, -38.11087799 ], [ 177.91697693, -37.98450089 ], [ 177.943115229999989, -37.91049576 ], [ 177.970489500000014, -37.84687042 ], [ 178.07418823, -37.76342773 ], [ 178.037170409999987, -37.73210144 ], [ 177.99591064, -37.76205063 ], [ 177.9730835, -37.736866 ], [ 177.97589111, -37.73050308 ], [ 177.99188232, -37.71981812 ], [ 177.98432922, -37.71144104 ], [ 177.98335266, -37.70090866 ], [ 177.99649048, -37.69659424 ], [ 177.99926758, -37.69025803 ], [ 177.98791504, -37.67772675 ], [ 177.99446106, -37.67557907 ], [ 177.9868927, -37.66723633 ], [ 177.99343872, -37.66508865 ], [ 177.992385860000013, -37.65461349 ], [ 177.973419189999987, -37.63385773 ], [ 177.97991943, -37.63170624 ], [ 177.972320559999986, -37.62343979 ], [ 177.9788208, -37.62128067 ], [ 177.984161379999989, -37.60866928 ], [ 178.020278929999989, -37.60207367 ], [ 178.03947449, -37.59576416 ], [ 178.105667110000013, -37.59650803 ], [ 178.09403992, -37.58409119 ], [ 178.07955933, -37.55147171 ], [ 178.07943726, -37.5419426 ], [ 178.08721924, -37.53972244 ], [ 178.11054993, -37.54722214 ], [ 178.12861633, -37.54833221 ], [ 178.142776489999989, -37.54639053 ], [ 178.14694214, -37.55027771 ], [ 178.16694641, -37.54972076 ], [ 178.172225950000012, -37.53277588 ], [ 178.172225950000012, -37.53277588 ] ] ] ] } }, { "type": "Feature", "properties": { "id": "pv084qp8629.6", "id_1": 6, "name_1": "Hawke's Bay", "hasc_1": "NZ.HB", "population2022": 182700, "areakm2": 12689.223, "density2022": 14.4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 176.589523320000012, -40.42566299 ], [ 176.586837769999988, -40.43193054 ], [ 176.582901, -40.42770767 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ], [ [ [ 177.02888489, -39.83027649 ], [ 177.0305481, -39.83416748 ], [ 177.02278137, -39.83611298 ], [ 177.02888489, -39.83027649 ], [ 177.02888489, -39.83027649 ] ] ], [ [ [ 177.8694458, -39.27527618 ], [ 177.87333679, -39.27722168 ], [ 177.87554932, -39.29555511 ], [ 177.8694458, -39.30638885 ], [ 177.861114500000014, -39.30389023 ], [ 177.862777709999989, -39.28499985 ], [ 177.8694458, -39.27527618 ], [ 177.8694458, -39.27527618 ] ] ], [ [ [ 176.589523320000012, -40.42566299 ], [ 176.577621459999989, -40.41304398 ], [ 176.56306458, -40.40666199 ], [ 176.55107117, -40.42127609 ], [ 176.52593994, -40.41265488 ], [ 176.496856689999987, -40.39968491 ], [ 176.49147034, -40.412323 ], [ 176.476913450000012, -40.40582657 ], [ 176.46360779, -40.40992737 ], [ 176.44903564, -40.40341949 ], [ 176.44238281, -40.4054718 ], [ 176.4344635, -40.39690781 ], [ 176.44111633, -40.3948555 ], [ 176.43319702, -40.38628006 ], [ 176.419860840000013, -40.39039612 ], [ 176.4039917, -40.37324524 ], [ 176.390625, -40.37737274 ], [ 176.38665771, -40.37308502 ], [ 176.39607239, -40.36466599 ], [ 176.3921051, -40.36037445 ], [ 176.37081909, -40.35591507 ], [ 176.409683230000013, -40.33288574 ], [ 176.399063109999986, -40.33064651 ], [ 176.387222290000011, -40.31775284 ], [ 176.3966217, -40.30932999 ], [ 176.400894169999987, -40.28594589 ], [ 176.39302063, -40.27733994 ], [ 176.38633728, -40.27939987 ], [ 176.378479, -40.27079391 ], [ 176.38789368, -40.26236725 ], [ 176.3800354, -40.25375748 ], [ 176.38670349, -40.25169754 ], [ 176.37884521, -40.24308777 ], [ 176.38160706, -40.23672104 ], [ 176.3710022, -40.234478 ], [ 176.375320429999988, -40.2110672 ], [ 176.36198425, -40.21519089 ], [ 176.36631775, -40.19179153 ], [ 176.36239624000001, -40.18748856 ], [ 176.37182617, -40.17906189 ], [ 176.36398315, -40.17045975 ], [ 176.377319340000014, -40.16633224 ], [ 176.38008118, -40.15996933 ], [ 176.36833191, -40.14707184 ], [ 176.347152709999989, -40.14260864 ], [ 176.3354187, -40.1297226 ], [ 176.34208679, -40.12765884 ], [ 176.33425903, -40.11906815 ], [ 176.317016599999988, -40.11891174 ], [ 176.31309509, -40.11462021 ], [ 176.32252502, -40.10619354 ], [ 176.31471252, -40.09761047 ], [ 176.321380620000014, -40.09554291 ], [ 176.3163147, -40.08060455 ], [ 176.30851746, -40.07202911 ], [ 176.301849370000014, -40.07409668 ], [ 176.30072021, -40.06345749 ], [ 176.27682495, -40.06537628 ], [ 176.262359620000012, -40.05887604 ], [ 176.27180481, -40.050457 ], [ 176.261245730000013, -40.04824448 ], [ 176.264022829999988, -40.04189301 ], [ 176.24291992, -40.03746796 ], [ 176.24180603, -40.02684021 ], [ 176.214050289999989, -40.02448273 ], [ 176.212951659999987, -40.0138588 ], [ 176.182403560000012, -40.01784897 ], [ 176.185195920000012, -40.01150131 ], [ 176.17185974, -40.01563644 ], [ 176.157440189999988, -40.00914764 ], [ 176.13853455, -40.02597046 ], [ 176.126892090000013, -40.013134 ], [ 176.10084534, -39.99382019 ], [ 176.09976196, -39.98320389 ], [ 176.12145996000001, -39.96006393 ], [ 176.11758423, -39.95579147 ], [ 176.127044680000012, -39.94739532 ], [ 176.108764650000012, -39.93664551 ], [ 176.11541748, -39.93458176 ], [ 176.114349370000014, -39.92398071 ], [ 176.1210022, -39.92191696 ], [ 176.11326599, -39.91337585 ], [ 176.129364009999989, -39.90292358 ], [ 176.13494873, -39.89026642 ], [ 176.12055969, -39.88378906 ], [ 176.13450623, -39.85215378 ], [ 176.14115906, -39.85009384 ], [ 176.14179993, -39.82258606 ], [ 176.17805481, -39.74040604 ], [ 176.172073360000013, -39.71498108 ], [ 176.18536377, -39.71086884 ], [ 176.186035159999989, -39.68339157 ], [ 176.1993103, -39.67928314 ], [ 176.20872498, -39.6709137 ], [ 176.20103455, -39.66239166 ], [ 176.16856384, -39.64518738 ], [ 176.185333250000014, -39.6072998 ], [ 176.177658079999986, -39.59877396 ], [ 176.164398190000014, -39.60287476 ], [ 176.16337585, -39.5922966 ], [ 176.156738280000013, -39.59434891 ], [ 176.14524841, -39.58155441 ], [ 176.162338260000013, -39.58171844 ], [ 176.18885803, -39.57352066 ], [ 176.190628049999987, -39.556633 ], [ 176.203872679999989, -39.55253601 ], [ 176.21226501000001, -39.53359985 ], [ 176.252014159999987, -39.52131271 ], [ 176.254806519999988, -39.5150032 ], [ 176.30776978, -39.49861908 ], [ 176.322036739999987, -39.50508499 ], [ 176.32865906, -39.5030365 ], [ 176.317169189999987, -39.49026108 ], [ 176.3237915, -39.4882164 ], [ 176.31613159, -39.47969818 ], [ 176.32936096, -39.47560501 ], [ 176.31892395, -39.47339249 ], [ 176.3112793, -39.46487808 ], [ 176.32069397, -39.4565239 ], [ 176.31965637, -39.445961 ], [ 176.30819702, -39.43318558 ], [ 176.32040405, -39.41853333 ], [ 176.3099823, -39.41631699 ], [ 176.32981873, -39.41018677 ], [ 176.32600403, -39.40592575 ], [ 176.33540344, -39.39757919 ], [ 176.32397461, -39.38479996 ], [ 176.34098816, -39.38497543 ], [ 176.33337402, -39.37645721 ], [ 176.33998108, -39.37441635 ], [ 176.332366940000014, -39.36589432 ], [ 176.31915283, -39.36997604 ], [ 176.307724, -39.35719299 ], [ 176.29450989, -39.36127472 ], [ 176.27368164, -39.3568306 ], [ 176.2802887, -39.35478973 ], [ 176.268890379999988, -39.34199905 ], [ 176.28210449, -39.33791733 ], [ 176.28111267, -39.32735062 ], [ 176.28771973, -39.32531357 ], [ 176.28012085, -39.31678391 ], [ 176.290527340000011, -39.31901169 ], [ 176.28292847, -39.31048203 ], [ 176.309341429999989, -39.30233002 ], [ 176.31115723, -39.28546143 ], [ 176.29977417, -39.27266693 ], [ 176.30258179, -39.26636505 ], [ 176.29119873, -39.25357056 ], [ 176.297805790000012, -39.25153351 ], [ 176.29022217, -39.24300003 ], [ 176.27983093, -39.24076843 ], [ 176.26663208, -39.24483871 ], [ 176.25527954, -39.23203659 ], [ 176.22790527, -39.22960281 ], [ 176.21470642, -39.23366928 ], [ 176.21374512, -39.22309494 ], [ 176.20713806, -39.22513199 ], [ 176.19958496000001, -39.21659088 ], [ 176.20617676, -39.21455383 ], [ 176.19862366000001, -39.20601273 ], [ 176.20144653, -39.19971085 ], [ 176.18634033, -39.18262482 ], [ 176.19293213, -39.18059158 ], [ 176.18537903, -39.17204666 ], [ 176.1882019, -39.16574097 ], [ 176.18066406, -39.15719604 ], [ 176.19197083, -39.1319809 ], [ 176.1882019, -39.12770844 ], [ 176.22116089, -39.11756134 ], [ 176.22398376000001, -39.11125565 ], [ 176.24375916, -39.10516739 ], [ 176.23622131, -39.09662628 ], [ 176.344680790000012, -39.17187119 ], [ 176.38800049, -39.16394806 ], [ 176.40116882, -39.15988922 ], [ 176.396408079999986, -39.14506531 ], [ 176.38505554, -39.132267 ], [ 176.37469482, -39.13002777 ], [ 176.42077637, -39.11582947 ], [ 176.437713620000011, -39.11604309 ], [ 176.45185852, -39.12254333 ], [ 176.422485349999988, -39.06100845 ], [ 176.45428467, -39.00237656 ], [ 176.55567932, -39.00378036 ], [ 176.54814148, -38.9952507 ], [ 176.61947632, -39.00051498 ], [ 176.61193848, -38.99198532 ], [ 176.61849976, -38.9899826 ], [ 176.603424069999988, -38.97291565 ], [ 176.609985349999988, -38.97091293 ], [ 176.598693849999989, -38.95811081 ], [ 176.60804749, -38.94984436 ], [ 176.600509640000013, -38.94130707 ], [ 176.603317260000011, -38.93504333 ], [ 176.619232180000012, -38.92478943 ], [ 176.70976257, -38.84854889 ], [ 176.70225525, -38.83998489 ], [ 176.711578370000012, -38.8317337 ], [ 176.7003479, -38.81888962 ], [ 176.6993866, -38.80833817 ], [ 176.71244812, -38.80435944 ], [ 176.70495605, -38.79579544 ], [ 176.71801758, -38.79181671 ], [ 176.70774841, -38.78952408 ], [ 176.71611023, -38.77070236 ], [ 176.711425780000013, -38.75586319 ], [ 176.719802859999987, -38.73703003 ], [ 176.71885681, -38.72647095 ], [ 176.73190308, -38.72247696 ], [ 176.73937988, -38.73104477 ], [ 176.752441409999989, -38.72704697 ], [ 176.748703, -38.72276306 ], [ 176.76454163, -38.71247864 ], [ 176.77012634, -38.6999054 ], [ 176.7766571, -38.69789886 ], [ 176.77571106, -38.68732834 ], [ 176.795272829999988, -38.68130112 ], [ 176.82325745, -38.69441986 ], [ 176.83256531, -38.68611908 ], [ 176.84559631, -38.6821022 ], [ 176.85490417, -38.67380142 ], [ 176.862350459999988, -38.68237305 ], [ 176.87536621000001, -38.67835617 ], [ 176.87164307, -38.67407227 ], [ 176.89115906, -38.66804886 ], [ 176.90977478, -38.68947601 ], [ 176.9302063, -38.69403839 ], [ 176.93763733, -38.70261002 ], [ 176.9506073, -38.69859695 ], [ 176.95433044, -38.70288467 ], [ 176.967300419999987, -38.69887161 ], [ 176.9682312, -38.70945358 ], [ 176.987670900000012, -38.70342636 ], [ 176.98396301, -38.69913864 ], [ 177.00337219, -38.69309998 ], [ 177.002441409999989, -38.68251419 ], [ 177.0153656, -38.67847824 ], [ 177.02088928, -38.66587067 ], [ 177.02735901, -38.66384506 ], [ 177.01994324, -38.65528488 ], [ 177.026412959999988, -38.65325928 ], [ 177.034683230000013, -38.63433456 ], [ 177.047637939999987, -38.63026047 ], [ 177.04393005, -38.62598419 ], [ 177.060607909999987, -38.62615967 ], [ 177.06990051, -38.61777115 ], [ 177.08291626, -38.6136322 ], [ 177.0838623, -38.62421799 ], [ 177.096893310000013, -38.62007523 ], [ 177.100631709999988, -38.62432861 ], [ 177.10899353, -38.60534668 ], [ 177.11552429, -38.60327148 ], [ 177.12110901, -38.59062195 ], [ 177.12762451, -38.58855057 ], [ 177.27471924, -38.65044403 ], [ 177.28883362, -38.65681458 ], [ 177.30957031, -38.66109848 ], [ 177.30957031, -38.62318039 ], [ 177.307678220000014, -38.60210419 ], [ 177.35394287, -38.62546158 ], [ 177.36054993, -38.62338257 ], [ 177.38793945, -38.62559128 ], [ 177.39456177, -38.62350845 ], [ 177.41252136, -38.63409042 ], [ 177.4503479, -38.63841248 ], [ 177.45413208, -38.64262772 ], [ 177.44088745, -38.64679337 ], [ 177.444686890000014, -38.65100861 ], [ 177.43522644, -38.6593895 ], [ 177.43617249, -38.6699028 ], [ 177.4163208, -38.67615509 ], [ 177.42010498, -38.68037033 ], [ 177.41157532, -38.69926834 ], [ 177.42860413, -38.69930649 ], [ 177.431442260000011, -38.69300842 ], [ 177.44277954, -38.7056427 ], [ 177.470214840000011, -38.70780182 ], [ 177.46359253, -38.70988846 ], [ 177.47494507, -38.72251129 ], [ 177.4683075, -38.72459793 ], [ 177.47966003, -38.73721313 ], [ 177.46733093, -38.75188065 ], [ 177.47488403, -38.76028442 ], [ 177.485290529999986, -38.76239395 ], [ 177.493774409999986, -38.78127289 ], [ 177.51367188, -38.77500153 ], [ 177.53637695, -38.80015182 ], [ 177.53353882, -38.80644226 ], [ 177.5411377, -38.81482697 ], [ 177.54397583, -38.80854034 ], [ 177.56391907, -38.80226898 ], [ 177.56773376000001, -38.80646515 ], [ 177.58103943, -38.80229187 ], [ 177.59532166, -38.80859375 ], [ 177.58679199, -38.82745361 ], [ 177.59344482, -38.82536316 ], [ 177.59933472, -38.85056686 ], [ 177.61927795, -38.84428024 ], [ 177.63473511, -38.86111832 ], [ 177.6519165, -38.8611412 ], [ 177.65081787, -38.85062027 ], [ 177.66412354, -38.84643173 ], [ 177.661346439999988, -38.85274124 ], [ 177.65631104, -38.90318298 ], [ 177.66687012, -38.90530396 ], [ 177.66966248, -38.8990097 ], [ 177.684097290000011, -38.90534973 ], [ 177.69744873, -38.9011879 ], [ 177.7118988, -38.90753555 ], [ 177.72135925, -38.89916611 ], [ 177.72915649, -38.9076004 ], [ 177.730270389999987, -38.91809082 ], [ 177.739730830000013, -38.90973663 ], [ 177.735824580000013, -38.90552521 ], [ 177.74917603, -38.90138245 ], [ 177.75193787, -38.89509201 ], [ 177.778121950000013, -38.9140625 ], [ 177.780914309999986, -38.90780258 ], [ 177.79428101, -38.90366364 ], [ 177.79037476, -38.89946747 ], [ 177.80374146, -38.89533615 ], [ 177.80096436, -38.90159607 ], [ 177.80877686, -38.90997696 ], [ 177.80207825, -38.91204453 ], [ 177.82049561, -38.92256165 ], [ 177.823287959999988, -38.91629791 ], [ 177.836685179999989, -38.9121666 ], [ 177.84846497, -38.92477417 ], [ 177.842834470000014, -38.93731308 ], [ 177.83329773, -38.94565582 ], [ 177.844787599999989, -38.95827484 ], [ 177.86585999, -38.96245956 ], [ 177.85914612, -38.96456146 ], [ 177.899627689999988, -38.97198105 ], [ 177.89448547, -38.99613571 ], [ 177.8944397, -39.00888824 ], [ 177.886108400000012, -39.01777649 ], [ 177.888885499999986, -39.04416656 ], [ 177.8999939, -39.07166672 ], [ 177.90943909, -39.07583237 ], [ 177.91448975, -39.08446884 ], [ 177.94805908, -39.0941658 ], [ 177.96360779, -39.0886116 ], [ 177.96888733, -39.09722137 ], [ 177.988891599999988, -39.0969429 ], [ 178.00389099, -39.10388947 ], [ 178.00151062, -39.11472321 ], [ 177.98200989, -39.12532806 ], [ 177.96972656, -39.13639069 ], [ 177.96008301, -39.13656616 ], [ 177.94625854, -39.15620422 ], [ 177.938400269999988, -39.15771866 ], [ 177.92443848, -39.17083359 ], [ 177.92645264, -39.18907928 ], [ 177.918884279999986, -39.20777893 ], [ 177.9069519, -39.22999954 ], [ 177.88491821, -39.24909592 ], [ 177.87889099, -39.25055695 ], [ 177.87287903, -39.26136017 ], [ 177.863616940000014, -39.26833344 ], [ 177.858337400000011, -39.25444412 ], [ 177.86193848, -39.24666595 ], [ 177.858886719999987, -39.23749924 ], [ 177.851104740000011, -39.23083496 ], [ 177.8500061, -39.21111298 ], [ 177.84056091, -39.1827774 ], [ 177.821105960000011, -39.1613884 ], [ 177.82728577, -39.16129303 ], [ 177.83805847, -39.1511116 ], [ 177.83778381, -39.14027786 ], [ 177.84597778, -39.13588333 ], [ 177.85305786, -39.1241684 ], [ 177.853607180000012, -39.11583328 ], [ 177.860275269999988, -39.11138916 ], [ 177.858612060000013, -39.10222244 ], [ 177.86721802, -39.09749985 ], [ 177.86610413, -39.08611298 ], [ 177.87236023, -39.08409119 ], [ 177.87037659, -39.07657242 ], [ 177.85928345, -39.06583786 ], [ 177.84680176, -39.0603447 ], [ 177.835037230000012, -39.0605545 ], [ 177.82925415, -39.07449341 ], [ 177.81277466, -39.07444382 ], [ 177.79476929, -39.06640244 ], [ 177.768463129999986, -39.06230164 ], [ 177.74667358, -39.05638885 ], [ 177.66708374000001, -39.05081177 ], [ 177.60142517, -39.05247116 ], [ 177.56582642, -39.05527878 ], [ 177.54333496000001, -39.05444336 ], [ 177.4828949, -39.05644608 ], [ 177.43305969, -39.06277847 ], [ 177.42860413, -39.05638885 ], [ 177.431396479999989, -39.04527664 ], [ 177.4125061, -39.06361008 ], [ 177.35038757, -39.07725525 ], [ 177.2902832, -39.09222412 ], [ 177.213790890000013, -39.11782837 ], [ 177.18444824, -39.1297226 ], [ 177.15345764, -39.13977051 ], [ 177.123535159999989, -39.15211105 ], [ 177.07305908, -39.17777634 ], [ 177.047500609999986, -39.19369507 ], [ 177.03971863000001, -39.20055389 ], [ 177.034729, -39.23833466 ], [ 177.021987919999987, -39.24702835 ], [ 177.02333069, -39.2508316 ], [ 177.01106262, -39.27080917 ], [ 176.99806213, -39.27861023 ], [ 176.9916687, -39.29333496 ], [ 176.96638489, -39.3144455 ], [ 176.95033264, -39.32203293 ], [ 176.94242859, -39.33499527 ], [ 176.934646609999987, -39.33959579 ], [ 176.930191040000011, -39.33571625 ], [ 176.92030334, -39.33919525 ], [ 176.89538574, -39.37428665 ], [ 176.88139343, -39.40638733 ], [ 176.875610349999988, -39.42479324 ], [ 176.872131349999989, -39.45125198 ], [ 176.879226679999988, -39.46986008 ], [ 176.88528442, -39.47833252 ], [ 176.89805603, -39.4794426 ], [ 176.91583252, -39.47305679 ], [ 176.922500609999986, -39.47833252 ], [ 176.920272829999988, -39.48860931 ], [ 176.91920471, -39.52249146 ], [ 176.922500609999986, -39.55110931 ], [ 176.930450439999987, -39.57159424 ], [ 176.953338620000011, -39.60955429 ], [ 176.96762085, -39.62439346 ], [ 176.98083496000001, -39.63249969 ], [ 176.98693848, -39.6305542 ], [ 177.00267029, -39.63985443 ], [ 177.03166199, -39.64972305 ], [ 177.04333496000001, -39.64472198 ], [ 177.06388855, -39.64250183 ], [ 177.077224730000012, -39.63360977 ], [ 177.08444214, -39.64138794 ], [ 177.09611511, -39.64361191 ], [ 177.09165955, -39.65277863 ], [ 177.08076477, -39.66241455 ], [ 177.07943726, -39.67277908 ], [ 177.050170900000012, -39.69223785 ], [ 177.03668213, -39.70506287 ], [ 177.01965332, -39.72591019 ], [ 177.01393127, -39.73768234 ], [ 177.00775146, -39.76146698 ], [ 177.01028442, -39.77027893 ], [ 176.998947140000013, -39.78574753 ], [ 176.993896479999989, -39.79972076 ], [ 176.993652340000011, -39.81194305 ], [ 177.00582886, -39.84194565 ], [ 176.99499512, -39.8433342 ], [ 176.98832703, -39.85638809 ], [ 176.98117065, -39.86145401 ], [ 176.96539307, -39.88660049 ], [ 176.96376038, -39.90393066 ], [ 176.95568848, -39.91743469 ], [ 176.93849182, -39.92717361 ], [ 176.928894039999989, -39.94499969 ], [ 176.927978520000011, -39.95892334 ], [ 176.91473389, -39.97155762 ], [ 176.90852356, -39.98235321 ], [ 176.90333557, -40.00666809 ], [ 176.88806152, -40.0261116 ], [ 176.88020325, -40.04597473 ], [ 176.88027954, -40.06027603 ], [ 176.89425659, -40.07424545 ], [ 176.891250609999986, -40.08286285 ], [ 176.874786379999989, -40.09606552 ], [ 176.87080383, -40.10604858 ], [ 176.87388611, -40.11916733 ], [ 176.87832642, -40.11999893 ], [ 176.8666687, -40.13499832 ], [ 176.84527588, -40.14583206 ], [ 176.84916687, -40.15222168 ], [ 176.84333801, -40.15999985 ], [ 176.828323360000013, -40.16924667 ], [ 176.82583618000001, -40.1819458 ], [ 176.795272829999988, -40.2080574 ], [ 176.786605830000013, -40.22458267 ], [ 176.780197140000013, -40.21709061 ], [ 176.764724730000012, -40.21944427 ], [ 176.73944092, -40.22833252 ], [ 176.71583557, -40.24000168 ], [ 176.69917297, -40.25305557 ], [ 176.68444824, -40.26111221 ], [ 176.67443848, -40.27138901 ], [ 176.66743469, -40.29819489 ], [ 176.666381840000014, -40.31361008 ], [ 176.673339840000011, -40.32110977 ], [ 176.65293884, -40.35227585 ], [ 176.649368290000012, -40.36864471 ], [ 176.63630676, -40.38997269 ], [ 176.63661194, -40.40676117 ], [ 176.623535159999989, -40.42652893 ], [ 176.5921936, -40.41939926 ], [ 176.589523320000012, -40.42566299 ], [ 176.589523320000012, -40.42566299 ] ] ] ] } }, diff --git a/examples/data/rivers.geojson b/examples/data/rivers.geojson index 1814c5c..3ec3df4 100644 --- a/examples/data/rivers.geojson +++ b/examples/data/rivers.geojson @@ -3,114 +3,114 @@ "name": "rivers_discharge", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0, "random": 116.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895, "random": 140.543 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45, "random": 127.668 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null, "random": 188.751 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0, "random": 119.877 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0, "random": 56.812 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null, "random": 155.372 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0, "random": 7.77 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85, "random": 176.396 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0, "random": 54.461 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696, "random": 76.672 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593, "random": 168.478 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0, "random": 8.395 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0, "random": 157.705 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0, "random": 120.315 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0, "random": 25.148 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0, "random": 47.132 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0, "random": 48.082 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0, "random": 80.01 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0, "random": 5.825 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0, "random": 14.728 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0, "random": 121.662 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0, "random": 141.898 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0, "random": 149.12 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0, "random": 112.879 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0, "random": 58.183 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0, "random": 39.292 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0, "random": 175.061 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0, "random": 170.691 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13, "random": 9.975 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65, "random": 143.348 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73, "random": 102.983 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04, "random": 149.654 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81, "random": 161.159 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66, "random": 7.451 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54, "random": 133.134 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91, "random": 99.085 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86, "random": 67.307 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51, "random": 184.839 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51, "random": 18.043 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 62.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 34.129 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62, "random": 119.351 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39, "random": 185.465 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06, "random": 127.188 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7, "random": 52.724 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31, "random": 22.403 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75, "random": 30.676 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86, "random": 101.52 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85, "random": 7.866 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06, "random": 135.067 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49, "random": 193.469 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11, "random": 57.609 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11, "random": 182.35 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31, "random": 163.018 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66, "random": 87.344 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57, "random": 160.952 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14, "random": 21.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54, "random": 78.819 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34, "random": 27.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58, "random": 132.534 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14, "random": 40.484 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42, "random": 7.136 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58, "random": 101.141 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39, "random": 158.852 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92, "random": 68.891 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43, "random": 161.505 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64, "random": 99.738 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42, "random": 155.239 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38, "random": 181.963 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04, "random": 194.781 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33, "random": 90.657 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45, "random": 183.009 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68, "random": 139.676 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5, "random": 131.305 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98, "random": 195.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98, "random": 131.512 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81, "random": 103.332 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72, "random": 178.335 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28, "random": 179.03 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623, "random": 40.838 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582, "random": 78.646 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701, "random": 140.285 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276, "random": 47.059 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473, "random": 81.88 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5, "random": 80.661 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075, "random": 159.411 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264, "random": 10.611 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622, "random": 161.189 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051, "random": 136.02 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146, "random": 96.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55, "random": 22.436 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0, "random": 17.448 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null, "random": 192.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0, "random": 39.611 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null, "random": 15.102 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null, "random": 166.625 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0, "random": 180.605 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0, "random": 113.246 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0, "random": 156.248 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null, "random": 159.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 158.187 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 195.887 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0, "random": 10.855 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0, "random": 124.806 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0, "random": 7.143 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94, "random": 70.008 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null, "random": 93.633 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, -{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0, "random": 104.678 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 19.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.179336342199054, 47.979622402020986 ], [ 8.189546376823428, 47.972545520522431 ], [ 8.198606515898735, 47.961330631590933 ], [ 8.202847677747727, 47.951378695351025 ], [ 8.202098790679642, 47.946106701641938 ], [ 8.197609939278989, 47.94097967344657 ], [ 8.190293067666055, 47.938076613803183 ], [ 8.188144177333756, 47.93368560563038 ], [ 8.1903522251217, 47.930309633651625 ], [ 8.202129207735897, 47.925552753946107 ], [ 8.214848286677357, 47.915558895820801 ], [ 8.238820285631462, 47.904218143345652 ], [ 8.24665449696454, 47.890000250632468 ], [ 8.254085551686437, 47.883771334931964 ], [ 8.261706682821764, 47.873662429894772 ], [ 8.282480662878465, 47.864751642321153 ], [ 8.289035785311343, 47.855531725762077 ], [ 8.295700815413296, 47.850881798649617 ], [ 8.299085780871215, 47.850953828957138 ], [ 8.302955663296723, 47.854920854390905 ], [ 8.312448716051993, 47.847817959269634 ], [ 8.317243690969125, 47.846781005871932 ], [ 8.323233588567877, 47.848967055279374 ], [ 8.3317035085878, 47.84892113313245 ], [ 8.345077448293258, 47.845552264021826 ], [ 8.354528344421942, 47.84620934854118 ], [ 8.387830070465487, 47.843946659301267 ], [ 8.417259538407375, 47.856295897585959 ], [ 8.427527427829261, 47.856882989802415 ], [ 8.450447305180854, 47.852103212265753 ], [ 8.470781263289405, 47.844523416859332 ], [ 8.48603912489186, 47.844150557538178 ], [ 8.499792084735036, 47.839633695099842 ], [ 8.51894383518531, 47.842986862275822 ], [ 8.539871603639911, 47.844543049771907 ], [ 8.552167379059203, 47.849812149285121 ], [ 8.571437179260885, 47.850647324341139 ], [ 8.58117104497925, 47.852665408632674 ], [ 8.608404534758874, 47.865070627942011 ], [ 8.618132396095548, 47.867313711420245 ], [ 8.636782225232068, 47.866982882969481 ], [ 8.655393716798704, 47.883325013481397 ], [ 8.653388588529319, 47.890595977648537 ], [ 8.655535460504723, 47.89588598418932 ], [ 8.668191071266644, 47.909143067493289 ], [ 8.671877853831218, 47.918119079811078 ], [ 8.670898719097984, 47.925180053480958 ], [ 8.683603509378854, 47.929528158799265 ], [ 8.699861343776798, 47.930059306969731 ], [ 8.709838152954889, 47.934808387182144 ], [ 8.72274703972611, 47.934362507186066 ], [ 8.736464815120501, 47.938951621960463 ], [ 8.743177716679435, 47.940671679650244 ], [ 8.758554625059748, 47.937982827266858 ], [ 8.763302411176356, 47.946286850852232 ], [ 8.75742024169884, 47.957368769711195 ], [ 8.759380185159891, 47.959233782878897 ], [ 8.769177069362176, 47.960321870963838 ], [ 8.775113927477793, 47.964536914836231 ], [ 8.77844669396805, 47.974416921299721 ], [ 8.800310212031984, 47.987822089895651 ], [ 8.81237901968051, 47.991686191899916 ], [ 8.813001985219067, 47.993067194365302 ], [ 8.817072945443872, 47.993139231516878 ], [ 8.832345667055487, 47.99963235629761 ], [ 8.834952489756764, 48.007097362869764 ], [ 8.844051440207304, 48.005327450536143 ], [ 8.853265332636807, 48.0062925333959 ], [ 8.863751093241325, 48.013163612968704 ], [ 8.8729380005823, 48.013445697192189 ], [ 8.878858712437983, 48.024752724068577 ], [ 8.887728613397934, 48.025488804472232 ], [ 8.89387738040989, 48.034044840167823 ], [ 8.898012313713483, 48.03533087544271 ], [ 8.905256356313723, 48.029936955042686 ], [ 8.910331319481561, 48.029380003703452 ], [ 8.913817246182841, 48.031367030552602 ], [ 8.917512072235638, 48.038146048967747 ], [ 8.922658001939698, 48.03918409384589 ], [ 8.928633013407264, 48.035869156124313 ], [ 8.931499076185986, 48.03146719404554 ], [ 8.934055128893636, 48.027766226333789 ], [ 8.926843391120803, 48.018317182489675 ], [ 8.918743599716988, 48.011859123492805 ], [ 8.921000635628534, 48.00906715071492 ], [ 8.929167552437908, 48.009364225128138 ], [ 8.939366296553626, 48.017150301073073 ], [ 8.943918348385125, 48.012489353721804 ], [ 8.945526326983844, 48.012820367910813 ], [ 8.95009026425379, 48.013740407633989 ], [ 8.963397956898451, 48.022609509540658 ], [ 8.964899878040189, 48.025771515955121 ], [ 8.961109781438472, 48.03224546470495 ], [ 8.95692187077991, 48.029819432184979 ], [ 8.95225887108872, 48.031966384191534 ], [ 8.963367502979386, 48.044757456093635 ], [ 8.963232410418229, 48.049331443889315 ], [ 8.966915245870345, 48.055644462139171 ], [ 8.969334205010519, 48.056510482748386 ], [ 8.972681198712605, 48.055305516076388 ], [ 8.975474295623366, 48.049312556679801 ], [ 8.979880260532308, 48.048991598316249 ], [ 8.980126145649256, 48.05446558709437 ], [ 8.983349041270497, 48.058055608124583 ], [ 8.988282071744093, 48.054298662850435 ], [ 8.996457988789487, 48.054591737573311 ], [ 8.989897940890112, 48.05997466383463 ], [ 9.00479267912284, 48.065833787661909 ], [ 9.006689573123175, 48.070136794954387 ], [ 9.010511500607874, 48.07188382565181 ], [ 9.022481359795869, 48.073234933595167 ], [ 9.027493202440503, 48.078609967139435 ], [ 9.039231017147968, 48.082245066152616 ], [ 9.048440769033249, 48.090046133377015 ], [ 9.066314524214716, 48.093781288964252 ], [ 9.065303679479273, 48.086724297337682 ], [ 9.067279689272413, 48.085304318660398 ], [ 9.076427621155828, 48.084427405132516 ], [ 9.082013656049265, 48.080197466480072 ], [ 9.097955381043009, 48.08624760025527 ], [ 9.099926245733517, 48.091919604819978 ], [ 9.102723187838256, 48.093456627020245 ], [ 9.106453159471391, 48.093151662261782 ], [ 9.108055187294998, 48.091057681596347 ], [ 9.102181428418275, 48.082047648532814 ], [ 9.103685499311947, 48.077904672507913 ], [ 9.108762463359328, 48.077336721105375 ], [ 9.115428314669545, 48.081528772942754 ], [ 9.118148289852877, 48.0814677980689 ], [ 9.123721328726004, 48.077015860521669 ], [ 9.128051182057833, 48.082173887956422 ], [ 9.132142141760609, 48.082310925287779 ], [ 9.136736170727987, 48.078785976237938 ], [ 9.152363035293906, 48.078210121780536 ], [ 9.159247082596085, 48.072809198506448 ], [ 9.163687033762294, 48.073163239161822 ], [ 9.164260929985993, 48.077943232788513 ], [ 9.167498825428622, 48.081529254105966 ], [ 9.177132834000519, 48.076749354625562 ], [ 9.182990747430216, 48.07821840586363 ], [ 9.197177659289153, 48.07607054163811 ], [ 9.201686581668753, 48.077798579950198 ], [ 9.206910341857737, 48.087045606154618 ], [ 9.209710283816214, 48.088582628480765 ], [ 9.225770108135796, 48.089814774331849 ], [ 9.225269320169852, 48.079774792776561 ], [ 9.228778382464686, 48.07512883681882 ], [ 9.238331283388971, 48.075597923958441 ], [ 9.242236320204533, 48.072080968647462 ], [ 9.250417237303532, 48.07234804333568 ], [ 9.258285285278257, 48.066458130621164 ], [ 9.261989266424312, 48.065684166493774 ], [ 9.265001258764043, 48.064703196880465 ], [ 9.279074077905245, 48.067118320703493 ], [ 9.289468904772699, 48.070761408361498 ], [ 9.285952847285511, 48.075182365684547 ], [ 9.288800769896657, 48.077627386110308 ], [ 9.293781772601426, 48.075228437855962 ], [ 9.298105908957604, 48.066675498287871 ], [ 9.301843876217694, 48.066588532953105 ], [ 9.318122609218394, 48.072142670512186 ], [ 9.338192558293038, 48.065501872142406 ], [ 9.349723466426017, 48.064768981017615 ], [ 9.354589380572463, 48.066707021616736 ], [ 9.357523270379389, 48.070751038835922 ], [ 9.362427170635616, 48.07336707871859 ], [ 9.391363897080415, 48.073589346252184 ], [ 9.39824680346706, 48.075019406951888 ], [ 9.403869682361268, 48.07831145131086 ], [ 9.412486299792906, 48.092948496557533 ], [ 9.413269123530023, 48.101154484639899 ], [ 9.420940852665511, 48.110790533826126 ], [ 9.426253725298972, 48.114543574053315 ], [ 9.442327550881332, 48.115745720761858 ], [ 9.448624429078807, 48.118789771636777 ], [ 9.466372738442363, 48.14416187741552 ], [ 9.465325629825758, 48.149898854727923 ], [ 9.468880541699392, 48.152549881920308 ], [ 9.477818429644824, 48.153926961089496 ], [ 9.487024215931999, 48.160092032265226 ], [ 9.496113667453134, 48.18248406506428 ], [ 9.498837620203775, 48.183533087867815 ], [ 9.504543498062699, 48.186840133055171 ], [ 9.503588354548842, 48.194176107592533 ], [ 9.492627217469087, 48.205650978923288 ], [ 9.495833137894882, 48.208081003262841 ], [ 9.501615091850287, 48.207707058437734 ], [ 9.508882112535083, 48.203415135578723 ], [ 9.516000065580627, 48.202549203509335 ], [ 9.518891977730036, 48.205437223777537 ], [ 9.516639822113005, 48.213955183294665 ], [ 9.518472757782128, 48.216191195649181 ], [ 9.523334681686826, 48.21766723730186 ], [ 9.53184261237031, 48.217225317178695 ], [ 9.535061403742542, 48.225823327153002 ], [ 9.526261456000901, 48.227192242313102 ], [ 9.525367416125773, 48.229500228996372 ], [ 9.535693163884412, 48.237004307383124 ], [ 9.5429440678578, 48.238419371537184 ], [ 9.552677039585134, 48.235421468923199 ], [ 9.558249947162938, 48.237343516323129 ], [ 9.568794865675189, 48.23661161676381 ], [ 9.580374645363763, 48.242024711612501 ], [ 9.590787610399953, 48.239014815575146 ], [ 9.602106487958574, 48.23986191886862 ], [ 9.61619045162044, 48.235376060420819 ], [ 9.619669640668377, 48.224779117212258 ], [ 9.622616657548816, 48.222642149024907 ], [ 9.628766598916615, 48.222707206202934 ], [ 9.639067361288646, 48.229516286706023 ], [ 9.634969277426448, 48.235342235315258 ], [ 9.63878622152995, 48.236379268345814 ], [ 9.65218419091152, 48.231912403494242 ], [ 9.663751218769416, 48.225439526143582 ], [ 9.664980212213052, 48.22518753783207 ], [ 9.669151190352077, 48.224374578991963 ], [ 9.697662747813643, 48.232976824463584 ], [ 9.709818446423688, 48.242017917397362 ], [ 9.718856072254274, 48.255941970011499 ], [ 9.725940920297639, 48.260088026339808 ], [ 9.731212702122212, 48.268172057064312 ], [ 9.736894575797693, 48.271674102687754 ], [ 9.748745387821973, 48.275462204791474 ], [ 9.765166231155179, 48.275694356916375 ], [ 9.777105013461215, 48.28084845660603 ], [ 9.790554848902001, 48.282759577740983 ], [ 9.804845740857347, 48.281672713904918 ], [ 9.813420618054119, 48.283759788901442 ], [ 9.827796399013396, 48.287886914482989 ], [ 9.834511264425059, 48.291358968726037 ], [ 9.837567243063585, 48.291041998250385 ], [ 9.863446813708688, 48.300129219088575 ], [ 9.867034725187793, 48.302768247222161 ], [ 9.883037376835617, 48.312374374947154 ], [ 9.898330269295322, 48.310791521674716 ], [ 9.907935172725706, 48.311199610529371 ], [ 9.914673032979254, 48.314888665078747 ], [ 9.943861066816186, 48.348095863959372 ], [ 9.962511624063778, 48.361039009662662 ], [ 9.961013457852854, 48.369533976093614 ], [ 9.96479230986761, 48.374909000245225 ], [ 9.979200061623782, 48.380429122876244 ], [ 9.983945924829079, 48.384862156679354 ], [ 9.990553723010819, 48.391518204414069 ], [ 9.996185036794557, 48.393671929768949 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 188.895 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.213089351091515, 46.24515024934761 ], [ 20.239638281807302, 46.241400509485395 ], [ 20.277556064653659, 46.24196187679393 ], [ 20.309981841841473, 46.244270188643533 ], [ 20.320724811680083, 46.242813294513859 ], [ 20.327397731726844, 46.245029357323624 ], [ 20.333331696510086, 46.2451364145452 ], [ 20.336473708947992, 46.243705445804338 ], [ 20.345145901700931, 46.231803540812521 ], [ 20.352084920762067, 46.228981610069333 ], [ 20.363618854698075, 46.229171722126758 ], [ 20.36731378884658, 46.231445755393068 ], [ 20.372943761068161, 46.231304810568588 ], [ 20.38360989011899, 46.222034921955334 ], [ 20.392244851812137, 46.221604005992589 ], [ 20.400056890519792, 46.217595084550751 ], [ 20.421250801367201, 46.216344291609374 ], [ 20.429654839300106, 46.212220376156729 ], [ 20.439599792657994, 46.211857472922865 ], [ 20.456104988283411, 46.206512023482965 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.196217867916893, 46.25528274555915 ], [ 20.192440648032601, 46.255598605540733 ], [ 20.167139323444331, 46.259023791527142 ], [ 20.16063137572975, 46.258184729940972 ], [ 20.154240501684423, 46.253683671505151 ], [ 20.153776543720642, 46.252809572611078 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.360790427325043, 46.636549649957303 ], [ 12.355879794361822, 46.645328005090015 ], [ 12.356350673268816, 46.651267996953806 ], [ 12.352021447717991, 46.664580929510301 ], [ 12.366330012787133, 46.680878028974313 ], [ 12.368426906257019, 46.68542503869638 ], [ 12.366849851541019, 46.688873016598798 ], [ 12.338699763700266, 46.704974722474724 ], [ 12.296659733912852, 46.723967292702149 ], [ 12.283137768306316, 46.727778159410917 ], [ 12.279909713586438, 46.731929120110465 ], [ 12.283264655051843, 46.733493148031449 ], [ 12.294219564257377, 46.733599249875212 ], [ 12.305420547501269, 46.729815362154604 ], [ 12.320694416701727, 46.73010150347362 ], [ 12.354437956643363, 46.739550797163218 ], [ 12.369906374684156, 46.740658856834997 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mur", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.674723003911902, 46.713408509403529 ], [ 15.675232289200045, 46.713467088393536 ], [ 15.682386276933777, 46.711583158655429 ], [ 15.688673320536102, 46.707211225889267 ], [ 15.700626319676031, 46.703076345243751 ], [ 15.723419191291367, 46.701485564613861 ], [ 15.737887046964145, 46.70365669901372 ], [ 15.746458002364907, 46.702858782391473 ], [ 15.75448901265344, 46.699559863195617 ], [ 15.759825969545684, 46.699803913625303 ], [ 15.773177781808073, 46.704538033811609 ], [ 15.801363201762744, 46.72355427300198 ], [ 15.821993972283595, 46.727758463098581 ], [ 15.828910861091178, 46.730913524489914 ], [ 15.860538706875701, 46.727563830827677 ], [ 15.869385597207756, 46.7299519116293 ], [ 15.903404490536042, 46.723517245184205 ], [ 15.915266509698853, 46.718443365769716 ], [ 15.94327668036061, 46.700335660364026 ], [ 15.951938691727536, 46.696768748236153 ], [ 15.966114618578265, 46.695490884791077 ], [ 15.981948687543937, 46.686584049399002 ], [ 15.991384435087326, 46.679031653238155 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 16.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.26808423628805, 46.947345724054287 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.297082118488543, 46.952657671860827 ], [ 16.31589396450239, 46.953882849836212 ], [ 16.352420756375341, 46.951796203079958 ], [ 16.374500668433612, 46.948741419688304 ], [ 16.384561589769508, 46.949206515738162 ], [ 16.399974400608748, 46.953318657514849 ], [ 16.412239408106366, 46.948870781806434 ], [ 16.41779932277608, 46.951140831341576 ], [ 16.437498188310805, 46.951160020681719 ], [ 16.44067327269266, 46.945976058126568 ], [ 16.452329200215676, 46.945675170589716 ], [ 16.469970162164913, 46.941662345765224 ], [ 16.486077964138719, 46.94596549385701 ], [ 16.497220721558811, 46.954155589709103 ], [ 16.507638637256139, 46.954822688515769 ], [ 16.509722393982784, 46.965950692974914 ], [ 16.514556187767088, 46.974430727983957 ], [ 16.519988061812391, 46.978763773873666 ], [ 16.532272924187478, 46.981403888636081 ], [ 16.537265754712653, 46.988044927359958 ], [ 16.548952676523992, 46.987962039867391 ], [ 16.593238062133146, 47.003308443950225 ], [ 16.620932745906543, 47.009568701392737 ], [ 16.643612534713416, 47.012395915825621 ], [ 16.658663362605814, 47.015810055978683 ], [ 16.661244296652495, 47.018209077268843 ], [ 16.661698198908148, 47.022768075394303 ], [ 16.673220089951233, 47.024282184271442 ], [ 16.686529603982738, 47.043581286171161 ], [ 16.69794038183252, 47.050600386536793 ], [ 16.707687306295082, 47.051054479535871 ], [ 16.716278134348578, 47.056600555192375 ], [ 16.724796113674735, 47.0548196398668 ], [ 16.726522023512615, 47.058630651339833 ], [ 16.732228981816203, 47.058817705783213 ], [ 16.735344803368431, 47.066454725586397 ], [ 16.745474717106458, 47.067343821438449 ], [ 16.751717765541038, 47.062921887988075 ], [ 16.756449725090441, 47.06337993281371 ], [ 16.764613507171859, 47.07123500109202 ], [ 16.773901326572485, 47.076976082686542 ], [ 16.781819230054509, 47.07911215621322 ], [ 16.804633066003596, 47.079612375357236 ], [ 16.810623965778273, 47.082530428659744 ], [ 16.81579776511122, 47.090525467971482 ], [ 16.819341702934938, 47.092418499718896 ], [ 16.828740635133361, 47.092646590528147 ], [ 16.832828526259249, 47.096572624146113 ], [ 16.841773418937791, 47.098887707684021 ], [ 16.847598220192992, 47.106620753580835 ], [ 16.846879101156528, 47.112613738515755 ], [ 16.854327967644053, 47.116603805026124 ], [ 16.857580698303519, 47.128585820927803 ], [ 16.865841599187938, 47.13070289779656 ], [ 16.87595618522877, 47.147387973504451 ], [ 16.883766045835646, 47.15158804276664 ], [ 16.889268715978222, 47.165752077054982 ], [ 16.893367606730202, 47.169674111505444 ], [ 16.893771190417731, 47.189587089163702 ], [ 16.901494003939892, 47.196079155853894 ], [ 16.908150636497897, 47.211559199645336 ], [ 16.923821352577551, 47.220180339866374 ], [ 16.936660983874663, 47.233749446228906 ], [ 16.954890775620733, 47.237888616818957 ], [ 16.959561420050537, 47.253464641792831 ], [ 16.969951222464015, 47.259590735217721 ], [ 16.972293143190544, 47.262680753110658 ], [ 16.970015945467516, 47.272873718217546 ], [ 16.971214502826761, 47.293659703316052 ], [ 16.974997327963983, 47.300804730420715 ], [ 16.987743049405079, 47.310020841532868 ], [ 16.997827651980842, 47.325783919187423 ], [ 17.031149700455568, 47.36053919791992 ], [ 17.040873313826083, 47.375859272198326 ], [ 17.046697993395522, 47.389310312069085 ], [ 17.06941754706412, 47.403287514325207 ], [ 17.103381266235672, 47.405927841183619 ], [ 17.111606118194469, 47.410321914928993 ], [ 17.134970810614838, 47.417608132439995 ], [ 17.139776565635856, 47.427675167205045 ], [ 17.146643431213466, 47.43190622802426 ], [ 17.15768830689742, 47.434320332315266 ], [ 17.164961285341935, 47.433031404930155 ], [ 17.196416990235218, 47.43714770532759 ], [ 17.205096884609556, 47.439451786301269 ], [ 17.216515816069293, 47.439093898393828 ], [ 17.24222681927877, 47.430892157699326 ], [ 17.258593739528404, 47.429587318647727 ], [ 17.303923471903573, 47.42814276155778 ], [ 17.316035331964635, 47.4309458756453 ], [ 17.327758142649017, 47.436286982655105 ], [ 17.348994064692409, 47.433342192958854 ], [ 17.355130012807177, 47.433933252070986 ], [ 17.365078851904244, 47.438450342826798 ], [ 17.377144597223239, 47.446747450700059 ], [ 17.386947339758212, 47.455853535098733 ], [ 17.389866218528823, 47.460739557228187 ], [ 17.392230763027129, 47.481464555275103 ], [ 17.396624482692399, 47.493374583765629 ], [ 17.402283272306285, 47.501549628907142 ], [ 17.401459242749013, 47.503197619151756 ], [ 17.403886214353236, 47.503758642158928 ], [ 17.407712042879705, 47.510655671097538 ], [ 17.403887649958016, 47.530335610226089 ], [ 17.404207464300622, 47.539021602914943 ], [ 17.406668050227665, 47.544559978670435 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Raab", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.482714047263661, 47.332946186609952 ], [ 15.482349015377684, 47.332235296546905 ], [ 15.487995079126055, 47.327218358349711 ], [ 15.494528517827742, 47.303865456924129 ], [ 15.486707860735391, 47.289972402854737 ], [ 15.482110217875084, 47.274354381952719 ], [ 15.48456034869124, 47.267167417121129 ], [ 15.501020399248493, 47.259004586738556 ], [ 15.508202486839959, 47.252324666139593 ], [ 15.517141453039685, 47.250844754154159 ], [ 15.529409488290788, 47.244893880168043 ], [ 15.542711421950521, 47.243475010149439 ], [ 15.549197433375898, 47.24071307646502 ], [ 15.554439513039222, 47.235022135382309 ], [ 15.55340361439792, 47.23048213260936 ], [ 15.570476841967674, 47.21358732212758 ], [ 15.577295019570959, 47.202570403875235 ], [ 15.587560148743565, 47.192797516749813 ], [ 15.592478140934274, 47.191462565912353 ], [ 15.599699043041193, 47.193705631600395 ], [ 15.603967949930572, 47.196745668244731 ], [ 15.606602943511742, 47.196184694051752 ], [ 15.609517033149277, 47.190810730625849 ], [ 15.60732517880893, 47.184485718739381 ], [ 15.609012249158402, 47.180529740744873 ], [ 15.621958355119739, 47.170878879792838 ], [ 15.650143479479148, 47.155143173927591 ], [ 15.657614484074342, 47.152335249035893 ], [ 15.664346427773399, 47.152759312809351 ], [ 15.669538682717901, 47.138595383984587 ], [ 15.68289992716195, 47.12205153705262 ], [ 15.692876038560092, 47.113193646051059 ], [ 15.702317285662357, 47.097946759173034 ], [ 15.723745376777925, 47.086112982305536 ], [ 15.731688505086819, 47.077103072223494 ], [ 15.745172548429297, 47.07038921133325 ], [ 15.749854678094287, 47.062420267498247 ], [ 15.751720107298205, 47.040825317955324 ], [ 15.7578674396891, 47.022496404816081 ], [ 15.7681467917078, 47.00171353461284 ], [ 15.774797913527456, 46.99343561046323 ], [ 15.797381946140586, 46.984059839960338 ], [ 15.81048499631172, 46.977124975752368 ], [ 15.814461055857537, 46.972841020159699 ], [ 15.824446073417617, 46.968545122367736 ], [ 15.837241956147874, 46.969861242685994 ], [ 15.863504036595776, 46.956891513450074 ], [ 15.916546673084381, 46.956549021543921 ], [ 15.935732657946696, 46.950724213392959 ], [ 15.9433416200329, 46.949950287358945 ], [ 15.961578443372407, 46.952399458278343 ], [ 15.990945395132862, 46.944766750536886 ], [ 15.999591341657014, 46.944403833862751 ], [ 16.02019614126467, 46.947204027320147 ], [ 16.041709034456968, 46.945152235897538 ], [ 16.073700974921515, 46.937156553956022 ], [ 16.091068850995029, 46.937336720224913 ], [ 16.106178876221982, 46.930965873898629 ], [ 16.122987807209668, 46.928643037829488 ], [ 16.134329729955233, 46.928612146861994 ], [ 16.145838613981269, 46.93040925399017 ], [ 16.167482473386624, 46.929932462327827 ], [ 16.182649261650592, 46.935231599788359 ], [ 16.195221125192749, 46.93766171687151 ], [ 16.215954971849694, 46.938130915079071 ], [ 16.268891416996961, 46.947488408573605 ], [ 16.269793493229745, 46.94765381997157 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sió", "discharge": 39.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.051047409145248, 46.908727561577898 ], [ 18.056617597729112, 46.902740690939453 ], [ 18.07314268923761, 46.893276861467548 ], [ 18.099450538535503, 46.892632117583148 ], [ 18.117847474697498, 46.890160298595418 ], [ 18.140136513813712, 46.88148952394144 ], [ 18.148322435204101, 46.882832601741676 ], [ 18.153150434898656, 46.881398650358591 ], [ 18.160228488595273, 46.876614723923403 ], [ 18.164148479149819, 46.875920763023132 ], [ 18.170949416103547, 46.876889827968512 ], [ 18.176627435868429, 46.874253885441846 ], [ 18.184812356948214, 46.875596963606 ], [ 18.196384304683882, 46.874670076534606 ], [ 18.231759411984715, 46.858762436887361 ], [ 18.244935413373543, 46.854753569673491 ], [ 18.255714491956045, 46.847673682085784 ], [ 18.269635474796942, 46.84430182028197 ], [ 18.271457546874036, 46.840288842924444 ], [ 18.269616691910549, 46.833746832501454 ], [ 18.272216741590238, 46.830602860863408 ], [ 18.308673769910335, 46.818278227452879 ], [ 18.315700828435151, 46.813258301556516 ], [ 18.323107250227562, 46.790541398579279 ], [ 18.341915219634732, 46.786398585567134 ], [ 18.384262327180767, 46.768406015418407 ], [ 18.406954500313894, 46.753223252182643 ], [ 18.424629442484417, 46.750747426422031 ], [ 18.451203450223886, 46.742427692634877 ], [ 18.466259400764766, 46.740337840259429 ], [ 18.472300408900203, 46.738125901020112 ], [ 18.476717472238594, 46.733715949162168 ], [ 18.54950670032343, 46.74978363600151 ], [ 18.562791627368497, 46.749398765135062 ], [ 18.573457614751113, 46.746884871060558 ], [ 18.5922675291765, 46.74545805492879 ], [ 18.598176609587799, 46.739801117980058 ], [ 18.601705761537794, 46.731310161574619 ], [ 18.619763897228818, 46.719366349906423 ], [ 18.625875995506469, 46.712774416190584 ], [ 18.628071205698486, 46.701841449274355 ], [ 18.62665278499135, 46.673921465893308 ], [ 18.618011341069518, 46.649217409497908 ], [ 18.616126841047446, 46.625227417468942 ], [ 18.60402369386826, 46.586965342732256 ], [ 18.592723115696391, 46.569547252014345 ], [ 18.596793087997312, 46.520376345876947 ], [ 18.599200262288189, 46.51103438001865 ], [ 18.604845328937994, 46.506078439662339 ], [ 18.627859424510291, 46.49449767435155 ], [ 18.64480666946703, 46.477327857562919 ], [ 18.655701761735884, 46.469507971117217 ], [ 18.65557203193633, 46.456194984648143 ], [ 18.660987182013479, 46.447116046967878 ], [ 18.660621240434232, 46.444384045677808 ], [ 18.647726610897632, 46.429826937530144 ], [ 18.646017877667756, 46.417078935877797 ], [ 18.629839314997927, 46.400205798344309 ], [ 18.629048439653307, 46.394285797841547 ], [ 18.634320510839814, 46.389124854168976 ], [ 18.639960525882167, 46.386690911238986 ], [ 18.64768851356305, 46.385042987501279 ], [ 18.670741395698528, 46.384013210723325 ], [ 18.705889327669858, 46.376902556885582 ], [ 18.713482236587186, 46.379164627978469 ], [ 18.720112196257634, 46.379191691434947 ], [ 18.760006329946535, 46.360729096117673 ], [ 18.770985403349798, 46.353805209536091 ], [ 18.77688652414103, 46.346069275108917 ], [ 18.783015559681857, 46.342449338276289 ], [ 18.789813541913258, 46.341312405003677 ], [ 18.802233443770852, 46.342560522730189 ], [ 18.808922490281933, 46.338211592120111 ], [ 18.816548492695127, 46.335869667714348 ], [ 18.823967379933297, 46.339287735380708 ], [ 18.829386087375834, 46.35224977344226 ], [ 18.833043015061591, 46.354767806788445 ], [ 18.838200004676825, 46.353733856901663 ], [ 18.842778034944871, 46.350902904680076 ], [ 18.846091111224755, 46.346088941278715 ], [ 18.846917422373615, 46.330410966095073 ], [ 18.852726506001744, 46.324513029100522 ], [ 18.864361526328796, 46.320062145652038 ], [ 18.865391562428918, 46.317925158408819 ], [ 18.859625713207006, 46.312108109189026 ], [ 18.858735801077167, 46.308030104520782 ], [ 18.868243853925168, 46.302571202371738 ], [ 18.882107776989976, 46.302335335839544 ], [ 18.893807929964662, 46.291215460874632 ], [ 18.887678046108853, 46.287213405663003 ], [ 18.882867228823603, 46.279561367972519 ], [ 18.886531298910764, 46.274930408074908 ], [ 18.896200299402508, 46.272084504403644 ], [ 18.906686259119578, 46.270978606361638 ], [ 18.919424236973295, 46.26836173244341 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.199572366442279, 46.255754177698755 ], [ 20.207775044460853, 46.26183218330403 ], [ 20.226091581067756, 46.279871345070873 ], [ 20.240781358345384, 46.28691348156994 ], [ 20.249100988239771, 46.302996547871707 ], [ 20.247677868743974, 46.309344528598459 ], [ 20.243488798205682, 46.313921483935999 ], [ 20.232485787633827, 46.317423374412058 ], [ 20.225037744708406, 46.321585298553842 ], [ 20.221640636983704, 46.327818259954881 ], [ 20.221579687607193, 46.333473807854759 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 10.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.16212952694983, 48.323448714178234 ], [ 24.168445296558954, 48.327338576606401 ], [ 24.192372071670395, 48.332674820297754 ], [ 24.214630980779912, 48.332511047238789 ], [ 24.222182015854202, 48.329563124443055 ], [ 24.228381109113506, 48.324325188004607 ], [ 24.239360145985387, 48.320697300338523 ], [ 24.264722151303722, 48.31573455905351 ], [ 24.278113271733183, 48.30799469553493 ], [ 24.289752232960762, 48.307563814597103 ], [ 24.313016091747976, 48.309445050999727 ], [ 24.345190985347987, 48.308133379454532 ], [ 24.35923900877777, 48.304501522728529 ], [ 24.368514189382434, 48.294915617191734 ], [ 24.370589317163965, 48.288975639020236 ], [ 24.367202540721326, 48.279828605321491 ], [ 24.355624882356388, 48.267010487830483 ], [ 24.354615985684678, 48.26266547761611 ], [ 24.356693123069494, 48.256268498975608 ], [ 24.353642276901738, 48.25009246901503 ], [ 24.33659859381326, 48.239319296104284 ], [ 24.3305049118052, 48.226510234390936 ], [ 24.32028510096821, 48.220093131518723 ], [ 24.318637324791812, 48.210572115386711 ], [ 24.31387148327682, 48.204537067094506 ], [ 24.310168753432659, 48.193333029602087 ], [ 24.28916653875309, 48.162662818792043 ], [ 24.288604050523031, 48.140262814742854 ], [ 24.281492283035366, 48.131336743733783 ], [ 24.275029377087815, 48.128349677865991 ], [ 24.2720166134892, 48.118514648235411 ], [ 24.264226838285001, 48.110038569416112 ], [ 24.262915039701539, 48.101352557099929 ], [ 24.253771296020155, 48.091731464968738 ], [ 24.246693600455334, 48.079601394308739 ], [ 24.24978769004089, 48.075038425911323 ], [ 24.22399310669514, 48.061485166059114 ], [ 24.217239326374752, 48.05301209794915 ], [ 24.212480174393207, 48.049882458430368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 0.696 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.291998346137703, 48.795006177590317 ], [ 20.295052848860006, 48.792634636581852 ], [ 20.299416424177586, 48.787891218250046 ], [ 20.3060708765369, 48.786525605602712 ], [ 20.312779873587679, 48.785339648679837 ], [ 20.318265203272841, 48.785874136775327 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 138.593 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351224478421489, 48.114456210350866 ], [ 22.348580534457735, 48.112571184888495 ], [ 22.353411708974857, 48.103752236732227 ], [ 22.358046787089272, 48.099273284922276 ], [ 22.365269784512542, 48.097816358982925 ], [ 22.366383824558898, 48.0957833704419 ], [ 22.36450591647349, 48.092086353096413 ], [ 22.355795034307281, 48.088710266406629 ], [ 22.354850327436235, 48.087260705815005 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6489.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.832959419508189, 45.335151385212164 ], [ 28.837234402369656, 45.333521801021625 ], [ 28.861350468365899, 45.327198034926454 ], [ 28.88857860512789, 45.316925298146579 ], [ 28.900348716131095, 45.309871410705348 ], [ 28.90596983504804, 45.303142462713453 ], [ 28.914554916129699, 45.29796654439194 ], [ 28.92570001013468, 45.291835651250771 ], [ 28.93596304738438, 45.288692750029107 ], [ 28.945681022662999, 45.288761845329923 ], [ 28.953861950935508, 45.291378927244715 ], [ 28.956260864985115, 45.295459953438019 ], [ 28.951549584358233, 45.3101929138681 ], [ 28.95213541664819, 45.318657924003503 ], [ 28.957675122362716, 45.332828985426822 ], [ 28.958092994102955, 45.33924899315852 ], [ 28.961043904026226, 45.343465023946067 ], [ 28.959925729027212, 45.352425017343087 ], [ 28.97100552682268, 45.36131013100875 ], [ 28.976185329594109, 45.370618186269041 ], [ 28.978897319922567, 45.370755212948986 ], [ 28.981490222126158, 45.375409240737611 ], [ 28.988562078923419, 45.381741313947963 ], [ 29.001323911029864, 45.388688443086636 ], [ 29.020765710757775, 45.396413638485591 ], [ 29.039275650825157, 45.397198821455781 ], [ 29.046146657072473, 45.396062888905419 ], [ 29.059055564187886, 45.399183017140537 ], [ 29.066955537425677, 45.399591095396822 ], [ 29.071185555471761, 45.398165135830872 ], [ 29.080232575139803, 45.396078224398849 ], [ 29.068570608679604, 45.395750109179438 ], [ 29.052419735958747, 45.391286947845728 ], [ 29.016393850586674, 45.3898745920471 ], [ 28.999939023479239, 45.3831494272032 ], [ 28.974959507894408, 45.36177517046238 ], [ 28.965481796925765, 45.348355069932929 ], [ 28.966883848170159, 45.345559082738241 ], [ 28.971100844567285, 45.345227123723141 ], [ 28.990847452191208, 45.362664326471979 ], [ 29.032856246567167, 45.367913743023792 ], [ 29.04843020617216, 45.368104896585542 ], [ 29.053702145286707, 45.37053494951985 ], [ 29.056975119659036, 45.371392982892054 ], [ 29.066345928115357, 45.379930079336162 ], [ 29.071727803748828, 45.385565134721681 ], [ 29.083589671026228, 45.390852255035952 ], [ 29.112228553964616, 45.393327538492024 ], [ 29.126651620471154, 45.388262677789008 ], [ 29.1393865438632, 45.390554804035503 ], [ 29.174800254737388, 45.400904158599246 ], [ 29.181093170380649, 45.40445622268512 ], [ 29.184560040251363, 45.410575259875444 ], [ 29.200817807689713, 45.420352425856755 ], [ 29.209738525832623, 45.433467520523536 ], [ 29.227860166555974, 45.44938570811307 ], [ 29.23508510731039, 45.451541780749984 ], [ 29.2779493559459, 45.434017193738072 ], [ 29.28634935869934, 45.432941276461627 ], [ 29.298056321891337, 45.433403391478194 ], [ 29.307974207600104, 45.438022492219133 ], [ 29.322385943346042, 45.449650641289487 ], [ 29.327676881938569, 45.452064694491298 ], [ 29.335799862583883, 45.452133774919361 ], [ 29.342527895230361, 45.449715839494139 ], [ 29.347161958935221, 45.445980883230568 ], [ 29.356255151487822, 45.435245966693316 ], [ 29.37279345349565, 45.418202120699441 ], [ 29.394858571169006, 45.409749333528275 ], [ 29.399874648093142, 45.40529737967929 ], [ 29.408245584123964, 45.407563464093577 ], [ 29.431727689292302, 45.399579691135884 ], [ 29.466913652933805, 45.397398036511298 ], [ 29.489060674059111, 45.393869253213651 ], [ 29.503906640476586, 45.393869399133877 ], [ 29.52274764621291, 45.391439583720711 ], [ 29.527794649595286, 45.390745632844776 ], [ 29.543719297686621, 45.406664799383037 ], [ 29.549380218533841, 45.409979857680121 ], [ 29.553557229255432, 45.408972898172259 ], [ 29.567267313893211, 45.403182030061906 ], [ 29.610853769516876, 45.375442442570431 ], [ 29.644418214552829, 45.3492777573232 ], [ 29.652871331113616, 45.342448836969531 ], [ 29.659372601580696, 45.328105892138502 ], [ 29.669681896390149, 45.312068983580552 ], [ 29.670116991255735, 45.307250985177681 ], [ 29.670378162737734, 45.29854198216357 ], [ 29.67468728804176, 45.291729020757955 ], [ 29.675158385807027, 45.286694022252526 ], [ 29.676499492048702, 45.281174032120099 ], [ 29.676890742819651, 45.268452027853179 ], [ 29.681149823099354, 45.263943067050711 ], [ 29.696871994411545, 45.253510215576981 ], [ 29.698192123598623, 45.246838224101154 ], [ 29.695337245672086, 45.24095919243824 ], [ 29.701173275743525, 45.238750248596631 ], [ 29.704900163959792, 45.244041288631919 ], [ 29.714103170524037, 45.242683378154688 ], [ 29.717145334459488, 45.234028402831875 ], [ 29.7189289115794, 45.234334399547166 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6564.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 28.27777302313773, 45.455760312527268 ], [ 28.28706449054615, 45.450544436983492 ], [ 28.294073601043625, 45.444059503603476 ], [ 28.292551818283279, 45.43331748443466 ], [ 28.286371160497367, 45.416898417890764 ], [ 28.288534260398901, 45.411611436770137 ], [ 28.2958234058339, 45.403291505445104 ], [ 28.295963582235434, 45.394361502732053 ], [ 28.31930014668621, 45.362748720239246 ], [ 28.340811582644147, 45.337785922062125 ], [ 28.353888741687328, 45.328024046479825 ], [ 28.362545802699138, 45.323809129800395 ], [ 28.390265857788666, 45.317309399953054 ], [ 28.410160972894733, 45.3088365914113 ], [ 28.461687095382011, 45.295864092937123 ], [ 28.474832172180701, 45.290206219678481 ], [ 28.494474212715552, 45.28561341022754 ], [ 28.506319292767635, 45.279972524076086 ], [ 28.550746380125752, 45.269790956513013 ], [ 28.567354513376657, 45.26087611568024 ], [ 28.575075530605041, 45.25894619075946 ], [ 28.595758501504712, 45.257756393603103 ], [ 28.632658409341495, 45.257718755119946 ], [ 28.649652483613195, 45.251759920240623 ], [ 28.662899466586602, 45.250894049553317 ], [ 28.677238592925491, 45.242677186369058 ], [ 28.686574602731817, 45.240945277461378 ], [ 28.707998730836003, 45.231710483906788 ], [ 28.714750742910521, 45.23024154993093 ], [ 28.737628526607502, 45.238382777585301 ], [ 28.759134369999909, 45.243566991753355 ], [ 28.778232319501612, 45.24374317850544 ], [ 28.786411238657131, 45.246825260394075 ], [ 28.79172713260467, 45.25155531522649 ], [ 28.775486992105641, 45.260726159594526 ], [ 28.761889805711679, 45.271918031700217 ], [ 28.75448856859083, 45.284849964774011 ], [ 28.759560408666871, 45.292330017486876 ], [ 28.764502339056627, 45.295233067612187 ], [ 28.785634234007464, 45.297896276984012 ], [ 28.799765063669383, 45.304782419032769 ], [ 28.804141939995631, 45.310443464347529 ], [ 28.802947874839891, 45.313895454405369 ], [ 28.788217794457449, 45.319838312782345 ], [ 28.786012601032709, 45.329890295089236 ], [ 28.802783332451519, 45.341372465846625 ], [ 28.809602308806092, 45.341727532743931 ], [ 28.824094335804546, 45.338530673672359 ], [ 28.832959419508189, 45.335151385212164 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 6018.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 25.37633537367967, 43.632797450672747 ], [ 25.387454820896856, 43.63192428598267 ], [ 25.417659698374976, 43.632820571121407 ], [ 25.437692549496418, 43.637226759649536 ], [ 25.45828835256356, 43.644161953626636 ], [ 25.478191113093523, 43.653600139650749 ], [ 25.508953931998374, 43.657685430545854 ], [ 25.518721915919013, 43.656690523138387 ], [ 25.548685821205066, 43.656156806620139 ], [ 25.568501731024327, 43.657331994172765 ], [ 25.591599496899068, 43.665876211246356 ], [ 25.606884333471587, 43.672026354553736 ], [ 25.641092878178629, 43.69077967586712 ], [ 25.664163608455038, 43.701372892344729 ], [ 25.67985149651043, 43.70453904027498 ], [ 25.704166445737407, 43.702766271280453 ], [ 25.724017368283622, 43.703227459245554 ], [ 25.752870148860911, 43.709975732203581 ], [ 25.764033959389636, 43.718345836159081 ], [ 25.768101919811436, 43.719768874978946 ], [ 25.783819825432442, 43.722004023395407 ], [ 25.78880776217969, 43.724579070989307 ], [ 25.815516054239474, 43.758770319006381 ], [ 25.83133176122594, 43.772000467558257 ], [ 25.835708713389629, 43.773876509247295 ], [ 25.842273635066846, 43.776924570576362 ], [ 25.862394496976407, 43.780800761119018 ], [ 25.868490284420528, 43.791401818162676 ], [ 25.878856201445025, 43.794026915809646 ], [ 25.884774110588356, 43.797981971431696 ], [ 25.912396575969058, 43.822309231653058 ], [ 25.924853169035693, 43.842416347267907 ], [ 25.929498991470606, 43.851373390937738 ], [ 25.934499903205875, 43.855283437802228 ], [ 25.945928613050942, 43.869134544996641 ], [ 25.95317056232097, 43.870580613541151 ], [ 25.961383473633774, 43.873937691737929 ], [ 25.984224220061606, 43.883699908208257 ], [ 25.993274070989482, 43.890195993970508 ], [ 25.994284962233554, 43.895991002964813 ], [ 26.009890836338773, 43.900034150638824 ], [ 26.047590484490854, 43.912443508758919 ], [ 26.064470212643275, 43.924273668371697 ], [ 26.066923120647346, 43.928873691835491 ], [ 26.071147887921583, 43.940821730813518 ], [ 26.081367610842598, 43.954191827304236 ], [ 26.121935820631727, 43.990028211478553 ], [ 26.139267660415804, 43.995666376635867 ], [ 26.153168570322631, 43.998065508803982 ], [ 26.17944746662744, 43.998954759691223 ], [ 26.191454387805027, 44.001106874481657 ], [ 26.210884062094259, 44.015450059063653 ], [ 26.222890978760592, 44.017826173238269 ], [ 26.230811950986297, 44.017884248827109 ], [ 26.240043974520457, 44.014973337578979 ], [ 26.248286955359006, 44.014573416313674 ], [ 26.258698861314219, 44.017849515706089 ], [ 26.279120556602056, 44.030815709791355 ], [ 26.299617344090954, 44.038739905013372 ], [ 26.333425074368261, 44.047429228180668 ], [ 26.356872979562567, 44.048486452516471 ], [ 26.376438775310962, 44.05616163886188 ], [ 26.391340725280308, 44.056249781474676 ], [ 26.425661737923022, 44.049571109789945 ], [ 26.43643068531469, 44.050543212534528 ], [ 26.447487580631758, 44.054266318461657 ], [ 26.455086539446913, 44.055220390821127 ], [ 26.461130552533859, 44.053420449212027 ], [ 26.472549523572578, 44.053019557754581 ], [ 26.500070319821919, 44.059336820779031 ], [ 26.524723079009757, 44.068157057313464 ], [ 26.543406967073771, 44.070987235552948 ], [ 26.555144933507744, 44.070812348084083 ], [ 26.581824930903014, 44.066341603386078 ], [ 26.597684888098126, 44.065948754847604 ], [ 26.620810759198122, 44.06901197617637 ], [ 26.654065538679617, 44.075314294206038 ], [ 26.695525153380451, 44.089192692206304 ], [ 26.718667029478926, 44.092007913946667 ], [ 26.747871987520004, 44.089338193169361 ], [ 26.767204858869661, 44.093053378659619 ], [ 26.781774728411087, 44.097665517815138 ], [ 26.793802576049345, 44.103876633458128 ], [ 26.818193327591739, 44.113317868211141 ], [ 26.835615129397627, 44.121138035232541 ], [ 26.847644943398254, 44.129176150782307 ], [ 26.870494825735058, 44.131732370086588 ], [ 26.90314946638151, 44.145747684816968 ], [ 26.959357285824915, 44.146263223280897 ], [ 26.974910166752302, 44.1501653727654 ], [ 26.986024111249726, 44.151317479896221 ], [ 26.995873131682412, 44.148575574351746 ], [ 27.005715064122732, 44.150638668364238 ], [ 27.026983851899402, 44.158661873512322 ], [ 27.050169722307761, 44.161870095755404 ], [ 27.066368664649115, 44.162324251841994 ], [ 27.080345678277453, 44.15934438530811 ], [ 27.093050758333252, 44.152928506693648 ], [ 27.100036759306331, 44.151776573344151 ], [ 27.118139671503542, 44.153600747489541 ], [ 27.150217588907648, 44.152891055168418 ], [ 27.157201606213388, 44.150820121669817 ], [ 27.186073847564632, 44.133154397251502 ], [ 27.208923852626224, 44.129232615979916 ], [ 27.236486753133423, 44.130201880167597 ], [ 27.244484723089307, 44.130548957248045 ], [ 27.257192626605246, 44.133735079028938 ], [ 27.285492306840148, 44.146502352477349 ], [ 27.3169690251529, 44.156737656123546 ], [ 27.319836970259299, 44.159251684174478 ], [ 27.33076734014303, 44.191516793839448 ], [ 27.337460236269919, 44.196078859347537 ], [ 27.346045203495027, 44.196513941419433 ], [ 27.35651524592916, 44.192593041452483 ], [ 27.369855237092466, 44.190952170022392 ], [ 27.383523189206905, 44.191372300876751 ], [ 27.395027923286165, 44.203934413873306 ], [ 27.402048809126686, 44.208950482118489 ], [ 27.417322710302042, 44.211880629645719 ], [ 27.432895684195472, 44.210911778584553 ], [ 27.444664629083622, 44.212017891993149 ], [ 27.474643268652937, 44.226792183383047 ], [ 27.512234984102275, 44.236264545945303 ], [ 27.537339965841738, 44.233411787520843 ], [ 27.545292935120862, 44.233834863761047 ], [ 27.561568758233637, 44.240866021892778 ], [ 27.595475245927197, 44.263151352577808 ], [ 27.613635145294904, 44.265810527651368 ], [ 27.626002135658108, 44.264448646984384 ], [ 27.638491005287111, 44.269575768348957 ], [ 27.649379834440122, 44.27707987419322 ], [ 27.66471867317852, 44.28340802391287 ], [ 27.66744432319409, 44.301715054234855 ], [ 27.672300160998311, 44.309703102231097 ], [ 27.678382080507017, 44.31310616179195 ], [ 27.718016716410855, 44.326621547019279 ], [ 27.739468470381645, 44.336570755876785 ], [ 27.755415393550031, 44.338306909660787 ], [ 27.772227468092684, 44.331787070266259 ], [ 27.78689041187361, 44.332611212554795 ], [ 27.800932337054377, 44.334580347624531 ], [ 27.820174088357721, 44.344986536641294 ], [ 27.827566974320174, 44.349976608625241 ], [ 27.833080814473274, 44.357723663825794 ], [ 27.838016569088435, 44.370056714776155 ], [ 27.852518303843997, 44.382095857600014 ], [ 27.864275867957645, 44.403538976221853 ], [ 27.871695728429678, 44.409898049577457 ], [ 27.891587517541772, 44.418225244264796 ], [ 27.913378327023569, 44.425164456081461 ], [ 27.922074196962548, 44.430825541715436 ], [ 27.925005107457224, 44.435151571847655 ], [ 27.933782450180249, 44.468751665275747 ], [ 27.935890194810156, 44.482015689571099 ], [ 27.93467311489885, 44.486375679207491 ], [ 27.930564069307213, 44.489385639612742 ], [ 27.904378132712164, 44.489812386448932 ], [ 27.897073095342456, 44.492845316368751 ], [ 27.887974890276183, 44.505048232200473 ], [ 27.903700313227983, 44.533330391743391 ], [ 27.912459116564463, 44.542424478667698 ], [ 27.910946002888373, 44.548619465760908 ], [ 27.901542767270282, 44.562429378766517 ], [ 27.901637636881393, 44.569299381137313 ], [ 27.904285508518143, 44.575692408600865 ], [ 27.919078361585804, 44.581304553486106 ], [ 27.922311310315457, 44.583570585816261 ], [ 27.924953189822084, 44.58950561284928 ], [ 27.922176062541297, 44.596624587713848 ], [ 27.90679069729147, 44.618035445060798 ], [ 27.908129615778211, 44.62214845859414 ], [ 27.919178365032494, 44.63374456950045 ], [ 27.920536257531221, 44.639230584102492 ], [ 27.918671183040995, 44.643365567288924 ], [ 27.89933995470216, 44.658166383340912 ], [ 27.894946839131428, 44.664842342589004 ], [ 27.893186617941943, 44.676759329178537 ], [ 27.887845482675452, 44.684587279270211 ], [ 27.863685266283827, 44.699414049058618 ], [ 27.85925819044613, 44.704026007439566 ], [ 27.860871169718049, 44.704930023349526 ], [ 27.859035047799669, 44.711583007269311 ], [ 27.85841255405785, 44.737462008234687 ], [ 27.861715406009957, 44.744767041967606 ], [ 27.870113300044068, 44.749059125308939 ], [ 27.872018861130936, 44.771714149852542 ], [ 27.869689787763271, 44.77591412811698 ], [ 27.864720757592206, 44.778180081058409 ], [ 27.842908797859753, 44.779247868939535 ], [ 27.832345782046296, 44.781609767119932 ], [ 27.826936725282078, 44.785309715400722 ], [ 27.819373526719332, 44.796810645191592 ], [ 27.817843411377915, 44.803002631666992 ], [ 27.823468142148538, 44.816246690132836 ], [ 27.825584845557376, 44.831345715242705 ], [ 27.833443600542747, 44.842968794711012 ], [ 27.836882252950854, 44.860577833013387 ], [ 27.83673997965947, 44.874771835721624 ], [ 27.837472845924424, 44.881638844774159 ], [ 27.841069743666438, 44.886421880424265 ], [ 27.869147518741251, 44.894010156412001 ], [ 27.8779273595019, 44.901044244056273 ], [ 27.881873224658616, 44.907430284223821 ], [ 27.885162655023574, 44.936483324334219 ], [ 27.889744536782057, 44.941945371013631 ], [ 27.892265148966533, 44.961618401382637 ], [ 27.900740981148353, 44.969114486162802 ], [ 27.905528582713199, 44.988996538955959 ], [ 27.902415440122887, 44.996804510824362 ], [ 27.897364395510753, 44.99981846261138 ], [ 27.882600265868206, 45.008626321172805 ], [ 27.879758188562324, 45.012998294678887 ], [ 27.896131776341885, 45.031881460115784 ], [ 27.898458672155471, 45.036901484174166 ], [ 27.901111108976355, 45.065503518676564 ], [ 27.900101719606742, 45.085656515007109 ], [ 27.906062489504254, 45.09660457664247 ], [ 27.91163135899501, 45.102513632725262 ], [ 27.933434061359726, 45.114713849750714 ], [ 27.937380951895978, 45.119722889823898 ], [ 27.943430618972656, 45.135930954418626 ], [ 27.949627522922633, 45.140001016156198 ], [ 27.952995330225971, 45.149363052377154 ], [ 27.941666957109284, 45.170056947955146 ], [ 27.93922377585551, 45.179689926428871 ], [ 27.944317430863912, 45.196592982001725 ], [ 27.945385866700796, 45.225203001646669 ], [ 27.948722718674691, 45.232275036166079 ], [ 27.955965532731245, 45.240687109799779 ], [ 27.965124379433522, 45.247256201873007 ], [ 27.971214016080836, 45.264834267435923 ], [ 27.995299373681355, 45.294172513635893 ], [ 27.996337284895777, 45.298514525234822 ], [ 27.993605062151424, 45.310213502252864 ], [ 28.004545717097091, 45.326147614838419 ], [ 28.02465583856069, 45.367872826401182 ], [ 28.02707365083501, 45.377009853252218 ], [ 28.02384224704339, 45.39786782866242 ], [ 28.024895144191007, 45.402895840405115 ], [ 28.026658967596767, 45.411581861452454 ], [ 28.031938845089147, 45.417029915109453 ], [ 28.056228451437466, 45.433536159802358 ], [ 28.077497197002568, 45.443420372023638 ], [ 28.086954122767448, 45.445853466010163 ], [ 28.102552064542405, 45.446632620123616 ], [ 28.121722998402426, 45.447372808785637 ], [ 28.131751013244905, 45.445220906865792 ], [ 28.137833734352842, 45.458438971166018 ], [ 28.136929612524902, 45.464721964838461 ], [ 28.170576360804738, 45.472779299410291 ], [ 28.185236278693498, 45.474926444188625 ], [ 28.204934347848305, 45.468785635346308 ], [ 28.212813242403357, 45.473053715359377 ], [ 28.231974193872695, 45.472863904044296 ], [ 28.251946308414805, 45.464418096743849 ], [ 28.258103306968408, 45.463666156941656 ], [ 28.272938371616682, 45.458474301558589 ], [ 28.27777302313773, 45.455760312527268 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5572.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.418702002888253, 44.713619014770153 ], [ 22.434478801303335, 44.722128763726623 ], [ 22.444808690573094, 44.725523859956766 ], [ 22.453490652939401, 44.725408942940042 ], [ 22.462031659424706, 44.722994025762901 ], [ 22.471068628481337, 44.722438112212906 ], [ 22.478452671213972, 44.718371185371311 ], [ 22.48745878653078, 44.710013276468104 ], [ 22.522084925054187, 44.694174616130844 ], [ 22.598576655384946, 44.636608381800528 ], [ 22.605522722048995, 44.631370450487275 ], [ 22.613491752910328, 44.627777528809773 ], [ 22.628086728938655, 44.625587669294738 ], [ 22.674139492475799, 44.627114107576418 ], [ 22.690100563606244, 44.619462263603737 ], [ 22.704477647318928, 44.611520406130531 ], [ 22.717938667869877, 44.607209536606177 ], [ 22.758901037442619, 44.577553944563419 ], [ 22.765626169445831, 44.56886501408902 ], [ 22.771674377736719, 44.556246079398917 ], [ 22.772800496431547, 44.549639093765308 ], [ 22.770379623321496, 44.543360074389433 ], [ 22.761254786144317, 44.536828991655824 ], [ 22.718456322728652, 44.518258595168291 ], [ 22.700922417432668, 44.517369428548555 ], [ 22.675837420270398, 44.523297186359571 ], [ 22.650955156313941, 44.543449937314342 ], [ 22.638643097461049, 44.549629816698527 ], [ 22.62821810072456, 44.551979715750456 ], [ 22.608389195604179, 44.551677527039075 ], [ 22.596041285844418, 44.549823410985304 ], [ 22.581368443692398, 44.544899274969751 ], [ 22.573807585126932, 44.539104206130574 ], [ 22.56922773824731, 44.532047167154332 ], [ 22.561774368624537, 44.499878116655886 ], [ 22.555742639020721, 44.486801067484969 ], [ 22.550939735850317, 44.48271502470142 ], [ 22.532123988456949, 44.473719851755909 ], [ 22.522328060406004, 44.472190759294151 ], [ 22.50760912530756, 44.472296619798804 ], [ 22.487696119923758, 44.477473426758863 ], [ 22.461428305617527, 44.473906179803826 ], [ 22.45836735199245, 44.472178151966531 ], [ 22.455857450712763, 44.467490131249789 ], [ 22.461714674504123, 44.453963196083002 ], [ 22.467104789404182, 44.446379251533955 ], [ 22.488587935116591, 44.43324546468196 ], [ 22.518894088820034, 44.417468761898675 ], [ 22.551971439613204, 44.3903310934339 ], [ 22.560685576577857, 44.380809182712106 ], [ 22.563403680849373, 44.374492212314138 ], [ 22.562391825550236, 44.366886207286711 ], [ 22.555609144312985, 44.351253153282215 ], [ 22.559863303553094, 44.341560199538378 ], [ 22.589726522356628, 44.322311495138649 ], [ 22.606755707833575, 44.308063665553128 ], [ 22.628878715661248, 44.30226587887806 ], [ 22.653496620578125, 44.301377112684968 ], [ 22.6667205984105, 44.299359239668746 ], [ 22.675612628830226, 44.29557132615971 ], [ 22.68410571919987, 44.288556410837082 ], [ 22.689768833745674, 44.280976469883385 ], [ 22.696292077891048, 44.266087540315354 ], [ 22.694601296158741, 44.2545555322246 ], [ 22.685188609258443, 44.239751452281098 ], [ 22.682697869998343, 44.226125437273382 ], [ 22.684762976872182, 44.219781460588145 ], [ 22.690852038630371, 44.214967521311941 ], [ 22.710925031124855, 44.210454714334958 ], [ 22.730022945758879, 44.210488894564257 ], [ 22.768537852453818, 44.206201261838601 ], [ 22.775386864735918, 44.203932327996277 ], [ 22.778408970295533, 44.197397360735941 ], [ 22.777020107922301, 44.190233351869594 ], [ 22.77924017509109, 44.185961375930169 ], [ 22.813679364594122, 44.167288713696017 ], [ 22.825732382309443, 44.163378829330149 ], [ 22.839579446516762, 44.156545964478958 ], [ 22.855465452966509, 44.152316117835042 ], [ 22.904078721727068, 44.125880593316928 ], [ 22.939820851096307, 44.110202940776475 ], [ 22.951058831722964, 44.108539047822148 ], [ 22.972897714108136, 44.109779253763236 ], [ 22.992154680735958, 44.107025437839667 ], [ 23.010413556338129, 44.109505608527947 ], [ 23.025326485879958, 44.109798749523151 ], [ 23.034134508950672, 44.10644183495755 ], [ 23.041670621916516, 44.098450911028472 ], [ 23.049576832946098, 44.084968993448236 ], [ 23.052369972817889, 44.076585025273808 ], [ 23.051288282191241, 44.059808024698945 ], [ 23.048093461039706, 44.050754999403367 ], [ 23.035190799395071, 44.035168886611245 ], [ 23.023484028794936, 44.025356782268744 ], [ 22.985530559283571, 44.005211435626784 ], [ 22.950059727356983, 44.004402101165738 ], [ 22.934050841464401, 44.001990951998707 ], [ 22.916322009764649, 43.996993787678441 ], [ 22.910837090379108, 43.993811738096454 ], [ 22.896425362394382, 43.982283609308844 ], [ 22.884306721687441, 43.965331505017353 ], [ 22.881368956815784, 43.953070484945052 ], [ 22.864884510950162, 43.926326346430152 ], [ 22.859719830474344, 43.909854308500776 ], [ 22.854116041396868, 43.899558262032329 ], [ 22.853254226870177, 43.889434260212113 ], [ 22.857223413228102, 43.878115305177666 ], [ 22.868574673118196, 43.860873422172425 ], [ 22.880081813671119, 43.850287537581238 ], [ 22.889255853516115, 43.845809627075433 ], [ 22.911051831217243, 43.841784833833195 ], [ 22.926876764006654, 43.841670983377945 ], [ 22.944454733586447, 43.839096150577454 ], [ 22.996891818103855, 43.821712654329772 ], [ 23.011667814621553, 43.818336795398771 ], [ 23.01997980269514, 43.817028874189148 ], [ 23.033195728618868, 43.817951998232857 ], [ 23.053869671617544, 43.816159193606509 ], [ 23.078851565279741, 43.816113428842648 ], [ 23.119451340514093, 43.818898808833573 ], [ 23.147512112509506, 43.82490706994998 ], [ 23.193429673485785, 43.838392494283184 ], [ 23.202824520585818, 43.844671578872003 ], [ 23.216790386180509, 43.848810708592417 ], [ 23.243457211785309, 43.8522289571223 ], [ 23.288240805502543, 43.864261372958687 ], [ 23.289615740434247, 43.867515383523362 ], [ 23.332904631094944, 43.863433794163605 ], [ 23.35001156563829, 43.863071956179652 ], [ 23.364807572496861, 43.859196097230047 ], [ 23.373388547319987, 43.858555178364746 ], [ 23.389606411892924, 43.862289329509473 ], [ 23.398821384652432, 43.861668416432508 ], [ 23.434850131017768, 43.867397753208401 ], [ 23.452165068879467, 43.866814916616164 ], [ 23.465072052845979, 43.864686040061919 ], [ 23.487960085170158, 43.857610259411288 ], [ 23.530744216864036, 43.840367672226407 ], [ 23.563171422803411, 43.821424987670596 ], [ 23.577600425326192, 43.817969125735871 ], [ 23.610349544407864, 43.803831441627402 ], [ 23.622404508804866, 43.803049555590505 ], [ 23.666097157456861, 43.812605963045989 ], [ 23.688910882249413, 43.822681172771418 ], [ 23.718272749872732, 43.823314449274129 ], [ 23.764517693752094, 43.81594488965078 ], [ 23.787049631265841, 43.814301102504707 ], [ 23.817437834211649, 43.796143398369907 ], [ 23.845906939053869, 43.783882672945644 ], [ 23.85389093595181, 43.782273748902355 ], [ 23.863811043882311, 43.774071846205274 ], [ 23.870617073596964, 43.770821911786314 ], [ 23.916415998209533, 43.764757347019746 ], [ 23.931175017814354, 43.760351487569693 ], [ 23.942547975257806, 43.760202595507117 ], [ 23.944354937911253, 43.761857611334676 ], [ 23.953873916127534, 43.760969701986951 ], [ 23.96764692736949, 43.757219832911467 ], [ 23.981471848966315, 43.758508963459853 ], [ 23.988164844253149, 43.757315026630572 ], [ 24.04617502845813, 43.734106584031196 ], [ 24.076519037330499, 43.726881873398867 ], [ 24.124747942951895, 43.721485330675215 ], [ 24.138907988301114, 43.715892466858186 ], [ 24.14162004617862, 43.712062493976504 ], [ 24.155662165094938, 43.702339630381189 ], [ 24.160003236191027, 43.697406673039787 ], [ 24.167392256266812, 43.694614744052515 ], [ 24.186371202332467, 43.693489923823407 ], [ 24.219940006392413, 43.69707923899734 ], [ 24.238022857335778, 43.701424407920271 ], [ 24.299597524051844, 43.706597986095716 ], [ 24.3105284395665, 43.708925088594142 ], [ 24.326260363238095, 43.709760237102643 ], [ 24.345313339185036, 43.70700641715311 ], [ 24.353461287823571, 43.708116494213726 ], [ 24.369858097247842, 43.71514764600154 ], [ 24.378095955479484, 43.721300721756286 ], [ 24.383710783250738, 43.729681770969734 ], [ 24.389797670335287, 43.734636826946755 ], [ 24.404304484621075, 43.741846961025587 ], [ 24.419231339152372, 43.74677510017694 ], [ 24.449031149415308, 43.750899380255333 ], [ 24.457098062525361, 43.754061455163388 ], [ 24.470274849742964, 43.76306857611295 ], [ 24.495877633932007, 43.76960281603872 ], [ 24.514161419510199, 43.777571985767899 ], [ 24.527321327198802, 43.779926109360531 ], [ 24.539940273770743, 43.780204228683971 ], [ 24.553669286208745, 43.776611359460894 ], [ 24.565661371311133, 43.769313476086552 ], [ 24.574522347490689, 43.768818559557246 ], [ 24.617789326360146, 43.76081497145266 ], [ 24.6277913837109, 43.755528067722615 ], [ 24.639952410975784, 43.751431184704089 ], [ 24.66137759370374, 43.736760391763674 ], [ 24.678780691214346, 43.727730559585858 ], [ 24.693472716149632, 43.723225700020109 ], [ 24.755763550200548, 43.719457289807288 ], [ 24.771317391829143, 43.725038434400886 ], [ 24.782139396613442, 43.722505537529528 ], [ 24.799448312986428, 43.723535701004145 ], [ 24.804703242447292, 43.726389750276937 ], [ 24.810798970085461, 43.740255803686786 ], [ 24.798598065350927, 43.737493689154803 ], [ 24.795035034785979, 43.739942654763013 ], [ 24.798343947342353, 43.744135684333507 ], [ 24.802503958632833, 43.742613724195628 ], [ 24.814458897331725, 43.743536836842551 ], [ 24.817428947498353, 43.74015686644367 ], [ 24.811270190786395, 43.727892811277918 ], [ 24.812960238031856, 43.724947828259204 ], [ 24.831172130100729, 43.7271370005245 ], [ 24.856953144733186, 43.720992246091946 ], [ 24.863350164069271, 43.718596307300899 ], [ 24.869996149671042, 43.718035369716496 ], [ 24.896395005797647, 43.720599618967093 ], [ 24.922224737122772, 43.730246860643085 ], [ 24.940111624116678, 43.732872028915196 ], [ 24.945032542528647, 43.736400074604255 ], [ 24.952823465096998, 43.739063147524497 ], [ 24.96352041012339, 43.739948248147613 ], [ 24.972581332891572, 43.742405333594959 ], [ 24.987077270199798, 43.742897470442159 ], [ 24.998918284774756, 43.739651583138652 ], [ 25.007465295940865, 43.737308664727372 ], [ 25.02674624397385, 43.73627884775388 ], [ 25.028787314740235, 43.73196086838788 ], [ 25.026163436401863, 43.725727845425247 ], [ 25.030450518017574, 43.72030688667688 ], [ 25.052555450672319, 43.719552096574766 ], [ 25.076341435315396, 43.715611322542607 ], [ 25.101242678996712, 43.697026563205917 ], [ 25.108234683860871, 43.695313630044559 ], [ 25.118280623968918, 43.696629724087934 ], [ 25.129510518221856, 43.700253829567089 ], [ 25.144382319687022, 43.708295967903844 ], [ 25.15625521565341, 43.711698079513589 ], [ 25.173280152788454, 43.711752241096796 ], [ 25.188167135815693, 43.709707382301197 ], [ 25.225334160624747, 43.70091473608214 ], [ 25.263975125950363, 43.695113103112391 ], [ 25.29472749713096, 43.668330401002592 ], [ 25.327764543171231, 43.659213714983537 ], [ 25.343288734453921, 43.645472865396329 ], [ 25.36536286901509, 43.633659076565451 ], [ 25.37633537367967, 43.632797450672747 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunărea", "discharge": 5550.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.518999537775677, 44.78203359240122 ], [ 21.550299900808138, 44.780042301906576 ], [ 21.558329923498828, 44.776754380164334 ], [ 21.571633881019601, 44.775548507962711 ], [ 21.578936890017161, 44.773137579344386 ], [ 21.601356019158754, 44.760427802593448 ], [ 21.613458259194378, 44.744477929825386 ], [ 21.624889628116822, 44.721838056250618 ], [ 21.635854581973721, 44.721434160431926 ], [ 21.647838607224269, 44.716944278165215 ], [ 21.654550762280856, 44.706934349170233 ], [ 21.687083077781793, 44.681601678094246 ], [ 21.702456191211024, 44.671530831212387 ], [ 21.731955238698536, 44.661418119033172 ], [ 21.744866190582258, 44.660636242566753 ], [ 21.758787081585464, 44.662879372851748 ], [ 21.772718908811914, 44.668567501110431 ], [ 21.790241796803123, 44.670055666659024 ], [ 21.824613770282113, 44.662666999149764 ], [ 21.858943603492449, 44.662838325102101 ], [ 21.868318571786858, 44.662114414152143 ], [ 21.883611610288451, 44.656144564161622 ], [ 21.897279585901551, 44.654000695498759 ], [ 21.929788451202551, 44.652925005467253 ], [ 21.946233458149187, 44.648374165196216 ], [ 21.963273520928922, 44.640638332193966 ], [ 21.98856338995936, 44.641290572699411 ], [ 22.000840488955451, 44.632882695335098 ], [ 22.005826640968678, 44.62346474970694 ], [ 22.012386778943743, 44.614347818325541 ], [ 22.027585942540753, 44.601701971466476 ], [ 22.03216463406083, 44.563361042907502 ], [ 22.058976903854361, 44.542040312407934 ], [ 22.069146048306528, 44.531699416424331 ], [ 22.084415513788027, 44.502764581838591 ], [ 22.114669620053473, 44.489382878427243 ], [ 22.137960636525523, 44.482582103741564 ], [ 22.149232600571178, 44.481685211558471 ], [ 22.160352531503744, 44.482616316132493 ], [ 22.169689429750047, 44.485763402398639 ], [ 22.178382259221383, 44.492786480551985 ], [ 22.185594050865465, 44.502265541968285 ], [ 22.207785244079449, 44.540195726731049 ], [ 22.221771806395875, 44.560215845280915 ], [ 22.23384251083143, 44.573108952013762 ], [ 22.263849472167944, 44.621380204265535 ], [ 22.264773240819267, 44.633576205151364 ], [ 22.267105176886304, 44.636422225240686 ], [ 22.271862142608573, 44.637078269438071 ], [ 22.278954044460509, 44.64058433508356 ], [ 22.288961865773771, 44.64764842509237 ], [ 22.295303746222594, 44.652497482962801 ], [ 22.298488578853515, 44.660656507964319 ], [ 22.311029305670917, 44.672181619328107 ], [ 22.318372188880037, 44.676610686128377 ], [ 22.324302122557224, 44.678685741004522 ], [ 22.358851936297576, 44.680093069567242 ], [ 22.363989913980216, 44.68007411898185 ], [ 22.376886793001347, 44.683347239592656 ], [ 22.387041644568349, 44.68880633254598 ], [ 22.408302186274334, 44.708009522511368 ], [ 22.418702002888253, 44.713619014770153 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 5310.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.633121914647841, 44.844575895679178 ], [ 20.637336130032129, 44.842468787987031 ], [ 20.644339610275065, 44.835173496067306 ], [ 20.647257727042952, 44.829774980046707 ], [ 20.649905626958269, 44.823032717198885 ], [ 20.638377918033193, 44.810684618723357 ], [ 20.633571110915437, 44.801689581884318 ], [ 20.632547598246383, 44.775909595903443 ], [ 20.636112746748552, 44.766922638031112 ], [ 20.643835870797176, 44.758163719979542 ], [ 20.654504933046514, 44.75186582638014 ], [ 20.686532961062966, 44.741460138858017 ], [ 20.685454001500453, 44.739564130815367 ], [ 20.706870528054587, 44.705376364730313 ], [ 20.766129849845488, 44.671643956493099 ], [ 20.772690783984579, 44.673376017615468 ], [ 20.79510276624401, 44.668165233543526 ], [ 20.811270701378767, 44.667204388037348 ], [ 20.876986283736802, 44.6716570050733 ], [ 20.885491209891235, 44.673259084240328 ], [ 20.895897065812441, 44.678176178205412 ], [ 20.922170577743429, 44.697253410129797 ], [ 20.931673447398914, 44.70166349633206 ], [ 20.958568177053436, 44.70882374463735 ], [ 20.983609756219543, 44.724605968021635 ], [ 20.998392563253585, 44.730892102402194 ], [ 21.018153432260728, 44.732613288116575 ], [ 21.053568376558513, 44.725964629830933 ], [ 21.06538030178309, 44.726803741295399 ], [ 21.080109157697393, 44.73054987727496 ], [ 21.110101669265521, 44.748628146858252 ], [ 21.119335606228297, 44.749558233448013 ], [ 21.126468579816482, 44.749005301651223 ], [ 21.131179594708147, 44.74695334813169 ], [ 21.141191552042027, 44.74654544304704 ], [ 21.146539502626489, 44.747739492739676 ], [ 21.155654358511789, 44.753022575122699 ], [ 21.179571782385167, 44.777425781181613 ], [ 21.186934678261455, 44.781014847877977 ], [ 21.220097335912165, 44.790495155129747 ], [ 21.251096957713798, 44.802382439425244 ], [ 21.262380784007821, 44.808683541756281 ], [ 21.310968169889581, 44.828547987213767 ], [ 21.324979070020124, 44.830161119312955 ], [ 21.336538005585631, 44.830505228677751 ], [ 21.345244903146867, 44.833686309356345 ], [ 21.358219857264434, 44.832717433034716 ], [ 21.374041910699813, 44.825690589602921 ], [ 21.383148882548255, 44.824760676366083 ], [ 21.387184958692607, 44.819678718973741 ], [ 21.393981366959295, 44.796142803000429 ], [ 21.399242485645903, 44.788367858715233 ], [ 21.407670518504556, 44.784419941855305 ], [ 21.414914514588052, 44.782707012155349 ], [ 21.434539417503721, 44.782742198893622 ], [ 21.470021198706586, 44.785149533929776 ], [ 21.518999537775677, 44.78203359240122 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2353.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.860234235034756, 45.853070604511039 ], [ 18.860374852690097, 45.850617627244858 ], [ 18.862823864609798, 45.849305651683665 ], [ 18.863452194554142, 45.832253676734247 ], [ 18.854543535532613, 45.817452608306205 ], [ 18.852471755274443, 45.806855600851669 ], [ 18.852185982660203, 45.79531661113694 ], [ 18.866219096957536, 45.785180756397068 ], [ 18.878424108700685, 45.780911878042204 ], [ 18.887114222592736, 45.772511970491465 ], [ 18.901106575349502, 45.750189129232972 ], [ 18.903929668952241, 45.744482162836498 ], [ 18.904628172378253, 45.718458198294073 ], [ 18.904035258783999, 45.714128197515421 ], [ 18.911082473372296, 45.701010280182018 ], [ 18.924201579245853, 45.69161441593166 ], [ 18.931453579311835, 45.689417487488015 ], [ 18.931930585403151, 45.688963492830894 ], [ 18.943740664781433, 45.681322613863969 ], [ 18.964004689245517, 45.673963815352877 ], [ 18.967570810985503, 45.666593857534004 ], [ 18.95981207441789, 45.655397796332373 ], [ 18.959761158669693, 45.651010801075564 ], [ 18.957169276971264, 45.645693782344487 ], [ 18.948942470149795, 45.638208712197205 ], [ 18.948923519775711, 45.635679714317689 ], [ 18.953753502242446, 45.635118761011483 ], [ 18.954966553797391, 45.632048776446794 ], [ 18.953503676143175, 45.626173768914633 ], [ 18.949991777495569, 45.622042740174955 ], [ 18.943337877473169, 45.618818680709921 ], [ 18.936022937507719, 45.617937612370291 ], [ 18.92766296618219, 45.618963531203086 ], [ 18.923755033648025, 45.616701496713063 ], [ 18.919549189799771, 45.609861464013193 ], [ 18.912927287046699, 45.606859404842666 ], [ 18.918695500545105, 45.594053474064211 ], [ 18.917873574859101, 45.590433470282015 ], [ 18.907933743738127, 45.584669382240264 ], [ 18.903527976562334, 45.573934353095254 ], [ 18.911378883949777, 45.576391424703822 ], [ 18.91669488689034, 45.574648476842199 ], [ 18.92148196636937, 45.569036529446507 ], [ 18.932071932075448, 45.567625631335446 ], [ 18.93334597563182, 45.565012646295031 ], [ 18.930935053009193, 45.561727627709416 ], [ 18.92127604276277, 45.565142531587291 ], [ 18.920580099261173, 45.562429527924884 ], [ 18.929508169869223, 45.556074620682871 ], [ 18.934336289659104, 45.548387675478565 ], [ 18.94221305507811, 45.558199738829742 ], [ 18.94366716387216, 45.552122759468617 ], [ 18.938179370789229, 45.543070717853112 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Danube", "discharge": 2336.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.697207452032441, 46.000670458959007 ], [ 18.723941043987367, 45.983780170882568 ], [ 18.733691148454895, 45.975555274140454 ], [ 18.744723201565314, 45.969543386520016 ], [ 18.754523201753052, 45.966598483157043 ], [ 18.773085310216, 45.955490673310848 ], [ 18.775409485116327, 45.945915706614031 ], [ 18.780398637468277, 45.936622765220804 ], [ 18.795733707727514, 45.928478921235673 ], [ 18.803075790604094, 45.922016998617991 ], [ 18.816726827048409, 45.916051136023249 ], [ 18.821736881672425, 45.911813188824439 ], [ 18.829570984837297, 45.904164271745771 ], [ 18.833183153279165, 45.894498317173422 ], [ 18.834162528029434, 45.875127348673722 ], [ 18.839477629620834, 45.868337406845285 ], [ 18.852758577790805, 45.86699053579067 ], [ 18.858862607642099, 45.863591597910442 ], [ 18.860083755356783, 45.855695617907834 ], [ 18.860234235034756, 45.853070604511039 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2333.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.969715566561881, 47.783112939604919 ], [ 18.973038213608802, 47.788238720798439 ], [ 18.972713109912412, 47.793079713484424 ], [ 18.977254909488902, 47.801037751208703 ], [ 18.992040536481685, 47.814060884298755 ], [ 18.998866451995877, 47.816063950196295 ], [ 19.01591421392828, 47.822266112693754 ], [ 19.027205104266521, 47.824155222281362 ], [ 19.051017012128543, 47.821816459741697 ], [ 19.086290989574529, 47.813111816594031 ], [ 19.10083929975109, 47.794785976505864 ], [ 19.117032389316318, 47.786203144537261 ], [ 19.128684797022096, 47.764250280026808 ], [ 19.131859052135489, 47.751608323045197 ], [ 19.13117046555481, 47.732748332831846 ], [ 19.131912953624017, 47.710024361438663 ], [ 19.125575396150225, 47.691313316228097 ], [ 19.115593506148397, 47.642706263094844 ], [ 19.103952067919188, 47.619917168831869 ], [ 19.079280833304203, 47.591222953196002 ], [ 19.072539080720436, 47.581597895383723 ], [ 19.068133611227083, 47.558129874940441 ], [ 19.05701803745821, 47.541333781234947 ], [ 19.0429227429013, 47.51240266994072 ], [ 19.043002903886673, 47.504834678136547 ], [ 19.04596502415124, 47.498372713058082 ], [ 19.061291250389178, 47.483544878205599 ], [ 19.070656480324168, 47.470158982546764 ], [ 19.070771596749474, 47.464658989309747 ], [ 19.065319823469284, 47.455575944462488 ], [ 19.054622548047849, 47.441708346065859 ], [ 19.049953561219226, 47.423032398751367 ], [ 19.043825516006656, 47.40494007479046 ], [ 19.038281094147667, 47.394434854426052 ], [ 19.02835949713684, 47.388014997536693 ], [ 18.995092965982895, 47.381595140647335 ], [ 18.972915278546932, 47.379260647233025 ], [ 18.96416092824326, 47.373424413697244 ], [ 18.957741071353905, 47.364086440039998 ], [ 18.951904837818123, 47.355623901413125 ], [ 18.953655707878855, 47.344243246018351 ], [ 18.956282012969957, 47.341471035088858 ], [ 18.956865636323535, 47.337823389128992 ], [ 18.954968860424408, 47.333008496461979 ], [ 18.952196649494912, 47.330819908886056 ], [ 18.942420958322479, 47.317688383430557 ], [ 18.921045752997689, 47.290185132893185 ], [ 18.920170317967322, 47.278804477498412 ], [ 18.924255681442368, 47.272676432285841 ], [ 18.921921188028055, 47.256918601739237 ], [ 18.91462589610833, 47.244662511314097 ], [ 18.913385696481978, 47.229269445363478 ], [ 18.885371775510233, 47.197461972593473 ], [ 18.876909236883353, 47.161277324671637 ], [ 18.882161847065557, 47.127427170164118 ], [ 18.900837794380053, 47.077527373433199 ], [ 18.909592144683725, 47.07110751654384 ], [ 18.941691429130511, 47.055349685997236 ], [ 18.964744551596844, 47.039008232097054 ], [ 18.969413538425467, 47.031712940177329 ], [ 18.976685489425815, 47.022557500583815 ], [ 18.978909790484366, 47.007485537158885 ], [ 18.960859188366882, 46.993531375178797 ], [ 18.959520294503257, 46.988797367184532 ], [ 18.961908570731094, 46.974862404081399 ], [ 18.967537792276641, 46.962544471653544 ], [ 18.9717948303512, 46.959504516370245 ], [ 18.975997073914268, 46.946595570729443 ], [ 18.97583168893857, 46.916982598874675 ], [ 18.97341486186864, 46.909337582631707 ], [ 18.960024188940569, 46.897370464923782 ], [ 18.953325476945935, 46.885415411667225 ], [ 18.94631971323091, 46.876004353585422 ], [ 18.943043870993947, 46.869332328467976 ], [ 18.939360991570446, 46.864526297692649 ], [ 18.933900286977828, 46.851800257157016 ], [ 18.940589540804215, 46.837575336871524 ], [ 18.956168859197081, 46.817704508873561 ], [ 18.959819889393057, 46.815164546376508 ], [ 18.962689989985623, 46.809461580362601 ], [ 18.96410926298044, 46.795815608287768 ], [ 18.967960310994375, 46.792340649561062 ], [ 18.973133500510592, 46.781659710257713 ], [ 18.991817778915525, 46.762723911032857 ], [ 18.994949887515681, 46.756539948227342 ], [ 18.992772071873851, 46.748189935137951 ], [ 18.993203248969497, 46.739430949022044 ], [ 18.996760342091612, 46.73390798910193 ], [ 18.998889361419401, 46.732355011377649 ], [ 19.005307426322048, 46.72728207904867 ], [ 19.012237758202957, 46.709139164786407 ], [ 19.013072968108609, 46.698626183074374 ], [ 19.009762373636931, 46.67979217098793 ], [ 19.005985523280035, 46.673563140827909 ], [ 18.998890732721804, 46.665396080020635 ], [ 18.987173938805231, 46.658749973463429 ], [ 18.982852108441588, 46.651688938836941 ], [ 18.973319292887922, 46.645436853204188 ], [ 18.969178386590574, 46.642037816677572 ], [ 18.959401511191107, 46.638787724864706 ], [ 18.945106641486909, 46.636529588545848 ], [ 18.939023739855646, 46.633492533216035 ], [ 18.932693778544824, 46.633454471563816 ], [ 18.924335882155557, 46.630795393557477 ], [ 18.915996933759306, 46.630662312719068 ], [ 18.900027979190469, 46.633103155599663 ], [ 18.892033076336872, 46.630647081330572 ], [ 18.879948408945236, 46.61789797769157 ], [ 18.878639559689404, 46.610863972377338 ], [ 18.874903642695177, 46.607895939258327 ], [ 18.871649798387853, 46.601223915075174 ], [ 18.871191917201859, 46.595508916198206 ], [ 18.874061016112986, 46.58980594981432 ], [ 18.894635193229469, 46.575116165061459 ], [ 18.900832416728829, 46.562302238534343 ], [ 18.905098274477968, 46.518830325908894 ], [ 18.908922516978556, 46.505711376874757 ], [ 18.918045634008607, 46.49728947361627 ], [ 18.926810901239254, 46.481542575199434 ], [ 18.929483172393443, 46.467351615796964 ], [ 18.928558409829677, 46.455922618958816 ], [ 18.920924792294446, 46.439202562962684 ], [ 18.919521956168936, 46.431485557707937 ], [ 18.905989268387465, 46.419984439601649 ], [ 18.899344503181016, 46.410321385377898 ], [ 18.892933847766002, 46.395123340460238 ], [ 18.905187979370503, 46.335259523056507 ], [ 18.912331149695746, 46.324670602846297 ], [ 18.930441343927313, 46.309670793590129 ], [ 18.932475467680984, 46.302869820916662 ], [ 18.930714637423659, 46.29494681198161 ], [ 18.920326053722736, 46.277261731090391 ], [ 18.919424236973295, 46.26836173244341 ], [ 18.922699460263729, 46.256192776875075 ], [ 18.921215921896273, 46.233544787341238 ], [ 18.916203294720614, 46.216416757439802 ], [ 18.931624741578887, 46.189412934747921 ], [ 18.930955936839808, 46.179807938854893 ], [ 18.921594199939307, 46.169404860436778 ], [ 18.912164329771752, 46.165673773766748 ], [ 18.900634441438243, 46.163461665728313 ], [ 18.865545615862686, 46.16512032664842 ], [ 18.849001911138938, 46.155190178207626 ], [ 18.853735961712058, 46.151200228253217 ], [ 18.844844204478303, 46.14168315369956 ], [ 18.829400526536165, 46.13007101783635 ], [ 18.816937925637344, 46.113666916835761 ], [ 18.806686086620012, 46.108600824042654 ], [ 18.799127271439843, 46.101520759022634 ], [ 18.789564425035405, 46.096638672458113 ], [ 18.784601457651874, 46.096508625476602 ], [ 18.778257555353136, 46.093479567497518 ], [ 18.770286756238708, 46.085735500458348 ], [ 18.763909244115972, 46.062950464597577 ], [ 18.761649396106428, 46.055977450845155 ], [ 18.7430856683171, 46.047779282270888 ], [ 18.735635838740091, 46.041374217923114 ], [ 18.719652007997865, 46.037601069057771 ], [ 18.711908175784664, 46.031444001462454 ], [ 18.70001834892766, 46.026252894147156 ], [ 18.692596564720411, 46.017546832745239 ], [ 18.690765700305274, 46.011233822643064 ], [ 18.692287806247975, 46.005389843138722 ], [ 18.695123857338704, 46.001986874451212 ], [ 18.697207452032441, 46.000670458959007 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Duna", "discharge": 2059.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.137721014855785, 48.136437157712415 ], [ 17.145371353281369, 48.133557360482087 ], [ 17.150717444521657, 48.127721420610115 ], [ 17.151003533058603, 48.123605427633656 ], [ 17.144814916548771, 48.108022385608336 ], [ 17.146630017248576, 48.102864409344889 ], [ 17.171785557809372, 48.070355695248985 ], [ 17.186248671143922, 48.060773848776925 ], [ 17.203599694567412, 48.054346026262394 ], [ 17.213123756172465, 48.048586126909044 ], [ 17.233257825127328, 48.039267335002933 ], [ 17.244361954380601, 48.029982455276482 ], [ 17.261801359650754, 48.006014654287767 ], [ 17.264544478580145, 47.9997126882866 ], [ 17.267369532419476, 47.996401720639319 ], [ 17.288014417490327, 47.995337924217473 ], [ 17.298092442207867, 47.991153027975891 ], [ 17.306111416655025, 47.989825107840446 ], [ 17.315716338546125, 47.990474201248617 ], [ 17.320507368050581, 47.987704251764967 ], [ 17.346119505952174, 47.973552519672801 ], [ 17.354449355414168, 47.97792759548804 ], [ 17.338936170748795, 47.991099428458696 ], [ 17.34500114349936, 47.990554488358306 ], [ 17.354840212786232, 47.984317592545189 ], [ 17.389084204188656, 47.974288939581442 ], [ 17.398890280960583, 47.967819043905784 ], [ 17.404967441066507, 47.958572113601718 ], [ 17.411206506167176, 47.953663180908514 ], [ 17.416296478594724, 47.95340723098257 ], [ 17.417269571127139, 47.948868245583661 ], [ 17.424902591756275, 47.945614324121905 ], [ 17.427920580069518, 47.945225354186725 ], [ 17.430983622315708, 47.942318387850953 ], [ 17.437302608400554, 47.941067451542217 ], [ 17.449478477749384, 47.943401567966113 ], [ 17.453867517507675, 47.940193615005782 ], [ 17.457714790892418, 47.926476668544169 ], [ 17.464804815926904, 47.923123742253175 ], [ 17.465958974461294, 47.915505762145671 ], [ 17.476287072098827, 47.907860872376183 ], [ 17.481750221612284, 47.899323935493825 ], [ 17.486924172725306, 47.899963985439747 ], [ 17.493778180231896, 47.897538055348477 ], [ 17.495281207694173, 47.895856072634892 ], [ 17.494561345195024, 47.889711072287355 ], [ 17.501087289860649, 47.890279135692786 ], [ 17.509591169690076, 47.89325821512503 ], [ 17.517751115334381, 47.893281295558012 ], [ 17.525510138351873, 47.88988637525231 ], [ 17.527570246223615, 47.884278402168327 ], [ 17.523675426549385, 47.87716037178545 ], [ 17.526180512104713, 47.872445401723382 ], [ 17.538287580576558, 47.865613528235421 ], [ 17.556741813336846, 47.849275728567463 ], [ 17.561511965721877, 47.840772784821247 ], [ 17.562773162284049, 47.831311807688081 ], [ 17.581076296093556, 47.819559001208944 ], [ 17.58568829093473, 47.818392047076891 ], [ 17.59839711958427, 47.822512166960877 ], [ 17.607977043342419, 47.823137260404657 ], [ 17.617771049353156, 47.819857360150401 ], [ 17.630715203185975, 47.808844499605947 ], [ 17.647276168805814, 47.805418665905535 ], [ 17.652373196209737, 47.802618719201085 ], [ 17.655537278338414, 47.79786575513662 ], [ 17.662234312630435, 47.794291825294145 ], [ 17.677349241800218, 47.793001974667533 ], [ 17.692944257088822, 47.787593133281682 ], [ 17.698748281193911, 47.784724194002969 ], [ 17.711386426900535, 47.774177329472309 ], [ 17.717041713426877, 47.759200401660905 ], [ 17.721855790624751, 47.754123454460057 ], [ 17.726969813855739, 47.751548507594116 ], [ 17.756079694389559, 47.748328796897326 ], [ 17.779547650208933, 47.743355031818709 ], [ 17.79007969879925, 47.737953140894028 ], [ 17.81291447061442, 47.741715360392625 ], [ 17.844399334983365, 47.738568672856857 ], [ 17.861540131532873, 47.742871836281658 ], [ 17.883118074136103, 47.739129051623415 ], [ 17.903655966880116, 47.737962254356006 ], [ 17.915107789157851, 47.7428113613432 ], [ 17.924629547976092, 47.751203444817321 ], [ 17.931281468867081, 47.752889508857798 ], [ 17.955503288608277, 47.754022745066266 ], [ 17.965360164215152, 47.756894838836239 ], [ 17.978465101917031, 47.755914967863646 ], [ 17.999275122795975, 47.748759180048772 ], [ 18.011869092740501, 47.746428306147422 ], [ 18.021582993719221, 47.748156399137919 ], [ 18.031477804086382, 47.754000490077161 ], [ 18.063696599989939, 47.753962806209458 ], [ 18.098721248792508, 47.7599441435964 ], [ 18.123244133864436, 47.758048386414785 ], [ 18.14346319899591, 47.749069594788843 ], [ 18.150505168988698, 47.748424664910033 ], [ 18.154499098861479, 47.750480701252066 ], [ 18.158219135282373, 47.74774174097174 ], [ 18.164833120533327, 47.746433807244742 ], [ 18.178328161967706, 47.740592946141263 ], [ 18.191733103459008, 47.739342079363269 ], [ 18.209281951123334, 47.741280249076034 ], [ 18.244750807486, 47.737565601598483 ], [ 18.259679713372563, 47.737587748019109 ], [ 18.270665678504862, 47.736012857904036 ], [ 18.281633702807071, 47.73168697038092 ], [ 18.295369644134503, 47.730405106230549 ], [ 18.30589057698587, 47.730459209821205 ], [ 18.320440436025503, 47.732793350220753 ], [ 18.340123199643457, 47.738023538129376 ], [ 18.355785092269482, 47.738451691534728 ], [ 18.378044862615088, 47.742601905864696 ], [ 18.399355573922175, 47.749789108093871 ], [ 18.409115525692691, 47.749194204671603 ], [ 18.420159427158431, 47.750582312174778 ], [ 18.456498921759678, 47.763487656250554 ], [ 18.479388809889915, 47.762080882996862 ], [ 18.487191925390846, 47.754489967078285 ], [ 18.492881957357941, 47.751388025865673 ], [ 18.514575826739875, 47.751194239968548 ], [ 18.524337724946907, 47.753109334198136 ], [ 18.544267344919916, 47.764942517752445 ], [ 18.555595200236965, 47.768367626147175 ], [ 18.565909116236451, 47.769329726580175 ], [ 18.581115087052435, 47.766319879101317 ], [ 18.588063019054605, 47.767486946773396 ], [ 18.596355998029125, 47.766053029474868 ], [ 18.613811083188502, 47.757165210606082 ], [ 18.621856049820799, 47.756428290805857 ], [ 18.651938830121296, 47.757977585272265 ], [ 18.665525745176506, 47.75803471910114 ], [ 18.682158537277022, 47.762948877915456 ], [ 18.704199192856123, 47.77256208557872 ], [ 18.711844012386344, 47.778726154351531 ], [ 18.722352897493284, 47.781038255604209 ], [ 18.730643719124178, 47.786932331540321 ], [ 18.731868415169604, 47.800615330743689 ], [ 18.736100205739287, 47.809061364188338 ], [ 18.749387012576296, 47.814176489932329 ], [ 18.74333498689608, 47.817087428006808 ], [ 18.755810871532582, 47.818815549428628 ], [ 18.779453750666658, 47.817762782853862 ], [ 18.803429522024153, 47.821502015889948 ], [ 18.863647445635298, 47.808093623184945 ], [ 18.868746411110422, 47.80827267276355 ], [ 18.881704329095907, 47.80844880106735 ], [ 18.90443026265498, 47.805111028313561 ], [ 18.909073279577687, 47.803070076271837 ], [ 18.910562379490123, 47.798057095381864 ], [ 18.913639668220661, 47.78386713961271 ], [ 18.919683849816884, 47.773838208505268 ], [ 18.928808956901392, 47.766361305330221 ], [ 18.937458931866018, 47.765106391514657 ], [ 18.945728862496768, 47.765941473069624 ], [ 18.965622506964053, 47.776798658366424 ], [ 18.969715566561881, 47.783112939604919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1917.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.406623742700052, 48.236111071212619 ], [ 16.425443339984668, 48.222421192324092 ], [ 16.455472609021022, 48.200555514149045 ], [ 16.477506732747699, 48.187936746232104 ], [ 16.496852928698317, 48.172819954226938 ], [ 16.505899971058611, 48.167975048971115 ], [ 16.52078497493158, 48.163100201125424 ], [ 16.554308134909459, 48.145114552045271 ], [ 16.56632114298305, 48.140940674926426 ], [ 16.579876118126847, 48.137801811998607 ], [ 16.606691939582223, 48.137474074273001 ], [ 16.620460988416269, 48.130893218224948 ], [ 16.637965914912495, 48.128727391716218 ], [ 16.659580766903296, 48.128692603733818 ], [ 16.68220565489635, 48.126659827679561 ], [ 16.68984561555909, 48.12606490339315 ], [ 16.701040475664449, 48.128945009169193 ], [ 16.710231402963842, 48.129384098746698 ], [ 16.732551300305669, 48.127087320207785 ], [ 16.74300511109082, 48.132439415988273 ], [ 16.75144503500772, 48.133275497087588 ], [ 16.811192964500588, 48.117792101637278 ], [ 16.817343872528504, 48.120073159615941 ], [ 16.819050812376162, 48.122263173640512 ], [ 16.820927822265105, 48.121248193258047 ], [ 16.844757541893003, 48.126619419903186 ], [ 16.879805217766719, 48.130487759231862 ], [ 16.891352076208499, 48.133371868256766 ], [ 16.915765681141213, 48.143824095521154 ], [ 16.922940580823436, 48.146170162731416 ], [ 16.940259486692092, 48.14508733348223 ], [ 16.948707316405201, 48.150275410137766 ], [ 16.960422148526341, 48.154315520124413 ], [ 16.966318973487475, 48.160472570726604 ], [ 16.969605931059217, 48.16139160178691 ], [ 16.972965801441486, 48.1662216295924 ], [ 16.978720703593886, 48.168918682647238 ], [ 16.986633652904136, 48.168780759919947 ], [ 17.036665886976017, 48.142620282858893 ], [ 17.048460875454378, 48.139530402279746 ], [ 17.08381159720712, 48.141342747462744 ], [ 17.13555033805827, 48.137254260000141 ], [ 17.137721014855785, 48.136437157712415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1845.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.603640308581136, 48.401633098865922 ], [ 15.609425217637506, 48.401913972420601 ], [ 15.613297222175305, 48.400445012145454 ], [ 15.621403142490944, 48.401391089673112 ], [ 15.630537097143529, 48.400415179943892 ], [ 15.643333082547755, 48.396844310134007 ], [ 15.661049309998432, 48.380666505923905 ], [ 15.671626287192545, 48.378186612815931 ], [ 15.700386897898829, 48.386407882365006 ], [ 15.711639831224405, 48.385709992839431 ], [ 15.719157827137431, 48.383478069464566 ], [ 15.739427974648025, 48.370070285724829 ], [ 15.750293916158414, 48.369166392992874 ], [ 15.755808835318845, 48.371016444811488 ], [ 15.761921801815825, 48.370508505055788 ], [ 15.793578377715694, 48.379381802623691 ], [ 15.81009130442944, 48.377318967029041 ], [ 15.828388130473657, 48.379241142981556 ], [ 15.843966051108959, 48.377712297096544 ], [ 15.85342708639873, 48.373008396055937 ], [ 15.862337069442752, 48.370876486317087 ], [ 15.869296053462444, 48.369373556577628 ], [ 15.874258082658072, 48.366424609023426 ], [ 15.877059057197064, 48.366653636298295 ], [ 15.878200117026495, 48.363559651396578 ], [ 15.888455254233486, 48.353950764494158 ], [ 15.90639124492111, 48.34852994694775 ], [ 15.930435162384203, 48.344426187756383 ], [ 15.943990212291967, 48.337754329185735 ], [ 15.987438821239811, 48.34140874967725 ], [ 15.998874748088156, 48.341030861516565 ], [ 16.000570725804117, 48.341454878023001 ], [ 16.006929613770332, 48.344487935844562 ], [ 16.018915517497479, 48.344968052142015 ], [ 16.033204563854238, 48.338262201260541 ], [ 16.044107512779956, 48.337045309868742 ], [ 16.071637223800895, 48.341268573651725 ], [ 16.07980315123795, 48.341905652732265 ], [ 16.101688059928051, 48.339006870711643 ], [ 16.130404781284984, 48.342383147575049 ], [ 16.14084671990938, 48.341811250487559 ], [ 16.171845451586833, 48.34397455103548 ], [ 16.195517137264819, 48.350626774082691 ], [ 16.209991990506317, 48.352656913285976 ], [ 16.221000909203156, 48.352813021058942 ], [ 16.235461848519261, 48.350929164936986 ], [ 16.252778691553335, 48.352478332993265 ], [ 16.271535533187798, 48.353679514450697 ], [ 16.298366380186465, 48.352035779710029 ], [ 16.303479381691837, 48.350353832284689 ], [ 16.307525340912658, 48.350891871389209 ], [ 16.313777346760983, 48.348602935115487 ], [ 16.32382541734173, 48.342232041838827 ], [ 16.333749427697668, 48.338612143877029 ], [ 16.350887831334443, 48.314831342374589 ], [ 16.348026926986837, 48.311398318863468 ], [ 16.347290059842233, 48.305592319823909 ], [ 16.373039540228085, 48.275559610765519 ], [ 16.384230841355073, 48.258233741998438 ], [ 16.401037120456753, 48.240174929793127 ], [ 16.406623742700052, 48.236111071212619 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 1451.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.287254313898206, 48.3086621545608 ], [ 14.290233126442498, 48.310196290480583 ], [ 14.298676889673782, 48.318103359157234 ], [ 14.305221789000647, 48.320404418609066 ], [ 14.315115723045301, 48.319942515615132 ], [ 14.333079906898638, 48.305145712144189 ], [ 14.344144336511258, 48.281414857451963 ], [ 14.350424416480687, 48.275467927443749 ], [ 14.369198430100271, 48.26818512065271 ], [ 14.373612403151576, 48.267876163529998 ], [ 14.382298369585735, 48.266343250249562 ], [ 14.39788146839221, 48.256291416865572 ], [ 14.406797448166868, 48.254056506733427 ], [ 14.424897321386062, 48.253472682205391 ], [ 14.435328317835365, 48.249970788276642 ], [ 14.452908547979488, 48.233113985527638 ], [ 14.460300513178304, 48.232130058517491 ], [ 14.467678432568643, 48.233213127569449 ], [ 14.496860021174065, 48.241930395963074 ], [ 14.503611984310457, 48.24121646220668 ], [ 14.520045003518565, 48.234529631849732 ], [ 14.524297953505432, 48.235372671865065 ], [ 14.541528858459468, 48.233679840795965 ], [ 14.551305853902404, 48.230451940592566 ], [ 14.563904817693052, 48.227706066750585 ], [ 14.587530828352758, 48.21888230902124 ], [ 14.601088070217045, 48.202975465261744 ], [ 14.61401421556157, 48.191703607536105 ], [ 14.626762247363772, 48.185725740884195 ], [ 14.643713418720566, 48.171862926255947 ], [ 14.656453452185911, 48.165882058753574 ], [ 14.671172387830103, 48.163658204722886 ], [ 14.681857299001253, 48.164024306704043 ], [ 14.706075995473959, 48.169597532995155 ], [ 14.723754790420356, 48.172890698902094 ], [ 14.741292652167751, 48.173210867765654 ], [ 14.758789473199906, 48.175366034025281 ], [ 14.774215267093533, 48.179505177050864 ], [ 14.784942172869727, 48.180089279680622 ], [ 14.790361141365057, 48.179684332539708 ], [ 14.825592709150254, 48.187409662360764 ], [ 14.839033510367353, 48.191914785375907 ], [ 14.849507184931875, 48.203309869772625 ], [ 14.85550093982744, 48.212514913904194 ], [ 14.853850765359581, 48.221139884447993 ], [ 14.856603654644809, 48.225293904381445 ], [ 14.865947574113175, 48.225743994946654 ], [ 14.875067435246091, 48.228968077646897 ], [ 14.885237420428849, 48.226137181201068 ], [ 14.888477376392204, 48.227041210758479 ], [ 14.892470363301779, 48.22628225097953 ], [ 14.90061322604244, 48.22980732473696 ], [ 14.909319145029887, 48.230528407821538 ], [ 14.936102988205763, 48.228510670943784 ], [ 14.942643069494915, 48.22250274322306 ], [ 14.954231390519075, 48.20370388366505 ], [ 14.959715437428336, 48.199610943528128 ], [ 14.97642041582742, 48.194900112366135 ], [ 15.001711283471359, 48.192290361440058 ], [ 15.01311223154797, 48.190726474004521 ], [ 15.025992112213736, 48.191821597250431 ], [ 15.039558943402156, 48.194915723998655 ], [ 15.055857844868271, 48.193896883793954 ], [ 15.063558855036542, 48.190780963448695 ], [ 15.092319083027025, 48.170414272793941 ], [ 15.100523025823534, 48.170238352221226 ], [ 15.107331981112926, 48.169945419309578 ], [ 15.115311780340523, 48.176453486370093 ], [ 15.106802445309208, 48.194809376753533 ], [ 15.111476254265037, 48.202030411459283 ], [ 15.12016708991969, 48.206650488663556 ], [ 15.133104920112533, 48.210011609386711 ], [ 15.151751768853535, 48.21063679020051 ], [ 15.173361523910625, 48.214478994277208 ], [ 15.192712409586026, 48.2132011835916 ], [ 15.22630516724524, 48.212880510569541 ], [ 15.257124737771534, 48.222188795931281 ], [ 15.305852255826514, 48.227781262090964 ], [ 15.319527079082849, 48.23130238964697 ], [ 15.344694672069776, 48.241495619104569 ], [ 15.36516628520627, 48.252283803205913 ], [ 15.383532711518338, 48.272436952768224 ], [ 15.3969774389791, 48.280334071931946 ], [ 15.401785236964269, 48.288001107696374 ], [ 15.408905522284009, 48.318248133779257 ], [ 15.405006227239697, 48.333049074838968 ], [ 15.404695972322838, 48.34480205516244 ], [ 15.408434739161397, 48.354163078249954 ], [ 15.425911368610667, 48.365188233324432 ], [ 15.437133220397566, 48.368198338408853 ], [ 15.44880501332862, 48.373706444346318 ], [ 15.463648629356255, 48.386199570834528 ], [ 15.483752110329135, 48.403102743792779 ], [ 15.494254930690948, 48.407783839397183 ], [ 15.50305088618587, 48.406844926505933 ], [ 15.510852928852099, 48.402306008677435 ], [ 15.515895160342369, 48.390167075024209 ], [ 15.522387244371695, 48.38412914739547 ], [ 15.53559517638576, 48.382828277725338 ], [ 15.545604060656428, 48.384777372816046 ], [ 15.57988150188514, 48.398792688137341 ], [ 15.589937380394597, 48.400967783281573 ], [ 15.603640308581136, 48.401633098865922 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 638.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 13.116230802804507, 48.677214658198181 ], [ 13.115991633347967, 48.668551358616099 ], [ 13.118628691539381, 48.664966389664812 ], [ 13.122502704930717, 48.662906430643268 ], [ 13.151603568869936, 48.658229719712466 ], [ 13.193355750586345, 48.634457163051238 ], [ 13.218617764413962, 48.62448542350046 ], [ 13.245997863675582, 48.609787712576491 ], [ 13.2543448414428, 48.607689796983429 ], [ 13.263248781598946, 48.607163883550967 ], [ 13.280456538760214, 48.611871041230586 ], [ 13.292444456834446, 48.611154158327558 ], [ 13.329220352533396, 48.602300527996185 ], [ 13.365795115560267, 48.599637885357453 ], [ 13.37793406424645, 48.597529005638243 ], [ 13.389386071303058, 48.592932124693021 ], [ 13.406927214988931, 48.579939315165817 ], [ 13.419058219379036, 48.575304440556224 ], [ 13.436883094748151, 48.574446613552993 ], [ 13.462522816021805, 48.577688855806791 ], [ 13.472471799583868, 48.57478595652703 ], [ 13.471066870383048, 48.572119947460635 ], [ 13.489612681089355, 48.573959123600083 ], [ 13.496962550743667, 48.577174188641564 ], [ 13.505267263676327, 48.587215251886576 ], [ 13.510909145778111, 48.590537301380458 ], [ 13.515390110642263, 48.590495344823687 ], [ 13.522665102754313, 48.588210418682067 ], [ 13.535119161091465, 48.581008551057479 ], [ 13.551591311953516, 48.568057731956543 ], [ 13.56910034702006, 48.560085914364024 ], [ 13.57690330529149, 48.559139990744733 ], [ 13.58014125882989, 48.560082020889034 ], [ 13.588823019339902, 48.567803091730191 ], [ 13.59486394412645, 48.569035147878459 ], [ 13.606042940825146, 48.565121262770667 ], [ 13.61794303311947, 48.556576391955538 ], [ 13.628839021312556, 48.55312850220524 ], [ 13.648134923906564, 48.55054169289803 ], [ 13.651913950252412, 48.548008734238877 ], [ 13.657485108466929, 48.53870880377827 ], [ 13.663087157166636, 48.534458864420806 ], [ 13.68935315102784, 48.525220133172446 ], [ 13.704466197047369, 48.517598292373805 ], [ 13.722798146986332, 48.513223476339398 ], [ 13.73099119894362, 48.507879564899312 ], [ 13.739742421819923, 48.494474670916581 ], [ 13.746532488017095, 48.488988746081951 ], [ 13.770084595521983, 48.475549995976465 ], [ 13.779819711911284, 48.466662104637848 ], [ 13.794669640449204, 48.464556250956988 ], [ 13.808163627780299, 48.460238388556512 ], [ 13.849062933400125, 48.431429831040653 ], [ 13.860977961269048, 48.425829955580618 ], [ 13.870831903073466, 48.424964052360636 ], [ 13.873077858229749, 48.426193071815767 ], [ 13.872656770419457, 48.430351060323488 ], [ 13.859101743250914, 48.436510920134218 ], [ 13.85421268945324, 48.440733865837046 ], [ 13.852357621911553, 48.444529841718015 ], [ 13.85636850589659, 48.44839387353958 ], [ 13.86233344146833, 48.449152929742603 ], [ 13.872065453838649, 48.445072031251122 ], [ 13.887788347347044, 48.444278183832672 ], [ 13.905702001491068, 48.453658341989126 ], [ 13.911365985388635, 48.452369398225969 ], [ 13.918947027449883, 48.447734479623087 ], [ 13.919207240505033, 48.437858497695686 ], [ 13.924302363300951, 48.430404559906208 ], [ 13.927055645230833, 48.416458609299148 ], [ 13.93358179835524, 48.407077687695541 ], [ 13.941733850699102, 48.401718774690536 ], [ 13.948338738173325, 48.404495834056277 ], [ 13.952958479565913, 48.414745862100432 ], [ 13.956978413008589, 48.416316898410521 ], [ 13.968123356970352, 48.414895008477231 ], [ 13.983455109302707, 48.420758146625509 ], [ 13.996408125870859, 48.415310280942791 ], [ 14.02571368953744, 48.378930622928095 ], [ 14.029286840624723, 48.370659671296039 ], [ 14.02036740603315, 48.347851622431968 ], [ 14.021660558404339, 48.340413647200776 ], [ 14.025332639265052, 48.335331690530531 ], [ 14.04315871013776, 48.325661878736504 ], [ 14.068865716222099, 48.316137142085879 ], [ 14.096204572595603, 48.312917411143118 ], [ 14.109830582283017, 48.307634551854861 ], [ 14.116936541445568, 48.306921621167952 ], [ 14.143886163094507, 48.314737868501403 ], [ 14.159143877725649, 48.322421003576871 ], [ 14.168130750819358, 48.325015086455821 ], [ 14.179403575948244, 48.329070188929798 ], [ 14.188315509076908, 48.328921274901766 ], [ 14.216303708146143, 48.30978657664258 ], [ 14.227746700907595, 48.306017692518317 ], [ 14.244554526419437, 48.308074852323934 ], [ 14.258456444085416, 48.306883988015031 ], [ 14.269930433578224, 48.303337104872362 ], [ 14.282765268175927, 48.306350224492796 ], [ 14.287254313898206, 48.3086621545608 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 444.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.099360065629188, 49.022872524041368 ], [ 12.118498202196976, 49.020817125188863 ], [ 12.122262112211548, 49.023385155960696 ], [ 12.125991099438805, 49.022515193808601 ], [ 12.140132932970442, 49.024579325980639 ], [ 12.146680888671018, 49.024025389704988 ], [ 12.158620901810506, 49.018864514232611 ], [ 12.172351818928586, 49.017273648960092 ], [ 12.184055880011558, 49.010052775622825 ], [ 12.190496856912487, 49.008587839901914 ], [ 12.195595768038629, 49.010636884705605 ], [ 12.206406397060467, 49.023156966676737 ], [ 12.219236159453432, 49.02894007897298 ], [ 12.225862099508422, 49.029073143222526 ], [ 12.235158107340531, 49.025171239566966 ], [ 12.25232000471026, 49.023172407849565 ], [ 12.262382991393503, 49.019922510569387 ], [ 12.264574087704561, 49.014772541478038 ], [ 12.271097115636639, 49.0110036110406 ], [ 12.305851690206854, 49.0168289353715 ], [ 12.318592606362712, 49.015727059749274 ], [ 12.324388512734222, 49.017729111723021 ], [ 12.33369944973245, 49.01703120274756 ], [ 12.355909469519903, 49.007659433975107 ], [ 12.372210338376025, 49.007285591402187 ], [ 12.379495412343397, 49.001185672778035 ], [ 12.378963452414929, 48.999606670672996 ], [ 12.382870470251273, 48.997344712629058 ], [ 12.407563391102745, 48.991500960693372 ], [ 12.430079215120776, 48.990802179271085 ], [ 12.439248179167331, 48.988956271033871 ], [ 12.442266304203615, 48.98215531172665 ], [ 12.435769535138386, 48.974243263572404 ], [ 12.446709542166683, 48.969780377238237 ], [ 12.466688407117664, 48.968288572401399 ], [ 12.470751651727738, 48.955703633904328 ], [ 12.473004665656138, 48.954212658604398 ], [ 12.476803639033401, 48.954014695109493 ], [ 12.481218555457641, 48.956073733848925 ], [ 12.487131374109474, 48.961956780551027 ], [ 12.494357327520973, 48.961349851291125 ], [ 12.501636462690689, 48.952491937360669 ], [ 12.50677849628053, 48.949016993293952 ], [ 12.523613389053409, 48.947449158263822 ], [ 12.526490476050768, 48.942487194804443 ], [ 12.521483607948527, 48.938393153991726 ], [ 12.510592723047518, 48.93735605075728 ], [ 12.509466812772635, 48.933751046319053 ], [ 12.519125129440594, 48.915833170992478 ], [ 12.522646153589992, 48.913354210016607 ], [ 12.529255096424031, 48.9134682735966 ], [ 12.53415098477868, 48.916646314348483 ], [ 12.541056741043244, 48.924992366034239 ], [ 12.546867709467554, 48.924233423872543 ], [ 12.558299809100337, 48.915375549088708 ], [ 12.558949876385471, 48.912129561941946 ], [ 12.555778975690599, 48.908864536583188 ], [ 12.544050060372303, 48.909482422634241 ], [ 12.538908219503076, 48.904244382856 ], [ 12.547147231149564, 48.900605468633309 ], [ 12.572033039695537, 48.899758710033737 ], [ 12.574088091470774, 48.896661735086106 ], [ 12.571234193735375, 48.893151713568059 ], [ 12.571800275500129, 48.889226726165859 ], [ 12.575138272457853, 48.888131760460183 ], [ 12.581054218588314, 48.888276817432285 ], [ 12.592349026067589, 48.892716918263162 ], [ 12.593467875156172, 48.899079917303865 ], [ 12.598021766353227, 48.902272955878722 ], [ 12.606064688130786, 48.902765032592825 ], [ 12.618434670464547, 48.898897158592085 ], [ 12.623111600220195, 48.90025520074132 ], [ 12.628595378758238, 48.908209240190722 ], [ 12.631549321843936, 48.909654265504791 ], [ 12.646446265562492, 48.906568414813883 ], [ 12.654798128480198, 48.909559489720472 ], [ 12.688518962974742, 48.904314824366871 ], [ 12.694276003948231, 48.900331887212424 ], [ 12.723866050346166, 48.887042195623067 ], [ 12.734466990269814, 48.885779300484081 ], [ 12.749352995425614, 48.879927453848204 ], [ 12.756283063704, 48.874278530966166 ], [ 12.765517318244511, 48.859332646400894 ], [ 12.769470689785987, 48.841006716581084 ], [ 12.789276762545832, 48.83029492606056 ], [ 12.802302740759599, 48.826374058700473 ], [ 12.8181666240865, 48.825725213055662 ], [ 12.829812490942228, 48.827373322230265 ], [ 12.838678321589244, 48.83169540018676 ], [ 12.851135978834149, 48.842472501768455 ], [ 12.858684870616541, 48.844574570670922 ], [ 12.879573742488583, 48.842495775794141 ], [ 12.902507484771602, 48.845569991518197 ], [ 12.914213403197293, 48.844914105508913 ], [ 12.964601444638115, 48.824197628068276 ], [ 12.969952493435978, 48.819993686833293 ], [ 12.974302721862578, 48.808057749931457 ], [ 12.976789749930742, 48.805852777877021 ], [ 13.009376892274137, 48.787268123800338 ], [ 13.01176911364046, 48.776354166086257 ], [ 13.021872256896252, 48.76614628157288 ], [ 13.036827415632672, 48.753370448202226 ], [ 13.040551515244434, 48.747423494337603 ], [ 13.041214632016821, 48.741884510175844 ], [ 13.036172823948466, 48.735064473150068 ], [ 13.020799092312867, 48.728613336240208 ], [ 13.01823619714987, 48.724855317876475 ], [ 13.020049284755, 48.720167343839094 ], [ 13.025620292196523, 48.717787401497667 ], [ 13.035263219649835, 48.717463495271581 ], [ 13.041831107590863, 48.720068554332258 ], [ 13.049588902965757, 48.726500617512514 ], [ 13.055173848760035, 48.726866671209756 ], [ 13.059772852399279, 48.724997718663175 ], [ 13.067374966356816, 48.716993805926492 ], [ 13.071777946064596, 48.716288849063474 ], [ 13.080346830838419, 48.718313928764935 ], [ 13.08443780798067, 48.717840968937217 ], [ 13.097346914780431, 48.708159110115105 ], [ 13.100315031503021, 48.701797149951936 ], [ 13.08946437259732, 48.690276064952236 ], [ 13.089925466041555, 48.685885077184174 ], [ 13.099040427911762, 48.684215168041398 ], [ 13.114093273959401, 48.685634310184383 ], [ 13.116358339247075, 48.681834338426512 ], [ 13.116230802804507, 48.677214658198181 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 312.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 11.429149966797578, 48.762126113828408 ], [ 11.430457838550211, 48.763174028320293 ], [ 11.435453758853578, 48.764792073213073 ], [ 11.475321462222416, 48.762400457202716 ], [ 11.505322293305829, 48.758135751746686 ], [ 11.536892993009113, 48.759284050249562 ], [ 11.566577591619172, 48.765765321466148 ], [ 11.592962112951854, 48.77720255059937 ], [ 11.601247043934546, 48.777065630266719 ], [ 11.614377006883263, 48.773509762474845 ], [ 11.640382766063103, 48.774193008734514 ], [ 11.646925640372233, 48.777333065044743 ], [ 11.653541424575133, 48.78458811489395 ], [ 11.683094061194717, 48.789452387312672 ], [ 11.712678397304604, 48.808041634323494 ], [ 11.739158983047707, 48.816468870896713 ], [ 11.75383867959532, 48.824498995915114 ], [ 11.768157872020799, 48.855676073370418 ], [ 11.781973468825059, 48.868554180901711 ], [ 11.783971321885845, 48.874418189514444 ], [ 11.783447144380693, 48.882688168368659 ], [ 11.788301957207818, 48.889333202435196 ], [ 11.794084856501813, 48.891588253610479 ], [ 11.803770778439539, 48.891374346180349 ], [ 11.810503762058442, 48.889463414338472 ], [ 11.817823690993739, 48.889814484340356 ], [ 11.822275590476806, 48.8925875217205 ], [ 11.817055494809933, 48.899007459258797 ], [ 11.829456404963729, 48.89821057970078 ], [ 11.839873239350656, 48.901620672791118 ], [ 11.849866022446042, 48.907571757148332 ], [ 11.855270788489143, 48.916025792762824 ], [ 11.872211654242827, 48.915471956220387 ], [ 11.884818665288924, 48.910071087600862 ], [ 11.895839585794182, 48.90933119484675 ], [ 11.899583497133236, 48.911906225692128 ], [ 11.90954543207703, 48.910979323310549 ], [ 11.919503294807129, 48.913268414185829 ], [ 11.932275198219067, 48.912661537259211 ], [ 11.944556206046091, 48.907511665039486 ], [ 11.952025174882877, 48.906008739298073 ], [ 11.959371099666336, 48.906577808419456 ], [ 11.967605905658132, 48.912142876972602 ], [ 11.970021674761375, 48.921648882285965 ], [ 11.982947405978928, 48.928824992946005 ], [ 11.99444222692863, 48.932407096897158 ], [ 12.003025172381573, 48.931541181303039 ], [ 12.012716165046548, 48.928096280512023 ], [ 12.021027097286124, 48.927925359967666 ], [ 12.037016814660102, 48.934494501686608 ], [ 12.040575697740719, 48.938446528271413 ], [ 12.039519639336174, 48.94147451229756 ], [ 12.027336680086995, 48.944347390374475 ], [ 12.013428664122447, 48.950511245083604 ], [ 11.989865856504586, 48.950939018420115 ], [ 11.986238849261335, 48.952715980263079 ], [ 11.985870785578649, 48.95571497109659 ], [ 11.991303552250384, 48.964157007280072 ], [ 12.015002260629672, 48.968070228116616 ], [ 12.031818017455155, 48.97253438062576 ], [ 12.038513871399545, 48.976570438019905 ], [ 12.046724615514556, 48.984882501278911 ], [ 12.049081471665213, 48.990493513170435 ], [ 12.045239368265639, 48.996639464988419 ], [ 12.032219161438249, 49.011001313244783 ], [ 12.031753119151114, 49.013088304853767 ], [ 12.03558601315183, 49.016338335975803 ], [ 12.053968585274742, 49.028514490226456 ], [ 12.066556393051821, 49.032264604168134 ], [ 12.074809340856914, 49.031414685433312 ], [ 12.085940385614572, 49.025146804110157 ], [ 12.095129346539943, 49.023326895088964 ], [ 12.099360065629188, 49.022872524041368 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Donau", "discharge": 38.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 9.996185036794557, 48.393671929768949 ], [ 10.01551929266709, 48.401066416861944 ], [ 10.018856182552366, 48.40485144003538 ], [ 10.020507970318942, 48.414174434742293 ], [ 10.054182315248015, 48.430539713825048 ], [ 10.099579768622835, 48.43676512645029 ], [ 10.145593214202156, 48.443056543409028 ], [ 10.155225117956507, 48.443445633607993 ], [ 10.175771046467815, 48.438001837975378 ], [ 10.183316977464367, 48.437994908597638 ], [ 10.248007922653898, 48.45995246810876 ], [ 10.255264842642239, 48.460635535586874 ], [ 10.270491767199957, 48.457633684642758 ], [ 10.275500661874664, 48.460444725578121 ], [ 10.283623521098637, 48.463614795422089 ], [ 10.299833351426008, 48.464686944786088 ], [ 10.313555129095583, 48.469269063825628 ], [ 10.332266708910169, 48.481010214712938 ], [ 10.353701373756795, 48.487621402248934 ], [ 10.371804139932932, 48.490913565670432 ], [ 10.380347976485401, 48.494976636817498 ], [ 10.389402564722159, 48.510452689374404 ], [ 10.390456155192174, 48.529167658719899 ], [ 10.398045784161919, 48.543323699585677 ], [ 10.403395681030354, 48.545887745146693 ], [ 10.416756281970946, 48.558933842304654 ], [ 10.425042196796117, 48.55934192015728 ], [ 10.430377098778838, 48.561680965444559 ], [ 10.433690909897802, 48.569114980942899 ], [ 10.437603838884035, 48.570809013728656 ], [ 10.444449786351553, 48.570355079443381 ], [ 10.454397800616869, 48.565446183159828 ], [ 10.4618767585765, 48.564275256223887 ], [ 10.508925259333068, 48.567708692934325 ], [ 10.531989857592679, 48.576745890808169 ], [ 10.556049271046167, 48.593981081839246 ], [ 10.62471323832419, 48.61331068909417 ], [ 10.649254715946633, 48.627310891675975 ], [ 10.667986236944113, 48.641738038361773 ], [ 10.702224714426034, 48.651721341538803 ], [ 10.706868538106338, 48.657958372263039 ], [ 10.703383305093459, 48.670203313941094 ], [ 10.708281152346784, 48.675292349641481 ], [ 10.739680593788201, 48.688109619849449 ], [ 10.7511804599255, 48.689525726005925 ], [ 10.770240086438163, 48.698893887185704 ], [ 10.77670878052461, 48.710322924503721 ], [ 10.782498659581075, 48.713542973185078 ], [ 10.790643622218521, 48.711872052961262 ], [ 10.800468581297427, 48.709686151305732 ], [ 10.814746331513957, 48.715336274804557 ], [ 10.837496136029605, 48.714947491333227 ], [ 10.84520003853542, 48.716259560763255 ], [ 10.855663740699779, 48.725708641024539 ], [ 10.861708641727144, 48.727772693717796 ], [ 10.877424543491761, 48.725811846741614 ], [ 10.88543745433819, 48.726654921506118 ], [ 10.897866080886672, 48.738767014135419 ], [ 10.904849999018721, 48.739648078909632 ], [ 10.917558990112177, 48.734822209238146 ], [ 10.929259895396088, 48.73437632104195 ], [ 10.943776763476629, 48.734509458215378 ], [ 10.95789573283103, 48.730081601360851 ], [ 10.971338619827367, 48.729795729836681 ], [ 10.99691621459691, 48.737962955447088 ], [ 11.003008105511304, 48.740477008423341 ], [ 11.016677021302801, 48.738802141725948 ], [ 11.019917044632889, 48.736387177791954 ], [ 11.038321940387016, 48.73361835787788 ], [ 11.049476816362425, 48.734777461649493 ], [ 11.067152560180288, 48.739348619997038 ], [ 11.075028506671948, 48.738581696347474 ], [ 11.078264614965613, 48.732271739978607 ], [ 11.084254616576306, 48.729754801290511 ], [ 11.093911535019508, 48.729601893969011 ], [ 11.12103108345492, 48.739280131603735 ], [ 11.125505047845886, 48.73910417455636 ], [ 11.138515043284585, 48.734008308178574 ], [ 11.148170962192625, 48.733852400872323 ], [ 11.158607768330278, 48.738471490481658 ], [ 11.166992671995603, 48.739505568076041 ], [ 11.174074650492955, 48.737617639020044 ], [ 11.183064569618155, 48.737716724629784 ], [ 11.19117937498379, 48.743342790328946 ], [ 11.215750229619266, 48.740051030743928 ], [ 11.256986593648014, 48.752564397467459 ], [ 11.272196457812276, 48.752621542686491 ], [ 11.282807469028674, 48.747837652524204 ], [ 11.304343413023703, 48.741684869660936 ], [ 11.334023238265729, 48.737706160036559 ], [ 11.350907101482671, 48.737230322144093 ], [ 11.399309510960927, 48.744806767830376 ], [ 11.414723250350022, 48.750566903068425 ], [ 11.429149966797578, 48.762126113828408 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 22.13 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.212480174393207, 48.049882458430368 ], [ 24.205718546081584, 48.045435981566953 ], [ 24.197217607800283, 48.044268896003487 ], [ 24.190431704560506, 48.041273827006336 ], [ 24.181318970985586, 48.031191735921198 ], [ 24.177979176065719, 48.022726703142318 ], [ 24.178704301750336, 48.017016710792817 ], [ 24.19883660390536, 47.999781916773394 ], [ 24.201624829843048, 47.989203946406185 ], [ 24.204237920084623, 47.984694973353214 ], [ 24.202476046338525, 47.979399955842155 ], [ 24.178636848296982, 47.948233717784348 ], [ 24.172787941058658, 47.936041186208193 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 26.65 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 24.172787941058658, 47.936041186208193 ], [ 24.170989238450534, 47.93229164164336 ], [ 24.155308707114724, 47.914332484997949 ], [ 24.141497665345177, 47.918803344828966 ], [ 24.125809699779907, 47.920256186164799 ], [ 24.117201684556893, 47.922564098411861 ], [ 24.107743601916294, 47.928049002548939 ], [ 24.096409313577123, 47.943086885814232 ], [ 24.085854205965919, 47.949914777621508 ], [ 24.070660165891773, 47.954572623953069 ], [ 24.056605172987659, 47.95697148070694 ], [ 24.042248195968668, 47.958677334930655 ], [ 24.029046131448929, 47.96406720110059 ], [ 24.015427177318362, 47.964643063069765 ], [ 24.011897138079593, 47.967069026533395 ], [ 23.980837212932183, 47.969723712083372 ], [ 23.964921300944972, 47.968869550913176 ], [ 23.958657403389214, 47.96551248820272 ], [ 23.949492714986533, 47.953400397564018 ], [ 23.942135791794843, 47.951390322756026 ], [ 23.906544970702619, 47.950252962739278 ], [ 23.899934069932431, 47.947112896368019 ], [ 23.894802340880464, 47.93601584702683 ], [ 23.889274125548045, 47.932497339232349 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 75.73 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.889274125548045, 47.932497339232349 ], [ 23.884325535627926, 47.92934774191049 ], [ 23.864307496923285, 47.935001538506668 ], [ 23.858657437267091, 47.938735480395927 ], [ 23.842568938639282, 47.964137314032193 ], [ 23.831749745545892, 47.974822202938135 ], [ 23.815985634294623, 47.982860041697741 ], [ 23.790932522953991, 47.992708786073734 ], [ 23.775771512188932, 47.996191632365232 ], [ 23.722481773862317, 47.994986093259797 ], [ 23.701992694207732, 47.991458072910532 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 101.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.701992694207732, 47.991458072910532 ], [ 23.692548020882146, 47.989831791972271 ], [ 23.67182311549082, 47.989720582095451 ], [ 23.664529090582977, 47.992261507986107 ], [ 23.642034021409845, 47.99977627881907 ], [ 23.625067973059135, 48.005323106290582 ], [ 23.599943135334435, 48.003052851987221 ], [ 23.57830898472233, 48.004151147157174 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 126.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.57830898472233, 48.004151147157174 ], [ 23.569299237483001, 48.004608542598895 ], [ 23.557016248772481, 48.006558417495043 ], [ 23.545982135981014, 48.013767304547741 ], [ 23.535711112726791, 48.016872200054507 ], [ 23.521741151291042, 48.017887058607499 ], [ 23.517236086287838, 48.021729011827802 ], [ 23.512455088221284, 48.022597963887605 ], [ 23.503580098318441, 48.023887873105117 ], [ 23.485433065914378, 48.028968688594773 ], [ 23.475045930185047, 48.037093582307378 ], [ 23.47156086448695, 48.040717545962174 ], [ 23.46954970933005, 48.042383706382189 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 130.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.46954970933005, 48.042383706382189 ], [ 23.467747810223688, 48.043876506657483 ], [ 23.457448771396432, 48.047660402144828 ], [ 23.452235688008244, 48.052409348505854 ], [ 23.452858629445174, 48.05492735365133 ], [ 23.447608509468179, 48.061275299692802 ], [ 23.425189332555188, 48.073619069802298 ], [ 23.401820243439115, 48.082289831775881 ], [ 23.396597159875288, 48.087034777847776 ], [ 23.38757204420801, 48.094023684931535 ], [ 23.375772898760193, 48.102812563647063 ], [ 23.353288697138787, 48.116281332210043 ], [ 23.347619528427344, 48.124907273054454 ], [ 23.343120487815217, 48.127600227387852 ], [ 23.330778485751271, 48.130205101248322 ], [ 23.327312451032945, 48.132452065977155 ], [ 23.320226246875144, 48.14288499192255 ], [ 23.304080221055983, 48.147275827217683 ], [ 23.291219071543544, 48.15649969463594 ], [ 23.28809504059091, 48.158521662603505 ], [ 23.28834295705709, 48.16218366464733 ], [ 23.278679204316006, 48.169403066837148 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 153.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.278679204316006, 48.169403066837148 ], [ 23.272677762859683, 48.173886503112136 ], [ 23.257815674572491, 48.180798350491678 ], [ 23.251318695866221, 48.181180284983242 ], [ 23.248625740869716, 48.179776257853959 ], [ 23.238015766517542, 48.180791150088034 ], [ 23.22115801888091, 48.173046981117885 ], [ 23.211610070433963, 48.172703884799375 ], [ 23.189469935545311, 48.183174658551394 ], [ 23.182282955816454, 48.183769584895323 ], [ 23.170139129162973, 48.178589463951766 ], [ 23.165369157547257, 48.178299414989354 ], [ 23.160394295711892, 48.173210366389739 ], [ 23.150300459342077, 48.168053265061722 ], [ 23.135717597967595, 48.164894118842717 ], [ 23.118358715201499, 48.163295943729743 ], [ 23.107282909529562, 48.156981832612367 ], [ 23.105584180520619, 48.145301818909402 ], [ 23.100659350231982, 48.138835770343476 ], [ 23.101447268776571, 48.130889533046883 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Тиса", "discharge": 180.91 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 23.101447268776571, 48.130889533046883 ], [ 23.101632566904328, 48.129020782902757 ], [ 23.098340671348545, 48.125090750894202 ], [ 23.084883872005619, 48.118968616808012 ], [ 23.077718154196027, 48.107901547481895 ], [ 23.0723412371621, 48.105315493167268 ], [ 23.062446276654036, 48.10563939310984 ], [ 23.059679259424822, 48.106971365235758 ], [ 23.057313286794869, 48.106253341226193 ], [ 23.05460931572819, 48.105532314280211 ], [ 23.045017574523715, 48.096030219958308 ], [ 23.025699741969294, 48.092563025513122 ], [ 23.018356887381639, 48.087660952306656 ], [ 23.010189932364685, 48.087316870378352 ], [ 22.992723953348726, 48.090040693169833 ], [ 22.981839017471938, 48.089426583423027 ], [ 22.969798232684443, 48.082399463578739 ], [ 22.960692339271418, 48.079523372871932 ], [ 22.953463556291165, 48.071417302057007 ], [ 22.936770634883, 48.071401133623333 ], [ 22.928424559078241, 48.076536047755575 ], [ 22.918797545294261, 48.07913394911693 ], [ 22.918408499456735, 48.081265945288933 ], [ 22.899935553540455, 48.082738758302675 ], [ 22.892295493950076, 48.086964679296251 ], [ 22.888217520430718, 48.086674638336952 ], [ 22.887496497641692, 48.087807630838007 ], [ 22.883494574119108, 48.085232591276764 ], [ 22.877673583807173, 48.086056532392675 ], [ 22.874871545854479, 48.088299503042485 ], [ 22.874587362064169, 48.096524497572418 ], [ 22.85962945906407, 48.095380347084166 ], [ 22.853736421906799, 48.098260286420135 ], [ 22.847334500567666, 48.096104222550366 ], [ 22.839507546024972, 48.095753143681506 ], [ 22.838493917254063, 48.101431491999044 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 185.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.838493917254063, 48.101431491999044 ], [ 22.836537184607298, 48.112393108175986 ], [ 22.830597122681954, 48.116414047760401 ], [ 22.821047166401865, 48.116493951058423 ], [ 22.818078242955579, 48.113701922028838 ], [ 22.816359457894425, 48.104530907538233 ], [ 22.809123443512743, 48.106704833088003 ], [ 22.80836039541429, 48.108978825171313 ], [ 22.811537235965513, 48.115429855229507 ], [ 22.810361143400307, 48.119751841732381 ], [ 22.791234215204785, 48.120590648132392 ], [ 22.780028298478175, 48.119266535845767 ], [ 22.779147390349806, 48.115364528471254 ], [ 22.774186508663753, 48.11117147938559 ], [ 22.768700516536697, 48.111995423248466 ], [ 22.763404430348544, 48.116939368243145 ], [ 22.754450419903531, 48.119308277675685 ], [ 22.748334460663635, 48.118747216163889 ], [ 22.740264569100653, 48.115646135413563 ], [ 22.73202657613669, 48.11710705147226 ], [ 22.727715670140508, 48.113834009384021 ], [ 22.716574788690856, 48.110907897315137 ], [ 22.705999038871418, 48.10204279406328 ], [ 22.696495108973675, 48.100966698705257 ], [ 22.686538314457948, 48.093939600421905 ], [ 22.678442403535172, 48.091742519227886 ], [ 22.649662454384043, 48.095591227052545 ], [ 22.639299425517869, 48.09906612154537 ], [ 22.630235354598774, 48.104167028784332 ], [ 22.62348542637563, 48.102445960909755 ], [ 22.622089607498665, 48.094652949951673 ], [ 22.618423673973336, 48.092527913129167 ], [ 22.613987690644162, 48.092680868832467 ], [ 22.596922569500869, 48.101747693367749 ], [ 22.592466578093948, 48.102354647774128 ], [ 22.585994801302622, 48.093778585323939 ], [ 22.582964837777432, 48.092809555468477 ], [ 22.575426852217358, 48.093816478839862 ], [ 22.572885967419868, 48.089201455585687 ], [ 22.575236125425455, 48.08169748117453 ], [ 22.573662205392278, 48.078470466588207 ], [ 22.564381392218507, 48.072130375385314 ], [ 22.549191543600369, 48.068651223763304 ], [ 22.529193694814541, 48.066225022687071 ], [ 22.520560858500314, 48.06080793730613 ], [ 22.518365691105192, 48.060889684861351 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.518365691105192, 48.060889684861351 ], [ 22.512372890848599, 48.061112855436406 ], [ 22.497243889178414, 48.064484701716538 ], [ 22.491612820598988, 48.068722643085422 ], [ 22.487128813272726, 48.070012597114491 ], [ 22.482653991349647, 48.063069554876321 ], [ 22.477665078797553, 48.060231505790448 ], [ 22.45634389912297, 48.072854286072712 ], [ 22.448493930396261, 48.073159206918959 ], [ 22.435365077609315, 48.069478075896633 ], [ 22.425504134454446, 48.069057976781011 ], [ 22.420328126399205, 48.070556924138756 ], [ 22.401208853620119, 48.086872725253507 ], [ 22.386540747889001, 48.094810574618194 ], [ 22.381024571471279, 48.103847515309297 ], [ 22.372294509621735, 48.1084744256801 ], [ 22.371203214298983, 48.110729940861972 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 201.51 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.371203214298983, 48.110729940861972 ], [ 22.369664400958229, 48.11391039694913 ], [ 22.364089369040986, 48.11654233928838 ], [ 22.351224478421489, 48.114456210350866 ], [ 22.351223193671117, 48.11445818656496 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.341554345206575, 48.128840944920142 ], [ 22.338799129472335, 48.132724078050622 ], [ 22.333859073007741, 48.136280027440478 ], [ 22.32764106616683, 48.137984963853093 ], [ 22.324074007566274, 48.141341927010281 ], [ 22.32849180883672, 48.149203968119892 ], [ 22.324056663027577, 48.156657920925213 ], [ 22.331337345272924, 48.169154989501919 ], [ 22.3299461728907, 48.177126971957208 ], [ 22.325409144703769, 48.179320925781759 ], [ 22.320778242312603, 48.176024880398742 ], [ 22.313871238352739, 48.177714810081227 ], [ 22.308107119604401, 48.184226748893238 ], [ 22.289011062976176, 48.19092055350648 ], [ 22.283371005345206, 48.194693495477686 ], [ 22.281802915613593, 48.199004477824623 ], [ 22.288191670336445, 48.208510538408767 ], [ 22.279572509285487, 48.217478448152491 ], [ 22.286442327416729, 48.224024515191779 ], [ 22.283328157980915, 48.232192480590086 ], [ 22.284587100264254, 48.234503491996328 ], [ 22.291278997103632, 48.237616558713725 ], [ 22.293094872477031, 48.242682575060279 ], [ 22.284801871648678, 48.244570490440509 ], [ 22.276655775886141, 48.250575405744023 ], [ 22.273534440725687, 48.266058368399676 ], [ 22.269613383511455, 48.269408327435286 ], [ 22.249473668750323, 48.261210127363618 ], [ 22.243963678668727, 48.262011071576133 ], [ 22.240274569083251, 48.267649031809974 ], [ 22.242448453701027, 48.272269051615986 ], [ 22.258424159529635, 48.281752209747914 ], [ 22.261253025248859, 48.287070235812948 ], [ 22.257765846166251, 48.295687197712638 ], [ 22.260893689820808, 48.301924226574513 ], [ 22.25859358203455, 48.30713920188829 ], [ 22.249737485285081, 48.313353109680925 ], [ 22.2489344320425, 48.315852100674114 ], [ 22.263071913092435, 48.335585235853209 ], [ 22.270750778739632, 48.339861311667427 ], [ 22.272298692313779, 48.343325326607442 ], [ 22.270822648291787, 48.345583310514968 ], [ 22.24937649412264, 48.357027089549945 ], [ 22.255067400626316, 48.359888145888185 ], [ 22.270618265823398, 48.362391301893396 ], [ 22.27363216954959, 48.365992331709585 ], [ 22.270238036862722, 48.37255329446171 ], [ 22.263308870914077, 48.381331221399833 ], [ 22.248827740445407, 48.390173071143593 ], [ 22.25410561265047, 48.394629122544742 ], [ 22.268292436314834, 48.399271264647091 ], [ 22.275607287896783, 48.40422733700396 ], [ 22.279452136342883, 48.410021373723957 ], [ 22.276558078030021, 48.413165343580395 ], [ 22.236830148854139, 48.418737938611145 ], [ 22.22802808639274, 48.423356848009234 ], [ 22.212244168104053, 48.423250688480188 ], [ 22.20951725927851, 48.422380144137207 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.351223193671117, 48.11445818656496 ], [ 22.34535730447304, 48.123481147885762 ], [ 22.341554345206575, 48.128840944920142 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.62 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.20951725927851, 48.422380144137207 ], [ 22.178450583204111, 48.412462350458725 ], [ 22.172487700255804, 48.407792379196003 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 340.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.172487700255804, 48.407792379196003 ], [ 22.161932961027254, 48.399526188276248 ], [ 22.146076163379263, 48.394147029792123 ], [ 22.137256409549675, 48.385262944796303 ], [ 22.131467457016846, 48.384449886510204 ], [ 22.129196532837582, 48.381657864577932 ], [ 22.12222082096466, 48.370522798199772 ], [ 22.116512904430461, 48.36810774177561 ], [ 22.113261000018422, 48.364605709722056 ], [ 22.110949362526224, 48.349232692773398 ], [ 22.09966173569228, 48.335259584180541 ], [ 22.088883874162541, 48.331585477072736 ], [ 22.086331971402384, 48.327870453187963 ], [ 22.091407223846186, 48.315632509541956 ], [ 22.089563327330609, 48.311474492338299 ], [ 22.085083335928704, 48.312062446802955 ], [ 22.073408229804578, 48.319344325537848 ], [ 22.069595380035242, 48.313542289808446 ], [ 22.073413535990696, 48.305851330988943 ], [ 22.068174669388302, 48.301159280092058 ], [ 22.063705683663187, 48.301518235118941 ], [ 22.058410639766198, 48.304596180540869 ], [ 22.052562506256486, 48.311783118252762 ], [ 22.03560266223591, 48.308650948675869 ], [ 22.02221471698067, 48.309257813395796 ], [ 22.011449853825898, 48.305576705821458 ], [ 21.99612711542769, 48.297447555023339 ], [ 21.979792533532908, 48.282653396379558 ], [ 21.961710084964199, 48.262332222249263 ], [ 21.95031451875429, 48.256100693883482 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 346.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.95031451875429, 48.256100693883482 ], [ 21.936784520101344, 48.248701976799865 ], [ 21.930116769195767, 48.23916591377656 ], [ 21.926799829255021, 48.23725788140051 ], [ 21.907718812605513, 48.242285686710822 ], [ 21.903961832754167, 48.24219764915275 ], [ 21.882491114858048, 48.234583435967643 ], [ 21.873942157285285, 48.23460634947287 ], [ 21.859385151368613, 48.238135201208415 ], [ 21.838231554977277, 48.225034994267368 ], [ 21.81510472284139, 48.222856762586012 ], [ 21.807877876984886, 48.217645691475859 ], [ 21.80523306200676, 48.210031668980456 ], [ 21.794698276894021, 48.202905565992758 ], [ 21.788622337007972, 48.201608505156216 ], [ 21.778124292899708, 48.205915397636737 ], [ 21.753172553790233, 48.200021149540156 ], [ 21.743908719859771, 48.19474905802543 ], [ 21.732930025347358, 48.183716953232427 ], [ 21.69014460486672, 48.167740530697174 ], [ 21.675698769402238, 48.1637003873807 ], [ 21.663204163082572, 48.163926846155682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 352.7 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.663204163082572, 48.163926846155682 ], [ 21.660313842387623, 48.163979231838525 ], [ 21.651858788879562, 48.168331144872219 ], [ 21.638245619294445, 48.178948002631444 ], [ 21.617204524908633, 48.187987786575043 ], [ 21.609629543734631, 48.188930710304312 ], [ 21.561428032988672, 48.178241230443938 ], [ 21.525644545538999, 48.175436906330056 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.525644545538999, 48.175436906330056 ], [ 21.520973315336658, 48.175070825647829 ], [ 21.487396454396318, 48.176649487050931 ], [ 21.481293623693507, 48.170530429107835 ], [ 21.467058738029163, 48.168757286368709 ], [ 21.458857528025021, 48.159870725847682 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 353.75 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.458857528025021, 48.159870725847682 ], [ 21.454919096382, 48.155603171287325 ], [ 21.445563219020556, 48.152361079538061 ], [ 21.431067836901303, 48.128160946582518 ], [ 21.422224011579921, 48.122418860161325 ], [ 21.420551518429978, 48.119911685865716 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 468.86 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.420551518429978, 48.119911685865716 ], [ 21.419733109153267, 48.118684837969852 ], [ 21.423017283885176, 48.110089875483681 ], [ 21.432781425565611, 48.101445977405263 ], [ 21.446497499495965, 48.094976119044759 ], [ 21.453684589921135, 48.089235194216293 ], [ 21.454168638361658, 48.086962199598098 ], [ 21.438272767188671, 48.084909041316422 ], [ 21.4367478375666, 48.082121028136427 ], [ 21.442800134648085, 48.067427096068201 ], [ 21.44403432091832, 48.058767113352296 ], [ 21.440574678388099, 48.04357308674728 ], [ 21.436934735575417, 48.041868050872324 ], [ 21.431096749656874, 48.042615992206699 ], [ 21.42326367239653, 48.04788391104821 ], [ 21.41717171908509, 48.047250849823698 ], [ 21.41483286470141, 48.04123482937073 ], [ 21.416470069668641, 48.031674851193038 ], [ 21.407364148097187, 48.030271760683966 ], [ 21.371165548305665, 48.030626189247812 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 469.85 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.371165548305665, 48.030626189247812 ], [ 21.360329384923197, 48.03073228854025 ], [ 21.348850595276197, 48.023988177629114 ], [ 21.338358672231973, 48.02299607263101 ], [ 21.309797723834247, 48.027409784147913 ], [ 21.287352740444575, 48.031998556635216 ], [ 21.27540868433039, 48.037357434233535 ], [ 21.265350565132437, 48.045059329074782 ], [ 21.264580314457728, 48.056473315245526 ], [ 21.250574489869344, 48.051933177150097 ], [ 21.231594848768736, 48.040374993555496 ], [ 21.230593971815182, 48.035083986850935 ], [ 21.23136508689905, 48.032507669667048 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.06 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.23136508689905, 48.032507669667048 ], [ 21.232358093405082, 48.029190007000715 ], [ 21.230537176149223, 48.025931990811067 ], [ 21.224187249743608, 48.024135928855564 ], [ 21.184524410111244, 48.026347530181205 ], [ 21.171491559039627, 48.022742401287772 ], [ 21.158283954146981, 48.012120818825167 ], [ 21.146502300789514, 48.010369319642471 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 470.49 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.107027302366891, 47.945242777204221 ], [ 21.107141487807645, 47.945896519411335 ], [ 21.138211507686108, 47.995187168113162 ], [ 21.139738759047262, 48.003946647012953 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.082589727575666, 47.921602549554919 ], [ 21.08758408365555, 47.929106617216135 ], [ 21.098813956376642, 47.932169727090084 ], [ 21.104749817310914, 47.937036783913364 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.11 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.055526142043448, 47.882544990866613 ], [ 21.053256099346818, 47.891485296886344 ], [ 21.052626905158458, 47.900385284973474 ], [ 21.055123778608579, 47.905542306437162 ], [ 21.058470680437487, 47.909143338184705 ], [ 21.071577511412169, 47.913671466525557 ], [ 21.081442321372016, 47.919878560786522 ], [ 21.082589727575666, 47.921602549554919 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 549.31 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.995442505453447, 47.787551509281442 ], [ 20.998311660565491, 47.788495811306213 ], [ 21.002509663396648, 47.787331854146537 ], [ 21.016168675959054, 47.783425992817641 ], [ 21.029403605623436, 47.783392124803811 ], [ 21.03392753655967, 47.785448168971548 ], [ 21.030538146406634, 47.804056123346292 ], [ 21.027564110147519, 47.806429092100359 ], [ 21.019138098193594, 47.808988006959702 ], [ 21.013551028900068, 47.81352394769138 ], [ 21.012638919017263, 47.818742935624527 ], [ 21.016354759590158, 47.825108969231998 ], [ 21.039231526728138, 47.830129194148341 ], [ 21.053807306271825, 47.836569335861498 ], [ 21.054184244521963, 47.839334337338883 ], [ 21.049010185722036, 47.843199283199773 ], [ 21.046421158196246, 47.845133256130559 ], [ 21.045263998565037, 47.852632240417165 ], [ 21.051612805855356, 47.859812299589613 ], [ 21.058021487470299, 47.872717355565257 ], [ 21.055526142043448, 47.882544990866613 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.66 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.950858468475442, 47.726337222602787 ], [ 20.952760163143772, 47.731042393564294 ], [ 20.971917759058002, 47.744824576160681 ], [ 20.973074645857224, 47.749688584364463 ], [ 20.963686380687403, 47.764108481389556 ], [ 20.963681244655273, 47.770291478027808 ], [ 20.966853184590644, 47.772279508317737 ], [ 20.977234102159024, 47.773484610922033 ], [ 20.984693994322928, 47.776601683372171 ], [ 20.991763742832362, 47.786340747626504 ], [ 20.995442505453447, 47.787551509281442 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 550.57 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.867434050393211, 47.676409708542415 ], [ 20.872944750099734, 47.678016633891914 ], [ 20.926276029320661, 47.697884151712934 ], [ 20.941572690449497, 47.709645295923472 ], [ 20.949832337119808, 47.723798369474778 ], [ 20.950858468475442, 47.726337222602787 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.811711149936961, 47.675276079121325 ], [ 20.825803121439151, 47.67264216874365 ], [ 20.840800993000549, 47.674782315921625 ], [ 20.863434861552772, 47.675243541219317 ], [ 20.867434050393211, 47.676409708542415 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 551.54 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.740350678889417, 47.628699492536633 ], [ 20.751130331279199, 47.635592450888183 ], [ 20.764329130628752, 47.641543577965969 ], [ 20.779705750602155, 47.655162721953793 ], [ 20.781492629159942, 47.660292735772849 ], [ 20.803665151170165, 47.676779945322536 ], [ 20.811711149936961, 47.675276079121325 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 553.34 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.520840538698824, 47.483709771790288 ], [ 20.533212759107901, 47.485947394477421 ], [ 20.542323707386085, 47.485978484510795 ], [ 20.556180759610349, 47.480073625809183 ], [ 20.577172719662371, 47.476613836337563 ], [ 20.585240605963598, 47.479790913663514 ], [ 20.607310134438396, 47.49608812108098 ], [ 20.601269987052433, 47.504476054489608 ], [ 20.598928878294977, 47.510080027573125 ], [ 20.599378772236417, 47.514917028688281 ], [ 20.601833587735594, 47.522836047485882 ], [ 20.610466386440965, 47.529939127879423 ], [ 20.624347191870783, 47.535486261285421 ], [ 20.631992125326992, 47.536577336640782 ], [ 20.643349976170455, 47.540613446287132 ], [ 20.653062907847708, 47.541353542564863 ], [ 20.662822783987156, 47.54461863695925 ], [ 20.667744603390823, 47.55174868102651 ], [ 20.680960347337653, 47.560232806001451 ], [ 20.692197175301242, 47.565401913843189 ], [ 20.707233996003975, 47.569854059941861 ], [ 20.709377943004931, 47.571799080033962 ], [ 20.716339494609624, 47.590716135706408 ], [ 20.718527256362552, 47.601142150723767 ], [ 20.716840139167974, 47.607009130134429 ], [ 20.714870031680501, 47.612406106290898 ], [ 20.740350678889417, 47.628699492536633 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 557.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.450805717676111, 47.450473451048772 ], [ 20.452833865090042, 47.455020620974452 ], [ 20.461517680198458, 47.461452702457784 ], [ 20.467699603255465, 47.463394762189409 ], [ 20.490915464441965, 47.463962991227774 ], [ 20.502233250899518, 47.470990098188047 ], [ 20.513408948887502, 47.482133200544773 ], [ 20.517016910294153, 47.483018235640543 ], [ 20.520840538698824, 47.483709771790288 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 558.14 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.430706709752997, 47.394111479341213 ], [ 20.419256231897588, 47.400016329837491 ], [ 20.401451340192203, 47.399498154610669 ], [ 20.38188550567898, 47.396819962975769 ], [ 20.376923489624431, 47.398837912871699 ], [ 20.377502290512361, 47.408038911931634 ], [ 20.379957052218206, 47.418490928121805 ], [ 20.38286995424421, 47.42231695339359 ], [ 20.409110798422343, 47.422840213059871 ], [ 20.423470633499267, 47.426834351584127 ], [ 20.437228422252904, 47.433086483121528 ], [ 20.446443208340291, 47.440692568694715 ], [ 20.450805717676111, 47.450473451048772 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.475743248037034, 47.309299811176032 ], [ 20.476901802887518, 47.311695964960997 ], [ 20.476552742538964, 47.314655959249642 ], [ 20.471694681777759, 47.318748908393715 ], [ 20.449914576717244, 47.329254685638361 ], [ 20.445731452887809, 47.33613263959942 ], [ 20.442590086729819, 47.354068595162964 ], [ 20.435400742042077, 47.372016510466239 ], [ 20.439022404618097, 47.386882535568219 ], [ 20.436136325222297, 47.391311502955659 ], [ 20.430706709752997, 47.394111479341213 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 559.58 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.292380158978052, 47.192070186604852 ], [ 20.291834712063356, 47.19955688035968 ], [ 20.29291101678605, 47.208243230720342 ], [ 20.291222790916997, 47.219382205334519 ], [ 20.294151580779943, 47.228491227072233 ], [ 20.301531361426093, 47.236926292535891 ], [ 20.31105220969663, 47.241587383434911 ], [ 20.326922014574887, 47.246596535116012 ], [ 20.340736766703554, 47.254702665465516 ], [ 20.350219488851803, 47.265315750616232 ], [ 20.356130370971997, 47.269309805457958 ], [ 20.365068296558363, 47.27049189266382 ], [ 20.371553276779899, 47.269705957816711 ], [ 20.394544411983027, 47.257446193677943 ], [ 20.405078252849503, 47.262153293842147 ], [ 20.412147216464813, 47.262081363322032 ], [ 20.42132124323776, 47.258457456615346 ], [ 20.440852020641017, 47.263881645597763 ], [ 20.452738795087722, 47.271408757082114 ], [ 20.461128685283487, 47.274387837817734 ], [ 20.465214550549003, 47.279655873804408 ], [ 20.470413125563908, 47.298275910898042 ], [ 20.475743248037034, 47.309299811176032 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 560.39 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.198233015387963, 47.174412236750889 ], [ 20.205475184195212, 47.176027395465383 ], [ 20.214146125623209, 47.176519480016786 ], [ 20.236269054318015, 47.174100699961102 ], [ 20.246913978095844, 47.174932804287529 ], [ 20.254363772770823, 47.182687871397142 ], [ 20.271107729304848, 47.187177321026894 ], [ 20.284743902172284, 47.188437647712718 ], [ 20.292380158978052, 47.192070186604852 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 578.92 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.216434052744148, 47.039564402976829 ], [ 20.21289003490325, 47.038839578982525 ], [ 20.203824081133121, 47.039014489853969 ], [ 20.199165055434648, 47.041501441816521 ], [ 20.195166965942125, 47.046777398522586 ], [ 20.196595629442715, 47.062456399503162 ], [ 20.192818519677687, 47.068662357229073 ], [ 20.186045488383598, 47.071947288315002 ], [ 20.182682390774165, 47.077489250947856 ], [ 20.193591843334939, 47.100587339514853 ], [ 20.195304609506525, 47.11123434760394 ], [ 20.192022467124136, 47.11884830907821 ], [ 20.188073387304406, 47.123670266776067 ], [ 20.183185382280925, 47.125223216786338 ], [ 20.172105441814303, 47.12528010844418 ], [ 20.163057552035291, 47.122472021970552 ], [ 20.172359023726646, 47.14502109446245 ], [ 20.184531509940207, 47.166124197506839 ], [ 20.193054312767771, 47.173257275179381 ], [ 20.198233015387963, 47.174412236750889 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 581.43 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.273924882257933, 47.029157957150801 ], [ 20.286354820883144, 47.029688306706596 ], [ 20.285750660926283, 47.037451294959141 ], [ 20.281679558034703, 47.043414250147116 ], [ 20.275580522091612, 47.046740187224366 ], [ 20.251929560106777, 47.051141951577662 ], [ 20.238230643037927, 47.050825817586812 ], [ 20.231768720370148, 47.048856755554169 ], [ 20.219099973249939, 47.040109638141054 ], [ 20.216434052744148, 47.039564402976829 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 582.64 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.121075716412385, 46.945615075022637 ], [ 20.106742610514615, 46.943985616038674 ], [ 20.103767520915746, 46.9490895825111 ], [ 20.106573358305322, 46.956135604282686 ], [ 20.115587191063977, 46.961701688007224 ], [ 20.128374076784127, 46.963814811276244 ], [ 20.12994299415908, 46.967347823563543 ], [ 20.126879831634028, 46.975888786445751 ], [ 20.127860652036659, 46.98420478944378 ], [ 20.131510570522718, 46.987164822826323 ], [ 20.140980476894288, 46.989087913441701 ], [ 20.16564409452095, 47.00082514610768 ], [ 20.175310976175993, 47.003900238543551 ], [ 20.20692271004749, 47.008222545022804 ], [ 20.216840576837715, 47.01199963920029 ], [ 20.230083246500477, 47.024217759434919 ], [ 20.23637514182192, 47.027555818253653 ], [ 20.273924882257933, 47.029157957150801 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.42 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.040110422958819, 46.85924940225469 ], [ 20.042888588885109, 46.866169056174869 ], [ 20.047805378736161, 46.874947096911285 ], [ 20.056488162079237, 46.883027174950008 ], [ 20.065378034526766, 46.886753258688501 ], [ 20.071075005897093, 46.886628314896932 ], [ 20.078567154799419, 46.877427395938525 ], [ 20.102343807571479, 46.887753619966354 ], [ 20.116507525621824, 46.897519750101921 ], [ 20.124199259301157, 46.908287816526027 ], [ 20.130473154698024, 46.911629874640951 ], [ 20.142916041840778, 46.913723995595554 ], [ 20.149274950818068, 46.916383054894524 ], [ 20.154274807246651, 46.921945099709923 ], [ 20.156486609725235, 46.930795113926656 ], [ 20.15485950640317, 46.936204093394977 ], [ 20.147207384918641, 46.944025011804968 ], [ 20.135438382630397, 46.947247894571284 ], [ 20.121075716412385, 46.945615075022637 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.38 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.157143643942224, 46.716681691193124 ], [ 20.153775065902749, 46.716806266633192 ], [ 20.146741041817755, 46.719842195087679 ], [ 20.140773968538834, 46.725004132903194 ], [ 20.135320753658178, 46.736852069444289 ], [ 20.120228765039652, 46.740338918885186 ], [ 20.111499691272769, 46.746258828420324 ], [ 20.092527411282347, 46.76488962723478 ], [ 20.089922324781199, 46.769787597866099 ], [ 20.090124191033638, 46.776223594880292 ], [ 20.082752003698854, 46.787266512811676 ], [ 20.067160937528669, 46.794621354839599 ], [ 20.063471843520492, 46.800141313986295 ], [ 20.058751529274108, 46.816616253205126 ], [ 20.047345415393707, 46.825131134475576 ], [ 20.03747410614146, 46.842682023206386 ], [ 20.037794880500531, 46.853482017269805 ], [ 20.040110422958819, 46.85924940225469 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 583.04 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.175307183920967, 46.518978924283815 ], [ 20.168285930583302, 46.524652571669876 ], [ 20.165529817190102, 46.530920539252271 ], [ 20.166948658056253, 46.538343546822375 ], [ 20.170298588282744, 46.540830576950896 ], [ 20.167185472922789, 46.547307541033788 ], [ 20.16038537395891, 46.554029469467757 ], [ 20.148529344164565, 46.558622349712778 ], [ 20.142029238332491, 46.565591281067199 ], [ 20.141579832537257, 46.585531258950475 ], [ 20.144765735677812, 46.589387286841053 ], [ 20.150510663965974, 46.591325341283301 ], [ 20.15868165153606, 46.589731422368153 ], [ 20.163108589327742, 46.591592464265659 ], [ 20.16533050360545, 46.59516348269262 ], [ 20.165562262511525, 46.606882474887001 ], [ 20.182459710416069, 46.629194620553498 ], [ 20.191213118958135, 46.655626683606535 ], [ 20.195504977291431, 46.661378720464938 ], [ 20.203984844816915, 46.665536799124375 ], [ 20.218827684477091, 46.669366941172221 ], [ 20.22130558259278, 46.67363996131072 ], [ 20.219651537497512, 46.676298943340228 ], [ 20.205487471250724, 46.683290799314882 ], [ 20.198291362811066, 46.690450722779225 ], [ 20.191873876760997, 46.715784639135677 ], [ 20.187706814571335, 46.719903594843771 ], [ 20.181171816020097, 46.721593529987231 ], [ 20.163480019943105, 46.716447361805614 ], [ 20.157143643942224, 46.716681691193124 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 703.33 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.221579687607193, 46.333473807854759 ], [ 20.221413211903226, 46.348921239343539 ], [ 20.216755177227988, 46.35186619133853 ], [ 20.203196254072957, 46.351775060512338 ], [ 20.196262182964475, 46.357114988143778 ], [ 20.197352026810496, 46.364522992057793 ], [ 20.206603751430848, 46.375613072770129 ], [ 20.206981535166854, 46.386191066943702 ], [ 20.205052278360849, 46.399394037253941 ], [ 20.201295224095176, 46.403078997572301 ], [ 20.193288258209137, 46.403535918931908 ], [ 20.187690183629094, 46.408720860272844 ], [ 20.191402786207124, 46.427297880478122 ], [ 20.197176444345107, 46.442544923087418 ], [ 20.203670163579943, 46.454626976366839 ], [ 20.205609921821594, 46.465982985452719 ], [ 20.203572757535628, 46.474588958273046 ], [ 20.185016306061538, 46.501749753649442 ], [ 20.181542075990972, 46.513940709965929 ], [ 20.175307183920967, 46.518978924283815 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisza", "discharge": 890.45 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.153776543720642, 46.252809572611078 ], [ 20.146444839547804, 46.238996608917269 ], [ 20.121707526629798, 46.211614394127892 ], [ 20.105747029308681, 46.190935258460406 ], [ 20.0971571831845, 46.185609179795208 ], [ 20.066512059399408, 46.150288915671759 ], [ 20.063293250165671, 46.141602892519884 ], [ 20.06500435810911, 46.135731913715233 ], [ 20.078338416310814, 46.129171048670017 ], [ 20.081683513004066, 46.123399086722259 ], [ 20.080609240796022, 46.120429596326154 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 888.68 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.080609240796022, 46.120429596326154 ], [ 20.079221662591742, 46.116594069240378 ], [ 20.070213855703173, 46.109406988373756 ], [ 20.046091246299419, 46.096501767304233 ], [ 20.042343353378278, 46.09214473499523 ], [ 20.046942432341922, 46.08690778425003 ], [ 20.068697474532552, 46.078779001549087 ], [ 20.07278868845771, 46.076373992652798 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.07278868845771, 46.076373992652798 ], [ 20.079703543141875, 46.072309114272883 ], [ 20.088917706136474, 46.0616012129152 ], [ 20.085618098413221, 46.042810198116818 ], [ 20.079000343277059, 46.032316143834322 ], [ 20.070117553341049, 46.024213065316971 ], [ 20.06579562306608, 46.021894026119888 ], [ 20.04809573186164, 46.021302855218025 ], [ 20.038003859524917, 46.017720761945704 ], [ 20.061954981437573, 46.004903004229803 ], [ 20.073067122049704, 45.994768120907715 ], [ 20.079524120695861, 45.993082184922095 ], [ 20.099556004544201, 45.993345377345385 ], [ 20.102990009435935, 45.99217041188404 ], [ 20.106213088282374, 45.987306446909216 ], [ 20.097132426955135, 45.972764373084978 ], [ 20.095959616858039, 45.96351037027479 ], [ 20.098673775457829, 45.95471740473991 ], [ 20.097195917973512, 45.947969396517394 ], [ 20.106853040977676, 45.936766013666748 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 886.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.106853040977676, 45.936766013666748 ], [ 20.109441131938354, 45.933763527950013 ], [ 20.114997417918023, 45.917787595449731 ], [ 20.13299157526566, 45.904836780743786 ], [ 20.136562655805243, 45.899766819651141 ], [ 20.134510815079189, 45.89229780716294 ], [ 20.094142516668736, 45.867876441502659 ], [ 20.091902644434931, 45.862001425112993 ], [ 20.093733718111441, 45.857748446822349 ], [ 20.099259785981651, 45.852792503960814 ], [ 20.146649924358741, 45.832616978675176 ], [ 20.152856101112949, 45.82195504835687 ], [ 20.154934267965025, 45.812891076405577 ], [ 20.15447667677774, 45.792197091429358 ], [ 20.153750097208793, 45.771029104085677 ], [ 20.15563111841762, 45.766260055975494 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 889.98 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.15563111841762, 45.766260055975494 ], [ 20.156583222611875, 45.76384613810631 ], [ 20.170670412470347, 45.750205285970253 ], [ 20.172602503548973, 45.745036309411958 ], [ 20.17025466755705, 45.737319294124134 ], [ 20.165059809495659, 45.731501249219924 ], [ 20.137178272282718, 45.715627996583017 ], [ 20.132169337158395, 45.713724950281488 ], [ 20.110035424116198, 45.715406736370497 ], [ 20.102020494620081, 45.714014660048527 ], [ 20.101030605465265, 45.708673656357035 ], [ 20.106851772872297, 45.698450721431293 ], [ 20.098729037433124, 45.68717765426954 ], [ 20.101231110627545, 45.682729682306864 ], [ 20.11473926380437, 45.67112582291513 ], [ 20.117406362530708, 45.665311853550904 ], [ 20.116421525593594, 45.657217851884305 ], [ 20.092338462925873, 45.615827660368943 ], [ 20.085718538277394, 45.613824598694741 ], [ 20.073953602243382, 45.61381748621438 ], [ 20.069338673249742, 45.611474444542971 ], [ 20.068383923454096, 45.60814089428677 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 892.81 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.068383923454096, 45.60814089428677 ], [ 20.06773279003886, 45.605867433770641 ], [ 20.070640874122713, 45.600755466998052 ], [ 20.076004919329119, 45.596940521483653 ], [ 20.082767918853957, 45.59504558863582 ], [ 20.10096080409107, 45.595895761601788 ], [ 20.119684613844075, 45.600450936916545 ], [ 20.129471557758993, 45.600569030935212 ], [ 20.139021570683713, 45.597228124767831 ], [ 20.140038675224684, 45.593938589767994 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 893.72 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.140038675224684, 45.593938589767994 ], [ 20.140625662830232, 45.59204014551262 ], [ 20.139145748137466, 45.588046135220132 ], [ 20.130564939096672, 45.580649059547198 ], [ 20.117007090229453, 45.576635934095876 ], [ 20.10816734513099, 45.566003859389539 ], [ 20.10271259941257, 45.554426818026293 ], [ 20.112243977676417, 45.5322519306687 ], [ 20.122883160683475, 45.519789043691809 ], [ 20.141886297300289, 45.507433237788533 ], [ 20.154083551046753, 45.490851369779627 ], [ 20.176069771452749, 45.473311596646674 ], [ 20.213011961173613, 45.453196969199801 ], [ 20.220916038254565, 45.446998050711841 ], [ 20.225072214240537, 45.436676100029928 ], [ 20.226722526641904, 45.420005131869296 ], [ 20.204826107358144, 45.395987945204425 ], [ 20.202301292184547, 45.387110929123189 ], [ 20.204947442152509, 45.378535962994029 ], [ 20.213678597812056, 45.368023056513103 ], [ 20.219954631863327, 45.364486119020277 ], [ 20.233631613104034, 45.361610253006496 ], [ 20.247875683793456, 45.353942396419548 ], [ 20.264912825302783, 45.341842569646289 ], [ 20.267979885185127, 45.337886603031876 ], [ 20.266146967006367, 45.334102589028582 ], [ 20.253928108028248, 45.330177476111707 ], [ 20.237302876071983, 45.294754351283409 ], [ 20.240153953601599, 45.289867383601134 ], [ 20.246609016986028, 45.284732449380115 ], [ 20.256369020237489, 45.281856545096673 ], [ 20.277039102004441, 45.271801752246816 ], [ 20.295790305951719, 45.255893946178432 ], [ 20.302391448161448, 45.246628017660498 ], [ 20.318501979335277, 45.214257201853734 ], [ 20.318736069336865, 45.209447208108678 ], [ 20.317781018427119, 45.201825470133187 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Tisa", "discharge": 920.28 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.317781018427119, 45.201825470133187 ], [ 20.317054334692653, 45.196026205446195 ], [ 20.313148565268609, 45.185006178422512 ], [ 20.305143730546561, 45.178570108309884 ], [ 20.28822891801714, 45.173454952520878 ], [ 20.284928064735841, 45.166675927559162 ], [ 20.279595615684809, 45.139186903237245 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 78.623 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.045479375300733, 47.969060026831713 ], [ 21.044452362330052, 47.972097159797208 ], [ 21.048511127458788, 47.981680195047019 ], [ 21.061256229243135, 47.974062326888983 ], [ 21.073215243176168, 47.970526448450954 ], [ 21.077962284454681, 47.967550497981293 ], [ 21.079177317150304, 47.965780510822903 ], [ 21.073247527028585, 47.957708456918937 ], [ 21.074693674697993, 47.950682475230415 ], [ 21.079374772445568, 47.945188525272819 ], [ 21.086124794685457, 47.94254159400468 ], [ 21.097697664316549, 47.945619708549678 ], [ 21.107027302366891, 47.945242777204221 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 75.582 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.931364299406326, 48.000935640574703 ], [ 20.931684356322418, 47.999684016070127 ], [ 20.927932425272356, 47.997467979324817 ], [ 20.930761498910837, 47.993489010517941 ], [ 20.935865673364216, 47.984357066672082 ], [ 20.934550757838025, 47.980859055467299 ], [ 20.936134793984653, 47.978879072853644 ], [ 20.941390795044661, 47.977536126228273 ], [ 20.943654963471907, 47.969407153673913 ], [ 20.94700600232634, 47.966828189408425 ], [ 20.956069927643927, 47.967965279011253 ], [ 20.96096092662675, 47.96683232882679 ], [ 20.964748983538282, 47.96336136839323 ], [ 20.964501071516786, 47.959454368190464 ], [ 20.983896102614022, 47.953320565745024 ], [ 20.998110011639294, 47.954022707244263 ], [ 21.005393862964738, 47.958958777701177 ], [ 21.014243816264994, 47.958936866243597 ], [ 21.025912841577352, 47.954934985148128 ], [ 21.034185819380735, 47.953966068274596 ], [ 21.035991762402233, 47.956114085003286 ], [ 21.026916764138893, 47.958188993225278 ], [ 21.024123696729113, 47.961942963072758 ], [ 21.043979613777697, 47.960855162080868 ], [ 21.046966513281411, 47.964662189692064 ], [ 21.045479375300733, 47.969060026831713 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.701 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.854316762844466, 48.097675803784618 ], [ 20.858338607839205, 48.096069222743971 ], [ 20.863195706361523, 48.090515274349961 ], [ 20.859325893277276, 48.083061240685041 ], [ 20.861199932783812, 48.080837260272695 ], [ 20.870217927107426, 48.078853352157353 ], [ 20.87137596111333, 48.077060364319273 ], [ 20.867808034614828, 48.074653330041635 ], [ 20.86805010469218, 48.071457334817225 ], [ 20.881573097448879, 48.068485471906421 ], [ 20.886139313815924, 48.057655524290247 ], [ 20.892843445328499, 48.0501025958458 ], [ 20.899326716290517, 48.036361669340728 ], [ 20.916000924016561, 48.022964844899626 ], [ 20.92930316256686, 48.008995986237792 ], [ 20.931364299406326, 48.000935640574703 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.276 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.8210051282203, 48.111201200071179 ], [ 20.822167506220389, 48.109481852344587 ], [ 20.830363562368198, 48.104956936633911 ], [ 20.844615560768105, 48.101551081759723 ], [ 20.854316762844466, 48.097675803784618 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 24.473 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.640239955500551, 48.267509144802432 ], [ 20.645069965648116, 48.266224978946845 ], [ 20.661656107047133, 48.255830151866043 ], [ 20.67030008321894, 48.254766239332703 ], [ 20.686677171018083, 48.246877408097831 ], [ 20.700055491772655, 48.229269553347237 ], [ 20.710382452694414, 48.228487657558624 ], [ 20.7293274836771, 48.222517851496114 ], [ 20.736905456282241, 48.221864927547429 ], [ 20.749219584272108, 48.213141056245817 ], [ 20.771924596351624, 48.207064288217971 ], [ 20.774440695129559, 48.205319873905516 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 14.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.345131271625387, 48.487447546781262 ], [ 20.342288551672819, 48.48267427841634 ], [ 20.342943087970454, 48.47414103794187 ], [ 20.342943087970454, 48.464593678140268 ], [ 20.329197825720076, 48.451716363759203 ], [ 20.314798027172063, 48.438546294019055 ], [ 20.31632527853321, 48.430729473199754 ], [ 20.316543457299094, 48.423780178398594 ], [ 20.314143490874422, 48.417988373500101 ], [ 20.314143490874422, 48.41248554759224 ], [ 20.310434451854476, 48.410747689357088 ], [ 20.308907200493326, 48.403795662462656 ], [ 20.301270943687555, 48.399015592699023 ], [ 20.298870977262887, 48.394235073739097 ], [ 20.297780083433491, 48.385831860931219 ], [ 20.294507401945307, 48.376557739814693 ], [ 20.299307334794644, 48.367136981050493 ], [ 20.305198161473381, 48.364527847382391 ], [ 20.306725412834528, 48.359309179051969 ], [ 20.313270775810903, 48.356264708947073 ], [ 20.315016205937933, 48.350175222920726 ], [ 20.322434283977824, 48.342199795452593 ], [ 20.327452395593038, 48.333787992636594 ], [ 20.328979646954188, 48.326825451008801 ], [ 20.325816054848943, 48.325302268306515 ], [ 20.32014340693609, 48.321022606797221 ], [ 20.320361585701967, 48.311881788420621 ], [ 20.314798027172053, 48.305859560941698 ], [ 20.316434367916141, 48.294393597553402 ], [ 20.318397976809052, 48.288877406684719 ], [ 20.320400379462559, 48.28864603826591 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 6.075 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.522693478594913, 48.661290505508987 ], [ 20.5216314972254, 48.658640579063039 ], [ 20.518358815737212, 48.656550844591742 ], [ 20.51879517326897, 48.653307981664469 ], [ 20.520540603396, 48.648479332596573 ], [ 20.512249810292602, 48.641343616639588 ], [ 20.507013519911503, 48.63644173188105 ], [ 20.502540855210981, 48.632044047590888 ], [ 20.502104497679227, 48.62807859378443 ], [ 20.497304564829886, 48.624833899785081 ], [ 20.498177279893405, 48.622093773499145 ], [ 20.491741006299971, 48.614377355544264 ], [ 20.482686587515989, 48.603990781637883 ], [ 20.481704783069532, 48.591221024253919 ], [ 20.479632084793682, 48.587324523438809 ], [ 20.474723062561402, 48.583572053495359 ], [ 20.469268593414427, 48.578014999714476 ], [ 20.465232286245662, 48.574622731557483 ], [ 20.464686839330966, 48.569930921791475 ], [ 20.461305068459836, 48.564661139472136 ], [ 20.455086973632287, 48.562206532865289 ], [ 20.443850767189517, 48.560329400375572 ], [ 20.436869046681384, 48.558018987834309 ], [ 20.425523750855675, 48.55383109613819 ], [ 20.420287460474579, 48.54993171292589 ], [ 20.413087561200566, 48.54964285777065 ], [ 20.401414997226041, 48.549859499291664 ], [ 20.396724153759642, 48.547765259069969 ], [ 20.396833243142581, 48.543865408397579 ], [ 20.392469667825001, 48.537798376693416 ], [ 20.392906025356758, 48.534547882005675 ], [ 20.388978807570933, 48.528985440345231 ], [ 20.384833411019233, 48.526095619091997 ], [ 20.382978891509264, 48.52168832418613 ], [ 20.37916076310638, 48.517786464408459 ], [ 20.381233461382234, 48.513161648814716 ], [ 20.385269768550994, 48.511860843362591 ], [ 20.386797019912148, 48.509620489022815 ], [ 20.385269768550994, 48.50658501222874 ], [ 20.385378857933933, 48.503549353611426 ], [ 20.381669818913991, 48.50080264866358 ], [ 20.374906277171739, 48.497983507236505 ], [ 20.362797355665446, 48.494965406441551 ], [ 20.345561233161003, 48.488169503861222 ], [ 20.345131271625387, 48.487447546781262 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 3.264 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.472724787005678, 48.708525783274411 ], [ 20.476032135156675, 48.70761642063097 ], [ 20.482468408750108, 48.706464594974605 ], [ 20.484650196408897, 48.703152949357751 ], [ 20.492286453214664, 48.702145013959949 ], [ 20.494031883341698, 48.699553087392793 ], [ 20.502431765828039, 48.694872881925143 ], [ 20.506686251762684, 48.693432731164265 ], [ 20.508104413740892, 48.692568620933748 ], [ 20.508977128804407, 48.688535910431035 ], [ 20.51214072090966, 48.686303378232999 ], [ 20.513013435973175, 48.683206476161033 ], [ 20.518467905120147, 48.68010938365267 ], [ 20.522940569820673, 48.679389102287189 ], [ 20.524795089330642, 48.674995162918677 ], [ 20.525340536245341, 48.671897565519593 ], [ 20.527522323904137, 48.666278181855439 ], [ 20.523595106118311, 48.663540306388015 ], [ 20.522693478594913, 48.661290505508987 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.622 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.41050822043286, 48.769603484781101 ], [ 20.415323893550831, 48.760715728779587 ], [ 20.41586934046553, 48.755465857458091 ], [ 20.418596575039018, 48.751653963262768 ], [ 20.416523876763165, 48.745899612943518 ], [ 20.417723859975503, 48.741835205986149 ], [ 20.417014778986392, 48.739569066475319 ], [ 20.417014778986392, 48.734820633342778 ], [ 20.418487485656076, 48.73302186730097 ], [ 20.416905689603457, 48.727769102129862 ], [ 20.417014778986395, 48.726401854073387 ], [ 20.419851102942822, 48.72208398458227 ], [ 20.427923717280347, 48.719205198969782 ], [ 20.430323683705016, 48.71582241533757 ], [ 20.434359990873784, 48.714526820938012 ], [ 20.441887158296606, 48.714238906540345 ], [ 20.450068862017073, 48.713735052379704 ], [ 20.458577833886348, 48.711647602815653 ], [ 20.466868626989758, 48.710135947342231 ], [ 20.472724787005678, 48.708525783274411 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Slaná", "discharge": 2.051 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.318265203272841, 48.785874136775327 ], [ 20.320525219776385, 48.786094351782644 ], [ 20.336561359068494, 48.78731622798076 ], [ 20.347579386745387, 48.789184922266877 ], [ 20.354452017870578, 48.79126915302642 ], [ 20.365797313696287, 48.79177223023887 ], [ 20.375179000629089, 48.79565294204572 ], [ 20.385324313242464, 48.798599207939311 ], [ 20.392196944367655, 48.796946445941835 ], [ 20.395360536472896, 48.79364075857977 ], [ 20.397978681663446, 48.788969307246987 ], [ 20.40201498883221, 48.783578630635084 ], [ 20.405942206618032, 48.780128293704912 ], [ 20.407033100447428, 48.777037165452761 ], [ 20.409869424403855, 48.770782440059307 ], [ 20.41050822043286, 48.769603484781101 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 36.146 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.774440695129559, 48.205319873905516 ], [ 20.779153669210167, 48.202052363300389 ], [ 20.789392805142271, 48.193480471460148 ], [ 20.797001086205935, 48.179095556860666 ], [ 20.791155405109912, 48.166308505560352 ], [ 20.793552492210893, 48.161814532778365 ], [ 20.809448556854736, 48.155040696336975 ], [ 20.816912699665153, 48.146826776526666 ], [ 20.817497767341656, 48.143645784206655 ], [ 20.813326967679938, 48.135722746975674 ], [ 20.817851067619184, 48.130156795989521 ], [ 20.81554720482594, 48.124587776647473 ], [ 20.818675302311668, 48.119429810809855 ], [ 20.817933389428511, 48.115744805600485 ], [ 20.8210051282203, 48.111201200071179 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Sajó", "discharge": 20.55 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.320400379462559, 48.28864603826591 ], [ 20.327506940284504, 48.287824907841596 ], [ 20.336871084618252, 48.285590891465432 ], [ 20.340571236957182, 48.284045916669371 ], [ 20.348249291473181, 48.280839994419836 ], [ 20.35401524367531, 48.281519052288374 ], [ 20.363623103848525, 48.285323145784517 ], [ 20.371832143781049, 48.281516230168528 ], [ 20.379646082162143, 48.28227530862091 ], [ 20.396343144159918, 48.275355480360631 ], [ 20.403757071388782, 48.276782553728324 ], [ 20.434037937771574, 48.275179857686346 ], [ 20.442761840094608, 48.277339943905439 ], [ 20.448901708102444, 48.281692002387011 ], [ 20.457078649497277, 48.282230084375207 ], [ 20.468011672771144, 48.278518195871257 ], [ 20.48569453793996, 48.280094372477379 ], [ 20.491025560138709, 48.27777442755206 ], [ 20.496356489634323, 48.279575479784874 ], [ 20.509126444573027, 48.278446608094818 ], [ 20.510226550184182, 48.273449622772183 ], [ 20.514457559039698, 48.272003665849169 ], [ 20.519105494196967, 48.273777710938383 ], [ 20.530469446374362, 48.273052825483262 ], [ 20.540978358675968, 48.27435393008691 ], [ 20.547545245203032, 48.277797993341736 ], [ 20.559384138054764, 48.279606110824126 ], [ 20.574903080646202, 48.278340267434373 ], [ 20.58643998716137, 48.27967538201495 ], [ 20.617521979393828, 48.272332698475232 ], [ 20.620135025351281, 48.269677726827823 ], [ 20.635971961271022, 48.268643886199229 ], [ 20.640239955500551, 48.267509144802432 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": 184.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.456104988283411, 46.206512023482965 ], [ 20.462577819260694, 46.204415702330081 ], [ 20.502563785239833, 46.195387097240875 ], [ 20.540683843940055, 46.182340477603042 ], [ 20.561317881772652, 46.174978683437324 ], [ 20.614061354395695, 46.145533212688051 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Maros", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 20.614061354395695, 46.145533212688051 ], [ 20.631724295486499, 46.135672397892016 ], [ 20.639790280589384, 46.134276477563532 ], [ 20.646946225074519, 46.135119545913419 ], [ 20.65606892352843, 46.147773623958443 ], [ 20.661962825952468, 46.151076678870417 ], [ 20.675422743787351, 46.151572808850695 ], [ 20.684247743003922, 46.149291896464057 ], [ 20.688758700550775, 46.150222939501631 ], [ 20.698856448235045, 46.160175028994658 ], [ 20.70686830453463, 46.165191103136593 ], [ 20.710448276497857, 46.165611137601431 ], [ 20.714358307861328, 46.163067176868672 ], [ 20.718755482552552, 46.153206227405029 ], [ 20.72283948444128, 46.152050268020261 ], [ 20.764859883727354, 46.152696064992391 ], [ 20.779246075037026, 46.142021818449173 ], [ 20.789500477033343, 46.126449084579058 ], [ 20.800191236561414, 46.113594482825498 ], [ 20.817645537831741, 46.099072738054339 ], [ 20.839681593185521, 46.087876282152031 ], [ 20.857135894455848, 46.09181043108812 ], [ 20.876335625853201, 46.083941852604198 ], [ 20.888553636742426, 46.081823197386683 ], [ 20.909498798266817, 46.074558618956686 ], [ 20.919971379029011, 46.079401777511826 ], [ 20.920407736560765, 46.08908681940455 ], [ 20.925644026941864, 46.095139107166801 ], [ 20.936116607704061, 46.09846758233607 ], [ 20.944843758339221, 46.111174457691071 ], [ 20.957061769228449, 46.125995443808172 ], [ 20.965352562331848, 46.126600297339188 ], [ 20.974516070498769, 46.129019645049823 ], [ 20.968407065054159, 46.134765169988043 ], [ 20.978879645816352, 46.134462788881571 ], [ 20.99240672930085, 46.127205144228867 ], [ 21.00113387993601, 46.132043680258271 ], [ 20.99807937721366, 46.135436072139392 ], [ 20.983570489282702, 46.138384164999188 ], [ 20.982261416687429, 46.141710028999114 ], [ 20.989352226578497, 46.145791496608346 ], [ 20.999388449808933, 46.13861093483554 ], [ 21.005388365870605, 46.139442416245245 ], [ 21.010733745634692, 46.146556738098369 ], [ 21.006370170317112, 46.151393573971873 ], [ 21.015533678484029, 46.15230043338007 ], [ 21.041715130389512, 46.148975209164277 ], [ 21.08884174381939, 46.154718652083083 ], [ 21.10193246977213, 46.151091284181916 ], [ 21.113277765597839, 46.136881791244427 ], [ 21.14993179826552, 46.136277050615611 ], [ 21.172622389916938, 46.135067549434197 ], [ 21.189203976123746, 46.142021818449187 ], [ 21.209712780116377, 46.145347462718433 ], [ 21.223676221132639, 46.153509556013788 ], [ 21.252475818228667, 46.151998148570961 ], [ 21.262512041459107, 46.148672906092038 ], [ 21.28432991804701, 46.15411410736899 ], [ 21.29305706868217, 46.160159255661597 ], [ 21.321420308246449, 46.162879355728997 ], [ 21.323602095905237, 46.174362740079957 ], [ 21.335383749262704, 46.177384284874265 ], [ 21.346292687556655, 46.169225732907286 ], [ 21.35545619572358, 46.161065970626368 ], [ 21.354583480660061, 46.148975209164277 ], [ 21.380328575033786, 46.142928832264381 ], [ 21.392982943454772, 46.12901964504983 ], [ 21.416982607701467, 46.122971076532608 ], [ 21.436182339098824, 46.129322056042149 ], [ 21.437055054162339, 46.138393613760975 ], [ 21.475890874488808, 46.139603041888627 ], [ 21.499454181203745, 46.137486525231985 ], [ 21.520835700259887, 46.123273520731715 ], [ 21.535671856339665, 46.114501964854824 ], [ 21.556617017864053, 46.116316884083652 ], [ 21.574944034197895, 46.106939158008245 ], [ 21.601998201166893, 46.103913744703341 ], [ 21.621634290096004, 46.105729012610915 ], [ 21.627743295540618, 46.095441704120589 ], [ 21.647815742001494, 46.094533908278024 ], [ 21.639524948898089, 46.083336530844228 ], [ 21.66177918301775, 46.09181043108812 ], [ 21.667451830930606, 46.07667755312869 ], [ 21.681851629478626, 46.08757364368784 ], [ 21.694942355431365, 46.096349485019481 ], [ 21.725051025122674, 46.102098417021779 ], [ 21.759523270131563, 46.101795856596816 ], [ 21.780904789187698, 46.095139107166808 ], [ 21.782213861782978, 46.08757364368784 ], [ 21.808395313688457, 46.086060426460499 ], [ 21.821486039641201, 46.080915177386913 ], [ 21.839376698443285, 46.083336530844235 ], [ 21.852903781927782, 46.093020881998875 ], [ 21.867303580475802, 46.101493294511464 ], [ 21.893485032381285, 46.097257250974735 ], [ 21.894794104976562, 46.086363073226821 ], [ 21.917921054159738, 46.096046893046925 ], [ 21.934502640366542, 46.094836508552625 ], [ 21.936684428025337, 46.086665718332718 ], [ 21.953266014232145, 46.093626097491772 ], [ 21.974647533288291, 46.085152476198964 ], [ 21.988610974304549, 46.082428535751021 ], [ 22.011301565955968, 46.089994704909515 ], [ 22.022646861781681, 46.087271003563224 ], [ 22.020901431654647, 46.081217852380611 ], [ 22.029628582289806, 46.073953194249192 ], [ 22.041410235647273, 46.066990332730832 ], [ 22.037046660329693, 46.061540524046919 ], [ 22.03835573292497, 46.053667628373624 ], [ 22.051882816409467, 46.050033605623724 ], [ 22.055810034195293, 46.043370609552085 ], [ 22.054937319131778, 46.038221380307284 ], [ 22.064100827298695, 46.031556959504464 ], [ 22.075009765592647, 46.031859905158441 ], [ 22.081555128569022, 46.02610365377889 ], [ 22.081118771037261, 46.017922686401263 ], [ 22.093773139458246, 46.017922686401263 ], [ 22.102500290093406, 46.015801497251161 ], [ 22.105554792815713, 46.009740508465541 ], [ 22.1129728708556, 46.009437441590094 ], [ 22.121700021490764, 46.014286312326625 ], [ 22.132172602252957, 46.007922082304027 ], [ 22.125627239276586, 45.995797713474381 ], [ 22.123009094086036, 45.989431356215093 ], [ 22.141772467951636, 45.995494570211122 ], [ 22.145699685737462, 46.002163338400884 ], [ 22.152790495628484, 46.00124453598017 ], [ 22.156499534648429, 45.997303931939094 ], [ 22.175808355428767, 46.000647779842822 ], [ 22.187590008786234, 45.995797713474381 ], [ 22.204171594993042, 46.002466445130672 ], [ 22.211153315501171, 46.004588145742304 ], [ 22.224680398985669, 46.003981953870557 ], [ 22.237771124938416, 46.002163338400884 ], [ 22.253916353613462, 46.002163338400884 ], [ 22.267007079566206, 45.998829054773061 ], [ 22.273988800074331, 46.000950894875643 ], [ 22.287515883558832, 45.997313404881425 ], [ 22.297552106789269, 45.991856721523533 ], [ 22.310642832742015, 45.987309074387049 ], [ 22.316751838186626, 45.996100855077025 ], [ 22.328969849075854, 45.996403995019058 ], [ 22.337696999711014, 45.993069364322707 ], [ 22.351224083195515, 45.997919669819915 ], [ 22.383078183013851, 45.995494570211122 ], [ 22.392241691180772, 46.001254008247869 ], [ 22.397914339093631, 46.008831302857445 ], [ 22.407514204792307, 46.00913437305406 ], [ 22.412750495173402, 46.007315926965447 ], [ 22.421477645808565, 46.013680226732738 ], [ 22.43369565669779, 46.011861930097112 ], [ 22.429768438911964, 46.000041544795344 ], [ 22.427586651253179, 45.985793108976537 ], [ 22.428459366316694, 45.97851589710249 ], [ 22.439368304610646, 45.972754092659137 ], [ 22.461622538730307, 45.969114749390521 ], [ 22.471658761960743, 45.962138673037771 ], [ 22.48911306323107, 45.949397484161764 ], [ 22.500458359056779, 45.940294841400387 ], [ 22.525767095898747, 45.936956831228024 ], [ 22.536239676660941, 45.928155659364215 ], [ 22.540166894446767, 45.918442400552657 ], [ 22.546275899891377, 45.929976706065275 ], [ 22.558493910780605, 45.928762681574234 ], [ 22.568966491542799, 45.927245113593564 ], [ 22.575511854519167, 45.937563757115036 ], [ 22.584675362686088, 45.938474133490054 ], [ 22.585111720217842, 45.929673202433641 ], [ 22.580311787368508, 45.921781525086949 ], [ 22.589911653067183, 45.921781525086949 ], [ 22.600820591361135, 45.936956831228024 ], [ 22.615220389909155, 45.936956831228024 ], [ 22.625692970671349, 45.926941595015172 ], [ 22.632674691179474, 45.919049529051243 ], [ 22.641401841814638, 45.926334552876135 ], [ 22.646201774663979, 45.93361862010687 ], [ 22.657110712957927, 45.927245113593564 ], [ 22.663656075934302, 45.921174426482153 ], [ 22.671510511505947, 45.929673202433641 ], [ 22.675874086823526, 45.93077339519683 ], [ 22.680674019672864, 45.925423977211935 ], [ 22.692019315498573, 45.926941595015172 ], [ 22.70336461132429, 45.927245113593564 ], [ 22.714709907149999, 45.920870874688603 ], [ 22.729546063229773, 45.920567321234287 ], [ 22.736091426206141, 45.924816918465346 ], [ 22.751800297349433, 45.925120448669013 ], [ 22.767072810960965, 45.918138833812208 ], [ 22.776236319127889, 45.905994802357796 ], [ 22.790199760144144, 45.907209325079634 ], [ 22.821508413047784, 45.917493748974515 ], [ 22.858162445715461, 45.926296612521888 ], [ 22.871253171668208, 45.915975872715045 ], [ 22.885216612684466, 45.907474998382902 ], [ 22.907470846804127, 45.906564113192275 ], [ 22.921434287820386, 45.892899041670915 ], [ 22.933215941177853, 45.885609628374304 ], [ 22.95241567257521, 45.885002134084822 ], [ 22.964633683464434, 45.885305882059981 ], [ 22.982087984734761, 45.874673714732324 ], [ 22.998669570941566, 45.865862663394985 ], [ 23.013505727021339, 45.862824045962668 ], [ 23.02703281050584, 45.866774216237815 ], [ 23.043178039180894, 45.85522677575063 ], [ 23.071541278745165, 45.850060039072083 ], [ 23.079177535550929, 45.849908068962222 ], [ 23.086377434824936, 45.84352494940061 ], [ 23.104486272392897, 45.839421128614461 ], [ 23.118231534643275, 45.847780443825584 ], [ 23.123249646258497, 45.856442408741387 ], [ 23.137867623572387, 45.863583715891366 ], [ 23.148122025568703, 45.865406881368159 ], [ 23.157285533735624, 45.874521811887682 ], [ 23.173648941176555, 45.88090137386628 ], [ 23.185430594534019, 45.886065244731746 ], [ 23.189357812319844, 45.891228635618035 ], [ 23.203812155559326, 45.88971004106439 ], [ 23.216466523980312, 45.884546509008032 ], [ 23.225630032147237, 45.890924920028951 ], [ 23.220830099297896, 45.905197757380513 ], [ 23.232175395123605, 45.918859802109068 ], [ 23.247884266266897, 45.917645534316904 ], [ 23.249629696393928, 45.913395387787062 ], [ 23.254538718626176, 45.912551011885093 ], [ 23.260974992219637, 45.92523427206725 ], [ 23.275811148299411, 45.930090519499004 ], [ 23.288465516720397, 45.929787016490138 ], [ 23.294574522165014, 45.937374093488948 ], [ 23.306356175522481, 45.942229278047229 ], [ 23.335155772618513, 45.948601062589184 ], [ 23.356537291674659, 45.952848512075832 ], [ 23.378355168262566, 45.957398989608606 ], [ 23.382282386048384, 45.950421437940449 ], [ 23.370937090222675, 45.944353287603072 ], [ 23.376609738135532, 45.941925841467786 ], [ 23.398427614723435, 45.946477215783659 ], [ 23.411518340676178, 45.961342434557189 ], [ 23.412827413271451, 45.975597163196916 ], [ 23.425918139224194, 45.977113407803763 ], [ 23.433772574795839, 45.99318304822291 ], [ 23.455590451383742, 45.987119580981158 ], [ 23.487008193670324, 45.999548973928263 ], [ 23.502280707281859, 46.016218165827418 ], [ 23.516680505829878, 46.023793410652885 ], [ 23.529334874250857, 46.038032061262719 ], [ 23.554207253561071, 46.044392825911657 ], [ 23.574716057553701, 46.038940786761067 ], [ 23.599588436863908, 46.055295290192795 ], [ 23.606788336137914, 46.067255240274442 ], [ 23.622497207281206, 46.076337015624055 ], [ 23.627951676428182, 46.082390702297836 ], [ 23.615297308007197, 46.090108189546918 ], [ 23.624242637408237, 46.095857772220917 ], [ 23.619224525793022, 46.108111461028138 ], [ 23.636678827063346, 46.108413986792534 ], [ 23.646060513996144, 46.113254173211942 ], [ 23.641260581146803, 46.128528223646136 ], [ 23.664605709095859, 46.135029752094233 ], [ 23.678132792580364, 46.125503995424019 ], [ 23.689914445937831, 46.138809357676209 ], [ 23.684896334322612, 46.14062347620829 ], [ 23.704750602017608, 46.15316949295805 ], [ 23.702650631396025, 46.16195378121747 ], [ 23.70461424028894, 46.183861162082763 ], [ 23.71661407241228, 46.195793235131518 ], [ 23.717050429944042, 46.204853838357749 ], [ 23.721414005261622, 46.215875557481752 ], [ 23.725123044281563, 46.220857252563363 ], [ 23.731668407257931, 46.232026683290215 ], [ 23.726432116876836, 46.238063267161408 ], [ 23.717268608709919, 46.244099187004231 ], [ 23.708977815606513, 46.248323935800585 ], [ 23.713341390924096, 46.259789470986448 ], [ 23.709414173138274, 46.266727972516101 ], [ 23.699814307439599, 46.273363978366945 ], [ 23.715959536114646, 46.277888067165414 ], [ 23.724250329218048, 46.280602341167629 ], [ 23.724686686749806, 46.285427385179432 ], [ 23.738650127766064, 46.29356868335006 ], [ 23.748249993464743, 46.297789620815792 ], [ 23.759595289290452, 46.303517515564103 ], [ 23.759158931758694, 46.310751894526618 ], [ 23.746940920869466, 46.324313778121045 ], [ 23.741704630488368, 46.334558305435813 ], [ 23.732104764789689, 46.338776082511252 ], [ 23.719450396368707, 46.342089821989624 ], [ 23.711595960797062, 46.347210660697094 ], [ 23.714650463519366, 46.358655506867642 ], [ 23.72512304428156, 46.365280374999521 ], [ 23.730795692194416, 46.365882595904985 ], [ 23.743013703083644, 46.361968041348142 ], [ 23.749995423591773, 46.367689218787802 ], [ 23.761340719417483, 46.365581486282117 ], [ 23.781413165878355, 46.372205514587911 ], [ 23.79101303157703, 46.374614052987191 ], [ 23.799740182212194, 46.372205514587911 ], [ 23.797558394553405, 46.384247144374307 ], [ 23.800176539743955, 46.387859115486698 ], [ 23.817630841014278, 46.383344114253411 ], [ 23.829848851903503, 46.388762070922098 ], [ 23.848175868237341, 46.395684233020425 ], [ 23.876102750269858, 46.396587059002293 ], [ 23.890066191286113, 46.400499132320633 ], [ 23.904465989834133, 46.406818042883664 ], [ 23.9162476431916, 46.408924183761599 ], [ 23.941120022501806, 46.418852038274899 ], [ 23.959883396367406, 46.425469603899707 ], [ 23.973410479851911, 46.429078846597598 ], [ 23.978483136158587, 46.429830742080163 ], [ 23.982573988018824, 46.43178562179294 ], [ 23.986610295187585, 46.429078846597598 ], [ 23.993046568781015, 46.426108758039888 ], [ 24.002100987565001, 46.431296908438121 ], [ 24.008646350541369, 46.437988141278595 ], [ 24.019500744143851, 46.446632899656002 ], [ 24.021682531802647, 46.453848343138766 ], [ 24.022773425632039, 46.459259298465561 ], [ 24.03193693379896, 46.45971018713967 ], [ 24.041754978263516, 46.456403583488843 ], [ 24.041754978263516, 46.449489126998941 ], [ 24.044591302219942, 46.443024819462458 ], [ 24.054845704216259, 46.445430232810303 ], [ 24.06117288842675, 46.456704192118096 ], [ 24.065100106212572, 46.46677362223474 ], [ 24.071427290423063, 46.473535626860745 ], [ 24.080808977355865, 46.473084852688395 ], [ 24.089972485522782, 46.478193408012999 ], [ 24.104154105304925, 46.47894462570072 ], [ 24.110699468281293, 46.475488938462576 ], [ 24.117026652491788, 46.466923898131114 ], [ 24.115281222364754, 46.457756309252133 ], [ 24.111135825813051, 46.446482567752362 ], [ 24.109608574451897, 46.437912963450856 ], [ 24.109826753217778, 46.433402103977137 ], [ 24.130553735976285, 46.438965443600665 ], [ 24.139062707845568, 46.445730902010986 ], [ 24.1314264510398, 46.451142663848493 ], [ 24.122044764107002, 46.457004799087869 ], [ 24.122262942872887, 46.461663994914794 ], [ 24.136226383889142, 46.458658107758588 ], [ 24.148662573544247, 46.463166876263088 ], [ 24.140371780440844, 46.47323511116069 ], [ 24.146044428353697, 46.478343652380246 ], [ 24.158480618008802, 46.4825503262335 ], [ 24.161535120731109, 46.47353562686073 ], [ 24.173098595322696, 46.469177986793483 ], [ 24.187062036338958, 46.470380129246315 ], [ 24.192516505485937, 46.475939692721852 ], [ 24.204952695141039, 46.473685884088475 ], [ 24.21411620330796, 46.468426634277535 ], [ 24.21869795739142, 46.46211486367536 ], [ 24.226770571728942, 46.46046165996588 ], [ 24.233752292237071, 46.464669716124988 ], [ 24.240952191511081, 46.457906610040375 ], [ 24.248588448316848, 46.454750206364793 ], [ 24.248806627082725, 46.446031569552169 ], [ 24.257533777717885, 46.446783231144771 ], [ 24.265388213289537, 46.444377877539274 ], [ 24.270624503670632, 46.450541383529611 ], [ 24.276297151583485, 46.456553888010902 ], [ 24.283497050857495, 46.448136195874298 ], [ 24.291569665195023, 46.456704192118089 ], [ 24.320587441056936, 46.461062830759268 ], [ 24.325823731438032, 46.457906610040375 ], [ 24.31775111710051, 46.452345204572374 ], [ 24.329750949223854, 46.447234223121825 ], [ 24.329314591692096, 46.457155101950462 ], [ 24.339568993688413, 46.463768017186212 ], [ 24.358986903851644, 46.470680660710947 ], [ 24.383204746864219, 46.479094867993702 ], [ 24.406768053579157, 46.486456232158581 ], [ 24.422040567190692, 46.482099626734694 ], [ 24.446912946500902, 46.48720733576274 ], [ 24.452149236881997, 46.494117002308499 ], [ 24.462185460112433, 46.500274878273949 ], [ 24.471567147045231, 46.507783539358577 ], [ 24.475494364831057, 46.512288238211994 ], [ 24.489675984613193, 46.50883466915144 ], [ 24.497748598950714, 46.516792563721182 ], [ 24.503857604395325, 46.526850876060792 ], [ 24.512148397498731, 46.53360541363768 ], [ 24.525239123451474, 46.539158515266237 ], [ 24.537020776808944, 46.547262022790221 ], [ 24.568438519095523, 46.560915196985185 ], [ 24.570838485520195, 46.573365096935568 ], [ 24.570183949222557, 46.579364028357723 ], [ 24.582838317643535, 46.585962086419187 ], [ 24.59091093198106, 46.591809693851225 ], [ 24.588292786790511, 46.599905339592731 ], [ 24.598983546318589, 46.61444448058726 ], [ 24.607274339421991, 46.628530234250306 ], [ 24.614910596227752, 46.644409773050896 ], [ 24.631055824902798, 46.660584133271392 ], [ 24.642837478260272, 46.670765508084422 ], [ 24.644146550855545, 46.684237908596096 ], [ 24.656800919276527, 46.700998871627405 ], [ 24.668582572633998, 46.712369419817044 ], [ 24.682109656118495, 46.719549584630812 ], [ 24.695636739602996, 46.728224342458333 ], [ 24.711345610746289, 46.742280470482676 ], [ 24.70610932036519, 46.764403970169944 ], [ 24.720509118913206, 46.790402415538352 ], [ 24.73534527499298, 46.803546275084301 ], [ 24.742326995501109, 46.807727738925919 ], [ 24.750617788604512, 46.825346051111808 ], [ 24.768072089874835, 46.849524501200428 ], [ 24.771562950128899, 46.869814059033438 ], [ 24.795998971907345, 46.886815575571127 ], [ 24.81563506083646, 46.906196695832548 ], [ 24.834398434702056, 46.923782724835945 ], [ 24.85490723869469, 46.935404219857404 ], [ 24.882834120727203, 46.945533722247973 ], [ 24.910761002759717, 46.953576373658208 ], [ 24.914251863013781, 46.961617816561144 ], [ 24.911415539057359, 46.965563638162848 ], [ 24.914524586471135, 46.969062519502792 ], [ 24.922924468957479, 46.969323065339957 ], [ 24.92723349958359, 46.968466981394769 ], [ 24.933233415645262, 46.971221289559665 ], [ 24.94054240430221, 46.972077329420564 ], [ 24.962960272496282, 46.973193882560587 ], [ 24.979760037468971, 46.975278052718359 ], [ 24.989141724401769, 46.969695271477164 ], [ 25.000705198993359, 46.973491626127583 ], [ 25.008995992096761, 46.975054752658068 ], [ 25.021977628666562, 46.967536439826453 ], [ 25.033759282024032, 46.960538248627437 ], [ 25.056122605526635, 46.945645434015745 ], [ 25.072704191733447, 46.947134901976057 ], [ 25.085358560154429, 46.954581620110858 ], [ 25.108049151805847, 46.956368678291163 ], [ 25.123758022949136, 46.956964351089269 ], [ 25.131612458520785, 46.965303074013214 ], [ 25.145575899537043, 46.969471948105664 ], [ 25.168266491188465, 46.963516314225217 ], [ 25.186157149990542, 46.967089774123494 ], [ 25.216702177213612, 46.962920714367471 ], [ 25.228047473039322, 46.955177312801979 ], [ 25.243319986650853, 46.956070839405498 ], [ 25.266446935834036, 46.949220087493508 ], [ 25.29001024254897, 46.948326446504147 ], [ 25.300482823311164, 46.940283006194711 ], [ 25.317064409517968, 46.933728198308501 ], [ 25.338445928574117, 46.929854525581931 ], [ 25.365718274308993, 46.922553380787953 ], [ 25.404335915869577, 46.917635722496094 ], [ 25.416772105524686, 46.906308489664823 ], [ 25.433353691731497, 46.895873394033927 ], [ 25.44186266360078, 46.883348598310718 ], [ 25.438589982112589, 46.863810043827527 ], [ 25.435753658156163, 46.848890328974072 ], [ 25.441208127303138, 46.842622812583123 ], [ 25.450153456704182, 46.847845793690439 ], [ 25.45953514363698, 46.837697822417901 ], [ 25.461280573764011, 46.820680746473151 ], [ 25.461935110061646, 46.809631690653838 ], [ 25.459098786105219, 46.797086768046732 ], [ 25.450807993001813, 46.777516824079555 ], [ 25.442735378664292, 46.764814962767588 ], [ 25.44208084236665, 46.754202876581729 ], [ 25.440580863351244, 46.742112267208029 ], [ 25.438180896926571, 46.734785570929922 ], [ 25.442108114712394, 46.727756988042415 ], [ 25.455198840665137, 46.721774493881149 ], [ 25.46370781253442, 46.714893805406497 ], [ 25.470907711808429, 46.704571127520921 ], [ 25.477453074784801, 46.693947180668076 ], [ 25.50908899583726, 46.68032751612035 ], [ 25.518470682770058, 46.671794768286126 ], [ 25.536579520338016, 46.664009331849208 ], [ 25.558397396925919, 46.66011619312097 ], [ 25.572360837942181, 46.646038660286465 ], [ 25.586106100192559, 46.639447917748221 ], [ 25.594724161444784, 46.634832047597619 ], [ 25.600178630591767, 46.632996825533205 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Szamos", "discharge": 120.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.354850327436235, 48.087260705815005 ], [ 22.352926147652287, 48.08430823952996 ], [ 22.358158181751985, 48.081672293173078 ], [ 22.365429373318563, 48.071529370224738 ], [ 22.37894459248016, 48.058769511643973 ], [ 22.3831316219283, 48.056564554755155 ], [ 22.390308599583751, 48.056022627432405 ], [ 22.393121630061682, 48.05401965661148 ], [ 22.396929814334094, 48.044952697857511 ], [ 22.402935896092355, 48.040039760476887 ], [ 22.412331126200517, 48.027652859624794 ], [ 22.419392222128092, 48.021846933093649 ], [ 22.42735425173073, 48.018799014116887 ], [ 22.437682437093777, 48.008256122739986 ], [ 22.449137498646021, 48.002991240095305 ], [ 22.451167561687868, 47.999760261692728 ], [ 22.458716729750094, 47.990601341086958 ], [ 22.482294008598274, 47.972958584682409 ], [ 22.505215211256207, 47.958947821075334 ], [ 22.53143555709331, 47.937734092482835 ], [ 22.537887708381021, 47.929514160303917 ], [ 22.542457728677778, 47.92762120661137 ], [ 22.555820602222351, 47.930399340179719 ], [ 22.567119757669388, 47.920980457554364 ], [ 22.581961751164378, 47.918092607655474 ], [ 22.599102898595408, 47.907739783649099 ], [ 22.622467955637077, 47.90012602157335 ], [ 22.646724069192782, 47.88979626960797 ], [ 22.65778116550867, 47.883105383207628 ], [ 22.660733311306995, 47.875891415152772 ], [ 22.676392534913393, 47.862506577883494 ], [ 22.679927651736488, 47.856455614834388 ], [ 22.686179663329572, 47.854621678794921 ], [ 22.698302580539856, 47.855738800354992 ], [ 22.69985562699225, 47.853278817115047 ], [ 22.696282784025513, 47.846976782816597 ], [ 22.697766907987724, 47.841082800180239 ], [ 22.709579121433716, 47.828925922714994 ], [ 22.713569603372402, 47.826331603840053 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drau", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 12.369906374684156, 46.740658856834997 ], [ 12.376385747005555, 46.741122998103279 ], [ 12.391080555550216, 46.744835127310523 ], [ 12.409014405441994, 46.745079293394795 ], [ 12.416046299604819, 46.747509354546722 ], [ 12.437289132997321, 46.747249552765524 ], [ 12.467422950065483, 46.744133838856577 ], [ 12.487335793383341, 46.743886024645846 ], [ 12.498999666823957, 46.745564129969459 ], [ 12.556455947224659, 46.758534639210197 ], [ 12.573937652099024, 46.76630578622774 ], [ 12.595548462045898, 46.767159986047226 ], [ 12.60563029775035, 46.771368071354807 ], [ 12.635409908077191, 46.778959333210722 ], [ 12.697744265995357, 46.786077900925783 ], [ 12.723230905883277, 46.793941122909779 ], [ 12.738255741356783, 46.796233257973789 ], [ 12.753875398500703, 46.807208382802166 ], [ 12.764625025011263, 46.821681454008761 ], [ 12.775845775313591, 46.829741542730723 ], [ 12.789322766820439, 46.824737679053072 ], [ 12.804235678972328, 46.823138821143665 ], [ 12.816306727652071, 46.815867948242882 ], [ 12.832522643932778, 46.813557104107332 ], [ 12.844337642923183, 46.80880022384612 ], [ 12.855382712699887, 46.800854342654667 ], [ 12.873091718085005, 46.793484522565855 ], [ 12.887692814422545, 46.782734680870625 ], [ 12.90050679786383, 46.778412809074609 ], [ 12.935798863245781, 46.76091917281795 ], [ 12.942059842944444, 46.759442233752281 ], [ 12.957849999150872, 46.745233409113595 ], [ 12.976526802260862, 46.747666579611661 ], [ 12.99387780576183, 46.740514754999246 ], [ 13.011787674746197, 46.739980923694645 ], [ 13.023613653250839, 46.736349040852701 ], [ 13.042558491399369, 46.736937216882396 ], [ 13.052794442097579, 46.73538831596877 ], [ 13.078392220544718, 46.736311552942894 ], [ 13.114860783022959, 46.743895879961663 ], [ 13.130499642716147, 46.744758023709181 ], [ 13.148910595683049, 46.739852205900583 ], [ 13.176381425604612, 46.737521467787921 ], [ 13.186727316387373, 46.738929561074947 ], [ 13.216295904033494, 46.747985820751474 ], [ 13.263419384475901, 46.755554246998749 ], [ 13.308961009491473, 46.756500671833066 ], [ 13.332746724716799, 46.761524885052822 ], [ 13.339856602876077, 46.764813945166331 ], [ 13.361688837292593, 46.794797093288551 ], [ 13.362263396118371, 46.816739056830869 ], [ 13.352802220669469, 46.829277944513201 ], [ 13.352952146641069, 46.832932938894722 ], [ 13.379813974901346, 46.831025194617375 ], [ 13.386781928107615, 46.83065526071077 ], [ 13.410011929381902, 46.821496495933822 ], [ 13.417740830475218, 46.823396565320188 ], [ 13.427727747970428, 46.823648658163805 ], [ 13.440314673625908, 46.822477778766277 ], [ 13.457391642611286, 46.81736594836142 ], [ 13.46718464889693, 46.813231048098118 ], [ 13.471901735966423, 46.806956104624618 ], [ 13.470802945213201, 46.796915113280484 ], [ 13.47465997513096, 46.793864154620096 ], [ 13.485196938497296, 46.791586257679839 ], [ 13.492996958699974, 46.78753133844836 ], [ 13.496218980881917, 46.785178373658169 ], [ 13.513805856590261, 46.784575539153053 ], [ 13.522860899677216, 46.778895634953663 ], [ 13.537830775756632, 46.779261775267102 ], [ 13.545946797942664, 46.774969859263081 ], [ 13.554226746211331, 46.774336937850592 ], [ 13.573331965861094, 46.755855152002539 ], [ 13.581402007429416, 46.750648236932626 ], [ 13.592526994387065, 46.746971348322489 ], [ 13.611366889437182, 46.744956529440202 ], [ 13.622395917049733, 46.739223643717459 ], [ 13.637140033333072, 46.727691803234102 ], [ 13.667827018969659, 46.716481112068145 ], [ 13.674879072019467, 46.71106018868111 ], [ 13.686685181184354, 46.700959317658082 ], [ 13.691572182964901, 46.699017367563364 ], [ 13.699229113077765, 46.699528437757394 ], [ 13.70442612131078, 46.697121491466696 ], [ 13.705600176411334, 46.693894508483346 ], [ 13.699234390292483, 46.685574464182594 ], [ 13.70264346454932, 46.68046650592504 ], [ 13.707228455353498, 46.679215550968316 ], [ 13.728503274407874, 46.680100748612453 ], [ 13.733001300161634, 46.677021796860345 ], [ 13.732494376306967, 46.673375798814682 ], [ 13.734992421804021, 46.670113828639295 ], [ 13.748599314874335, 46.670254955458987 ], [ 13.747983437557661, 46.664322960506595 ], [ 13.75085446147901, 46.661969991876184 ], [ 13.761830364914733, 46.662626093860474 ], [ 13.767451464774853, 46.655405159829549 ], [ 13.774208497574104, 46.651128231693889 ], [ 13.791718389345322, 46.649801398195393 ], [ 13.822355368436474, 46.639009705206547 ], [ 13.830100394373607, 46.634706785897009 ], [ 13.833550447040549, 46.630735826093392 ], [ 13.837972632228158, 46.619646887656685 ], [ 13.841832649638159, 46.617265928523892 ], [ 13.852367596887202, 46.615870029749466 ], [ 13.854912620245381, 46.613749057778882 ], [ 13.857971565859314, 46.615279083282985 ], [ 13.868574485627454, 46.615248182299013 ], [ 13.871451375415923, 46.619753201535218 ], [ 13.880926226146697, 46.623641282935431 ], [ 13.887873439463874, 46.610205372700293 ], [ 13.891432445536358, 46.608515409668513 ], [ 13.898371400352977, 46.608115475754893 ], [ 13.911114373116369, 46.604601601740647 ], [ 13.915829307269167, 46.606085643187413 ], [ 13.920851991415931, 46.620146664125166 ], [ 13.926881921829374, 46.621371719081957 ], [ 13.929381088522355, 46.611929759772543 ], [ 13.942255138185658, 46.604518894016984 ], [ 13.953071227672879, 46.59578301144586 ], [ 13.959228234528553, 46.593113074331228 ], [ 13.980757073173409, 46.593029276045201 ], [ 13.991660126429771, 46.586116391451803 ], [ 13.997319072714866, 46.586662443188629 ], [ 14.010555853122655, 46.592731556973924 ], [ 14.019609743651461, 46.594787637454054 ], [ 14.031826666930098, 46.594017753563975 ], [ 14.032991717631253, 46.591014770393599 ], [ 14.025322042932787, 46.577484723074356 ], [ 14.030324115175327, 46.571861779569652 ], [ 14.048804877440357, 46.576877944700996 ], [ 14.05887487362382, 46.573186045244825 ], [ 14.062575068525835, 46.561879100696686 ], [ 14.088718119932821, 46.549302369435097 ], [ 14.097786245466903, 46.539452471891188 ], [ 14.109428137399727, 46.540520579824147 ], [ 14.121703155233563, 46.534936704724075 ], [ 14.142155024647822, 46.533707898892054 ], [ 14.153496026976109, 46.529287013190718 ], [ 14.162454950802958, 46.52973309698266 ], [ 14.187096593672539, 46.538454312651815 ], [ 14.209893205082707, 46.549505506636166 ], [ 14.219531120479356, 46.550161596543951 ], [ 14.232370048982846, 46.548895719109531 ], [ 14.2424620322133, 46.54587381908344 ], [ 14.257004931716782, 46.545473956502619 ], [ 14.284817608064186, 46.551341207339796 ], [ 14.29542252508511, 46.551501306740221 ], [ 14.313417463897059, 46.547797482352649 ], [ 14.34348226109493, 46.546721767577758 ], [ 14.409091534741851, 46.558807362890903 ], [ 14.444544264138608, 46.559154696488022 ], [ 14.45337412625768, 46.562790773095777 ], [ 14.461390936306296, 46.569420836737976 ], [ 14.465413889909662, 46.570217873502763 ], [ 14.470660976903119, 46.563885933667365 ], [ 14.476486978340469, 46.561653992805439 ], [ 14.480480941904423, 46.56199302971654 ], [ 14.485331835317504, 46.565514069144434 ], [ 14.494572455121519, 46.581261128580977 ], [ 14.50204823265398, 46.589738184606773 ], [ 14.518322885849587, 46.601155317695778 ], [ 14.523347724011796, 46.607415354551485 ], [ 14.523944633228432, 46.611745352053696 ], [ 14.531950452148461, 46.617913417493853 ], [ 14.549828220571847, 46.622872576882557 ], [ 14.569676877607041, 46.63280274745447 ], [ 14.59291659229104, 46.638509956208786 ], [ 14.610878442712311, 46.639337124784326 ], [ 14.636847012811916, 46.651358348907429 ], [ 14.645469949619429, 46.651323430655985 ], [ 14.650606964884453, 46.648649483443961 ], [ 14.659242207604661, 46.63327659178222 ], [ 14.663671241323536, 46.629934638893872 ], [ 14.66863620743425, 46.629782686310001 ], [ 14.678181055921774, 46.633837769238234 ], [ 14.686139998123339, 46.63381884404339 ], [ 14.695199001076697, 46.630331936089213 ], [ 14.699950932934222, 46.632013977904997 ], [ 14.706885890393664, 46.631568043875596 ], [ 14.719472701767002, 46.636439154637785 ], [ 14.743181477827298, 46.638896373830271 ], [ 14.76042135398321, 46.638808537394375 ], [ 14.773509312064879, 46.636104665729313 ], [ 14.773750337651649, 46.634723669976488 ], [ 14.78301727589073, 46.634429758362074 ], [ 14.789773189412628, 46.636271819041205 ], [ 14.815207737307823, 46.649647036566698 ], [ 14.832992645199102, 46.647701207518949 ], [ 14.837602524069554, 46.652130243957671 ], [ 14.843536196505347, 46.666359275888375 ], [ 14.849665106064029, 46.668678329835373 ], [ 14.854979065912376, 46.668732380652401 ], [ 14.864696064528529, 46.665215478289703 ], [ 14.880445197336677, 46.652798647285685 ], [ 14.88787320359326, 46.649807722568113 ], [ 14.900055044459924, 46.653297832648967 ], [ 14.923163909536658, 46.651620053928966 ], [ 14.949645022500027, 46.636323329237129 ], [ 14.953268002796163, 46.63597236402429 ], [ 14.967462110174528, 46.625428516050853 ], [ 14.969590813334042, 46.622891168037171 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.969590813334042, 46.622891168037171 ], [ 14.973587210740391, 46.618127586522505 ], [ 14.980493462005706, 46.603017677173355 ], [ 14.988977533082354, 46.596322768000661 ], [ 14.994881508979741, 46.595433825882857 ], [ 15.004236419162623, 46.596494912267133 ], [ 15.009399421962154, 46.594487964219923 ], [ 15.012508551424435, 46.586828006538745 ], [ 15.018250573416799, 46.583658065640748 ], [ 15.025813441933627, 46.587523130789471 ], [ 15.035352206493018, 46.595896207711938 ], [ 15.05260598449939, 46.600802361958721 ], [ 15.065989759463092, 46.607210478661081 ], [ 15.108258502513342, 46.604838881834617 ], [ 15.116725483146844, 46.602713965904066 ], [ 15.126911525753711, 46.596866071818511 ], [ 15.140220507858448, 46.592967203689632 ], [ 15.147808463527099, 46.592475276389848 ], [ 15.153860396725786, 46.593635332097179 ], [ 15.164328177547528, 46.600825419200845 ], [ 15.175149861216495, 46.612804502435893 ], [ 15.180377754127676, 46.616283545622316 ], [ 15.189027685364142, 46.616668627308023 ], [ 15.198442851445781, 46.60488873583931 ], [ 15.208761767494636, 46.6054378326197 ], [ 15.217532842355322, 46.598483926660577 ], [ 15.226840768274728, 46.598843013923215 ], [ 15.251114576031794, 46.599804242551436 ], [ 15.264763552275014, 46.596111377605737 ], [ 15.274813628569758, 46.588650484803708 ], [ 15.295082471261276, 46.589291675839874 ], [ 15.300823402390204, 46.590687728194837 ], [ 15.309029189122707, 46.598400793255877 ], [ 15.315606157044352, 46.597706857019816 ], [ 15.324763212200567, 46.59164895329134 ], [ 15.328383193188831, 46.591286988488484 ], [ 15.338752094842413, 46.592511084382245 ], [ 15.349279040575063, 46.591439186389536 ], [ 15.363840117318755, 46.582433338836381 ], [ 15.37354902344914, 46.583677428712782 ], [ 15.399519893935858, 46.580884678813916 ], [ 15.407866904749627, 46.577367764015463 ], [ 15.423614005185714, 46.566705930219506 ], [ 15.429838978655406, 46.565789990747696 ], [ 15.433125962491737, 46.565436021824404 ], [ 15.436624891059248, 46.567824051929996 ], [ 15.439924701104941, 46.576174069962612 ], [ 15.445342547946174, 46.581923112069724 ], [ 15.450560532515057, 46.580813162642599 ], [ 15.455484679999106, 46.571696223812047 ], [ 15.455304150050774, 46.548117259682016 ], [ 15.456992299550413, 46.540037289341022 ], [ 15.463920341838246, 46.535429362235185 ], [ 15.471810300783659, 46.534674438405048 ], [ 15.47890521495151, 46.536467502419534 ], [ 15.491493958353628, 46.544920607961814 ], [ 15.501911846938102, 46.546812703841113 ], [ 15.517551551558597, 46.556067837173067 ], [ 15.523972475368394, 46.55765489534901 ], [ 15.586936945693759, 46.561878486083174 ], [ 15.599033820755382, 46.563926597964468 ], [ 15.605182649604163, 46.570327646264417 ], [ 15.621406702496241, 46.561912812735407 ], [ 15.630763699707355, 46.558799906784131 ], [ 15.654492564397289, 46.557183134788175 ], [ 15.668021403297713, 46.560543257930767 ], [ 15.677968332245444, 46.56060835172422 ], [ 15.690844333935406, 46.555977481486508 ], [ 15.703983269772429, 46.554543608289435 ], [ 15.711476328984819, 46.548977688175306 ], [ 15.714931430337581, 46.542656730797923 ], [ 15.716422540568153, 46.536641753823574 ], [ 15.712707822866291, 46.523735739005922 ], [ 15.718162067233521, 46.509545813199651 ], [ 15.734566147340738, 46.499730983539486 ], [ 15.73594128458339, 46.492345008385215 ], [ 15.743348361970154, 46.485864088868944 ], [ 15.753310364365202, 46.482259189187154 ], [ 15.761188324461566, 46.48148526477609 ], [ 15.767849347698981, 46.478010333032969 ], [ 15.774984489644112, 46.46833241562306 ], [ 15.782200453909844, 46.467580485252235 ], [ 15.795965233126804, 46.473897606309222 ], [ 15.802269185212117, 46.474100665959575 ], [ 15.803866266272523, 46.469453688604219 ], [ 15.802632410706801, 46.462629686905039 ], [ 15.806028444018022, 46.459745724072697 ], [ 15.818832456023884, 46.45464185280742 ], [ 15.826923520278504, 46.448587939115676 ], [ 15.836120704268435, 46.436072046248121 ], [ 15.841705752297511, 46.431719105719502 ], [ 15.852735725115334, 46.429205213706354 ], [ 15.860334751214644, 46.425227292205626 ], [ 15.869249846292862, 46.41730038932981 ], [ 15.880876829617275, 46.414072504016531 ], [ 15.890836916752329, 46.406210611016753 ], [ 15.90214888654495, 46.403800721316259 ], [ 15.911009976869043, 46.396162817780493 ], [ 15.921180015521665, 46.390639922771626 ], [ 15.922292073346959, 46.387297937883417 ], [ 15.925944027231203, 46.388377970776197 ], [ 15.937306070898122, 46.38217908849164 ], [ 15.943516120249548, 46.37756315412053 ], [ 15.948733251806184, 46.369098216998346 ], [ 15.95609932881222, 46.362602296724127 ], [ 15.963610296926547, 46.361602369634276 ], [ 15.971378204518517, 46.363567439930385 ], [ 15.993394853730273, 46.373634633500323 ], [ 16.016030585515733, 46.379322838762853 ], [ 16.023682371114109, 46.387474899490172 ], [ 16.033741269820254, 46.389106991692806 ], [ 16.045151078133788, 46.394810091300371 ], [ 16.05475800685776, 46.395085182248117 ], [ 16.06234003342005, 46.391095259896147 ], [ 16.082627161683341, 46.377621472913404 ], [ 16.087914125717923, 46.377625523468765 ], [ 16.096858985159496, 46.381592602218326 ], [ 16.112823852867084, 46.382737752369906 ], [ 16.118579709755725, 46.38798679894095 ], [ 16.12742559331004, 46.390809878116933 ], [ 16.134685400242883, 46.39805793594531 ], [ 16.143081239890794, 46.403192008374312 ], [ 16.150325197480054, 46.402876077669255 ], [ 16.171796114462179, 46.389803391461271 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Drava", "discharge": 544.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.171796114462179, 46.389803391461271 ], [ 16.191682414585046, 46.377695507966564 ], [ 16.200675265760509, 46.382112587090042 ], [ 16.211248266473795, 46.378439692861754 ], [ 16.218759161582881, 46.381086760189902 ], [ 16.224063194018743, 46.377645815153656 ], [ 16.228650171023951, 46.37721485947791 ], [ 16.244950965804737, 46.381991006985189 ], [ 16.253264898992601, 46.382540085265411 ], [ 16.264574877335498, 46.379744197067474 ], [ 16.276121945236937, 46.372355317640732 ], [ 16.286555833475585, 46.374407414146965 ], [ 16.299935849716721, 46.368998549149524 ], [ 16.304032793888666, 46.37041758608229 ], [ 16.305695638470915, 46.377677590367611 ], [ 16.319700728520765, 46.368338737719824 ], [ 16.333212926946214, 46.353751887351656 ], [ 16.336955298666233, 46.333644952865349 ], [ 16.36471938625834, 46.319778237422653 ], [ 16.381688313154349, 46.317634401567055 ], [ 16.394344344193691, 46.311783530233377 ], [ 16.412460160738583, 46.314850697722065 ], [ 16.427652126973204, 46.311405847146062 ], [ 16.432691074931522, 46.312317893331134 ], [ 16.445535063724343, 46.308518021153425 ], [ 16.455003022243478, 46.307393112294463 ], [ 16.466524882656145, 46.310529217266904 ], [ 16.47209285476977, 46.310040271226356 ], [ 16.48552592149035, 46.30208341001746 ], [ 16.494509914811612, 46.299374500029337 ], [ 16.511269818599501, 46.298592660184461 ], [ 16.51433864117983, 46.306470677855089 ], [ 16.521349510352888, 46.310727737935231 ], [ 16.530840396597586, 46.313264824251107 ], [ 16.558712248967826, 46.311270092431137 ], [ 16.570572040219101, 46.317816195352115 ], [ 16.580154908282221, 46.321260281558217 ], [ 16.586795856175993, 46.321634343941334 ], [ 16.612662862661221, 46.312612603483274 ], [ 16.619586817383862, 46.312513669137473 ], [ 16.625442729485346, 46.314985720985916 ], [ 16.638553595900792, 46.317343842452395 ], [ 16.645410565176853, 46.31655790930747 ], [ 16.654302710415806, 46.306273008562613 ], [ 16.658507699135555, 46.305385049165963 ], [ 16.667764570343785, 46.3088371328313 ], [ 16.682019529106096, 46.306090271914123 ], [ 16.684568333605103, 46.315135283629076 ], [ 16.694642298689015, 46.313506381820837 ], [ 16.704833109002703, 46.319663469506722 ], [ 16.716144016764169, 46.320491575974323 ], [ 16.733822930368998, 46.318946746981581 ], [ 16.747981041334469, 46.308627896232963 ], [ 16.755601116305314, 46.302298977861568 ], [ 16.765115129646965, 46.298393073235879 ], [ 16.773694008692466, 46.30164315033948 ], [ 16.789938953127194, 46.299015309162492 ], [ 16.797096926418622, 46.29797437843861 ], [ 16.816424700365118, 46.30298655502461 ], [ 16.828110597721164, 46.30424566457355 ], [ 16.837216564285974, 46.302875752895538 ], [ 16.843554574651375, 46.300270817115653 ], [ 16.852213503341325, 46.300987898920553 ], [ 16.858757407394563, 46.303642957225463 ], [ 16.8721583460467, 46.302293086484603 ], [ 16.881218449095378, 46.294045184415545 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dráva", "discharge": 595.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.889370267184155, 46.293876074613145 ], [ 16.892012589333572, 46.283418301920676 ], [ 16.897501640677763, 46.27901636086515 ], [ 16.906344659221418, 46.275136450207441 ], [ 16.925285889089377, 46.257215655329937 ], [ 16.931311896702539, 46.254849716048234 ], [ 16.938931840004937, 46.255155788154219 ], [ 16.942786150233427, 46.238221848921683 ], [ 16.949084227992362, 46.232171916780509 ], [ 16.96229726287914, 46.226000051639502 ], [ 16.961021451010875, 46.216890051887759 ], [ 16.969485667436562, 46.203161151765286 ], [ 16.977750671064523, 46.200220234311182 ], [ 17.001044415921829, 46.20545844882259 ], [ 17.00375744583377, 46.203028477450069 ], [ 17.006259703623336, 46.189138520518277 ], [ 17.012635826626436, 46.180788593115288 ], [ 17.015819826304632, 46.179708624748052 ], [ 17.02803580412353, 46.176790745569434 ], [ 17.035325873147233, 46.170912823013943 ], [ 17.046419191718275, 46.151075955248039 ], [ 17.051420209550862, 46.148528006320483 ], [ 17.061976137404915, 46.148673106565433 ], [ 17.065108147457778, 46.147136138372296 ], [ 17.07860636592774, 46.131530288847699 ], [ 17.096354318789871, 46.128089461916531 ], [ 17.106457394534818, 46.120914568534374 ], [ 17.109078379976449, 46.120776593060846 ], [ 17.119820393539463, 46.116550701395816 ], [ 17.128575422990799, 46.112193790097038 ], [ 17.137520414506042, 46.109664879313861 ], [ 17.146471284416965, 46.113326958777407 ], [ 17.152765236682683, 46.113686018230929 ], [ 17.161261252844415, 46.110031104369533 ], [ 17.170656220099879, 46.108620195040601 ], [ 17.179379073122711, 46.113209271873593 ], [ 17.181589015947793, 46.115387289900013 ], [ 17.206477759459759, 46.120270520307308 ], [ 17.215718696474795, 46.120472607437208 ], [ 17.221292724419399, 46.117195665515716 ], [ 17.224651810813327, 46.111740704609488 ], [ 17.226395079714759, 46.097427740522093 ], [ 17.229025182639457, 46.091324773754785 ], [ 17.249157339841158, 46.076717985736053 ], [ 17.252131378187084, 46.073808017656518 ], [ 17.250199442558714, 46.071157003129194 ], [ 17.255789466722796, 46.068109060394846 ], [ 17.27433727007886, 46.021005300844656 ], [ 17.283532567385354, 46.002847412991052 ], [ 17.289214572680859, 46.000707469457382 ], [ 17.296199512621282, 46.001481534605475 ], [ 17.315318261983602, 46.008027707452584 ], [ 17.31956623905343, 46.007798748067046 ], [ 17.32260826301016, 46.005571780186195 ], [ 17.323791337922891, 46.001374797529103 ], [ 17.319169488329319, 45.995198761292833 ], [ 17.311458623901409, 45.990796694245432 ], [ 17.293823775513015, 45.988759529862207 ], [ 17.292444855298385, 45.98516252122576 ], [ 17.293779901501146, 45.982339538074761 ], [ 17.300111962427916, 45.97718260524784 ], [ 17.313705969863463, 45.972318740633604 ], [ 17.314638090637764, 45.965844758557736 ], [ 17.318106151869781, 45.961530797427883 ], [ 17.32779906005532, 45.963071887767249 ], [ 17.334501934295826, 45.967298944777617 ], [ 17.340904806620067, 45.971772999500303 ], [ 17.346982737654947, 45.973280055900055 ], [ 17.354469702507657, 45.972647127564301 ], [ 17.356200791528654, 45.967505151228266 ], [ 17.34542514074413, 45.953173067707887 ], [ 17.343769270412686, 45.947066061102376 ], [ 17.346205346792814, 45.942347089869806 ], [ 17.35370936456783, 45.938956166258514 ], [ 17.368622187605851, 45.943197301608421 ], [ 17.386251918579617, 45.951185458061872 ], [ 17.396219834862112, 45.952250551192648 ], [ 17.408658992408977, 45.940096685858528 ], [ 17.412419058028089, 45.935534728089344 ], [ 17.419147986238308, 45.936999790025581 ], [ 17.429553707812204, 45.947905873857984 ], [ 17.437167590692553, 45.951388941378411 ], [ 17.440681586002274, 45.950506975991786 ], [ 17.444251513545417, 45.953067006800801 ], [ 17.473788442764842, 45.94707829486871 ], [ 17.500375275658094, 45.946986547834051 ], [ 17.514072261777123, 45.943244682884384 ], [ 17.531587187331926, 45.941352852344444 ], [ 17.556892023694672, 45.941548091765931 ], [ 17.565922994356555, 45.940125179775308 ], [ 17.580110005859272, 45.934971321748385 ], [ 17.599071068172695, 45.925644514486308 ], [ 17.618335187554571, 45.913311713702626 ], [ 17.644103496008054, 45.88913098980067 ], [ 17.65839015133032, 45.850904175837677 ], [ 17.667372237917625, 45.843507271396277 ], [ 17.676009220039688, 45.841638356000168 ], [ 17.700863074037954, 45.841138592143601 ], [ 17.748968005342899, 45.829192064691263 ], [ 17.759701116288515, 45.820078178742278 ], [ 17.781536000110961, 45.819048387276375 ], [ 17.79618897831967, 45.815443530667466 ], [ 17.808672057561015, 45.807372660134149 ], [ 17.818003028513004, 45.805910750368781 ], [ 17.826240861051733, 45.811858821139936 ], [ 17.832454931682278, 45.806212887164179 ], [ 17.834166017300888, 45.801291909849347 ], [ 17.837939126857371, 45.794413955021497 ], [ 17.854615189885262, 45.785861124226571 ], [ 17.8603373964716, 45.773357194357025 ], [ 17.865946408773514, 45.770961250668847 ], [ 17.875080143396925, 45.781677323818506 ], [ 17.881451080999383, 45.782909383238028 ], [ 17.899780755818615, 45.793769542801392 ], [ 17.909648688404332, 45.794105636171039 ], [ 17.922361673434558, 45.790828760782397 ], [ 17.932798616995132, 45.790443861150059 ], [ 17.953542419063329, 45.794034052818233 ], [ 17.973302333398394, 45.792168243432585 ], [ 17.991876182823653, 45.794045417098893 ], [ 18.000688133777061, 45.793747501299897 ], [ 18.018543312839856, 45.778901689657495 ], [ 18.021608274951685, 45.779866718047749 ], [ 18.03850129815271, 45.773339886780519 ], [ 18.069455237001787, 45.76664918967063 ], [ 18.076328247987416, 45.763937258286262 ], [ 18.105470019861247, 45.766534532108416 ], [ 18.122446613859584, 45.782037673945474 ], [ 18.128721516126195, 45.785101729652858 ], [ 18.145985426766025, 45.784277894430481 ], [ 18.153986357183715, 45.785394969928582 ], [ 18.162836456326168, 45.777506063725561 ], [ 18.169382467997615, 45.774809128934123 ], [ 18.174301386820435, 45.777491172670558 ], [ 18.19105717415329, 45.78312532447864 ], [ 18.196316140268419, 45.783259374738343 ], [ 18.204161146509747, 45.780482453188434 ], [ 18.213560105135624, 45.779673543087831 ], [ 18.244198298657636, 45.760092858431712 ], [ 18.257015214467302, 45.760447980575051 ], [ 18.274327267968832, 45.752250154757107 ], [ 18.290762411529165, 45.739742326746729 ], [ 18.31220550853941, 45.728065545271747 ], [ 18.323660439235876, 45.728038654327293 ], [ 18.327522376773921, 45.730091688280304 ], [ 18.344895368388197, 45.725097859847047 ], [ 18.346213509046414, 45.717434881625344 ], [ 18.349848531913178, 45.71513791914321 ], [ 18.354481495242112, 45.715534962203023 ], [ 18.368614352122957, 45.718552093398898 ], [ 18.374487319734179, 45.718411149120953 ], [ 18.387823500084505, 45.70493029195503 ], [ 18.406567424416863, 45.703057473264195 ], [ 18.415661477959691, 45.697423566434971 ], [ 18.422840586852733, 45.689618644119207 ], [ 18.433201639464372, 45.683675749359153 ], [ 18.442934544567834, 45.685578840245078 ], [ 18.454466315664369, 45.693806939370418 ], [ 18.46382242642624, 45.685167039414324 ], [ 18.471434368108294, 45.685831110224612 ], [ 18.479103398953221, 45.68189018827487 ], [ 18.499253250256768, 45.683359378474925 ], [ 18.503056342643994, 45.67737042125033 ], [ 18.494677618648936, 45.665727355484705 ], [ 18.495964655571445, 45.663419370969251 ], [ 18.501902717012566, 45.658373433799916 ], [ 18.510540694518475, 45.65689651697005 ], [ 18.516405760070747, 45.651693579442707 ], [ 18.51973092648625, 45.64205762287046 ], [ 18.52471098319031, 45.637602675070774 ], [ 18.547430969257142, 45.63130789847505 ], [ 18.556998092997919, 45.621959000623427 ], [ 18.570928124107983, 45.616000140063356 ], [ 18.579057131032048, 45.613173220925702 ], [ 18.588351246304249, 45.604296319845211 ], [ 18.593522368491392, 45.59637337865999 ], [ 18.607352415332446, 45.589728517840911 ], [ 18.617730508207703, 45.581694625950099 ], [ 18.632030530414138, 45.5761637687499 ], [ 18.637286589880794, 45.571452823708107 ], [ 18.64996857075112, 45.568553947833387 ], [ 18.657491619945002, 45.563694024876767 ], [ 18.663936594158393, 45.563038086865106 ], [ 18.668033543664713, 45.564380124433775 ], [ 18.715755398723118, 45.557319586429486 ], [ 18.734542262334486, 45.558605763396322 ], [ 18.746810210422165, 45.557560880909797 ], [ 18.769054356446915, 45.543206109530523 ], [ 18.780410299849347, 45.542680218050144 ], [ 18.80777505486224, 45.547055472805852 ], [ 18.847716806013942, 45.547818851563456 ], [ 18.868334726107257, 45.545740050184797 ], [ 18.884760615635603, 45.546469205522087 ], [ 18.91517157210885, 45.539576503111086 ], [ 18.930699501962671, 45.538523651498515 ], [ 18.938650439007521, 45.539358726068052 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Dunav", "discharge": 2889.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.938650439007521, 45.539358726068052 ], [ 18.956143449072766, 45.533567899099374 ], [ 18.975374295732649, 45.535701080335741 ], [ 18.985613174739626, 45.538909173655298 ], [ 18.99863787007714, 45.550803283973579 ], [ 19.006940677138644, 45.558295354290678 ], [ 19.016042572594699, 45.560988438393842 ], [ 19.023128561747811, 45.559405507462131 ], [ 19.046109669415092, 45.546950740363371 ], [ 19.047753707111184, 45.544532758275807 ], [ 19.046090802825997, 45.540050747523637 ], [ 19.047664875441292, 45.535789767606467 ], [ 19.052575894217313, 45.533366817267712 ], [ 19.080226808260949, 45.52950308421002 ], [ 19.087725910511335, 45.525157653547467 ], [ 19.094432884822275, 45.52127122943287 ], [ 19.101850965036181, 45.514877306973247 ], [ 19.105122083993923, 45.507740345974163 ], [ 19.104426173244466, 45.503326344123842 ], [ 19.097518864535822, 45.494449026852912 ], [ 19.083511904049949, 45.488029169963553 ], [ 19.068921320210499, 45.483943806488504 ], [ 19.043241892653068, 45.483943806488504 ], [ 19.017562465095637, 45.492698156792173 ], [ 19.002971881256187, 45.495616273560067 ], [ 18.993633907598941, 45.479858443013462 ], [ 18.989548544123892, 45.45126089868814 ], [ 18.998886517781141, 45.434919444787958 ], [ 19.024565945338573, 45.425581471130705 ], [ 19.030985802227931, 45.412741757351995 ], [ 19.021647828570682, 45.40165291363401 ], [ 19.000637387841874, 45.399902043573277 ], [ 18.980794193820223, 45.391731316623186 ], [ 18.973790713577287, 45.379475226198046 ], [ 18.992466660891782, 45.365468265712174 ], [ 19.01989695850995, 45.346792318397682 ], [ 19.067754073503345, 45.34562507169052 ], [ 19.085846397464262, 45.342706954922633 ], [ 19.098102487889399, 45.332201734558232 ], [ 19.105105968132335, 45.32052926748667 ], [ 19.107440461546645, 45.303020566879333 ], [ 19.116194811850317, 45.296017086636397 ], [ 19.134766126507976, 45.287613875257648 ], [ 19.182616083757992, 45.275445343002694 ], [ 19.196299145989741, 45.268090480897804 ], [ 19.232511910621536, 45.269609822266787 ], [ 19.242099787492695, 45.273240909532781 ], [ 19.248021671718188, 45.277543960904502 ], [ 19.253623650305148, 45.277002014214339 ], [ 19.261405740502948, 45.269934096410722 ], [ 19.264997859927981, 45.262587138045532 ], [ 19.262684142571263, 45.248404132498571 ], [ 19.265553209734858, 45.243998164529614 ], [ 19.274187231927026, 45.240206250448047 ], [ 19.292517100942366, 45.241659422272889 ], [ 19.326378009987945, 45.236323749829204 ], [ 19.35836784992582, 45.23522105371638 ], [ 19.417142467909311, 45.23794160893506 ], [ 19.490383934550728, 45.244328296599996 ], [ 19.49855184843144, 45.246468371743958 ], [ 19.514910583692497, 45.255573516929026 ], [ 19.523756496326762, 45.257523598903937 ], [ 19.538992405619844, 45.257817743665271 ], [ 19.547053398601211, 45.255806822090186 ], [ 19.556259458443101, 45.249962915928037 ], [ 19.576056822877472, 45.225034130769934 ], [ 19.58827087896314, 45.218461253592451 ], [ 19.59652985403067, 45.217378333241143 ], [ 19.608650753560386, 45.219075446437337 ], [ 19.62581150663971, 45.227067601085821 ], [ 19.639929258360272, 45.236009725475427 ], [ 19.648276197756367, 45.236772803672217 ], [ 19.674601198839042, 45.229018061802776 ], [ 19.684267133463646, 45.229628153044253 ], [ 19.696279969477963, 45.234755261788855 ], [ 19.705158888357225, 45.236464344717483 ], [ 19.720094804246024, 45.236487486080414 ], [ 19.767976610100131, 45.232825945131999 ], [ 19.80245357654189, 45.22463528116829 ], [ 19.808366554075139, 45.2240863381517 ], [ 19.8179184725672, 45.225597427303356 ], [ 19.83662325136887, 45.231815598597095 ], [ 19.849155062652621, 45.238105711483058 ], [ 19.855534911644753, 45.244243765789292 ], [ 19.857233764338289, 45.251472774170907 ], [ 19.856419594221776, 45.260612757924974 ], [ 19.8620263776209, 45.270381800542005 ], [ 19.872980352592812, 45.26852790670997 ], [ 19.905516381909429, 45.257660227542296 ], [ 19.915207471015883, 45.250210326893885 ], [ 19.96058221622534, 45.19806781099583 ], [ 19.975898293740716, 45.189576965217491 ], [ 19.994041292147866, 45.184476142961451 ], [ 19.998914284225716, 45.183534190332168 ], [ 20.030250229474994, 45.177473494175352 ], [ 20.031411252024668, 45.175935507122745 ], [ 20.049672219701471, 45.1724416843523 ], [ 20.093115930805912, 45.175276094204776 ], [ 20.103758479023462, 45.174258664496108 ], [ 20.113971887711077, 45.174842287849685 ], [ 20.126957507328189, 45.173820946980925 ], [ 20.135857763470252, 45.176739063748812 ], [ 20.144174396258737, 45.179073557163129 ], [ 20.151615594016857, 45.181699862254227 ], [ 20.156576392522272, 45.183304826476565 ], [ 20.160385382255733, 45.185023724785282 ], [ 20.166851292516146, 45.187930783371797 ], [ 20.178337200727217, 45.189528890723707 ], [ 20.206396180767484, 45.182682164324603 ], [ 20.22201710523759, 45.182224313218263 ], [ 20.227226132241707, 45.179309366018046 ], [ 20.241800313571016, 45.165695517502314 ], [ 20.259215415534555, 45.155456693092866 ], [ 20.275223612793891, 45.140537859569619 ], [ 20.279595615684809, 45.139186903237245 ], [ 20.28431695403663, 45.134389894154815 ], [ 20.287380976642911, 45.131325871548533 ], [ 20.290444999249196, 45.12855366061904 ], [ 20.295113986077819, 45.123446956275231 ], [ 20.299928878744836, 45.120382933668949 ], [ 20.304489895443517, 45.117432160500385 ], [ 20.314288067547817, 45.105595265269372 ], [ 20.319532146599315, 45.099999319763832 ], [ 20.330669213046562, 45.093361432144299 ], [ 20.338290307476335, 45.086243511740761 ], [ 20.346253982435098, 45.076939470286987 ], [ 20.355008332738766, 45.06745559079134 ], [ 20.361720001304914, 45.055053594527813 ], [ 20.365659458941575, 45.032146377899885 ], [ 20.360990472112952, 45.015221300646125 ], [ 20.348150758334235, 45.003548833574563 ], [ 20.323638577483958, 44.994210859917317 ], [ 20.304379006815886, 44.987791003027958 ], [ 20.293873786451481, 44.974367665895663 ], [ 20.301460890047995, 44.955691718581171 ], [ 20.317218720594603, 44.93759939462025 ], [ 20.34698351162708, 44.915421707184287 ], [ 20.359239602052217, 44.892660396394746 ], [ 20.375581055952402, 44.872817202373099 ], [ 20.393089756559739, 44.862895605362269 ], [ 20.399979778343148, 44.858301897526395 ], [ 20.420957771693093, 44.852828102513044 ], [ 20.433803798205485, 44.847808229179691 ], [ 20.441092777391535, 44.843490128855798 ], [ 20.45501635504473, 44.837080771128939 ], [ 20.465016325783026, 44.835886867284785 ], [ 20.47669380195979, 44.833276720168179 ], [ 20.490117139092085, 44.830942226753869 ], [ 20.497996054365387, 44.831525850107447 ], [ 20.506166781315478, 44.832401285137813 ], [ 20.513170261558415, 44.833568531844975 ], [ 20.524259105276396, 44.835027590228918 ], [ 20.539725124146212, 44.837653895320017 ], [ 20.554607519662451, 44.843198317179009 ], [ 20.575180242876073, 44.851514949967488 ], [ 20.590646261745889, 44.855016690088959 ], [ 20.608738585706806, 44.852098573321072 ], [ 20.620994676131943, 44.848888644876389 ], [ 20.629749026435615, 44.846262339785291 ], [ 20.633121914647841, 44.844575895679178 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Someș", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.713569603372402, 47.826331603840053 ], [ 22.723716666154363, 47.814242427946063 ], [ 22.745018918559957, 47.809281629440655 ], [ 22.77945269642105, 47.811616122854964 ], [ 22.801338572180221, 47.800235467460197 ], [ 22.826142564707283, 47.795566480631571 ], [ 22.848612063820031, 47.797609162369099 ], [ 22.880127724913237, 47.786520318651114 ], [ 22.919522301279745, 47.783018578529649 ], [ 22.942283612069282, 47.777765968347445 ], [ 22.963257576338492, 47.780027508842565 ], [ 22.990687873956652, 47.781486567226509 ], [ 23.020744476665914, 47.772148593569263 ], [ 23.048174774284075, 47.771273158538882 ], [ 23.078523188670125, 47.773607651953199 ], [ 23.101868122813244, 47.75668257469944 ], [ 23.11120609647049, 47.738006627384948 ], [ 23.136885524027914, 47.731003147142012 ], [ 23.151476107867364, 47.728668653727702 ], [ 23.172486548596169, 47.729835900434857 ], [ 23.200500469567906, 47.735672133970631 ], [ 23.236685117489735, 47.731003147142012 ], [ 23.273453388765141, 47.72516691360623 ], [ 23.300300063029724, 47.719914303424034 ], [ 23.324812243879997, 47.709409083059626 ], [ 23.35165891814458, 47.708241836352471 ], [ 23.363331385216139, 47.691900382452289 ], [ 23.375003852287694, 47.68723139562367 ], [ 23.377338345702007, 47.671473565077065 ], [ 23.398348786430812, 47.661551968066242 ], [ 23.395430669662922, 47.641708774044595 ], [ 23.379672839116317, 47.62595094349799 ], [ 23.390178059480721, 47.604356879415612 ], [ 23.370918488812649, 47.592684412344049 ], [ 23.352242541498157, 47.578093828504606 ], [ 23.33473384089082, 47.569923101554515 ], [ 23.321894127112106, 47.553581647654333 ], [ 23.321310503758529, 47.534322076986264 ], [ 23.309638036686973, 47.515062506318188 ], [ 23.310221660040551, 47.482963221871408 ], [ 23.314307023515596, 47.467789014678381 ], [ 23.305552673211928, 47.450863937424621 ], [ 23.321894127112106, 47.43218799011013 ], [ 23.317225140283483, 47.426935379927926 ], [ 23.299716439676146, 47.403590445784815 ], [ 23.307887166626237, 47.383163628409591 ], [ 23.290962089372478, 47.364487681095092 ], [ 23.297381946261837, 47.344644487073445 ], [ 23.282791362422387, 47.328886656526841 ], [ 23.2851258558367, 47.317797812808863 ], [ 23.28746034925101, 47.309627085858772 ], [ 23.275787882179454, 47.299121865494371 ], [ 23.282207739068809, 47.278695048119147 ], [ 23.2798732456545, 47.255350113976029 ], [ 23.2851258558367, 47.245720328642008 ], [ 23.301759121413671, 47.241634965166966 ], [ 23.324228620526419, 47.244553081934853 ], [ 23.33473384089082, 47.255641925652832 ], [ 23.337068334305133, 47.270232509492281 ], [ 23.350783483114213, 47.281904976563837 ], [ 23.373252982226962, 47.287157586746041 ], [ 23.384925449298517, 47.295911937049709 ], [ 23.407978571764847, 47.294744690342554 ], [ 23.419651038836403, 47.296495560403287 ], [ 23.419651038836403, 47.316922377778511 ], [ 23.439494232858053, 47.326843974789334 ], [ 23.453209381667133, 47.326552163112545 ], [ 23.467799965506579, 47.337057383476953 ], [ 23.495813886478317, 47.3437690520431 ], [ 23.520617879005378, 47.354274272407501 ], [ 23.546297306562806, 47.352523402346769 ], [ 23.577229344302435, 47.347562603841354 ], [ 23.600866090122334, 47.338808253537678 ], [ 23.606702323658116, 47.323342234667862 ], [ 23.598239785031236, 47.307876215798046 ], [ 23.58890181137399, 47.292118385251442 ], [ 23.611371310486739, 47.275485119674471 ], [ 23.619250225760037, 47.282488599917407 ], [ 23.636467114690586, 47.28569852836209 ], [ 23.650182263499666, 47.276360554704837 ], [ 23.658936613803334, 47.262061782542183 ], [ 23.676153502733882, 47.266147146017225 ], [ 23.687825969805441, 47.279862294826309 ], [ 23.741811130011392, 47.235506919954396 ], [ 23.764572440800933, 47.212745609164855 ], [ 23.798422595308448, 47.196404155264673 ], [ 23.821767529451567, 47.18648255825385 ], [ 23.845112463594681, 47.169557481000091 ], [ 23.855617683959082, 47.152632403746331 ], [ 23.887716968405869, 47.141543560028353 ], [ 23.915730889377606, 47.140376313321198 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.33279401892684, 46.524187091757319 ], [ 16.337470517850775, 46.523596677585253 ], [ 16.339578477236401, 46.524874695797216 ], [ 16.342691216228669, 46.536879708598342 ], [ 16.345809166335194, 46.53834473563154 ], [ 16.354974199197727, 46.533576830565103 ], [ 16.364215144894903, 46.533160918973323 ], [ 16.373048180502995, 46.528408009818492 ], [ 16.381253140397, 46.527576089468489 ], [ 16.388047059283284, 46.529331151409487 ], [ 16.390535867046836, 46.538154162728333 ], [ 16.396721848442908, 46.536957223053726 ], [ 16.399834940600641, 46.531315260661451 ], [ 16.405670998366194, 46.526466323387552 ], [ 16.421091925499084, 46.524845472705572 ], [ 16.430994937062597, 46.52095457264555 ], [ 16.432671991486451, 46.517669593892258 ], [ 16.440948075822238, 46.510643682975711 ], [ 16.445981028004191, 46.511329729928029 ], [ 16.455696871046779, 46.515922815190876 ], [ 16.463636820050791, 46.515789891363895 ], [ 16.472460923649059, 46.507587987200587 ], [ 16.486158875831787, 46.505353120722482 ], [ 16.4950878884434, 46.501729211819637 ], [ 16.496364027447793, 46.494336234684098 ], [ 16.499177042999094, 46.492600263528658 ], [ 16.5077939841497, 46.492661345500309 ], [ 16.513201994508595, 46.49034640029091 ], [ 16.51678225735855, 46.475968455344379 ], [ 16.521264258637444, 46.474385500522672 ], [ 16.527858152082057, 46.477517558954723 ], [ 16.564988097217714, 46.467755926702758 ], [ 16.571883130705686, 46.463765997839083 ], [ 16.579179079106822, 46.463880067584341 ], [ 16.593884884685153, 46.468687200598055 ], [ 16.60974185260379, 46.464956357296423 ], [ 16.618075604485529, 46.466112907821802 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 16.618075604485529, 46.466112907821802 ], [ 16.62081774757873, 46.466493459952481 ], [ 16.627035721533584, 46.465742520364913 ], [ 16.631514723379588, 46.464155565518183 ], [ 16.634989724957666, 46.462892600865807 ], [ 16.646582655035502, 46.462519711362305 ], [ 16.660025591993666, 46.461191841882595 ], [ 16.675251624555646, 46.454500995993435 ], [ 16.676628670540044, 46.451686012961297 ], [ 16.665735870370142, 46.445329918182217 ], [ 16.672382886997624, 46.442259985871488 ], [ 16.682661814468883, 46.442454083923238 ], [ 16.714837311603144, 46.406752441568536 ], [ 16.722495514297822, 46.39400453239778 ], [ 16.727347569943426, 46.389640584213112 ], [ 16.733638461316893, 46.393004640114462 ], [ 16.740975268644434, 46.40021469976071 ], [ 16.744948240830034, 46.400248737357707 ], [ 16.749475493424047, 46.386046800825923 ], [ 16.760377422997365, 46.385974904605753 ], [ 16.764976529911248, 46.379100957863372 ], [ 16.769612562232229, 46.375896006963032 ], [ 16.775260388911843, 46.38272805057791 ], [ 16.784623436383253, 46.377224147599414 ], [ 16.793565243945306, 46.383896223496663 ], [ 16.802894169622359, 46.384582311194329 ], [ 16.811875164476611, 46.381851401063102 ], [ 16.813222279706661, 46.375595422619412 ], [ 16.819028268957634, 46.374161479883171 ], [ 16.823239323212061, 46.370056526001378 ], [ 16.829513283736119, 46.369976585788578 ], [ 16.834121321336188, 46.366539634894735 ], [ 16.840205255768094, 46.3678446910113 ], [ 16.846200334968994, 46.361816756014534 ], [ 16.854611315814729, 46.360023838968353 ], [ 16.858584416227313, 46.353638885764006 ], [ 16.863284435375871, 46.35111293364362 ], [ 16.869273388017486, 46.351501990895869 ], [ 16.870355427261085, 46.349156004036033 ], [ 16.868079563066736, 46.343079990934903 ], [ 16.875430563754367, 46.340650063922062 ], [ 16.876041633088523, 46.336949075400575 ], [ 16.890765627302574, 46.332318221695523 ], [ 16.881656724322102, 46.330480137989746 ], [ 16.880834760399509, 46.328916131996806 ], [ 16.880271936956984, 46.320229138805978 ], [ 16.887131289691155, 46.300172232404741 ], [ 16.889196387211346, 46.294564260060859 ], [ 16.889370267184155, 46.293876074613145 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Mura", "discharge": 166.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.991384435087326, 46.679031653238155 ], [ 16.004295893735549, 46.668697289132147 ], [ 16.012968899974016, 46.665351376644772 ], [ 16.057508036075369, 46.643306833969362 ], [ 16.07288113148579, 46.633258995323615 ], [ 16.096585383420397, 46.612546252690272 ], [ 16.108113323636026, 46.611592363634792 ], [ 16.118737397544887, 46.604260475196114 ], [ 16.125886381365206, 46.602578546133039 ], [ 16.131873263120767, 46.606442597557127 ], [ 16.139373241841184, 46.604973671081417 ], [ 16.142612088373806, 46.611477692521269 ], [ 16.151206110125262, 46.607438780373442 ], [ 16.157878057337584, 46.607834843237399 ], [ 16.164012199711426, 46.598633915089898 ], [ 16.170478192645884, 46.596749979426036 ], [ 16.184495370279265, 46.583078133002246 ], [ 16.191554373894753, 46.580480204617317 ], [ 16.199483326730061, 46.580133280088987 ], [ 16.205115362183648, 46.576448339181411 ], [ 16.212949554614529, 46.564191432436374 ], [ 16.225040583221265, 46.558618555765442 ], [ 16.233390657441522, 46.552065645312197 ], [ 16.26427872175735, 46.538324959500919 ], [ 16.272023785464807, 46.532481041618006 ], [ 16.278997735031133, 46.532630107975258 ], [ 16.289401778746313, 46.526896215068078 ], [ 16.316512678098935, 46.522704479402016 ], [ 16.32338857769647, 46.525374541147833 ], [ 16.33279401892684, 46.524187091757319 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Rába", "discharge": 27.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.406668050227665, 47.544559978670435 ], [ 17.407390291171378, 47.546185624695767 ], [ 17.417554967548572, 47.558247709633129 ], [ 17.422917689305102, 47.569645747876272 ], [ 17.447917027980271, 47.593056964380551 ], [ 17.482339377035274, 47.612981276288068 ], [ 17.518893822248486, 47.627744615882783 ], [ 17.542710518022389, 47.634706840453639 ], [ 17.594505991533943, 47.643583335706502 ], [ 17.607107771916624, 47.650000451598125 ], [ 17.628574117197061, 47.674029633076451 ], [ 17.637490794519064, 47.68636970654903 ], [ 17.647103708680564, 47.687449798949928 ], [ 17.673005207992503, 47.702979035126852 ], [ 17.6761329305012, 47.714950051511039 ], [ 17.679397809889657, 47.719581077967007 ], [ 17.684520708932219, 47.722736124447465 ], [ 17.689422631129776, 47.724883169991784 ], [ 17.711135471039118, 47.725753381427765 ], [ 17.7205353315656, 47.72939246965057 ], [ 17.73665416235982, 47.732444624595487 ], [ 17.775713905382183, 47.732647006396597 ], [ 17.778525838114323, 47.734932031089038 ], [ 17.79007969879925, 47.737953140894028 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 196.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.150505168988698, 47.748424664910033 ], [ 18.143568254883952, 47.755205278086066 ], [ 18.142546914015192, 47.77227626117822 ], [ 18.134959810418678, 47.782197858189043 ], [ 18.113219840497898, 47.788034091724825 ], [ 18.101547373426335, 47.799560652957993 ], [ 18.08994785927397, 47.80488621605938 ], [ 18.059015821534338, 47.825896656788181 ], [ 18.032752770623329, 47.85682869452782 ], [ 18.026916537087548, 47.89884957598543 ], [ 18.010972172829977, 47.919192385555434 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 40.94 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.140916900030355, 49.151356702813615 ], [ 19.148129952230057, 49.151232339844654 ], [ 19.156592490856937, 49.150794622329471 ], [ 19.166805899544553, 49.14546905922807 ], [ 19.17162079221157, 49.13153505166138 ], [ 19.171912603888359, 49.121613454650557 ], [ 19.186357281889414, 49.118987149559459 ], [ 19.201093771567258, 49.12205117216574 ], [ 19.22166649478088, 49.118403526205881 ], [ 19.23100446843813, 49.109649175902206 ], [ 19.251723097490146, 49.097684897153862 ], [ 19.263833282076892, 49.095058592062756 ], [ 19.301185176705879, 49.082072972445644 ], [ 19.334743519536612, 49.080905725738489 ], [ 19.36217381715478, 49.084991089213531 ], [ 19.389604114772943, 49.092870004486834 ], [ 19.421411587542945, 49.096663556285094 ], [ 19.456428988757622, 49.097830802992249 ], [ 19.467404555914271, 49.098413370251087 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 19.467404555914271, 49.098413370251087 ], [ 19.490789813699532, 49.099654625972157 ], [ 19.559365557744943, 49.100530061002523 ], [ 19.599343757465036, 49.089441217284538 ], [ 19.611308036213387, 49.076893315182616 ], [ 19.634944782033294, 49.068722588232525 ], [ 19.667335878156873, 49.070181646616469 ], [ 19.688856989320065, 49.059165755817688 ], [ 19.693380070310294, 49.047347382907731 ], [ 19.704760725705064, 49.038009409250485 ], [ 19.713369170170338, 49.034069951613837 ], [ 19.725041637241901, 49.032027269876309 ], [ 19.742112620334055, 49.033632234098654 ], [ 19.757286827527082, 49.032319081553098 ], [ 19.767208424537909, 49.035091292482598 ], [ 19.776674065803761, 49.034562383818432 ], [ 19.784571219306855, 49.032610893229887 ], [ 19.787179286168165, 49.025443268918778 ], [ 19.797246789017386, 49.020701329170954 ], [ 19.808919256088945, 49.018877506191025 ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "Váh (Vág)", "discharge": 152.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.010972172829977, 47.919192385555434 ], [ 18.009991459833785, 47.920443640067816 ], [ 18.011158706540943, 47.947873937685983 ], [ 18.014660446662411, 47.964215391586166 ], [ 17.986646525690666, 47.99222931255791 ], [ 17.970888695144058, 48.007403519750945 ], [ 17.976141305326262, 48.027246713772591 ], [ 17.955714487951031, 48.06051324492654 ], [ 17.936454917282958, 48.078605568887454 ], [ 17.906690126250481, 48.107203113212776 ], [ 17.910775489725527, 48.118875580284339 ], [ 17.911359113079104, 48.142220514427471 ], [ 17.845993297478369, 48.179572409056462 ], [ 17.807474156142224, 48.222760537221234 ], [ 17.784129221999102, 48.262446925264541 ], [ 17.746777327370111, 48.291628092943441 ], [ 17.73860660042002, 48.341819701351142 ], [ 17.765453274684607, 48.386175076223068 ], [ 17.779460235170479, 48.422359724144904 ], [ 17.800470675899287, 48.476053072674084 ], [ 17.821481116628096, 48.515739460717391 ], [ 17.829651843578191, 48.562429329003628 ], [ 17.850662284306996, 48.623126157775737 ], [ 17.872839971742959, 48.67215051947629 ], [ 17.868170984914336, 48.725843868005462 ], [ 17.860000257964245, 48.748021555441433 ], [ 17.872839971742962, 48.79237693031336 ], [ 17.920697086736357, 48.826227084820886 ], [ 17.977892175386998, 48.851906512378321 ], [ 18.000069862822961, 48.884589420178685 ], [ 18.040923497573424, 48.896261887250247 ], [ 18.084111625738192, 48.909101601028958 ], [ 18.102787573052687, 48.938282768707857 ], [ 18.135470480853055, 48.967463936386757 ], [ 18.172822375482045, 48.984972636994101 ], [ 18.206672529989568, 48.993143363944192 ], [ 18.241689931204249, 49.014153804673001 ], [ 18.272038345590303, 49.038665985523274 ], [ 18.301219513269199, 49.06026004960566 ], [ 18.311141110280026, 49.085939477163095 ], [ 18.312308356987181, 49.111618904720522 ], [ 18.335069667776722, 49.132045722095754 ], [ 18.347325758201862, 49.13671470892438 ], [ 18.369503445637825, 49.123291371792085 ], [ 18.381175912709384, 49.13671470892438 ], [ 18.384094029477275, 49.150721669410252 ], [ 18.409773457034706, 49.15363978617814 ], [ 18.422029547459843, 49.134963838863648 ], [ 18.434869261238561, 49.12679311191355 ], [ 18.457046948674524, 49.133212968802908 ], [ 18.468135792392506, 49.158308773006766 ], [ 18.478641012756906, 49.168230370017589 ], [ 18.495566090010669, 49.187489940685666 ], [ 18.515409284032319, 49.195077044282179 ], [ 18.536419724761128, 49.213752991596671 ], [ 18.569686255915073, 49.221340095193185 ], [ 18.592447566704614, 49.228927198789698 ], [ 18.649059032001681, 49.245852276043472 ], [ 18.686410926630671, 49.261026483236499 ], [ 18.740104275159847, 49.231845315557599 ], [ 18.800801103931956, 49.213169368243101 ], [ 18.841654738682415, 49.194493420928609 ], [ 18.877839386604251, 49.17581747361411 ], [ 18.88951185367581, 49.137298332277965 ], [ 18.919860268061864, 49.115120644842001 ], [ 18.982891590248286, 49.102280931063284 ], [ 19.044755665727553, 49.103448177770439 ], [ 19.075104080113611, 49.127960358620719 ], [ 19.100783507671039, 49.140800072399436 ], [ 19.125295688521316, 49.150138046056682 ], [ 19.139667413603178, 49.151378245683048 ], [ 19.140916900030355, 49.151356702813615 ] ] ] } } ] } diff --git a/examples/data/rivers_yukon.geojson b/examples/data/rivers_yukon.geojson index a645d95..50e0d04 100644 --- a/examples/data/rivers_yukon.geojson +++ b/examples/data/rivers_yukon.geojson @@ -6,10 +6,10 @@ { "type": "Feature", "properties": { "scalerank": 6, "name": "Tanana", "rivernum": 238, "length": 886499.813 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -142.021850585937329, 62.026556707806627 ], [ -142.038256835937119, 62.045233465619049 ], [ -142.056640625000313, 62.061346746869091 ], [ -142.078735351562557, 62.07147858280662 ], [ -142.087329101562148, 62.078558660931598 ], [ -142.090820312500171, 62.091742254681655 ], [ -142.087768554687642, 62.184198309369123 ], [ -142.084838867187756, 62.201117254681591 ], [ -142.076464843749818, 62.215594793744145 ], [ -142.060302734375085, 62.227655340619037 ], [ -141.951049804687159, 62.26403229374408 ], [ -141.863525390625, 62.279242254681492 ], [ -141.834472656249943, 62.289740301556641 ], [ -141.803027343750017, 62.311346746869198 ], [ -141.772583007812415, 62.319891668744113 ], [ -141.764697265625017, 62.325995184369269 ], [ -141.762695312499744, 62.334344793744066 ], [ -141.765795898437432, 62.355658270306492 ], [ -141.763305664062273, 62.366888739056634 ], [ -141.756591796875171, 62.375433660931549 ], [ -141.748339843750159, 62.380682684369127 ], [ -141.73930664062496, 62.384955145306641 ], [ -141.730102539062671, 62.390692449994155 ], [ -141.655639648437301, 62.458685614056442 ], [ -141.624389648437443, 62.477606512494035 ], [ -141.460986328125273, 62.534491278119141 ], [ -141.440600585937403, 62.544134832806733 ], [ -141.424853515625074, 62.558124090618946 ], [ -141.411547851562318, 62.595892645306449 ], [ -141.379882812499943, 62.623602606244305 ], [ -141.371386718750244, 62.643573309369117 ], [ -141.381762695312716, 62.686297918744145 ], [ -141.412646484375188, 62.709173895306606 ], [ -141.450439453124886, 62.726825262494039 ], [ -141.481249999999704, 62.753363348431513 ], [ -141.476562499999943, 62.77472565311907 ], [ -141.489868164062614, 62.799676824994052 ], [ -141.511645507812489, 62.820428778119222 ], [ -141.532153320312773, 62.82916901249407 ], [ -141.649658203125028, 62.846063543744101 ], [ -141.673022460937261, 62.855780340619084 ], [ -141.668505859375131, 62.867987371869134 ], [ -141.600756835937545, 62.907660223431677 ], [ -141.604785156250216, 62.921502996869215 ], [ -141.632080078125085, 62.934930731244151 ], [ -141.742553710937415, 62.965033270306691 ], [ -141.770385742187557, 62.977899481244059 ], [ -141.790454101562602, 63.010077215619042 ], [ -141.809863281249875, 63.025213934369205 ], [ -141.851196289062443, 63.047552801556613 ], [ -141.951586914062545, 63.063983465618968 ], [ -141.977832031250045, 63.078631903119216 ], [ -141.997436523437671, 63.093207098431634 ], [ -142.070312499999943, 63.12335846561917 ], [ -142.112915039062528, 63.152704168744137 ], [ -142.136767578125045, 63.165716864056556 ], [ -142.274707031250131, 63.187567449994084 ], [ -142.309863281249903, 63.184759832806677 ], [ -142.321826171874903, 63.179632879681662 ], [ -142.331591796874932, 63.172967840619144 ], [ -142.34233398437496, 63.167303778119084 ], [ -142.357666015624915, 63.164911199994137 ], [ -142.374194335937517, 63.168036199994106 ], [ -142.404052734375, 63.181708074994098 ], [ -142.431030273437244, 63.187445379681726 ], [ -142.441210937500045, 63.193915106244098 ], [ -142.457275390624915, 63.209002996869067 ], [ -142.469897460937318, 63.216571356244188 ], [ -142.577441406249989, 63.23798248905662 ], [ -142.605468749999858, 63.247919012494201 ], [ -142.628588867187375, 63.263934637494089 ], [ -142.648486328125074, 63.282416082806591 ], [ -142.656250000000256, 63.292914129681563 ], [ -142.659301757812671, 63.304877020306556 ], [ -142.663940429687528, 63.31293366093162 ], [ -142.686206054687347, 63.323065496869148 ], [ -142.694091796875085, 63.328802801556634 ], [ -142.697265624999943, 63.337909246869124 ], [ -142.697387695312642, 63.355414129681535 ], [ -142.700927734374972, 63.362909246869151 ], [ -142.712329101562375, 63.370917059369198 ], [ -142.726562499999943, 63.374701239056684 ], [ -142.740771484375188, 63.373480535931513 ], [ -142.766406249999875, 63.357733465619177 ], [ -142.783984374999875, 63.355243231244131 ], [ -142.838671875000102, 63.358343817181499 ], [ -142.85009765625, 63.362616278119077 ], [ -142.872192382812472, 63.375921942181684 ], [ -142.894213867187489, 63.383856512494106 ], [ -142.960375976562574, 63.397650457806627 ], [ -142.960375976562574, 63.403876043744106 ], [ -142.943481445312472, 63.418646551556627 ], [ -142.964843749999886, 63.429950262494167 ], [ -143.001220703124943, 63.436835028119077 ], [ -143.02922363281229, 63.438666082806712 ], [ -143.05986328124996, 63.433124090619152 ], [ -143.117187499999858, 63.415228582806691 ], [ -143.14934082031246, 63.411322332806613 ], [ -143.291308593750131, 63.414252020306577 ], [ -143.310424804687216, 63.411322332806613 ], [ -143.367114257812489, 63.385199285931684 ], [ -143.396118164062329, 63.38007233280667 ], [ -143.451538085937528, 63.406073309369127 ], [ -143.564257812500102, 63.411322332806556 ], [ -143.599169921874932, 63.417669989056684 ], [ -143.632568359375028, 63.418158270306598 ], [ -143.682177734375102, 63.405829168744098 ], [ -143.759521484374972, 63.397650457806627 ], [ -143.772631835937574, 63.401483465619073 ], [ -143.780078125000074, 63.41051666874408 ], [ -143.790209960937517, 63.431219793744091 ], [ -143.829028320312545, 63.46039459843157 ], [ -143.838745117187699, 63.475775457806527 ], [ -143.827758789062415, 63.496649481244205 ], [ -143.815795898437557, 63.506170965619148 ], [ -143.788574218750085, 63.523016668744106 ], [ -143.775927734375017, 63.534247137494191 ], [ -143.791503906250114, 63.567254949994059 ], [ -143.797656250000188, 63.575213934369089 ], [ -143.809082031249915, 63.58107330936916 ], [ -143.836425781250085, 63.58644440311906 ], [ -143.848559570312375, 63.59254791874416 ], [ -143.85625, 63.602167059369137 ], [ -143.857299804687642, 63.610126043744025 ], [ -143.857226562500045, 63.617865301556577 ], [ -143.861938476562557, 63.626727606244067 ], [ -143.871826171875171, 63.634711004681563 ], [ -143.906909179687375, 63.650897528119145 ], [ -143.935058593750171, 63.670770574994094 ], [ -143.995166015624818, 63.696893621869116 ], [ -144.040820312500102, 63.702337957806584 ], [ -144.140307617187545, 63.726019598431606 ], [ -144.181689453125216, 63.729925848431535 ], [ -144.541381835937642, 63.725116278119089 ], [ -144.599121093750028, 63.739569403119098 ], [ -144.74418945312496, 63.804754949994212 ], [ -144.758471679687432, 63.813495184369138 ], [ -144.773974609375017, 63.825384832806627 ], [ -144.777954101562528, 63.838568426556591 ], [ -144.762255859375131, 63.873480535931556 ], [ -144.763476562500045, 63.891131903119017 ], [ -144.780566406250045, 63.901800848431591 ], [ -144.807373046874801, 63.902899481244205 ], [ -144.859057617187375, 63.897333074994208 ], [ -144.914306640625057, 63.945746160931506 ], [ -144.899536132812642, 63.961615301556549 ], [ -144.848803710937659, 64.004095770306662 ], [ -144.856079101562329, 64.016864324994117 ], [ -144.962084960937489, 64.041937567181705 ], [ -145.010498046874943, 64.062445379681648 ], [ -145.062426757812716, 64.073065496869035 ], [ -145.090502929687545, 64.084588934369108 ], [ -145.110400390624903, 64.084344793744222 ], [ -145.1298828125, 64.079901434369134 ], [ -145.143310546874858, 64.072333074994205 ], [ -145.158691406249886, 64.066278387494094 ], [ -145.361987304687318, 64.082464910931705 ], [ -145.429809570312585, 64.099798895306577 ], [ -145.607055664062358, 64.171087957806733 ], [ -145.671508789062329, 64.186053778119174 ], [ -145.736694335937528, 64.191522528119108 ], [ -145.768481445312233, 64.186224676556691 ], [ -145.825976562500131, 64.163202215619094 ], [ -145.856811523437727, 64.158026434369091 ], [ -145.888427734374716, 64.161688543744148 ], [ -146.0601806640625, 64.215692449994179 ], [ -146.111132812499903, 64.24640534061912 ], [ -146.144287109374943, 64.248163153119208 ], [ -146.209643554687773, 64.239935614056549 ], [ -146.241748046874733, 64.245135809369216 ], [ -146.302490234374829, 64.268670965619194 ], [ -146.449023437500102, 64.284686590619145 ], [ -146.490234374999943, 64.281512762494032 ], [ -146.585375976562318, 64.257342840619131 ], [ -146.655395507812415, 64.253485418744148 ], [ -146.672241210937329, 64.256219793744222 ], [ -146.685424804687557, 64.264105535931449 ], [ -146.714648437499619, 64.294940496869174 ], [ -146.723632812499858, 64.301385809369251 ], [ -146.755981445312415, 64.310809637494103 ], [ -146.827197265625017, 64.315790106244123 ], [ -146.860473632812671, 64.325873114056577 ], [ -147.020874023437358, 64.425653387494165 ], [ -147.031494140625199, 64.442328192181492 ], [ -147.025317382812347, 64.458514715619103 ], [ -147.000292968749989, 64.487005926556691 ], [ -146.997314453124858, 64.507440496869123 ], [ -147.021728515624943, 64.546087957806648 ], [ -147.068481445312329, 64.571478582806634 ], [ -147.16862792968783, 64.61046784061908 ], [ -147.188281249999733, 64.624701239056691 ], [ -147.233813476562574, 64.675360418744049 ], [ -147.255249023437187, 64.689227606244231 ], [ -147.522338867187528, 64.775091864056634 ], [ -147.846435546874858, 64.805731512494248 ], [ -147.935791015624716, 64.802313543744148 ], [ -147.950561523437472, 64.799090887494046 ], [ -147.990405273437375, 64.781195379681648 ], [ -148.01806640625, 64.757342840619131 ], [ -148.028564453125199, 64.753851629681577 ], [ -148.096484374999818, 64.745624090619259 ], [ -148.162963867187301, 64.725897528119177 ], [ -148.237915039062671, 64.690497137494077 ], [ -148.329956054687585, 64.671942449994148 ], [ -148.422729492187443, 64.671942449994091 ], [ -148.621459960937699, 64.643915106244094 ], [ -148.645922851562574, 64.631781317181648 ], [ -148.655810546874875, 64.606756903119177 ], [ -148.700073242187699, 64.585223699994046 ], [ -149.104541015624989, 64.575751043744063 ], [ -149.115478515625, 64.577997137494165 ], [ -149.130175781249932, 64.583856512494151 ], [ -149.143066406250085, 64.591669012494179 ], [ -149.148608398437318, 64.59992096561912 ], [ -149.144653320312585, 64.610663153118992 ], [ -149.135302734375045, 64.614935614056549 ], [ -149.124194335937261, 64.617792059369165 ], [ -149.115112304687727, 64.624139715619094 ], [ -149.108935546875159, 64.636297918744191 ], [ -149.111328125000114, 64.641913153119091 ], [ -149.117187499999829, 64.647162176556719 ], [ -149.121337890625057, 64.658270574994077 ], [ -149.120043945312659, 64.670721746869063 ], [ -149.116748046875017, 64.680731512494191 ], [ -149.116748046875017, 64.690741278119049 ], [ -149.125048828125102, 64.702948309369091 ], [ -149.131762695312432, 64.720233465619174 ], [ -149.1170654296875, 64.757391668744091 ], [ -149.121337890624744, 64.781195379681648 ], [ -149.115112304687386, 64.788641668744276 ], [ -149.130126953124801, 64.792303778119177 ], [ -149.146289062499875, 64.794256903119049 ], [ -149.160522460937557, 64.798529364056535 ], [ -149.169726562500045, 64.809149481244191 ], [ -149.153979492187403, 64.811297918744188 ], [ -149.146289062500216, 64.817010809369037 ], [ -149.135620117187557, 64.835809637494009 ], [ -149.117675781250114, 64.860296942181606 ], [ -149.115112304687386, 64.867132879681648 ], [ -149.128173828125, 64.878045965619108 ], [ -149.190234374999875, 64.905707098431563 ], [ -149.210693359374943, 64.912176824994134 ], [ -149.248583984374733, 64.914007879681662 ], [ -149.399414062500227, 64.901678778119077 ], [ -149.491210937499858, 64.877386785931591 ], [ -149.509643554687585, 64.875995184369046 ], [ -149.522705078124858, 64.879169012494117 ], [ -149.575488281250045, 64.904413153119009 ], [ -149.595019531249989, 64.908148504681677 ], [ -149.611694335937415, 64.901629949994174 ], [ -149.645507812499858, 64.864691473431535 ], [ -149.666137695312642, 64.849432684369077 ], [ -149.690478515625188, 64.843207098431563 ], [ -149.703857421875, 64.84572174686916 ], [ -149.734741210937386, 64.855829168744137 ], [ -149.752563476562187, 64.857538153119222 ], [ -149.785083007812204, 64.854437567181677 ], [ -149.800585937499875, 64.849188543744191 ], [ -149.816406250000057, 64.823358465619108 ], [ -149.838012695312756, 64.808172918744077 ], [ -149.882250976562545, 64.788641668744233 ], [ -149.920214843749875, 64.783148504681762 ], [ -150.038256835937347, 64.796454168744162 ], [ -150.073657226562602, 64.806268621869066 ], [ -150.098999023437443, 64.819281317181634 ], [ -150.139526367187472, 64.820086981244145 ], [ -150.156005859375057, 64.822772528119046 ], [ -150.166674804687403, 64.829413153119049 ], [ -150.181323242187517, 64.844183660931563 ], [ -150.190722656250159, 64.850116278118918 ], [ -150.208374023437841, 64.856146551556535 ], [ -150.295776367187273, 64.86769440311916 ], [ -150.321166992187557, 64.878851629681677 ], [ -150.342895507812585, 64.896112371869108 ], [ -150.375244140624858, 64.936102606244134 ], [ -150.392382812500131, 64.95160553593162 ], [ -150.414672851562642, 64.962591864056535 ], [ -150.565478515624818, 64.979315496869162 ], [ -150.77324218749979, 64.972967840619233 ], [ -150.789599609375045, 64.975116278119131 ], [ -150.824023437500074, 64.984491278119194 ], [ -150.841845703124847, 64.986639715619162 ], [ -150.998779296874744, 64.971014715619205 ], [ -151.188720703125284, 64.907538153119035 ], [ -151.239746093749886, 64.904730535931662 ], [ -151.25444335937479, 64.898627020306677 ], [ -151.282153320312517, 64.881048895306719 ], [ -151.297485351562443, 64.877386785931563 ], [ -151.3642578125, 64.875921942181535 ], [ -151.393603515624704, 64.881659246869191 ], [ -151.424072265624659, 64.898504949994177 ], [ -151.446948242187375, 64.918231512494216 ], [ -151.458178710937517, 64.925165106244208 ], [ -151.487597656249761, 64.931952215619148 ], [ -151.500976562499858, 64.937567449994162 ], [ -151.506591796875227, 64.949408270306535 ], [ -151.505249023437415, 64.954291082806634 ], [ -151.503833007812347, 64.964960028119151 ], [ -151.506274414062744, 64.97553131718152 ], [ -151.516528320312347, 64.980414129681691 ], [ -151.550659179687585, 64.984198309369091 ], [ -151.567431640624932, 64.990423895306662 ], [ -151.574877929687148, 65.000921942181691 ], [ -151.561157226562472, 65.016424871869063 ], [ -151.53740234374979, 65.032171942181748 ], [ -151.531542968749761, 65.044378973431719 ], [ -151.571459960937204, 65.04933502811916 ], [ -151.596801757812386, 65.039740301556733 ], [ -151.613891601562557, 65.019842840619162 ], [ -151.632983398437347, 65.002508856244148 ], [ -151.664306640624886, 65.000921942181634 ], [ -151.690478515625216, 65.014227606244091 ], [ -151.690966796874847, 65.030780340619174 ], [ -151.679687499999915, 65.049432684369251 ], [ -151.670458984375017, 65.069159246869177 ], [ -151.678588867187671, 65.098944403119063 ], [ -151.70830078125033, 65.113544012493989 ], [ -151.746704101562159, 65.115423895306634 ], [ -151.780932617187318, 65.107001043744191 ], [ -151.808105468749972, 65.104681707806662 ], [ -151.835083007812784, 65.116327215619066 ], [ -151.883422851562642, 65.148309637494066 ], [ -151.920092773437233, 65.159784246869179 ], [ -152.047851562500227, 65.16535065311912 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 6, "name": "Koyukuk", "rivernum": 240, "length": 861921.058 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -150.821411132812841, 68.042914129681506 ], [ -150.8187255859375, 68.030633856244066 ], [ -150.822021484375142, 68.026678778119134 ], [ -150.828491210937443, 68.024115301556705 ], [ -150.835009765624903, 68.016180731244162 ], [ -150.836303710937614, 68.00849030155652 ], [ -150.835083007812102, 67.992499090619205 ], [ -150.838134765624773, 67.985174871869106 ], [ -150.858154296875, 67.96198151249402 ], [ -150.864062499999818, 67.948553778119205 ], [ -150.863330078124903, 67.932684637494191 ], [ -150.859130859374886, 67.927020574994103 ], [ -150.8531494140625, 67.923041082806577 ], [ -150.848510742187329, 67.918085028119251 ], [ -150.848315429687489, 67.909125067181577 ], [ -150.857592773437517, 67.898504949994106 ], [ -150.873168945312699, 67.890326239056606 ], [ -150.887329101562244, 67.877752996869191 ], [ -150.892456054687358, 67.853876043744137 ], [ -150.888061523437472, 67.82807037968162 ], [ -150.8973388671875, 67.808954168744222 ], [ -150.915161132812585, 67.794208074994202 ], [ -150.950317382812216, 67.771258856244145 ], [ -150.987060546875313, 67.736029364056506 ], [ -151.010498046874829, 67.721063543744151 ], [ -151.020507812499773, 67.711615301556677 ], [ -151.025439453125045, 67.698602606244151 ], [ -151.023193359374829, 67.691717840619177 ], [ -151.017138671874932, 67.684271551556662 ], [ -151.0103759765625, 67.679315496869165 ], [ -151.005737304687671, 67.680438543744046 ], [ -151.0230712890625, 67.65900299686912 ], [ -151.026171874999989, 67.653143621869106 ], [ -151.024658203125, 67.645575262494134 ], [ -151.020019531250171, 67.639520574994137 ], [ -151.015136718749687, 67.635077215619219 ], [ -151.013183593749886, 67.632635809369248 ], [ -151.021118164062386, 67.621771551556606 ], [ -151.0325927734375, 67.611273504681577 ], [ -151.039428710937443, 67.600897528119162 ], [ -151.033618164062517, 67.590399481244106 ], [ -151.037158203125131, 67.587420965618946 ], [ -151.043627929687773, 67.580340887493975 ], [ -151.047290039062403, 67.577337957806606 ], [ -151.038623046874648, 67.557806707806662 ], [ -151.024414062500028, 67.54689362186906 ], [ -150.985229492187216, 67.529608465619262 ], [ -150.936889648437301, 67.496771551556705 ], [ -150.917602539062671, 67.488641668743966 ], [ -150.844360351562443, 67.471210028119117 ], [ -150.821411132812216, 67.461297918744208 ], [ -150.807177734374847, 67.448065496869233 ], [ -150.784106445312602, 67.414911199994165 ], [ -150.767382812499761, 67.406073309369191 ], [ -150.769042968749773, 67.387225653119202 ], [ -150.757739257812432, 67.375677801556634 ], [ -150.741015625000188, 67.365741278118975 ], [ -150.726562499999943, 67.351825262494117 ], [ -150.723754882812557, 67.344916082806634 ], [ -150.723388671874943, 67.340106512494245 ], [ -150.721972656249875, 67.335638739056591 ], [ -150.716186523437671, 67.329950262494009 ], [ -150.706958007812489, 67.325873114056705 ], [ -150.699218749999829, 67.324823309369179 ], [ -150.693652343749875, 67.321844793744162 ], [ -150.690917968750028, 67.311639715619094 ], [ -150.692553710937659, 67.303168035931606 ], [ -150.697387695312671, 67.295038153119108 ], [ -150.709521484375188, 67.281439520306634 ], [ -150.754443359375102, 67.246161199994134 ], [ -150.767749023437688, 67.232684637494074 ], [ -150.777587890624858, 67.224872137494145 ], [ -150.801269531249687, 67.214374090619202 ], [ -150.810180664062727, 67.206561590618961 ], [ -150.813891601562489, 67.19537994999402 ], [ -150.809375, 67.174994207806691 ], [ -150.810424804687386, 67.163519598431662 ], [ -150.822802734374875, 67.149920965619145 ], [ -150.842285156249687, 67.145941473431648 ], [ -150.881591796875171, 67.145868231244108 ], [ -150.906176757812688, 67.136419989056535 ], [ -150.972827148437631, 67.089374090619074 ], [ -150.999072265625159, 67.080755926556591 ], [ -151.081469726562148, 67.070257879681733 ], [ -151.095629882812602, 67.065863348431577 ], [ -151.129882812499858, 67.049823309369245 ], [ -151.147753906250102, 67.044256903119077 ], [ -151.162524414062517, 67.042425848431549 ], [ -151.197802734375102, 67.042987371869145 ], [ -151.248413085937301, 67.039911199994194 ], [ -151.318237304687557, 67.020575262494134 ], [ -151.426757812500057, 67.003485418744077 ], [ -151.451342773437574, 66.99457428593162 ], [ -151.437744140624886, 66.981512762494191 ], [ -151.454711914062415, 66.972528387494222 ], [ -151.494506835937528, 66.961249090619148 ], [ -151.530200195312545, 66.945086981244089 ], [ -151.542968750000057, 66.94110748905662 ], [ -151.581713867187432, 66.939960028119202 ], [ -151.613769531249886, 66.933124090619074 ], [ -151.659960937499818, 66.916571356244191 ], [ -151.691088867187489, 66.896356512494179 ], [ -151.677905273437545, 66.878485418744063 ], [ -151.708251953124886, 66.864203192181662 ], [ -151.715258789062602, 66.848651434369089 ], [ -151.707080078124818, 66.829169012494191 ], [ -151.684497070312545, 66.790472723431506 ], [ -151.682739257812273, 66.785663153119259 ], [ -151.707153320312671, 66.740668035931463 ], [ -151.711425781249886, 66.727655340619251 ], [ -151.713427734374818, 66.713251043744151 ], [ -151.713671875000102, 66.702215887494077 ], [ -151.716357421874818, 66.691961981244162 ], [ -151.725708007812386, 66.679877020306634 ], [ -151.736572265624886, 66.67206452030662 ], [ -151.793139648437347, 66.644476629681733 ], [ -151.853027343749886, 66.627386785931634 ], [ -151.869433593749932, 66.626776434369191 ], [ -151.885742187500085, 66.630389715619046 ], [ -151.903247070312659, 66.638251043744134 ], [ -151.912280273437403, 66.616522528119106 ], [ -151.918872070312659, 66.604999090619032 ], [ -151.924975585937716, 66.597967840619063 ], [ -151.938720703125114, 66.592718817181577 ], [ -151.959155273437744, 66.589544989056591 ], [ -151.977661132812642, 66.591327215619131 ], [ -151.985766601562602, 66.601385809369063 ], [ -151.995654296874875, 66.606512762494077 ], [ -152.070117187499989, 66.594745184369174 ], [ -152.079272460937688, 66.58703034061908 ], [ -152.0863037109375, 66.577826239056648 ], [ -152.095019531249704, 66.570013739056648 ], [ -152.121704101562386, 66.556659246869245 ], [ -152.136108398437216, 66.551874090619151 ], [ -152.150268554687386, 66.550116278119191 ], [ -152.163378906250102, 66.553338934369037 ], [ -152.18840332031246, 66.566961981244205 ], [ -152.205493164062318, 66.570013739056549 ], [ -152.239135742187273, 66.564398504681634 ], [ -152.312670898437631, 66.542840887494094 ], [ -152.348876953125284, 66.542743231244032 ], [ -152.353271484375171, 66.545233465619006 ], [ -152.363159179687472, 66.55634186405662 ], [ -152.397338867187528, 66.563788153119077 ], [ -152.455981445312432, 66.568719793744137 ], [ -152.468994140624915, 66.573431707806748 ], [ -152.48088378906246, 66.581366278119134 ], [ -152.489550781249875, 66.579217840619165 ], [ -152.499072265625216, 66.573358465619037 ], [ -152.538378906250045, 66.564764715619006 ], [ -152.547851562499915, 66.563788153119219 ], [ -152.555834960937517, 66.565619207806677 ], [ -152.568725585937671, 66.574042059369134 ], [ -152.575439453124972, 66.576849676556563 ], [ -152.620288085937659, 66.580682684369037 ], [ -152.64453125, 66.580023504681648 ], [ -152.664184570312557, 66.576849676556648 ], [ -152.664794921875171, 66.574237371869117 ], [ -152.667651367187659, 66.56793854374412 ], [ -152.672167968750188, 66.560980535931577 ], [ -152.677856445312784, 66.556341864056563 ], [ -152.756396484374932, 66.543646551556719 ], [ -152.792773437500074, 66.515082098431591 ], [ -152.822192382812602, 66.508563543744117 ], [ -152.858203124999818, 66.506781317181634 ], [ -152.890063476562744, 66.501654364056421 ], [ -153.003710937500045, 66.462420965619103 ], [ -153.020507812500142, 66.460150457806506 ], [ -153.039843749999903, 66.463202215619077 ], [ -153.0767822265625, 66.474798895306577 ], [ -153.096850585937489, 66.474432684369162 ], [ -153.108081054687318, 66.470282293744148 ], [ -153.130664062500244, 66.458197332806506 ], [ -153.143969726562517, 66.453924871869049 ], [ -153.1680908203125, 66.451532293744108 ], [ -153.284545898437784, 66.45392487186902 ], [ -153.290209960937659, 66.451776434369009 ], [ -153.299121093750045, 66.442401434369145 ], [ -153.315356445312688, 66.436102606244106 ], [ -153.311645507812273, 66.426214910931677 ], [ -153.303833007812443, 66.414618231244191 ], [ -153.301635742187671, 66.405536199994046 ], [ -153.312377929687528, 66.39679596561912 ], [ -153.329956054687358, 66.389715887494219 ], [ -153.348681640624818, 66.385443426556648 ], [ -153.36308593749996, 66.385077215619035 ], [ -153.368823242187375, 66.388495184369191 ], [ -153.378417968750199, 66.401483465619094 ], [ -153.384204101562375, 66.405536199994074 ], [ -153.403808593749858, 66.408636785931705 ], [ -153.408984375000074, 66.410956121869049 ], [ -153.418994140625045, 66.41669342655662 ], [ -153.424365234375131, 66.41857330936908 ], [ -153.434814453124886, 66.419452215619103 ], [ -153.445239257812574, 66.418475653119103 ], [ -153.487475585937432, 66.407416082806478 ], [ -153.555957031250188, 66.399603582806549 ], [ -153.611328124999858, 66.382757879681719 ], [ -153.673339843749943, 66.369256903119151 ], [ -153.811035156250028, 66.330438543744194 ], [ -153.913745117187261, 66.295599676556719 ], [ -154.000781250000045, 66.277899481244035 ], [ -154.038378906249761, 66.275213934369248 ], [ -154.063110351562301, 66.270697332806634 ], [ -154.060961914062659, 66.259833074994106 ], [ -154.050219726562489, 66.246405340619205 ], [ -154.048950195312443, 66.234198309369091 ], [ -154.095336914062557, 66.239569403119134 ], [ -154.115600585937415, 66.239325262494134 ], [ -154.103564453125159, 66.22736237186912 ], [ -154.123168945312273, 66.209833074994179 ], [ -154.152099609374886, 66.190863348431705 ], [ -154.173828124999915, 66.16950104374412 ], [ -154.171875000000114, 66.144842840619077 ], [ -154.192382812499943, 66.14069244999429 ], [ -154.211718750000017, 66.132025457806719 ], [ -154.247607421874875, 66.111346746869145 ], [ -154.242358398437432, 66.106268621869063 ], [ -154.233276367187585, 66.090204168744094 ], [ -154.244799804687517, 66.081244207806719 ], [ -154.274047851562273, 66.049383856244134 ], [ -154.278320312499829, 66.042425848431705 ], [ -154.274584960937659, 66.039252020306662 ], [ -154.281249999999858, 66.03217194218162 ], [ -154.29248046875, 66.025091864056606 ], [ -154.302539062500045, 66.021918035931762 ], [ -154.311401367187329, 66.018011785931719 ], [ -154.318481445312244, 66.008563543744174 ], [ -154.329516601562204, 65.987811590619188 ], [ -154.347094726562659, 65.967474676556591 ], [ -154.362475585937375, 65.959833074994222 ], [ -154.446826171874761, 65.960516668744262 ], [ -154.453002929687642, 65.956805731244103 ], [ -154.456347656250102, 65.94542877811908 ], [ -154.464770507812545, 65.938592840619123 ], [ -154.476000976562347, 65.934833074994074 ], [ -154.487792968749943, 65.932562567181691 ], [ -154.482299804687528, 65.929706121869089 ], [ -154.471728515625102, 65.922308660931535 ], [ -154.466064453125256, 65.919549871869066 ], [ -154.485351562500199, 65.917743231244032 ], [ -154.513232421874733, 65.918646551556634 ], [ -154.538330078125256, 65.915594793743978 ], [ -154.55498046874996, 65.892840887494074 ], [ -154.590209960937443, 65.864325262494162 ], [ -154.647583007812358, 65.842474676556606 ], [ -154.675463867187545, 65.825213934369089 ], [ -154.721557617187528, 65.805975653119063 ], [ -154.7467041015625, 65.800238348431719 ], [ -154.765551757812659, 65.791205145306606 ], [ -154.774902343749858, 65.789129949994134 ], [ -154.785815429687204, 65.792352606244123 ], [ -154.788452148437727, 65.799920965619009 ], [ -154.789477539062432, 65.80878327030662 ], [ -154.795654296875, 65.815863348431648 ], [ -154.820190429687727, 65.821112371869106 ], [ -154.941894531250142, 65.813251043744117 ], [ -154.998168945312528, 65.802850653119208 ], [ -155.028442382812329, 65.802264715619032 ], [ -155.062866210937358, 65.806952215619205 ], [ -155.060791015624886, 65.812811590619162 ], [ -155.040893554687358, 65.822088934369134 ], [ -155.021606445312699, 65.836981512494035 ], [ -155.149096679687347, 65.882196356244108 ], [ -155.159057617187472, 65.881366278119046 ], [ -155.175537109375057, 65.875677801556719 ], [ -155.196948242187261, 65.872381903119233 ], [ -155.218310546874989, 65.872748114056648 ], [ -155.234497070312472, 65.877948309369145 ], [ -155.22514648437496, 65.882513739056705 ], [ -155.217407226562301, 65.888495184369162 ], [ -155.211303710937273, 65.895941473431662 ], [ -155.207153320312727, 65.905218817181591 ], [ -155.268310546874886, 65.897772528119134 ], [ -155.289111328124818, 65.898382879681634 ], [ -155.275317382812602, 65.914325262494131 ], [ -155.233203125000074, 65.930365301556606 ], [ -155.22021484375, 65.946844793744177 ], [ -155.241625976562517, 65.949725653119145 ], [ -155.265380859374886, 65.945086981244216 ], [ -155.326708984374847, 65.917547918744262 ], [ -155.3411865234375, 65.91327545780662 ], [ -155.357104492187602, 65.911737371869094 ], [ -155.378466796874704, 65.912127996869231 ], [ -155.423510742187574, 65.903143621869035 ], [ -155.446411132812358, 65.90187409061916 ], [ -155.453613281249915, 65.912127996869131 ], [ -155.440917968749943, 65.923456121869052 ], [ -155.371630859375074, 65.94684479374412 ], [ -155.3914794921875, 65.957953192181648 ], [ -155.426269531250142, 65.994012762494037 ], [ -155.455126953124903, 66.009393621869137 ], [ -155.485034179687403, 66.012640692181677 ], [ -155.573657226562347, 66.003485418744162 ], [ -155.61979980468746, 65.985174871869191 ], [ -155.645385742187273, 65.980975653119188 ], [ -155.672412109374875, 65.979510809369131 ], [ -155.683837890624858, 65.982123114056634 ], [ -155.696582031249989, 65.990912176556591 ], [ -155.708496093750227, 65.996356512494145 ], [ -155.722216796874932, 65.995550848431662 ], [ -155.73442382812496, 65.990008856244131 ], [ -155.741577148437727, 65.980975653119032 ], [ -155.711108398437432, 65.96918366093162 ], [ -155.7, 65.966669012494165 ], [ -155.719042968750244, 65.963495184369009 ], [ -155.746997070312318, 65.965887762494177 ], [ -155.769287109374801, 65.973089910931662 ], [ -155.771972656250171, 65.984393621869032 ], [ -155.757617187500159, 65.999335028119091 ], [ -155.752441406249915, 66.006048895306634 ], [ -155.758789062499915, 66.007757879681577 ], [ -155.778808593749801, 66.007635809369191 ], [ -155.823974609375, 65.999042059369074 ], [ -155.850756835937631, 65.997088934369145 ], [ -155.854541015624903, 66.004584051556634 ], [ -155.855517578124818, 66.016180731244191 ], [ -155.876464843749801, 66.02387116093162 ], [ -155.919433593750227, 66.029413153119023 ], [ -155.927172851562545, 66.027606512494145 ], [ -155.953857421874886, 66.015082098431634 ], [ -155.994799804687688, 66.007635809369049 ], [ -156.0142822265625, 66.001239324994188 ], [ -156.025683593749761, 65.999090887494148 ], [ -156.035766601562244, 66.001483465619131 ], [ -156.038012695312148, 66.006537176556691 ], [ -156.034423828125028, 66.012640692181591 ], [ -156.0299072265625, 66.018255926556634 ], [ -156.029589843749989, 66.021918035931648 ], [ -156.047973632812585, 66.030462957806677 ], [ -156.058032226562347, 66.025824285931606 ], [ -156.065600585937517, 66.014032293744066 ], [ -156.076782226562528, 66.001483465619103 ], [ -156.093798828124875, 65.991815496869137 ], [ -156.11186523437496, 65.987738348431648 ], [ -156.128051757812443, 65.992010809369177 ], [ -156.139453125000017, 66.007635809368978 ], [ -156.137622070312545, 66.02387116093162 ], [ -156.157519531250102, 66.028021551556634 ], [ -156.18205566406283, 66.019476629681506 ], [ -156.194091796875114, 65.997748114056662 ], [ -156.204956054687614, 65.990545965619148 ], [ -156.260131835937443, 66.004022528119066 ], [ -156.282836914062386, 66.001483465619074 ], [ -156.257202148437415, 65.972284246869236 ], [ -156.223754882812614, 65.960760809369049 ], [ -156.145629882812585, 65.960516668744106 ], [ -156.164916992187528, 65.945672918744052 ], [ -156.2281494140625, 65.94428131718162 ], [ -156.252075195312301, 65.935980535931705 ], [ -156.267382812499818, 65.921454168744162 ], [ -156.286254882812329, 65.908563543744094 ], [ -156.306762695312187, 65.904364324994205 ], [ -156.347167968750227, 65.92584869999412 ], [ -156.3726806640625, 65.927997137494216 ], [ -156.388232421874989, 65.919623114056606 ], [ -156.378417968750227, 65.898382879681492 ], [ -156.357788085937756, 65.88764069218152 ], [ -156.305297851562329, 65.881170965619205 ], [ -156.282836914062386, 65.87111237186916 ], [ -156.297729492187443, 65.866815496869123 ], [ -156.344238281250171, 65.864325262494049 ], [ -156.356616210937659, 65.860907293744091 ], [ -156.352783203124943, 65.853094793744077 ], [ -156.337451171874704, 65.840033270306677 ], [ -156.343017578125, 65.828973699994108 ], [ -156.382128906249648, 65.785760809369279 ], [ -156.40283203125, 65.775824285931506 ], [ -156.42338867187496, 65.778265692181662 ], [ -156.444628906249704, 65.783563543744265 ], [ -156.467773437499773, 65.782342840619208 ], [ -156.536059570312347, 65.748236395306691 ], [ -156.53007812499996, 65.737616278119049 ], [ -156.536743164062784, 65.729925848431535 ], [ -156.54570312499996, 65.723456121869091 ], [ -156.546630859375085, 65.716864324994134 ], [ -156.530517578125114, 65.707220770306634 ], [ -156.509936523437432, 65.704413153119077 ], [ -156.428588867187585, 65.70502350468152 ], [ -156.409838867187375, 65.70026276249412 ], [ -156.409423828124943, 65.689569403119194 ], [ -156.4232177734375, 65.681659246869032 ], [ -156.458496093750085, 65.675165106244009 ], [ -156.484252929687671, 65.66310455936906 ], [ -156.519458007812432, 65.654730535931719 ], [ -156.529223632812403, 65.645209051556705 ], [ -156.524096679687602, 65.633563543744046 ], [ -156.504272460937557, 65.634833074994148 ], [ -156.468066406250216, 65.645209051556648 ], [ -156.42802734374979, 65.640936590619191 ], [ -156.352221679687489, 65.622137762494219 ], [ -156.310107421874932, 65.617938543744202 ], [ -156.330371093750131, 65.607245184368992 ], [ -156.35258789062479, 65.605585028119222 ], [ -156.375781249999676, 65.606708074994188 ], [ -156.398852539062233, 65.604193426556677 ], [ -156.414916992187671, 65.598822332806634 ], [ -156.425170898437614, 65.592401434369137 ], [ -156.425708007812375, 65.585150457806606 ], [ -156.412524414062432, 65.576922918744231 ], [ -156.402026367187204, 65.574896551556606 ], [ -156.364746093750028, 65.576922918744174 ], [ -156.353271484375227, 65.575384832806549 ], [ -156.350585937499886, 65.571722723431648 ], [ -156.351611328124875, 65.567010809369123 ], [ -156.351123046874932, 65.562616278119165 ], [ -156.351318359375114, 65.556708074994049 ], [ -156.354980468750057, 65.549676824994052 ], [ -156.355957031249943, 65.543890692181492 ], [ -156.340747070312688, 65.539422918743995 ], [ -156.336059570312415, 65.534295965619179 ], [ -156.330615234375102, 65.521673895306549 ], [ -156.351318359374773, 65.522162176556662 ], [ -156.373706054687517, 65.51923248905662 ], [ -156.391601562500171, 65.511542059369106 ], [ -156.398852539062545, 65.498065496869245 ], [ -156.39306640625, 65.480096746869151 ], [ -156.378100585937432, 65.471307684369123 ], [ -156.337451171875045, 65.467059637494131 ], [ -156.354492187500114, 65.454291082806648 ], [ -156.387011718749818, 65.44586823124412 ], [ -156.447021484374972, 65.439764715619219 ], [ -156.464355468750114, 65.440375067181549 ], [ -156.472290039062614, 65.44281647343162 ], [ -156.484863281249972, 65.456488348431648 ], [ -156.498217773437347, 65.463934637494091 ], [ -156.511401367187318, 65.46430084843162 ], [ -156.539794921875142, 65.459588934369123 ], [ -156.642138671874761, 65.458758856244202 ], [ -156.659594726562261, 65.467059637494131 ], [ -156.650805664062489, 65.483343817181606 ], [ -156.631835937499716, 65.494208074994162 ], [ -156.624999999999801, 65.501776434369191 ], [ -156.652758789062318, 65.508002020306648 ], [ -156.676196289062489, 65.506415106244205 ], [ -156.699267578125045, 65.501288153119106 ], [ -156.722094726562602, 65.500189520306549 ], [ -156.745239257812386, 65.511102606244094 ], [ -156.758593750000102, 65.521307684369205 ], [ -156.761645507812432, 65.527289129681705 ], [ -156.762622070312659, 65.538397528119091 ], [ -156.767211914062699, 65.546405340619145 ], [ -156.778002929687688, 65.550799871868989 ], [ -156.790405273437244, 65.554071356244179 ], [ -156.799853515624704, 65.558905340619191 ], [ -156.818774414062688, 65.56422760624406 ], [ -156.876220703124829, 65.555609442181691 ], [ -156.899780273437329, 65.555194403119145 ], [ -156.950732421874733, 65.564520574994191 ], [ -156.973876953125114, 65.563421942181591 ], [ -156.968066406249875, 65.548944403119194 ], [ -156.968066406250216, 65.541522528119103 ], [ -156.982421874999886, 65.542181707806705 ], [ -157.010009765624972, 65.548456121868995 ], [ -157.022705078124972, 65.548944403119194 ], [ -157.037524414062204, 65.544061590619208 ], [ -157.038452148437614, 65.537225653119023 ], [ -157.029833984374989, 65.531122137494251 ], [ -156.999877929687386, 65.524042059369123 ], [ -157.013183593749943, 65.513861395306719 ], [ -157.082080078124818, 65.485419012494177 ], [ -157.108154296875227, 65.47882721561902 ], [ -157.162963867187443, 65.473895574994074 ], [ -157.167163085937432, 65.472967840619248 ], [ -157.175659179687415, 65.468622137494094 ], [ -157.180346679687375, 65.46705963749416 ], [ -157.191040039062443, 65.465643621869063 ], [ -157.214477539062301, 65.467059637494131 ], [ -157.257983398437148, 65.478387762494194 ], [ -157.269409179687472, 65.477313543744046 ], [ -157.324951171874943, 65.462518621869179 ], [ -157.495654296875273, 65.487494207806506 ], [ -157.535693359375045, 65.479559637494106 ], [ -157.550219726562489, 65.480731512494202 ], [ -157.558227539062528, 65.485174871869148 ], [ -157.566088867187489, 65.492059637494123 ], [ -157.576538085937585, 65.498358465618978 ], [ -157.591845703125102, 65.501166082806606 ], [ -157.607421874999972, 65.497821356244103 ], [ -157.609057617187602, 65.48993561405652 ], [ -157.605468750000171, 65.480780340619077 ], [ -157.605517578124989, 65.47389557499416 ], [ -157.61662597656246, 65.466376043744205 ], [ -157.630737304687187, 65.461615301556719 ], [ -157.645874023437273, 65.459418035931691 ], [ -157.660083007812517, 65.459588934369123 ], [ -157.651538085937773, 65.438788153119077 ], [ -157.659106445312318, 65.429877020306606 ], [ -157.674804687500171, 65.42475006718152 ], [ -157.6905517578125, 65.415228582806662 ], [ -157.692553710937432, 65.399725653118978 ], [ -157.670898437499915, 65.393085028119032 ], [ -157.642871093750017, 65.38991119999416 ], [ -157.6259765625, 65.385077215619049 ], [ -157.642944335937557, 65.362127996869134 ], [ -157.648681640624943, 65.339129949994245 ], [ -157.641406249999847, 65.318475653119151 ], [ -157.619140625000057, 65.302557684369063 ], [ -157.636840820312216, 65.296258856244222 ], [ -157.653930664062699, 65.297919012494077 ], [ -157.670703124999761, 65.301825262494219 ], [ -157.687426757812631, 65.302557684369063 ], [ -157.707446289062517, 65.29547760624412 ], [ -157.711547851562273, 65.286444403119276 ], [ -157.702758789062528, 65.278631903119134 ], [ -157.656738281250085, 65.272406317181733 ], [ -157.623217773437773, 65.264105535931463 ], [ -157.598803710937688, 65.251044012494063 ], [ -157.598681640625045, 65.233661199994202 ], [ -157.612182617187472, 65.225848699994174 ], [ -157.645874023437557, 65.221136785931591 ], [ -157.660083007812517, 65.213812567181719 ], [ -157.669726562499847, 65.203802801556634 ], [ -157.668945312499801, 65.200628973431819 ], [ -157.661132812499943, 65.197821356244177 ], [ -157.649584960937631, 65.189276434369049 ], [ -157.647143554687574, 65.172064520306719 ], [ -157.6669921875, 65.110126043744131 ], [ -157.663134765624875, 65.088812567181705 ], [ -157.653198242187472, 65.064081121869123 ], [ -157.639038085937301, 65.043573309369208 ], [ -157.622558593750057, 65.035028387494052 ], [ -157.596118164062318, 65.041083074994106 ], [ -157.554003906250102, 65.071234442181549 ], [ -157.529785156250199, 65.082831121869106 ], [ -157.502807617187415, 65.087469793744106 ], [ -157.46123046874996, 65.090106512494074 ], [ -157.423022460937318, 65.084784246869219 ], [ -157.40625, 65.065741278119134 ], [ -157.389453125000216, 65.052850653119151 ], [ -157.359130859374972, 65.039618231244205 ], [ -157.345703124999716, 65.028338934369131 ], [ -157.379565429687261, 65.021429754681662 ], [ -157.445922851562443, 65.029071356244145 ], [ -157.484057617187517, 65.020624090619094 ], [ -157.536621093750142, 65.027606512494103 ], [ -157.549682617187756, 65.02472565311912 ], [ -157.564086914062557, 65.017108465619074 ], [ -157.575195312500057, 65.006366278119046 ], [ -157.578173828124903, 64.99408600468162 ], [ -157.569335937500028, 64.984320379681535 ], [ -157.532397460937403, 64.973749090619194 ], [ -157.51611328125, 64.966815496869089 ], [ -157.536914062499932, 64.961297918744108 ], [ -157.557128906249972, 64.953143621869131 ], [ -157.549609374999932, 64.950799871869194 ], [ -157.529785156250199, 64.939471746868989 ], [ -157.551757812500227, 64.925360418744077 ], [ -157.639648437499915, 64.904730535931606 ], [ -157.709960937500114, 64.874774481244103 ], [ -157.739794921875074, 64.866815496869137 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 8, "name": null, "rivernum": 648, "length": 156950.062 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -135.073168945312347, 60.93727448124416 ], [ -135.069018554687204, 60.946844793744035 ], [ -135.073486328125114, 60.95770905155662 ], [ -135.074511718749989, 60.967645574994087 ], [ -135.074707031249943, 60.981317449994165 ], [ -135.076904296875313, 60.997333074994145 ], [ -135.077197265625102, 61.016058660931606 ], [ -135.09423828125, 61.051776434369053 ], [ -135.124389648437557, 61.093085028119134 ], [ -135.155078124999847, 61.14459869999402 ], [ -135.216552734374858, 61.258807684369103 ], [ -135.243530273437671, 61.321478582806591 ], [ -135.242114257812375, 61.369891668744117 ], [ -135.234985351562443, 61.393133856244013 ] ], [ [ -134.915527343749687, 61.567889715619046 ], [ -134.946899414062273, 61.570135809369177 ], [ -135.061694335937602, 61.596747137494134 ], [ -135.090136718750244, 61.599066473431627 ], [ -135.117065429687557, 61.594110418744158 ], [ -135.139404296875, 61.577948309369212 ], [ -135.145922851562489, 61.568060614056826 ], [ -135.150390625000028, 61.556830145306648 ], [ -135.152514648437602, 61.545282293744258 ], [ -135.152148437500102, 61.534051824994229 ], [ -135.136230468749744, 61.489081121869049 ], [ -135.150268554687614, 61.48676178593152 ], [ -135.163940429687528, 61.482440496869017 ], [ -135.176635742187671, 61.476385809369049 ], [ -135.188037109375131, 61.469061590619098 ], [ -135.19279785156246, 61.464471746869215 ], [ -135.203417968750074, 61.449652410931449 ], [ -135.222045898437443, 61.43231842655667 ], [ -135.226684570312614, 61.425116278119013 ], [ -135.234301757812489, 61.403387762494134 ], [ -135.234863281250028, 61.393500067181748 ] ], [ [ -135.073242187499886, 60.937274481244245 ], [ -135.073168945312347, 60.93727448124416 ] ], [ [ -135.073168945312347, 60.93727448124416 ], [ -135.114746093750171, 60.91303131718157 ], [ -135.128417968749886, 60.902533270306456 ], [ -135.145141601562671, 60.872748114056648 ], [ -135.152636718749932, 60.868353582806606 ], [ -135.165527343750171, 60.863714910931584 ], [ -135.167724609375057, 60.852850653119027 ], [ -135.162597656249943, 60.831122137494063 ], [ -135.149536132812557, 60.810174871869194 ], [ -135.119799804687659, 60.796454168744184 ], [ -135.06633300781283, 60.779608465619198 ], [ -135.061401367187386, 60.774530340619116 ], [ -135.054736328124903, 60.765887762493961 ], [ -135.048999023437517, 60.756366278118982 ], [ -135.046508789062528, 60.748602606244198 ], [ -135.047045898437744, 60.726019598431584 ], [ -135.044189453125, 60.71564362186917 ], [ -135.035937499999932, 60.711371160931712 ], [ -135.030517578124915, 60.706903387494265 ], [ -135.027880859375273, 60.684930731244179 ], [ -135.025390624999915, 60.676581121869042 ], [ -135.017456054687386, 60.669989324994035 ], [ -134.984423828124875, 60.656683660931627 ], [ -134.949145507812432, 60.632147528118963 ], [ -134.936328125000131, 60.628729559369113 ], [ -134.884814453125131, 60.636737371869216 ], [ -134.799487304687574, 60.638251043743999 ], [ -134.687915039062261, 60.607123114056556 ], [ -134.630859374999716, 60.577826239056606 ], [ -134.610473632812614, 60.573358465619165 ], [ -134.567016601562528, 60.571478582806627 ], [ -134.545581054687204, 60.567328192181549 ], [ -134.507250976562801, 60.549139715619155 ], [ -134.494995117187614, 60.546820379681606 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 6, "name": "Porcupine", "rivernum": 239, "length": 785600.565 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.810839843749989, 65.649603582806634 ], [ -139.787890625000159, 65.686835028119162 ], [ -139.720703125000057, 65.745624090619089 ], [ -139.700732421875159, 65.780292059369032 ], [ -139.700561523437699, 65.796820379681591 ], [ -139.710009765625045, 65.82892487186912 ], [ -139.711059570312358, 65.845648504681776 ], [ -139.706225585937545, 65.86029694218162 ], [ -139.6907958984375, 65.887713934369089 ], [ -139.687499999999886, 65.902606512494074 ], [ -139.689819335937699, 65.912543035931535 ], [ -139.699829101562472, 65.932245184369123 ], [ -139.701171874999943, 65.943548895306662 ], [ -139.689453124999943, 65.954291082806662 ], [ -139.637084960937358, 65.963446356244248 ], [ -139.616455078125142, 65.970892645306606 ], [ -139.606616210937631, 65.980414129681591 ], [ -139.599121093749943, 65.989691473431677 ], [ -139.590942382812386, 65.997748114056662 ], [ -139.578784179687716, 66.003851629681577 ], [ -139.368164062499886, 66.012640692181648 ], [ -139.316406249999972, 66.009222723431648 ], [ -139.249389648437699, 65.996771551556606 ], [ -139.215502929687545, 65.996649481244106 ], [ -139.186206054687375, 66.010614324994137 ], [ -139.157641601562318, 66.046747137494179 ], [ -139.144287109374972, 66.055975653119205 ], [ -139.132128906249932, 66.059759832806748 ], [ -139.071166992187642, 66.070331121869089 ], [ -139.034545898437585, 66.071063543744202 ], [ -139.016406249999875, 66.07526276249412 ], [ -139.000781250000216, 66.084344793744023 ], [ -138.957324218750159, 66.122748114056549 ], [ -138.91289062499996, 66.14887116093162 ], [ -138.856616210937517, 66.19489166874412 ], [ -138.842651367187443, 66.215887762494148 ], [ -138.837402343750028, 66.24664948124412 ], [ -138.826586914062403, 66.282489324994089 ], [ -138.799853515625188, 66.30438873905652 ], [ -138.731005859374932, 66.343207098431677 ], [ -138.707934570312318, 66.37282135624416 ], [ -138.677368164062273, 66.442816473431691 ], [ -138.656176757812602, 66.47252838749408 ], [ -138.641894531250102, 66.482123114056591 ], [ -138.625244140625171, 66.488104559369077 ], [ -138.590991210937432, 66.495868231244174 ], [ -138.562548828125045, 66.507635809369106 ], [ -138.507861328125017, 66.539618231244134 ], [ -138.479541015624932, 66.547967840619165 ], [ -138.430053710937443, 66.546747137494194 ], [ -138.412280273437261, 66.549505926556719 ], [ -138.330493164062602, 66.578436590619035 ], [ -138.291918945312574, 66.59931061405662 ], [ -138.257934570312386, 66.625555731244134 ], [ -138.214843750000028, 66.681756903119123 ], [ -138.197998046874829, 66.698260809369245 ], [ -138.1641845703125, 66.715887762494091 ], [ -138.153198242187614, 66.725116278119145 ], [ -138.145678710937517, 66.736273504681662 ], [ -138.139208984375045, 66.749212957806648 ], [ -138.131518554687602, 66.76105377811912 ], [ -138.120410156250159, 66.768866278118978 ], [ -138.085009765625045, 66.77240631718162 ], [ -138.020068359374818, 66.750921942181677 ], [ -137.985839843749972, 66.747381903119177 ], [ -137.934326171874886, 66.755804754681691 ], [ -137.910083007812631, 66.765936590619106 ], [ -137.892211914062528, 66.783026434369035 ], [ -137.88188476562479, 66.806219793744219 ], [ -137.875781249999989, 66.814886785931591 ], [ -137.863208007812403, 66.822333074994177 ], [ -137.835131835937375, 66.831244207806691 ], [ -137.823291015625188, 66.838324285931549 ], [ -137.814819335937329, 66.851141668744162 ], [ -137.830126953124847, 66.860956121869151 ], [ -137.840820312500085, 66.877386785931563 ], [ -137.840332031250142, 66.892767645306577 ], [ -137.822021484374773, 66.899603582806677 ], [ -137.809936523437642, 66.896307684369134 ], [ -137.786499023437528, 66.881952215619151 ], [ -137.77392578125, 66.878485418744148 ], [ -137.760791015624761, 66.880438543744262 ], [ -137.733520507812415, 66.889960028119177 ], [ -137.705932617187614, 66.893255926556549 ], [ -137.696533203124801, 66.896600653119236 ], [ -137.688720703125171, 66.901971746869094 ], [ -137.681079101562602, 66.909198309369103 ], [ -137.675708007812688, 66.920721746869063 ], [ -137.682421875000102, 66.928290106244162 ], [ -137.692553710937375, 66.933954168744165 ], [ -137.697558593749818, 66.939960028119202 ], [ -137.693481445312528, 66.951239324994148 ], [ -137.68437499999979, 66.957342840619219 ], [ -137.671752929687329, 66.959906317181719 ], [ -137.642578125000142, 66.962420965619017 ], [ -137.638232421874818, 66.967474676556606 ], [ -137.636523437500159, 66.974310614056591 ], [ -137.629882812499773, 66.981512762494191 ], [ -137.605151367187403, 66.994452215619091 ], [ -137.575927734375, 67.00482819218162 ], [ -137.547167968749818, 67.007635809369233 ], [ -137.502856445312347, 66.988348699994248 ], [ -137.491748046875216, 67.000921942181634 ], [ -137.487304687499886, 67.024042059369123 ], [ -137.486499023437233, 67.046405340619174 ], [ -137.508666992187472, 67.084418035931606 ], [ -137.611694335937443, 67.056097723431662 ], [ -137.6429443359375, 67.077704168744162 ], [ -137.625415039062261, 67.082391668744279 ], [ -137.6099853515625, 67.091327215619103 ], [ -137.604248046875171, 67.103631903119108 ], [ -137.615600585937614, 67.118719793744162 ], [ -137.525634765624829, 67.16486237186912 ], [ -137.520312500000102, 67.176703192181591 ], [ -137.559252929687574, 67.183661199994077 ], [ -137.643310546874915, 67.172381903119174 ], [ -137.684497070312347, 67.180121160931705 ], [ -137.680224609375017, 67.189398504681591 ], [ -137.673999023437688, 67.196722723431591 ], [ -137.666064453125045, 67.202460028119106 ], [ -137.656616210937415, 67.206854559369134 ], [ -137.673144531249704, 67.219671942181705 ], [ -137.708666992187489, 67.232538153119137 ], [ -137.725463867187727, 67.241571356244165 ], [ -137.735229492187727, 67.252557684369165 ], [ -137.757006835937688, 67.283563543744108 ], [ -137.763305664062756, 67.289984442181549 ], [ -137.832202148437489, 67.327582098431677 ], [ -137.830371093749903, 67.341424871869123 ], [ -137.809375000000159, 67.354437567181577 ], [ -137.7664794921875, 67.371942449994137 ], [ -137.788818359375, 67.379217840619177 ], [ -137.796313476562347, 67.387274481244191 ], [ -137.790771484374858, 67.397894598431719 ], [ -137.773925781249972, 67.41290924686912 ], [ -137.781298828125017, 67.422430731244091 ], [ -137.775317382812318, 67.429803778119179 ], [ -137.765185546874733, 67.435736395306677 ], [ -137.760253906250199, 67.440863348431577 ], [ -137.766162109374903, 67.450995184369077 ], [ -137.778076171874943, 67.459491278119202 ], [ -137.792163085937602, 67.465350653119103 ], [ -137.820117187500102, 67.469671942181577 ], [ -137.851562499999943, 67.479071356244233 ], [ -137.869140624999773, 67.481146551556662 ], [ -138.027026367187602, 67.472040106244179 ], [ -138.053100585937727, 67.478216864056591 ], [ -138.078979492187301, 67.498602606244148 ], [ -138.090502929687602, 67.50538971561906 ], [ -138.120532226562744, 67.512323309369037 ], [ -138.132983398437659, 67.519354559369063 ], [ -138.177978515625114, 67.556903387494032 ], [ -138.251586914062528, 67.58417389530662 ], [ -138.337817382812631, 67.588006903119066 ], [ -138.506884765624875, 67.570575262494145 ], [ -138.583740234374773, 67.572821356244233 ], [ -138.625732421875114, 67.58222077030662 ], [ -138.644091796874875, 67.601263739056662 ], [ -138.638793945312472, 67.610174871869077 ], [ -138.615234375000256, 67.624627996869052 ], [ -138.609985351562329, 67.636053778119205 ], [ -138.614257812499801, 67.645038153119117 ], [ -138.624755859375199, 67.649603582806563 ], [ -138.688598632812699, 67.656439520306535 ], [ -138.708789062500102, 67.654974676556634 ], [ -138.7496337890625, 67.640448309369106 ], [ -138.756762695312347, 67.639471746869177 ], [ -138.764208984375102, 67.636493231244074 ], [ -138.768432617187472, 67.629706121869077 ], [ -138.771044921874932, 67.622503973431662 ], [ -138.773803710937329, 67.618353582806648 ], [ -138.791625976562699, 67.613544012494089 ], [ -138.849536132812204, 67.612127996869248 ], [ -138.863769531249943, 67.606561590619165 ], [ -138.891162109375045, 67.588202215619049 ], [ -138.900756835937528, 67.584247137494017 ], [ -139.005908203125188, 67.58356354374412 ], [ -139.110229492187557, 67.563739324994103 ], [ -139.156542968749932, 67.545599676556577 ], [ -139.171997070312358, 67.543280340619177 ], [ -139.286621093750114, 67.54787018436906 ], [ -139.431518554687216, 67.553656317181648 ], [ -139.473315429687489, 67.573993231244074 ], [ -139.494189453125188, 67.590887762494134 ], [ -139.541259765625227, 67.594916082806563 ], [ -139.65625, 67.585711981244131 ], [ -139.724609375000171, 67.568670965619134 ], [ -139.760742187499886, 67.570575262494145 ], [ -139.783862304687347, 67.582098699994219 ], [ -139.794848632812574, 67.584247137494046 ], [ -139.808154296874989, 67.581732489056634 ], [ -139.83684082031246, 67.572455145306648 ], [ -139.859423828124875, 67.57514069218162 ], [ -139.868164062500057, 67.570819403119145 ], [ -139.874389648437727, 67.562811590619091 ], [ -139.87675781249996, 67.553168035931677 ], [ -139.882250976562574, 67.550726629681563 ], [ -139.9183349609375, 67.543280340619035 ], [ -139.893188476562358, 67.523944403119202 ], [ -139.884643554687671, 67.513202215619032 ], [ -139.894458007812659, 67.50849030155662 ], [ -139.929492187499818, 67.510272528119245 ], [ -139.943115234375142, 67.514471746869106 ], [ -139.990844726562472, 67.539984442181591 ], [ -140.008544921874716, 67.546698309369219 ], [ -140.028198242187699, 67.549505926556563 ], [ -140.044067382812301, 67.541571356244205 ], [ -140.053710937500171, 67.525213934369049 ], [ -140.0650634765625, 67.511737371869103 ], [ -140.086230468750102, 67.512225653119003 ], [ -140.108203125000159, 67.515326239056549 ], [ -140.155322265624875, 67.508002020306648 ], [ -140.178466796874858, 67.508490301556648 ], [ -140.216479492187545, 67.521356512494023 ], [ -140.234008789062528, 67.522528387494077 ], [ -140.250732421874972, 67.512225653119174 ], [ -140.270312499999932, 67.504706121869162 ], [ -140.327392578124773, 67.507147528119219 ], [ -140.350390624999818, 67.502264715619162 ], [ -140.361254882812716, 67.492254949994049 ], [ -140.355029296875188, 67.486346746868989 ], [ -140.339599609374744, 67.479608465619222 ], [ -140.323046875000216, 67.46747467655662 ], [ -140.358325195312318, 67.460394598431662 ], [ -140.390747070312557, 67.466131903119148 ], [ -140.421875, 67.47589752811912 ], [ -140.453051757812602, 67.481146551556577 ], [ -140.97001953124996, 67.43671295780662 ], [ -141.171923828124875, 67.382391668744177 ], [ -141.196655273437671, 67.368524481244108 ], [ -141.226489257812545, 67.356024481244077 ], [ -141.35087890624996, 67.351434637494123 ], [ -141.467089843749875, 67.322528387494174 ], [ -141.501464843749716, 67.327582098431705 ], [ -141.532031250000017, 67.332294012494089 ], [ -141.555834960937688, 67.320428778119037 ], [ -141.578125, 67.304315496869108 ], [ -141.62675781249996, 67.290716864056577 ], [ -141.655566406249733, 67.277044989056691 ], [ -141.673950195312329, 67.259344793744162 ], [ -141.665576171875216, 67.241571356244165 ], [ -141.692260742187642, 67.22345612186902 ], [ -141.702880859375227, 67.213446356243992 ], [ -141.70720214843746, 67.20062897343162 ], [ -141.701464843750102, 67.185174871869151 ], [ -141.692626953125, 67.179022528119148 ], [ -141.69267578124979, 67.174994207806748 ], [ -141.713989257812671, 67.165838934369063 ], [ -141.758300781250142, 67.157538153119063 ], [ -141.811401367187671, 67.159125067181577 ], [ -141.949584960937386, 67.189715887494188 ], [ -141.9912109375, 67.185980535931563 ], [ -142.0771484375, 67.165838934369091 ], [ -142.119506835937528, 67.162176824994134 ], [ -142.153442382812273, 67.166278387494216 ], [ -142.162890624999903, 67.180365301556634 ], [ -142.1317138671875, 67.206854559369106 ], [ -142.163256835937318, 67.224920965619162 ], [ -142.197924804687517, 67.225043035931662 ], [ -142.232055664062614, 67.212762762494123 ], [ -142.262084960937585, 67.193793035931577 ], [ -142.264892578124858, 67.19049713749429 ], [ -142.269335937500102, 67.181463934369049 ], [ -142.272631835937545, 67.176703192181591 ], [ -142.280517578124943, 67.172870184369174 ], [ -142.316088867187233, 67.165838934369177 ], [ -142.371630859375045, 67.128607489056606 ], [ -142.466479492187631, 67.097186590619032 ], [ -142.49174804687496, 67.080877996869177 ], [ -142.521972656249687, 67.077997137494151 ], [ -142.572631835937557, 67.079364324994131 ], [ -142.611010742187432, 67.071966864056705 ], [ -142.604736328124886, 67.042987371869174 ], [ -142.615039062499903, 67.037225653119137 ], [ -142.6214599609375, 67.029242254681705 ], [ -142.626342773437472, 67.021185614056549 ], [ -142.632006835937261, 67.015008856244194 ], [ -142.64702148437479, 67.007757879681677 ], [ -142.687060546874989, 66.99640534061912 ], [ -142.977099609374847, 66.992377020306662 ], [ -143.025805664062716, 66.996942449994023 ], [ -143.077563476562659, 67.018255926556591 ], [ -143.096484374999847, 67.013690496869174 ], [ -143.115356445312244, 67.005682684369148 ], [ -143.132324218749858, 67.001410223431691 ], [ -143.214843749999858, 66.994574285931705 ], [ -143.324584960937386, 67.003534246869179 ], [ -143.382739257812489, 67.001410223431662 ], [ -143.392700195312301, 66.998553778119145 ], [ -143.42680664062479, 66.977801824994117 ], [ -143.44475097656229, 66.973504949994222 ], [ -143.482714843750045, 66.98139069218152 ], [ -143.502197265625114, 66.981512762494134 ], [ -143.502929687500085, 66.97155182499408 ], [ -143.504760742187415, 66.964471746869108 ], [ -143.509643554687443, 66.960394598431634 ], [ -143.518798828124886, 66.960516668744219 ], [ -143.533862304687489, 66.966620184369191 ], [ -143.543212890625028, 66.967840887494134 ], [ -143.61381835937496, 66.962347723431648 ], [ -143.632568359375057, 66.956976629681606 ], [ -143.664965820312489, 66.953143621869131 ], [ -143.679858398437574, 66.947772528119032 ], [ -143.677539062500188, 66.936542059369089 ], [ -143.667407226562432, 66.930047918744137 ], [ -143.645751953125114, 66.921087957806563 ], [ -143.639404296875057, 66.912616278119032 ], [ -143.6378173828125, 66.909198309369103 ], [ -143.633959960937432, 66.903436590619151 ], [ -143.632568359374858, 66.899603582806677 ], [ -143.650634765625057, 66.900897528119074 ], [ -143.658081054687358, 66.893988348431691 ], [ -143.66313476562496, 66.884588934369134 ], [ -143.674121093749875, 66.878485418744177 ], [ -143.691088867187432, 66.87926666874408 ], [ -143.729614257812528, 66.889593817181563 ], [ -143.749267578125028, 66.892157293744077 ], [ -143.762255859374932, 66.895331121869162 ], [ -143.785766601562671, 66.909491278119063 ], [ -143.800463867187489, 66.91261627811906 ], [ -143.816455078125159, 66.909686590619103 ], [ -143.822314453124761, 66.901922918744233 ], [ -143.81975097656246, 66.890985418744009 ], [ -143.810717773437517, 66.87848541874412 ], [ -143.908007812500131, 66.867792059369052 ], [ -143.950244140624761, 66.850043035931748 ], [ -143.944458007812443, 66.820135809369191 ], [ -143.944384765625159, 66.813251043744046 ], [ -143.955493164062432, 66.809588934369145 ], [ -143.96875, 66.811224676556563 ], [ -143.975219726562642, 66.820135809369049 ], [ -143.981323242187557, 66.824774481244091 ], [ -143.995605468749801, 66.828387762494174 ], [ -144.022949218750142, 66.830682684369094 ], [ -144.039306640624886, 66.826434637494103 ], [ -144.084960937499915, 66.806708074994162 ], [ -144.098681640625159, 66.796576239056606 ], [ -144.092529296874886, 66.788519598431719 ], [ -144.095141601562602, 66.78424713749402 ], [ -144.104492187500171, 66.782538153119006 ], [ -144.118579101562489, 66.782294012494006 ], [ -144.137744140624847, 66.784930731244202 ], [ -144.139526367187585, 66.790838934369091 ], [ -144.134448242187517, 66.797552801556634 ], [ -144.132812500000142, 66.802801824994063 ], [ -144.144702148437403, 66.815985418744177 ], [ -144.152587890625114, 66.816351629681549 ], [ -144.166992187499773, 66.809588934369089 ], [ -144.1732177734375, 66.803241278119046 ], [ -144.181079101562688, 66.787420965619106 ], [ -144.18742675781229, 66.78229401249412 ], [ -144.198901367187403, 66.78029205936916 ], [ -144.205322265625, 66.783148504681705 ], [ -144.211547851562585, 66.787543035931577 ], [ -144.222216796874903, 66.789740301556719 ], [ -144.236816406249915, 66.788592840619174 ], [ -144.247680664062727, 66.78566315311906 ], [ -144.269409179687301, 66.776068426556691 ], [ -144.28813476562479, 66.765082098431691 ], [ -144.298095703124943, 66.76124909061916 ], [ -144.310351562500216, 66.761786199994063 ], [ -144.317187499999932, 66.766913153119191 ], [ -144.334765625000102, 66.787176824994077 ], [ -144.338305664062602, 66.793158270306591 ], [ -144.353198242187204, 66.804388739056648 ], [ -144.384155273437671, 66.80763580936906 ], [ -144.410205078124818, 66.801874090619194 ], [ -144.410571289062602, 66.786004949994066 ], [ -144.399169921874773, 66.766864324994202 ], [ -144.409179687500028, 66.759149481244108 ], [ -144.524291992187642, 66.749823309369035 ], [ -144.615844726562358, 66.758905340619222 ], [ -144.630737304687671, 66.757928778119108 ], [ -144.643066406249801, 66.751239324994131 ], [ -144.647094726562415, 66.742547918744151 ], [ -144.643310546874858, 66.735296942181691 ], [ -144.635131835937472, 66.730169989056563 ], [ -144.626269531249903, 66.727655340619165 ], [ -144.654052734374801, 66.712762762494236 ], [ -144.729418945312347, 66.709344793744194 ], [ -144.74980468749979, 66.693548895306662 ], [ -144.744140625000085, 66.690375067181606 ], [ -144.741259765624875, 66.687079168744205 ], [ -144.739257812500256, 66.683612371868989 ], [ -144.736132812500017, 66.679877020306634 ], [ -144.75139160156246, 66.67614166874408 ], [ -144.782397460937318, 66.675165106244165 ], [ -144.797607421875057, 66.672430731244091 ], [ -144.808886718750045, 66.667352606244066 ], [ -144.814453125000171, 66.662176824994091 ], [ -144.818408203124989, 66.657001043744117 ], [ -144.824877929687347, 66.65192291874412 ], [ -144.853027343750114, 66.642889715619091 ], [ -144.874804687499847, 66.646356512494179 ], [ -144.895800781249932, 66.654364324994148 ], [ -144.921069335937204, 66.658758856244191 ], [ -144.933886718749875, 66.656756903119174 ], [ -144.961840820312602, 66.64777252811902 ], [ -144.976000976562375, 66.64577057499406 ], [ -144.992358398437432, 66.647772528119191 ], [ -145.023193359374858, 66.656756903119202 ], [ -145.049682617187273, 66.660516668744208 ], [ -145.072070312500131, 66.66681549686902 ], [ -145.085571289062671, 66.666205145306577 ], [ -145.093798828124903, 66.662665106244148 ], [ -145.111328125000142, 66.650336004681478 ], [ -145.119750976562614, 66.645770574994032 ], [ -145.147216796874886, 66.638251043744106 ], [ -145.235839843749943, 66.625262762494174 ], [ -145.273608398437432, 66.611590887494131 ], [ -145.290454101562432, 66.610956121869165 ], [ -145.302612304687386, 66.613544012494145 ], [ -145.327148437500028, 66.62238190311912 ], [ -145.338793945312688, 66.625262762494089 ], [ -145.354492187500057, 66.626483465618975 ], [ -145.369140624999915, 66.625848699994094 ], [ -145.383959960937403, 66.62323639530662 ], [ -145.428710937499915, 66.607611395306719 ], [ -145.454711914062301, 66.605780340619248 ], [ -145.47331542968729, 66.607611395306691 ], [ -145.493774414062585, 66.603876043744151 ], [ -145.512377929687517, 66.60199616093162 ], [ -145.531896598614765, 66.582501840470655 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 8, "name": "Pelly", "rivernum": 756, "length": 476107.014 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -130.80644531249996, 62.21478912968152 ], [ -130.809692382812671, 62.20958893436908 ], [ -130.817797851562631, 62.200799871869137 ], [ -130.821044921875171, 62.195819403119145 ], [ -130.824218750000028, 62.182318426556726 ], [ -130.823730468749773, 62.154242254681627 ], [ -130.82719726562479, 62.140936590619162 ], [ -130.834960937499972, 62.128924871869209 ], [ -130.862841796874875, 62.096747137493992 ], [ -130.876098632812557, 62.072943426556556 ], [ -130.90324707031246, 62.042792059369056 ], [ -130.922656249999676, 62.026068426556655 ], [ -130.945483398437375, 62.016302801556712 ], [ -131.028002929687517, 61.995379949993904 ], [ -131.061328124999818, 61.982684637494025 ], [ -131.080810546874829, 61.972772528119172 ], [ -131.098388671874886, 61.961127020306805 ], [ -131.113037109374829, 61.936102606244226 ], [ -131.105883789062517, 61.908075262494087 ], [ -131.08293457031246, 61.884637762494009 ], [ -131.049975585937403, 61.872992254681634 ], [ -131.053710937499886, 61.864569403119127 ], [ -131.059619140625017, 61.858343817181506 ], [ -131.067675781249818, 61.85431549686907 ], [ -131.07731933593729, 61.852484442181606 ], [ -131.072070312500216, 61.850775457806641 ], [ -131.062426757812545, 61.846307684369023 ], [ -131.05681152343746, 61.845038153119098 ], [ -131.087695312499932, 61.816961981244113 ], [ -131.098388671875142, 61.810248114056662 ], [ -131.113525390625114, 61.806708074993914 ], [ -131.128344726562716, 61.805926824994096 ], [ -131.142626953124875, 61.803290106244035 ], [ -131.1561279296875, 61.793817449994052 ], [ -131.167236328124886, 61.790545965619224 ], [ -131.200122070312403, 61.787860418744089 ], [ -131.215454101562472, 61.772479559369188 ], [ -131.234497070312358, 61.76727936405652 ], [ -131.371582031250256, 61.756708074994151 ], [ -131.396362304687472, 61.746039129681805 ], [ -131.424121093750159, 61.739374090619194 ], [ -131.536621093750028, 61.763128973431762 ], [ -131.624438476562261, 61.762884832806677 ], [ -131.642211914062329, 61.765204168744226 ], [ -131.656127929687273, 61.773065496869108 ], [ -131.666430664062688, 61.776312567181634 ], [ -131.732226562499761, 61.786078192181584 ], [ -131.883837890625045, 61.829535223431577 ], [ -131.956225585937489, 61.834247137494138 ], [ -131.988330078124932, 61.840765692181783 ], [ -132.017211914062671, 61.851336981244145 ], [ -132.065600585937261, 61.878485418744063 ], [ -132.075122070312773, 61.87933991093162 ], [ -132.091552734375057, 61.879217840619262 ], [ -132.155395507812614, 61.868963934369035 ], [ -132.170043945312301, 61.87299225468152 ], [ -132.178344726562159, 61.880072332806527 ], [ -132.194580078125057, 61.891180731244084 ], [ -132.204467773437386, 61.899969793744262 ], [ -132.215332031250114, 61.90441315311913 ], [ -132.244067382812545, 61.90228912968167 ], [ -132.256030273437688, 61.903021551556499 ], [ -132.267333984374972, 61.908636785931655 ], [ -132.273803710937557, 61.915350653119134 ], [ -132.283325195312358, 61.930365301556598 ], [ -132.28276367187496, 61.932074285931648 ], [ -132.283129882812574, 61.93756744999402 ], [ -132.285156249999687, 61.944769598431584 ], [ -132.289550781250085, 61.951483465619155 ], [ -132.296557617187517, 61.955267645306648 ], [ -132.315844726562375, 61.959051824994191 ], [ -132.355712890624744, 61.973016668744144 ], [ -132.454638671875074, 61.992450262494174 ], [ -132.489746093750085, 62.009344793743999 ], [ -132.503051757812472, 62.012884832806691 ], [ -132.516601562499659, 62.011908270306549 ], [ -132.531665039062631, 62.008490301556648 ], [ -132.546875, 62.008172918744137 ], [ -132.582690429687545, 62.03009674686912 ], [ -132.783813476562273, 62.073187567181613 ], [ -132.83037109374996, 62.098749090619151 ], [ -133.030029296874886, 62.15753815311912 ], [ -133.141162109375074, 62.171210028119141 ], [ -133.190307617187358, 62.18585846561907 ], [ -133.242309570312557, 62.191034246869016 ], [ -133.277832031250057, 62.208929754681769 ], [ -133.358398437500085, 62.21918366093157 ], [ -133.392138671875045, 62.228045965619174 ], [ -133.484985351562671, 62.268670965619215 ], [ -133.60539550781246, 62.286981512494108 ], [ -133.620288085937631, 62.297479559369137 ], [ -133.631713867187443, 62.310248114056868 ], [ -133.658203125, 62.322381903119272 ], [ -133.687792968750074, 62.331488348431499 ], [ -133.734912109375131, 62.340155340619091 ], [ -133.790087890624932, 62.360614324994103 ], [ -133.818286132812318, 62.362372137494205 ], [ -133.819384765625045, 62.375799871869049 ], [ -133.832031249999829, 62.386737371869089 ], [ -133.849853515625, 62.393915106244194 ], [ -133.866699218750057, 62.396502996869096 ], [ -133.859252929687244, 62.396502996869124 ], [ -133.917358398437443, 62.399115301556662 ], [ -133.934985351562659, 62.40392487186908 ], [ -133.973510742187557, 62.427801824994084 ], [ -133.985839843749943, 62.431219793743956 ], [ -134.062792968750074, 62.436786199994188 ], [ -134.101074218749915, 62.446893621869137 ], [ -134.132983398437318, 62.46478912968157 ], [ -134.126342773437557, 62.466083074994252 ], [ -134.113085937499818, 62.472235418744226 ], [ -134.17265625000033, 62.505389715619174 ], [ -134.21000976562496, 62.520941473431563 ], [ -134.27490234375, 62.535956121869141 ], [ -134.338012695312273, 62.573553778119184 ], [ -134.373779296874829, 62.582098699994155 ], [ -134.381396484375045, 62.583807684369127 ], [ -134.385375976562585, 62.587836004681613 ], [ -134.388476562500188, 62.592352606244191 ], [ -134.393676757812358, 62.595770574994148 ], [ -134.427783203125017, 62.602606512494219 ], [ -134.487963867187744, 62.624774481244138 ], [ -134.602416992187273, 62.638373114056677 ], [ -134.650146484375114, 62.650018621869165 ], [ -134.674804687500171, 62.670843817181677 ], [ -134.660156249999829, 62.670282293744229 ], [ -134.620239257812386, 62.678290106244219 ], [ -134.654296875000227, 62.71417877811912 ], [ -134.66862792968746, 62.725458074994222 ], [ -134.686328124999875, 62.731268621869134 ], [ -134.711474609375074, 62.736590887494067 ], [ -134.734008789062671, 62.744208074994241 ], [ -134.743701171875102, 62.756537176556506 ], [ -134.753540039062329, 62.754022528119087 ], [ -134.800048828124773, 62.752386785931513 ], [ -134.81572265624996, 62.756537176556648 ], [ -134.840332031250085, 62.768133856244006 ], [ -134.861206054687216, 62.763788153119087 ], [ -134.880786132812602, 62.753192449993911 ], [ -134.901367187499773, 62.745917059369063 ], [ -134.91313476562496, 62.747259832806527 ], [ -134.929858398437318, 62.757196356244023 ], [ -134.938891601562545, 62.759588934368999 ], [ -134.951586914062659, 62.756537176556506 ], [ -134.958544921875131, 62.749627996869009 ], [ -134.96354980468783, 62.742621160931655 ], [ -134.970263671874761, 62.739081121869084 ], [ -134.982055664062301, 62.740008856244089 ], [ -134.989184570312688, 62.744012762494172 ], [ -135.000366210937614, 62.756537176556648 ], [ -135.009643554687614, 62.763202215618996 ], [ -135.01884765624979, 62.76622955936908 ], [ -135.123583984374932, 62.773871160931691 ], [ -135.165283203125199, 62.772528387494134 ], [ -135.181762695312528, 62.76837799686912 ], [ -135.18132324218729, 62.759588934369113 ], [ -135.195434570312443, 62.756366278119131 ], [ -135.206665039062358, 62.760809637494312 ], [ -135.217285156250085, 62.768133856244035 ], [ -135.229736328124915, 62.773871160931577 ], [ -135.338671874999932, 62.781317449994226 ], [ -135.346435546874659, 62.780096746869141 ], [ -135.351684570312472, 62.775946356244184 ], [ -135.355395507812858, 62.763544012494151 ], [ -135.360034179687659, 62.759588934369084 ], [ -135.378784179687386, 62.75763580936929 ], [ -135.546997070312386, 62.78595612186907 ], [ -135.586596679687545, 62.786932684369042 ], [ -135.636962890624972, 62.779364324994148 ], [ -135.654296875000057, 62.780096746869233 ], [ -135.671557617187233, 62.784979559369098 ], [ -135.704760742187347, 62.798407293744241 ], [ -135.758837890624847, 62.808172918744155 ], [ -135.829223632812415, 62.839178778119127 ], [ -135.864062499999761, 62.846258856244141 ], [ -135.881274414062659, 62.847430731244032 ], [ -135.892700195312415, 62.851385809369035 ], [ -135.901782226562602, 62.858661199994145 ], [ -135.911865234375085, 62.869501043744094 ], [ -135.923217773437671, 62.879169012494032 ], [ -135.935913085937727, 62.884466864056705 ], [ -135.950927734375, 62.886542059369205 ], [ -136.020190429687574, 62.879828192181549 ], [ -136.038500976562347, 62.880316473431577 ], [ -136.09331054687496, 62.892401434369127 ], [ -136.14531249999979, 62.894110418744006 ], [ -136.173217773437671, 62.89081452030652 ], [ -136.197070312500017, 62.878729559369134 ], [ -136.216601562499989, 62.852411199994194 ], [ -136.212768554687358, 62.848407293744202 ], [ -136.207519531250284, 62.838495184369151 ], [ -136.202929687500216, 62.831903387494108 ], [ -136.234130859374716, 62.823993231244124 ], [ -136.268798828124829, 62.824237371869096 ], [ -136.303027343750244, 62.830194403119116 ], [ -136.358203125000188, 62.846454168744117 ], [ -136.387329101562585, 62.850604559369053 ], [ -136.418579101562528, 62.850897528119098 ], [ -136.45, 62.846258856244077 ], [ -136.408447265625057, 62.831903387494222 ], [ -136.429614257812545, 62.816229559369077 ], [ -136.462890625000284, 62.813299871869198 ], [ -136.486132812500244, 62.823187567181556 ], [ -136.477294921875, 62.846258856244077 ], [ -136.496142578124903, 62.852411199994194 ], [ -136.517456054687671, 62.852118231244035 ], [ -136.553027343750102, 62.846258856244077 ], [ -136.590258789062688, 62.846258856244141 ], [ -136.599731445312443, 62.844794012493999 ], [ -136.608447265625159, 62.84240143436908 ], [ -136.617553710937386, 62.841986395306591 ], [ -136.628173828124773, 62.846258856244141 ], [ -136.625659179687318, 62.849676824994155 ], [ -136.621264648437432, 62.858661199994231 ], [ -136.722656250000028, 62.865838934369279 ], [ -136.809082031250085, 62.876654364056613 ], [ -136.817919921875188, 62.881293035931598 ], [ -136.827026367187614, 62.879461981244191 ], [ -136.835742187499818, 62.875311590619091 ], [ -136.843798828124875, 62.872870184369098 ], [ -136.881103515624801, 62.871405340619098 ], [ -136.918017578125216, 62.873309637494167 ], [ -136.985156250000244, 62.86737702030667 ], [ -137.143237304687659, 62.861200262494144 ], [ -137.168749999999847, 62.855536199994198 ], [ -137.178344726562301, 62.858099676556662 ], [ -137.246215820312443, 62.841571356244188 ], [ -137.298144531250045, 62.843377996869194 ], [ -137.322680664062659, 62.838202215619013 ], [ -137.341186523437614, 62.822284246869188 ], [ -137.319946289062472, 62.801947332806584 ], [ -137.312060546875102, 62.789911199994165 ], [ -137.316894531249829, 62.771112371869101 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 7, "name": "White", "rivernum": 617, "length": 111630.551 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -140.005249023437614, 62.619256903119165 ], [ -140.017626953125216, 62.639105535931535 ], [ -140.032153320312602, 62.656317449994162 ], [ -140.043383789062545, 62.666205145306606 ], [ -140.045410156250199, 62.680682684369103 ], [ -140.040405273437557, 62.702460028119006 ], [ -140.033251953124818, 62.723407293744074 ], [ -140.029223632812574, 62.744647528119046 ], [ -140.035205078124903, 62.762567449994179 ], [ -140.045214843750244, 62.778436590619165 ], [ -140.055346679687403, 62.838568426556805 ], [ -140.071899414062472, 62.853949285931677 ], [ -140.079394531249761, 62.860223699994087 ], [ -140.087524414062472, 62.86554596561929 ], [ -140.09941406249996, 62.87184479374428 ], [ -140.110717773437244, 62.87897369999402 ], [ -140.119750976562671, 62.887713934369096 ], [ -140.130664062500045, 62.894403387494201 ], [ -140.143969726562119, 62.89508698124412 ], [ -140.157153320312375, 62.894964910931563 ], [ -140.168872070312631, 62.90045807499402 ], [ -140.178955078124972, 62.908563543744279 ], [ -140.184375000000159, 62.92145416874417 ], [ -140.186279296875142, 62.935614324994042 ], [ -140.203247070312102, 62.958758856244103 ], [ -140.225219726562472, 62.978387762494059 ], [ -140.247924804687329, 62.988836981244155 ], [ -140.268481445312602, 63.001532293744127 ], [ -140.270019531249829, 63.03639557499416 ], [ -140.283325195312329, 63.065741278119212 ], [ -140.298510742187318, 63.069598699994067 ], [ -140.312670898437176, 63.075628973431627 ], [ -140.318237304687301, 63.086859442181478 ], [ -140.320239257812489, 63.09955475468162 ], [ -140.32854003906229, 63.11054108280662 ], [ -140.340625000000188, 63.117938543744053 ], [ -140.348388671874943, 63.127508856244162 ], [ -140.352099609375045, 63.139471746868956 ], [ -140.359130859374829, 63.150018621869144 ], [ -140.343994140625199, 63.170038153119208 ], [ -140.319946289062784, 63.186102606244056 ], [ -140.279663085937813, 63.204461981244172 ], [ -140.231933593750028, 63.222113348431634 ], [ -140.195922851562244, 63.238055731244103 ], [ -140.136718749999829, 63.242499090619198 ], [ -140.109790039062602, 63.244574285931606 ], [ -140.08366699218746, 63.239325262494205 ], [ -140.058032226562574, 63.230975653119067 ], [ -140.031542968750131, 63.232977606244219 ], [ -140.011767578125159, 63.238055731244074 ], [ -139.956713867187375, 63.231805731244123 ], [ -139.878833007812631, 63.24701569218157 ], [ -139.848071289062347, 63.246893621868985 ], [ -139.823657226562545, 63.242059637493952 ], [ -139.800903320312699, 63.232733465619248 ], [ -139.7750244140625, 63.220160223431613 ], [ -139.747436523437329, 63.211493231244077 ], [ -139.707641601562273, 63.207391668744137 ], [ -139.668261718749875, 63.211053778119236 ], [ -139.580615234374761, 63.206317449994074 ] ] ] } }, -{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 7, "name": "Stewart", "rivernum": 532, "length": 559564.559 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -131.953857421874915, 64.077337957806577 ], [ -131.970581054687443, 64.065545965619037 ], [ -131.989428710937574, 64.061786199993961 ], [ -132.029663085937813, 64.063666082806648 ], [ -132.112963867187489, 64.055487371869049 ], [ -132.53300781249996, 64.071722723431535 ], [ -132.552783203125017, 64.06989166874402 ], [ -132.600634765625159, 64.057440496869219 ], [ -132.617919921875171, 64.057806707806577 ], [ -132.657641601562432, 64.063836981244108 ], [ -132.677001953124886, 64.06427643436912 ], [ -132.755053710937688, 64.055292059369037 ], [ -132.800341796875131, 64.039007879681563 ], [ -132.946899414062671, 64.025458074994106 ], [ -133.015551757812574, 64.035101629681549 ], [ -133.038867187500017, 64.03278229374412 ], [ -133.05278320312479, 64.027606512494202 ], [ -133.089111328125256, 64.003485418744162 ], [ -133.110522460937688, 63.99371979374402 ], [ -133.175903320312386, 63.98790924686908 ], [ -133.2669677734375, 63.962958074994184 ], [ -133.299194335937102, 63.958319403119027 ], [ -133.446411132812386, 63.966620184368978 ], [ -133.480761718749932, 63.963006903119144 ], [ -133.522705078125142, 63.94782135624417 ], [ -133.537890625000102, 63.945868231243999 ], [ -133.557788085937318, 63.947577215619141 ], [ -133.596606445312688, 63.958197332806556 ], [ -133.614672851562318, 63.96559479374416 ], [ -133.616381835937347, 63.96837799686913 ], [ -133.615600585937273, 63.972357489056691 ], [ -133.615966796875142, 63.976336981243961 ], [ -133.620849609374687, 63.979266668744067 ], [ -133.629199218750131, 63.979510809369152 ], [ -133.636230468750284, 63.977167059369194 ], [ -133.642382812499818, 63.974310614056542 ], [ -133.648193359375057, 63.973016668743888 ], [ -133.823486328124801, 63.981317449994094 ], [ -133.953491210937358, 63.966669012494165 ], [ -133.977099609375045, 63.960394598431662 ], [ -133.996386718749989, 63.950555731244236 ], [ -134.018798828125171, 63.93366119999412 ], [ -134.032275390624704, 63.913885809369063 ], [ -134.025024414062415, 63.895526434369209 ], [ -134.001342773437273, 63.884588934369077 ], [ -133.9625244140625, 63.872259832806726 ], [ -133.924121093749761, 63.865057684369191 ], [ -133.904052734374943, 63.863836981243992 ], [ -133.908862304687659, 63.849554754681677 ], [ -133.840747070312375, 63.849969793744194 ], [ -133.8055419921875, 63.845160223431513 ], [ -133.756884765624989, 63.82074616093152 ], [ -133.484497070312386, 63.80219147343157 ], [ -133.474853515625142, 63.798285223431527 ], [ -133.470019531250017, 63.787469793744158 ], [ -133.483691406250102, 63.76349518436912 ], [ -133.519580078125102, 63.736444403119123 ], [ -133.586425781249801, 63.699774481244063 ], [ -133.605395507812574, 63.694159246868985 ], [ -133.663940429687443, 63.691961981244141 ], [ -133.688354492187699, 63.68805573124412 ], [ -133.807373046874943, 63.649188543744089 ], [ -133.823730468749773, 63.635199285931563 ], [ -133.812670898437517, 63.61676666874417 ], [ -133.821289062499972, 63.616766668744312 ], [ -133.918017578125017, 63.594598699994243 ], [ -133.972290039062216, 63.59215729374408 ], [ -133.990161132812432, 63.589178778119241 ], [ -134.063769531250131, 63.556170965619167 ], [ -134.189624023437801, 63.516913153119091 ], [ -134.252929687500057, 63.508807684369238 ], [ -134.287353515624943, 63.509711004681549 ], [ -134.299560546874829, 63.508246160931698 ], [ -134.395507812500085, 63.478583074994106 ], [ -134.434204101562671, 63.473993231243995 ], [ -134.647143554687148, 63.48248932499407 ], [ -134.670776367187585, 63.479120184369066 ], [ -134.682177734374818, 63.478778387494145 ], [ -134.693530273437318, 63.482489324994042 ], [ -134.701782226562415, 63.489374090619094 ], [ -134.708422851562489, 63.496771551556527 ], [ -134.716796874999886, 63.501776434369106 ], [ -134.730102539062329, 63.501654364056691 ], [ -134.74089355468746, 63.49743073124413 ], [ -134.749145507812813, 63.492010809369184 ], [ -134.757861328124875, 63.487738348431726 ], [ -134.76994628906229, 63.487250067181584 ], [ -134.792114257812671, 63.491766668744042 ], [ -134.801684570312574, 63.491400457806598 ], [ -134.836352539062233, 63.480658270306606 ], [ -134.904467773437489, 63.469842840619059 ], [ -134.928955078125369, 63.471307684369144 ], [ -134.975024414062233, 63.480902410931598 ], [ -134.999999999999886, 63.47829010624406 ], [ -135.061816406250045, 63.453924871868914 ], [ -135.082812500000102, 63.452826239056563 ], [ -135.096728515624875, 63.457220770306783 ], [ -135.109667968750102, 63.465277410931613 ], [ -135.120849609374744, 63.475848699994124 ], [ -135.129321289062602, 63.487616278119113 ], [ -135.145507812499915, 63.533880926556549 ], [ -135.152709960937841, 63.541034246869152 ], [ -135.165649414062443, 63.544940496869316 ], [ -135.208911132812375, 63.570428778119165 ], [ -135.225708007812415, 63.574286199993992 ], [ -135.27690429687496, 63.578241278119059 ], [ -135.290527343750369, 63.58185455936912 ], [ -135.368530273437671, 63.62086823124411 ], [ -135.409350585937574, 63.627875067181577 ], [ -135.587646484375114, 63.625677801556584 ], [ -135.677416992187574, 63.614618231244222 ], [ -135.697314453125188, 63.61603424686917 ], [ -135.755859374999858, 63.626654364056584 ], [ -135.783007812500244, 63.626581121869101 ], [ -135.809448242187557, 63.621649481244212 ], [ -135.880493164062585, 63.599310614056542 ], [ -135.899218750000131, 63.598651434369025 ], [ -135.975146484374989, 63.608832098431485 ], [ -135.994311523437517, 63.609198309369134 ], [ -136.012207031250199, 63.606268621869255 ], [ -136.148437500000114, 63.540716864056584 ], [ -136.170043945312671, 63.534247137494162 ], [ -136.226977539062688, 63.520770574993975 ], [ -136.285400390624687, 63.497381903119141 ], [ -136.312744140625057, 63.494989324994137 ], [ -136.371020507812659, 63.496039129681591 ], [ -136.396850585937216, 63.488592840619226 ], [ -136.413012695312318, 63.474554754681677 ], [ -136.425659179687784, 63.457342840619248 ], [ -136.439697265624716, 63.442157293744046 ], [ -136.460205078125, 63.433612371869152 ], [ -136.475024414062688, 63.433661199994113 ], [ -136.503906250000028, 63.439715887494025 ], [ -136.518066406249915, 63.440692449994074 ], [ -136.533129882812318, 63.436786199994145 ], [ -136.572265625000171, 63.40968659061916 ], [ -136.616210937500057, 63.394891668744059 ], [ -136.7904052734375, 63.406317449994042 ], [ -136.829394531250159, 63.413202215619073 ], [ -136.866625976562432, 63.424139715619198 ], [ -136.896240234375057, 63.438666082806513 ], [ -136.930346679687659, 63.466571356244152 ], [ -136.939624023437261, 63.47199127811907 ], [ -136.965454101562443, 63.483099676556684 ], [ -136.999511718750085, 63.504754949994201 ], [ -137.032348632812557, 63.515399481244224 ], [ -137.095458984374972, 63.527411199994063 ], [ -137.309252929687233, 63.533880926556485 ], [ -137.629882812499716, 63.616766668744226 ], [ -137.659179687500057, 63.619256903119066 ], [ -137.699389648437489, 63.617865301556634 ], [ -137.738159179687443, 63.611444403119286 ], [ -137.763305664062443, 63.599066473431456 ], [ -137.782031250000131, 63.584418035931584 ], [ -137.790698242187602, 63.575555731244094 ], [ -137.794360351562261, 63.564960028119174 ], [ -137.795288085937699, 63.550726629681613 ], [ -137.798388671875017, 63.540545965619039 ], [ -137.804687499999943, 63.53156159061917 ], [ -137.814819335937614, 63.521185614056577 ], [ -137.837573242187432, 63.505560614056705 ], [ -137.863891601562699, 63.496649481244177 ], [ -137.891845703125171, 63.492938543743996 ], [ -137.946459960937716, 63.491644598431776 ], [ -138.018310546875114, 63.470770574994212 ], [ -138.041137695312756, 63.467718817181606 ], [ -138.086669921874943, 63.467474676556577 ], [ -138.109741210937727, 63.463690496869063 ], [ -138.135791015625017, 63.456244207806584 ], [ -138.160766601562585, 63.44599030155667 ], [ -138.319458007812358, 63.335809637494052 ], [ -138.346801757812642, 63.325384832806648 ], [ -138.428393554687375, 63.309198309369123 ], [ -138.511108398437528, 63.302679754681705 ], [ -138.603076171875102, 63.313177801556762 ], [ -138.626708984374829, 63.304877020306698 ], [ -138.636889648437375, 63.298773504681542 ], [ -138.673217773437301, 63.290838934369006 ], [ -138.7308349609375, 63.27167389530662 ], [ -138.793872070312176, 63.263617254681584 ], [ -138.814697265625, 63.258246160931712 ], [ -138.836596679687659, 63.246161199994155 ], [ -138.873657226562301, 63.211981512494191 ], [ -138.894824218750188, 63.198749090619039 ], [ -138.908447265624943, 63.195135809369035 ], [ -138.920703125000074, 63.195257879681762 ], [ -138.946166992187301, 63.199652410931698 ], [ -139.003540039062585, 63.203143621868996 ], [ -139.022509765625017, 63.20685455936912 ], [ -139.041674804687347, 63.215277410931712 ], [ -139.092822265625159, 63.25006744999412 ], [ -139.369921875000017, 63.329779364056691 ], [ -139.407275390625244, 63.33283112186907 ], [ -139.438598632812301, 63.321356512494155 ] ], [ [ -131.948901367187403, 64.074823309369222 ], [ -131.924121093749989, 64.098993231243981 ], [ -131.88957519531246, 64.103216864056563 ], [ -131.819213867187585, 64.099066473431463 ], [ -131.795532226562699, 64.105731512493961 ], [ -131.775439453124932, 64.11705963749408 ], [ -131.76347656249996, 64.133734442181549 ], [ -131.764160156249858, 64.15636627811908 ], [ -131.771484374999886, 64.177020574994089 ], [ -131.774340820312602, 64.192645574994188 ], [ -131.767016601562176, 64.204779364056492 ], [ -131.744140625, 64.215155340619049 ], [ -131.663378906249875, 64.230658270306492 ], [ -131.579956054687642, 64.236200262494137 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 3, "name": "Teslin", "rivernum": 61, "length": 374323.753 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -134.913330078124915, 61.569696356244222 ], [ -134.885302734375273, 61.552191473431606 ], [ -134.783081054687585, 61.506610418744266 ], [ -134.765795898437318, 61.502460028119053 ], [ -134.730639648437318, 61.499872137494151 ], [ -134.703369140625085, 61.505072332806414 ], [ -134.689501953125216, 61.505438543744091 ], [ -134.67790527343746, 61.499335028118992 ], [ -134.686767578124915, 61.477899481244066 ], [ -134.67583007812496, 61.462225653119063 ], [ -134.657958984374801, 61.447943426556684 ], [ -134.645874023437585, 61.430731512494056 ], [ -134.646362304687472, 61.420721746869141 ], [ -134.655932617187347, 61.38104889530652 ], [ -134.6527099609375, 61.333514715618961 ], [ -134.636035156250188, 61.302362371869165 ], [ -134.605712890624829, 61.281268621869039 ], [ -134.561645507812386, 61.263788153119066 ], [ -134.510375976562528, 61.253851629681662 ], [ -134.496093750000085, 61.24791901249408 ], [ -134.378417968749829, 61.18024323124407 ], [ -134.361376953125017, 61.167596746869208 ], [ -134.348266601562756, 61.139764715619165 ], [ -134.335083007812585, 61.133661199993924 ], [ -134.320239257812631, 61.130316473431563 ], [ -134.30949707031229, 61.125604559369123 ], [ -134.298266601562489, 61.115106512494208 ], [ -134.288940429687244, 61.108172918744188 ], [ -134.264526367187671, 61.094305731244212 ], [ -134.261523437500216, 61.091131903119106 ], [ -134.260253906250057, 61.087176824994131 ], [ -134.259643554687642, 61.083514715619167 ], [ -134.258300781250341, 61.081244207806577 ], [ -134.251831054687642, 61.079046942181698 ], [ -134.236450195312699, 61.075873114056648 ], [ -134.231005859374847, 61.073797918744184 ], [ -134.079101562500171, 60.966424871869144 ], [ -133.986450195312585, 60.896918035931442 ], [ -133.897094726562585, 60.843939520306584 ], [ -133.797534179687602, 60.785907293743961 ], [ -133.703173828125159, 60.748480535931606 ], [ -133.688110351562329, 60.739569403118992 ], [ -133.637817382812415, 60.70148346561912 ], [ -133.597656250000114, 60.680047918744023 ], [ -133.56396484375, 60.649237371869177 ], [ -133.543627929687432, 60.636249090619224 ], [ -133.420336914062347, 60.578387762494117 ], [ -133.374560546874648, 60.545282293744094 ], [ -133.289111328124733, 60.467401434369108 ], [ -133.244873046874716, 60.448553778119113 ], [ -133.227343750000102, 60.44086334843157 ], [ -133.205200195312642, 60.428534246869077 ], [ -133.144409179687301, 60.38112213749416 ], [ -132.964965820312528, 60.26691315311917 ], [ -132.914111328124989, 60.229071356244155 ], [ -132.865527343749989, 60.200140692181819 ], [ -132.79973144531246, 60.180731512494255 ], [ -132.739501953125142, 60.160101629681577 ], [ -132.698852539062585, 60.135516668744131 ], [ -132.654956054687659, 60.114129949994073 ], [ -132.603808593749847, 60.095819403118981 ], [ -132.55705566406246, 60.074090887494215 ], [ -132.438403320312233, 60.025165106244025 ], [ -132.405273437499829, 59.993597723431655 ], [ -132.345214843749744, 59.911932684369113 ], [ -132.318286132812489, 59.869452215619283 ], [ -132.232299804687329, 59.792303778119091 ], [ -132.169799804687386, 59.664178778119279 ], [ -132.149169921874801, 59.629169012494053 ], [ -132.128173828124915, 59.617743231244212 ], [ -132.095385742187432, 59.607123114056485 ], [ -132.079272460937545, 59.592596746869226 ], [ -132.072509765624773, 59.57904694218162 ], [ -132.070556640625, 59.562762762494117 ], [ -132.078662109374761, 59.513251043744148 ], [ -132.077563476562517, 59.501410223431563 ], [ -132.064013671875045, 59.464618231244117 ], [ -132.056884765624829, 59.453802801556634 ], [ -132.031249999999744, 59.436395574994059 ], [ -131.98784179687479, 59.394598699994091 ], [ -131.972900390625, 59.388617254681613 ], [ -131.968554687500074, 59.385443426556563 ], [ -131.970629882812716, 59.37836334843167 ], [ -131.977294921874886, 59.371356512494053 ], [ -131.995898437499989, 59.364203192181591 ], [ -131.996459960937472, 59.354999090619039 ], [ -131.991992187500188, 59.344598699994187 ], [ -131.986572265625114, 59.337103582806719 ], [ -131.973632812499972, 59.326849676556776 ], [ -131.970336914062472, 59.321112371869063 ], [ -131.967407226562614, 59.291083074993999 ], [ -131.964355468749858, 59.282416082806606 ], [ -131.959277343749989, 59.278753973431591 ], [ -131.944995117187489, 59.272333074993952 ], [ -131.921875, 59.244208074994155 ], [ -131.911181640624847, 59.237860418744084 ], [ -131.897583007812244, 59.233172918744053 ], [ -131.853149414062358, 59.20368073124412 ], [ -131.842651367187386, 59.185565496869124 ], [ -131.836181640624886, 59.162665106244255 ], [ -131.827075195312489, 59.143085028119181 ], [ -131.808471679687528, 59.134784246869025 ], [ -131.68864746093729, 59.134784246869117 ], [ -131.627124023437489, 59.121893621869226 ], [ -131.513427734375114, 59.079046942181549 ], [ -131.454638671874761, 59.066522528119101 ], [ -131.264892578125057, 59.072381903119116 ], [ -131.208251953124858, 59.086981512494027 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 7, "name": "Donjek", "rivernum": 596, "length": 205578.27 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -139.0067138671875, 61.414496160931542 ], [ -139.033203125000227, 61.422674871869077 ], [ -139.060180664062358, 61.428338934369172 ], [ -139.08447265625, 61.442450262494226 ], [ -139.107910156250142, 61.45827057499411 ], [ -139.137744140624875, 61.464544989056641 ], [ -139.159179687500085, 61.476922918744123 ], [ -139.181152343750142, 61.50499909061908 ], [ -139.20390624999979, 61.51911041874417 ], [ -139.25895996093746, 61.539374090619113 ], [ -139.303271484374847, 61.556952215619006 ], [ -139.319335937499972, 61.578876043744188 ], [ -139.339038085937432, 61.596795965619002 ], [ -139.361083984374915, 61.609198309369127 ], [ -139.375488281249829, 61.63014557499411 ], [ -139.390747070312131, 61.688495184369096 ], [ -139.410327148437432, 61.729681707806648 ], [ -139.444628906250102, 61.751654364056563 ], [ -139.469116210937699, 61.784002996869148 ], [ -139.476318359374972, 61.802801824994091 ], [ -139.484912109374818, 61.81513092655662 ], [ -139.499389648437585, 61.835956121869131 ], [ -139.506591796875142, 61.854681707806741 ], [ -139.523974609375017, 61.881952215619073 ], [ -139.548632812500188, 61.902362371869039 ], [ -139.584887695312688, 61.907171942181598 ], [ -139.622070312500028, 61.905877996869037 ], [ -139.678100585937216, 61.899481512494091 ], [ -139.727587890625045, 61.893182684369158 ], [ -139.782519531249847, 61.917987371868968 ], [ -139.803833007812301, 61.922919012494091 ], [ -139.817016601562784, 61.934881903119113 ], [ -139.833496093750171, 61.942572332806506 ], [ -139.849536132812375, 61.947699285931606 ], [ -139.861132812499875, 61.959491278119316 ], [ -139.87724609374979, 61.972479559369013 ], [ -139.875048828124875, 61.991644598431776 ], [ -139.862670898437642, 62.007513739056733 ], [ -139.873339843750074, 62.022162176556783 ], [ -139.890429687499989, 62.033221746869117 ], [ -139.894531250000028, 62.050409246869222 ], [ -139.874267578124858, 62.068963934369144 ], [ -139.853393554687472, 62.085882879681527 ], [ -139.874560546874932, 62.102484442181535 ], [ -139.912475585937614, 62.108905340619202 ], [ -139.920410156250114, 62.13312409061907 ], [ -139.918457031250085, 62.158954168744216 ], [ -139.901245117187756, 62.179510809369148 ], [ -139.877001953125188, 62.191913153119209 ], [ -139.839648437500045, 62.23341705936916 ], [ -139.798388671874989, 62.247626043744191 ], [ -139.74418945312479, 62.265692449994056 ], [ -139.687133789062557, 62.273944403119167 ], [ -139.624755859375, 62.288763739056613 ], [ -139.561889648437671, 62.300848699994162 ], [ -139.501147460937574, 62.304803778119201 ], [ -139.47021484375, 62.31000397343167 ], [ -139.443481445312642, 62.320990301556499 ], [ -139.4375, 62.357855535931627 ], [ -139.452929687499818, 62.377508856243992 ], [ -139.467407226562443, 62.393377996869091 ], [ -139.494799804687233, 62.43532135624416 ], [ -139.491870117187517, 62.483221746869219 ], [ -139.481982421874676, 62.504950262494106 ], [ -139.483398437500085, 62.56159088749407 ], [ -139.511401367187489, 62.589667059369198 ], [ -139.547485351562614, 62.609686590619198 ], [ -139.591479492187375, 62.609686590619255 ], [ -139.643554687500028, 62.58966705936902 ], [ -139.707568359374847, 62.565619207806648 ], [ -139.75390625, 62.557440496868963 ], [ -139.789428710937614, 62.561712957806542 ], [ -139.81298828125, 62.571966864056833 ], [ -139.83183593749996, 62.589544989056606 ], [ -139.849291992187489, 62.608099676556705 ], [ -139.869628906249915, 62.621600653119266 ], [ -139.8992919921875, 62.620062567181442 ], [ -139.928955078125199, 62.612860418744134 ], [ -139.991748046875188, 62.613641668744179 ], [ -140.005249023437614, 62.619256903119165 ] ] ] } }, { "type": "Feature", "properties": { "scalerank": 3, "name": "Yukon", "rivernum": 53, "length": 2772086.757 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.766357421874886, 61.628729559369134 ], [ -164.779467773437631, 61.637079168743981 ], [ -164.813354492187585, 61.653631903119233 ], [ -164.868164062500114, 61.661688543744098 ], [ -164.890795898437517, 61.66803619999417 ], [ -164.903491210937489, 61.677118231243988 ], [ -164.892260742187659, 61.698358465619044 ], [ -164.80961914062479, 61.73078034061929 ], [ -164.786791992187545, 61.746039129681691 ], [ -164.792895507812545, 61.748846746869127 ], [ -164.807299804687659, 61.759711004681535 ], [ -164.690356445312403, 61.760199285931648 ], [ -164.628955078124932, 61.774969793744141 ], [ -164.590014648437716, 61.774847723431584 ], [ -164.561157226562642, 61.767157293744134 ], [ -164.564257812500102, 61.749090887494063 ], [ -164.587402343750171, 61.748602606243978 ], [ -164.625000000000199, 61.753485418743999 ], [ -164.653491210937659, 61.751971746869096 ], [ -164.648974609375131, 61.73236725468167 ], [ -164.625048828124989, 61.721991278119255 ], [ -164.592089843749847, 61.723895574994145 ], [ -164.4697265625, 61.747748114056542 ], [ -164.454394531250102, 61.755926824994106 ], [ -164.444458007812358, 61.764105535931726 ], [ -164.422729492187642, 61.775751043744101 ], [ -164.413134765624818, 61.783563543744137 ], [ -164.392993164062602, 61.795526434369016 ], [ -164.363940429687659, 61.801825262493985 ], [ -164.333740234375085, 61.800604559369155 ], [ -164.310424804687244, 61.790106512494184 ], [ -164.296435546875159, 61.781073309369035 ], [ -164.282153320312375, 61.777850653119231 ], [ -164.267578124999773, 61.778192449994208 ], [ -164.230834960937671, 61.784784246869016 ], [ -164.226733398437545, 61.790228582806513 ], [ -164.226928710937415, 61.797430731244226 ], [ -164.218261718750313, 61.807440496868999 ], [ -164.203857421875171, 61.812616278119059 ], [ -164.171630859374943, 61.812323309369155 ], [ -164.156176757812716, 61.814960028119017 ], [ -164.146728515624915, 61.820746160931606 ], [ -164.132617187499875, 61.835711981244131 ], [ -164.122070312500171, 61.841620184368992 ], [ -164.12236328124996, 61.856268621869063 ], [ -164.108642578124943, 61.872748114056662 ], [ -164.089477539062329, 61.887518621869212 ], [ -164.073608398437642, 61.896844793744116 ], [ -164.05126953125, 61.907049871869106 ], [ -164.038818359375, 61.910174871869103 ], [ -164.026416015625102, 61.909857489056712 ], [ -164.020385742187614, 61.905951239056577 ], [ -164.008300781250227, 61.89025299686908 ], [ -163.999145507812557, 61.883172918743981 ], [ -164.002441406250199, 61.877704168744074 ], [ -164.001513671875102, 61.871112371869039 ], [ -163.997607421874847, 61.863641668744151 ], [ -163.99169921875, 61.855829168744116 ], [ -163.997607421875159, 61.854315496869042 ], [ -164.006884765624875, 61.849920965619084 ], [ -164.012817382812756, 61.848456121869027 ], [ -163.989306640625045, 61.831854559369106 ], [ -163.947314453125159, 61.824774481244148 ], [ -163.907153320312432, 61.828680731244198 ], [ -163.889282226562528, 61.845038153119212 ], [ -163.882861328125017, 61.860541082806613 ], [ -163.867968750000244, 61.859442449994056 ], [ -163.850830078124943, 61.84943268436917 ], [ -163.837768554687329, 61.838495184369101 ], [ -163.836962890625188, 61.826776434369016 ], [ -163.853637695312614, 61.818426824994056 ], [ -163.889282226562528, 61.807440496869027 ], [ -163.827514648437415, 61.807440496869198 ], [ -163.815356445312489, 61.805243231244205 ], [ -163.793334960937671, 61.795477606243999 ], [ -163.782836914062472, 61.793158270306677 ], [ -163.767504882812574, 61.792181707806563 ], [ -163.756640625000045, 61.789252020306485 ], [ -163.738452148437659, 61.780145574994116 ], [ -163.741259765625017, 61.778753973431598 ], [ -163.7431640625, 61.773993231244141 ], [ -163.741943359375114, 61.768866278119098 ], [ -163.735351562499829, 61.766546942181776 ], [ -163.704345703124801, 61.766546942181691 ], [ -163.704345703124801, 61.773309637494251 ], [ -163.709765625000017, 61.776483465619094 ], [ -163.712646484374915, 61.779730535931542 ], [ -163.71484375, 61.783148504681591 ], [ -163.717944335937489, 61.786981512494123 ], [ -163.663330078125114, 61.781610418744137 ], [ -163.652465820312614, 61.783563543744052 ], [ -163.648193359374773, 61.792352606244172 ], [ -163.646289062500074, 61.813544012494091 ], [ -163.642871093750102, 61.821112371869106 ], [ -163.613574218750216, 61.832782293744025 ], [ -163.577685546875017, 61.829217840619187 ], [ -163.511889648437659, 61.814960028119074 ], [ -163.441772460937301, 61.813788153119184 ], [ -163.404711914062659, 61.81842682499402 ], [ -163.378784179687614, 61.831659246869151 ], [ -163.366943359375199, 61.834540106244006 ], [ -163.329516601562318, 61.827020574994194 ], [ -163.313281250000045, 61.827948309369056 ], [ -163.303027343750102, 61.83385651249403 ], [ -163.288134765625045, 61.848993231244101 ], [ -163.279785156249801, 61.855829168744172 ], [ -163.279785156250114, 61.862127996869162 ], [ -163.298999023437233, 61.869501043744222 ], [ -163.278320312499943, 61.875677801556598 ], [ -163.239550781250159, 61.878436590618989 ], [ -163.224536132812432, 61.889422918744103 ], [ -163.217651367187386, 61.904730535931662 ], [ -163.2196044921875, 61.917181707806577 ], [ -163.227416992187671, 61.927801824994162 ], [ -163.276367187500142, 61.96576569218162 ], [ -163.286010742187443, 61.978778387494238 ], [ -163.299926757812329, 62.021551824994283 ], [ -163.309375000000102, 62.043963934369145 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.208911132812602, 65.178412176556677 ], [ -152.262988281250216, 65.171087957806549 ], [ -152.348876953125284, 65.151727606244023 ], [ -152.376391601562545, 65.141302801556591 ], [ -152.42351074218783, 65.115301824994049 ], [ -152.451953125000188, 65.110126043744046 ], [ -152.485351562499858, 65.114447332806705 ], [ -152.575439453124972, 65.144891668744023 ], [ -152.653491210937489, 65.145770574994103 ], [ -152.69475097656246, 65.151239324994179 ], [ -152.712646484375114, 65.168817449994066 ], [ -152.716479492187176, 65.176874090619251 ], [ -152.743334960937659, 65.196405340619108 ], [ -152.760131835937415, 65.205511785931691 ], [ -152.78129882812496, 65.20624420780662 ], [ -152.822509765625114, 65.200140692181606 ], [ -152.910644531249801, 65.200140692181634 ], [ -152.962573242187403, 65.181341864056719 ], [ -152.980151367187545, 65.178412176556492 ], [ -153.082397460937557, 65.186542059369131 ], [ -153.19951171874996, 65.148065496869179 ], [ -153.212280273437472, 65.13434479374412 ], [ -153.226000976562489, 65.109686590619091 ], [ -153.258666992187244, 65.102972723431762 ], [ -153.482910156250114, 65.117010809369049 ], [ -153.497607421875045, 65.120184637494035 ], [ -153.53142089843746, 65.134295965619103 ], [ -153.548706054687472, 65.137469793744089 ], [ -153.564453124999829, 65.135077215619205 ], [ -153.610766601562375, 65.117010809369191 ], [ -153.685839843750102, 65.103949285931577 ], [ -153.727343750000017, 65.085565496869236 ], [ -153.754516601562671, 65.080682684369108 ], [ -153.780566406250045, 65.071356512494148 ], [ -153.839843749999972, 65.067450262494063 ], [ -153.999023437500085, 65.035223699994177 ], [ -154.151367187499943, 64.994086004681677 ], [ -154.313403320312261, 64.922796942181691 ], [ -154.370483398437727, 64.918329168744108 ], [ -154.38688964843746, 64.922308660931662 ], [ -154.416748046875142, 64.934759832806662 ], [ -154.432543945312261, 64.939471746869103 ], [ -154.448413085937574, 64.94020416874416 ], [ -154.545166015624886, 64.923846746869089 ], [ -154.578857421874972, 64.935077215619089 ], [ -154.669726562500131, 64.939813543744023 ], [ -154.821411132812614, 64.908710028119131 ], [ -154.934936523437557, 64.89569733280662 ], [ -155.022338867187642, 64.87892487186916 ], [ -155.098681640624989, 64.877069403119165 ], [ -155.193164062499676, 64.860467840619208 ], [ -155.282836914062671, 64.832391668744137 ], [ -155.381469726562557, 64.789618231244148 ], [ -155.491870117187659, 64.750360418744066 ], [ -155.546020507812784, 64.74713776249412 ], [ -155.720458984374659, 64.767523504681762 ], [ -155.793872070312659, 64.760687567181648 ], [ -155.937060546875131, 64.724920965619063 ], [ -156.007861328124989, 64.719745184369089 ], [ -156.172973632812671, 64.725897528119148 ], [ -156.206225585937602, 64.72243073124406 ], [ -156.328295898437688, 64.68305084843162 ], [ -156.414916992187386, 64.665301824994245 ], [ -156.486938476562415, 64.67677643436906 ], [ -156.550048828125057, 64.66681549686902 ], [ -156.622558593749716, 64.663104559369273 ], [ -156.694335937499773, 64.643988348431691 ], [ -156.772875976562545, 64.64398834843152 ], [ -156.782885742187517, 64.653387762494233 ], [ -156.776782226562489, 64.674676824994137 ], [ -156.755175781249761, 64.712909246869202 ], [ -156.787475585937557, 64.728045965619188 ], [ -156.828369140624886, 64.740252996869145 ], [ -156.870483398437443, 64.744818426556662 ], [ -156.937548828125102, 64.729681707806634 ], [ -156.971191406250057, 64.735126043744046 ], [ -157.001464843749886, 64.749090887494177 ], [ -157.022705078124972, 64.767523504681677 ], [ -157.027514648437261, 64.778143621869233 ], [ -157.028686523437642, 64.787909246869006 ], [ -157.031982421874972, 64.797967840619123 ], [ -157.043139648437261, 64.809149481244248 ], [ -157.057495117187614, 64.814886785931634 ], [ -157.1148681640625, 64.822772528119103 ], [ -157.242846679687744, 64.80333893436908 ], [ -157.28337402343746, 64.809149481244248 ], [ -157.310424804687472, 64.819159246869162 ], [ -157.33366699218746, 64.82521393436906 ], [ -157.35734863281229, 64.823993231244131 ], [ -157.385791015624932, 64.812567449994177 ], [ -157.416381835937557, 64.806341864056634 ], [ -157.445239257812318, 64.816278387494151 ], [ -157.49565429687496, 64.850116278119202 ], [ -157.530883789062443, 64.862372137494106 ], [ -157.716552734375085, 64.865668035931563 ], [ -157.796630859374943, 64.87518952030662 ], [ -157.868090820312489, 64.868426824994117 ], [ -157.890747070312614, 64.864447332806591 ], [ -157.913378906250017, 64.857538153119094 ], [ -157.932373046874886, 64.835882879681577 ], [ -157.962524414062671, 64.801385809369023 ], [ -157.983276367187472, 64.782782293744162 ], [ -158.051513671875227, 64.744989324994094 ], [ -158.133789062500171, 64.707391668744137 ], [ -158.1484375, 64.696161199993981 ], [ -158.16557617187496, 64.686102606244106 ], [ -158.252685546874943, 64.671747137494222 ], [ -158.277148437499818, 64.660419012494188 ], [ -158.294067382812557, 64.64069244999412 ], [ -158.3165283203125, 64.598993231244108 ], [ -158.330981445312432, 64.579217840619066 ], [ -158.347656249999858, 64.564642645306648 ], [ -158.367236328125244, 64.55683014530662 ], [ -158.409106445312148, 64.549627996869191 ], [ -158.428955078124915, 64.541815496869091 ], [ -158.437255859375028, 64.535272528119165 ], [ -158.468261718749773, 64.499579168744205 ], [ -158.483886718750085, 64.464862371869145 ], [ -158.504394531249915, 64.441278387494179 ], [ -158.529785156249886, 64.427313543744177 ], [ -158.587524414062443, 64.407660223431762 ], [ -158.608520507812557, 64.397333074994123 ], [ -158.640063476562659, 64.377069403119066 ], [ -158.694458007812443, 64.360785223431705 ], [ -158.706225585937659, 64.354803778119134 ], [ -158.714648437500102, 64.345770574994049 ], [ -158.717944335937716, 64.332586981243963 ], [ -158.715869140624989, 64.32062409061912 ], [ -158.689257812500102, 64.270941473431577 ], [ -158.683349609374943, 64.262884832806719 ], [ -158.674609374999989, 64.255072332806677 ], [ -158.658813476562244, 64.244501043744194 ], [ -158.651245117187358, 64.237909246869151 ], [ -158.647583007812727, 64.230829168744037 ], [ -158.633544921874886, 64.21283600468179 ], [ -158.634033203125171, 64.195624090619106 ], [ -158.643554687499829, 64.17872955936916 ], [ -158.740283203125045, 64.058710028119151 ], [ -158.744555664062602, 64.050726629681563 ], [ -158.751025390624903, 64.03209869999408 ], [ -158.764331054687489, 64.017157293744191 ], [ -158.786743164062642, 64.008075262494131 ], [ -158.881958007812557, 63.985296942181627 ], [ -158.929003906250045, 63.968036199994188 ], [ -158.937182617187517, 63.955096746869131 ], [ -158.9515380859375, 63.945990301556762 ], [ -159.009692382812489, 63.924872137494084 ], [ -159.023193359374943, 63.916205145306613 ], [ -159.029541015624915, 63.906439520306662 ], [ -159.155444335937716, 63.876092840619094 ], [ -159.185839843750159, 63.872919012493959 ], [ -159.195117187499847, 63.870306707806563 ], [ -159.209643554687631, 63.857367254681684 ], [ -159.210620117187517, 63.839178778119148 ], [ -159.207446289062545, 63.81891510624417 ], [ -159.209155273437659, 63.80023834843152 ], [ -159.213183593749932, 63.792181707806655 ], [ -159.218383789062273, 63.785101629681762 ], [ -159.224731445312557, 63.779413153119094 ], [ -159.231982421875273, 63.775506903119073 ], [ -159.29631347656246, 63.763251043744091 ], [ -159.316333007812318, 63.756293035931641 ], [ -159.334399414062432, 63.745965887494066 ], [ -159.349731445312671, 63.731024481244091 ], [ -159.359130859375, 63.714960028119123 ], [ -159.374072265625188, 63.663641668744042 ], [ -159.381347656249972, 63.64918854374406 ], [ -159.391235351562585, 63.63690827030667 ], [ -159.444506835937716, 63.59516022343152 ], [ -159.467211914062659, 63.584662176556549 ], [ -159.472949218750045, 63.578485418744116 ], [ -159.476245117187375, 63.57147858280662 ], [ -159.482104492187432, 63.547870184369074 ], [ -159.494384765625, 63.522821356244208 ], [ -159.496459960937443, 63.514276434369116 ], [ -159.480883789062545, 63.489520574994174 ], [ -159.447558593750074, 63.464422918744091 ], [ -159.422656250000045, 63.437689520306606 ], [ -159.432495117187557, 63.408075262494116 ], [ -159.448852539062472, 63.399286199994137 ], [ -159.510668945312403, 63.388251043744177 ], [ -159.600146484374932, 63.354608465619052 ], [ -159.606494140625216, 63.350213934369009 ], [ -159.612109374999989, 63.341009832806748 ], [ -159.611987304687347, 63.332342840619297 ], [ -159.610034179687545, 63.323553778119205 ], [ -159.610351562500028, 63.314032293744148 ], [ -159.621582031249858, 63.30219147343162 ], [ -159.642333984374659, 63.294623114056613 ], [ -159.682666015625159, 63.285345770306641 ], [ -159.698608398437358, 63.276800848431662 ], [ -159.71135253906246, 63.264960028119248 ], [ -159.720996093749761, 63.250360418744222 ], [ -159.727465820312744, 63.233417059369032 ], [ -159.729052734374932, 63.214911199994155 ], [ -159.725878906250244, 63.181415106243968 ], [ -159.732348632812545, 63.16412994999412 ], [ -159.752734374999761, 63.136297918744219 ], [ -159.761035156249875, 63.121210028119194 ], [ -159.764404296875057, 63.105340887494094 ], [ -159.760375976562472, 63.07721588749412 ], [ -159.761474609375028, 63.067987371869023 ], [ -159.766284179687318, 63.059100653119181 ], [ -159.773852539062517, 63.051532293744032 ], [ -159.782836914062727, 63.045355535931591 ], [ -159.791870117187472, 63.040716864056662 ], [ -159.8125, 63.034002996869148 ], [ -159.903198242187671, 63.017401434369113 ], [ -159.949584960937727, 63.000189520306542 ], [ -159.97246093749979, 62.986835028119231 ], [ -160.003955078125102, 62.962347723431527 ], [ -160.029711914062716, 62.933417059368992 ], [ -160.046801757812261, 62.899676824994181 ], [ -160.052416992187318, 62.860296942181655 ], [ -160.061157226562273, 62.856390692181783 ], [ -160.066943359375102, 62.85053131718157 ], [ -160.070361328125074, 62.842962957806478 ], [ -160.071948242187261, 62.833612371869222 ], [ -160.070605468750045, 62.82213776249408 ], [ -160.061083984374733, 62.80329010624417 ], [ -160.058398437500017, 62.793329168744179 ], [ -160.063842773437642, 62.775824285931598 ], [ -160.090454101562472, 62.74596588749408 ], [ -160.095385742187432, 62.727850653119141 ], [ -160.132739257812773, 62.726825262493982 ], [ -160.144409179687443, 62.722919012494167 ], [ -160.153808593750085, 62.716327215618982 ], [ -160.16264648437496, 62.707464910931492 ], [ -160.170214843749818, 62.697528387494145 ], [ -160.176074218749875, 62.687518621869117 ], [ -160.179565429687386, 62.678534246869155 ], [ -160.181274414062528, 62.669378973431627 ], [ -160.181079101562347, 62.659857489056705 ], [ -160.178833007812443, 62.650018621869194 ], [ -160.164306640624972, 62.613299871869117 ], [ -160.163696289062386, 62.606073309369137 ], [ -160.173144531249847, 62.558368231244089 ], [ -160.17041015625, 62.548651434369162 ], [ -160.159594726562318, 62.539740301556712 ], [ -160.129516601562329, 62.523065496869101 ], [ -160.120849609374915, 62.516131903119089 ], [ -160.116699218750028, 62.510565496869233 ], [ -160.110644531249818, 62.497870184369212 ], [ -160.107177734374716, 62.492621160931698 ], [ -160.103442382812574, 62.489520574993989 ], [ -160.0775146484375, 62.475775457806513 ], [ -160.053222656250085, 62.466742254681591 ], [ -160.035766601562614, 62.457709051556677 ], [ -160.020922851562659, 62.44574616093162 ], [ -160.017089843749943, 62.440863348431662 ], [ -160.008349609374989, 62.424627996869006 ], [ -159.995117187500227, 62.410419012493968 ], [ -159.991625976562432, 62.404486395306648 ], [ -159.98674316406229, 62.39332916874416 ], [ -159.967333984374989, 62.368426824994053 ], [ -159.963623046874943, 62.358587957806627 ], [ -159.962939453125131, 62.320868231244084 ], [ -159.964160156249989, 62.313421942181606 ], [ -159.971118164062261, 62.293475653119252 ], [ -159.972656249999972, 62.286566473431535 ], [ -159.966308593749972, 62.262152410931741 ], [ -159.945556640625171, 62.249945379681598 ], [ -159.786181640624875, 62.23615143436917 ], [ -159.751513671874875, 62.227411199994066 ], [ -159.724121093749972, 62.205438543744236 ], [ -159.722705078124932, 62.174823309369081 ], [ -159.7381591796875, 62.142645574994219 ], [ -159.761401367187489, 62.116327215619101 ], [ -159.801684570312545, 62.09337799686908 ], [ -159.846362304687489, 62.084588934369187 ], [ -159.960937499999886, 62.077508856244179 ], [ -159.982104492187432, 62.071966864056563 ], [ -160.001879882812659, 62.063055731244084 ], [ -160.019409179687358, 62.049994207806677 ], [ -160.030932617187261, 62.036200262494155 ], [ -160.057177734374818, 61.98932526249417 ], [ -160.086108398437432, 61.959344793744123 ], [ -160.123168945312358, 61.942987371869222 ], [ -160.164306640624972, 61.935614324994056 ], [ -160.405322265624932, 61.922430731244091 ], [ -160.528320312500057, 61.921820379681449 ], [ -160.61186523437533, 61.935419012494016 ], [ -160.714892578125102, 61.942450262494148 ], [ -160.953906250000102, 61.937689520306549 ], [ -160.974487304687443, 61.93385651249401 ], [ -161.053759765624847, 61.905877996869179 ], [ -161.124511718750227, 61.88996002811912 ], [ -161.143188476562557, 61.881048895306641 ], [ -161.152880859375017, 61.878363348431677 ], [ -161.191894531250057, 61.877704168744074 ], [ -161.292041015624932, 61.853045965619117 ], [ -161.316577148437659, 61.84308502811907 ], [ -161.345141601562631, 61.825506903119091 ], [ -161.359252929687329, 61.805926824994096 ], [ -161.340209960937358, 61.789862371869184 ], [ -161.3389892578125, 61.784491278119084 ], [ -161.327197265624875, 61.77101471561916 ], [ -161.319580078124886, 61.757586981244231 ], [ -161.319140625000045, 61.743524481244187 ], [ -161.328662109375045, 61.728461004681677 ], [ -161.393432617187727, 61.671747137493917 ], [ -161.428271484375159, 61.649237371869106 ], [ -161.467578124999989, 61.641913153119184 ], [ -161.551391601562329, 61.636493231244181 ], [ -161.632324218749744, 61.620428778119155 ], [ -161.722705078124932, 61.620965887494108 ], [ -161.803588867187557, 61.608099676556598 ], [ -161.8231201171875, 61.602240301556527 ], [ -161.825561523437585, 61.601019598431563 ], [ -161.876879882812602, 61.576044012494087 ], [ -161.914306640624858, 61.565008856244042 ], [ -161.9520263671875, 61.567328192181535 ], [ -161.975219726562699, 61.586127020306542 ], [ -161.969360351562671, 61.624579168744056 ], [ -161.96147460937496, 61.6404483093689 ], [ -161.956665039062358, 61.655462957806677 ], [ -161.957519531249943, 61.670233465619162 ], [ -161.96660156249979, 61.685614324994241 ], [ -162.049926757812472, 61.766546942181634 ], [ -162.120288085937489, 61.819598699994117 ], [ -162.137084960937557, 61.836297918744108 ], [ -162.150512695312472, 61.856561590619229 ], [ -162.16606445312496, 61.892840887494152 ], [ -162.176025390625085, 61.909198309369053 ], [ -162.190795898437557, 61.922723699994023 ], [ -162.209399414062688, 61.931586004681563 ], [ -162.229907226562517, 61.936542059369089 ], [ -162.271655273437773, 61.938421942181549 ], [ -162.384326171874847, 61.919940496869167 ], [ -162.406127929687386, 61.919208074994138 ], [ -162.425219726562489, 61.92492096561913 ], [ -162.437426757812233, 61.941351629681741 ], [ -162.443725585937415, 61.979364324994158 ], [ -162.449877929687545, 61.996405340619262 ], [ -162.464843749999829, 62.009833074994141 ], [ -162.484423828125216, 62.016546942181535 ], [ -162.5057373046875, 62.018011785931478 ], [ -162.527026367187716, 62.015326239056513 ], [ -162.656494140624858, 61.97365143436911 ], [ -162.665332031250045, 61.966742254681726 ], [ -162.671557617187403, 61.957464910931726 ], [ -162.683032226562489, 61.920965887494148 ], [ -162.689990234375102, 61.912176824994027 ], [ -162.702270507812329, 61.906317449994162 ], [ -162.730224609375028, 61.903436590619158 ], [ -162.754077148437318, 61.909247137494155 ], [ -162.775878906249858, 61.92121002811912 ], [ -162.797778320312347, 61.936786199994209 ], [ -162.823852539062443, 61.949774481244248 ], [ -162.851562499999829, 61.953436590619091 ], [ -162.879443359375017, 61.948675848431691 ], [ -162.906176757812517, 61.936590887494077 ], [ -162.94938964843729, 61.91090729374416 ], [ -162.972412109375028, 61.902411199994084 ], [ -162.998535156249943, 61.899847723431677 ], [ -163.063354492187386, 61.911932684369262 ], [ -163.130249023437642, 61.916034246869032 ], [ -163.154711914062517, 61.922137762494017 ], [ -163.176513671875057, 61.93053619999403 ], [ -163.195922851562358, 61.942694403119205 ], [ -163.235961914062443, 61.984930731244091 ], [ -163.241699218750142, 61.994647528119081 ], [ -163.250610351562557, 62.019794012494152 ], [ -163.257006835937347, 62.030633856244194 ], [ -163.268188476562671, 62.03917877811908 ], [ -163.286303710937545, 62.044623114056577 ], [ -163.344531249999733, 62.045477606244134 ], [ -163.406372070312386, 62.057391668744167 ], [ -163.469360351562386, 62.082294012494103 ], [ -163.482788085937585, 62.084662176556641 ], [ -163.494506835937699, 62.084344793743988 ], [ -163.556323242187602, 62.075751043744077 ], [ -163.698779296874847, 62.086200262494181 ], [ -163.849291992187233, 62.097479559369106 ], [ -163.879077148437716, 62.108172918744089 ], [ -163.905200195312631, 62.127948309368982 ], [ -163.964892578124989, 62.184271551556662 ], [ -163.974365234374858, 62.196405340619144 ], [ -163.977709960937602, 62.209906317181535 ], [ -163.9713134765625, 62.224627996869067 ], [ -163.957934570312403, 62.237616278119191 ], [ -163.943969726562699, 62.248553778119003 ], [ -163.931445312499847, 62.26076080936911 ], [ -163.92253417968746, 62.27770416874413 ], [ -163.910034179687329, 62.312445379681634 ], [ -163.900390625, 62.32643463749411 ], [ -163.869555664062432, 62.351629949994084 ], [ -163.858764648437756, 62.363544012494124 ], [ -163.852905273437386, 62.378045965619123 ], [ -163.853198242187489, 62.434198309369023 ], [ -163.850463867187329, 62.455926824994286 ], [ -163.851562500000171, 62.462836004681662 ], [ -163.86137695312496, 62.475946356244087 ], [ -163.909106445312233, 62.504217840619226 ], [ -163.920825195312631, 62.518133856244098 ], [ -163.9375, 62.549676824994208 ], [ -163.948413085937716, 62.563836981244023 ], [ -163.966235351562489, 62.576434637494124 ], [ -164.028491210937574, 62.600165106244077 ], [ -164.057910156250102, 62.621283270306584 ], [ -164.106689453124829, 62.675726629681662 ], [ -164.135253906250114, 62.698309637494049 ], [ -164.156176757812375, 62.707342840619049 ], [ -164.178100585937557, 62.712347723431506 ], [ -164.387084960937443, 62.730902410931577 ], [ -164.452807617187602, 62.748407293744073 ], [ -164.481689453125057, 62.745306707806648 ] ], [ [ -152.047851562500227, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -152.046323037732577, 65.165763546213782 ], [ -152.020556640624932, 65.172723699994179 ], [ -151.945117187499903, 65.209784246869148 ], [ -151.919970703124932, 65.216180731244151 ], [ -151.765014648437528, 65.233832098431634 ], [ -151.738891601562301, 65.243768621869066 ], [ -151.713378906250341, 65.249701239056506 ], [ -151.689257812500017, 65.244940496869191 ], [ -151.665283203125085, 65.236151434369106 ], [ -151.640014648437443, 65.230096746869194 ], [ -151.509155273437329, 65.231952215619216 ], [ -151.488647460937813, 65.235174871869077 ], [ -151.46831054687479, 65.242059637494165 ], [ -151.453002929687585, 65.249139715619108 ], [ -151.438842773437443, 65.258124090619219 ], [ -151.426147460937443, 65.270086981244219 ], [ -151.420410156250057, 65.272894598431648 ], [ -151.407031249999932, 65.276239324994208 ], [ -151.367919921874943, 65.279974676556535 ], [ -151.356127929687347, 65.284125067181563 ], [ -151.334228515625171, 65.297796942181606 ], [ -151.322436523437261, 65.302679754681677 ], [ -151.310302734375057, 65.304999090619063 ], [ -151.298388671875102, 65.305487371869035 ], [ -151.286743164062557, 65.304022528119148 ], [ -151.27495117187496, 65.300409246869179 ], [ -151.254272460937329, 65.290790106244145 ], [ -151.243896484375085, 65.287420965619077 ], [ -151.230957031249829, 65.286078192181634 ], [ -151.185546874999943, 65.291205145306748 ], [ -151.150317382812801, 65.305194403119046 ], [ -151.081054687499716, 65.348822332806705 ], [ -151.039550781249773, 65.368768621869165 ], [ -150.921435546875074, 65.405096746869077 ], [ -150.802368164062244, 65.439032293744162 ], [ -150.738403320312358, 65.461493231244191 ], [ -150.668383789062545, 65.495379949994074 ], [ -150.660693359374733, 65.497992254681733 ], [ -150.565966796874761, 65.504217840619219 ], [ -150.409838867187602, 65.514520574994009 ], [ -150.309326171875142, 65.515326239056662 ], [ -150.212280273437443, 65.527606512494103 ], [ -150.185229492187432, 65.540838934369063 ], [ -150.177001953125171, 65.562933660931535 ], [ -150.176025390624943, 65.589789129681748 ], [ -150.170776367187187, 65.617499090619262 ], [ -150.141284179687432, 65.654974676556634 ], [ -150.096240234375188, 65.678290106244063 ], [ -150.045410156250114, 65.686712957806662 ], [ -149.998413085937443, 65.679315496869165 ], [ -149.924975585937688, 65.642889715618935 ], [ -149.896362304687244, 65.638373114056677 ], [ -149.874145507812614, 65.640570379681577 ], [ -149.862304687499886, 65.64772369999416 ], [ -149.818041992187375, 65.712591864056677 ], [ -149.801879882812585, 65.755316473431563 ], [ -149.796069335937347, 65.776874090619103 ], [ -149.811401367187585, 65.793719793744089 ], [ -149.844604492187415, 65.790106512494276 ], [ -149.905688476562375, 65.769720770306634 ], [ -150.023193359374829, 65.764593817181648 ], [ -150.089477539062443, 65.774237371869091 ], [ -150.127124023437602, 65.79982330936906 ], [ -150.08598632812496, 65.818622137494103 ], [ -150.030200195312545, 65.833514715619089 ], [ -149.920410156250028, 65.880194403119148 ], [ -149.894287109374829, 65.890326239056691 ], [ -149.878173828124858, 65.900751043744123 ], [ -149.865722656249829, 65.911395574994231 ], [ -149.851440429687329, 65.920184637494145 ], [ -149.829711914062329, 65.924920965619336 ], [ -149.786987304687841, 65.920843817181549 ], [ -149.70361328125, 65.89362213749412 ], [ -149.660693359375045, 65.887518621869106 ], [ -149.623095703124704, 65.893866278119205 ], [ -149.549365234375159, 65.916083074994148 ], [ -149.511108398437443, 65.915228582806591 ], [ -149.434570312499886, 65.885931707806662 ], [ -149.40666503906229, 65.879095770306662 ], [ -149.355151367187432, 65.874579168744049 ], [ -149.300341796874875, 65.879095770306662 ], [ -149.254809570312375, 65.900580145306634 ], [ -149.231201171875085, 65.94684479374412 ], [ -149.236816406249829, 65.970038153119233 ], [ -149.23503417968746, 65.982440496869089 ], [ -149.221240234374932, 65.987811590619103 ], [ -149.205493164062602, 65.98993561405662 ], [ -149.174194335937472, 65.99933502811912 ], [ -149.159179687500028, 66.001483465619074 ], [ -149.145507812500171, 66.005316473431606 ], [ -149.133471679687574, 66.013617254681577 ], [ -149.119873046874886, 66.020819403119148 ], [ -149.101440429687159, 66.021918035931762 ], [ -149.096069335937415, 66.01947662968162 ], [ -149.08732910156246, 66.011004949994131 ], [ -149.080371093750188, 66.00763580936902 ], [ -149.057128906249886, 66.002142645306648 ], [ -149.045410156250114, 66.000921942181591 ], [ -149.032592773437472, 66.001483465619131 ], [ -149.038745117187602, 66.007635809369106 ], [ -149.020996093749716, 66.007440496869208 ], [ -149.005615234375, 66.008978582806591 ], [ -148.993334960937432, 66.015252996869151 ], [ -148.984741210937528, 66.029413153119094 ], [ -149.016601562499829, 66.055926824994103 ], [ -149.020751953125057, 66.069891668744077 ], [ -148.995288085937233, 66.075946356244216 ], [ -148.941650390625114, 66.067499090619179 ], [ -148.916992187500057, 66.066424871869103 ], [ -148.888549804687727, 66.075946356244074 ], [ -148.871826171874829, 66.085760809369177 ], [ -148.846557617187841, 66.097040106243995 ], [ -148.823486328124972, 66.097113348431677 ], [ -148.803027343749932, 66.053729559369216 ], [ -148.779418945312614, 66.049627996869077 ], [ -148.753833007812489, 66.056708074994077 ], [ -148.73771972656283, 66.070379949994077 ], [ -148.736450195312841, 66.082220770306577 ], [ -148.740771484375188, 66.091864324994134 ], [ -148.7427978515625, 66.101752020306691 ], [ -148.734301757812545, 66.114447332806634 ], [ -148.719360351562329, 66.120721746869222 ], [ -148.697192382812489, 66.123651434369179 ], [ -148.612353515624818, 66.125067449994162 ], [ -148.593188476562489, 66.129217840619177 ], [ -148.573242187500142, 66.138617254681535 ], [ -148.562988281249915, 66.146918035931577 ], [ -148.556933593749989, 66.155340887494191 ], [ -148.552172851562517, 66.16400787968152 ], [ -148.545947265624847, 66.172723699994194 ], [ -148.523803710937415, 66.189325262494151 ], [ -148.485839843750085, 66.207538153119145 ], [ -148.442919921874761, 66.217474676556719 ], [ -148.406005859374886, 66.224676824994148 ], [ -148.330322265624915, 66.210711981244231 ], [ -148.292114257812614, 66.221210028119089 ], [ -148.282470703124972, 66.228290106244202 ], [ -148.261645507812631, 66.251581121869094 ], [ -148.245849609374829, 66.259295965619273 ], [ -148.226196289062273, 66.25954010624416 ], [ -148.134033203125028, 66.245794989056591 ], [ -148.113940429687631, 66.24848053593152 ], [ -148.099853515624659, 66.254584051556748 ], [ -148.073852539062727, 66.270086981244049 ], [ -148.059326171875256, 66.275213934369077 ], [ -148.027099609374716, 66.273553778119123 ], [ -147.967211914062517, 66.247577215619131 ], [ -147.936083984374818, 66.241034246869134 ], [ -147.89702148437496, 66.240790106244191 ], [ -147.878466796874932, 66.242865301556691 ], [ -147.861328125000256, 66.24848053593152 ], [ -147.853808593750216, 66.255243231244052 ], [ -147.848193359375131, 66.263983465619106 ], [ -147.84050292968729, 66.271551824994162 ], [ -147.826538085937614, 66.275213934368992 ], [ -147.770678710937347, 66.252313543744179 ], [ -147.738403320312614, 66.24840729374408 ], [ -147.724121093750142, 66.271795965619077 ], [ -147.709716796875, 66.290301824994103 ], [ -147.677172851562261, 66.287713934369108 ], [ -147.620483398437472, 66.268377996869063 ], [ -147.578979492187528, 66.265887762494131 ], [ -147.583618164062386, 66.283270574994191 ], [ -147.620483398437784, 66.32018463749408 ], [ -147.602294921875057, 66.339544989056549 ], [ -147.56059570312496, 66.347113348431577 ], [ -147.483935546875074, 66.350287176556577 ], [ -147.470507812500159, 66.355047918744035 ], [ -147.44255371093746, 66.368597723431634 ], [ -147.429003906250216, 66.371405340619077 ], [ -147.360107421874744, 66.365668035931762 ], [ -147.302490234374858, 66.36212799686912 ], [ -147.230151367187318, 66.356756903119162 ], [ -147.195971679687261, 66.364569403119262 ], [ -147.191040039062642, 66.36786530155652 ], [ -147.186694335937574, 66.372259832806634 ], [ -147.180053710937159, 66.375995184369131 ], [ -147.168627929687489, 66.377630926556577 ], [ -147.14848632812496, 66.376898504681648 ], [ -147.138232421875045, 66.377801824994123 ], [ -147.133837890624847, 66.381293035931662 ], [ -147.132006835937688, 66.395209051556591 ], [ -147.126953125000085, 66.402533270306577 ], [ -147.110278320312659, 66.415716864056563 ], [ -147.094531250000017, 66.421991278119066 ], [ -147.050048828124915, 66.417547918744091 ], [ -147.031494140624886, 66.419208074994188 ], [ -147.022021484375017, 66.42462799686902 ], [ -146.997314453124858, 66.446478582806662 ], [ -146.968749999999886, 66.465887762494134 ], [ -146.943847656249858, 66.473822332806577 ], [ -146.880297851562375, 66.474432684369077 ], [ -146.843798828124932, 66.479437567181591 ], [ -146.791625976562614, 66.502020574994006 ], [ -146.73491210937479, 66.512713934369245 ], [ -146.558105468750057, 66.527655340619134 ], [ -146.391967773437358, 66.546893621869131 ], [ -146.263964843750045, 66.542743231244089 ], [ -146.2489013671875, 66.545477606244035 ], [ -146.202807617187517, 66.563788153119077 ], [ -146.038818359375085, 66.572943426556634 ], [ -145.998657226562358, 66.581561590619089 ], [ -145.966064453124829, 66.601385809369148 ], [ -145.951049804687727, 66.604681707806662 ], [ -145.880053710937403, 66.597967840619148 ], [ -145.840014648437631, 66.609442449994063 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -152.041015624999943, 65.16535065311912 ], [ -152.046323037732577, 65.165763546213782 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.832885742187585, 66.610956121869108 ] ], [ [ -145.827101778638706, 66.610783485048586 ], [ -145.825439453125057, 66.610956121869108 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.436938476562545, 62.814813543744094 ], [ -138.448242187500028, 62.825751043744106 ], [ -138.461791992187727, 62.833319403119205 ], [ -138.478881835937216, 62.835956121869145 ], [ -138.548095703125114, 62.83473541874401 ], [ -138.563354492187756, 62.837665106244117 ], [ -138.650561523437233, 62.87665436405667 ], [ -138.675708007812574, 62.883807684369195 ], [ -138.706909179687472, 62.888006903119255 ], [ -138.803588867187443, 62.885809637494148 ], [ -138.819458007812614, 62.888861395306698 ], [ -138.864672851562659, 62.902899481244127 ], [ -138.912524414062432, 62.904608465619184 ], [ -139.0205078125, 62.923211981244208 ], [ -139.159057617187273, 62.926825262494063 ], [ -139.176025390624744, 62.931512762494187 ], [ -139.238403320312528, 62.96300690311913 ], [ -139.286914062500017, 62.972723699994113 ], [ -139.362915039062841, 62.986835028119145 ], [ -139.430957031250102, 63.001410223431598 ], [ -139.495776367187489, 63.014422918744188 ], [ -139.515747070312528, 63.026068426556641 ], [ -139.522827148437443, 63.040155340619094 ], [ -139.516479492187329, 63.050653387494123 ], [ -139.506103515624773, 63.060248114056549 ], [ -139.500610351562386, 63.071844793744077 ], [ -139.510253906250114, 63.107245184369042 ], [ -139.533129882812631, 63.134149481244215 ], [ -139.560180664062557, 63.158075262494123 ], [ -139.582568359375045, 63.184759832806648 ], [ -139.580615234374761, 63.206317449994074 ], [ -139.568408203125045, 63.227484442181677 ], [ -139.519165039062671, 63.252386785931698 ], [ -139.463867187499972, 63.270697332806677 ], [ -139.431762695312528, 63.29401276249417 ], [ -139.436279296874858, 63.315545965619187 ], [ -139.459472656250057, 63.333075262494127 ], [ -139.490283203124704, 63.344916082806591 ], [ -139.517993164062375, 63.349237371869158 ], [ -139.526123046874829, 63.35211823124407 ], [ -139.533447265624943, 63.358954168744226 ], [ -139.545043945312443, 63.372870184369049 ], [ -139.555053710937472, 63.37975494999413 ], [ -139.715454101562273, 63.464178778119148 ], [ -139.740234375, 63.500067449994077 ], [ -139.747680664062699, 63.541034246869152 ], [ -139.759082031249903, 63.565936590619145 ], [ -139.761840820312699, 63.600531317181655 ], [ -139.761035156249932, 63.612005926556591 ], [ -139.757324218750199, 63.619891668744081 ], [ -139.755541992187261, 63.628729559369077 ], [ -139.762133789062659, 63.639276434369066 ], [ -139.770751953125028, 63.649603582806606 ], [ -139.774951171875045, 63.657733465619096 ], [ -139.765136718749886, 63.680365301556613 ], [ -139.722583007812403, 63.705023504681748 ], [ -139.712939453124932, 63.722967840619226 ], [ -139.720874023437517, 63.743475653118942 ], [ -139.736450195312585, 63.76027252811911 ], [ -139.747070312499773, 63.776434637494141 ], [ -139.740234374999972, 63.794940496869245 ], [ -139.75297851562496, 63.818304754681641 ], [ -139.753833007812318, 63.831854559369162 ], [ -139.725952148437557, 63.863153387494037 ], [ -139.738085937500045, 63.878436590619167 ], [ -139.737670898437443, 63.89874909061907 ], [ -139.728930664062375, 63.919305731244151 ], [ -139.716308593749943, 63.935174871869165 ], [ -139.711596679687432, 63.944110418744103 ], [ -139.7098388671875, 63.965887762494091 ], [ -139.703002929687642, 63.97614166874412 ], [ -139.689331054687585, 63.985052801556598 ], [ -139.611572265624943, 64.011493231244188 ], [ -139.542480468750057, 64.025580145306606 ], [ -139.507495117187602, 64.027655340619106 ], [ -139.48442382812496, 64.034613348431577 ], [ -139.465820312500171, 64.051459051556478 ], [ -139.454223632812273, 64.071844793744177 ], [ -139.452270507812329, 64.089715887494151 ], [ -139.473315429687602, 64.123895574994123 ], [ -139.4942626953125, 64.144232489056634 ], [ -139.506274414062659, 64.153021551556549 ], [ -139.521118164062557, 64.161444403119091 ], [ -139.543090820312443, 64.170770574994222 ], [ -139.551757812500028, 64.177606512494094 ], [ -139.559741210937602, 64.201678778119103 ], [ -139.570727539062602, 64.207635809369123 ], [ -139.584350585937614, 64.211786199994023 ], [ -139.596850585937375, 64.219427801556662 ], [ -139.600341796874858, 64.226752020306634 ], [ -139.604125976562386, 64.245672918744177 ], [ -139.609863281250057, 64.254217840619063 ], [ -139.625488281250085, 64.261175848431606 ], [ -139.645874023437301, 64.262567449994179 ], [ -139.685595703125216, 64.260443426556492 ], [ -139.760424804687545, 64.26703522343162 ], [ -139.798266601562318, 64.275653387494188 ], [ -139.829589843750028, 64.288397528119063 ], [ -139.853198242187403, 64.310126043744205 ], [ -139.863085937500045, 64.315008856244106 ], [ -139.88041992187496, 64.315301824994179 ], [ -139.911010742187614, 64.304632879681606 ], [ -139.92583007812479, 64.301385809369179 ], [ -139.946166992187415, 64.304144598431606 ], [ -139.952807617187489, 64.312372137494151 ], [ -139.954467773437642, 64.322137762494066 ], [ -139.959960937500114, 64.329364324994131 ], [ -139.976196289062528, 64.332538153119131 ], [ -140.032763671875188, 64.330145574994063 ], [ -140.106079101562528, 64.33209869999412 ], [ -140.168627929687403, 64.339471746869108 ], [ -140.251831054687301, 64.357123114056691 ], [ -140.337939453125159, 64.378534246869037 ], [ -140.447387695312557, 64.390570379681662 ], [ -140.519409179687671, 64.402899481244035 ], [ -140.532763671875131, 64.418036199994091 ], [ -140.521044921875074, 64.445990301556563 ], [ -140.503955078124903, 64.460882879681677 ], [ -140.461425781250171, 64.482245184369091 ], [ -140.442553710937261, 64.496893621869219 ], [ -140.438476562500028, 64.507196356244094 ], [ -140.43999023437479, 64.519720770306719 ], [ -140.446289062500057, 64.530340887494191 ], [ -140.456469726562716, 64.534735418744063 ], [ -140.510058593750045, 64.532245184369074 ], [ -140.521044921874875, 64.527948309369179 ], [ -140.557373046875, 64.516180731244134 ], [ -140.578125, 64.513373114056648 ], [ -140.593383789062386, 64.518011785931662 ], [ -140.605029296874875, 64.530707098431662 ], [ -140.607421874999972, 64.538934637494094 ], [ -140.605346679687699, 64.546991278119037 ], [ -140.603637695312443, 64.558954168744151 ], [ -140.621020507812204, 64.572577215619134 ], [ -140.7044677734375, 64.559686590619066 ], [ -140.733325195312375, 64.569525457806691 ], [ -140.720092773437727, 64.588324285931535 ], [ -140.705371093750045, 64.603949285931549 ], [ -140.701586914062716, 64.617621160931563 ], [ -140.720947265624858, 64.630975653119137 ], [ -140.754028320312642, 64.633319403119089 ], [ -140.820434570312329, 64.616400457806719 ], [ -140.850634765624932, 64.624139715619208 ], [ -140.895019531249801, 64.654852606244191 ], [ -140.898071289062614, 64.66051666874408 ], [ -140.899047851562585, 64.667596746869094 ], [ -140.898437500000171, 64.68219635624412 ], [ -140.904785156250114, 64.687323309369106 ], [ -140.919238281250102, 64.690252996869106 ], [ -141.008300781249943, 64.692450262494091 ], [ -141.0421142578125, 64.704779364056563 ], [ -141.052978515625, 64.706732489056648 ], [ -141.067504882812557, 64.713641668744103 ], [ -141.066406249999886, 64.729681707806662 ], [ -141.059448242187329, 64.747919012494222 ], [ -141.05668945312479, 64.761297918744177 ], [ -141.086914062500028, 64.780951239056591 ], [ -141.186694335937545, 64.792840887494137 ], [ -141.200073242187472, 64.815936590619145 ], [ -141.181201171874989, 64.837103582806549 ], [ -141.121704101562727, 64.864081121868978 ], [ -141.103881835937671, 64.884222723431535 ], [ -141.153247070312631, 64.894842840619063 ], [ -141.203491210937273, 64.898504949994177 ], [ -141.208129882812386, 64.904901434369179 ], [ -141.203906250000074, 64.919134832806648 ], [ -141.193286132812432, 64.939471746869188 ], [ -141.188964843749773, 64.945672918744123 ], [ -141.1826171875, 64.952337957806648 ], [ -141.181518554687671, 64.95778229374406 ], [ -141.192993164062528, 64.959979559369103 ], [ -141.217529296874886, 64.960809637494222 ], [ -141.229858398437301, 64.95997955936916 ], [ -141.259936523437432, 64.951239324994177 ], [ -141.302783203125159, 64.945257879681577 ], [ -141.319580078125199, 64.93605377811906 ], [ -141.335693359374915, 64.92975494999412 ], [ -141.356372070312347, 64.932318426556705 ], [ -141.375122070312329, 64.940985418744177 ], [ -141.385058593750074, 64.953143621869074 ], [ -141.383471679687261, 64.967840887494162 ], [ -141.373779296875171, 64.97833893436902 ], [ -141.362915039062699, 64.987372137494077 ], [ -141.3577880859375, 64.997503973431606 ], [ -141.358447265624903, 65.010614324994151 ], [ -141.360473632812273, 65.022040106244162 ], [ -141.363891601562329, 65.032049871869191 ], [ -141.368579101562545, 65.040716864056549 ], [ -141.376464843750142, 65.05055573124406 ], [ -141.386352539062671, 65.059393621869063 ], [ -141.411621093749943, 65.076190496869145 ], [ -141.407275390625159, 65.092718817181577 ], [ -141.416430664062631, 65.101141668744063 ], [ -141.432421875000102, 65.104266668744003 ], [ -141.4716796875, 65.107440496869117 ], [ -141.515307617187688, 65.120868231244017 ], [ -141.578613281250142, 65.15094635624402 ], [ -141.594848632812386, 65.15368073124408 ], [ -141.617919921874915, 65.152899481244148 ], [ -141.625244140625114, 65.153753973431563 ], [ -141.632568359374829, 65.156561590619148 ], [ -141.646411132812631, 65.16491119999408 ], [ -141.653564453124943, 65.168036199994205 ], [ -141.689453125000227, 65.17872955936906 ], [ -141.744677734374818, 65.204046942181748 ], [ -141.774902343749886, 65.214056707806662 ], [ -141.805175781249773, 65.215521551556634 ], [ -141.866577148437699, 65.20844147343162 ], [ -141.884521484374972, 65.210809637494123 ], [ -141.898437499999829, 65.219671942181677 ], [ -141.923950195312273, 65.243280340619179 ], [ -141.970263671875159, 65.26532623905652 ], [ -141.984252929687614, 65.275824285931577 ], [ -141.991992187499932, 65.287176824994106 ], [ -142.004516601562358, 65.313348699994108 ], [ -142.012451171875142, 65.321893621869066 ], [ -142.041381835937301, 65.330145574994134 ], [ -142.051757812500028, 65.33131744999406 ], [ -142.083300781250216, 65.33014557499402 ], [ -142.191894531249858, 65.347772528119194 ], [ -142.239428710937545, 65.349139715619074 ], [ -142.323242187499744, 65.344256903119174 ], [ -142.40739746093746, 65.354022528119174 ], [ -142.451220703124903, 65.347723699994148 ], [ -142.465454101562329, 65.348578192181762 ], [ -142.481860351562375, 65.355536199994191 ], [ -142.511230468750114, 65.37897369999412 ], [ -142.526733398437415, 65.38873932499412 ], [ -142.553393554687489, 65.398456121869103 ], [ -142.583056640625159, 65.404730535931577 ], [ -142.613208007812574, 65.406439520306577 ], [ -142.641284179687403, 65.402460028119222 ], [ -142.662646484374932, 65.394720770306691 ], [ -142.725463867187614, 65.363959051556549 ], [ -142.743164062500227, 65.358465887494035 ], [ -142.779663085937671, 65.352606512494077 ], [ -142.8299560546875, 65.350043035931606 ], [ -142.953979492187358, 65.374042059369174 ], [ -143.031054687499989, 65.381219793744108 ], [ -143.099975585937557, 65.378119207806591 ], [ -143.165283203125142, 65.384588934369106 ], [ -143.265625000000171, 65.380438543744006 ], [ -143.287646484374818, 65.382342840619145 ], [ -143.311035156249886, 65.380438543744177 ], [ -143.354248046875085, 65.364276434369117 ], [ -143.376586914062528, 65.361444403119094 ], [ -143.430053710937699, 65.369330145306563 ], [ -143.506103515625028, 65.394598699994134 ], [ -143.529541015625, 65.405585028119134 ], [ -143.557666015624761, 65.428827215619151 ], [ -143.56767578124979, 65.432318426556705 ], [ -143.585937499999886, 65.434515692181648 ], [ -143.621826171874858, 65.444354559369188 ], [ -143.659667968750057, 65.448602606244094 ], [ -143.666015625000171, 65.454291082806591 ], [ -143.667846679687614, 65.46295807499412 ], [ -143.712329101562517, 65.530877996869137 ], [ -143.711059570312472, 65.541522528119131 ], [ -143.737963867187432, 65.547479559369037 ], [ -143.810717773437375, 65.589960028119151 ], [ -143.848559570312688, 65.597723699993963 ], [ -143.978930664062659, 65.589960028119123 ], [ -143.991748046875159, 65.59210846561912 ], [ -144.002001953124932, 65.597601629681662 ], [ -144.021362304687443, 65.612127996869191 ], [ -144.064379882812631, 65.62946198124402 ], [ -144.078295898437688, 65.636981512494046 ], [ -144.090502929687545, 65.647162176556506 ], [ -144.116259765625216, 65.676532293744046 ], [ -144.123706054687489, 65.690204168744103 ], [ -144.118774414062273, 65.723211981244148 ], [ -144.089038085937744, 65.750799871869049 ], [ -144.018481445312489, 65.789862371869134 ], [ -144.018310546874943, 65.798041082806648 ], [ -144.0216064453125, 65.804877020306591 ], [ -144.025927734374875, 65.811395574994151 ], [ -144.028808593750028, 65.818719793744052 ], [ -144.027343750000085, 65.82970612186908 ], [ -144.020751953125142, 65.836127020306549 ], [ -144.012133789062347, 65.841180731244222 ], [ -144.004443359375017, 65.84826080936908 ], [ -144.000854492187329, 65.857196356244145 ], [ -144.001586914062358, 65.865668035931719 ], [ -144.005371093750057, 65.87384674686912 ], [ -144.022583007812301, 65.89545319218162 ], [ -144.063964843749915, 65.932562567181691 ], [ -144.159301757812557, 65.962958074994134 ], [ -144.173828124999972, 65.97760651249412 ], [ -144.172729492187585, 65.986639715619162 ], [ -144.168017578124903, 66.001581121869137 ], [ -144.166992187499886, 66.011346746869108 ], [ -144.175219726562602, 66.019159246869052 ], [ -144.194091796875057, 66.024359442181492 ], [ -144.303710937499829, 66.036200262494106 ], [ -144.342211914062659, 66.046210028119077 ], [ -144.358764648437443, 66.06666901249416 ], [ -144.366137695312602, 66.087591864056591 ], [ -144.38420410156246, 66.103705145306634 ], [ -144.427661132812403, 66.124335028119162 ], [ -144.492431640625057, 66.137958074994074 ], [ -144.524047851562244, 66.149359442181705 ], [ -144.53752441406246, 66.169378973431648 ], [ -144.542651367187375, 66.181097723431733 ], [ -144.555224609375244, 66.18488190311902 ], [ -144.570727539062602, 66.185809637494032 ], [ -144.58500976562479, 66.189520574994219 ], [ -144.653125, 66.221795965619123 ], [ -144.660400390624886, 66.227362371869205 ], [ -144.662768554687659, 66.230658270306662 ], [ -144.665649414062443, 66.237811590619103 ], [ -144.667846679687301, 66.241034246869162 ], [ -144.685302734374829, 66.258734442181648 ], [ -144.696777343749972, 66.265643621869131 ], [ -144.723315429687574, 66.270331121869049 ], [ -144.733642578125142, 66.275653387493989 ], [ -144.752929687500114, 66.292596746869009 ], [ -144.765747070312301, 66.300482489056677 ], [ -144.811279296874886, 66.30934479374416 ], [ -144.829711914062443, 66.32350494999416 ], [ -144.86333007812479, 66.363153387494137 ], [ -144.892382812499989, 66.375506903119103 ], [ -144.892700195312614, 66.384833074994006 ], [ -144.886962890625114, 66.402411199994106 ], [ -144.894824218750159, 66.411737371869037 ], [ -144.913085937499943, 66.415716864056677 ], [ -144.947802734374989, 66.419208074994074 ], [ -144.987182617187642, 66.436224676556421 ], [ -145.060180664062642, 66.44891998905662 ], [ -145.103027343749915, 66.471747137494177 ], [ -145.165942382812517, 66.485052801556634 ], [ -145.194824218750142, 66.494940496869077 ], [ -145.233276367187329, 66.510858465619179 ], [ -145.277343750000199, 66.534979559369006 ], [ -145.290454101562574, 66.546454168744063 ], [ -145.301074218749847, 66.56642487186916 ], [ -145.326904296874829, 66.578558660931733 ], [ -145.358569335937716, 66.584051824994077 ], [ -145.452880859374886, 66.581561590619202 ], [ -145.510498046875199, 66.57970612186908 ], [ -145.5347900390625, 66.582879949994094 ], [ -145.62028808593729, 66.592718817181662 ], [ -145.720825195312273, 66.607611395306691 ], [ -145.827101778638706, 66.610783485048586 ] ], [ [ -138.432421875000102, 62.811224676556471 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.413134765625131, 62.801288153119216 ], [ -138.4256591796875, 62.806341864056719 ], [ -138.431888362647385, 62.811020492816546 ] ], [ [ -138.431888362647385, 62.811020492816546 ], [ -138.412646484375074, 62.803656317181577 ], [ -138.401709573301076, 62.800728094671811 ] ], [ [ -138.401709573301076, 62.800728094671811 ], [ -138.394409179687699, 62.79877350468162 ], [ -138.376098632812557, 62.796820379681655 ], [ -138.356201171875171, 62.797430731244013 ], [ -138.201538085937386, 62.827167059369231 ], [ -138.147753906249932, 62.829706121869201 ], [ -138.038134765625045, 62.821234442181563 ], [ -137.941455078125102, 62.814569403119037 ], [ -137.878344726562347, 62.802997137494067 ], [ -137.847583007812403, 62.801947332806698 ], [ -137.817138671874943, 62.805780340619208 ], [ -137.754077148437602, 62.824969793744181 ], [ -137.721679687499773, 62.828973699994172 ], [ -137.633959960937204, 62.827215887494134 ], [ -137.574633789062489, 62.814813543744009 ], [ -137.554443359374943, 62.815130926556634 ], [ -137.518798828125028, 62.821405340619194 ], [ -137.499560546874648, 62.822284246869039 ], [ -137.484545898437318, 62.818548895306456 ], [ -137.454711914062301, 62.804315496869208 ], [ -137.350512695312631, 62.773871160931691 ], [ -137.326293945312784, 62.773797918744123 ], [ -137.30827636718746, 62.767523504681648 ], [ -137.294116210937318, 62.739081121869084 ], [ -137.275268554687443, 62.723407293744131 ], [ -137.242236328125074, 62.706415106244044 ], [ -137.206665039062528, 62.695624090619226 ], [ -137.138598632812574, 62.685565496869152 ], [ -137.071582031249875, 62.657342840619201 ], [ -137.026977539062244, 62.648309637494116 ], [ -136.978808593749733, 62.629217840619233 ], [ -136.903686523437528, 62.609442449993914 ], [ -136.876513671874847, 62.598895574994152 ], [ -136.852587890625216, 62.58466217655662 ], [ -136.804565429687472, 62.545843817181783 ], [ -136.755908203125131, 62.506537176556634 ], [ -136.742309570312386, 62.499579168744035 ], [ -136.738769531250284, 62.496771551556655 ], [ -136.739062500000131, 62.49054596561912 ], [ -136.740283203124704, 62.483514715619066 ], [ -136.739184570312204, 62.478461004681506 ], [ -136.732836914062631, 62.473407293744145 ], [ -136.673583984375057, 62.450384832806492 ], [ -136.663452148437813, 62.444891668744127 ], [ -136.621704101562699, 62.412616278119138 ], [ -136.598193359374818, 62.401068426556655 ], [ -136.548999023437545, 62.39472077030667 ], [ -136.532836914062614, 62.390008856244002 ], [ -136.505859375000171, 62.376654364056606 ], [ -136.504272460937585, 62.374139715619243 ], [ -136.503588867187375, 62.370184637494184 ], [ -136.502368164062688, 62.365838934369236 ], [ -136.498950195312602, 62.362372137493971 ], [ -136.490405273437432, 62.358417059369081 ], [ -136.48271484374996, 62.356561590619265 ], [ -136.464233398437472, 62.355536199994162 ], [ -136.453247070312671, 62.356952215619138 ], [ -136.444213867187443, 62.360052801556535 ], [ -136.434985351562688, 62.361835028119039 ], [ -136.423583984375, 62.358954168744098 ], [ -136.404711914062489, 62.350531317181677 ], [ -136.399658203125, 62.349310614056478 ], [ -136.393603515625131, 62.344989324994032 ], [ -136.38139648437496, 62.325751043744184 ], [ -136.375781249999818, 62.32140534061913 ], [ -136.341796875000199, 62.31471588749411 ], [ -136.350634765625244, 62.299505926556755 ], [ -136.389770507812614, 62.27301666874407 ], [ -136.383911132812415, 62.266376043744096 ], [ -136.355346679687642, 62.249139715619208 ], [ -136.344726562499773, 62.245672918744084 ], [ -136.341113281250102, 62.241400457806741 ], [ -136.345458984375, 62.231634832806733 ], [ -136.355590820312756, 62.214960028119158 ], [ -136.355834960937557, 62.193060614056641 ], [ -136.359008789062585, 62.177679754681506 ], [ -136.369018554687329, 62.166620184369172 ], [ -136.389770507812557, 62.157538153119091 ], [ -136.370898437500273, 62.151678778119106 ], [ -136.331787109374801, 62.145770574994103 ], [ -136.313720703125171, 62.139520574994044 ], [ -136.304931640625, 62.13202545780657 ], [ -136.288696289062557, 62.112982489056655 ], [ -136.279589843750131, 62.109149481243975 ], [ -136.266845703125057, 62.112250067181542 ], [ -136.261596679687642, 62.119330145306719 ], [ -136.257739257812688, 62.126410223431527 ], [ -136.248901367187614, 62.129584051556549 ], [ -136.232421874999972, 62.129217840619198 ], [ -136.222778320312443, 62.127142645306584 ], [ -136.215869140625159, 62.122088934369224 ], [ -136.207885742187784, 62.112860418744127 ], [ -136.1966552734375, 62.107440496869266 ], [ -136.182299804687318, 62.109198309369049 ], [ -136.156372070312329, 62.119696356244191 ], [ -136.147875976562204, 62.118670965619117 ], [ -136.134814453125188, 62.099676824994134 ], [ -136.121948242187216, 62.094842840619101 ], [ -136.057055664062688, 62.094842840619073 ], [ -136.041137695312443, 62.091742254681684 ], [ -136.023120117187432, 62.078070379681577 ], [ -136.004394531250142, 62.073016668744188 ], [ -135.991577148437443, 62.063910223431613 ], [ -135.98503417968746, 62.061346746869091 ], [ -135.957763671874858, 62.06134674686912 ], [ -135.952880859374829, 62.062323309369148 ], [ -135.937548828125074, 62.067645574994117 ], [ -135.929809570312699, 62.068182684369098 ], [ -135.929199218749716, 62.065375067181634 ], [ -135.920825195312432, 62.051629949994016 ], [ -135.916796874999989, 62.047674871869184 ], [ -135.887451171875142, 62.037713934369201 ], [ -135.810961914062318, 62.024359442181634 ], [ -135.779589843749818, 62.02655670780657 ], [ -135.706787109375, 62.057318426556513 ], [ -135.676562500000102, 62.061346746869177 ], [ -135.614746093749886, 62.062860418744101 ], [ -135.567919921874818, 62.05683014530657 ], [ -135.560546874999886, 62.053900457806613 ], [ -135.55961914062496, 62.050360418744319 ], [ -135.561279296874972, 62.037787176556478 ], [ -135.560546874999829, 62.034002996869191 ], [ -135.504809570312602, 62.006170965619212 ], [ -135.4415283203125, 61.992132879681549 ], [ -135.313476562500398, 61.978778387494152 ], [ -135.285815429687716, 61.971014715619049 ], [ -135.232299804687642, 61.948675848431662 ], [ -135.204223632812585, 61.944037176556506 ], [ -135.145996093749829, 61.946600653119283 ], [ -135.128540039062273, 61.944037176556591 ], [ -135.123779296875057, 61.934588934369039 ], [ -135.119384765624915, 61.927923895306606 ], [ -135.114257812499773, 61.924139715619113 ], [ -135.106494140625301, 61.924017645306613 ], [ -135.094409179687602, 61.929022528119155 ], [ -135.087524414062671, 61.930365301556684 ], [ -135.014648437500227, 61.932806707806648 ], [ -134.990527343749932, 61.930438543744025 ], [ -134.972412109374943, 61.924017645306499 ], [ -134.952270507812756, 61.911444403119148 ], [ -134.935961914062318, 61.89496491093152 ], [ -134.928833007812642, 61.876654364056769 ], [ -134.940722656249818, 61.853045965619089 ], [ -134.965698242187244, 61.841669012494151 ], [ -134.984008789062443, 61.827582098431641 ], [ -134.976318359374915, 61.795721746869226 ], [ -134.954516601562318, 61.766913153119219 ], [ -134.877368164062432, 61.689642645306463 ], [ -134.855224609374972, 61.648553778119037 ], [ -134.864746093749801, 61.625848699994158 ], [ -134.890136718750114, 61.604559637493935 ], [ -134.915527343749687, 61.567889715619046 ] ], [ [ -138.398193359374801, 62.80055573124401 ], [ -138.401709573301076, 62.800728094671811 ] ] ] } } diff --git a/examples/data/us-state-capitals.geojson b/examples/data/us-state-capitals.geojson index bb4af65..baefc08 100644 --- a/examples/data/us-state-capitals.geojson +++ b/examples/data/us-state-capitals.geojson @@ -3,55 +3,55 @@ "name": "us-state-capitals", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ -{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, -{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, -{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0, "random": 19 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, -{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, -{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, -{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, -{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, -{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, -{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, -{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": null, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, -{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": null, "random": 12 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, -{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0, "random": 2 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, -{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, -{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, -{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0, "random": 7 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, -{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0, "random": 6 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, -{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, -{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, -{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": null, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, -{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, -{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": null, "random": 20 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, -{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": null, "random": 14 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, -{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, -{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, -{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0, "random": 8 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, -{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, -{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0, "random": 6 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, -{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, -{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, -{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, -{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, -{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, -{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, -{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, -{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0, "random": 15 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, -{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, -{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, -{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, -{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0, "random": 11 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, -{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0, "random": 10 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, -{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0, "random": 5 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, -{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0, "random": 14 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, -{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0, "random": 18 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, -{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, -{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0, "random": 9 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, -{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0, "random": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, -{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0, "random": 17 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, -{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0, "random": 3 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, -{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0, "random": 1 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } +{ "type": "Feature", "properties": { "name": "PHOENIX", "state": "AZ", "population": 983403.0 }, "geometry": { "type": "Point", "coordinates": [ -112.068832, 33.544124 ] } }, +{ "type": "Feature", "properties": { "name": "SACRAMENTO", "state": "CA", "population": 369364.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -121.46627, 38.566454 ] } }, +{ "type": "Feature", "properties": { "name": "CARSON CITY", "state": "NV", "population": 40443.0 }, "geometry": { "type": "Point", "coordinates": [ -119.726785, 39.151708 ] } }, +{ "type": "Feature", "properties": { "name": "SALEM", "state": "OR", "population": 107786.0 }, "geometry": { "type": "Point", "coordinates": [ -123.02159, 44.923198 ] } }, +{ "type": "Feature", "properties": { "name": "OLYMPIA", "state": "WA", "population": 33840.0 }, "geometry": { "type": "Point", "coordinates": [ -122.892473, 47.04088 ] } }, +{ "type": "Feature", "properties": { "name": "SALT LAKE CITY", "state": "UT", "population": 159936.0 }, "geometry": { "type": "Point", "coordinates": [ -111.928412, 40.777089 ] } }, +{ "type": "Feature", "properties": { "name": "BOISE", "state": "ID", "population": 125738.0 }, "geometry": { "type": "Point", "coordinates": [ -116.226878, 43.606083 ] } }, +{ "type": "Feature", "properties": { "name": "HELENA", "state": "MT", "population": 24346.0 }, "geometry": { "type": "Point", "coordinates": [ -112.019449, 46.596902 ] } }, +{ "type": "Feature", "properties": { "name": "SANTA FE", "state": "NM", "population": 55993.0 }, "geometry": { "type": "Point", "coordinates": [ -105.954486, 35.67763 ] } }, +{ "type": "Feature", "properties": { "name": "DENVER", "state": "CO", "population": 467610.0 }, "geometry": { "type": "Point", "coordinates": [ -104.874057, 39.762974 ] } }, +{ "type": "Feature", "properties": { "name": "CHEYENNE", "state": "WY", "population": 50008.0 }, "geometry": { "type": "Point", "coordinates": [ -104.792418, 41.146055 ] } }, +{ "type": "Feature", "properties": { "name": "BISMARCK", "state": "ND", "population": 49256.0 }, "geometry": { "type": "Point", "coordinates": [ -100.766879, 46.804885 ] } }, +{ "type": "Feature", "properties": { "name": "AUSTIN", "state": "TX", "population": 465576.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -97.751118, 30.304832 ] } }, +{ "type": "Feature", "properties": { "name": "BATON ROUGE", "state": "LA", "population": 219531.0 }, "geometry": { "type": "Point", "coordinates": [ -91.122909, 30.451254 ] } }, +{ "type": "Feature", "properties": { "name": "JACKSON", "state": "MS", "population": 196594.0 }, "geometry": { "type": "Point", "coordinates": [ -90.20889, 32.319717 ] } }, +{ "type": "Feature", "properties": { "name": "MONTGOMERY", "state": "AL", "population": 187106.0 }, "geometry": { "type": "Point", "coordinates": [ -86.283332, 32.352929 ] } }, +{ "type": "Feature", "properties": { "name": "TALLAHASSEE", "state": "FL", "population": 124773.0 }, "geometry": { "type": "Point", "coordinates": [ -84.281239, 30.457057 ] } }, +{ "type": "Feature", "properties": { "name": "OKLAHOMA CITY", "state": "OK", "population": 444730.0 }, "geometry": { "type": "Point", "coordinates": [ -97.513703, 35.467086 ] } }, +{ "type": "Feature", "properties": { "name": "LINCOLN", "state": "NE", "population": 191972.0 }, "geometry": { "type": "Point", "coordinates": [ -96.687064, 40.816673 ] } }, +{ "type": "Feature", "properties": { "name": "LITTLE ROCK", "state": "AR", "population": 175781.0 }, "geometry": { "type": "Point", "coordinates": [ -92.355358, 34.723185 ] } }, +{ "type": "Feature", "properties": { "name": "TOPEKA", "state": "KS", "population": 119883.0 }, "geometry": { "type": "Point", "coordinates": [ -95.691528, 39.037792 ] } }, +{ "type": "Feature", "properties": { "name": "DES MOINES", "state": "IA", "population": 193187.0 }, "geometry": { "type": "Point", "coordinates": [ -93.619161, 41.577269 ] } }, +{ "type": "Feature", "properties": { "name": "PIERRE", "state": "SD", "population": 12906.0 }, "geometry": { "type": "Point", "coordinates": [ -100.320389, 44.374745 ] } }, +{ "type": "Feature", "properties": { "name": "ST. PAUL", "state": "MN", "population": 272235.0 }, "geometry": { "type": "Point", "coordinates": [ -93.105553, 44.949202 ] } }, +{ "type": "Feature", "properties": { "name": "JEFFERSON CITY", "state": "MO", "population": 35494.0 }, "geometry": { "type": "Point", "coordinates": [ -92.19244, 38.572222 ] } }, +{ "type": "Feature", "properties": { "name": "SPRINGFIELD", "state": "IL", "population": 105227.0 }, "geometry": { "type": "Point", "coordinates": [ -89.649323, 39.789435 ] } }, +{ "type": "Feature", "properties": { "name": "NASHVILLE-DAVIDSON", "state": "TN", "population": 488518.0 }, "geometry": { "type": "Point", "coordinates": [ -86.792119, 36.172662 ] } }, +{ "type": "Feature", "properties": { "name": "ATLANTA", "state": "GA", "population": 394016.99999999994 }, "geometry": { "type": "Point", "coordinates": [ -84.42182, 33.763174 ] } }, +{ "type": "Feature", "properties": { "name": "INDIANAPOLIS", "state": "IN", "population": 731321.0 }, "geometry": { "type": "Point", "coordinates": [ -86.145143, 39.775556 ] } }, +{ "type": "Feature", "properties": { "name": "FRANKFORT", "state": "KY", "population": 25968.0 }, "geometry": { "type": "Point", "coordinates": [ -84.86528, 38.1918 ] } }, +{ "type": "Feature", "properties": { "name": "MADISON", "state": "WI", "population": 191262.0 }, "geometry": { "type": "Point", "coordinates": [ -89.385018, 43.079577 ] } }, +{ "type": "Feature", "properties": { "name": "LANSING", "state": "MI", "population": 127321.0 }, "geometry": { "type": "Point", "coordinates": [ -84.554881, 42.710385 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBIA", "state": "SC", "population": 98052.0 }, "geometry": { "type": "Point", "coordinates": [ -80.890176, 34.035245 ] } }, +{ "type": "Feature", "properties": { "name": "COLUMBUS", "state": "OH", "population": 632958.00000000012 }, "geometry": { "type": "Point", "coordinates": [ -82.986294, 39.988675 ] } }, +{ "type": "Feature", "properties": { "name": "CHARLESTON", "state": "WV", "population": 57287.0 }, "geometry": { "type": "Point", "coordinates": [ -81.63102, 38.35131 ] } }, +{ "type": "Feature", "properties": { "name": "RALEIGH", "state": "NC", "population": 207951.0 }, "geometry": { "type": "Point", "coordinates": [ -78.659617, 35.821907 ] } }, +{ "type": "Feature", "properties": { "name": "RICHMOND", "state": "VA", "population": 203056.0 }, "geometry": { "type": "Point", "coordinates": [ -77.476216, 37.529292 ] } }, +{ "type": "Feature", "properties": { "name": "ANNAPOLIS", "state": "MD", "population": 33187.0 }, "geometry": { "type": "Point", "coordinates": [ -76.504685, 38.970684 ] } }, +{ "type": "Feature", "properties": { "name": "DOVER", "state": "DE", "population": 27529.0 }, "geometry": { "type": "Point", "coordinates": [ -75.51704, 39.158659 ] } }, +{ "type": "Feature", "properties": { "name": "HARRISBURG", "state": "PA", "population": 52376.0 }, "geometry": { "type": "Point", "coordinates": [ -76.87772, 40.276356 ] } }, +{ "type": "Feature", "properties": { "name": "TRENTON", "state": "NJ", "population": 88675.0 }, "geometry": { "type": "Point", "coordinates": [ -74.763201, 40.223934 ] } }, +{ "type": "Feature", "properties": { "name": "HARTFORD", "state": "CT", "population": 139739.0 }, "geometry": { "type": "Point", "coordinates": [ -72.684865, 41.765811 ] } }, +{ "type": "Feature", "properties": { "name": "PROVIDENCE", "state": "RI", "population": 160728.0 }, "geometry": { "type": "Point", "coordinates": [ -71.422131, 41.823838 ] } }, +{ "type": "Feature", "properties": { "name": "ALBANY", "state": "NY", "population": 101082.0 }, "geometry": { "type": "Point", "coordinates": [ -73.799814, 42.666873 ] } }, +{ "type": "Feature", "properties": { "name": "CONCORD", "state": "NH", "population": 36006.0 }, "geometry": { "type": "Point", "coordinates": [ -71.559666, 43.231041 ] } }, +{ "type": "Feature", "properties": { "name": "MONTPELIER", "state": "VT", "population": 8247.0 }, "geometry": { "type": "Point", "coordinates": [ -72.57217, 44.265784 ] } }, +{ "type": "Feature", "properties": { "name": "BOSTON", "state": "MA", "population": 574283.0 }, "geometry": { "type": "Point", "coordinates": [ -71.091375, 42.315041 ] } }, +{ "type": "Feature", "properties": { "name": "AUGUSTA", "state": "ME", "population": 21325.0 }, "geometry": { "type": "Point", "coordinates": [ -69.735036, 44.334375 ] } }, +{ "type": "Feature", "properties": { "name": "JUNEAU", "state": "AK", "population": 31973.0 }, "geometry": { "type": "Point", "coordinates": [ -134.417775954257877, 58.301460591129846 ] } }, +{ "type": "Feature", "properties": { "name": "HONOLULU", "state": "HI", "population": 350000.0 }, "geometry": { "type": "Point", "coordinates": [ -157.855988120124522, 21.304382732803635 ] } } ] } diff --git a/examples/data/us-states.geojson b/examples/data/us-states.geojson index d730905..a229aa0 100644 --- a/examples/data/us-states.geojson +++ b/examples/data/us-states.geojson @@ -2,57 +2,57 @@ "type": "FeatureCollection", "name": "us-states", "features": [ -{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65, "random": 199.257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264, "random": 29.842 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, -{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05, "random": 170.265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43, "random": 181.51 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7, "random": 141.826 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, -{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33, "random": 88.298 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, -{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1, "random": 182.967 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, -{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3, "random": 138.475 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, -{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0, "random": 28.803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, -{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4, "random": 45.751 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, -{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5, "random": 65.557 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, -{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1, "random": 106.84 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, -{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15, "random": 74.913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5, "random": 178.525 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, -{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7, "random": 13.742 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, -{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81, "random": 179.225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, -{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09, "random": 49.511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, -{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0, "random": 192.724 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, -{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0, "random": 35.814 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, -{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04, "random": 56.553 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, -{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3, "random": 82.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, -{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2, "random": 14.428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, -{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9, "random": 196.75 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, -{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14, "random": 136.818 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, -{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5, "random": 123.31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, -{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26, "random": 58.699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, -{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858, "random": 97.841 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97, "random": 175.107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, -{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8, "random": 155.507 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, -{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0, "random": 6.639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, -{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0, "random": 74.193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, -{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16, "random": 7.77 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3, "random": 78.319 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2, "random": 34.866 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, -{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null, "random": 141.077 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, -{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9, "random": 48.618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, -{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22, "random": 56.464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, -{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33, "random": 144.097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, -{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3, "random": 187.541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, -{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0, "random": 32.239 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, -{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4, "random": 59.665 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, -{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07, "random": 83.763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, -{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08, "random": 57.656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, -{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07, "random": 9.968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, -{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3, "random": 138.132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, -{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73, "random": 58.675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, -{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5, "random": 111.47 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, -{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6, "random": 152.044 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, -{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06, "random": 51.709 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, -{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2, "random": 117.416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, -{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851, "random": 139.916 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, -{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0, "random": 199.591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } +{ "type": "Feature", "id": "01", "properties": { "name": "Alabama", "density": 94.65 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.359296, 35.00118 ], [ -85.606675, 34.984749 ], [ -85.431413, 34.124869 ], [ -85.184951, 32.859696 ], [ -85.069935, 32.580372 ], [ -84.960397, 32.421541 ], [ -85.004212, 32.322956 ], [ -84.889196, 32.262709 ], [ -85.058981, 32.13674 ], [ -85.053504, 32.01077 ], [ -85.141136, 31.840985 ], [ -85.042551, 31.539753 ], [ -85.113751, 31.27686 ], [ -85.004212, 31.003013 ], [ -85.497137, 30.997536 ], [ -87.600282, 30.997536 ], [ -87.633143, 30.86609 ], [ -87.408589, 30.674397 ], [ -87.446927, 30.510088 ], [ -87.37025, 30.427934 ], [ -87.518128, 30.280057 ], [ -87.655051, 30.247195 ], [ -87.90699, 30.411504 ], [ -87.934375, 30.657966 ], [ -88.011052, 30.685351 ], [ -88.10416, 30.499135 ], [ -88.137022, 30.318396 ], [ -88.394438, 30.367688 ], [ -88.471115, 31.895754 ], [ -88.241084, 33.796253 ], [ -88.098683, 34.891641 ], [ -88.202745, 34.995703 ], [ -87.359296, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "02", "properties": { "name": "Alaska", "density": 1.264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -131.602021, 55.117982 ], [ -131.569159, 55.28229 ], [ -131.355558, 55.183705 ], [ -131.38842, 55.01392 ], [ -131.645836, 55.035827 ], [ -131.602021, 55.117982 ] ] ], [ [ [ -131.832052, 55.42469 ], [ -131.645836, 55.304197 ], [ -131.749898, 55.128935 ], [ -131.832052, 55.189182 ], [ -131.832052, 55.42469 ] ] ], [ [ [ -132.976733, 56.437924 ], [ -132.735747, 56.459832 ], [ -132.631685, 56.421493 ], [ -132.664547, 56.273616 ], [ -132.878148, 56.240754 ], [ -133.069841, 56.333862 ], [ -132.976733, 56.437924 ] ] ], [ [ [ -133.595627, 56.350293 ], [ -133.162949, 56.317431 ], [ -133.05341, 56.125739 ], [ -132.620732, 55.912138 ], [ -132.472854, 55.780691 ], [ -132.4619, 55.671152 ], [ -132.357838, 55.649245 ], [ -132.341408, 55.506844 ], [ -132.166146, 55.364444 ], [ -132.144238, 55.238474 ], [ -132.029222, 55.276813 ], [ -131.97993, 55.178228 ], [ -131.958022, 54.789365 ], [ -132.029222, 54.701734 ], [ -132.308546, 54.718165 ], [ -132.385223, 54.915335 ], [ -132.483808, 54.898904 ], [ -132.686455, 55.046781 ], [ -132.746701, 54.997489 ], [ -132.916486, 55.046781 ], [ -132.889102, 54.898904 ], [ -132.73027, 54.937242 ], [ -132.626209, 54.882473 ], [ -132.675501, 54.679826 ], [ -132.867194, 54.701734 ], [ -133.157472, 54.95915 ], [ -133.239626, 55.090597 ], [ -133.223195, 55.22752 ], [ -133.453227, 55.216566 ], [ -133.453227, 55.320628 ], [ -133.277964, 55.331582 ], [ -133.102702, 55.42469 ], [ -133.17938, 55.588998 ], [ -133.387503, 55.62186 ], [ -133.420365, 55.884753 ], [ -133.497042, 56.0162 ], [ -133.639442, 55.923092 ], [ -133.694212, 56.070969 ], [ -133.546335, 56.142169 ], [ -133.666827, 56.311955 ], [ -133.595627, 56.350293 ] ] ], [ [ [ -133.738027, 55.556137 ], [ -133.546335, 55.490413 ], [ -133.414888, 55.572568 ], [ -133.283441, 55.534229 ], [ -133.420365, 55.386352 ], [ -133.633966, 55.430167 ], [ -133.738027, 55.556137 ] ] ], [ [ [ -133.907813, 56.930849 ], [ -134.050213, 57.029434 ], [ -133.885905, 57.095157 ], [ -133.343688, 57.002049 ], [ -133.102702, 57.007526 ], [ -132.932917, 56.82131 ], [ -132.620732, 56.667956 ], [ -132.653593, 56.55294 ], [ -132.817901, 56.492694 ], [ -133.042456, 56.520078 ], [ -133.201287, 56.448878 ], [ -133.420365, 56.492694 ], [ -133.66135, 56.448878 ], [ -133.710643, 56.684386 ], [ -133.688735, 56.837741 ], [ -133.869474, 56.843218 ], [ -133.907813, 56.930849 ] ] ], [ [ [ -134.115936, 56.48174 ], [ -134.25286, 56.558417 ], [ -134.400737, 56.722725 ], [ -134.417168, 56.848695 ], [ -134.296675, 56.908941 ], [ -134.170706, 56.848695 ], [ -134.143321, 56.952757 ], [ -133.748981, 56.772017 ], [ -133.710643, 56.596755 ], [ -133.847566, 56.574848 ], [ -133.935197, 56.377678 ], [ -133.836612, 56.322908 ], [ -133.957105, 56.092877 ], [ -134.110459, 56.142169 ], [ -134.132367, 55.999769 ], [ -134.230952, 56.070969 ], [ -134.291198, 56.350293 ], [ -134.115936, 56.48174 ] ] ], [ [ [ -134.636246, 56.28457 ], [ -134.669107, 56.169554 ], [ -134.806031, 56.235277 ], [ -135.178463, 56.67891 ], [ -135.413971, 56.810356 ], [ -135.331817, 56.914418 ], [ -135.424925, 57.166357 ], [ -135.687818, 57.369004 ], [ -135.419448, 57.566174 ], [ -135.298955, 57.48402 ], [ -135.063447, 57.418296 ], [ -134.849846, 57.407343 ], [ -134.844369, 57.248511 ], [ -134.636246, 56.728202 ], [ -134.636246, 56.28457 ] ] ], [ [ [ -134.712923, 58.223407 ], [ -134.373353, 58.14673 ], [ -134.176183, 58.157683 ], [ -134.187137, 58.081006 ], [ -133.902336, 57.807159 ], [ -134.099505, 57.850975 ], [ -134.148798, 57.757867 ], [ -133.935197, 57.615466 ], [ -133.869474, 57.363527 ], [ -134.083075, 57.297804 ], [ -134.154275, 57.210173 ], [ -134.499322, 57.029434 ], [ -134.603384, 57.034911 ], [ -134.6472, 57.226604 ], [ -134.575999, 57.341619 ], [ -134.608861, 57.511404 ], [ -134.729354, 57.719528 ], [ -134.707446, 57.829067 ], [ -134.784123, 58.097437 ], [ -134.91557, 58.212453 ], [ -134.953908, 58.409623 ], [ -134.712923, 58.223407 ] ] ], [ [ [ -135.857603, 57.330665 ], [ -135.715203, 57.330665 ], [ -135.567326, 57.149926 ], [ -135.633049, 57.023957 ], [ -135.857603, 56.996572 ], [ -135.824742, 57.193742 ], [ -135.857603, 57.330665 ] ] ], [ [ [ -136.279328, 58.206976 ], [ -135.978096, 58.201499 ], [ -135.780926, 58.28913 ], [ -135.496125, 58.168637 ], [ -135.64948, 58.037191 ], [ -135.59471, 57.987898 ], [ -135.45231, 58.135776 ], [ -135.107263, 58.086483 ], [ -134.91557, 57.976944 ], [ -135.025108, 57.779775 ], [ -134.937477, 57.763344 ], [ -134.822462, 57.500451 ], [ -135.085355, 57.462112 ], [ -135.572802, 57.675713 ], [ -135.556372, 57.456635 ], [ -135.709726, 57.369004 ], [ -135.890465, 57.407343 ], [ -136.000004, 57.544266 ], [ -136.208128, 57.637374 ], [ -136.366959, 57.829067 ], [ -136.569606, 57.916698 ], [ -136.558652, 58.075529 ], [ -136.421728, 58.130299 ], [ -136.377913, 58.267222 ], [ -136.279328, 58.206976 ] ] ], [ [ [ -147.079854, 60.200582 ], [ -147.501579, 59.948643 ], [ -147.53444, 59.850058 ], [ -147.874011, 59.784335 ], [ -147.80281, 59.937689 ], [ -147.435855, 60.09652 ], [ -147.205824, 60.271782 ], [ -147.079854, 60.200582 ] ] ], [ [ [ -147.561825, 60.578491 ], [ -147.616594, 60.370367 ], [ -147.758995, 60.156767 ], [ -147.956165, 60.227967 ], [ -147.791856, 60.474429 ], [ -147.561825, 60.578491 ] ] ], [ [ [ -147.786379, 70.245291 ], [ -147.682318, 70.201475 ], [ -147.162008, 70.15766 ], [ -146.888161, 70.185044 ], [ -146.510252, 70.185044 ], [ -146.099482, 70.146706 ], [ -145.858496, 70.168614 ], [ -145.622988, 70.08646 ], [ -145.195787, 69.993352 ], [ -144.620708, 69.971444 ], [ -144.461877, 70.026213 ], [ -144.078491, 70.059075 ], [ -143.914183, 70.130275 ], [ -143.497935, 70.141229 ], [ -143.503412, 70.091936 ], [ -143.25695, 70.119321 ], [ -142.747594, 70.042644 ], [ -142.402547, 69.916674 ], [ -142.079408, 69.856428 ], [ -142.008207, 69.801659 ], [ -141.712453, 69.790705 ], [ -141.433129, 69.697597 ], [ -141.378359, 69.63735 ], [ -141.208574, 69.686643 ], [ -141.00045, 69.648304 ], [ -141.00045, 60.304644 ], [ -140.53491, 60.22249 ], [ -140.474664, 60.310121 ], [ -139.987216, 60.184151 ], [ -139.696939, 60.342983 ], [ -139.088998, 60.359413 ], [ -139.198537, 60.091043 ], [ -139.045183, 59.997935 ], [ -138.700135, 59.910304 ], [ -138.623458, 59.767904 ], [ -137.604747, 59.242118 ], [ -137.445916, 58.908024 ], [ -137.265177, 59.001132 ], [ -136.827022, 59.159963 ], [ -136.580559, 59.16544 ], [ -136.465544, 59.285933 ], [ -136.476498, 59.466672 ], [ -136.301236, 59.466672 ], [ -136.25742, 59.625503 ], [ -135.945234, 59.663842 ], [ -135.479694, 59.800766 ], [ -135.025108, 59.565257 ], [ -135.068924, 59.422857 ], [ -134.959385, 59.280456 ], [ -134.701969, 59.247595 ], [ -134.378829, 59.033994 ], [ -134.400737, 58.973748 ], [ -134.25286, 58.858732 ], [ -133.842089, 58.727285 ], [ -133.173903, 58.152206 ], [ -133.075318, 57.998852 ], [ -132.867194, 57.845498 ], [ -132.560485, 57.505928 ], [ -132.253777, 57.21565 ], [ -132.368792, 57.095157 ], [ -132.05113, 57.051341 ], [ -132.127807, 56.876079 ], [ -131.870391, 56.804879 ], [ -131.837529, 56.602232 ], [ -131.580113, 56.613186 ], [ -131.087188, 56.405062 ], [ -130.78048, 56.366724 ], [ -130.621648, 56.268139 ], [ -130.468294, 56.240754 ], [ -130.424478, 56.142169 ], [ -130.101339, 56.114785 ], [ -130.002754, 55.994292 ], [ -130.150631, 55.769737 ], [ -130.128724, 55.583521 ], [ -129.986323, 55.276813 ], [ -130.095862, 55.200136 ], [ -130.336847, 54.920812 ], [ -130.687372, 54.718165 ], [ -130.785957, 54.822227 ], [ -130.917403, 54.789365 ], [ -131.010511, 54.997489 ], [ -130.983126, 55.08512 ], [ -131.092665, 55.189182 ], [ -130.862634, 55.298721 ], [ -130.928357, 55.337059 ], [ -131.158389, 55.200136 ], [ -131.284358, 55.287767 ], [ -131.426759, 55.238474 ], [ -131.843006, 55.457552 ], [ -131.700606, 55.698537 ], [ -131.963499, 55.616383 ], [ -131.974453, 55.49589 ], [ -132.182576, 55.588998 ], [ -132.226392, 55.704014 ], [ -132.083991, 55.829984 ], [ -132.127807, 55.955953 ], [ -132.324977, 55.851892 ], [ -132.522147, 56.076446 ], [ -132.642639, 56.032631 ], [ -132.719317, 56.218847 ], [ -132.527624, 56.339339 ], [ -132.341408, 56.339339 ], [ -132.396177, 56.487217 ], [ -132.297592, 56.67891 ], [ -132.450946, 56.673433 ], [ -132.768609, 56.837741 ], [ -132.993164, 57.034911 ], [ -133.51895, 57.177311 ], [ -133.507996, 57.577128 ], [ -133.677781, 57.62642 ], [ -133.639442, 57.790728 ], [ -133.814705, 57.834544 ], [ -134.072121, 58.053622 ], [ -134.143321, 58.168637 ], [ -134.586953, 58.206976 ], [ -135.074401, 58.502731 ], [ -135.282525, 59.192825 ], [ -135.38111, 59.033994 ], [ -135.337294, 58.891593 ], [ -135.140124, 58.617746 ], [ -135.189417, 58.573931 ], [ -135.05797, 58.349376 ], [ -135.085355, 58.201499 ], [ -135.277048, 58.234361 ], [ -135.430402, 58.398669 ], [ -135.633049, 58.426053 ], [ -135.91785, 58.382238 ], [ -135.912373, 58.617746 ], [ -136.087635, 58.814916 ], [ -136.246466, 58.75467 ], [ -136.876314, 58.962794 ], [ -136.931084, 58.902547 ], [ -136.586036, 58.836824 ], [ -136.317666, 58.672516 ], [ -136.213604, 58.667039 ], [ -136.180743, 58.535592 ], [ -136.043819, 58.382238 ], [ -136.388867, 58.294607 ], [ -136.591513, 58.349376 ], [ -136.59699, 58.212453 ], [ -136.859883, 58.316515 ], [ -136.947514, 58.393192 ], [ -137.111823, 58.393192 ], [ -137.566409, 58.590362 ], [ -137.900502, 58.765624 ], [ -137.933364, 58.869686 ], [ -138.11958, 59.02304 ], [ -138.634412, 59.132579 ], [ -138.919213, 59.247595 ], [ -139.417615, 59.379041 ], [ -139.746231, 59.505011 ], [ -139.718846, 59.641934 ], [ -139.625738, 59.598119 ], [ -139.5162, 59.68575 ], [ -139.625738, 59.88292 ], [ -139.488815, 59.992458 ], [ -139.554538, 60.041751 ], [ -139.801, 59.833627 ], [ -140.315833, 59.696704 ], [ -140.92925, 59.745996 ], [ -141.444083, 59.871966 ], [ -141.46599, 59.970551 ], [ -141.706976, 59.948643 ], [ -141.964392, 60.019843 ], [ -142.539471, 60.085566 ], [ -142.873564, 60.091043 ], [ -143.623905, 60.036274 ], [ -143.892275, 59.997935 ], [ -144.231845, 60.140336 ], [ -144.65357, 60.206059 ], [ -144.785016, 60.29369 ], [ -144.834309, 60.441568 ], [ -145.124586, 60.430614 ], [ -145.223171, 60.299167 ], [ -145.738004, 60.474429 ], [ -145.820158, 60.551106 ], [ -146.351421, 60.408706 ], [ -146.608837, 60.238921 ], [ -146.718376, 60.397752 ], [ -146.608837, 60.485383 ], [ -146.455483, 60.463475 ], [ -145.951604, 60.578491 ], [ -146.017328, 60.666122 ], [ -146.252836, 60.622307 ], [ -146.345944, 60.737322 ], [ -146.565022, 60.753753 ], [ -146.784099, 61.044031 ], [ -146.866253, 60.972831 ], [ -147.172962, 60.934492 ], [ -147.271547, 60.972831 ], [ -147.375609, 60.879723 ], [ -147.758995, 60.912584 ], [ -147.775426, 60.808523 ], [ -148.032842, 60.781138 ], [ -148.153334, 60.819476 ], [ -148.065703, 61.005692 ], [ -148.175242, 61.000215 ], [ -148.350504, 60.803046 ], [ -148.109519, 60.737322 ], [ -148.087611, 60.594922 ], [ -147.939734, 60.441568 ], [ -148.027365, 60.277259 ], [ -148.219058, 60.332029 ], [ -148.273827, 60.249875 ], [ -148.087611, 60.217013 ], [ -147.983549, 59.997935 ], [ -148.251919, 59.95412 ], [ -148.399797, 59.997935 ], [ -148.635305, 59.937689 ], [ -148.755798, 59.986981 ], [ -149.067984, 59.981505 ], [ -149.05703, 60.063659 ], [ -149.204907, 60.008889 ], [ -149.287061, 59.904827 ], [ -149.418508, 59.997935 ], [ -149.582816, 59.866489 ], [ -149.511616, 59.806242 ], [ -149.741647, 59.729565 ], [ -149.949771, 59.718611 ], [ -150.031925, 59.61455 ], [ -150.25648, 59.521442 ], [ -150.409834, 59.554303 ], [ -150.579619, 59.444764 ], [ -150.716543, 59.450241 ], [ -151.001343, 59.225687 ], [ -151.308052, 59.209256 ], [ -151.406637, 59.280456 ], [ -151.592853, 59.159963 ], [ -151.976239, 59.253071 ], [ -151.888608, 59.422857 ], [ -151.636669, 59.483103 ], [ -151.47236, 59.472149 ], [ -151.423068, 59.537872 ], [ -151.127313, 59.669319 ], [ -151.116359, 59.778858 ], [ -151.505222, 59.63098 ], [ -151.828361, 59.718611 ], [ -151.8667, 59.778858 ], [ -151.702392, 60.030797 ], [ -151.423068, 60.211536 ], [ -151.379252, 60.359413 ], [ -151.297098, 60.386798 ], [ -151.264237, 60.545629 ], [ -151.406637, 60.720892 ], [ -151.06159, 60.786615 ], [ -150.404357, 61.038554 ], [ -150.245526, 60.939969 ], [ -150.042879, 60.912584 ], [ -149.741647, 61.016646 ], [ -150.075741, 61.15357 ], [ -150.207187, 61.257632 ], [ -150.47008, 61.246678 ], [ -150.656296, 61.29597 ], [ -150.711066, 61.252155 ], [ -151.023251, 61.180954 ], [ -151.165652, 61.044031 ], [ -151.477837, 61.011169 ], [ -151.800977, 60.852338 ], [ -151.833838, 60.748276 ], [ -152.080301, 60.693507 ], [ -152.13507, 60.578491 ], [ -152.310332, 60.507291 ], [ -152.392486, 60.304644 ], [ -152.732057, 60.173197 ], [ -152.567748, 60.069136 ], [ -152.704672, 59.915781 ], [ -153.022334, 59.888397 ], [ -153.049719, 59.691227 ], [ -153.345474, 59.620026 ], [ -153.438582, 59.702181 ], [ -153.586459, 59.548826 ], [ -153.761721, 59.543349 ], [ -153.72886, 59.433811 ], [ -154.117723, 59.368087 ], [ -154.1944, 59.066856 ], [ -153.750768, 59.050425 ], [ -153.400243, 58.968271 ], [ -153.301658, 58.869686 ], [ -153.444059, 58.710854 ], [ -153.679567, 58.612269 ], [ -153.898645, 58.606793 ], [ -153.920553, 58.519161 ], [ -154.062953, 58.4863 ], [ -153.99723, 58.376761 ], [ -154.145107, 58.212453 ], [ -154.46277, 58.059098 ], [ -154.643509, 58.059098 ], [ -154.818771, 58.004329 ], [ -154.988556, 58.015283 ], [ -155.120003, 57.955037 ], [ -155.081664, 57.872883 ], [ -155.328126, 57.829067 ], [ -155.377419, 57.708574 ], [ -155.547204, 57.785251 ], [ -155.73342, 57.549743 ], [ -156.045606, 57.566174 ], [ -156.023698, 57.440204 ], [ -156.209914, 57.473066 ], [ -156.34136, 57.418296 ], [ -156.34136, 57.248511 ], [ -156.549484, 56.985618 ], [ -156.883577, 56.952757 ], [ -157.157424, 56.832264 ], [ -157.20124, 56.766541 ], [ -157.376502, 56.859649 ], [ -157.672257, 56.607709 ], [ -157.754411, 56.67891 ], [ -157.918719, 56.657002 ], [ -157.957058, 56.514601 ], [ -158.126843, 56.459832 ], [ -158.32949, 56.48174 ], [ -158.488321, 56.339339 ], [ -158.208997, 56.295524 ], [ -158.510229, 55.977861 ], [ -159.375585, 55.873799 ], [ -159.616571, 55.594475 ], [ -159.676817, 55.654722 ], [ -159.643955, 55.829984 ], [ -159.813741, 55.857368 ], [ -160.027341, 55.791645 ], [ -160.060203, 55.720445 ], [ -160.394296, 55.605429 ], [ -160.536697, 55.473983 ], [ -160.580512, 55.567091 ], [ -160.668143, 55.457552 ], [ -160.865313, 55.528752 ], [ -161.232268, 55.358967 ], [ -161.506115, 55.364444 ], [ -161.467776, 55.49589 ], [ -161.588269, 55.62186 ], [ -161.697808, 55.517798 ], [ -161.686854, 55.408259 ], [ -162.053809, 55.074166 ], [ -162.179779, 55.15632 ], [ -162.218117, 55.03035 ], [ -162.470057, 55.052258 ], [ -162.508395, 55.249428 ], [ -162.661749, 55.293244 ], [ -162.716519, 55.222043 ], [ -162.579595, 55.134412 ], [ -162.645319, 54.997489 ], [ -162.847965, 54.926289 ], [ -163.00132, 55.079643 ], [ -163.187536, 55.090597 ], [ -163.220397, 55.03035 ], [ -163.034181, 54.942719 ], [ -163.373752, 54.800319 ], [ -163.14372, 54.76198 ], [ -163.138243, 54.696257 ], [ -163.329936, 54.74555 ], [ -163.587352, 54.614103 ], [ -164.085754, 54.61958 ], [ -164.332216, 54.531949 ], [ -164.354124, 54.466226 ], [ -164.638925, 54.389548 ], [ -164.847049, 54.416933 ], [ -164.918249, 54.603149 ], [ -164.710125, 54.663395 ], [ -164.551294, 54.88795 ], [ -164.34317, 54.893427 ], [ -163.894061, 55.041304 ], [ -163.532583, 55.046781 ], [ -163.39566, 54.904381 ], [ -163.291598, 55.008443 ], [ -163.313505, 55.128935 ], [ -163.105382, 55.183705 ], [ -162.880827, 55.183705 ], [ -162.579595, 55.446598 ], [ -162.245502, 55.682106 ], [ -161.807347, 55.89023 ], [ -161.292514, 55.983338 ], [ -161.078914, 55.939523 ], [ -160.87079, 55.999769 ], [ -160.816021, 55.912138 ], [ -160.931036, 55.813553 ], [ -160.805067, 55.736876 ], [ -160.766728, 55.857368 ], [ -160.509312, 55.868322 ], [ -160.438112, 55.791645 ], [ -160.27928, 55.76426 ], [ -160.273803, 55.857368 ], [ -160.536697, 55.939523 ], [ -160.558604, 55.994292 ], [ -160.383342, 56.251708 ], [ -160.147834, 56.399586 ], [ -159.830171, 56.541986 ], [ -159.326293, 56.667956 ], [ -158.959338, 56.848695 ], [ -158.784076, 56.782971 ], [ -158.641675, 56.810356 ], [ -158.701922, 56.925372 ], [ -158.658106, 57.034911 ], [ -158.378782, 57.264942 ], [ -157.995396, 57.41282 ], [ -157.688688, 57.609989 ], [ -157.705118, 57.719528 ], [ -157.458656, 58.497254 ], [ -157.07527, 58.705377 ], [ -157.119086, 58.869686 ], [ -158.039212, 58.634177 ], [ -158.32949, 58.661562 ], [ -158.40069, 58.760147 ], [ -158.564998, 58.803962 ], [ -158.619768, 58.913501 ], [ -158.767645, 58.864209 ], [ -158.860753, 58.694424 ], [ -158.701922, 58.480823 ], [ -158.893615, 58.387715 ], [ -159.0634, 58.420577 ], [ -159.392016, 58.760147 ], [ -159.616571, 58.929932 ], [ -159.731586, 58.929932 ], [ -159.808264, 58.803962 ], [ -159.906848, 58.782055 ], [ -160.054726, 58.886116 ], [ -160.235465, 58.902547 ], [ -160.317619, 59.072332 ], [ -160.854359, 58.88064 ], [ -161.33633, 58.743716 ], [ -161.374669, 58.667039 ], [ -161.752577, 58.552023 ], [ -161.938793, 58.656085 ], [ -161.769008, 58.776578 ], [ -161.829255, 59.061379 ], [ -161.955224, 59.36261 ], [ -161.703285, 59.48858 ], [ -161.911409, 59.740519 ], [ -162.092148, 59.88292 ], [ -162.234548, 60.091043 ], [ -162.448149, 60.178674 ], [ -162.502918, 59.997935 ], [ -162.760334, 59.959597 ], [ -163.171105, 59.844581 ], [ -163.66403, 59.795289 ], [ -163.9324, 59.806242 ], [ -164.162431, 59.866489 ], [ -164.189816, 60.02532 ], [ -164.386986, 60.074613 ], [ -164.699171, 60.29369 ], [ -164.962064, 60.337506 ], [ -165.268773, 60.578491 ], [ -165.060649, 60.68803 ], [ -165.016834, 60.890677 ], [ -165.175665, 60.846861 ], [ -165.197573, 60.972831 ], [ -165.120896, 61.076893 ], [ -165.323543, 61.170001 ], [ -165.34545, 61.071416 ], [ -165.591913, 61.109754 ], [ -165.624774, 61.279539 ], [ -165.816467, 61.301447 ], [ -165.920529, 61.416463 ], [ -165.915052, 61.558863 ], [ -166.106745, 61.49314 ], [ -166.139607, 61.630064 ], [ -165.904098, 61.662925 ], [ -166.095791, 61.81628 ], [ -165.756221, 61.827233 ], [ -165.756221, 62.013449 ], [ -165.674067, 62.139419 ], [ -165.044219, 62.539236 ], [ -164.912772, 62.659728 ], [ -164.819664, 62.637821 ], [ -164.874433, 62.807606 ], [ -164.633448, 63.097884 ], [ -164.425324, 63.212899 ], [ -164.036462, 63.262192 ], [ -163.73523, 63.212899 ], [ -163.313505, 63.037637 ], [ -163.039658, 63.059545 ], [ -162.661749, 63.22933 ], [ -162.272887, 63.486746 ], [ -162.075717, 63.514131 ], [ -162.026424, 63.448408 ], [ -161.555408, 63.448408 ], [ -161.13916, 63.503177 ], [ -160.766728, 63.771547 ], [ -160.766728, 63.837271 ], [ -160.952944, 64.08921 ], [ -160.974852, 64.237087 ], [ -161.26513, 64.395918 ], [ -161.374669, 64.532842 ], [ -161.078914, 64.494503 ], [ -160.79959, 64.609519 ], [ -160.783159, 64.719058 ], [ -161.144637, 64.921705 ], [ -161.413007, 64.762873 ], [ -161.664946, 64.790258 ], [ -161.900455, 64.702627 ], [ -162.168825, 64.680719 ], [ -162.234548, 64.620473 ], [ -162.541257, 64.532842 ], [ -162.634365, 64.384965 ], [ -162.787719, 64.324718 ], [ -162.858919, 64.49998 ], [ -163.045135, 64.538319 ], [ -163.176582, 64.401395 ], [ -163.253259, 64.467119 ], [ -163.598306, 64.565704 ], [ -164.304832, 64.560227 ], [ -164.80871, 64.450688 ], [ -165.000403, 64.434257 ], [ -165.411174, 64.49998 ], [ -166.188899, 64.576658 ], [ -166.391546, 64.636904 ], [ -166.484654, 64.735489 ], [ -166.413454, 64.872412 ], [ -166.692778, 64.987428 ], [ -166.638008, 65.113398 ], [ -166.462746, 65.179121 ], [ -166.517516, 65.337952 ], [ -166.796839, 65.337952 ], [ -167.026871, 65.381768 ], [ -167.47598, 65.414629 ], [ -167.711489, 65.496784 ], [ -168.072967, 65.578938 ], [ -168.105828, 65.682999 ], [ -167.541703, 65.819923 ], [ -166.829701, 66.049954 ], [ -166.3313, 66.186878 ], [ -166.046499, 66.110201 ], [ -165.756221, 66.09377 ], [ -165.690498, 66.203309 ], [ -165.86576, 66.21974 ], [ -165.88219, 66.312848 ], [ -165.186619, 66.466202 ], [ -164.403417, 66.581218 ], [ -163.981692, 66.592172 ], [ -163.751661, 66.553833 ], [ -163.872153, 66.389525 ], [ -163.828338, 66.274509 ], [ -163.915969, 66.192355 ], [ -163.768091, 66.060908 ], [ -163.494244, 66.082816 ], [ -163.149197, 66.060908 ], [ -162.749381, 66.088293 ], [ -162.634365, 66.039001 ], [ -162.371472, 66.028047 ], [ -162.14144, 66.077339 ], [ -161.840208, 66.02257 ], [ -161.549931, 66.241647 ], [ -161.341807, 66.252601 ], [ -161.199406, 66.208786 ], [ -161.128206, 66.334755 ], [ -161.528023, 66.395002 ], [ -161.911409, 66.345709 ], [ -161.87307, 66.510017 ], [ -162.174302, 66.68528 ], [ -162.502918, 66.740049 ], [ -162.601503, 66.89888 ], [ -162.344087, 66.937219 ], [ -162.015471, 66.778388 ], [ -162.075717, 66.652418 ], [ -161.916886, 66.553833 ], [ -161.571838, 66.438817 ], [ -161.489684, 66.55931 ], [ -161.884024, 66.718141 ], [ -161.714239, 67.002942 ], [ -161.851162, 67.052235 ], [ -162.240025, 66.991988 ], [ -162.639842, 67.008419 ], [ -162.700088, 67.057712 ], [ -162.902735, 67.008419 ], [ -163.740707, 67.128912 ], [ -163.757138, 67.254881 ], [ -164.009077, 67.534205 ], [ -164.211724, 67.638267 ], [ -164.534863, 67.725898 ], [ -165.192096, 67.966884 ], [ -165.493328, 68.059992 ], [ -165.794559, 68.081899 ], [ -166.243668, 68.246208 ], [ -166.681824, 68.339316 ], [ -166.703731, 68.372177 ], [ -166.375115, 68.42147 ], [ -166.227238, 68.574824 ], [ -166.216284, 68.881533 ], [ -165.329019, 68.859625 ], [ -164.255539, 68.930825 ], [ -163.976215, 68.985595 ], [ -163.532583, 69.138949 ], [ -163.110859, 69.374457 ], [ -163.023228, 69.609966 ], [ -162.842489, 69.812613 ], [ -162.470057, 69.982398 ], [ -162.311225, 70.108367 ], [ -161.851162, 70.311014 ], [ -161.779962, 70.256245 ], [ -161.396576, 70.239814 ], [ -160.837928, 70.343876 ], [ -160.487404, 70.453415 ], [ -159.649432, 70.792985 ], [ -159.33177, 70.809416 ], [ -159.298908, 70.760123 ], [ -158.975769, 70.798462 ], [ -158.658106, 70.787508 ], [ -158.033735, 70.831323 ], [ -157.420318, 70.979201 ], [ -156.812377, 71.285909 ], [ -156.565915, 71.351633 ], [ -156.522099, 71.296863 ], [ -155.585543, 71.170894 ], [ -155.508865, 71.083263 ], [ -155.832005, 70.968247 ], [ -155.979882, 70.96277 ], [ -155.974405, 70.809416 ], [ -155.503388, 70.858708 ], [ -155.476004, 70.940862 ], [ -155.262403, 71.017539 ], [ -155.191203, 70.973724 ], [ -155.032372, 71.148986 ], [ -154.566832, 70.990155 ], [ -154.643509, 70.869662 ], [ -154.353231, 70.8368 ], [ -154.183446, 70.7656 ], [ -153.931507, 70.880616 ], [ -153.487874, 70.886093 ], [ -153.235935, 70.924431 ], [ -152.589656, 70.886093 ], [ -152.26104, 70.842277 ], [ -152.419871, 70.606769 ], [ -151.817408, 70.546523 ], [ -151.773592, 70.486276 ], [ -151.187559, 70.382214 ], [ -151.182082, 70.431507 ], [ -150.760358, 70.49723 ], [ -150.355064, 70.491753 ], [ -150.349588, 70.436984 ], [ -150.114079, 70.431507 ], [ -149.867617, 70.508184 ], [ -149.462323, 70.519138 ], [ -149.177522, 70.486276 ], [ -148.78866, 70.404122 ], [ -148.607921, 70.420553 ], [ -148.350504, 70.305537 ], [ -148.202627, 70.349353 ], [ -147.961642, 70.316491 ], [ -147.786379, 70.245291 ] ] ], [ [ [ -152.94018, 58.026237 ], [ -152.945657, 57.982421 ], [ -153.290705, 58.048145 ], [ -153.044242, 58.305561 ], [ -152.819688, 58.327469 ], [ -152.666333, 58.562977 ], [ -152.496548, 58.354853 ], [ -152.354148, 58.426053 ], [ -152.080301, 58.311038 ], [ -152.080301, 58.152206 ], [ -152.480117, 58.130299 ], [ -152.655379, 58.059098 ], [ -152.94018, 58.026237 ] ] ], [ [ [ -153.958891, 57.538789 ], [ -153.67409, 57.670236 ], [ -153.931507, 57.69762 ], [ -153.936983, 57.812636 ], [ -153.723383, 57.889313 ], [ -153.570028, 57.834544 ], [ -153.548121, 57.719528 ], [ -153.46049, 57.796205 ], [ -153.455013, 57.96599 ], [ -153.268797, 57.889313 ], [ -153.235935, 57.998852 ], [ -153.071627, 57.933129 ], [ -152.874457, 57.933129 ], [ -152.721103, 57.993375 ], [ -152.469163, 57.889313 ], [ -152.469163, 57.599035 ], [ -152.151501, 57.620943 ], [ -152.359625, 57.42925 ], [ -152.74301, 57.505928 ], [ -152.60061, 57.379958 ], [ -152.710149, 57.275896 ], [ -152.907319, 57.325188 ], [ -152.912796, 57.128019 ], [ -153.214027, 57.073249 ], [ -153.312612, 56.991095 ], [ -153.498828, 57.067772 ], [ -153.695998, 56.859649 ], [ -153.849352, 56.837741 ], [ -154.013661, 56.744633 ], [ -154.073907, 56.969187 ], [ -154.303938, 56.848695 ], [ -154.314892, 56.919895 ], [ -154.523016, 56.991095 ], [ -154.539447, 57.193742 ], [ -154.742094, 57.275896 ], [ -154.627078, 57.511404 ], [ -154.227261, 57.659282 ], [ -153.980799, 57.648328 ], [ -153.958891, 57.538789 ] ] ], [ [ [ -154.53397, 56.602232 ], [ -154.742094, 56.399586 ], [ -154.807817, 56.432447 ], [ -154.53397, 56.602232 ] ] ], [ [ [ -155.634835, 55.923092 ], [ -155.476004, 55.912138 ], [ -155.530773, 55.704014 ], [ -155.793666, 55.731399 ], [ -155.837482, 55.802599 ], [ -155.634835, 55.923092 ] ] ], [ [ [ -159.890418, 55.28229 ], [ -159.950664, 55.068689 ], [ -160.257373, 54.893427 ], [ -160.109495, 55.161797 ], [ -160.005433, 55.134412 ], [ -159.890418, 55.28229 ] ] ], [ [ [ -160.520266, 55.358967 ], [ -160.33405, 55.358967 ], [ -160.339527, 55.249428 ], [ -160.525743, 55.128935 ], [ -160.690051, 55.211089 ], [ -160.794113, 55.134412 ], [ -160.854359, 55.320628 ], [ -160.79959, 55.380875 ], [ -160.520266, 55.358967 ] ] ], [ [ [ -162.256456, 54.981058 ], [ -162.234548, 54.893427 ], [ -162.349564, 54.838658 ], [ -162.437195, 54.931766 ], [ -162.256456, 54.981058 ] ] ], [ [ [ -162.415287, 63.634624 ], [ -162.563165, 63.536039 ], [ -162.612457, 63.62367 ], [ -162.415287, 63.634624 ] ] ], [ [ [ -162.80415, 54.488133 ], [ -162.590549, 54.449795 ], [ -162.612457, 54.367641 ], [ -162.782242, 54.373118 ], [ -162.80415, 54.488133 ] ] ], [ [ [ -165.548097, 54.29644 ], [ -165.476897, 54.181425 ], [ -165.630251, 54.132132 ], [ -165.685021, 54.252625 ], [ -165.548097, 54.29644 ] ] ], [ [ [ -165.73979, 54.15404 ], [ -166.046499, 54.044501 ], [ -166.112222, 54.121178 ], [ -165.980775, 54.219763 ], [ -165.73979, 54.15404 ] ] ], [ [ [ -166.364161, 60.359413 ], [ -166.13413, 60.397752 ], [ -166.084837, 60.326552 ], [ -165.88219, 60.342983 ], [ -165.685021, 60.277259 ], [ -165.646682, 59.992458 ], [ -165.750744, 59.89935 ], [ -166.00816, 59.844581 ], [ -166.062929, 59.745996 ], [ -166.440838, 59.855535 ], [ -166.6161, 59.850058 ], [ -166.994009, 59.992458 ], [ -167.125456, 59.992458 ], [ -167.344534, 60.074613 ], [ -167.421211, 60.206059 ], [ -167.311672, 60.238921 ], [ -166.93924, 60.206059 ], [ -166.763978, 60.310121 ], [ -166.577762, 60.321075 ], [ -166.495608, 60.392275 ], [ -166.364161, 60.359413 ] ] ], [ [ [ -166.375115, 54.01164 ], [ -166.210807, 53.934962 ], [ -166.5449, 53.748746 ], [ -166.539423, 53.715885 ], [ -166.117699, 53.852808 ], [ -166.112222, 53.776131 ], [ -166.282007, 53.683023 ], [ -166.555854, 53.622777 ], [ -166.583239, 53.529669 ], [ -166.878994, 53.431084 ], [ -167.13641, 53.425607 ], [ -167.306195, 53.332499 ], [ -167.623857, 53.250345 ], [ -167.793643, 53.337976 ], [ -167.459549, 53.442038 ], [ -167.355487, 53.425607 ], [ -167.103548, 53.513238 ], [ -167.163794, 53.611823 ], [ -167.021394, 53.715885 ], [ -166.807793, 53.666592 ], [ -166.785886, 53.732316 ], [ -167.015917, 53.754223 ], [ -167.141887, 53.825424 ], [ -167.032348, 53.945916 ], [ -166.643485, 54.017116 ], [ -166.561331, 53.880193 ], [ -166.375115, 54.01164 ] ] ], [ [ [ -168.790446, 53.157237 ], [ -168.40706, 53.34893 ], [ -168.385152, 53.431084 ], [ -168.237275, 53.524192 ], [ -168.007243, 53.568007 ], [ -167.886751, 53.518715 ], [ -167.842935, 53.387268 ], [ -168.270136, 53.244868 ], [ -168.500168, 53.036744 ], [ -168.686384, 52.965544 ], [ -168.790446, 53.157237 ] ] ], [ [ [ -169.74891, 52.894344 ], [ -169.705095, 52.795759 ], [ -169.962511, 52.790282 ], [ -169.989896, 52.856005 ], [ -169.74891, 52.894344 ] ] ], [ [ [ -170.148727, 57.221127 ], [ -170.28565, 57.128019 ], [ -170.313035, 57.221127 ], [ -170.148727, 57.221127 ] ] ], [ [ [ -170.669036, 52.697174 ], [ -170.603313, 52.604066 ], [ -170.789529, 52.538343 ], [ -170.816914, 52.636928 ], [ -170.669036, 52.697174 ] ] ], [ [ [ -171.742517, 63.716778 ], [ -170.94836, 63.5689 ], [ -170.488297, 63.69487 ], [ -170.280174, 63.683916 ], [ -170.093958, 63.612716 ], [ -170.044665, 63.492223 ], [ -169.644848, 63.4265 ], [ -169.518879, 63.366254 ], [ -168.99857, 63.338869 ], [ -168.686384, 63.295053 ], [ -168.856169, 63.147176 ], [ -169.108108, 63.180038 ], [ -169.376478, 63.152653 ], [ -169.513402, 63.08693 ], [ -169.639372, 62.939052 ], [ -169.831064, 63.075976 ], [ -170.055619, 63.169084 ], [ -170.263743, 63.180038 ], [ -170.362328, 63.2841 ], [ -170.866206, 63.415546 ], [ -171.101715, 63.421023 ], [ -171.463193, 63.306007 ], [ -171.73704, 63.366254 ], [ -171.852055, 63.486746 ], [ -171.742517, 63.716778 ] ] ], [ [ [ -172.432611, 52.390465 ], [ -172.41618, 52.275449 ], [ -172.607873, 52.253542 ], [ -172.569535, 52.352127 ], [ -172.432611, 52.390465 ] ] ], [ [ [ -173.626584, 52.14948 ], [ -173.495138, 52.105664 ], [ -173.122706, 52.111141 ], [ -173.106275, 52.07828 ], [ -173.549907, 52.028987 ], [ -173.626584, 52.14948 ] ] ], [ [ [ -174.322156, 52.280926 ], [ -174.327632, 52.379511 ], [ -174.185232, 52.41785 ], [ -173.982585, 52.319265 ], [ -174.059262, 52.226157 ], [ -174.179755, 52.231634 ], [ -174.141417, 52.127572 ], [ -174.333109, 52.116618 ], [ -174.738403, 52.007079 ], [ -174.968435, 52.039941 ], [ -174.902711, 52.116618 ], [ -174.656249, 52.105664 ], [ -174.322156, 52.280926 ] ] ], [ [ [ -176.469116, 51.853725 ], [ -176.288377, 51.870156 ], [ -176.288377, 51.744186 ], [ -176.518409, 51.760617 ], [ -176.80321, 51.61274 ], [ -176.912748, 51.80991 ], [ -176.792256, 51.815386 ], [ -176.775825, 51.963264 ], [ -176.627947, 51.968741 ], [ -176.627947, 51.859202 ], [ -176.469116, 51.853725 ] ] ], [ [ [ -177.153734, 51.946833 ], [ -177.044195, 51.897541 ], [ -177.120872, 51.727755 ], [ -177.274226, 51.678463 ], [ -177.279703, 51.782525 ], [ -177.153734, 51.946833 ] ] ], [ [ [ -178.123152, 51.919448 ], [ -177.953367, 51.913971 ], [ -177.800013, 51.793479 ], [ -177.964321, 51.651078 ], [ -178.123152, 51.919448 ] ] ], [ [ [ -187.107557, 52.992929 ], [ -187.293773, 52.927205 ], [ -187.304726, 52.823143 ], [ -188.90491, 52.762897 ], [ -188.642017, 52.927205 ], [ -188.642017, 53.003883 ], [ -187.107557, 52.992929 ] ] ] ] } }, +{ "type": "Feature", "id": "04", "properties": { "name": "Arizona", "density": 57.05 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.042503, 37.000263 ], [ -109.04798, 31.331629 ], [ -111.074448, 31.331629 ], [ -112.246513, 31.704061 ], [ -114.815198, 32.492741 ], [ -114.72209, 32.717295 ], [ -114.524921, 32.755634 ], [ -114.470151, 32.843265 ], [ -114.524921, 33.029481 ], [ -114.661844, 33.034958 ], [ -114.727567, 33.40739 ], [ -114.524921, 33.54979 ], [ -114.497536, 33.697668 ], [ -114.535874, 33.933176 ], [ -114.415382, 34.108438 ], [ -114.256551, 34.174162 ], [ -114.136058, 34.305608 ], [ -114.333228, 34.448009 ], [ -114.470151, 34.710902 ], [ -114.634459, 34.87521 ], [ -114.634459, 35.00118 ], [ -114.574213, 35.138103 ], [ -114.596121, 35.324319 ], [ -114.678275, 35.516012 ], [ -114.738521, 36.102045 ], [ -114.371566, 36.140383 ], [ -114.251074, 36.01989 ], [ -114.152489, 36.025367 ], [ -114.048427, 36.195153 ], [ -114.048427, 37.000263 ], [ -110.499369, 37.00574 ], [ -109.042503, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "05", "properties": { "name": "Arkansas", "density": 56.43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.473842, 36.501861 ], [ -90.152536, 36.496384 ], [ -90.064905, 36.304691 ], [ -90.218259, 36.184199 ], [ -90.377091, 35.997983 ], [ -89.730812, 35.997983 ], [ -89.763673, 35.811767 ], [ -89.911551, 35.756997 ], [ -89.944412, 35.603643 ], [ -90.130628, 35.439335 ], [ -90.114197, 35.198349 ], [ -90.212782, 35.023087 ], [ -90.311367, 34.995703 ], [ -90.251121, 34.908072 ], [ -90.409952, 34.831394 ], [ -90.481152, 34.661609 ], [ -90.585214, 34.617794 ], [ -90.568783, 34.420624 ], [ -90.749522, 34.365854 ], [ -90.744046, 34.300131 ], [ -90.952169, 34.135823 ], [ -90.891923, 34.026284 ], [ -91.072662, 33.867453 ], [ -91.231493, 33.560744 ], [ -91.056231, 33.429298 ], [ -91.143862, 33.347144 ], [ -91.089093, 33.13902 ], [ -91.16577, 33.002096 ], [ -93.608485, 33.018527 ], [ -94.041164, 33.018527 ], [ -94.041164, 33.54979 ], [ -94.183564, 33.593606 ], [ -94.380734, 33.544313 ], [ -94.484796, 33.637421 ], [ -94.430026, 35.395519 ], [ -94.616242, 36.501861 ], [ -94.473842, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "06", "properties": { "name": "California", "density": 241.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.233256, 42.006186 ], [ -122.378853, 42.011663 ], [ -121.037003, 41.995232 ], [ -120.001861, 41.995232 ], [ -119.996384, 40.264519 ], [ -120.001861, 38.999346 ], [ -118.71478, 38.101128 ], [ -117.498899, 37.21934 ], [ -116.540435, 36.501861 ], [ -115.85034, 35.970598 ], [ -114.634459, 35.00118 ], [ -114.634459, 34.87521 ], [ -114.470151, 34.710902 ], [ -114.333228, 34.448009 ], [ -114.136058, 34.305608 ], [ -114.256551, 34.174162 ], [ -114.415382, 34.108438 ], [ -114.535874, 33.933176 ], [ -114.497536, 33.697668 ], [ -114.524921, 33.54979 ], [ -114.727567, 33.40739 ], [ -114.661844, 33.034958 ], [ -114.524921, 33.029481 ], [ -114.470151, 32.843265 ], [ -114.524921, 32.755634 ], [ -114.72209, 32.717295 ], [ -116.04751, 32.624187 ], [ -117.126467, 32.536556 ], [ -117.24696, 32.668003 ], [ -117.252437, 32.876127 ], [ -117.329114, 33.122589 ], [ -117.471515, 33.297851 ], [ -117.7837, 33.538836 ], [ -118.183517, 33.763391 ], [ -118.260194, 33.703145 ], [ -118.413548, 33.741483 ], [ -118.391641, 33.840068 ], [ -118.566903, 34.042715 ], [ -118.802411, 33.998899 ], [ -119.218659, 34.146777 ], [ -119.278905, 34.26727 ], [ -119.558229, 34.415147 ], [ -119.875891, 34.40967 ], [ -120.138784, 34.475393 ], [ -120.472878, 34.448009 ], [ -120.64814, 34.579455 ], [ -120.609801, 34.858779 ], [ -120.670048, 34.902595 ], [ -120.631709, 35.099764 ], [ -120.894602, 35.247642 ], [ -120.905556, 35.450289 ], [ -121.004141, 35.461243 ], [ -121.168449, 35.636505 ], [ -121.283465, 35.674843 ], [ -121.332757, 35.784382 ], [ -121.716143, 36.195153 ], [ -121.896882, 36.315645 ], [ -121.935221, 36.638785 ], [ -121.858544, 36.6114 ], [ -121.787344, 36.803093 ], [ -121.929744, 36.978355 ], [ -122.105006, 36.956447 ], [ -122.335038, 37.115279 ], [ -122.417192, 37.241248 ], [ -122.400761, 37.361741 ], [ -122.515777, 37.520572 ], [ -122.515777, 37.783465 ], [ -122.329561, 37.783465 ], [ -122.406238, 38.15042 ], [ -122.488392, 38.112082 ], [ -122.504823, 37.931343 ], [ -122.701993, 37.893004 ], [ -122.937501, 38.029928 ], [ -122.97584, 38.265436 ], [ -123.129194, 38.451652 ], [ -123.331841, 38.566668 ], [ -123.44138, 38.698114 ], [ -123.737134, 38.95553 ], [ -123.687842, 39.032208 ], [ -123.824765, 39.366301 ], [ -123.764519, 39.552517 ], [ -123.85215, 39.831841 ], [ -124.109566, 40.105688 ], [ -124.361506, 40.259042 ], [ -124.410798, 40.439781 ], [ -124.158859, 40.877937 ], [ -124.109566, 41.025814 ], [ -124.158859, 41.14083 ], [ -124.065751, 41.442061 ], [ -124.147905, 41.715908 ], [ -124.257444, 41.781632 ], [ -124.213628, 42.000709 ], [ -123.233256, 42.006186 ] ] ] } }, +{ "type": "Feature", "id": "08", "properties": { "name": "Colorado", "density": 49.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.919731, 41.003906 ], [ -105.728954, 40.998429 ], [ -104.053011, 41.003906 ], [ -102.053927, 41.003906 ], [ -102.053927, 40.001626 ], [ -102.042974, 36.994786 ], [ -103.001438, 37.000263 ], [ -104.337812, 36.994786 ], [ -106.868158, 36.994786 ], [ -107.421329, 37.000263 ], [ -109.042503, 37.000263 ], [ -109.042503, 38.166851 ], [ -109.058934, 38.27639 ], [ -109.053457, 39.125316 ], [ -109.04798, 40.998429 ], [ -107.919731, 41.003906 ] ] ] } }, +{ "type": "Feature", "id": "09", "properties": { "name": "Connecticut", "density": 739.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.053528, 42.039048 ], [ -71.799309, 42.022617 ], [ -71.799309, 42.006186 ], [ -71.799309, 41.414677 ], [ -71.859555, 41.321569 ], [ -71.947186, 41.338 ], [ -72.385341, 41.261322 ], [ -72.905651, 41.28323 ], [ -73.130205, 41.146307 ], [ -73.371191, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.727192, 41.102491 ], [ -73.48073, 41.21203 ], [ -73.55193, 41.294184 ], [ -73.486206, 42.050002 ], [ -73.053528, 42.039048 ] ] ] } }, +{ "type": "Feature", "id": "10", "properties": { "name": "Delaware", "density": 464.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.414089, 39.804456 ], [ -75.507197, 39.683964 ], [ -75.611259, 39.61824 ], [ -75.589352, 39.459409 ], [ -75.441474, 39.311532 ], [ -75.403136, 39.065069 ], [ -75.189535, 38.807653 ], [ -75.09095, 38.796699 ], [ -75.047134, 38.451652 ], [ -75.693413, 38.462606 ], [ -75.786521, 39.722302 ], [ -75.616736, 39.831841 ], [ -75.414089, 39.804456 ] ] ] } }, +{ "type": "Feature", "id": "11", "properties": { "name": "District of Columbia", "density": 10065.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035264, 38.993869 ], [ -76.909294, 38.895284 ], [ -77.040741, 38.791222 ], [ -77.117418, 38.933623 ], [ -77.035264, 38.993869 ] ] ] } }, +{ "type": "Feature", "id": "12", "properties": { "name": "Florida", "density": 353.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.497137, 30.997536 ], [ -85.004212, 31.003013 ], [ -84.867289, 30.712735 ], [ -83.498053, 30.647012 ], [ -82.216449, 30.570335 ], [ -82.167157, 30.356734 ], [ -82.046664, 30.362211 ], [ -82.002849, 30.564858 ], [ -82.041187, 30.751074 ], [ -81.948079, 30.827751 ], [ -81.718048, 30.745597 ], [ -81.444201, 30.707258 ], [ -81.383954, 30.27458 ], [ -81.257985, 29.787132 ], [ -80.967707, 29.14633 ], [ -80.524075, 28.461713 ], [ -80.589798, 28.41242 ], [ -80.56789, 28.094758 ], [ -80.381674, 27.738757 ], [ -80.091397, 27.021277 ], [ -80.03115, 26.796723 ], [ -80.036627, 26.566691 ], [ -80.146166, 25.739673 ], [ -80.239274, 25.723243 ], [ -80.337859, 25.465826 ], [ -80.304997, 25.383672 ], [ -80.49669, 25.197456 ], [ -80.573367, 25.241272 ], [ -80.759583, 25.164595 ], [ -81.077246, 25.120779 ], [ -81.170354, 25.224841 ], [ -81.126538, 25.378195 ], [ -81.351093, 25.821827 ], [ -81.526355, 25.903982 ], [ -81.679709, 25.843735 ], [ -81.800202, 26.090198 ], [ -81.833064, 26.292844 ], [ -82.041187, 26.517399 ], [ -82.09048, 26.665276 ], [ -82.057618, 26.878877 ], [ -82.172634, 26.917216 ], [ -82.145249, 26.791246 ], [ -82.249311, 26.758384 ], [ -82.566974, 27.300601 ], [ -82.692943, 27.437525 ], [ -82.391711, 27.837342 ], [ -82.588881, 27.815434 ], [ -82.720328, 27.689464 ], [ -82.851774, 27.886634 ], [ -82.676512, 28.434328 ], [ -82.643651, 28.888914 ], [ -82.764143, 28.998453 ], [ -82.802482, 29.14633 ], [ -82.994175, 29.179192 ], [ -83.218729, 29.420177 ], [ -83.399469, 29.518762 ], [ -83.410422, 29.66664 ], [ -83.536392, 29.721409 ], [ -83.640454, 29.885717 ], [ -84.02384, 30.104795 ], [ -84.357933, 30.055502 ], [ -84.341502, 29.902148 ], [ -84.451041, 29.929533 ], [ -84.867289, 29.743317 ], [ -85.310921, 29.699501 ], [ -85.299967, 29.80904 ], [ -85.404029, 29.940487 ], [ -85.924338, 30.236241 ], [ -86.29677, 30.362211 ], [ -86.630863, 30.395073 ], [ -86.910187, 30.373165 ], [ -87.518128, 30.280057 ], [ -87.37025, 30.427934 ], [ -87.446927, 30.510088 ], [ -87.408589, 30.674397 ], [ -87.633143, 30.86609 ], [ -87.600282, 30.997536 ], [ -85.497137, 30.997536 ] ] ] } }, +{ "type": "Feature", "id": "13", "properties": { "name": "Georgia", "density": 169.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.109191, 35.00118 ], [ -83.322791, 34.787579 ], [ -83.339222, 34.683517 ], [ -83.005129, 34.469916 ], [ -82.901067, 34.486347 ], [ -82.747713, 34.26727 ], [ -82.714851, 34.152254 ], [ -82.55602, 33.94413 ], [ -82.325988, 33.81816 ], [ -82.194542, 33.631944 ], [ -81.926172, 33.462159 ], [ -81.937125, 33.347144 ], [ -81.761863, 33.160928 ], [ -81.493493, 33.007573 ], [ -81.42777, 32.843265 ], [ -81.416816, 32.629664 ], [ -81.279893, 32.558464 ], [ -81.121061, 32.290094 ], [ -81.115584, 32.120309 ], [ -80.885553, 32.032678 ], [ -81.132015, 31.693108 ], [ -81.175831, 31.517845 ], [ -81.279893, 31.364491 ], [ -81.290846, 31.20566 ], [ -81.400385, 31.13446 ], [ -81.444201, 30.707258 ], [ -81.718048, 30.745597 ], [ -81.948079, 30.827751 ], [ -82.041187, 30.751074 ], [ -82.002849, 30.564858 ], [ -82.046664, 30.362211 ], [ -82.167157, 30.356734 ], [ -82.216449, 30.570335 ], [ -83.498053, 30.647012 ], [ -84.867289, 30.712735 ], [ -85.004212, 31.003013 ], [ -85.113751, 31.27686 ], [ -85.042551, 31.539753 ], [ -85.141136, 31.840985 ], [ -85.053504, 32.01077 ], [ -85.058981, 32.13674 ], [ -84.889196, 32.262709 ], [ -85.004212, 32.322956 ], [ -84.960397, 32.421541 ], [ -85.069935, 32.580372 ], [ -85.184951, 32.859696 ], [ -85.431413, 34.124869 ], [ -85.606675, 34.984749 ], [ -84.319594, 34.990226 ], [ -83.618546, 34.984749 ], [ -83.109191, 35.00118 ] ] ] } }, +{ "type": "Feature", "id": "15", "properties": { "name": "Hawaii", "density": 214.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.634835, 18.948267 ], [ -155.881297, 19.035898 ], [ -155.919636, 19.123529 ], [ -155.886774, 19.348084 ], [ -156.062036, 19.73147 ], [ -155.925113, 19.857439 ], [ -155.826528, 20.032702 ], [ -155.897728, 20.147717 ], [ -155.87582, 20.26821 ], [ -155.596496, 20.12581 ], [ -155.284311, 20.021748 ], [ -155.092618, 19.868393 ], [ -155.092618, 19.736947 ], [ -154.807817, 19.523346 ], [ -154.983079, 19.348084 ], [ -155.295265, 19.26593 ], [ -155.514342, 19.134483 ], [ -155.634835, 18.948267 ] ] ], [ [ [ -156.587823, 21.029505 ], [ -156.472807, 20.892581 ], [ -156.324929, 20.952827 ], [ -156.00179, 20.793996 ], [ -156.051082, 20.651596 ], [ -156.379699, 20.580396 ], [ -156.445422, 20.60778 ], [ -156.461853, 20.783042 ], [ -156.631638, 20.821381 ], [ -156.697361, 20.919966 ], [ -156.587823, 21.029505 ] ] ], [ [ [ -156.982162, 21.210244 ], [ -157.080747, 21.106182 ], [ -157.310779, 21.106182 ], [ -157.239579, 21.221198 ], [ -156.982162, 21.210244 ] ] ], [ [ [ -157.951581, 21.697691 ], [ -157.842042, 21.462183 ], [ -157.896811, 21.325259 ], [ -158.110412, 21.303352 ], [ -158.252813, 21.582676 ], [ -158.126843, 21.588153 ], [ -157.951581, 21.697691 ] ] ], [ [ [ -159.468693, 22.228955 ], [ -159.353678, 22.218001 ], [ -159.298908, 22.113939 ], [ -159.33177, 21.966061 ], [ -159.446786, 21.872953 ], [ -159.764448, 21.987969 ], [ -159.726109, 22.152277 ], [ -159.468693, 22.228955 ] ] ] ] } }, +{ "type": "Feature", "id": "16", "properties": { "name": "Idaho", "density": 19.15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.04751, 49.000239 ], [ -116.04751, 47.976051 ], [ -115.724371, 47.696727 ], [ -115.718894, 47.42288 ], [ -115.527201, 47.302388 ], [ -115.324554, 47.258572 ], [ -115.302646, 47.187372 ], [ -114.930214, 46.919002 ], [ -114.886399, 46.809463 ], [ -114.623506, 46.705401 ], [ -114.612552, 46.639678 ], [ -114.322274, 46.645155 ], [ -114.464674, 46.272723 ], [ -114.492059, 46.037214 ], [ -114.387997, 45.88386 ], [ -114.568736, 45.774321 ], [ -114.497536, 45.670259 ], [ -114.546828, 45.560721 ], [ -114.333228, 45.456659 ], [ -114.086765, 45.593582 ], [ -113.98818, 45.703121 ], [ -113.807441, 45.604536 ], [ -113.834826, 45.522382 ], [ -113.736241, 45.330689 ], [ -113.571933, 45.128042 ], [ -113.45144, 45.056842 ], [ -113.456917, 44.865149 ], [ -113.341901, 44.782995 ], [ -113.133778, 44.772041 ], [ -113.002331, 44.448902 ], [ -112.887315, 44.394132 ], [ -112.783254, 44.48724 ], [ -112.471068, 44.481763 ], [ -112.241036, 44.569394 ], [ -112.104113, 44.520102 ], [ -111.868605, 44.563917 ], [ -111.819312, 44.509148 ], [ -111.616665, 44.547487 ], [ -111.386634, 44.75561 ], [ -111.227803, 44.580348 ], [ -111.047063, 44.476286 ], [ -111.047063, 42.000709 ], [ -112.164359, 41.995232 ], [ -114.04295, 41.995232 ], [ -117.027882, 42.000709 ], [ -117.027882, 43.830007 ], [ -116.896436, 44.158624 ], [ -116.97859, 44.240778 ], [ -117.170283, 44.257209 ], [ -117.241483, 44.394132 ], [ -117.038836, 44.750133 ], [ -116.934774, 44.782995 ], [ -116.830713, 44.930872 ], [ -116.847143, 45.02398 ], [ -116.732128, 45.144473 ], [ -116.671881, 45.319735 ], [ -116.463758, 45.61549 ], [ -116.545912, 45.752413 ], [ -116.78142, 45.823614 ], [ -116.918344, 45.993399 ], [ -116.92382, 46.168661 ], [ -117.055267, 46.343923 ], [ -117.038836, 46.426077 ], [ -117.044313, 47.762451 ], [ -117.033359, 49.000239 ], [ -116.04751, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "17", "properties": { "name": "Illinois", "density": 231.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.639984, 42.510065 ], [ -88.788778, 42.493634 ], [ -87.802929, 42.493634 ], [ -87.83579, 42.301941 ], [ -87.682436, 42.077386 ], [ -87.523605, 41.710431 ], [ -87.529082, 39.34987 ], [ -87.63862, 39.169131 ], [ -87.512651, 38.95553 ], [ -87.49622, 38.780268 ], [ -87.62219, 38.637868 ], [ -87.655051, 38.506421 ], [ -87.83579, 38.292821 ], [ -87.950806, 38.27639 ], [ -87.923421, 38.15042 ], [ -88.000098, 38.101128 ], [ -88.060345, 37.865619 ], [ -88.027483, 37.799896 ], [ -88.15893, 37.657496 ], [ -88.065822, 37.482234 ], [ -88.476592, 37.389126 ], [ -88.514931, 37.285064 ], [ -88.421823, 37.153617 ], [ -88.547792, 37.071463 ], [ -88.914747, 37.224817 ], [ -89.029763, 37.213863 ], [ -89.183118, 37.038601 ], [ -89.133825, 36.983832 ], [ -89.292656, 36.994786 ], [ -89.517211, 37.279587 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.537003 ], [ -89.517211, 37.690357 ], [ -89.84035, 37.903958 ], [ -89.949889, 37.88205 ], [ -90.059428, 38.013497 ], [ -90.355183, 38.216144 ], [ -90.349706, 38.374975 ], [ -90.179921, 38.632391 ], [ -90.207305, 38.725499 ], [ -90.10872, 38.845992 ], [ -90.251121, 38.917192 ], [ -90.470199, 38.961007 ], [ -90.585214, 38.867899 ], [ -90.661891, 38.928146 ], [ -90.727615, 39.256762 ], [ -91.061708, 39.470363 ], [ -91.368417, 39.727779 ], [ -91.494386, 40.034488 ], [ -91.50534, 40.237135 ], [ -91.417709, 40.379535 ], [ -91.401278, 40.560274 ], [ -91.121954, 40.669813 ], [ -91.09457, 40.823167 ], [ -90.963123, 40.921752 ], [ -90.946692, 41.097014 ], [ -91.111001, 41.239415 ], [ -91.045277, 41.414677 ], [ -90.656414, 41.463969 ], [ -90.344229, 41.589939 ], [ -90.311367, 41.743293 ], [ -90.179921, 41.809016 ], [ -90.141582, 42.000709 ], [ -90.168967, 42.126679 ], [ -90.393521, 42.225264 ], [ -90.420906, 42.329326 ], [ -90.639984, 42.510065 ] ] ] } }, +{ "type": "Feature", "id": "18", "properties": { "name": "Indiana", "density": 181.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.990061, 41.759724 ], [ -84.807042, 41.759724 ], [ -84.807042, 41.694001 ], [ -84.801565, 40.500028 ], [ -84.817996, 39.103408 ], [ -84.894673, 39.059592 ], [ -84.812519, 38.785745 ], [ -84.987781, 38.780268 ], [ -85.173997, 38.68716 ], [ -85.431413, 38.730976 ], [ -85.42046, 38.533806 ], [ -85.590245, 38.451652 ], [ -85.655968, 38.325682 ], [ -85.83123, 38.27639 ], [ -85.924338, 38.024451 ], [ -86.039354, 37.958727 ], [ -86.263908, 38.051835 ], [ -86.302247, 38.166851 ], [ -86.521325, 38.040881 ], [ -86.504894, 37.931343 ], [ -86.729448, 37.893004 ], [ -86.795172, 37.991589 ], [ -87.047111, 37.893004 ], [ -87.129265, 37.788942 ], [ -87.381204, 37.93682 ], [ -87.512651, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.682436, 37.903958 ], [ -87.934375, 37.893004 ], [ -88.027483, 37.799896 ], [ -88.060345, 37.865619 ], [ -88.000098, 38.101128 ], [ -87.923421, 38.15042 ], [ -87.950806, 38.27639 ], [ -87.83579, 38.292821 ], [ -87.655051, 38.506421 ], [ -87.62219, 38.637868 ], [ -87.49622, 38.780268 ], [ -87.512651, 38.95553 ], [ -87.63862, 39.169131 ], [ -87.529082, 39.34987 ], [ -87.523605, 41.710431 ], [ -87.42502, 41.644708 ], [ -87.118311, 41.644708 ], [ -86.822556, 41.759724 ], [ -85.990061, 41.759724 ] ] ] } }, +{ "type": "Feature", "id": "19", "properties": { "name": "Iowa", "density": 54.81 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.368417, 43.501391 ], [ -91.215062, 43.501391 ], [ -91.204109, 43.353514 ], [ -91.056231, 43.254929 ], [ -91.176724, 43.134436 ], [ -91.143862, 42.909881 ], [ -91.067185, 42.75105 ], [ -90.711184, 42.636034 ], [ -90.639984, 42.510065 ], [ -90.420906, 42.329326 ], [ -90.393521, 42.225264 ], [ -90.168967, 42.126679 ], [ -90.141582, 42.000709 ], [ -90.179921, 41.809016 ], [ -90.311367, 41.743293 ], [ -90.344229, 41.589939 ], [ -90.656414, 41.463969 ], [ -91.045277, 41.414677 ], [ -91.111001, 41.239415 ], [ -90.946692, 41.097014 ], [ -90.963123, 40.921752 ], [ -91.09457, 40.823167 ], [ -91.121954, 40.669813 ], [ -91.401278, 40.560274 ], [ -91.417709, 40.379535 ], [ -91.527248, 40.412397 ], [ -91.729895, 40.615043 ], [ -91.833957, 40.609566 ], [ -93.257961, 40.582182 ], [ -94.632673, 40.571228 ], [ -95.7664, 40.587659 ], [ -95.881416, 40.719105 ], [ -95.826646, 40.976521 ], [ -95.925231, 41.201076 ], [ -95.919754, 41.453015 ], [ -96.095016, 41.540646 ], [ -96.122401, 41.67757 ], [ -96.062155, 41.798063 ], [ -96.127878, 41.973325 ], [ -96.264801, 42.039048 ], [ -96.44554, 42.488157 ], [ -96.631756, 42.707235 ], [ -96.544125, 42.855112 ], [ -96.511264, 43.052282 ], [ -96.434587, 43.123482 ], [ -96.560556, 43.222067 ], [ -96.527695, 43.397329 ], [ -96.582464, 43.479483 ], [ -96.451017, 43.501391 ], [ -91.368417, 43.501391 ] ] ] } }, +{ "type": "Feature", "id": "20", "properties": { "name": "Kansas", "density": 35.09 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.90605, 40.001626 ], [ -95.306337, 40.001626 ], [ -95.207752, 39.908518 ], [ -94.884612, 39.831841 ], [ -95.109167, 39.541563 ], [ -94.983197, 39.442978 ], [ -94.824366, 39.20747 ], [ -94.610765, 39.158177 ], [ -94.616242, 37.000263 ], [ -100.087706, 37.000263 ], [ -102.042974, 36.994786 ], [ -102.053927, 40.001626 ], [ -101.90605, 40.001626 ] ] ] } }, +{ "type": "Feature", "id": "21", "properties": { "name": "Kentucky", "density": 110.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.903347, 38.769315 ], [ -83.678792, 38.632391 ], [ -83.519961, 38.703591 ], [ -83.142052, 38.626914 ], [ -83.032514, 38.725499 ], [ -82.890113, 38.758361 ], [ -82.846298, 38.588575 ], [ -82.731282, 38.561191 ], [ -82.594358, 38.424267 ], [ -82.621743, 38.123036 ], [ -82.50125, 37.931343 ], [ -82.342419, 37.783465 ], [ -82.293127, 37.668449 ], [ -82.101434, 37.553434 ], [ -81.969987, 37.537003 ], [ -82.353373, 37.268633 ], [ -82.720328, 37.120755 ], [ -82.720328, 37.044078 ], [ -82.868205, 36.978355 ], [ -82.879159, 36.890724 ], [ -83.070852, 36.852385 ], [ -83.136575, 36.742847 ], [ -83.673316, 36.600446 ], [ -83.689746, 36.584015 ], [ -84.544149, 36.594969 ], [ -85.289013, 36.627831 ], [ -85.486183, 36.616877 ], [ -86.592525, 36.655216 ], [ -87.852221, 36.633308 ], [ -88.071299, 36.677123 ], [ -88.054868, 36.496384 ], [ -89.298133, 36.507338 ], [ -89.418626, 36.496384 ], [ -89.363857, 36.622354 ], [ -89.215979, 36.578538 ], [ -89.133825, 36.983832 ], [ -89.183118, 37.038601 ], [ -89.029763, 37.213863 ], [ -88.914747, 37.224817 ], [ -88.547792, 37.071463 ], [ -88.421823, 37.153617 ], [ -88.514931, 37.285064 ], [ -88.476592, 37.389126 ], [ -88.065822, 37.482234 ], [ -88.15893, 37.657496 ], [ -88.027483, 37.799896 ], [ -87.934375, 37.893004 ], [ -87.682436, 37.903958 ], [ -87.600282, 37.975158 ], [ -87.512651, 37.903958 ], [ -87.381204, 37.93682 ], [ -87.129265, 37.788942 ], [ -87.047111, 37.893004 ], [ -86.795172, 37.991589 ], [ -86.729448, 37.893004 ], [ -86.504894, 37.931343 ], [ -86.521325, 38.040881 ], [ -86.302247, 38.166851 ], [ -86.263908, 38.051835 ], [ -86.039354, 37.958727 ], [ -85.924338, 38.024451 ], [ -85.83123, 38.27639 ], [ -85.655968, 38.325682 ], [ -85.590245, 38.451652 ], [ -85.42046, 38.533806 ], [ -85.431413, 38.730976 ], [ -85.173997, 38.68716 ], [ -84.987781, 38.780268 ], [ -84.812519, 38.785745 ], [ -84.894673, 39.059592 ], [ -84.817996, 39.103408 ], [ -84.43461, 39.103408 ], [ -84.231963, 38.895284 ], [ -84.215533, 38.807653 ], [ -83.903347, 38.769315 ] ] ] } }, +{ "type": "Feature", "id": "22", "properties": { "name": "Louisiana", "density": 105.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.608485, 33.018527 ], [ -91.16577, 33.002096 ], [ -91.072662, 32.887081 ], [ -91.143862, 32.843265 ], [ -91.154816, 32.640618 ], [ -91.006939, 32.514649 ], [ -90.985031, 32.218894 ], [ -91.105524, 31.988862 ], [ -91.341032, 31.846462 ], [ -91.401278, 31.621907 ], [ -91.499863, 31.643815 ], [ -91.516294, 31.27686 ], [ -91.636787, 31.265906 ], [ -91.565587, 31.068736 ], [ -91.636787, 30.997536 ], [ -89.747242, 30.997536 ], [ -89.845827, 30.66892 ], [ -89.681519, 30.449842 ], [ -89.643181, 30.285534 ], [ -89.522688, 30.181472 ], [ -89.818443, 30.044549 ], [ -89.84035, 29.945964 ], [ -89.599365, 29.88024 ], [ -89.495303, 30.039072 ], [ -89.287179, 29.88024 ], [ -89.30361, 29.754271 ], [ -89.424103, 29.699501 ], [ -89.648657, 29.748794 ], [ -89.621273, 29.655686 ], [ -89.69795, 29.513285 ], [ -89.506257, 29.387316 ], [ -89.199548, 29.348977 ], [ -89.09001, 29.2011 ], [ -89.002379, 29.179192 ], [ -89.16121, 29.009407 ], [ -89.336472, 29.042268 ], [ -89.484349, 29.217531 ], [ -89.851304, 29.310638 ], [ -89.851304, 29.480424 ], [ -90.032043, 29.425654 ], [ -90.021089, 29.283254 ], [ -90.103244, 29.151807 ], [ -90.23469, 29.129899 ], [ -90.333275, 29.277777 ], [ -90.563307, 29.283254 ], [ -90.645461, 29.129899 ], [ -90.798815, 29.086084 ], [ -90.963123, 29.179192 ], [ -91.09457, 29.190146 ], [ -91.220539, 29.436608 ], [ -91.445094, 29.546147 ], [ -91.532725, 29.529716 ], [ -91.620356, 29.73784 ], [ -91.883249, 29.710455 ], [ -91.888726, 29.836425 ], [ -92.146142, 29.715932 ], [ -92.113281, 29.622824 ], [ -92.31045, 29.535193 ], [ -92.617159, 29.579009 ], [ -92.97316, 29.715932 ], [ -93.2251, 29.776178 ], [ -93.767317, 29.726886 ], [ -93.838517, 29.688547 ], [ -93.926148, 29.787132 ], [ -93.690639, 30.143133 ], [ -93.767317, 30.334826 ], [ -93.696116, 30.438888 ], [ -93.728978, 30.575812 ], [ -93.630393, 30.679874 ], [ -93.526331, 30.93729 ], [ -93.542762, 31.15089 ], [ -93.816609, 31.556184 ], [ -93.822086, 31.775262 ], [ -94.041164, 31.994339 ], [ -94.041164, 33.018527 ], [ -93.608485, 33.018527 ] ] ] } }, +{ "type": "Feature", "id": "23", "properties": { "name": "Maine", "density": 43.04 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.703921, 43.057759 ], [ -70.824413, 43.128959 ], [ -70.807983, 43.227544 ], [ -70.966814, 43.34256 ], [ -71.032537, 44.657025 ], [ -71.08183, 45.303304 ], [ -70.649151, 45.440228 ], [ -70.720352, 45.511428 ], [ -70.556043, 45.664782 ], [ -70.386258, 45.735983 ], [ -70.41912, 45.796229 ], [ -70.260289, 45.889337 ], [ -70.309581, 46.064599 ], [ -70.210996, 46.327492 ], [ -70.057642, 46.415123 ], [ -69.997395, 46.694447 ], [ -69.225147, 47.461219 ], [ -69.044408, 47.428357 ], [ -69.033454, 47.242141 ], [ -68.902007, 47.176418 ], [ -68.578868, 47.285957 ], [ -68.376221, 47.285957 ], [ -68.233821, 47.357157 ], [ -67.954497, 47.198326 ], [ -67.790188, 47.066879 ], [ -67.779235, 45.944106 ], [ -67.801142, 45.675736 ], [ -67.456095, 45.604536 ], [ -67.505388, 45.48952 ], [ -67.417757, 45.379982 ], [ -67.488957, 45.281397 ], [ -67.346556, 45.128042 ], [ -67.16034, 45.160904 ], [ -66.979601, 44.804903 ], [ -67.187725, 44.646072 ], [ -67.308218, 44.706318 ], [ -67.406803, 44.596779 ], [ -67.549203, 44.624164 ], [ -67.565634, 44.531056 ], [ -67.75185, 44.54201 ], [ -68.047605, 44.328409 ], [ -68.118805, 44.476286 ], [ -68.222867, 44.48724 ], [ -68.173574, 44.328409 ], [ -68.403606, 44.251732 ], [ -68.458375, 44.377701 ], [ -68.567914, 44.311978 ], [ -68.82533, 44.311978 ], [ -68.830807, 44.459856 ], [ -68.984161, 44.426994 ], [ -68.956777, 44.322932 ], [ -69.099177, 44.103854 ], [ -69.071793, 44.043608 ], [ -69.258008, 43.923115 ], [ -69.444224, 43.966931 ], [ -69.553763, 43.840961 ], [ -69.707118, 43.82453 ], [ -69.833087, 43.720469 ], [ -69.986442, 43.742376 ], [ -70.030257, 43.851915 ], [ -70.254812, 43.676653 ], [ -70.194565, 43.567114 ], [ -70.358873, 43.528776 ], [ -70.369827, 43.435668 ], [ -70.556043, 43.320652 ], [ -70.703921, 43.057759 ] ] ] } }, +{ "type": "Feature", "id": "24", "properties": { "name": "Maryland", "density": 596.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.994645, 37.95325 ], [ -76.016553, 37.95325 ], [ -76.043938, 37.95325 ], [ -75.994645, 37.95325 ] ] ], [ [ [ -79.477979, 39.722302 ], [ -75.786521, 39.722302 ], [ -75.693413, 38.462606 ], [ -75.047134, 38.451652 ], [ -75.244304, 38.029928 ], [ -75.397659, 38.013497 ], [ -75.671506, 37.95325 ], [ -75.885106, 37.909435 ], [ -75.879629, 38.073743 ], [ -75.961783, 38.139466 ], [ -75.846768, 38.210667 ], [ -76.000122, 38.374975 ], [ -76.049415, 38.303775 ], [ -76.257538, 38.320205 ], [ -76.328738, 38.500944 ], [ -76.263015, 38.500944 ], [ -76.257538, 38.736453 ], [ -76.191815, 38.829561 ], [ -76.279446, 39.147223 ], [ -76.169907, 39.333439 ], [ -76.000122, 39.366301 ], [ -75.972737, 39.557994 ], [ -76.098707, 39.536086 ], [ -76.104184, 39.437501 ], [ -76.367077, 39.311532 ], [ -76.443754, 39.196516 ], [ -76.460185, 38.906238 ], [ -76.55877, 38.769315 ], [ -76.514954, 38.539283 ], [ -76.383508, 38.380452 ], [ -76.399939, 38.259959 ], [ -76.317785, 38.139466 ], [ -76.3616, 38.057312 ], [ -76.591632, 38.216144 ], [ -76.920248, 38.292821 ], [ -77.018833, 38.446175 ], [ -77.205049, 38.358544 ], [ -77.276249, 38.479037 ], [ -77.128372, 38.632391 ], [ -77.040741, 38.791222 ], [ -76.909294, 38.895284 ], [ -77.035264, 38.993869 ], [ -77.117418, 38.933623 ], [ -77.248864, 39.026731 ], [ -77.456988, 39.076023 ], [ -77.456988, 39.223901 ], [ -77.566527, 39.306055 ], [ -77.719881, 39.322485 ], [ -77.834897, 39.601809 ], [ -78.004682, 39.601809 ], [ -78.174467, 39.694917 ], [ -78.267575, 39.61824 ], [ -78.431884, 39.623717 ], [ -78.470222, 39.514178 ], [ -78.765977, 39.585379 ], [ -78.963147, 39.437501 ], [ -79.094593, 39.470363 ], [ -79.291763, 39.300578 ], [ -79.488933, 39.20747 ], [ -79.477979, 39.722302 ] ] ] ] } }, +{ "type": "Feature", "id": "25", "properties": { "name": "Massachusetts", "density": 840.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.917521, 42.887974 ], [ -70.818936, 42.871543 ], [ -70.780598, 42.696281 ], [ -70.824413, 42.55388 ], [ -70.983245, 42.422434 ], [ -70.988722, 42.269079 ], [ -70.769644, 42.247172 ], [ -70.638197, 42.08834 ], [ -70.660105, 41.962371 ], [ -70.550566, 41.929509 ], [ -70.539613, 41.814493 ], [ -70.260289, 41.715908 ], [ -69.937149, 41.809016 ], [ -70.008349, 41.672093 ], [ -70.484843, 41.5516 ], [ -70.660105, 41.546123 ], [ -70.764167, 41.639231 ], [ -70.928475, 41.611847 ], [ -70.933952, 41.540646 ], [ -71.120168, 41.496831 ], [ -71.196845, 41.67757 ], [ -71.22423, 41.710431 ], [ -71.328292, 41.781632 ], [ -71.383061, 42.01714 ], [ -71.530939, 42.01714 ], [ -71.799309, 42.006186 ], [ -71.799309, 42.022617 ], [ -73.053528, 42.039048 ], [ -73.486206, 42.050002 ], [ -73.508114, 42.08834 ], [ -73.267129, 42.745573 ], [ -72.456542, 42.729142 ], [ -71.29543, 42.696281 ], [ -71.185891, 42.789389 ], [ -70.917521, 42.887974 ] ] ] } }, +{ "type": "Feature", "id": "26", "properties": { "name": "Michigan", "density": 173.9 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -83.454238, 41.732339 ], [ -84.807042, 41.694001 ], [ -84.807042, 41.759724 ], [ -85.990061, 41.759724 ], [ -86.822556, 41.759724 ], [ -86.619909, 41.891171 ], [ -86.482986, 42.115725 ], [ -86.357016, 42.252649 ], [ -86.263908, 42.444341 ], [ -86.209139, 42.718189 ], [ -86.231047, 43.013943 ], [ -86.526801, 43.594499 ], [ -86.433693, 43.813577 ], [ -86.499417, 44.07647 ], [ -86.269385, 44.34484 ], [ -86.220093, 44.569394 ], [ -86.252954, 44.689887 ], [ -86.088646, 44.73918 ], [ -86.066738, 44.903488 ], [ -85.809322, 44.947303 ], [ -85.612152, 45.128042 ], [ -85.628583, 44.766564 ], [ -85.524521, 44.750133 ], [ -85.393075, 44.930872 ], [ -85.387598, 45.237581 ], [ -85.305444, 45.314258 ], [ -85.031597, 45.363551 ], [ -85.119228, 45.577151 ], [ -84.938489, 45.75789 ], [ -84.713934, 45.768844 ], [ -84.461995, 45.653829 ], [ -84.215533, 45.637398 ], [ -84.09504, 45.494997 ], [ -83.908824, 45.484043 ], [ -83.596638, 45.352597 ], [ -83.4871, 45.358074 ], [ -83.317314, 45.144473 ], [ -83.454238, 45.029457 ], [ -83.322791, 44.88158 ], [ -83.273499, 44.711795 ], [ -83.333745, 44.339363 ], [ -83.536392, 44.246255 ], [ -83.585684, 44.054562 ], [ -83.82667, 43.988839 ], [ -83.958116, 43.758807 ], [ -83.908824, 43.671176 ], [ -83.667839, 43.589022 ], [ -83.481623, 43.714992 ], [ -83.262545, 43.972408 ], [ -82.917498, 44.070993 ], [ -82.747713, 43.994316 ], [ -82.643651, 43.851915 ], [ -82.539589, 43.435668 ], [ -82.523158, 43.227544 ], [ -82.413619, 42.975605 ], [ -82.517681, 42.614127 ], [ -82.681989, 42.559357 ], [ -82.687466, 42.690804 ], [ -82.797005, 42.652465 ], [ -82.922975, 42.351234 ], [ -83.125621, 42.236218 ], [ -83.185868, 42.006186 ], [ -83.437807, 41.814493 ], [ -83.454238, 41.732339 ] ] ], [ [ [ -85.508091, 45.730506 ], [ -85.49166, 45.610013 ], [ -85.623106, 45.588105 ], [ -85.568337, 45.75789 ], [ -85.508091, 45.730506 ] ] ], [ [ [ -87.589328, 45.095181 ], [ -87.742682, 45.199243 ], [ -87.649574, 45.341643 ], [ -87.885083, 45.363551 ], [ -87.791975, 45.500474 ], [ -87.781021, 45.675736 ], [ -87.989145, 45.796229 ], [ -88.10416, 45.922199 ], [ -88.531362, 46.020784 ], [ -88.662808, 45.987922 ], [ -89.09001, 46.135799 ], [ -90.119674, 46.338446 ], [ -90.229213, 46.508231 ], [ -90.415429, 46.568478 ], [ -90.026566, 46.672539 ], [ -89.851304, 46.793032 ], [ -89.413149, 46.842325 ], [ -89.128348, 46.990202 ], [ -88.996902, 46.995679 ], [ -88.887363, 47.099741 ], [ -88.575177, 47.247618 ], [ -88.416346, 47.373588 ], [ -88.180837, 47.455742 ], [ -87.956283, 47.384542 ], [ -88.350623, 47.077833 ], [ -88.443731, 46.973771 ], [ -88.438254, 46.787555 ], [ -88.246561, 46.929956 ], [ -87.901513, 46.908048 ], [ -87.633143, 46.809463 ], [ -87.392158, 46.535616 ], [ -87.260711, 46.486323 ], [ -87.008772, 46.530139 ], [ -86.948526, 46.469893 ], [ -86.696587, 46.437031 ], [ -86.159846, 46.667063 ], [ -85.880522, 46.68897 ], [ -85.508091, 46.678016 ], [ -85.256151, 46.754694 ], [ -85.064458, 46.760171 ], [ -85.02612, 46.480847 ], [ -84.82895, 46.442508 ], [ -84.63178, 46.486323 ], [ -84.549626, 46.4206 ], [ -84.418179, 46.502754 ], [ -84.127902, 46.530139 ], [ -84.122425, 46.179615 ], [ -83.990978, 46.031737 ], [ -83.793808, 45.993399 ], [ -83.7719, 46.091984 ], [ -83.580208, 46.091984 ], [ -83.476146, 45.987922 ], [ -83.563777, 45.911245 ], [ -84.111471, 45.976968 ], [ -84.374364, 45.933153 ], [ -84.659165, 46.053645 ], [ -84.741319, 45.944106 ], [ -84.70298, 45.850998 ], [ -84.82895, 45.872906 ], [ -85.015166, 46.00983 ], [ -85.338305, 46.091984 ], [ -85.502614, 46.097461 ], [ -85.661445, 45.966014 ], [ -85.924338, 45.933153 ], [ -86.209139, 45.960537 ], [ -86.324155, 45.905768 ], [ -86.351539, 45.796229 ], [ -86.663725, 45.703121 ], [ -86.647294, 45.834568 ], [ -86.784218, 45.861952 ], [ -86.838987, 45.725029 ], [ -87.069019, 45.719552 ], [ -87.17308, 45.659305 ], [ -87.326435, 45.423797 ], [ -87.611236, 45.122565 ], [ -87.589328, 45.095181 ] ] ], [ [ [ -88.805209, 47.976051 ], [ -89.057148, 47.850082 ], [ -89.188594, 47.833651 ], [ -89.177641, 47.937713 ], [ -88.547792, 48.173221 ], [ -88.668285, 48.008913 ], [ -88.805209, 47.976051 ] ] ] ] } }, +{ "type": "Feature", "id": "27", "properties": { "name": "Minnesota", "density": 67.14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -92.014696, 46.705401 ], [ -92.091373, 46.749217 ], [ -92.29402, 46.667063 ], [ -92.29402, 46.075553 ], [ -92.354266, 46.015307 ], [ -92.639067, 45.933153 ], [ -92.869098, 45.719552 ], [ -92.885529, 45.577151 ], [ -92.770513, 45.566198 ], [ -92.644544, 45.440228 ], [ -92.75956, 45.286874 ], [ -92.737652, 45.117088 ], [ -92.808852, 44.750133 ], [ -92.545959, 44.569394 ], [ -92.337835, 44.552964 ], [ -92.233773, 44.443425 ], [ -91.927065, 44.333886 ], [ -91.877772, 44.202439 ], [ -91.592971, 44.032654 ], [ -91.43414, 43.994316 ], [ -91.242447, 43.775238 ], [ -91.269832, 43.616407 ], [ -91.215062, 43.501391 ], [ -91.368417, 43.501391 ], [ -96.451017, 43.501391 ], [ -96.451017, 45.297827 ], [ -96.681049, 45.412843 ], [ -96.856311, 45.604536 ], [ -96.582464, 45.818137 ], [ -96.560556, 45.933153 ], [ -96.598895, 46.332969 ], [ -96.719387, 46.437031 ], [ -96.801542, 46.656109 ], [ -96.785111, 46.924479 ], [ -96.823449, 46.968294 ], [ -96.856311, 47.609096 ], [ -97.053481, 47.948667 ], [ -97.130158, 48.140359 ], [ -97.16302, 48.545653 ], [ -97.097296, 48.682577 ], [ -97.228743, 49.000239 ], [ -95.152983, 49.000239 ], [ -95.152983, 49.383625 ], [ -94.955813, 49.372671 ], [ -94.824366, 49.295994 ], [ -94.69292, 48.775685 ], [ -94.588858, 48.715438 ], [ -94.260241, 48.699007 ], [ -94.221903, 48.649715 ], [ -93.838517, 48.627807 ], [ -93.794701, 48.518268 ], [ -93.466085, 48.545653 ], [ -93.466085, 48.589469 ], [ -93.208669, 48.644238 ], [ -92.984114, 48.62233 ], [ -92.726698, 48.540176 ], [ -92.655498, 48.436114 ], [ -92.50762, 48.447068 ], [ -92.370697, 48.222514 ], [ -92.304974, 48.315622 ], [ -92.053034, 48.359437 ], [ -92.009219, 48.266329 ], [ -91.713464, 48.200606 ], [ -91.713464, 48.112975 ], [ -91.565587, 48.041775 ], [ -91.264355, 48.080113 ], [ -91.083616, 48.178698 ], [ -90.837154, 48.238944 ], [ -90.749522, 48.091067 ], [ -90.579737, 48.123929 ], [ -90.377091, 48.091067 ], [ -90.141582, 48.112975 ], [ -89.873212, 47.987005 ], [ -89.615796, 48.008913 ], [ -89.637704, 47.954144 ], [ -89.971797, 47.828174 ], [ -90.437337, 47.729589 ], [ -90.738569, 47.625527 ], [ -91.171247, 47.368111 ], [ -91.357463, 47.20928 ], [ -91.642264, 47.028541 ], [ -92.091373, 46.787555 ], [ -92.014696, 46.705401 ] ] ] } }, +{ "type": "Feature", "id": "28", "properties": { "name": "Mississippi", "density": 63.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.471115, 34.995703 ], [ -88.202745, 34.995703 ], [ -88.098683, 34.891641 ], [ -88.241084, 33.796253 ], [ -88.471115, 31.895754 ], [ -88.394438, 30.367688 ], [ -88.503977, 30.323872 ], [ -88.744962, 30.34578 ], [ -88.843547, 30.411504 ], [ -89.084533, 30.367688 ], [ -89.418626, 30.252672 ], [ -89.522688, 30.181472 ], [ -89.643181, 30.285534 ], [ -89.681519, 30.449842 ], [ -89.845827, 30.66892 ], [ -89.747242, 30.997536 ], [ -91.636787, 30.997536 ], [ -91.565587, 31.068736 ], [ -91.636787, 31.265906 ], [ -91.516294, 31.27686 ], [ -91.499863, 31.643815 ], [ -91.401278, 31.621907 ], [ -91.341032, 31.846462 ], [ -91.105524, 31.988862 ], [ -90.985031, 32.218894 ], [ -91.006939, 32.514649 ], [ -91.154816, 32.640618 ], [ -91.143862, 32.843265 ], [ -91.072662, 32.887081 ], [ -91.16577, 33.002096 ], [ -91.089093, 33.13902 ], [ -91.143862, 33.347144 ], [ -91.056231, 33.429298 ], [ -91.231493, 33.560744 ], [ -91.072662, 33.867453 ], [ -90.891923, 34.026284 ], [ -90.952169, 34.135823 ], [ -90.744046, 34.300131 ], [ -90.749522, 34.365854 ], [ -90.568783, 34.420624 ], [ -90.585214, 34.617794 ], [ -90.481152, 34.661609 ], [ -90.409952, 34.831394 ], [ -90.251121, 34.908072 ], [ -90.311367, 34.995703 ], [ -88.471115, 34.995703 ] ] ] } }, +{ "type": "Feature", "id": "29", "properties": { "name": "Missouri", "density": 87.26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.833957, 40.609566 ], [ -91.729895, 40.615043 ], [ -91.527248, 40.412397 ], [ -91.417709, 40.379535 ], [ -91.50534, 40.237135 ], [ -91.494386, 40.034488 ], [ -91.368417, 39.727779 ], [ -91.061708, 39.470363 ], [ -90.727615, 39.256762 ], [ -90.661891, 38.928146 ], [ -90.585214, 38.867899 ], [ -90.470199, 38.961007 ], [ -90.251121, 38.917192 ], [ -90.10872, 38.845992 ], [ -90.207305, 38.725499 ], [ -90.179921, 38.632391 ], [ -90.349706, 38.374975 ], [ -90.355183, 38.216144 ], [ -90.059428, 38.013497 ], [ -89.949889, 37.88205 ], [ -89.84035, 37.903958 ], [ -89.517211, 37.690357 ], [ -89.517211, 37.537003 ], [ -89.435057, 37.34531 ], [ -89.517211, 37.279587 ], [ -89.292656, 36.994786 ], [ -89.133825, 36.983832 ], [ -89.215979, 36.578538 ], [ -89.363857, 36.622354 ], [ -89.418626, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.539119, 36.496384 ], [ -89.533642, 36.249922 ], [ -89.730812, 35.997983 ], [ -90.377091, 35.997983 ], [ -90.218259, 36.184199 ], [ -90.064905, 36.304691 ], [ -90.152536, 36.496384 ], [ -94.473842, 36.501861 ], [ -94.616242, 36.501861 ], [ -94.616242, 37.000263 ], [ -94.610765, 39.158177 ], [ -94.824366, 39.20747 ], [ -94.983197, 39.442978 ], [ -95.109167, 39.541563 ], [ -94.884612, 39.831841 ], [ -95.207752, 39.908518 ], [ -95.306337, 40.001626 ], [ -95.552799, 40.264519 ], [ -95.7664, 40.587659 ], [ -94.632673, 40.571228 ], [ -93.257961, 40.582182 ], [ -91.833957, 40.609566 ] ] ] } }, +{ "type": "Feature", "id": "30", "properties": { "name": "Montana", "density": 6.858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 49.000239 ], [ -104.042057, 47.861036 ], [ -104.047534, 45.944106 ], [ -104.042057, 44.996596 ], [ -104.058488, 44.996596 ], [ -105.91517, 45.002073 ], [ -109.080842, 45.002073 ], [ -111.05254, 45.002073 ], [ -111.047063, 44.476286 ], [ -111.227803, 44.580348 ], [ -111.386634, 44.75561 ], [ -111.616665, 44.547487 ], [ -111.819312, 44.509148 ], [ -111.868605, 44.563917 ], [ -112.104113, 44.520102 ], [ -112.241036, 44.569394 ], [ -112.471068, 44.481763 ], [ -112.783254, 44.48724 ], [ -112.887315, 44.394132 ], [ -113.002331, 44.448902 ], [ -113.133778, 44.772041 ], [ -113.341901, 44.782995 ], [ -113.456917, 44.865149 ], [ -113.45144, 45.056842 ], [ -113.571933, 45.128042 ], [ -113.736241, 45.330689 ], [ -113.834826, 45.522382 ], [ -113.807441, 45.604536 ], [ -113.98818, 45.703121 ], [ -114.086765, 45.593582 ], [ -114.333228, 45.456659 ], [ -114.546828, 45.560721 ], [ -114.497536, 45.670259 ], [ -114.568736, 45.774321 ], [ -114.387997, 45.88386 ], [ -114.492059, 46.037214 ], [ -114.464674, 46.272723 ], [ -114.322274, 46.645155 ], [ -114.612552, 46.639678 ], [ -114.623506, 46.705401 ], [ -114.886399, 46.809463 ], [ -114.930214, 46.919002 ], [ -115.302646, 47.187372 ], [ -115.324554, 47.258572 ], [ -115.527201, 47.302388 ], [ -115.718894, 47.42288 ], [ -115.724371, 47.696727 ], [ -116.04751, 47.976051 ], [ -116.04751, 49.000239 ], [ -111.50165, 48.994762 ], [ -109.453274, 49.000239 ], [ -104.047534, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "31", "properties": { "name": "Nebraska", "density": 23.97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -103.324578, 43.002989 ], [ -101.626726, 42.997512 ], [ -98.499393, 42.997512 ], [ -98.466531, 42.94822 ], [ -97.951699, 42.767481 ], [ -97.831206, 42.866066 ], [ -97.688806, 42.844158 ], [ -97.217789, 42.844158 ], [ -96.692003, 42.657942 ], [ -96.626279, 42.515542 ], [ -96.44554, 42.488157 ], [ -96.264801, 42.039048 ], [ -96.127878, 41.973325 ], [ -96.062155, 41.798063 ], [ -96.122401, 41.67757 ], [ -96.095016, 41.540646 ], [ -95.919754, 41.453015 ], [ -95.925231, 41.201076 ], [ -95.826646, 40.976521 ], [ -95.881416, 40.719105 ], [ -95.7664, 40.587659 ], [ -95.552799, 40.264519 ], [ -95.306337, 40.001626 ], [ -101.90605, 40.001626 ], [ -102.053927, 40.001626 ], [ -102.053927, 41.003906 ], [ -104.053011, 41.003906 ], [ -104.053011, 43.002989 ], [ -103.324578, 43.002989 ] ] ] } }, +{ "type": "Feature", "id": "32", "properties": { "name": "Nevada", "density": 24.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -117.027882, 42.000709 ], [ -114.04295, 41.995232 ], [ -114.048427, 37.000263 ], [ -114.048427, 36.195153 ], [ -114.152489, 36.025367 ], [ -114.251074, 36.01989 ], [ -114.371566, 36.140383 ], [ -114.738521, 36.102045 ], [ -114.678275, 35.516012 ], [ -114.596121, 35.324319 ], [ -114.574213, 35.138103 ], [ -114.634459, 35.00118 ], [ -115.85034, 35.970598 ], [ -116.540435, 36.501861 ], [ -117.498899, 37.21934 ], [ -118.71478, 38.101128 ], [ -120.001861, 38.999346 ], [ -119.996384, 40.264519 ], [ -120.001861, 41.995232 ], [ -118.698349, 41.989755 ], [ -117.027882, 42.000709 ] ] ] } }, +{ "type": "Feature", "id": "33", "properties": { "name": "New Hampshire", "density": 147.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.08183, 45.303304 ], [ -71.032537, 44.657025 ], [ -70.966814, 43.34256 ], [ -70.807983, 43.227544 ], [ -70.824413, 43.128959 ], [ -70.703921, 43.057759 ], [ -70.818936, 42.871543 ], [ -70.917521, 42.887974 ], [ -71.185891, 42.789389 ], [ -71.29543, 42.696281 ], [ -72.456542, 42.729142 ], [ -72.544173, 42.80582 ], [ -72.533219, 42.953697 ], [ -72.445588, 43.008466 ], [ -72.456542, 43.150867 ], [ -72.379864, 43.572591 ], [ -72.204602, 43.769761 ], [ -72.116971, 43.994316 ], [ -72.02934, 44.07647 ], [ -72.034817, 44.322932 ], [ -71.700724, 44.41604 ], [ -71.536416, 44.585825 ], [ -71.629524, 44.750133 ], [ -71.4926, 44.914442 ], [ -71.503554, 45.013027 ], [ -71.361154, 45.270443 ], [ -71.131122, 45.243058 ], [ -71.08183, 45.303304 ] ] ] } }, +{ "type": "Feature", "id": "34", "properties": { "name": "New Jersey", "density": 1189.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.236547, 41.14083 ], [ -73.902454, 40.998429 ], [ -74.022947, 40.708151 ], [ -74.187255, 40.642428 ], [ -74.274886, 40.489074 ], [ -74.001039, 40.412397 ], [ -73.979131, 40.297381 ], [ -74.099624, 39.760641 ], [ -74.411809, 39.360824 ], [ -74.614456, 39.245808 ], [ -74.795195, 38.993869 ], [ -74.888303, 39.158177 ], [ -75.178581, 39.240331 ], [ -75.534582, 39.459409 ], [ -75.55649, 39.607286 ], [ -75.561967, 39.629194 ], [ -75.507197, 39.683964 ], [ -75.414089, 39.804456 ], [ -75.145719, 39.88661 ], [ -75.129289, 39.963288 ], [ -74.82258, 40.127596 ], [ -74.773287, 40.215227 ], [ -75.058088, 40.417874 ], [ -75.069042, 40.543843 ], [ -75.195012, 40.576705 ], [ -75.205966, 40.691721 ], [ -75.052611, 40.866983 ], [ -75.134765, 40.971045 ], [ -74.882826, 41.179168 ], [ -74.828057, 41.288707 ], [ -74.69661, 41.359907 ], [ -74.236547, 41.14083 ] ] ] } }, +{ "type": "Feature", "id": "35", "properties": { "name": "New Mexico", "density": 17.16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.421329, 37.000263 ], [ -106.868158, 36.994786 ], [ -104.337812, 36.994786 ], [ -103.001438, 37.000263 ], [ -103.001438, 36.501861 ], [ -103.039777, 36.501861 ], [ -103.045254, 34.01533 ], [ -103.067161, 33.002096 ], [ -103.067161, 31.999816 ], [ -106.616219, 31.999816 ], [ -106.643603, 31.901231 ], [ -106.528588, 31.786216 ], [ -108.210008, 31.786216 ], [ -108.210008, 31.331629 ], [ -109.04798, 31.331629 ], [ -109.042503, 37.000263 ], [ -107.421329, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "36", "properties": { "name": "New York", "density": 412.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.343806, 45.013027 ], [ -73.332852, 44.804903 ], [ -73.387622, 44.618687 ], [ -73.294514, 44.437948 ], [ -73.321898, 44.246255 ], [ -73.436914, 44.043608 ], [ -73.349283, 43.769761 ], [ -73.404052, 43.687607 ], [ -73.245221, 43.523299 ], [ -73.278083, 42.833204 ], [ -73.267129, 42.745573 ], [ -73.508114, 42.08834 ], [ -73.486206, 42.050002 ], [ -73.55193, 41.294184 ], [ -73.48073, 41.21203 ], [ -73.727192, 41.102491 ], [ -73.655992, 40.987475 ], [ -73.22879, 40.905321 ], [ -73.141159, 40.965568 ], [ -72.774204, 40.965568 ], [ -72.587988, 40.998429 ], [ -72.28128, 41.157261 ], [ -72.259372, 41.042245 ], [ -72.100541, 40.992952 ], [ -72.467496, 40.845075 ], [ -73.239744, 40.625997 ], [ -73.562884, 40.582182 ], [ -73.776484, 40.593136 ], [ -73.935316, 40.543843 ], [ -74.022947, 40.708151 ], [ -73.902454, 40.998429 ], [ -74.236547, 41.14083 ], [ -74.69661, 41.359907 ], [ -74.740426, 41.431108 ], [ -74.89378, 41.436584 ], [ -75.074519, 41.60637 ], [ -75.052611, 41.754247 ], [ -75.173104, 41.869263 ], [ -75.249781, 41.863786 ], [ -75.35932, 42.000709 ], [ -79.76278, 42.000709 ], [ -79.76278, 42.252649 ], [ -79.76278, 42.269079 ], [ -79.149363, 42.55388 ], [ -79.050778, 42.690804 ], [ -78.853608, 42.783912 ], [ -78.930285, 42.953697 ], [ -79.012439, 42.986559 ], [ -79.072686, 43.260406 ], [ -78.486653, 43.375421 ], [ -77.966344, 43.369944 ], [ -77.75822, 43.34256 ], [ -77.533665, 43.233021 ], [ -77.391265, 43.276836 ], [ -76.958587, 43.271359 ], [ -76.695693, 43.34256 ], [ -76.41637, 43.523299 ], [ -76.235631, 43.528776 ], [ -76.230154, 43.802623 ], [ -76.137046, 43.961454 ], [ -76.3616, 44.070993 ], [ -76.312308, 44.196962 ], [ -75.912491, 44.366748 ], [ -75.764614, 44.514625 ], [ -75.282643, 44.848718 ], [ -74.828057, 45.018503 ], [ -74.148916, 44.991119 ], [ -73.343806, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "37", "properties": { "name": "North Carolina", "density": 198.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.978661, 36.562108 ], [ -80.294043, 36.545677 ], [ -79.510841, 36.5402 ], [ -75.868676, 36.551154 ], [ -75.75366, 36.151337 ], [ -76.032984, 36.189676 ], [ -76.071322, 36.140383 ], [ -76.410893, 36.080137 ], [ -76.460185, 36.025367 ], [ -76.68474, 36.008937 ], [ -76.673786, 35.937736 ], [ -76.399939, 35.987029 ], [ -76.3616, 35.943213 ], [ -76.060368, 35.992506 ], [ -75.961783, 35.899398 ], [ -75.781044, 35.937736 ], [ -75.715321, 35.696751 ], [ -75.775568, 35.581735 ], [ -75.89606, 35.570781 ], [ -76.147999, 35.324319 ], [ -76.482093, 35.313365 ], [ -76.536862, 35.14358 ], [ -76.394462, 34.973795 ], [ -76.279446, 34.940933 ], [ -76.493047, 34.661609 ], [ -76.673786, 34.694471 ], [ -76.991448, 34.667086 ], [ -77.210526, 34.60684 ], [ -77.555573, 34.415147 ], [ -77.82942, 34.163208 ], [ -77.971821, 33.845545 ], [ -78.179944, 33.916745 ], [ -78.541422, 33.851022 ], [ -79.675149, 34.80401 ], [ -80.797922, 34.820441 ], [ -80.781491, 34.935456 ], [ -80.934845, 35.105241 ], [ -81.038907, 35.044995 ], [ -81.044384, 35.149057 ], [ -82.276696, 35.198349 ], [ -82.550543, 35.160011 ], [ -82.764143, 35.066903 ], [ -83.109191, 35.00118 ], [ -83.618546, 34.984749 ], [ -84.319594, 34.990226 ], [ -84.29221, 35.225734 ], [ -84.09504, 35.247642 ], [ -84.018363, 35.41195 ], [ -83.7719, 35.559827 ], [ -83.498053, 35.565304 ], [ -83.251591, 35.718659 ], [ -82.994175, 35.773428 ], [ -82.775097, 35.997983 ], [ -82.638174, 36.063706 ], [ -82.610789, 35.965121 ], [ -82.216449, 36.156814 ], [ -82.03571, 36.118475 ], [ -81.909741, 36.304691 ], [ -81.723525, 36.353984 ], [ -81.679709, 36.589492 ], [ -80.978661, 36.562108 ] ] ] } }, +{ "type": "Feature", "id": "38", "properties": { "name": "North Dakota", "density": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.228743, 49.000239 ], [ -97.097296, 48.682577 ], [ -97.16302, 48.545653 ], [ -97.130158, 48.140359 ], [ -97.053481, 47.948667 ], [ -96.856311, 47.609096 ], [ -96.823449, 46.968294 ], [ -96.785111, 46.924479 ], [ -96.801542, 46.656109 ], [ -96.719387, 46.437031 ], [ -96.598895, 46.332969 ], [ -96.560556, 45.933153 ], [ -104.047534, 45.944106 ], [ -104.042057, 47.861036 ], [ -104.047534, 49.000239 ], [ -97.228743, 49.000239 ] ] ] } }, +{ "type": "Feature", "id": "39", "properties": { "name": "Ohio", "density": 281.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 41.978802 ], [ -80.518598, 40.636951 ], [ -80.666475, 40.582182 ], [ -80.595275, 40.472643 ], [ -80.600752, 40.319289 ], [ -80.737675, 40.078303 ], [ -80.830783, 39.711348 ], [ -81.219646, 39.388209 ], [ -81.345616, 39.344393 ], [ -81.455155, 39.410117 ], [ -81.57017, 39.267716 ], [ -81.685186, 39.273193 ], [ -81.811156, 39.0815 ], [ -81.783771, 38.966484 ], [ -81.887833, 38.873376 ], [ -82.03571, 39.026731 ], [ -82.221926, 38.785745 ], [ -82.172634, 38.632391 ], [ -82.293127, 38.577622 ], [ -82.331465, 38.446175 ], [ -82.594358, 38.424267 ], [ -82.731282, 38.561191 ], [ -82.846298, 38.588575 ], [ -82.890113, 38.758361 ], [ -83.032514, 38.725499 ], [ -83.142052, 38.626914 ], [ -83.519961, 38.703591 ], [ -83.678792, 38.632391 ], [ -83.903347, 38.769315 ], [ -84.215533, 38.807653 ], [ -84.231963, 38.895284 ], [ -84.43461, 39.103408 ], [ -84.817996, 39.103408 ], [ -84.801565, 40.500028 ], [ -84.807042, 41.694001 ], [ -83.454238, 41.732339 ], [ -83.065375, 41.595416 ], [ -82.933929, 41.513262 ], [ -82.835344, 41.589939 ], [ -82.616266, 41.431108 ], [ -82.479343, 41.381815 ], [ -82.013803, 41.513262 ], [ -81.739956, 41.485877 ], [ -81.444201, 41.672093 ], [ -81.011523, 41.852832 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ] ] ] } }, +{ "type": "Feature", "id": "40", "properties": { "name": "Oklahoma", "density": 55.22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.087706, 37.000263 ], [ -94.616242, 37.000263 ], [ -94.616242, 36.501861 ], [ -94.430026, 35.395519 ], [ -94.484796, 33.637421 ], [ -94.868182, 33.74696 ], [ -94.966767, 33.861976 ], [ -95.224183, 33.960561 ], [ -95.289906, 33.87293 ], [ -95.547322, 33.878407 ], [ -95.602092, 33.933176 ], [ -95.8376, 33.834591 ], [ -95.936185, 33.889361 ], [ -96.149786, 33.840068 ], [ -96.346956, 33.686714 ], [ -96.423633, 33.774345 ], [ -96.631756, 33.845545 ], [ -96.850834, 33.845545 ], [ -96.922034, 33.960561 ], [ -97.173974, 33.736006 ], [ -97.256128, 33.861976 ], [ -97.371143, 33.823637 ], [ -97.458774, 33.905791 ], [ -97.694283, 33.982469 ], [ -97.869545, 33.851022 ], [ -97.946222, 33.987946 ], [ -98.088623, 34.004376 ], [ -98.170777, 34.113915 ], [ -98.36247, 34.157731 ], [ -98.488439, 34.064623 ], [ -98.570593, 34.146777 ], [ -98.767763, 34.135823 ], [ -98.986841, 34.223454 ], [ -99.189488, 34.2125 ], [ -99.260688, 34.404193 ], [ -99.57835, 34.415147 ], [ -99.698843, 34.382285 ], [ -99.923398, 34.573978 ], [ -100.000075, 34.563024 ], [ -100.000075, 36.501861 ], [ -101.812942, 36.501861 ], [ -103.001438, 36.501861 ], [ -103.001438, 37.000263 ], [ -102.042974, 36.994786 ], [ -100.087706, 37.000263 ] ] ] } }, +{ "type": "Feature", "id": "41", "properties": { "name": "Oregon", "density": 40.33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.211348, 46.174138 ], [ -123.11824, 46.185092 ], [ -122.904639, 46.08103 ], [ -122.811531, 45.960537 ], [ -122.762239, 45.659305 ], [ -122.247407, 45.549767 ], [ -121.809251, 45.708598 ], [ -121.535404, 45.725029 ], [ -121.217742, 45.670259 ], [ -121.18488, 45.604536 ], [ -120.637186, 45.746937 ], [ -120.505739, 45.697644 ], [ -120.209985, 45.725029 ], [ -119.963522, 45.823614 ], [ -119.525367, 45.911245 ], [ -119.125551, 45.933153 ], [ -118.988627, 45.998876 ], [ -116.918344, 45.993399 ], [ -116.78142, 45.823614 ], [ -116.545912, 45.752413 ], [ -116.463758, 45.61549 ], [ -116.671881, 45.319735 ], [ -116.732128, 45.144473 ], [ -116.847143, 45.02398 ], [ -116.830713, 44.930872 ], [ -116.934774, 44.782995 ], [ -117.038836, 44.750133 ], [ -117.241483, 44.394132 ], [ -117.170283, 44.257209 ], [ -116.97859, 44.240778 ], [ -116.896436, 44.158624 ], [ -117.027882, 43.830007 ], [ -117.027882, 42.000709 ], [ -118.698349, 41.989755 ], [ -120.001861, 41.995232 ], [ -121.037003, 41.995232 ], [ -122.378853, 42.011663 ], [ -123.233256, 42.006186 ], [ -124.213628, 42.000709 ], [ -124.356029, 42.115725 ], [ -124.432706, 42.438865 ], [ -124.416275, 42.663419 ], [ -124.553198, 42.838681 ], [ -124.454613, 43.002989 ], [ -124.383413, 43.271359 ], [ -124.235536, 43.55616 ], [ -124.169813, 43.8081 ], [ -124.060274, 44.657025 ], [ -124.076705, 44.772041 ], [ -123.97812, 45.144473 ], [ -123.939781, 45.659305 ], [ -123.994551, 45.944106 ], [ -123.945258, 46.113892 ], [ -123.545441, 46.261769 ], [ -123.370179, 46.146753 ], [ -123.211348, 46.174138 ] ] ] } }, +{ "type": "Feature", "id": "42", "properties": { "name": "Pennsylvania", "density": 284.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.76278, 42.252649 ], [ -79.76278, 42.000709 ], [ -75.35932, 42.000709 ], [ -75.249781, 41.863786 ], [ -75.173104, 41.869263 ], [ -75.052611, 41.754247 ], [ -75.074519, 41.60637 ], [ -74.89378, 41.436584 ], [ -74.740426, 41.431108 ], [ -74.69661, 41.359907 ], [ -74.828057, 41.288707 ], [ -74.882826, 41.179168 ], [ -75.134765, 40.971045 ], [ -75.052611, 40.866983 ], [ -75.205966, 40.691721 ], [ -75.195012, 40.576705 ], [ -75.069042, 40.543843 ], [ -75.058088, 40.417874 ], [ -74.773287, 40.215227 ], [ -74.82258, 40.127596 ], [ -75.129289, 39.963288 ], [ -75.145719, 39.88661 ], [ -75.414089, 39.804456 ], [ -75.616736, 39.831841 ], [ -75.786521, 39.722302 ], [ -79.477979, 39.722302 ], [ -80.518598, 39.722302 ], [ -80.518598, 40.636951 ], [ -80.518598, 41.978802 ], [ -80.518598, 41.978802 ], [ -80.332382, 42.033571 ], [ -79.76278, 42.269079 ], [ -79.76278, 42.252649 ] ] ] } }, +{ "type": "Feature", "id": "44", "properties": { "name": "Rhode Island", "density": 1006.0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.196845, 41.67757 ], [ -71.120168, 41.496831 ], [ -71.317338, 41.474923 ], [ -71.196845, 41.67757 ] ] ], [ [ [ -71.530939, 42.01714 ], [ -71.383061, 42.01714 ], [ -71.328292, 41.781632 ], [ -71.22423, 41.710431 ], [ -71.344723, 41.726862 ], [ -71.448785, 41.578985 ], [ -71.481646, 41.370861 ], [ -71.859555, 41.321569 ], [ -71.799309, 41.414677 ], [ -71.799309, 42.006186 ], [ -71.530939, 42.01714 ] ] ] ] } }, +{ "type": "Feature", "id": "45", "properties": { "name": "South Carolina", "density": 155.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.764143, 35.066903 ], [ -82.550543, 35.160011 ], [ -82.276696, 35.198349 ], [ -81.044384, 35.149057 ], [ -81.038907, 35.044995 ], [ -80.934845, 35.105241 ], [ -80.781491, 34.935456 ], [ -80.797922, 34.820441 ], [ -79.675149, 34.80401 ], [ -78.541422, 33.851022 ], [ -78.716684, 33.80173 ], [ -78.935762, 33.637421 ], [ -79.149363, 33.380005 ], [ -79.187701, 33.171881 ], [ -79.357487, 33.007573 ], [ -79.582041, 33.007573 ], [ -79.631334, 32.887081 ], [ -79.866842, 32.755634 ], [ -79.998289, 32.613234 ], [ -80.206412, 32.552987 ], [ -80.430967, 32.399633 ], [ -80.452875, 32.328433 ], [ -80.660998, 32.246279 ], [ -80.885553, 32.032678 ], [ -81.115584, 32.120309 ], [ -81.121061, 32.290094 ], [ -81.279893, 32.558464 ], [ -81.416816, 32.629664 ], [ -81.42777, 32.843265 ], [ -81.493493, 33.007573 ], [ -81.761863, 33.160928 ], [ -81.937125, 33.347144 ], [ -81.926172, 33.462159 ], [ -82.194542, 33.631944 ], [ -82.325988, 33.81816 ], [ -82.55602, 33.94413 ], [ -82.714851, 34.152254 ], [ -82.747713, 34.26727 ], [ -82.901067, 34.486347 ], [ -83.005129, 34.469916 ], [ -83.339222, 34.683517 ], [ -83.322791, 34.787579 ], [ -83.109191, 35.00118 ], [ -82.764143, 35.066903 ] ] ] } }, +{ "type": "Feature", "id": "46", "properties": { "name": "South Dakota", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.047534, 45.944106 ], [ -96.560556, 45.933153 ], [ -96.582464, 45.818137 ], [ -96.856311, 45.604536 ], [ -96.681049, 45.412843 ], [ -96.451017, 45.297827 ], [ -96.451017, 43.501391 ], [ -96.582464, 43.479483 ], [ -96.527695, 43.397329 ], [ -96.560556, 43.222067 ], [ -96.434587, 43.123482 ], [ -96.511264, 43.052282 ], [ -96.544125, 42.855112 ], [ -96.631756, 42.707235 ], [ -96.44554, 42.488157 ], [ -96.626279, 42.515542 ], [ -96.692003, 42.657942 ], [ -97.217789, 42.844158 ], [ -97.688806, 42.844158 ], [ -97.831206, 42.866066 ], [ -97.951699, 42.767481 ], [ -98.466531, 42.94822 ], [ -98.499393, 42.997512 ], [ -101.626726, 42.997512 ], [ -103.324578, 43.002989 ], [ -104.053011, 43.002989 ], [ -104.058488, 44.996596 ], [ -104.042057, 44.996596 ], [ -104.047534, 45.944106 ] ] ] } }, +{ "type": "Feature", "id": "47", "properties": { "name": "Tennessee", "density": 88.08 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.054868, 36.496384 ], [ -88.071299, 36.677123 ], [ -87.852221, 36.633308 ], [ -86.592525, 36.655216 ], [ -85.486183, 36.616877 ], [ -85.289013, 36.627831 ], [ -84.544149, 36.594969 ], [ -83.689746, 36.584015 ], [ -83.673316, 36.600446 ], [ -81.679709, 36.589492 ], [ -81.723525, 36.353984 ], [ -81.909741, 36.304691 ], [ -82.03571, 36.118475 ], [ -82.216449, 36.156814 ], [ -82.610789, 35.965121 ], [ -82.638174, 36.063706 ], [ -82.775097, 35.997983 ], [ -82.994175, 35.773428 ], [ -83.251591, 35.718659 ], [ -83.498053, 35.565304 ], [ -83.7719, 35.559827 ], [ -84.018363, 35.41195 ], [ -84.09504, 35.247642 ], [ -84.29221, 35.225734 ], [ -84.319594, 34.990226 ], [ -85.606675, 34.984749 ], [ -87.359296, 35.00118 ], [ -88.202745, 34.995703 ], [ -88.471115, 34.995703 ], [ -90.311367, 34.995703 ], [ -90.212782, 35.023087 ], [ -90.114197, 35.198349 ], [ -90.130628, 35.439335 ], [ -89.944412, 35.603643 ], [ -89.911551, 35.756997 ], [ -89.763673, 35.811767 ], [ -89.730812, 35.997983 ], [ -89.533642, 36.249922 ], [ -89.539119, 36.496384 ], [ -89.484349, 36.496384 ], [ -89.418626, 36.496384 ], [ -89.298133, 36.507338 ], [ -88.054868, 36.496384 ] ] ] } }, +{ "type": "Feature", "id": "48", "properties": { "name": "Texas", "density": 98.07 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.812942, 36.501861 ], [ -100.000075, 36.501861 ], [ -100.000075, 34.563024 ], [ -99.923398, 34.573978 ], [ -99.698843, 34.382285 ], [ -99.57835, 34.415147 ], [ -99.260688, 34.404193 ], [ -99.189488, 34.2125 ], [ -98.986841, 34.223454 ], [ -98.767763, 34.135823 ], [ -98.570593, 34.146777 ], [ -98.488439, 34.064623 ], [ -98.36247, 34.157731 ], [ -98.170777, 34.113915 ], [ -98.088623, 34.004376 ], [ -97.946222, 33.987946 ], [ -97.869545, 33.851022 ], [ -97.694283, 33.982469 ], [ -97.458774, 33.905791 ], [ -97.371143, 33.823637 ], [ -97.256128, 33.861976 ], [ -97.173974, 33.736006 ], [ -96.922034, 33.960561 ], [ -96.850834, 33.845545 ], [ -96.631756, 33.845545 ], [ -96.423633, 33.774345 ], [ -96.346956, 33.686714 ], [ -96.149786, 33.840068 ], [ -95.936185, 33.889361 ], [ -95.8376, 33.834591 ], [ -95.602092, 33.933176 ], [ -95.547322, 33.878407 ], [ -95.289906, 33.87293 ], [ -95.224183, 33.960561 ], [ -94.966767, 33.861976 ], [ -94.868182, 33.74696 ], [ -94.484796, 33.637421 ], [ -94.380734, 33.544313 ], [ -94.183564, 33.593606 ], [ -94.041164, 33.54979 ], [ -94.041164, 33.018527 ], [ -94.041164, 31.994339 ], [ -93.822086, 31.775262 ], [ -93.816609, 31.556184 ], [ -93.542762, 31.15089 ], [ -93.526331, 30.93729 ], [ -93.630393, 30.679874 ], [ -93.728978, 30.575812 ], [ -93.696116, 30.438888 ], [ -93.767317, 30.334826 ], [ -93.690639, 30.143133 ], [ -93.926148, 29.787132 ], [ -93.838517, 29.688547 ], [ -94.002825, 29.68307 ], [ -94.523134, 29.546147 ], [ -94.70935, 29.622824 ], [ -94.742212, 29.787132 ], [ -94.873659, 29.672117 ], [ -94.966767, 29.699501 ], [ -95.016059, 29.557101 ], [ -94.911997, 29.496854 ], [ -94.895566, 29.310638 ], [ -95.081782, 29.113469 ], [ -95.383014, 28.867006 ], [ -95.985477, 28.604113 ], [ -96.045724, 28.647929 ], [ -96.226463, 28.582205 ], [ -96.23194, 28.642452 ], [ -96.478402, 28.598636 ], [ -96.593418, 28.724606 ], [ -96.664618, 28.697221 ], [ -96.401725, 28.439805 ], [ -96.593418, 28.357651 ], [ -96.774157, 28.406943 ], [ -96.801542, 28.226204 ], [ -97.026096, 28.039988 ], [ -97.256128, 27.694941 ], [ -97.404005, 27.333463 ], [ -97.513544, 27.360848 ], [ -97.540929, 27.229401 ], [ -97.425913, 27.262263 ], [ -97.480682, 26.99937 ], [ -97.557359, 26.988416 ], [ -97.562836, 26.840538 ], [ -97.469728, 26.758384 ], [ -97.442344, 26.457153 ], [ -97.332805, 26.353091 ], [ -97.30542, 26.161398 ], [ -97.217789, 25.991613 ], [ -97.524498, 25.887551 ], [ -97.650467, 26.018997 ], [ -97.885976, 26.06829 ], [ -98.198161, 26.057336 ], [ -98.466531, 26.221644 ], [ -98.669178, 26.238075 ], [ -98.822533, 26.369522 ], [ -99.030656, 26.413337 ], [ -99.173057, 26.539307 ], [ -99.266165, 26.840538 ], [ -99.446904, 27.021277 ], [ -99.424996, 27.174632 ], [ -99.50715, 27.33894 ], [ -99.479765, 27.48134 ], [ -99.605735, 27.640172 ], [ -99.709797, 27.656603 ], [ -99.879582, 27.799003 ], [ -99.934351, 27.979742 ], [ -100.082229, 28.14405 ], [ -100.29583, 28.280974 ], [ -100.399891, 28.582205 ], [ -100.498476, 28.66436 ], [ -100.629923, 28.905345 ], [ -100.673738, 29.102515 ], [ -100.799708, 29.244915 ], [ -101.013309, 29.370885 ], [ -101.062601, 29.458516 ], [ -101.259771, 29.535193 ], [ -101.413125, 29.754271 ], [ -101.851281, 29.803563 ], [ -102.114174, 29.792609 ], [ -102.338728, 29.869286 ], [ -102.388021, 29.765225 ], [ -102.629006, 29.732363 ], [ -102.809745, 29.524239 ], [ -102.919284, 29.190146 ], [ -102.97953, 29.184669 ], [ -103.116454, 28.987499 ], [ -103.280762, 28.982022 ], [ -103.527224, 29.135376 ], [ -104.146119, 29.381839 ], [ -104.266611, 29.513285 ], [ -104.507597, 29.639255 ], [ -104.677382, 29.924056 ], [ -104.688336, 30.181472 ], [ -104.858121, 30.389596 ], [ -104.896459, 30.570335 ], [ -105.005998, 30.685351 ], [ -105.394861, 30.855136 ], [ -105.602985, 31.085167 ], [ -105.77277, 31.167321 ], [ -105.953509, 31.364491 ], [ -106.205448, 31.468553 ], [ -106.38071, 31.731446 ], [ -106.528588, 31.786216 ], [ -106.643603, 31.901231 ], [ -106.616219, 31.999816 ], [ -103.067161, 31.999816 ], [ -103.067161, 33.002096 ], [ -103.045254, 34.01533 ], [ -103.039777, 36.501861 ], [ -103.001438, 36.501861 ], [ -101.812942, 36.501861 ] ] ] } }, +{ "type": "Feature", "id": "49", "properties": { "name": "Utah", "density": 34.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.164359, 41.995232 ], [ -111.047063, 42.000709 ], [ -111.047063, 40.998429 ], [ -109.04798, 40.998429 ], [ -109.053457, 39.125316 ], [ -109.058934, 38.27639 ], [ -109.042503, 38.166851 ], [ -109.042503, 37.000263 ], [ -110.499369, 37.00574 ], [ -114.048427, 37.000263 ], [ -114.04295, 41.995232 ], [ -112.164359, 41.995232 ] ] ] } }, +{ "type": "Feature", "id": "50", "properties": { "name": "Vermont", "density": 67.73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.503554, 45.013027 ], [ -71.4926, 44.914442 ], [ -71.629524, 44.750133 ], [ -71.536416, 44.585825 ], [ -71.700724, 44.41604 ], [ -72.034817, 44.322932 ], [ -72.02934, 44.07647 ], [ -72.116971, 43.994316 ], [ -72.204602, 43.769761 ], [ -72.379864, 43.572591 ], [ -72.456542, 43.150867 ], [ -72.445588, 43.008466 ], [ -72.533219, 42.953697 ], [ -72.544173, 42.80582 ], [ -72.456542, 42.729142 ], [ -73.267129, 42.745573 ], [ -73.278083, 42.833204 ], [ -73.245221, 43.523299 ], [ -73.404052, 43.687607 ], [ -73.349283, 43.769761 ], [ -73.436914, 44.043608 ], [ -73.321898, 44.246255 ], [ -73.294514, 44.437948 ], [ -73.387622, 44.618687 ], [ -73.332852, 44.804903 ], [ -73.343806, 45.013027 ], [ -72.308664, 45.002073 ], [ -71.503554, 45.013027 ] ] ] } }, +{ "type": "Feature", "id": "51", "properties": { "name": "Virginia", "density": 204.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.397659, 38.013497 ], [ -75.244304, 38.029928 ], [ -75.375751, 37.860142 ], [ -75.512674, 37.799896 ], [ -75.594828, 37.569865 ], [ -75.802952, 37.197433 ], [ -75.972737, 37.120755 ], [ -76.027507, 37.257679 ], [ -75.939876, 37.564388 ], [ -75.671506, 37.95325 ], [ -75.397659, 38.013497 ] ] ], [ [ [ -76.016553, 37.95325 ], [ -75.994645, 37.95325 ], [ -76.043938, 37.95325 ], [ -76.016553, 37.95325 ] ] ], [ [ [ -78.349729, 39.464886 ], [ -77.82942, 39.130793 ], [ -77.719881, 39.322485 ], [ -77.566527, 39.306055 ], [ -77.456988, 39.223901 ], [ -77.456988, 39.076023 ], [ -77.248864, 39.026731 ], [ -77.117418, 38.933623 ], [ -77.040741, 38.791222 ], [ -77.128372, 38.632391 ], [ -77.248864, 38.588575 ], [ -77.325542, 38.446175 ], [ -77.281726, 38.342113 ], [ -77.013356, 38.374975 ], [ -76.964064, 38.216144 ], [ -76.613539, 38.15042 ], [ -76.514954, 38.024451 ], [ -76.235631, 37.887527 ], [ -76.3616, 37.608203 ], [ -76.246584, 37.389126 ], [ -76.383508, 37.285064 ], [ -76.399939, 37.159094 ], [ -76.273969, 37.082417 ], [ -76.410893, 36.961924 ], [ -76.619016, 37.120755 ], [ -76.668309, 37.065986 ], [ -76.48757, 36.95097 ], [ -75.994645, 36.923586 ], [ -75.868676, 36.551154 ], [ -79.510841, 36.5402 ], [ -80.294043, 36.545677 ], [ -80.978661, 36.562108 ], [ -81.679709, 36.589492 ], [ -83.673316, 36.600446 ], [ -83.136575, 36.742847 ], [ -83.070852, 36.852385 ], [ -82.879159, 36.890724 ], [ -82.868205, 36.978355 ], [ -82.720328, 37.044078 ], [ -82.720328, 37.120755 ], [ -82.353373, 37.268633 ], [ -81.969987, 37.537003 ], [ -81.986418, 37.454849 ], [ -81.849494, 37.285064 ], [ -81.679709, 37.20291 ], [ -81.55374, 37.208387 ], [ -81.362047, 37.339833 ], [ -81.225123, 37.235771 ], [ -80.967707, 37.290541 ], [ -80.513121, 37.482234 ], [ -80.474782, 37.421987 ], [ -80.29952, 37.509618 ], [ -80.294043, 37.690357 ], [ -80.184505, 37.849189 ], [ -79.998289, 37.997066 ], [ -79.921611, 38.177805 ], [ -79.724442, 38.364021 ], [ -79.647764, 38.594052 ], [ -79.477979, 38.457129 ], [ -79.313671, 38.413313 ], [ -79.209609, 38.495467 ], [ -78.996008, 38.851469 ], [ -78.870039, 38.763838 ], [ -78.404499, 39.169131 ], [ -78.349729, 39.464886 ] ] ] ] } }, +{ "type": "Feature", "id": "53", "properties": { "name": "Washington", "density": 102.6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.033359, 49.000239 ], [ -117.044313, 47.762451 ], [ -117.038836, 46.426077 ], [ -117.055267, 46.343923 ], [ -116.92382, 46.168661 ], [ -116.918344, 45.993399 ], [ -118.988627, 45.998876 ], [ -119.125551, 45.933153 ], [ -119.525367, 45.911245 ], [ -119.963522, 45.823614 ], [ -120.209985, 45.725029 ], [ -120.505739, 45.697644 ], [ -120.637186, 45.746937 ], [ -121.18488, 45.604536 ], [ -121.217742, 45.670259 ], [ -121.535404, 45.725029 ], [ -121.809251, 45.708598 ], [ -122.247407, 45.549767 ], [ -122.762239, 45.659305 ], [ -122.811531, 45.960537 ], [ -122.904639, 46.08103 ], [ -123.11824, 46.185092 ], [ -123.211348, 46.174138 ], [ -123.370179, 46.146753 ], [ -123.545441, 46.261769 ], [ -123.72618, 46.300108 ], [ -123.874058, 46.239861 ], [ -124.065751, 46.327492 ], [ -124.027412, 46.464416 ], [ -123.895966, 46.535616 ], [ -124.098612, 46.74374 ], [ -124.235536, 47.285957 ], [ -124.31769, 47.357157 ], [ -124.427229, 47.740543 ], [ -124.624399, 47.88842 ], [ -124.706553, 48.184175 ], [ -124.597014, 48.381345 ], [ -124.394367, 48.288237 ], [ -123.983597, 48.162267 ], [ -123.704273, 48.167744 ], [ -123.424949, 48.118452 ], [ -123.162056, 48.167744 ], [ -123.036086, 48.080113 ], [ -122.800578, 48.08559 ], [ -122.636269, 47.866512 ], [ -122.515777, 47.882943 ], [ -122.493869, 47.587189 ], [ -122.422669, 47.318818 ], [ -122.324084, 47.346203 ], [ -122.422669, 47.576235 ], [ -122.395284, 47.800789 ], [ -122.230976, 48.030821 ], [ -122.362422, 48.123929 ], [ -122.373376, 48.288237 ], [ -122.471961, 48.468976 ], [ -122.422669, 48.600422 ], [ -122.488392, 48.753777 ], [ -122.647223, 48.775685 ], [ -122.795101, 48.8907 ], [ -122.756762, 49.000239 ], [ -117.033359, 49.000239 ] ] ], [ [ [ -122.718423, 48.310145 ], [ -122.586977, 48.35396 ], [ -122.608885, 48.151313 ], [ -122.767716, 48.227991 ], [ -122.718423, 48.310145 ] ] ], [ [ [ -123.025132, 48.583992 ], [ -122.915593, 48.715438 ], [ -122.767716, 48.556607 ], [ -122.811531, 48.419683 ], [ -123.041563, 48.458022 ], [ -123.025132, 48.583992 ] ] ] ] } }, +{ "type": "Feature", "id": "54", "properties": { "name": "West Virginia", "density": 77.06 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.518598, 40.636951 ], [ -80.518598, 39.722302 ], [ -79.477979, 39.722302 ], [ -79.488933, 39.20747 ], [ -79.291763, 39.300578 ], [ -79.094593, 39.470363 ], [ -78.963147, 39.437501 ], [ -78.765977, 39.585379 ], [ -78.470222, 39.514178 ], [ -78.431884, 39.623717 ], [ -78.267575, 39.61824 ], [ -78.174467, 39.694917 ], [ -78.004682, 39.601809 ], [ -77.834897, 39.601809 ], [ -77.719881, 39.322485 ], [ -77.82942, 39.130793 ], [ -78.349729, 39.464886 ], [ -78.404499, 39.169131 ], [ -78.870039, 38.763838 ], [ -78.996008, 38.851469 ], [ -79.209609, 38.495467 ], [ -79.313671, 38.413313 ], [ -79.477979, 38.457129 ], [ -79.647764, 38.594052 ], [ -79.724442, 38.364021 ], [ -79.921611, 38.177805 ], [ -79.998289, 37.997066 ], [ -80.184505, 37.849189 ], [ -80.294043, 37.690357 ], [ -80.29952, 37.509618 ], [ -80.474782, 37.421987 ], [ -80.513121, 37.482234 ], [ -80.967707, 37.290541 ], [ -81.225123, 37.235771 ], [ -81.362047, 37.339833 ], [ -81.55374, 37.208387 ], [ -81.679709, 37.20291 ], [ -81.849494, 37.285064 ], [ -81.986418, 37.454849 ], [ -81.969987, 37.537003 ], [ -82.101434, 37.553434 ], [ -82.293127, 37.668449 ], [ -82.342419, 37.783465 ], [ -82.50125, 37.931343 ], [ -82.621743, 38.123036 ], [ -82.594358, 38.424267 ], [ -82.331465, 38.446175 ], [ -82.293127, 38.577622 ], [ -82.172634, 38.632391 ], [ -82.221926, 38.785745 ], [ -82.03571, 39.026731 ], [ -81.887833, 38.873376 ], [ -81.783771, 38.966484 ], [ -81.811156, 39.0815 ], [ -81.685186, 39.273193 ], [ -81.57017, 39.267716 ], [ -81.455155, 39.410117 ], [ -81.345616, 39.344393 ], [ -81.219646, 39.388209 ], [ -80.830783, 39.711348 ], [ -80.737675, 40.078303 ], [ -80.600752, 40.319289 ], [ -80.595275, 40.472643 ], [ -80.666475, 40.582182 ], [ -80.518598, 40.636951 ] ] ] } }, +{ "type": "Feature", "id": "55", "properties": { "name": "Wisconsin", "density": 105.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.415429, 46.568478 ], [ -90.229213, 46.508231 ], [ -90.119674, 46.338446 ], [ -89.09001, 46.135799 ], [ -88.662808, 45.987922 ], [ -88.531362, 46.020784 ], [ -88.10416, 45.922199 ], [ -87.989145, 45.796229 ], [ -87.781021, 45.675736 ], [ -87.791975, 45.500474 ], [ -87.885083, 45.363551 ], [ -87.649574, 45.341643 ], [ -87.742682, 45.199243 ], [ -87.589328, 45.095181 ], [ -87.627666, 44.974688 ], [ -87.819359, 44.95278 ], [ -87.983668, 44.722749 ], [ -88.043914, 44.563917 ], [ -87.928898, 44.536533 ], [ -87.775544, 44.640595 ], [ -87.611236, 44.837764 ], [ -87.403112, 44.914442 ], [ -87.238804, 45.166381 ], [ -87.03068, 45.22115 ], [ -87.047111, 45.089704 ], [ -87.189511, 44.969211 ], [ -87.468835, 44.552964 ], [ -87.545512, 44.322932 ], [ -87.540035, 44.158624 ], [ -87.644097, 44.103854 ], [ -87.737205, 43.8793 ], [ -87.704344, 43.687607 ], [ -87.791975, 43.561637 ], [ -87.912467, 43.249452 ], [ -87.885083, 43.002989 ], [ -87.76459, 42.783912 ], [ -87.802929, 42.493634 ], [ -88.788778, 42.493634 ], [ -90.639984, 42.510065 ], [ -90.711184, 42.636034 ], [ -91.067185, 42.75105 ], [ -91.143862, 42.909881 ], [ -91.176724, 43.134436 ], [ -91.056231, 43.254929 ], [ -91.204109, 43.353514 ], [ -91.215062, 43.501391 ], [ -91.269832, 43.616407 ], [ -91.242447, 43.775238 ], [ -91.43414, 43.994316 ], [ -91.592971, 44.032654 ], [ -91.877772, 44.202439 ], [ -91.927065, 44.333886 ], [ -92.233773, 44.443425 ], [ -92.337835, 44.552964 ], [ -92.545959, 44.569394 ], [ -92.808852, 44.750133 ], [ -92.737652, 45.117088 ], [ -92.75956, 45.286874 ], [ -92.644544, 45.440228 ], [ -92.770513, 45.566198 ], [ -92.885529, 45.577151 ], [ -92.869098, 45.719552 ], [ -92.639067, 45.933153 ], [ -92.354266, 46.015307 ], [ -92.29402, 46.075553 ], [ -92.29402, 46.667063 ], [ -92.091373, 46.749217 ], [ -92.014696, 46.705401 ], [ -91.790141, 46.694447 ], [ -91.09457, 46.864232 ], [ -90.837154, 46.95734 ], [ -90.749522, 46.88614 ], [ -90.886446, 46.754694 ], [ -90.55783, 46.584908 ], [ -90.415429, 46.568478 ] ] ] } }, +{ "type": "Feature", "id": "56", "properties": { "name": "Wyoming", "density": 5.851 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.080842, 45.002073 ], [ -105.91517, 45.002073 ], [ -104.058488, 44.996596 ], [ -104.053011, 43.002989 ], [ -104.053011, 41.003906 ], [ -105.728954, 40.998429 ], [ -107.919731, 41.003906 ], [ -109.04798, 40.998429 ], [ -111.047063, 40.998429 ], [ -111.047063, 42.000709 ], [ -111.047063, 44.476286 ], [ -111.05254, 45.002073 ], [ -109.080842, 45.002073 ] ] ] } }, +{ "type": "Feature", "id": "72", "properties": { "name": "Puerto Rico", "density": 1082.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.448338, 17.984326 ], [ -66.771478, 18.006234 ], [ -66.924832, 17.929556 ], [ -66.985078, 17.973372 ], [ -67.209633, 17.956941 ], [ -67.154863, 18.19245 ], [ -67.269879, 18.362235 ], [ -67.094617, 18.515589 ], [ -66.957694, 18.488204 ], [ -66.409999, 18.488204 ], [ -65.840398, 18.433435 ], [ -65.632274, 18.367712 ], [ -65.626797, 18.203403 ], [ -65.730859, 18.186973 ], [ -65.834921, 18.017187 ], [ -66.234737, 17.929556 ], [ -66.448338, 17.984326 ] ] ] } } ] } From 7eb4875f04f45224a29bcab7003be247b68640ac Mon Sep 17 00:00:00 2001 From: balladaniel <96133731+balladaniel@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:29:24 +0100 Subject: [PATCH 4/9] log cleanup, more defaults --- examples/combined.html | 4 +++- leaflet-dataclassification.js | 9 +++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/examples/combined.html b/examples/combined.html index f1d627b..73b9f90 100644 --- a/examples/combined.html +++ b/examples/combined.html @@ -15,6 +15,7 @@ +